Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:RegNo

172 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo,
174 assert(RegNo < N && "Invalid register number");
175 Inst.addOperand(MCOperand::CreateReg(Regs[RegNo]));
179 static DecodeStatus DecodeCRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
182 return decodeRegisterClass(Inst, RegNo, CRRegs);
185 static DecodeStatus DecodeCRBITRCRegisterClass(MCInst &Inst, uint64_t RegNo,
188 return decodeRegisterClass(Inst, RegNo, CRBITRegs);
191 static DecodeStatus DecodeF4RCRegisterClass(MCInst &Inst, uint64_t RegNo,
194 return decodeRegisterClass(Inst, RegNo, FRegs);
197 static DecodeStatus DecodeF8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
200 return decodeRegisterClass(Inst, RegNo, FRegs);
203 static DecodeStatus DecodeVRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
206 return decodeRegisterClass(Inst, RegNo, VRegs);
209 static DecodeStatus DecodeVSRCRegisterClass(MCInst &Inst, uint64_t RegNo,
212 return decodeRegisterClass(Inst, RegNo, VSRegs);
215 static DecodeStatus DecodeVSFRCRegisterClass(MCInst &Inst, uint64_t RegNo,
218 return decodeRegisterClass(Inst, RegNo, VSFRegs);
221 static DecodeStatus DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo,
224 return decodeRegisterClass(Inst, RegNo, GPRegs);
227 static DecodeStatus DecodeGPRC_NOR0RegisterClass(MCInst &Inst, uint64_t RegNo,
230 return decodeRegisterClass(Inst, RegNo, GP0Regs);
233 static DecodeStatus DecodeG8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
236 return decodeRegisterClass(Inst, RegNo, G8Regs);