HomeSort by: relevance | last modified time | path
    Searched refs:IsRegister (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MachineLocation.h 24 bool IsRegister = false; ///< True if location is a register.
37 : IsRegister(!Indirect), Register(R) {}
40 return IsRegister == Other.IsRegister && Register == Other.Register;
45 bool isIndirect() const { return !IsRegister; }
46 bool isReg() const { return IsRegister; }
48 void setIsRegister(bool Is) { IsRegister = Is; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMachineFunctionInfo.h 113 bool IsRegister;
121 SIArgument() : IsRegister(false), StackOffset(0) {}
123 IsRegister = Other.IsRegister;
124 if (IsRegister) {
132 IsRegister = Other.IsRegister;
133 if (IsRegister) {
142 if (IsRegister)
155 SIArgument(bool) : IsRegister(true), RegisterName() {
    [all...]
AMDGPUTargetMachine.cpp 1314 if (A->IsRegister) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 1162 static bool IsRegister(const MCParsedAsmOperand &op) {
1167 if (Operands.size() < 4 || !IsRegister(*Operands[1]) ||
1168 !IsRegister(*Operands[2]))

Completed in 94 milliseconds