Home | History | Annotate | Download | only in Disassembler

Lines Matching refs:RegNo

35                                               unsigned RegNo, uint64_t Address,
38 unsigned RegNo,
41 static DecodeStatus DecodeFPR64RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
44 static DecodeStatus DecodeFPR32RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
47 static DecodeStatus DecodeFPR16RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
50 static DecodeStatus DecodeFPR8RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
53 static DecodeStatus DecodeGPR64RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
57 unsigned RegNo, uint64_t Address,
59 static DecodeStatus DecodeGPR32RegisterClass(llvm::MCInst &Inst, unsigned RegNo,
63 unsigned RegNo, uint64_t Address,
65 static DecodeStatus DecodeQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
68 static DecodeStatus DecodeQQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
71 static DecodeStatus DecodeQQQQRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
74 static DecodeStatus DecodeDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
77 static DecodeStatus DecodeDDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
80 static DecodeStatus DecodeDDDDRegisterClass(llvm::MCInst &Inst, unsigned RegNo,
266 static DecodeStatus DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo,
269 if (RegNo > 31)
272 unsigned Register = FPR128DecoderTable[RegNo];
277 static DecodeStatus DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo,
280 if (RegNo > 15)
282 return DecodeFPR128RegisterClass(Inst, RegNo, Addr, Decoder);
295 static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo,
298 if (RegNo > 31)
301 unsigned Register = FPR64DecoderTable[RegNo];
316 static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo,
319 if (RegNo > 31)
322 unsigned Register = FPR32DecoderTable[RegNo];
337 static DecodeStatus DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo,
340 if (RegNo > 31)
343 unsigned Register = FPR16DecoderTable[RegNo];
358 static DecodeStatus DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo,
361 if (RegNo > 31)
364 unsigned Register = FPR8DecoderTable[RegNo];
379 static DecodeStatus DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo,
382 if (RegNo > 31)
385 unsigned Register = GPR64DecoderTable[RegNo];
390 static DecodeStatus DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo,
393 if (RegNo > 31)
395 unsigned Register = GPR64DecoderTable[RegNo];
412 static DecodeStatus DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo,
415 if (RegNo > 31)
418 unsigned Register = GPR32DecoderTable[RegNo];
423 static DecodeStatus DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo,
426 if (RegNo > 31)
429 unsigned Register = GPR32DecoderTable[RegNo];
446 static DecodeStatus DecodeVectorRegisterClass(MCInst &Inst, unsigned RegNo,
449 if (RegNo > 31)
452 unsigned Register = VectorDecoderTable[RegNo];
468 static DecodeStatus DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo,
470 if (RegNo > 31)
472 unsigned Register = QQDecoderTable[RegNo];
491 static DecodeStatus DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo,
493 if (RegNo > 31)
495 unsigned Register = QQQDecoderTable[RegNo];
514 static DecodeStatus DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo,
517 if (RegNo > 31)
519 unsigned Register = QQQQDecoderTable[RegNo];
535 static DecodeStatus DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo,
537 if (RegNo > 31)
539 unsigned Register = DDDecoderTable[RegNo];
558 static DecodeStatus DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo,
560 if (RegNo > 31)
562 unsigned Register = DDDDecoderTable[RegNo];
581 static DecodeStatus DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo,
584 if (RegNo > 31)
586 unsigned Register = DDDDDecoderTable[RegNo];