| 1134 | }; |
| 1135 | |
| 1136 | static DecodeStatus DecodeDPRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 1137 | uint64_t Address, const void *Decoder) |
| 1138 | { |
| 1139 | unsigned Register; |
| 1140 | |
| 1141 | if (RegNo > 31 || (ARM_getFeatureBits(Inst->csh->mode, ARM_FeatureD16) && RegNo > 15)) |
| 1142 | return MCDisassembler_Fail; |
| 1143 | |
| 1144 | Register = DPRDecoderTable[RegNo]; |
| 1145 | MCOperand_CreateReg0(Inst, Register); |
| 1146 | |
| 1147 | return MCDisassembler_Success; |
| 1148 | } |
| 1149 | |
| 1150 | static DecodeStatus DecodeDPR_8RegisterClass(MCInst *Inst, unsigned RegNo, |
| 1151 | uint64_t Address, const void *Decoder) |
no test coverage detected
searching dependent graphs…