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
Before:
0 4c 85 7d 30 test qword ptr [rbp + 0x30], r15 Prefix:0x00 0x00 0x00 0x00 Opcode:0x85 0x00 0x00 0x00 rex: 0x4c addr_size: 8 modrm: 0x7d disp: 0x30 sib: 0x0 op_count: 2 operands[0].type: MEM operands[0].mem.base: REG = rbp operands[0].mem.disp: 0x30 operands[0].size: 8 operands[0].access: READ operands[1].type: REG = r15 operands[1].size: 8 operands[1].access: READ Registers read: rbp r15 Registers modified: rflags EFLAGS: MOD_SF MOD_ZF MOD_PF RESET_OF RESET_CF UNDEF_AF
after
0 4c 85 7d 30 test qword ptr [rbp + 0x30], r15 Prefix:0x00 0x00 0x00 0x00 Opcode:0x85 0x00 0x00 0x00 rex: 0x4c addr_size: 8 modrm: 0x7d disp: 0x30 sib: 0x0 op_count: 2 operands[0].type: MEM operands[0].mem.base: REG = rbp operands[0].mem.disp: 0x30 operands[0].size: 8 operands[1].type: REG = r15 operands[1].size: 8 Registers read: rbp
The read access of r15 is not included in operands[1] and r15 doesn't show up in "Registers read"
I bisected this to 5a99624
The text was updated successfully, but these errors were encountered:
Fix capstone-engine#2128 by adding missing mapping values.
0f4b5d7
ef0dd64
df7bc26
1b2b90e
Fix #2128 by adding missing mapping values. (#2335)
514b8fc
Fix #2128 by adding missing mapping values. (#2334)
6e0725c
Successfully merging a pull request may close this issue.
Before:
after
The read access of r15 is not included in operands[1] and r15 doesn't show up in "Registers read"
I bisected this to 5a99624
The text was updated successfully, but these errors were encountered: