Home | History | Annotate | Download | only in Disassembler

Lines Matching refs: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,
257 static DecodeStatus DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo,
260 if (RegNo > 31)
263 unsigned Register = FPR128DecoderTable[RegNo];
268 static DecodeStatus DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo,
271 if (RegNo > 15)
273 return DecodeFPR128RegisterClass(Inst, RegNo, Addr, Decoder);
286 static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo,
289 if (RegNo > 31)
292 unsigned Register = FPR64DecoderTable[RegNo];
307 static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo,
310 if (RegNo > 31)
313 unsigned Register = FPR32DecoderTable[RegNo];
328 static DecodeStatus DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo,
331 if (RegNo > 31)
334 unsigned Register = FPR16DecoderTable[RegNo];
349 static DecodeStatus DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo,
352 if (RegNo > 31)
355 unsigned Register = FPR8DecoderTable[RegNo];
370 static DecodeStatus DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo,
373 if (RegNo > 31)
376 unsigned Register = GPR64DecoderTable[RegNo];
381 static DecodeStatus DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo,
384 if (RegNo > 31)
386 unsigned Register = GPR64DecoderTable[RegNo];
403 static DecodeStatus DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo,
406 if (RegNo > 31)
409 unsigned Register = GPR32DecoderTable[RegNo];
414 static DecodeStatus DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo,
417 if (RegNo > 31)
420 unsigned Register = GPR32DecoderTable[RegNo];
437 static DecodeStatus DecodeVectorRegisterClass(MCInst &Inst, unsigned RegNo,
440 if (RegNo > 31)
443 unsigned Register = VectorDecoderTable[RegNo];
459 static DecodeStatus DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo,
461 if (RegNo > 31)
463 unsigned Register = QQDecoderTable[RegNo];
482 static DecodeStatus DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo,
484 if (RegNo > 31)
486 unsigned Register = QQQDecoderTable[RegNo];
505 static DecodeStatus DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo,
508 if (RegNo > 31)
510 unsigned Register = QQQQDecoderTable[RegNo];
526 static DecodeStatus DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo,
528 if (RegNo > 31)
530 unsigned Register = DDDecoderTable[RegNo];
549 static DecodeStatus DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo,
551 if (RegNo > 31)
553 unsigned Register = DDDDecoderTable[RegNo];
572 static DecodeStatus DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo,
575 if (RegNo > 31)
577 unsigned Register = DDDDDecoderTable[RegNo];