Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfExpression.cpp29 assert((LocationKind == Unknown || LocationKind == Register) && in addReg()
31 LocationKind = Register; in addReg()
42 assert(LocationKind != Register && "location description already locked down"); in addBReg()
175 assert(LocationKind == Implicit || LocationKind == Unknown); in addSignedConstant()
176 LocationKind = Implicit; in addSignedConstant()
182 assert(LocationKind == Implicit || LocationKind == Unknown); in addUnsignedConstant()
183 LocationKind = Implicit; in addUnsignedConstant()
189 assert(LocationKind == Implicit || LocationKind == Unknown); in addUnsignedConstant()
190 LocationKind = Implicit; in addUnsignedConstant()
214 LocationKind = Unknown; in addMachineRegExpression()
[all …]
DDwarfExpression.h120 enum { Unknown = 0, Register, Memory, Implicit } LocationKind = Unknown; variable
214 bool isMemoryLocation() const { return LocationKind == Memory; } in isMemoryLocation()
215 bool isUnknownLocation() const { return LocationKind == Unknown; } in isUnknownLocation()
219 assert(LocationKind == Unknown); in setMemoryLocationKind()
220 LocationKind = Memory; in setMemoryLocationKind()
/external/llvm/tools/llvm-readobj/
DStackMapPrinter.h46 case StackMapParserT::LocationKind::Register: in prettyPrintStackMap()
49 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
53 case StackMapParserT::LocationKind::Indirect: in prettyPrintStackMap()
57 case StackMapParserT::LocationKind::Constant: in prettyPrintStackMap()
60 case StackMapParserT::LocationKind::ConstantIndex: in prettyPrintStackMap()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DStackMapPrinter.h50 case StackMapParserT::LocationKind::Register: in prettyPrintStackMap()
53 case StackMapParserT::LocationKind::Direct: in prettyPrintStackMap()
57 case StackMapParserT::LocationKind::Indirect: in prettyPrintStackMap()
61 case StackMapParserT::LocationKind::Constant: in prettyPrintStackMap()
64 case StackMapParserT::LocationKind::ConstantIndex: in prettyPrintStackMap()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DStackMapParser.h103 enum class LocationKind : uint8_t { enum
114 LocationKind getKind() const { in getKind()
115 return LocationKind(P[KindOffset]); in getKind()
125 assert(getKind() == LocationKind::Constant && "Not a small constant."); in getSmallConstant()
131 assert(getKind() == LocationKind::ConstantIndex && in getConstantIndex()
138 assert((getKind() == LocationKind::Direct || in getOffset()
139 getKind() == LocationKind::Indirect) && in getOffset()
/external/llvm/include/llvm/Object/
DStackMapParser.h99 enum class LocationKind : uint8_t { enum
111 LocationKind getKind() const { in getKind()
112 return LocationKind(P[KindOffset]); in getKind()
122 assert(getKind() == LocationKind::Constant && "Not a small constant."); in getSmallConstant()
128 assert(getKind() == LocationKind::ConstantIndex && in getConstantIndex()
135 assert((getKind() == LocationKind::Direct || in getOffset()
136 getKind() == LocationKind::Indirect) && in getOffset()
/external/compiler-rt/lib/ubsan/
Dubsan_diag.h57 enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized }; enum
60 LocationKind Kind;
76 LocationKind getKind() const { return Kind; } in getKind()
/external/v8/src/compiler/
Dinstruction.h426 enum LocationKind { REGISTER, STACK_SLOT }; enum
429 LocationOperand::LocationKind location_kind, in LocationOperand()
472 LocationKind location_kind() const { in location_kind()
519 class LocationKindField : public BitField64<LocationKind, 3, 2> {};
527 ExplicitOperand(LocationKind kind, MachineRepresentation rep, int index); in NON_EXPORTED_BASE()
529 static ExplicitOperand* New(Zone* zone, LocationKind kind, in NON_EXPORTED_BASE()
540 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index) in AllocatedOperand()
543 static AllocatedOperand* New(Zone* zone, LocationKind kind, in New()
Dinstruction.cc77 LocationOperand::LocationKind kind = loc.location_kind(); in InterferesWith()
78 LocationOperand::LocationKind other_kind = other_loc.location_kind(); in InterferesWith()
311 ExplicitOperand::ExplicitOperand(LocationKind kind, MachineRepresentation rep, in ExplicitOperand()
Dregister-allocator-verifier.cc532 zone(), LocationOperand::LocationKind::STACK_SLOT, rep, in VerifyGapMoves()