Searched refs:IsRegister (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMachineLocation.h24 bool IsRegister = false; ///< True if location is a register. member in class:llvm::MachineLocation
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; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h119 bool IsRegister; member in struct:llvm::yaml::SIArgument
127 SIArgument() : IsRegister(false), StackOffset(0) {}
129 IsRegister = Other.IsRegister;
130 if (IsRegister) {
138 IsRegister = Other.IsRegister;
139 if (IsRegister) {
148 if (IsRegister)
161 SIArgument(bool) : IsRegister(tru
[all...]
H A DAMDGPUTargetMachine.cpp1141 if (A->IsRegister) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp1162 static bool IsRegister(const MCParsedAsmOperand &op) { function
1167 if (Operands.size() < 4 || !IsRegister(*Operands[1]) ||
1168 !IsRegister(*Operands[2]))

Completed in 127 milliseconds