Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMachineLocation.h25 bool IsRegister = false; ///< True if location is a register.
38 : IsRegister(!Indirect), Register(R) {}
41 return IsRegister == Other.IsRegister && Register == Other.Register;
46 bool isIndirect() const { return !IsRegister; } in isIndirect()
47 bool isReg() const { return IsRegister; } in isReg()
49 void setIsRegister(bool Is) { IsRegister = Is; } in setIsRegister()
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp1137 static bool IsRegister(const MCParsedAsmOperand &op) { in IsRegister() function
1142 if (Operands.size() < 4 || !IsRegister(*Operands[1]) || in MaybePredicatedInst()
1143 !IsRegister(*Operands[2])) in MaybePredicatedInst()