| 4191 | } |
| 4192 | |
| 4193 | static DecodeStatus DecodePostIdxReg(MCInst *Inst, unsigned Insn, |
| 4194 | uint64_t Address, const void *Decoder) |
| 4195 | { |
| 4196 | DecodeStatus S = MCDisassembler_Success; |
| 4197 | unsigned Rm = fieldFromInstruction_4(Insn, 0, 4); |
| 4198 | unsigned add = fieldFromInstruction_4(Insn, 4, 1); |
| 4199 | |
| 4200 | if (!Check(&S, DecodeGPRnopcRegisterClass(Inst, Rm, Address, Decoder))) |
| 4201 | return MCDisassembler_Fail; |
| 4202 | |
| 4203 | MCOperand_CreateImm0(Inst, add); |
| 4204 | |
| 4205 | return S; |
| 4206 | } |
| 4207 | |
| 4208 | static DecodeStatus DecodeThumbBLXOffset(MCInst *Inst, unsigned Val, |
| 4209 | uint64_t Address, const void *Decoder) |
no test coverage detected
searching dependent graphs…