Searched refs:RegNo (Results 1 - 25 of 124) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCExpr.h28 const int64_t RegNo; // All member in class:llvm::X86MCExpr
30 explicit X86MCExpr(int64_t R) : RegNo(R) {}
36 static const X86MCExpr *create(int64_t RegNo, MCContext &Ctx) { argument
37 return new (Ctx) X86MCExpr(RegNo);
45 int64_t getRegNo() const { return RegNo; }
52 OS << X86ATTInstPrinter::getRegisterName(RegNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/
H A DPPCDisassembler.cpp82 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo, argument
84 assert(RegNo < N && "Invalid register number");
85 Inst.addOperand(MCOperand::createReg(Regs[RegNo]));
89 static DecodeStatus DecodeCRRCRegisterClass(MCInst &Inst, uint64_t RegNo,
92 return decodeRegisterClass(Inst, RegNo, CRRegs);
95 static DecodeStatus DecodeCRBITRCRegisterClass(MCInst &Inst, uint64_t RegNo,
98 return decodeRegisterClass(Inst, RegNo, CRBITRegs);
101 static DecodeStatus DecodeF4RCRegisterClass(MCInst &Inst, uint64_t RegNo,
104 return decodeRegisterClass(Inst, RegNo, FRegs);
107 static DecodeStatus DecodeF8RCRegisterClass(MCInst &Inst, uint64_t RegNo,
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Disassembler/
H A DRISCVDisassembler.cpp62 static DecodeStatus DecodeGPRRegisterClass(MCInst &Inst, uint64_t RegNo, argument
71 if (RegNo >= 32 || (IsRV32E && RegNo >= 16))
74 Register Reg = RISCV::X0 + RegNo;
79 static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, uint64_t RegNo, argument
82 if (RegNo >= 32)
85 Register Reg = RISCV::F0_F + RegNo;
90 static DecodeStatus DecodeFPR32CRegisterClass(MCInst &Inst, uint64_t RegNo, argument
93 if (RegNo >= 8) {
96 Register Reg = RISCV::F8_F + RegNo;
101 DecodeFPR64RegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
112 DecodeFPR64CRegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
123 DecodeGPRNoX0RegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
133 DecodeGPRNoX0X2RegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
143 DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
154 DecodeVRRegisterClass(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
165 decodeVMaskReg(MCInst &Inst, uint64_t RegNo, uint64_t Address, const void *Decoder) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp96 static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo,
100 unsigned RegNo,
103 static DecodeStatus DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo,
106 static DecodeStatus DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo,
109 static DecodeStatus DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo,
113 DecodeGeneralDoubleLow8RegsRegisterClass(MCInst &Inst, unsigned RegNo,
115 static DecodeStatus DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo,
119 unsigned RegNo,
122 static DecodeStatus DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo,
125 static DecodeStatus DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo,
528 DecodeRegisterClass(MCInst &Inst, unsigned RegNo, ArrayRef<MCPhysReg> Table) argument
538 DecodeIntRegsLow8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
544 DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
559 DecodeGeneralSubRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
573 DecodeHvxVRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
588 DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
600 DecodeGeneralDoubleLow8RegsRegisterClass( MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
609 DecodeHvxWRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
626 DecodeHvxVQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
637 DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
646 DecodeHvxQRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
655 DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
683 DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
711 DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
763 DecodeGuestRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
789 DecodeGuestRegs64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t , const void *Decoder) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h110 MachineOperand *&getRegUseDefListHead(Register RegNo) { argument
111 if (RegNo.isVirtual())
112 return VRegInfo[RegNo.id()].second;
113 return PhysRegUseDefLists[RegNo.id()];
116 MachineOperand *getRegUseDefListHead(Register RegNo) const {
117 if (RegNo.isVirtual())
118 return VRegInfo[RegNo.id()].second;
119 return PhysRegUseDefLists[RegNo.id()];
281 reg_iterator reg_begin(Register RegNo) const {
282 return reg_iterator(getRegUseDefListHead(RegNo));
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonInstPrinter.h33 void printRegName(raw_ostream &O, unsigned RegNo) const override;
35 static char const *getRegisterName(unsigned RegNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXRegisterInfo.h51 const char *getName(unsigned RegNo) const {
53 O << "reg" << RegNo; local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/Disassembler/
H A DSystemZDisassembler.cpp82 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo, argument
84 assert(RegNo < Size && "Invalid register");
85 RegNo = Regs[RegNo];
86 if (RegNo == 0)
88 Inst.addOperand(MCOperand::createReg(RegNo));
92 static DecodeStatus DecodeGR32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
95 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR32Regs, 16);
98 static DecodeStatus DecodeGRH32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
101 return decodeRegisterClass(Inst, RegNo, SystemZM
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreInstPrinter.h31 static const char *getRegisterName(unsigned RegNo);
33 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DXCore.h72 int getEHDataRegisterNumber(unsigned RegNo) const override {
74 return (RegNo < 2) ? RegNo : -1;
H A DHexagon.h133 int getEHDataRegisterNumber(unsigned RegNo) const override {
134 return RegNo < 2 ? RegNo : -1;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp41 unsigned RegNo, uint64_t Address,
44 unsigned RegNo,
47 static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo,
50 static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo,
53 static DecodeStatus DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo,
56 static DecodeStatus DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo,
59 static DecodeStatus DecodeGPR64commonRegisterClass(MCInst &Inst, unsigned RegNo,
62 static DecodeStatus DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo,
66 unsigned RegNo, uint64_t Address,
68 static DecodeStatus DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo,
317 DecodeFPR128RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
328 DecodeFPR128_loRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
346 DecodeFPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
367 DecodeFPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
388 DecodeFPR16RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
409 DecodeFPR8RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
430 DecodeGPR64commonRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
441 DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
452 DecodeGPR64spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
474 DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
485 DecodeGPR32spRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
508 DecodeZPRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void* Decoder) argument
519 DecodeZPR_4bRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
527 DecodeZPR_3bRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
546 DecodeZPR2RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void* Decoder) argument
570 DecodeZPR3RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void* Decoder) argument
594 DecodeZPR4RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void* Decoder) argument
611 DecodePPRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
621 DecodePPR_3bRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void* Decoder) argument
641 DecodeVectorRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
663 DecodeQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
686 DecodeQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
709 DecodeQQQQRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
730 DecodeDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
753 DecodeDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
776 DecodeDDDDRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
1811 DecodeGPRSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegClassID, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
1825 DecodeWSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
1834 DecodeXSeqPairsClassRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Addr, const void *Decoder) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/
H A DMipsDisassembler.cpp83 unsigned RegNo,
88 unsigned RegNo,
93 unsigned RegNo,
98 unsigned RegNo,
103 unsigned RegNo,
108 unsigned RegNo,
118 unsigned RegNo,
123 unsigned RegNo,
128 unsigned RegNo,
133 unsigned RegNo,
580 getReg(const void *D, unsigned RC, unsigned RegNo) argument
1395 DecodeCPU16RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1402 DecodeGPR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1414 DecodeGPRMM16RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1425 DecodeGPRMM16ZeroRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1436 DecodeGPRMM16MovePRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1447 DecodeGPR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1458 DecodePtrRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1468 DecodeDSPRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1475 DecodeFGR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1487 DecodeFGR32RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1499 DecodeCCRRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1510 DecodeFCCRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
1521 DecodeFGRCCRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2067 DecodeHWRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2078 DecodeAFGR64RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2090 DecodeACC64DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2102 DecodeHI32DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2114 DecodeLO32DSPRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2126 DecodeMSA128BRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2138 DecodeMSA128HRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2150 DecodeMSA128WRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2162 DecodeMSA128DRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2174 DecodeMSACtrlRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2186 DecodeCOP0RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
2198 DecodeCOP2RegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVInstPrinter.h31 void printRegName(raw_ostream &O, unsigned RegNo) const override;
58 static const char *getRegisterName(unsigned RegNo);
59 static const char *getRegisterName(unsigned RegNo, unsigned AltIdx);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp48 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
49 OperandMatchResultTy tryParseRegister(unsigned &RegNo, SMLoc &StartLoc,
190 void setReg(unsigned RegNo) { argument
192 Reg = RegNo;
291 bool MSP430AsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, argument
293 switch (tryParseRegister(RegNo, StartLoc, EndLoc)) {
305 OperandMatchResultTy MSP430AsmParser::tryParseRegister(unsigned &RegNo, argument
310 RegNo = MatchRegisterName(Name);
311 if (RegNo == MSP430::NoRegister) {
312 RegNo
457 unsigned RegNo; local
472 unsigned RegNo = MSP430::PC; local
508 unsigned RegNo; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp146 unsigned RegNo,
149 if (RegNo > 31)
151 unsigned Reg = IntRegDecoderTable[RegNo];
157 unsigned RegNo,
160 if (RegNo > 31)
162 unsigned Reg = IntRegDecoderTable[RegNo];
169 unsigned RegNo,
172 if (RegNo > 31)
174 unsigned Reg = FPRegDecoderTable[RegNo];
181 unsigned RegNo,
145 DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
156 DecodeI64RegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
168 DecodeFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
180 DecodeDFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
192 DecodeQFPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
206 DecodeCPRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
217 DecodeFCCRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
226 DecodeASRRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
235 DecodePRRegsRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
244 DecodeIntPairRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
259 DecodeCPPairRegisterClass(MCInst &Inst, unsigned RegNo, uint64_t Address, const void *Decoder) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRInstPrinter.h29 static const char *getPrettyRegisterName(unsigned RegNo,
36 static const char *getRegisterName(unsigned RegNo,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXInstPrinter.h27 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
33 static const char *getRegisterName(unsigned RegNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/
H A DARCInstPrinter.h30 static const char *getRegisterName(unsigned RegNo);
32 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcInstPrinter.h26 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
41 static const char *getRegisterName(unsigned RegNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/
H A DVEInstPrinter.h27 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
36 static const char *getRegisterName(unsigned RegNo,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.h39 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
54 static const char *getRegisterName(unsigned RegNo);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp41 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
42 OperandMatchResultTy tryParseRegister(unsigned &RegNo, SMLoc &StartLoc,
206 static std::unique_ptr<BPFOperand> createReg(unsigned RegNo, SMLoc S, argument
209 Op->Reg.RegNum = RegNo;
325 bool BPFAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, argument
327 if (tryParseRegister(RegNo, StartLoc, EndLoc) != MatchOperand_Success)
332 OperandMatchResultTy BPFAsmParser::tryParseRegister(unsigned &RegNo, argument
338 RegNo = 0;
424 unsigned RegNo = MatchRegisterName(Name); local
426 if (RegNo
465 unsigned RegNo = MatchRegisterName(Name); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetStreamer.h49 virtual void emitDirectiveSetAtWithArg(unsigned RegNo);
93 virtual void emitDirectiveCpAdd(unsigned RegNo);
94 virtual void emitDirectiveCpLoad(unsigned RegNo);
95 virtual void emitDirectiveCpLocal(unsigned RegNo);
99 virtual void emitDirectiveCpsetup(unsigned RegNo, int RegOrOffset,
231 void emitDirectiveSetAtWithArg(unsigned RegNo) override;
275 void emitDirectiveCpAdd(unsigned RegNo) override;
276 void emitDirectiveCpLoad(unsigned RegNo) override;
277 void emitDirectiveCpLocal(unsigned RegNo) override;
288 void emitDirectiveCpsetup(unsigned RegNo, in
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp70 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
71 OperandMatchResultTy tryParseRegister(unsigned &RegNo, SMLoc &StartLoc,
97 // returns true if Tok is matched to a register and returns register in RegNo.
98 bool matchRegisterName(const AsmToken &Tok, unsigned &RegNo,
633 bool SparcAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc, argument
635 if (tryParseRegister(RegNo, StartLoc, EndLoc) != MatchOperand_Success)
640 OperandMatchResultTy SparcAsmParser::tryParseRegister(unsigned &RegNo, argument
646 RegNo = 0;
651 if (matchRegisterName(Tok, RegNo, regKind)) {
835 unsigned RegNo, RegKin local
893 unsigned RegNo; local
993 matchRegisterName(const AsmToken &Tok, unsigned &RegNo, unsigned &RegKind) argument
[all...]

Completed in 198 milliseconds

12345