/art/runtime/ |
D | dex_instruction_list.h | 21 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 …]
|
D | stack_map.h | 104 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 …]
|
D | check_reference_map_visitor.h | 80 case DexRegisterLocation::Kind::kNone: in CheckOptimizedMethod()
|
D | oat_file_assistant.h | 372 const InstructionSet isa_ = kNone;
|
D | oat.cc | 87 CHECK_NE(instruction_set, kNone); in OatHeader()
|
D | common_runtime_test.cc | 264 case kNone: in GetAndroidTargetToolsDir()
|
D | parsed_options.cc | 313 if (image_isa == kNone) { in ProcessSpecialOptions()
|
/art/runtime/arch/ |
D | instruction_set.cc | 40 case kNone: in GetInstructionSetString() 65 return kNone; in GetInstructionSetFromString() 88 return kNone; in GetInstructionSetFromELF() 107 case kNone: in GetInstructionSetAlignment() 146 case kNone: in GetStackOverflowReservedBytes()
|
D | instruction_set.h | 28 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()
|
D | instruction_set_test.cc | 32 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/ |
D | intrinsics.cc | 32 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 <<()
|
D | stack_map_test.cc | 280 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()
|
D | intrinsics.h | 56 case Intrinsics::kNone: in Dispatch()
|
D | inliner.cc | 59 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) { in Run()
|
D | stack_map_stream.cc | 68 if (kind != DexRegisterLocation::Kind::kNone) { in AddDexRegisterEntry()
|
D | code_generator.cc | 705 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/ |
D | callee_save_frame.h | 81 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/ |
D | cmdline.h | 146 if (instruction_set_ == kNone) { in Parse() 256 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) { in ParseCheckBootImage()
|
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 199 if (isa != kNone && isa != kRuntimeISA) { in ZygoteHooks_nativePostForkChild()
|
D | dalvik_system_DexFile.cc | 313 if (target_instruction_set == kNone) { in GetDexOptNeeded()
|
D | dalvik_system_VMRuntime.cc | 581 if (isa == kNone) { in VMRuntime_isBootClassPathOnDisk()
|
/art/compiler/ |
D | elf_writer_debug.cc | 161 case kNone: in WriteDebugFrameCIE() 325 case kNone: in WriteDebugSections()
|
/art/patchoat/ |
D | patchoat.h | 64 isa_(kNone), timings_(timings) {} in PatchOat()
|
D | patchoat.cc | 102 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/ |
D | quick_compiler.cc | 53 static_assert(0U == static_cast<size_t>(kNone), "kNone not 0");
|