Skip to content

Commit

Permalink
Merge pull request #1968 from covanam/next
Browse files Browse the repository at this point in the history
correct register accesses for ARM's sxtb/uxtb and similar instructions
  • Loading branch information
kabeor authored Mar 8, 2023
2 parents bce16c6 + cbe7910 commit 61cdc56
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions arch/ARM/ARMMappingInsnOp.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2432,15 +2432,15 @@
},

{ /* ARM_SXTB, ARM_INS_SXTB: sxtb */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_SXTB16, ARM_INS_SXTB16: sxtb16 */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_SXTH, ARM_INS_SXTH: sxth */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_TEQri, ARM_INS_TEQ: teq */
Expand Down Expand Up @@ -2612,15 +2612,15 @@
},

{ /* ARM_UXTB, ARM_INS_UXTB: uxtb */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_UXTB16, ARM_INS_UXTB16: uxtb16 */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_UXTH, ARM_INS_UXTH: uxth */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_VABALsv2i64, ARM_INS_VABAL: vabal */
Expand Down Expand Up @@ -10204,7 +10204,7 @@
},

{ /* ARM_t2SXTH, ARM_INS_SXTH: sxth */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_t2TBB, ARM_INS_TBB: tbb */
Expand Down Expand Up @@ -10384,15 +10384,15 @@
},

{ /* ARM_t2UXTB, ARM_INS_UXTB: uxtb */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_t2UXTB16, ARM_INS_UXTB16: uxtb16 */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_t2UXTH, ARM_INS_UXTH: uxth */
{ CS_AC_WRITE, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},

{ /* ARM_tADC, ARM_INS_ADC: adc */
Expand Down

0 comments on commit 61cdc56

Please sign in to comment.