Lines Matching full:regno
154 static DecodeStatus DecodeGPRRegisterClass(MCInst &Inst, unsigned RegNo,
157 unsigned RegNo, uint64_t Address,
159 static DecodeStatus DecodetGPRRegisterClass(MCInst &Inst, unsigned RegNo,
161 static DecodeStatus DecodetcGPRRegisterClass(MCInst &Inst, unsigned RegNo,
163 static DecodeStatus DecoderGPRRegisterClass(MCInst &Inst, unsigned RegNo,
165 static DecodeStatus DecodeSPRRegisterClass(MCInst &Inst, unsigned RegNo,
167 static DecodeStatus DecodeDPRRegisterClass(MCInst &Inst, unsigned RegNo,
169 static DecodeStatus DecodeDPR_8RegisterClass(MCInst &Inst, unsigned RegNo,
172 unsigned RegNo,
175 static DecodeStatus DecodeQPRRegisterClass(MCInst &Inst, unsigned RegNo,
177 static DecodeStatus DecodeDPairRegisterClass(MCInst &Inst, unsigned RegNo,
180 unsigned RegNo, uint64_t Address,
898 static DecodeStatus DecodeGPRRegisterClass(MCInst &Inst, unsigned RegNo,
900 if (RegNo > 15)
903 unsigned Register = GPRDecoderTable[RegNo];
909 DecodeGPRnopcRegisterClass(MCInst &Inst, unsigned RegNo,
913 if (RegNo == 15)
916 Check(S, DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder));
921 static DecodeStatus DecodetGPRRegisterClass(MCInst &Inst, unsigned RegNo,
923 if (RegNo > 7)
925 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
928 static DecodeStatus DecodetcGPRRegisterClass(MCInst &Inst, unsigned RegNo,
931 switch (RegNo) {
958 static DecodeStatus DecoderGPRRegisterClass(MCInst &Inst, unsigned RegNo,
960 if (RegNo == 13 || RegNo == 15) return MCDisassembler::Fail;
961 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
975 static DecodeStatus DecodeSPRRegisterClass(MCInst &Inst, unsigned RegNo,
977 if (RegNo > 31)
980 unsigned Register = SPRDecoderTable[RegNo];
996 static DecodeStatus DecodeDPRRegisterClass(MCInst &Inst, unsigned RegNo,
998 if (RegNo > 31)
1001 unsigned Register = DPRDecoderTable[RegNo];
1006 static DecodeStatus DecodeDPR_8RegisterClass(MCInst &Inst, unsigned RegNo,
1008 if (RegNo > 7)
1010 return DecodeDPRRegisterClass(Inst, RegNo, Address, Decoder);
1014 DecodeDPR_VFP2RegisterClass(MCInst &Inst, unsigned RegNo,
1016 if (RegNo > 15)
1018 return DecodeDPRRegisterClass(Inst, RegNo, Address, Decoder);
1029 static DecodeStatus DecodeQPRRegisterClass(MCInst &Inst, unsigned RegNo,
1031 if (RegNo > 31)
1033 RegNo >>= 1;
1035 unsigned Register = QPRDecoderTable[RegNo];
1049 static DecodeStatus DecodeDPairRegisterClass(MCInst &Inst, unsigned RegNo,
1051 if (RegNo > 30)
1054 unsigned Register = DPairDecoderTable[RegNo];
1071 unsigned RegNo,
1074 if (RegNo > 29)
1077 unsigned Register = DPairSpacedDecoderTable[RegNo];