We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An instruction which writes to pc should be part of the jump group.
pc
jump
Similar logic is added for pop instructions which write to pc ( 4fc80d8)
pop
As an example, this mov should be of the jump group.
mov
./cstool -d thumb 8746 0 87 46 mov pc, r0 ID: 28 (mov) op_count: 2 operands[0].type: REG = r15 operands[0].access: WRITE operands[1].type: REG = r0 operands[1].access: READ Registers read: r0 Registers modified: r15 Groups: IsThumb
The text was updated successfully, but these errors were encountered:
ldr r0, <addr>; mov pc, r0
Fix capstone-engine#2233
46e665e
ada0a0a
c8873ee
3d72a0a
Fix #2233 (#2267)
336171c
Successfully merging a pull request may close this issue.
An instruction which writes to
pc
should be part of thejump
group.Similar logic is added for
pop
instructions which write topc
( 4fc80d8)As an example, this
mov
should be of thejump
group.The text was updated successfully, but these errors were encountered: