Home
last modified time | relevance | path

Searched refs:IsRegister (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMachineLocation.h24 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; } in isIndirect()
46 bool isReg() const { return IsRegister; } in isReg()
48 void setIsRegister(bool Is) { IsRegister = Is; } in setIsRegister()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h92 bool IsRegister; member
100 SIArgument() : IsRegister(false), StackOffset(0) {} in SIArgument()
102 IsRegister = Other.IsRegister; in SIArgument()
103 if (IsRegister) { in SIArgument()
111 IsRegister = Other.IsRegister;
112 if (IsRegister) {
121 if (IsRegister) in ~SIArgument()
134 SIArgument(bool) : IsRegister(true), RegisterName() {} in SIArgument()
140 if (A.IsRegister)
H A DAMDGPUTargetMachine.cpp1626 if (A->IsRegister) { in parseMachineFunctionInfo()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h68 IsRegister, enumerator
113 PROPERTY(Property, IsRegister);
/src/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp1143 static bool IsRegister(const MCParsedAsmOperand &op) { in IsRegister() function
1148 if (Operands.size() < 4 || !IsRegister(*Operands[1]) || in MaybePredicatedInst()
1149 !IsRegister(*Operands[2])) in MaybePredicatedInst()