mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-06 18:31:03 +00:00
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
|
|
/* Rot127 <unisono@quyllur.org>, 2022-2023 */
|
|
|
|
#ifndef CS_ARM_DISASSEMBLER_EXTENSION_H
|
|
#define CS_ARM_DISASSEMBLER_EXTENSION_H
|
|
|
|
#include "../../MCDisassembler.h"
|
|
#include "../../MCRegisterInfo.h"
|
|
#include "../../MathExtras.h"
|
|
#include "../../cs_priv.h"
|
|
#include "ARMAddressingModes.h"
|
|
#include "capstone/capstone.h"
|
|
|
|
unsigned ARM_AM_getAM5FP16Opc(ARM_AM_AddrOpc Opc, unsigned char Offset);
|
|
|
|
bool ITBlock_push_back(ARM_ITBlock *it, char v);
|
|
|
|
bool ITBlock_instrInITBlock(ARM_ITBlock *it);
|
|
|
|
bool ITBlock_instrLastInITBlock(ARM_ITBlock *it);
|
|
|
|
unsigned ITBlock_getITCC(ARM_ITBlock *it);
|
|
|
|
void ITBlock_advanceITState(ARM_ITBlock *it);
|
|
|
|
void ITBlock_setITState(ARM_ITBlock *it, char Firstcond, char Mask);
|
|
|
|
bool Check(DecodeStatus *Out, DecodeStatus In);
|
|
|
|
bool isValidCoprocessorNumber(MCInst *Inst, unsigned Num);
|
|
|
|
bool ARM_isVpred(arm_op_type op);
|
|
|
|
bool isVPTOpcode(int Opc);
|
|
|
|
bool ARM_isCDECoproc(size_t Coproc, const MCInst *MI);
|
|
|
|
bool VPTBlock_push_back(ARM_VPTBlock *it, char v);
|
|
|
|
bool VPTBlock_instrInVPTBlock(ARM_VPTBlock *VPT);
|
|
|
|
unsigned VPTBlock_getVPTPred(ARM_VPTBlock *VPT);
|
|
|
|
void VPTBlock_advanceVPTState(ARM_VPTBlock *VPT);
|
|
|
|
void VPTBlock_setVPTState(ARM_VPTBlock *VPT, char Mask);
|
|
|
|
bool ARM_getFeatureBits(unsigned int mode, unsigned int feature);
|
|
|
|
#endif // CS_ARM_DISASSEMBLER_EXTENSION_H
|