| 4229 | } |
| 4230 | |
| 4231 | static DecodeStatus DecodeCoprocessor(MCInst *Inst, unsigned Val, |
| 4232 | uint64_t Address, const void *Decoder) |
| 4233 | { |
| 4234 | if (Val == 0xA || Val == 0xB) |
| 4235 | return MCDisassembler_Fail; |
| 4236 | |
| 4237 | if (ARM_getFeatureBits(Inst->csh->mode, ARM_HasV8Ops) && !(Val == 14 || Val == 15)) |
| 4238 | return MCDisassembler_Fail; |
| 4239 | |
| 4240 | MCOperand_CreateImm0(Inst, Val); |
| 4241 | |
| 4242 | return MCDisassembler_Success; |
| 4243 | } |
| 4244 | |
| 4245 | static DecodeStatus DecodeThumbTableBranch(MCInst *Inst, unsigned Insn, |
| 4246 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…