b102f1b8 Update Actions (#2593) 86293136 Fix LoongArch aliases and CS_OPT_SYNTAX_NO_DOLLAR support (#2594) 27da950c Clarify between machine used vs. Capstone module affected. (#2586) 186f7aa0 Fix linking issue on Windows. (#2587) e160cbc5 Fix complex atomic instructions handling (#2584) 9907b22d Update v6 to have Debian Packages (#2579) efbbc3bb cstest: use DOWNLOAD_EXTRACT_TIMESTAMP conditionally (#2581) be6be784 x86: update read/write registers for transfer instructions (#2578) 812e654c Update BPF arch (#2568) 2c4b05f6 Clean up the cstest documentation and build instructions. (#2580) 4dc14ba1 Fix 2572 (#2574) b25aa841 PPC regressions (#2575) 0a29bf80 Small arm64 compat header fixes (#2563) b42e0903 Make thumb, v8 and m-class positional cstool arguments. (#2557) 89aee400 Add arm64 and sysz compatibility layer to Python bindings (#2559) a4281337 Python bindings: Enable more archs + bump cibuildwheel action to the v2.22.0 (#2558) ef74d449 Arm regressions (#2556) 93a104c0 PPC LLVM 18 (#2540) e46838ed Merge branch 'v6' into next cf3600e7 Update Changelog Version to 6.0.0-Alpha2 (#2553) b295cf57 Prepare for update (#2552) fc59da4d fix xtensa DecodeMR23RegisterClass and add tests for MAC16 instru… (#2551) 7d01d7e7 Auto-Sync reproducability + ARM update (#2532) 6ad2608d Python package building rework (#2538) e3bc578d Move debian package generation to a dispatch only workflow (#2543) abbf32b4 fix coverity (#2546) 1ecfb5b0 xtensa: update to espressif/llvm-project (#2533) 379e2a41 Rename build arguments: (#2534) d7be5f9f Change CI to create Debian Package to Release (#2521) f6f96796 tricore: fixes #2474 (#2523) 09f35961 This time actually fix big endian issue. (#2530) 306d5716 Fix endianess issue during assignment. (#2528) 2cfca35e Add CC and VAS compatibility macros (#2525) 32519c01 Fix stringop-truncation warning some compilers raise. (#2522) 5026c2c4 Merge pull request #2507 from thestr4ng3r/no-varargs-aarch64 cecb5ede Fix #2509. (#2510) f97e2705 xtensa: Fix Branch Target (#2516) 1d13a12f AArch64: Replace vararg add_cs_detail by multiple concrete functions 8b618528 Update libcyaml dependency in cstest to 1.4.2 (#2508) ea081286 Tricore EA calculation (#2504) 7db9a080 Fix cstest build with Ninja (#2506) 76242699 Only trigger on released action. (#2497) 981d648b Add hard asserts to all SStream functions and memset MCInst. (#2501) d667a627 Update labeler with Xtensa and v6 files. (#2500) 52b54ee3 Fixing UB santizer, `LITBASE` and assert errors. (#2499) 97db712c Remove irrelevant changes. (#2496) 5bd05e34 Remove irrelevant changes. (#2495) 616488c7 Update changelog for V6.0.0-Alpha1 (#2493) (#2494) c5955b92 Update changelog for V6.0.0-Alpha1 (#2493) a424e709 Be ready for V6-Alpha1 (#2492) 235ba8e0 SystemZ fixes (#2488) 5dffa75b Fix LDR not assigning immediate as memory offset. (#2487) 21f7bc85 Xtensa Support (#2380) 29d87734 Several small fixups (#2489) a34901e9 Update sponsors and remove empty file. (#2485) 3120932d Fix Coverity CID 509730: overflow before widen (#2486) 1014864d Rename CS_OPT_NO_BRANCH_OFFSET and corresponding flag to better name. (#2482) 0c90fe13 Replace `assert` with `CS_ASSERT` in modules (#2478) 823bfd53 AArch64 issues (#2473) git-subtree-dir: external/capstone git-subtree-split: b102f1b89e0455c072a751d287ab64378c14205f
322 lines
7.0 KiB
C
322 lines
7.0 KiB
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
|
|
#if defined(CAPSTONE_HAS_OSXKERNEL)
|
|
#include <Availability.h>
|
|
#include <libkern/libkern.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#endif
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include "MCInstrDesc.h"
|
|
#include "MCInst.h"
|
|
#include "utils.h"
|
|
|
|
#define MCINST_CACHE (ARR_SIZE(mcInst->Operands) - 1)
|
|
|
|
void MCInst_Init(MCInst *inst, cs_arch arch)
|
|
{
|
|
memset(inst, 0, sizeof(MCInst));
|
|
// unnecessary to initialize in loop . its expensive and inst->size should be honored
|
|
inst->Operands[0].Kind = kInvalid;
|
|
inst->Operands[0].ImmVal = 0;
|
|
|
|
inst->Opcode = 0;
|
|
inst->OpcodePub = 0;
|
|
inst->size = 0;
|
|
inst->has_imm = false;
|
|
inst->op1_size = 0;
|
|
inst->ac_idx = 0;
|
|
inst->popcode_adjust = 0;
|
|
inst->assembly[0] = '\0';
|
|
inst->wasm_data.type = WASM_OP_INVALID;
|
|
inst->xAcquireRelease = 0;
|
|
for (int i = 0; i < MAX_MC_OPS; ++i)
|
|
inst->tied_op_idx[i] = -1;
|
|
inst->isAliasInstr = false;
|
|
inst->fillDetailOps = false;
|
|
memset(&inst->hppa_ext, 0, sizeof(inst->hppa_ext));
|
|
|
|
// Set default assembly dialect.
|
|
switch (arch) {
|
|
default:
|
|
break;
|
|
case CS_ARCH_SYSTEMZ:
|
|
inst->MAI.assemblerDialect = SYSTEMZASMDIALECT_AD_HLASM;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void MCInst_clear(MCInst *inst)
|
|
{
|
|
inst->size = 0;
|
|
}
|
|
|
|
// does not free @Op
|
|
void MCInst_insert0(MCInst *inst, int index, MCOperand *Op)
|
|
{
|
|
CS_ASSERT_RET(index < MAX_MC_OPS);
|
|
int i;
|
|
|
|
for(i = inst->size; i > index; i--)
|
|
//memcpy(&(inst->Operands[i]), &(inst->Operands[i-1]), sizeof(MCOperand));
|
|
inst->Operands[i] = inst->Operands[i-1];
|
|
|
|
inst->Operands[index] = *Op;
|
|
inst->size++;
|
|
}
|
|
|
|
void MCInst_setOpcode(MCInst *inst, unsigned Op)
|
|
{
|
|
inst->Opcode = Op;
|
|
}
|
|
|
|
void MCInst_setOpcodePub(MCInst *inst, unsigned Op)
|
|
{
|
|
inst->OpcodePub = Op;
|
|
}
|
|
|
|
unsigned MCInst_getOpcode(const MCInst *inst)
|
|
{
|
|
return inst->Opcode;
|
|
}
|
|
|
|
unsigned MCInst_getOpcodePub(const MCInst *inst)
|
|
{
|
|
return inst->OpcodePub;
|
|
}
|
|
|
|
MCOperand *MCInst_getOperand(MCInst *inst, unsigned i)
|
|
{
|
|
assert(i < MAX_MC_OPS);
|
|
return &inst->Operands[i];
|
|
}
|
|
|
|
unsigned MCInst_getNumOperands(const MCInst *inst)
|
|
{
|
|
return inst->size;
|
|
}
|
|
|
|
// This addOperand2 function doesn't free Op
|
|
void MCInst_addOperand2(MCInst *inst, MCOperand *Op)
|
|
{
|
|
CS_ASSERT_RET(inst->size < MAX_MC_OPS);
|
|
inst->Operands[inst->size] = *Op;
|
|
|
|
inst->size++;
|
|
}
|
|
|
|
bool MCOperand_isValid(const MCOperand *op)
|
|
{
|
|
return op->Kind != kInvalid;
|
|
}
|
|
|
|
bool MCOperand_isReg(const MCOperand *op)
|
|
{
|
|
return op->Kind == kRegister || op->MachineOperandType == kRegister;
|
|
}
|
|
|
|
bool MCOperand_isImm(const MCOperand *op)
|
|
{
|
|
return op->Kind == kImmediate || op->MachineOperandType == kImmediate;
|
|
}
|
|
|
|
bool MCOperand_isFPImm(const MCOperand *op)
|
|
{
|
|
return op->Kind == kFPImmediate;
|
|
}
|
|
|
|
bool MCOperand_isDFPImm(const MCOperand *op)
|
|
{
|
|
return op->Kind == kDFPImmediate;
|
|
}
|
|
|
|
bool MCOperand_isExpr(const MCOperand *op)
|
|
{
|
|
return op->Kind == kExpr;
|
|
}
|
|
|
|
bool MCOperand_isInst(const MCOperand *op)
|
|
{
|
|
return op->Kind == kInst;
|
|
}
|
|
|
|
/// getReg - Returns the register number.
|
|
unsigned MCOperand_getReg(const MCOperand *op)
|
|
{
|
|
return op->RegVal;
|
|
}
|
|
|
|
/// setReg - Set the register number.
|
|
void MCOperand_setReg(MCOperand *op, unsigned Reg)
|
|
{
|
|
op->RegVal = Reg;
|
|
}
|
|
|
|
int64_t MCOperand_getImm(const MCOperand *op)
|
|
{
|
|
return op->ImmVal;
|
|
}
|
|
|
|
int64_t MCOperand_getExpr(const MCOperand *op)
|
|
{
|
|
return op->ImmVal;
|
|
}
|
|
|
|
void MCOperand_setImm(MCOperand *op, int64_t Val)
|
|
{
|
|
op->ImmVal = Val;
|
|
}
|
|
|
|
double MCOperand_getFPImm(const MCOperand *op)
|
|
{
|
|
return op->FPImmVal;
|
|
}
|
|
|
|
void MCOperand_setFPImm(MCOperand *op, double Val)
|
|
{
|
|
op->FPImmVal = Val;
|
|
}
|
|
|
|
MCOperand *MCOperand_CreateReg1(MCInst *mcInst, unsigned Reg)
|
|
{
|
|
MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
|
|
|
|
op->MachineOperandType = kRegister;
|
|
op->Kind = kRegister;
|
|
op->RegVal = Reg;
|
|
|
|
return op;
|
|
}
|
|
|
|
void MCOperand_CreateReg0(MCInst *mcInst, unsigned Reg)
|
|
{
|
|
MCOperand *op = &(mcInst->Operands[mcInst->size]);
|
|
mcInst->size++;
|
|
|
|
op->MachineOperandType = kRegister;
|
|
op->Kind = kRegister;
|
|
op->RegVal = Reg;
|
|
}
|
|
|
|
MCOperand *MCOperand_CreateImm1(MCInst *mcInst, int64_t Val)
|
|
{
|
|
MCOperand *op = &(mcInst->Operands[MCINST_CACHE]);
|
|
|
|
op->MachineOperandType = kImmediate;
|
|
op->Kind = kImmediate;
|
|
op->ImmVal = Val;
|
|
|
|
return op;
|
|
}
|
|
|
|
void MCOperand_CreateImm0(MCInst *mcInst, int64_t Val)
|
|
{
|
|
assert(mcInst->size < MAX_MC_OPS);
|
|
MCOperand *op = &(mcInst->Operands[mcInst->size]);
|
|
mcInst->size++;
|
|
|
|
op->MachineOperandType = kImmediate;
|
|
op->Kind = kImmediate;
|
|
op->ImmVal = Val;
|
|
}
|
|
|
|
/// Check if any operand of the MCInstrDesc is predicable
|
|
bool MCInst_isPredicable(const MCInstrDesc *MIDesc)
|
|
{
|
|
const MCOperandInfo *OpInfo = MIDesc->OpInfo;
|
|
unsigned NumOps = MIDesc->NumOperands;
|
|
for (unsigned i = 0; i < NumOps; ++i) {
|
|
if (MCOperandInfo_isPredicate(&OpInfo[i])) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// Checks if tied operands exist in the instruction and sets
|
|
/// - The writeback flag in detail
|
|
/// - Saves the indices of the tied destination operands.
|
|
void MCInst_handleWriteback(MCInst *MI, const MCInstrDesc *InstDescTable, unsigned tbl_size)
|
|
{
|
|
const MCInstrDesc *InstDesc = NULL;
|
|
const MCOperandInfo *OpInfo = NULL;
|
|
unsigned short NumOps = 0;
|
|
InstDesc = MCInstrDesc_get(MCInst_getOpcode(MI), InstDescTable, tbl_size);
|
|
OpInfo = InstDesc->OpInfo;
|
|
NumOps = InstDesc->NumOperands;
|
|
|
|
for (unsigned i = 0; i < NumOps; ++i) {
|
|
if (MCOperandInfo_isTiedToOp(&OpInfo[i])) {
|
|
int idx = MCOperandInfo_getOperandConstraint(
|
|
InstDesc, i,
|
|
MCOI_TIED_TO);
|
|
|
|
if (idx == -1)
|
|
continue;
|
|
|
|
if (i >= MAX_MC_OPS) {
|
|
assert(0 &&
|
|
"Maximum number of MC operands reached.");
|
|
}
|
|
MI->tied_op_idx[i] = idx;
|
|
|
|
if (MI->flat_insn->detail)
|
|
MI->flat_insn->detail->writeback = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Check if operand with OpNum is tied by another operand
|
|
/// (operand is tying destination).
|
|
bool MCInst_opIsTied(const MCInst *MI, unsigned OpNum)
|
|
{
|
|
assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
|
|
for (int i = 0; i < MAX_MC_OPS; ++i) {
|
|
if (MI->tied_op_idx[i] == OpNum)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// Check if operand with OpNum is tying another operand
|
|
/// (operand is tying src).
|
|
bool MCInst_opIsTying(const MCInst *MI, unsigned OpNum)
|
|
{
|
|
assert(OpNum < MAX_MC_OPS && "Maximum number of MC operands exceeded.");
|
|
return MI->tied_op_idx[OpNum] != -1;
|
|
}
|
|
|
|
/// Returns the value of the @MCInst operand at index @OpNum.
|
|
uint64_t MCInst_getOpVal(MCInst *MI, unsigned OpNum)
|
|
{
|
|
assert(OpNum < MAX_MC_OPS);
|
|
MCOperand *op = MCInst_getOperand(MI, OpNum);
|
|
if (MCOperand_isReg(op))
|
|
return MCOperand_getReg(op);
|
|
else if (MCOperand_isImm(op))
|
|
return MCOperand_getImm(op);
|
|
else
|
|
assert(0 && "Operand type not handled in this getter.");
|
|
return MCOperand_getImm(op);
|
|
}
|
|
|
|
void MCInst_setIsAlias(MCInst *MI, bool Flag) {
|
|
assert(MI);
|
|
MI->isAliasInstr = Flag;
|
|
MI->flat_insn->is_alias = Flag;
|
|
}
|
|
|
|
/// @brief Copies the relevant members of a temporary MCInst to
|
|
/// the main MCInst. This is used if TryDecode was run on a temporary MCInst.
|
|
/// @param MI The main MCInst
|
|
/// @param TmpMI The temporary MCInst.
|
|
void MCInst_updateWithTmpMI(MCInst *MI, MCInst *TmpMI) {
|
|
MI->size = TmpMI->size;
|
|
MI->Opcode = TmpMI->Opcode;
|
|
assert(MI->size < MAX_MC_OPS);
|
|
memcpy(MI->Operands, TmpMI->Operands, sizeof(MI->Operands[0]) * MI->size);
|
|
}
|