HomeSort by relevance Sort by last modified time
    Searched refs:RegNo (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRegisterInfo.h 104 reg_iterator reg_begin(unsigned RegNo) const {
105 return reg_iterator(getRegUseDefListHead(RegNo));
111 bool reg_empty(unsigned RegNo) const { return reg_begin(RegNo) == reg_end(); }
116 reg_nodbg_iterator reg_nodbg_begin(unsigned RegNo) const {
117 return reg_nodbg_iterator(getRegUseDefListHead(RegNo));
123 bool reg_nodbg_empty(unsigned RegNo) const {
124 return reg_nodbg_begin(RegNo) == reg_nodbg_end();
129 def_iterator def_begin(unsigned RegNo) const {
130 return def_iterator(getRegUseDefListHead(RegNo));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmLexer.cpp 106 int RegNo = -1;
108 case '0': RegNo = X86::DR0; break;
109 case '1': RegNo = X86::DR1; break;
110 case '2': RegNo = X86::DR2; break;
111 case '3': RegNo = X86::DR3; break;
112 case '4': RegNo = X86::DR4; break;
113 case '5': RegNo = X86::DR5; break;
114 case '6': RegNo = X86::DR6; break;
115 case '7': RegNo = X86::DR7; break;
118 if (RegNo != -1)
    [all...]
X86AsmParser.cpp 88 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
125 unsigned RegNo;
163 return Reg.RegNo;
326 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
328 Res->Reg.RegNo = RegNo;
392 bool X86ATTAsmParser::ParseRegister(unsigned &RegNo,
394 RegNo = 0;
404 RegNo = MatchRegisterName(Tok.getString());
407 if (RegNo == 0
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCRegisterInfo.h 198 const MCRegisterDesc &operator[](unsigned RegNo) const {
199 assert(RegNo < NumRegs &&
201 return Desc[RegNo];
207 const MCRegisterDesc &get(unsigned RegNo) const {
208 return operator[](RegNo);
215 const unsigned *getAliasSet(unsigned RegNo) const {
217 return get(RegNo).Overlaps + 1;
225 const unsigned *getOverlaps(unsigned RegNo) const {
226 return get(RegNo).Overlaps;
234 const unsigned *getSubRegisters(unsigned RegNo) const
    [all...]
MCInstPrinter.h 53 virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 79 MachineOperand *&getRegUseDefListHead(unsigned RegNo) {
80 if (TargetRegisterInfo::isVirtualRegister(RegNo))
81 return VRegInfo[RegNo].second;
82 return PhysRegUseDefLists[RegNo];
85 MachineOperand *getRegUseDefListHead(unsigned RegNo) const {
86 if (TargetRegisterInfo::isVirtualRegister(RegNo))
87 return VRegInfo[RegNo].second;
88 return PhysRegUseDefLists[RegNo];
247 reg_iterator reg_begin(unsigned RegNo) const {
248 return reg_iterator(getRegUseDefListHead(RegNo));
    [all...]
  /art/compiler/utils/arm64/
managed_register_arm64.cc 45 return (IsGPRegister() == other.IsGPRegister()) && (RegNo() == other.RegNo());
48 int Arm64ManagedRegister::RegNo() const {
67 int low = RegNo();
79 int high = RegNo();
  /external/swiftshader/third_party/LLVM/lib/MC/
MCInstPrinter.cpp 25 void MCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
  /external/llvm/lib/Target/NVPTX/InstPrinter/
NVPTXInstPrinter.h 28 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
34 static const char *getRegisterName(unsigned RegNo);
  /external/llvm/lib/Target/NVPTX/
NVPTXRegisterInfo.h 52 const char *getName(unsigned RegNo) const {
54 O << "reg" << RegNo;
  /external/llvm/lib/Target/WebAssembly/InstPrinter/
WebAssemblyInstPrinter.h 34 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
45 static const char *getRegisterName(unsigned RegNo);
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmInstrumentation.h 39 void SetInitialFrameRegister(unsigned RegNo) {
40 InitialFrameReg = RegNo;
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.h 30 static const char *getRegisterName(unsigned RegNo);
32 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/InstPrinter/
PTXInstPrinter.h 30 virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
36 static const char *getRegisterName(unsigned RegNo);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86BaseInfo.h 725 inline bool isX86_64ExtendedReg(unsigned RegNo) {
726 if ((RegNo >= X86::XMM8 && RegNo <= X86::XMM15) ||
727 (RegNo >= X86::XMM24 && RegNo <= X86::XMM31) ||
728 (RegNo >= X86::YMM8 && RegNo <= X86::YMM15) ||
729 (RegNo >= X86::YMM24 && RegNo <= X86::YMM31) ||
730 (RegNo >= X86::ZMM8 && RegNo <= X86::ZMM15) |
    [all...]
  /external/llvm/lib/Target/SystemZ/Disassembler/
SystemZDisassembler.cpp 77 static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo,
79 assert(RegNo < Size && "Invalid register");
80 RegNo = Regs[RegNo];
81 if (RegNo == 0)
83 Inst.addOperand(MCOperand::createReg(RegNo));
87 static DecodeStatus DecodeGR32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
90 return decodeRegisterClass(Inst, RegNo, SystemZMC::GR32Regs, 16);
93 static DecodeStatus DecodeGRH32BitRegisterClass(MCInst &Inst, uint64_t RegNo,
96 return decodeRegisterClass(Inst, RegNo, SystemZMC::GRH32Regs, 16)
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 53 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
76 // returns true if Tok is matched to a register and returns register in RegNo.
77 bool matchRegisterName(const AsmToken &Tok, unsigned &RegNo,
593 ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc)
598 RegNo = 0;
603 if (matchRegisterName(Tok, RegNo, regKind)) {
781 unsigned RegNo, RegKind;
782 if (!matchRegisterName(Parser.getTok(), RegNo, RegKind))
787 Operands.push_back(SparcOperand::CreateReg(RegNo, RegKind, S, E));
840 unsigned RegNo;
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 72 unsigned RegNo,
77 unsigned RegNo,
82 unsigned RegNo,
87 unsigned RegNo,
92 unsigned RegNo,
97 unsigned RegNo,
107 unsigned RegNo,
112 unsigned RegNo,
117 unsigned RegNo,
122 unsigned RegNo,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 30 void PPCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
31 OS << getRegisterName(RegNo);
176 unsigned RegNo;
179 case PPC::CR0: RegNo = 0; break;
180 case PPC::CR1: RegNo = 1; break;
181 case PPC::CR2: RegNo = 2; break;
182 case PPC::CR3: RegNo = 3; break;
183 case PPC::CR4: RegNo = 4; break;
184 case PPC::CR5: RegNo = 5; break;
185 case PPC::CR6: RegNo = 6; break
    [all...]
  /external/llvm/lib/Target/BPF/InstPrinter/
BPFInstPrinter.h 36 static const char *getRegisterName(unsigned RegNo);
  /external/mesa3d/src/gallium/drivers/radeon/InstPrinter/
AMDGPUInstPrinter.h 19 static const char *getRegisterName(unsigned RegNo);
21 // virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/InstPrinter/
MBlazeInstPrinter.h 31 static const char *getRegisterName(unsigned RegNo);
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/InstPrinter/
MSP430InstPrinter.h 31 static const char *getRegisterName(unsigned RegNo);
  /external/llvm/lib/Target/Sparc/Disassembler/
SparcDisassembler.cpp 153 unsigned RegNo,
156 if (RegNo > 31)
158 unsigned Reg = IntRegDecoderTable[RegNo];
164 unsigned RegNo,
167 if (RegNo > 31)
169 unsigned Reg = IntRegDecoderTable[RegNo];
176 unsigned RegNo,
179 if (RegNo > 31)
181 unsigned Reg = FPRegDecoderTable[RegNo];
188 unsigned RegNo,
    [all...]
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 328 const MCRegisterDesc &operator[](unsigned RegNo) const {
329 assert(RegNo < NumRegs &&
331 return Desc[RegNo];
336 const MCRegisterDesc &get(unsigned RegNo) const {
337 return operator[](RegNo);
341 /// for physical register RegNo. Return zero if the sub-register does not
353 unsigned getSubRegIndex(unsigned RegNo, unsigned SubRegNo) const;
367 const char *getName(unsigned RegNo) const {
368 return RegStrings + get(RegNo).Name;
426 /// \brief Returns the encoding for RegNo
    [all...]

Completed in 878 milliseconds

1 2 3 4 5 6