Home
last modified time | relevance | path

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

/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/llvm/include/llvm/Object/
DStackMapParser.h100 enum class LocationKind : uint8_t { enum
112 LocationKind getKind() const { in getKind()
113 return LocationKind(P[KindOffset]); in getKind()
123 assert(getKind() == LocationKind::Constant && "Not a small constant."); in getSmallConstant()
129 assert(getKind() == LocationKind::ConstantIndex && in getConstantIndex()
136 assert((getKind() == LocationKind::Direct || in getOffset()
137 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/test/cctest/compiler/
Dtest-gap-resolver.cc37 LocationOperand::LocationKind kind;
79 LocationOperand::LocationKind kind; in KeyFor()
/external/v8/src/compiler/
Dinstruction.h408 enum LocationKind { REGISTER, STACK_SLOT }; enum
411 LocationOperand::LocationKind location_kind, in LocationOperand()
454 LocationKind location_kind() const { in location_kind()
497 class LocationKindField : public BitField64<LocationKind, 3, 2> {};
505 ExplicitOperand(LocationKind kind, MachineRepresentation rep, int index);
507 static ExplicitOperand* New(Zone* zone, LocationKind kind, in New()
518 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index) in AllocatedOperand()
521 static AllocatedOperand* New(Zone* zone, LocationKind kind, in New()
Dregister-allocator-verifier.cc519 zone(), LocationOperand::LocationKind::STACK_SLOT, rep, in VerifyGapMoves()
Dinstruction.cc250 ExplicitOperand::ExplicitOperand(LocationKind kind, MachineRepresentation rep, in ExplicitOperand()