Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/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()
112 if (IsRegister != Other.IsRegister) {
113 if (Other.IsRegister)
118 IsRegister = Other.IsRegister;
119 if (IsRegister)
127 if (IsRegister) in ~SIArgument()
140 SIArgument(bool) : IsRegister(true), RegisterName() {} in SIArgument()
[all …]
H A DAMDGPUTargetMachine.cpp1894 if (A->IsRegister) { in parseMachineFunctionInfo()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h69 IsRegister, enumerator
114 PROPERTY(Property, IsRegister);
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp1141 static bool IsRegister(const MCParsedAsmOperand &op) { in IsRegister() function
1146 if (Operands.size() < 4 || !IsRegister(*Operands[1]) || in MaybePredicatedInst()
1147 !IsRegister(*Operands[2])) in MaybePredicatedInst()