Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:RegNo

208 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo,
210 assert(RegNo < N && "Invalid register number");
211 Inst.addOperand(MCOperand::createReg(Regs[RegNo]));
215 static DecodeStatus DecodeCRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
218 return decodeRegisterClass(Inst, RegNo, CRRegs);
221 static DecodeStatus DecodeCRRC0RegisterClass(MCInst &Inst, uint64_t RegNo,
224 return decodeRegisterClass(Inst, RegNo, CRRegs);
227 static DecodeStatus DecodeCRBITRCRegisterClass(MCInst &Inst, uint64_t RegNo,
230 return decodeRegisterClass(Inst, RegNo, CRBITRegs);
233 static DecodeStatus DecodeF4RCRegisterClass(MCInst &Inst, uint64_t RegNo,
236 return decodeRegisterClass(Inst, RegNo, FRegs);
239 static DecodeStatus DecodeF8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
242 return decodeRegisterClass(Inst, RegNo, FRegs);
245 static DecodeStatus DecodeVRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
248 return decodeRegisterClass(Inst, RegNo, VRegs);
251 static DecodeStatus DecodeVSRCRegisterClass(MCInst &Inst, uint64_t RegNo,
254 return decodeRegisterClass(Inst, RegNo, VSRegs);
257 static DecodeStatus DecodeVSFRCRegisterClass(MCInst &Inst, uint64_t RegNo,
260 return decodeRegisterClass(Inst, RegNo, VSFRegs);
263 static DecodeStatus DecodeVSSRCRegisterClass(MCInst &Inst, uint64_t RegNo,
266 return decodeRegisterClass(Inst, RegNo, VSSRegs);
269 static DecodeStatus DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo,
272 return decodeRegisterClass(Inst, RegNo, GPRegs);
275 static DecodeStatus DecodeGPRC_NOR0RegisterClass(MCInst &Inst, uint64_t RegNo,
278 return decodeRegisterClass(Inst, RegNo, GP0Regs);
281 static DecodeStatus DecodeG8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
284 return decodeRegisterClass(Inst, RegNo, G8Regs);
290 static DecodeStatus DecodeQFRCRegisterClass(MCInst &Inst, uint64_t RegNo,
293 return decodeRegisterClass(Inst, RegNo, QFRegs);