Searched refs:kNone (Results 1 - 25 of 46) sorted by last modified time

12

/art/patchoat/
H A Dpatchoat.cc163 CHECK_NE(isa, kNone);
1252 InstructionSet isa = kNone;
1279 if (isa == kNone) {
H A Dpatchoat.h69 isa_(kNone), space_map_(nullptr), timings_(timings) {}
/art/runtime/arch/
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...]
H A Dinstruction_set_test.cc32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
/art/runtime/
H A Dcheck_reference_map_visitor.h77 case DexRegisterLocation::Kind::kNone:
H A Dcommon_runtime_test.cc280 case kNone:
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 Doat.cc92 CHECK_NE(instruction_set, kNone);
H A Doat_file_assistant.h379 const InstructionSet isa_ = kNone;
H A Dparsed_options.cc268 .WithValueMap({{"none", verifier::VerifyMode::kNone},
345 if (image_isa == kNone) {
H A Dquick_exception_handler.cc246 if (catch_location == DexRegisterLocation::Kind::kNone) {
449 case DexRegisterLocation::Kind::kNone: {
H A Druntime.cc182 instruction_set_(kNone),
219 verify_(verifier::VerifyMode::kNone),
230 experimental_flags_(ExperimentalFlags::kNone),
1694 DCHECK_NE(instruction_set_, kNone);
H A Druntime.h559 return (experimental_flags_ & flags) != ExperimentalFlags::kNone;
810 // If kNone, verification is disabled. kEnable by default.
H A Druntime_options.def121 RUNTIME_OPTIONS_KEY (ExperimentalFlags, Experimental, ExperimentalFlags::kNone) // -Xexperimental:{none, lambdas}
H A Dstack.cc311 case DexRegisterLocation::Kind::kNone:
H A Dstack_map.cc33 case 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...]
/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/runtime/gc/space/
H A Dimage_space_fs.h90 CHECK_NE(isa, kNone);
/art/runtime/jit/
H A Djit.cc480 if (location == DexRegisterLocation::Kind::kNone) {
/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_VMRuntime.cc616 if (isa == kNone) {
H A Ddalvik_system_ZygoteHooks.cc211 if (isa != kNone && isa != kRuntimeISA) {
/art/runtime/verifier/
H A Dverify_mode.h27 kNone, // Everything is assumed verified. member in class:art::verifier::VerifyMode

Completed in 247 milliseconds

12