Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp47 LocationKind = Register; in addReg()
199 LocationKind = Implicit; in addSignedConstant()
206 LocationKind = Implicit; in addUnsignedConstant()
212 LocationKind = Implicit; in addUnsignedConstant()
263 LocationKind = Unknown; in addMachineRegExpression()
287 LocationKind = Unknown; in addMachineRegExpression()
335 LocationKind = Unknown; in addMachineRegExpression()
345 LocationKind = Unknown; in addMachineRegExpression()
422 SavedLocationKind = LocationKind; in beginEntryValueExpression()
423 LocationKind = Register; in beginEntryValueExpression()
[all …]
H A DDwarfExpression.h88 unsigned LocationKind : 3; variable
97 bool isUnknownLocation() const { return LocationKind == Unknown; } in isUnknownLocation()
99 bool isMemoryLocation() const { return LocationKind == Memory; } in isMemoryLocation()
101 bool isRegisterLocation() const { return LocationKind == Register; } in isRegisterLocation()
103 bool isImplicitLocation() const { return LocationKind == Implicit; } in isImplicitLocation()
226 LocationKind(Unknown), SavedLocationKind(Unknown), in DwarfExpression()
247 LocationKind = Memory; in setMemoryLocationKind()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h49 case StackMapParserT::LocationKind::Register: in prettyPrintStackMap()
52 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
55 case StackMapParserT::LocationKind::Indirect: in prettyPrintStackMap()
59 case StackMapParserT::LocationKind::Constant: in prettyPrintStackMap()
62 case StackMapParserT::LocationKind::ConstantIndex: in prettyPrintStackMap()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h105 enum class LocationKind : uint8_t {
116 LocationKind getKind() const {
117 return LocationKind(P[KindOffset]); in getKind()
133 assert(getKind() == LocationKind::Constant && "Not a small constant."); in getSmallConstant()
139 assert(getKind() == LocationKind::ConstantIndex && in getConstantIndex()
146 assert((getKind() == LocationKind::Direct || in getOffset()
147 getKind() == LocationKind::Indirect) && in getOffset()
106 enum class LocationKind : uint8_t { global() enum
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.h36 enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized }; in reset()
39 LocationKind Kind;
55 LocationKind getKind() const { return Kind; }
56 enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized }; global() enum