Lines Matching defs:RegNo

34                                               unsigned RegNo, uint64_t Address,
37 unsigned RegNo,
40 static DecodeStatus DecodeFPR64RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
43 static DecodeStatus DecodeFPR32RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
46 static DecodeStatus DecodeFPR16RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
49 static DecodeStatus DecodeFPR8RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
52 static DecodeStatus DecodeGPR64RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
56 unsigned RegNo, uint64_t Address,
58 static DecodeStatus DecodeGPR32RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
62 unsigned RegNo, uint64_t Address,
64 static DecodeStatus DecodeQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
67 static DecodeStatus DecodeQQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
70 static DecodeStatus DecodeQQQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
73 static DecodeStatus DecodeDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
76 static DecodeStatus DecodeDDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
79 static DecodeStatus DecodeDDDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
173 unsigned RegNo,
177 unsigned RegNo,
265 static DecodeStatus DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo,
268 if (RegNo > 31)
271 unsigned Register = FPR128DecoderTable[RegNo];
276 static DecodeStatus DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo,
279 if (RegNo > 15)
281 return DecodeFPR128RegisterClass(Inst, RegNo, Addr, Decoder);
294 static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo,
297 if (RegNo > 31)
300 unsigned Register = FPR64DecoderTable[RegNo];
315 static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo,
318 if (RegNo > 31)
321 unsigned Register = FPR32DecoderTable[RegNo];
336 static DecodeStatus DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo,
339 if (RegNo > 31)
342 unsigned Register = FPR16DecoderTable[RegNo];
357 static DecodeStatus DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo,
360 if (RegNo > 31)
363 unsigned Register = FPR8DecoderTable[RegNo];
378 static DecodeStatus DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo,
381 if (RegNo > 31)
384 unsigned Register = GPR64DecoderTable[RegNo];
389 static DecodeStatus DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo,
392 if (RegNo > 31)
394 unsigned Register = GPR64DecoderTable[RegNo];
411 static DecodeStatus DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo,
414 if (RegNo > 31)
417 unsigned Register = GPR32DecoderTable[RegNo];
422 static DecodeStatus DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo,
425 if (RegNo > 31)
428 unsigned Register = GPR32DecoderTable[RegNo];
445 static DecodeStatus DecodeVectorRegisterClass(MCInst &Inst, unsigned RegNo,
448 if (RegNo > 31)
451 unsigned Register = VectorDecoderTable[RegNo];
467 static DecodeStatus DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo,
469 if (RegNo > 31)
471 unsigned Register = QQDecoderTable[RegNo];
490 static DecodeStatus DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo,
492 if (RegNo > 31)
494 unsigned Register = QQQDecoderTable[RegNo];
513 static DecodeStatus DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo,
516 if (RegNo > 31)
518 unsigned Register = QQQQDecoderTable[RegNo];
534 static DecodeStatus DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo,
536 if (RegNo > 31)
538 unsigned Register = DDDecoderTable[RegNo];
557 static DecodeStatus DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo,
559 if (RegNo > 31)
561 unsigned Register = DDDDecoderTable[RegNo];
580 static DecodeStatus DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo,
583 if (RegNo > 31)
585 unsigned Register = DDDDDecoderTable[RegNo];
1561 unsigned RegNo,
1565 if (RegNo & 0x1)
1568 unsigned Register = AArch64MCRegisterClasses[RegClassID].getRegister(RegNo);
1574 unsigned RegNo,
1579 RegNo, Addr, Decoder);
1583 unsigned RegNo,
1588 RegNo, Addr, Decoder);