Home
last modified time | relevance | path

Searched refs:kNone (Results 1 – 25 of 32) sorted by relevance

12

/art/runtime/
Ddex_instruction_list.h21 V(0x00, NOP, "nop", k10x, false, kNone, kContinue, kVerifyNone) \
22 V(0x01, MOVE, "move", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
23 V(0x02, MOVE_FROM16, "move/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
24 V(0x03, MOVE_16, "move/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
25 V(0x04, MOVE_WIDE, "move-wide", k12x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
26 …V(0x05, MOVE_WIDE_FROM16, "move-wide/from16", k22x, true, kNone, kContinue, kVerifyRegAWide | kVer…
27 …V(0x06, MOVE_WIDE_16, "move-wide/16", k32x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBW…
28 V(0x07, MOVE_OBJECT, "move-object", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
29 …V(0x08, MOVE_OBJECT_FROM16, "move-object/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVer…
30 …V(0x09, MOVE_OBJECT_16, "move-object/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB)…
[all …]
Dstack_map.h104 kNone = 0, // 0b000 enumerator
132 case Kind::kNone: in PrettyDescriptor()
153 case Kind::kNone: in IsShortLocationKind()
174 case Kind::kNone: in ConvertToSurfaceKind()
193 DexRegisterLocation() : kind_(Kind::kNone), value_(0) {} in DexRegisterLocation()
198 return DexRegisterLocation(Kind::kNone, 0); in None()
298 return DexRegisterLocation::Kind::kNone; in GetLocationInternalKind()
334 case DexRegisterLocation::Kind::kNone: in ComputeCompressedKind()
336 return DexRegisterLocation::Kind::kNone; in ComputeCompressedKind()
368 case DexRegisterLocation::Kind::kNone: in CanBeEncodedAsShortLocation()
[all …]
Dcheck_reference_map_visitor.h80 case DexRegisterLocation::Kind::kNone: in CheckOptimizedMethod()
Doat_file_assistant.h372 const InstructionSet isa_ = kNone;
Doat.cc87 CHECK_NE(instruction_set, kNone); in OatHeader()
Dcommon_runtime_test.cc264 case kNone: in GetAndroidTargetToolsDir()
Dparsed_options.cc313 if (image_isa == kNone) { in ProcessSpecialOptions()
/art/runtime/arch/
Dinstruction_set.cc40 case kNone: in GetInstructionSetString()
65 return kNone; in GetInstructionSetFromString()
88 return kNone; in GetInstructionSetFromELF()
107 case kNone: in GetInstructionSetAlignment()
146 case kNone: in GetStackOverflowReservedBytes()
Dinstruction_set.h28 kNone, enumerator
52 static constexpr InstructionSet kRuntimeISA = kNone;
101 case kNone: in GetInstructionSetPointerSize()
125 case kNone: in Is64BitInstructionSet()
154 case kNone: in GetBytesPerGprSpillLocation()
179 case kNone: in GetBytesPerFprSpillLocation()
Dinstruction_set_test.cc32 EXPECT_EQ(kNone, GetInstructionSetFromString("none")); in TEST()
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string")); in TEST()
44 EXPECT_STREQ("none", GetInstructionSetString(kNone)); in TEST()
/art/compiler/optimizing/
Dintrinsics.cc32 case Intrinsics::kNone: in GetIntrinsicInvokeType()
196 return Intrinsics::kNone; in GetIntrinsic()
290 return Intrinsics::kNone; in GetIntrinsic()
295 return Intrinsics::kNone; in GetIntrinsic()
299 return Intrinsics::kNone; in GetIntrinsic()
344 if (intrinsic != Intrinsics::kNone) { in Run()
361 case Intrinsics::kNone: in operator <<()
Dstack_map_test.cc280 stream.AddDexRegisterEntry(0, Kind::kNone, 0); // No location. in TEST()
321 ASSERT_EQ(Kind::kNone, in TEST()
325 ASSERT_EQ(Kind::kNone, in TEST()
339 ASSERT_EQ(Kind::kNone, location0.GetKind()); in TEST()
341 ASSERT_EQ(Kind::kNone, location0.GetInternalKind()); in TEST()
Dintrinsics.h56 case Intrinsics::kNone: in Dispatch()
Dinliner.cc59 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) { in Run()
Dstack_map_stream.cc68 if (kind != DexRegisterLocation::Kind::kNone) { in AddDexRegisterEntry()
Dcode_generator.cc705 stack_map_stream_.AddDexRegisterEntry(i, DexRegisterLocation::Kind::kNone, 0); in RecordPcInfo()
837 stack_map_stream_.AddDexRegisterEntry(i, DexRegisterLocation::Kind::kNone, 0); in RecordPcInfo()
/art/runtime/entrypoints/quick/
Dcallee_save_frame.h81 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) : in GetCalleeSaveFrameSize()
94 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", 0) : in GetConstExprPointerSize()
/art/cmdline/
Dcmdline.h146 if (instruction_set_ == kNone) { in Parse()
256 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) { in ParseCheckBootImage()
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc199 if (isa != kNone && isa != kRuntimeISA) { in ZygoteHooks_nativePostForkChild()
Ddalvik_system_DexFile.cc313 if (target_instruction_set == kNone) { in GetDexOptNeeded()
Ddalvik_system_VMRuntime.cc581 if (isa == kNone) { in VMRuntime_isBootClassPathOnDisk()
/art/compiler/
Delf_writer_debug.cc161 case kNone: in WriteDebugFrameCIE()
325 case kNone: in WriteDebugSections()
/art/patchoat/
Dpatchoat.h64 isa_(kNone), timings_(timings) {} in PatchOat()
Dpatchoat.cc102 CHECK_NE(isa, kNone); in Patch()
194 if (isa == kNone) { in Patch()
956 InstructionSet isa = kNone; in patchoat()
989 if (isa == kNone) { in patchoat()
/art/compiler/dex/quick/
Dquick_compiler.cc53 static_assert(0U == static_cast<size_t>(kNone), "kNone not 0");

12