Searched refs:kNone (Results 1 - 25 of 46) sorted by relevance

12

/art/runtime/
H A Dexperimental_flags.h28 kNone = 0x0000, enumerator in enum:art::ExperimentalFlags::__anon94
33 constexpr ExperimentalFlags(decltype(kNone) t) : value_(static_cast<uint32_t>(t)) {}
35 constexpr operator decltype(kNone)() const {
36 return static_cast<decltype(kNone)>(value_);
40 return value_ != kNone;
43 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
44 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
47 return static_cast<decltype(kNone)>(value_ | b.value_);
51 return static_cast<decltype(kNone)>(value_ & b.value_);
53 constexpr ExperimentalFlags operator&(const decltype(kNone)
[all...]
H A Dcheck_reference_map_visitor.h77 case DexRegisterLocation::Kind::kNone:
H A Dstack_map.h69 * - kNone: the register has no location, meaning it has not been set.
95 kNone = static_cast<uint8_t>(-1), member in class:art::DexRegisterLocation::Kind
118 case Kind::kNone:
143 case Kind::kNone:
150 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {}
155 return DexRegisterLocation(Kind::kNone, 0);
259 return DexRegisterLocation::Kind::kNone;
320 case DexRegisterLocation::Kind::kNone:
344 case DexRegisterLocation::Kind::kNone:
370 // mapped to a DexRegisterLocation::Kind::kNone locatio
[all...]
H A Doat_file_assistant.h379 const InstructionSet isa_ = kNone;
H A Druntime_options.def121 RUNTIME_OPTIONS_KEY (ExperimentalFlags, Experimental, ExperimentalFlags::kNone) // -Xexperimental:{none, lambdas}
H A Dstack_map.cc33 case Kind::kNone:
/art/runtime/verifier/
H A Dverify_mode.h27 kNone, // Everything is assumed verified. member in class:art::verifier::VerifyMode
/art/runtime/arch/
H A Dinstruction_set_test.cc32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
H A Dinstruction_set.cc40 case kNone:
65 return kNone;
88 return kNone;
107 case kNone:
108 LOG(FATAL) << "ISA kNone does not have alignment.";
146 case kNone:
147 LOG(FATAL) << "kNone has no stack overflow size";
H A Dinstruction_set.h28 kNone, enumerator in enum:art::InstructionSet
52 static constexpr InstructionSet kRuntimeISA = kNone;
80 // Note: Returns kNone when the string cannot be parsed to a known value.
101 case kNone:
102 LOG(FATAL) << "ISA kNone does not have pointer size.";
120 case kNone:
141 case kNone:
142 LOG(FATAL) << "ISA kNone does not have bit width.";
170 case kNone:
171 LOG(FATAL) << "ISA kNone doe
[all...]
/art/runtime/entrypoints/quick/
H A Dcallee_save_frame.h84 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
97 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", 0) :
/art/compiler/optimizing/
H A Dintrinsics.cc37 case Intrinsics::kNone:
53 case Intrinsics::kNone:
69 case Intrinsics::kNone:
85 case Intrinsics::kNone:
394 return Intrinsics::kNone;
507 return Intrinsics::kNone;
512 return Intrinsics::kNone;
516 return Intrinsics::kNone;
584 if (intrinsic != Intrinsics::kNone) {
606 case Intrinsics::kNone
[all...]
H A Dprepare_for_register_allocation.cc96 HInvokeStaticOrDirect::ClinitCheckRequirement::kNone);
184 invoke->RemoveExplicitClinitCheck(HInvokeStaticOrDirect::ClinitCheckRequirement::kNone);
H A Dstack_map_test.cc420 stream.AddDexRegisterEntry(Kind::kNone, 0); // No location.
460 ASSERT_EQ(Kind::kNone, dex_register_map.GetLocationKind(
464 ASSERT_EQ(Kind::kNone, dex_register_map.GetLocationInternalKind(
478 ASSERT_EQ(Kind::kNone, location0.GetKind());
480 ASSERT_EQ(Kind::kNone, location0.GetInternalKind());
706 stream.AddDexRegisterEntry(Kind::kNone, 0);
721 stream.AddDexRegisterEntry(Kind::kNone, 0);
H A Dintrinsics.h58 case Intrinsics::kNone:
H A Dpc_relative_fixups_x86.cc233 if (invoke->GetIntrinsic() != Intrinsics::kNone) {
H A Dstack_map_stream.cc64 if (kind != DexRegisterLocation::Kind::kNone) {
485 if (expected.GetKind() == DexRegisterLocation::Kind::kNone) {
/art/compiler/driver/
H A Dcompiled_method_storage_test.cc36 /* instruction_set_ */ kNone,
98 &driver, kNone, c, 0u, 0u, 0u, s, v, f, p));
/art/compiler/debug/
H A Delf_debug_loc_writer.h49 case kNone:
70 case kNone:
246 } else if (kind == Kind::kNone) {
H A Delf_debug_line_writer.h80 case kNone:
/art/runtime/gc/space/
H A Dimage_space_fs.h90 CHECK_NE(isa, kNone);
/art/cmdline/
H A Dcmdline.h147 if (instruction_set_ == kNone) {
258 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) {
H A Dcmdline_parser_test.cc546 EXPECT_SINGLE_PARSE_DEFAULT_VALUE(ExperimentalFlags::kNone,
551 EXPECT_SINGLE_PARSE_VALUE(ExperimentalFlags::kNone,
563 EXPECT_SINGLE_PARSE_VALUE(verifier::VerifyMode::kNone, "-Xverify:none", M::Verify);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc364 if (target_instruction_set == kNone) {
407 if (target_instruction_set == kNone) {
573 if (target_instruction_set == kNone) {
H A Ddalvik_system_ZygoteHooks.cc211 if (isa != kNone && isa != kRuntimeISA) {

Completed in 290 milliseconds

12