Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:RegNo

179 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo,
181 assert(RegNo < N && "Invalid register number");
182 Inst.addOperand(MCOperand::CreateReg(Regs[RegNo]));
186 static DecodeStatus DecodeCRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
189 return decodeRegisterClass(Inst, RegNo, CRRegs);
192 static DecodeStatus DecodeCRRC0RegisterClass(MCInst &Inst, uint64_t RegNo,
195 return decodeRegisterClass(Inst, RegNo, CRRegs);
198 static DecodeStatus DecodeCRBITRCRegisterClass(MCInst &Inst, uint64_t RegNo,
201 return decodeRegisterClass(Inst, RegNo, CRBITRegs);
204 static DecodeStatus DecodeF4RCRegisterClass(MCInst &Inst, uint64_t RegNo,
207 return decodeRegisterClass(Inst, RegNo, FRegs);
210 static DecodeStatus DecodeF8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
213 return decodeRegisterClass(Inst, RegNo, FRegs);
216 static DecodeStatus DecodeVRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
219 return decodeRegisterClass(Inst, RegNo, VRegs);
222 static DecodeStatus DecodeVSRCRegisterClass(MCInst &Inst, uint64_t RegNo,
225 return decodeRegisterClass(Inst, RegNo, VSRegs);
228 static DecodeStatus DecodeVSFRCRegisterClass(MCInst &Inst, uint64_t RegNo,
231 return decodeRegisterClass(Inst, RegNo, VSFRegs);
234 static DecodeStatus DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo,
237 return decodeRegisterClass(Inst, RegNo, GPRegs);
240 static DecodeStatus DecodeGPRC_NOR0RegisterClass(MCInst &Inst, uint64_t RegNo,
243 return decodeRegisterClass(Inst, RegNo, GP0Regs);
246 static DecodeStatus DecodeG8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
249 return decodeRegisterClass(Inst, RegNo, G8Regs);
255 static DecodeStatus DecodeQFRCRegisterClass(MCInst &Inst, uint64_t RegNo,
258 return decodeRegisterClass(Inst, RegNo, QFRegs);