mirror of
https://github.com/capstone-engine/capstone.git
synced 2025-04-04 10:22:06 +00:00
Fix print_insn_detail_tricore
and disp fill
This commit is contained in:
parent
2c052afe3c
commit
acc8c3fb13
@ -309,10 +309,13 @@ static inline void fixup_tricore_disp(MCInst *MI, int OpNum, int32_t disp)
|
|||||||
{
|
{
|
||||||
if (MI->csh->detail != CS_OPT_ON)
|
if (MI->csh->detail != CS_OPT_ON)
|
||||||
return;
|
return;
|
||||||
if (OpNum <= 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
cs_tricore *tricore = &MI->flat_insn->detail->tricore;
|
cs_tricore *tricore = &MI->flat_insn->detail->tricore;
|
||||||
|
if (OpNum <= 0) {
|
||||||
|
fill_tricore_imm(MI, disp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (tricore->operands[tricore->op_count - 1].type != TRICORE_OP_REG)
|
if (tricore->operands[tricore->op_count - 1].type != TRICORE_OP_REG)
|
||||||
return;
|
return;
|
||||||
fill_mem(tricore, tricore->operands[tricore->op_count - 1].reg, disp);
|
fill_mem(tricore, tricore->operands[tricore->op_count - 1].reg, disp);
|
||||||
|
@ -399,6 +399,9 @@ static void print_details(csh handle, cs_arch arch, cs_mode md, cs_insn *ins)
|
|||||||
case CS_ARCH_SH:
|
case CS_ARCH_SH:
|
||||||
print_insn_detail_sh(handle, ins);
|
print_insn_detail_sh(handle, ins);
|
||||||
break;
|
break;
|
||||||
|
case CS_ARCH_TRICORE:
|
||||||
|
print_insn_detail_tricore(handle, ins);
|
||||||
|
break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user