| 159 | } |
| 160 | |
| 161 | static DecodeStatus DecodeRRegsRegisterClass(MCInst *Inst, unsigned RegNo, |
| 162 | uint64_t Address, const void *Decoder) |
| 163 | { |
| 164 | unsigned Reg; |
| 165 | if (RegNo > 15) |
| 166 | return MCDisassembler_Fail; |
| 167 | |
| 168 | Reg = getReg(Decoder, XCore_RRegsRegClassID, RegNo); |
| 169 | MCOperand_CreateReg0(Inst, Reg); |
| 170 | |
| 171 | return MCDisassembler_Success; |
| 172 | } |
| 173 | |
| 174 | static DecodeStatus DecodeBitpOperand(MCInst *Inst, unsigned Val, |
| 175 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…