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
483 lines
11 KiB
C
483 lines
11 KiB
C
//===- TriCoreInstPrinter.cpp - Convert TriCore MCInst to assembly syntax -===//
|
||
//
|
||
// The LLVM Compiler Infrastructure
|
||
//
|
||
// This file is distributed under the University of Illinois Open Source
|
||
// License. See LICENSE.TXT for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// This class prints an TriCore MCInst to a .s file.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
/* Capstone Disassembly Engine */
|
||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2014 */
|
||
|
||
#ifdef CAPSTONE_HAS_TRICORE
|
||
|
||
#include <platform.h>
|
||
|
||
#include "../../MCInst.h"
|
||
#include "../../Mapping.h"
|
||
#include "../../MathExtras.h"
|
||
|
||
#include "TriCoreMapping.h"
|
||
#include "TriCoreLinkage.h"
|
||
|
||
static const char *getRegisterName(unsigned RegNo);
|
||
|
||
static void printInstruction(MCInst *, uint64_t, SStream *);
|
||
|
||
static void printOperand(MCInst *MI, int OpNum, SStream *O);
|
||
|
||
#define GET_INSTRINFO_ENUM
|
||
|
||
#include "TriCoreGenInstrInfo.inc"
|
||
|
||
#define GET_REGINFO_ENUM
|
||
|
||
#include "TriCoreGenRegisterInfo.inc"
|
||
|
||
static uint32_t wrapping_u32(int64_t x)
|
||
{
|
||
x %= (int64_t)(UINT32_MAX);
|
||
return (uint32_t)x;
|
||
}
|
||
|
||
static bool fill_mem(MCInst *MI, unsigned int reg, int64_t disp);
|
||
|
||
static inline void set_mem(cs_tricore_op *op, uint8_t base, int64_t disp)
|
||
{
|
||
op->type |= TRICORE_OP_MEM;
|
||
op->mem.base = base;
|
||
op->mem.disp = disp;
|
||
}
|
||
|
||
static inline void fill_reg(MCInst *MI, uint32_t reg)
|
||
{
|
||
if (!detail_is_set(MI))
|
||
return;
|
||
cs_tricore_op *op = TriCore_get_detail_op(MI, 0);
|
||
op->type = TRICORE_OP_REG;
|
||
op->reg = reg;
|
||
TriCore_inc_op_count(MI);
|
||
}
|
||
|
||
static inline void fill_imm(MCInst *MI, int64_t imm)
|
||
{
|
||
if (!detail_is_set(MI))
|
||
return;
|
||
cs_tricore *tricore = TriCore_get_detail(MI);
|
||
if (tricore->op_count >= 1) {
|
||
cs_tricore_op *op = TriCore_get_detail_op(MI, -1);
|
||
if (op->type == TRICORE_OP_REG && fill_mem(MI, op->reg, imm))
|
||
return;
|
||
}
|
||
|
||
cs_tricore_op *op = TriCore_get_detail_op(MI, 0);
|
||
op->type = TRICORE_OP_IMM;
|
||
op->imm = imm;
|
||
tricore->op_count++;
|
||
}
|
||
|
||
static bool fill_mem(MCInst *MI, unsigned int reg, int64_t disp)
|
||
{
|
||
if (!detail_is_set(MI))
|
||
return false;
|
||
switch (MI->flat_insn->id) {
|
||
case TRICORE_INS_LDMST:
|
||
case TRICORE_INS_LDLCX:
|
||
case TRICORE_INS_LD_A:
|
||
case TRICORE_INS_LD_B:
|
||
case TRICORE_INS_LD_BU:
|
||
case TRICORE_INS_LD_H:
|
||
case TRICORE_INS_LD_HU:
|
||
case TRICORE_INS_LD_D:
|
||
case TRICORE_INS_LD_DA:
|
||
case TRICORE_INS_LD_W:
|
||
case TRICORE_INS_LD_Q:
|
||
case TRICORE_INS_STLCX:
|
||
case TRICORE_INS_STUCX:
|
||
case TRICORE_INS_ST_A:
|
||
case TRICORE_INS_ST_B:
|
||
case TRICORE_INS_ST_H:
|
||
case TRICORE_INS_ST_D:
|
||
case TRICORE_INS_ST_DA:
|
||
case TRICORE_INS_ST_W:
|
||
case TRICORE_INS_ST_Q:
|
||
case TRICORE_INS_CACHEI_I:
|
||
case TRICORE_INS_CACHEI_W:
|
||
case TRICORE_INS_CACHEI_WI:
|
||
case TRICORE_INS_CACHEA_I:
|
||
case TRICORE_INS_CACHEA_W:
|
||
case TRICORE_INS_CACHEA_WI:
|
||
case TRICORE_INS_CMPSWAP_W:
|
||
case TRICORE_INS_SWAP_A:
|
||
case TRICORE_INS_SWAP_W:
|
||
case TRICORE_INS_SWAPMSK_W:
|
||
case TRICORE_INS_LEA:
|
||
case TRICORE_INS_LHA: {
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_LDMST_abs:
|
||
case TriCore_LDLCX_abs:
|
||
case TriCore_LD_A_abs:
|
||
case TriCore_LD_B_abs:
|
||
case TriCore_LD_BU_abs:
|
||
case TriCore_LD_H_abs:
|
||
case TriCore_LD_HU_abs:
|
||
case TriCore_LD_D_abs:
|
||
case TriCore_LD_DA_abs:
|
||
case TriCore_LD_W_abs:
|
||
case TriCore_LD_Q_abs:
|
||
case TriCore_STLCX_abs:
|
||
case TriCore_STUCX_abs:
|
||
case TriCore_ST_A_abs:
|
||
case TriCore_ST_B_abs:
|
||
case TriCore_ST_H_abs:
|
||
case TriCore_ST_D_abs:
|
||
case TriCore_ST_DA_abs:
|
||
case TriCore_ST_W_abs:
|
||
case TriCore_ST_Q_abs:
|
||
case TriCore_SWAP_A_abs:
|
||
case TriCore_SWAP_W_abs:
|
||
case TriCore_LEA_abs:
|
||
case TriCore_LHA_abs: {
|
||
return false;
|
||
}
|
||
}
|
||
cs_tricore_op *op = TriCore_get_detail_op(MI, -1);
|
||
op->type = 0;
|
||
set_mem(op, reg, disp);
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
static void printOperand(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
if (OpNum >= MI->size)
|
||
return;
|
||
|
||
MCOperand *Op = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isReg(Op)) {
|
||
unsigned reg = MCOperand_getReg(Op);
|
||
SStream_concat0(O, getRegisterName(reg));
|
||
fill_reg(MI, reg);
|
||
} else if (MCOperand_isImm(Op)) {
|
||
int64_t Imm = MCOperand_getImm(Op);
|
||
printUInt32Bang(O, wrapping_u32(Imm));
|
||
fill_imm(MI, Imm);
|
||
}
|
||
}
|
||
|
||
static void print_sign_ext(MCInst *MI, int OpNum, SStream *O, unsigned n)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t imm = MCOperand_getImm(MO);
|
||
int32_t res = SignExtend32(wrapping_u32(imm), n);
|
||
printInt32Bang(O, res);
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
static void off4_fixup(MCInst *MI, int64_t *off4)
|
||
{
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_LD_A_slro:
|
||
case TriCore_LD_A_sro:
|
||
case TriCore_LD_W_slro:
|
||
case TriCore_LD_W_sro:
|
||
case TriCore_ST_A_sro:
|
||
case TriCore_ST_A_ssro:
|
||
case TriCore_ST_W_sro:
|
||
case TriCore_ST_W_ssro: {
|
||
*off4 = *off4 * 4;
|
||
break;
|
||
}
|
||
case TriCore_LD_H_sro:
|
||
case TriCore_LD_H_slro:
|
||
case TriCore_ST_H_sro:
|
||
case TriCore_ST_H_ssro: {
|
||
*off4 = *off4 * 2;
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
static void const8_fixup(MCInst *MI, int64_t *const8)
|
||
{
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_LD_A_sc:
|
||
case TriCore_ST_A_sc:
|
||
case TriCore_ST_W_sc:
|
||
case TriCore_LD_W_sc: {
|
||
*const8 = *const8 * 4;
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
static void print_zero_ext(MCInst *MI, int OpNum, SStream *O, unsigned n)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t imm = MCOperand_getImm(MO);
|
||
for (unsigned i = n + 1; i < 32; ++i) {
|
||
imm &= ~(1LL << i);
|
||
}
|
||
if (n == 4) {
|
||
off4_fixup(MI, &imm);
|
||
}
|
||
if (n == 8) {
|
||
const8_fixup(MI, &imm);
|
||
}
|
||
|
||
printUInt32Bang(O, wrapping_u32(imm));
|
||
fill_imm(MI, imm);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
static void printOff18Imm(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t imm = MCOperand_getImm(MO);
|
||
imm = ((wrapping_u32(imm) & 0x3C000) << 14) |
|
||
(wrapping_u32(imm) & 0x3fff);
|
||
printUInt32Bang(O, wrapping_u32(imm));
|
||
fill_imm(MI, imm);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
// PC + sext(disp) * 2
|
||
#define DISP_SEXT_2ALIGN(N) ((int64_t)(MI->address) + SignExtend64(disp, N) * 2)
|
||
|
||
static void printDisp24Imm(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t disp = MCOperand_getImm(MO);
|
||
int64_t res = 0;
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_CALL_b:
|
||
case TriCore_FCALL_b: {
|
||
res = DISP_SEXT_2ALIGN(24);
|
||
break;
|
||
}
|
||
case TriCore_CALLA_b:
|
||
case TriCore_FCALLA_b:
|
||
case TriCore_JA_b:
|
||
case TriCore_JLA_b:
|
||
// {disp24[23:20], 7’b0000000, disp24[19:0], 1’b0}
|
||
res = ((disp & 0xf00000ULL) << 8) |
|
||
((disp & 0xfffffULL) << 1);
|
||
break;
|
||
case TriCore_J_b:
|
||
case TriCore_JL_b:
|
||
res = DISP_SEXT_2ALIGN(24);
|
||
break;
|
||
}
|
||
|
||
printUInt32Bang(O, wrapping_u32(res));
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
static void printDisp15Imm(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t disp = MCOperand_getImm(MO);
|
||
int64_t res = 0;
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_LOOP_brr:
|
||
case TriCore_LOOPU_brr:
|
||
res = DISP_SEXT_2ALIGN(15);
|
||
break;
|
||
case TriCore_JEQ_brc:
|
||
case TriCore_JEQ_brr:
|
||
case TriCore_JEQ_A_brr:
|
||
case TriCore_JGE_brc:
|
||
case TriCore_JGE_brr:
|
||
case TriCore_JGE_U_brc:
|
||
case TriCore_JGE_U_brr:
|
||
case TriCore_JLT_brc:
|
||
case TriCore_JLT_brr:
|
||
case TriCore_JLT_U_brc:
|
||
case TriCore_JLT_U_brr:
|
||
case TriCore_JNE_brc:
|
||
case TriCore_JNE_brr:
|
||
case TriCore_JNE_A_brr:
|
||
case TriCore_JNED_brc:
|
||
case TriCore_JNED_brr:
|
||
case TriCore_JNEI_brc:
|
||
case TriCore_JNEI_brr:
|
||
case TriCore_JNZ_A_brr:
|
||
case TriCore_JNZ_T_brn:
|
||
case TriCore_JZ_A_brr:
|
||
case TriCore_JZ_T_brn:
|
||
res = DISP_SEXT_2ALIGN(15);
|
||
break;
|
||
default:
|
||
// handle other cases, if any
|
||
break;
|
||
}
|
||
|
||
printUInt32Bang(O, wrapping_u32(res));
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
static void printDisp8Imm(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t disp = MCOperand_getImm(MO);
|
||
int64_t res = 0;
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_CALL_sb:
|
||
res = DISP_SEXT_2ALIGN(8);
|
||
break;
|
||
case TriCore_J_sb:
|
||
case TriCore_JNZ_sb:
|
||
case TriCore_JZ_sb:
|
||
res = DISP_SEXT_2ALIGN(8);
|
||
break;
|
||
default:
|
||
// handle other cases, if any
|
||
break;
|
||
}
|
||
|
||
printUInt32Bang(O, wrapping_u32(res));
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
static void printDisp4Imm(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t disp = MCOperand_getImm(MO);
|
||
int64_t res = 0;
|
||
switch (MCInst_getOpcode(MI)) {
|
||
case TriCore_JEQ_sbc1:
|
||
case TriCore_JEQ_sbr1:
|
||
case TriCore_JGEZ_sbr:
|
||
case TriCore_JGTZ_sbr:
|
||
case TriCore_JLEZ_sbr:
|
||
case TriCore_JLTZ_sbr:
|
||
case TriCore_JNE_sbc1:
|
||
case TriCore_JNE_sbr1:
|
||
case TriCore_JNZ_sbr:
|
||
case TriCore_JNZ_A_sbr:
|
||
case TriCore_JNZ_T_sbrn:
|
||
case TriCore_JZ_sbr:
|
||
case TriCore_JZ_A_sbr:
|
||
case TriCore_JZ_T_sbrn:
|
||
// PC + zero_ext(disp4) * 2;
|
||
res = (int64_t)(MI->address) + disp * 2;
|
||
break;
|
||
case TriCore_JEQ_sbc2:
|
||
case TriCore_JEQ_sbr2:
|
||
case TriCore_JNE_sbc2:
|
||
case TriCore_JNE_sbr2:
|
||
// PC + zero_ext(disp4 + 16) * 2;
|
||
res = (int64_t)(MI->address) + ((disp + 16) * 2);
|
||
break;
|
||
case TriCore_LOOP_sbr:
|
||
// PC + {27b’111111111111111111111111111, disp4, 0};
|
||
res = (int64_t)MI->address +
|
||
OneExtend32(wrapping_u32(disp) << 1, 5);
|
||
break;
|
||
default:
|
||
// handle other cases, if any
|
||
break;
|
||
}
|
||
|
||
printUInt32Bang(O, wrapping_u32(res));
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
#define printSExtImm_(n) \
|
||
static void printSExtImm_##n(MCInst *MI, int OpNum, SStream *O) \
|
||
{ \
|
||
print_sign_ext(MI, OpNum, O, n); \
|
||
}
|
||
|
||
#define printZExtImm_(n) \
|
||
static void printZExtImm_##n(MCInst *MI, int OpNum, SStream *O) \
|
||
{ \
|
||
print_zero_ext(MI, OpNum, O, n); \
|
||
}
|
||
|
||
// clang-format off
|
||
|
||
printSExtImm_(16)
|
||
|
||
printSExtImm_(10)
|
||
|
||
printSExtImm_(9)
|
||
|
||
printSExtImm_(4)
|
||
|
||
printZExtImm_(16)
|
||
|
||
printZExtImm_(9)
|
||
|
||
printZExtImm_(8)
|
||
|
||
printZExtImm_(4)
|
||
|
||
printZExtImm_(2);
|
||
|
||
// clang-format on
|
||
|
||
static void printOExtImm_4(MCInst *MI, int OpNum, SStream *O)
|
||
{
|
||
MCOperand *MO = MCInst_getOperand(MI, OpNum);
|
||
if (MCOperand_isImm(MO)) {
|
||
int64_t disp = MCOperand_getImm(MO);
|
||
int64_t res = (int64_t)MI->address +
|
||
(int64_t)OneExtend64(disp << 1, 5);
|
||
printUInt32Bang(O, wrapping_u32(res));
|
||
fill_imm(MI, res);
|
||
} else
|
||
printOperand(MI, OpNum, O);
|
||
}
|
||
|
||
/// Returned by getMnemonic() of the AsmPrinters.
|
||
typedef struct {
|
||
const char *first; // Mnemonic
|
||
uint64_t second; // Bits
|
||
} MnemonicBitsInfo;
|
||
|
||
#include "TriCoreGenAsmWriter.inc"
|
||
|
||
const char *TriCore_LLVM_getRegisterName(unsigned int id)
|
||
{
|
||
#ifndef CAPSTONE_DIET
|
||
return getRegisterName(id);
|
||
#else
|
||
return NULL;
|
||
#endif
|
||
}
|
||
|
||
void TriCore_LLVM_printInst(MCInst *MI, uint64_t Address, SStream *O)
|
||
{
|
||
printInstruction(MI, Address, O);
|
||
TriCore_set_access(MI);
|
||
}
|
||
|
||
#endif // CAPSTONE_HAS_TRICORE
|