Searched refs:kConstant (Results 1 - 14 of 14) sorted by relevance

/art/compiler/optimizing/
H A Dlocations.h47 kConstant = 1, enumerator in enum:art::Location::Kind
73 // Verify that non-constant location kinds do not interfere with kConstant.
74 static_assert((kInvalid & kLocationConstantMask) != kConstant, "TagError");
75 static_assert((kUnallocated & kLocationConstantMask) != kConstant, "TagError");
76 static_assert((kStackSlot & kLocationConstantMask) != kConstant, "TagError");
77 static_assert((kDoubleStackSlot & kLocationConstantMask) != kConstant, "TagError");
78 static_assert((kRegister & kLocationConstantMask) != kConstant, "TagError");
79 static_assert((kFpuRegister & kLocationConstantMask) != kConstant, "TagError");
80 static_assert((kRegisterPair & kLocationConstantMask) != kConstant, "TagError");
81 static_assert((kFpuRegisterPair & kLocationConstantMask) != kConstant, "TagErro
[all...]
H A Dstack_map_test.cc55 stream.AddDexRegisterEntry(Kind::kConstant, -2); // Short location.
99 ASSERT_EQ(Kind::kConstant, dex_register_map.GetLocationKind(
118 ASSERT_EQ(Kind::kConstant, location1.GetKind());
139 stream.AddDexRegisterEntry(Kind::kConstant, -2); // Large location.
213 ASSERT_EQ(Kind::kConstant, dex_register_map.GetLocationKind(
232 ASSERT_EQ(Kind::kConstant, location1.GetKind());
421 stream.AddDexRegisterEntry(Kind::kConstant, -2); // Large location.
462 ASSERT_EQ(Kind::kConstant, dex_register_map.GetLocationKind(
479 ASSERT_EQ(Kind::kConstant, location1.GetKind());
506 stream.AddDexRegisterEntry(Kind::kConstant,
[all...]
H A Dcode_generator.cc921 case Location::kConstant: {
926 DexRegisterLocation::Kind::kConstant, Low32Bits(value));
928 DexRegisterLocation::Kind::kConstant, High32Bits(value));
934 DexRegisterLocation::Kind::kConstant, Low32Bits(value));
936 DexRegisterLocation::Kind::kConstant, High32Bits(value));
941 stack_map_stream_.AddDexRegisterEntry(DexRegisterLocation::Kind::kConstant, value);
943 stack_map_stream_.AddDexRegisterEntry(DexRegisterLocation::Kind::kConstant, 0);
947 stack_map_stream_.AddDexRegisterEntry(DexRegisterLocation::Kind::kConstant, value);
H A Dparallel_move_resolver.cc457 DCHECK_NE(kind, Location::kConstant);
H A Dregister_allocator.cc1720 case Location::kConstant: {
/art/runtime/
H A Dcheck_reference_map_visitor.h95 case DexRegisterLocation::Kind::kConstant:
H A Dstack_map.h62 * - kConstant: value holds the constant;
79 kConstant = 5, // 0b101 member in class:art::DexRegisterLocation::Kind
111 case Kind::kConstant:
134 case Kind::kConstant:
141 return Kind::kConstant;
313 case DexRegisterLocation::Kind::kConstant:
315 ? DexRegisterLocation::Kind::kConstant
339 case DexRegisterLocation::Kind::kConstant:
487 DCHECK_EQ(location.GetKind(), DexRegisterLocation::Kind::kConstant);
H A Dstack_map.cc45 case Kind::kConstant:
H A Dquick_exception_handler.cc185 case DexRegisterLocation::Kind::kConstant:
441 case DexRegisterLocation::Kind::kConstant: {
H A Dstack.cc308 case DexRegisterLocation::Kind::kConstant:
H A Dstack.h58 kConstant, enumerator in enum:art::VRegKind
/art/compiler/debug/
H A Delf_debug_loc_writer.h243 } else if (kind == Kind::kConstant) {
/art/runtime/jit/
H A Djit.cc494 if (location == DexRegisterLocation::Kind::kConstant) {
/art/runtime/verifier/
H A Dmethod_verifier.cc5011 result.push_back(type.IsPreciseConstant() ? kConstant : kImpreciseConstant);
5015 result.push_back(type.IsPreciseConstantLo() ? kConstant : kImpreciseConstant);
5019 result.push_back(type.IsPreciseConstantHi() ? kConstant : kImpreciseConstant);

Completed in 91 milliseconds