HomeSort by relevance Sort by last modified time
    Searched refs:LocationKind (Results 1 - 10 of 10) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.cpp 29 assert((LocationKind == Unknown || LocationKind == Register) &&
31 LocationKind = Register;
42 assert(LocationKind != Register && "location description already locked down");
175 assert(LocationKind == Implicit || LocationKind == Unknown);
176 LocationKind = Implicit;
182 assert(LocationKind == Implicit || LocationKind == Unknown);
183 LocationKind = Implicit
    [all...]
DwarfExpression.h 120 enum { Unknown = 0, Register, Memory, Implicit } LocationKind = Unknown;
214 bool isMemoryLocation() const { return LocationKind == Memory; }
215 bool isUnknownLocation() const { return LocationKind == Unknown; }
219 assert(LocationKind == Unknown);
220 LocationKind = Memory;
  /external/llvm/tools/llvm-readobj/
StackMapPrinter.h 46 case StackMapParserT::LocationKind::Register:
49 case StackMapParserT::LocationKind::Direct:
53 case StackMapParserT::LocationKind::Indirect:
57 case StackMapParserT::LocationKind::Constant:
60 case StackMapParserT::LocationKind::ConstantIndex:
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
StackMapPrinter.h 50 case StackMapParserT::LocationKind::Register:
53 case StackMapParserT::LocationKind::Direct:
57 case StackMapParserT::LocationKind::Indirect:
61 case StackMapParserT::LocationKind::Constant:
64 case StackMapParserT::LocationKind::ConstantIndex:
  /external/llvm/include/llvm/Object/
StackMapParser.h 99 enum class LocationKind : uint8_t {
111 LocationKind getKind() const {
112 return LocationKind(P[KindOffset]);
122 assert(getKind() == LocationKind::Constant && "Not a small constant.");
128 assert(getKind() == LocationKind::ConstantIndex &&
135 assert((getKind() == LocationKind::Direct ||
136 getKind() == LocationKind::Indirect) &&
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
StackMapParser.h 103 enum class LocationKind : uint8_t {
114 LocationKind getKind() const {
115 return LocationKind(P[KindOffset]);
125 assert(getKind() == LocationKind::Constant && "Not a small constant.");
131 assert(getKind() == LocationKind::ConstantIndex &&
138 assert((getKind() == LocationKind::Direct ||
139 getKind() == LocationKind::Indirect) &&
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 57 enum LocationKind { LK_Null, LK_Source, LK_Memory, LK_Symbolized };
60 LocationKind Kind;
76 LocationKind getKind() const { return Kind; }
  /external/v8/src/compiler/
instruction.h 426 enum LocationKind { REGISTER, STACK_SLOT };
429 LocationOperand::LocationKind location_kind,
472 LocationKind location_kind() const {
519 class LocationKindField : public BitField64<LocationKind, 3, 2> {};
527 ExplicitOperand(LocationKind kind, MachineRepresentation rep, int index);
529 static ExplicitOperand* New(Zone* zone, LocationKind kind,
540 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index)
543 static AllocatedOperand* New(Zone* zone, LocationKind kind,
    [all...]
instruction.cc 77 LocationOperand::LocationKind kind = loc.location_kind();
78 LocationOperand::LocationKind other_kind = other_loc.location_kind();
311 ExplicitOperand::ExplicitOperand(LocationKind kind, MachineRepresentation rep,
    [all...]
register-allocator-verifier.cc 532 zone(), LocationOperand::LocationKind::STACK_SLOT, rep,

Completed in 288 milliseconds