Skip to content

Commit

Permalink
Add op.type for vpins 86 instructions ##arch
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Feb 11, 2025
1 parent f07d55d commit eb5a842
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libr/arch/p/x86/plugin_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -2912,6 +2912,12 @@ static void anop(RArchSession *a, RAnalOp *op, ut64 addr, const ut8 *buf, int le
case X86_INS_HLT:
op->type = R_ANAL_OP_TYPE_TRAP;
break;
case X86_INS_VPINSRQ:
case X86_INS_VPINSRD:
case X86_INS_VPINSRW:
case X86_INS_VPINSRB:
op->type = R_ANAL_OP_TYPE_MOV;
break;
case X86_INS_FBLD:
case X86_INS_FBSTP:
case X86_INS_FINCSTP:
Expand Down

0 comments on commit eb5a842

Please sign in to comment.