| 999 | } |
| 1000 | |
| 1001 | static DecodeStatus DecodeGPRwithAPSRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 1002 | uint64_t Address, const void *Decoder) |
| 1003 | { |
| 1004 | DecodeStatus S = MCDisassembler_Success; |
| 1005 | |
| 1006 | if (RegNo == 15) { |
| 1007 | MCOperand_CreateReg0(Inst, ARM_APSR_NZCV); |
| 1008 | |
| 1009 | return MCDisassembler_Success; |
| 1010 | } |
| 1011 | |
| 1012 | Check(&S, DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder)); |
| 1013 | return S; |
| 1014 | } |
| 1015 | |
| 1016 | static DecodeStatus DecodetGPRRegisterClass(MCInst *Inst, unsigned RegNo, |
| 1017 | uint64_t Address, const void *Decoder) |
nothing calls this directly
no test coverage detected
searching dependent graphs…