/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints_test.cc | 99 CheckPCOffset(kRuntimeISA, Runtime::kRefsAndArgs, in TEST_F() 100 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsAndArgs)); in TEST_F() 101 CheckPCOffset(kRuntimeISA, Runtime::kRefsOnly, in TEST_F() 102 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsOnly)); in TEST_F() 103 CheckPCOffset(kRuntimeISA, Runtime::kSaveAll, in TEST_F() 104 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kSaveAll)); in TEST_F()
|
D | quick_trampoline_entrypoints.cc | 41 GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kRefsAndArgs); 68 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA); in GprIndexToGprOffset() 101 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA); in GprIndexToGprOffset() 125 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA); in GprIndexToGprOffset() 149 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA); in GprIndexToGprOffset() 187 case 0: return (4 * GetBytesPerGprSpillLocation(kRuntimeISA)); in GprIndexToGprOffset() 188 case 1: return (1 * GetBytesPerGprSpillLocation(kRuntimeISA)); in GprIndexToGprOffset() 189 case 2: return (0 * GetBytesPerGprSpillLocation(kRuntimeISA)); in GprIndexToGprOffset() 190 case 3: return (5 * GetBytesPerGprSpillLocation(kRuntimeISA)); in GprIndexToGprOffset() 191 case 4: return (6 * GetBytesPerGprSpillLocation(kRuntimeISA)); in GprIndexToGprOffset() [all …]
|
D | quick_instrumentation_entrypoints.cc | 62 uint32_t return_pc_offset = GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsOnly); in artInstrumentationMethodExitFromCode()
|
D | quick_field_entrypoints.cc | 251 constexpr size_t frame_size = GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kRefsOnly); in artSet64InstanceFromCode()
|
/art/runtime/ |
D | instruction_set_test.cc | 46 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST_F() 50 EXPECT_EQ(kPointerSize, GetInstructionSetPointerSize(kRuntimeISA)); in TEST_F()
|
D | instruction_set.h | 42 static constexpr InstructionSet kRuntimeISA = kArm; variable 44 static constexpr InstructionSet kRuntimeISA = kArm64; variable 46 static constexpr InstructionSet kRuntimeISA = kMips; variable 48 static constexpr InstructionSet kRuntimeISA = kX86; variable 50 static constexpr InstructionSet kRuntimeISA = kX86_64; variable 52 static constexpr InstructionSet kRuntimeISA = kNone; variable
|
D | common_runtime_test.h | 160 if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { \
|
D | vmap_table.h | 68 bool target64 = (kRuntimeISA == kArm64) || (kRuntimeISA == kX86_64); in IsInContext()
|
D | stack.cc | 174 bool target64 = Is64BitInstructionSet(kRuntimeISA); in GetVReg() 231 bool target64 = Is64BitInstructionSet(kRuntimeISA); in GetVRegPair() 270 bool target64 = Is64BitInstructionSet(kRuntimeISA); in SetVReg() 338 bool target64 = Is64BitInstructionSet(kRuntimeISA); in SetVRegPair()
|
D | native_bridge_art_interface.cc | 123 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
|
D | runtime.cc | 454 GetInstructionSetString(kRuntimeISA)); in Start() 597 kRuntimeISA, in OpenDexFilesFromImage() 756 switch (kRuntimeISA) { in Init() 828 SetInstructionSet(kRuntimeISA); in Init() 1435 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
|
D | thread.cc | 79 const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA); 226 stack_size += GetStackOverflowReservedBytes(kRuntimeISA); in FixStackSize() 231 GetStackOverflowReservedBytes(kRuntimeISA); in FixStackSize() 518 uint32_t min_stack = GetStackOverflowReservedBytes(kRuntimeISA) + kStackOverflowProtectedSize in InitStackHwm() 2266 << GetStackOverflowReservedBytes(kRuntimeISA) << ")?"; in SetStackEndForStackOverflow()
|
D | thread.h | 585 return tlsPtr_.stack_end + GetStackOverflowReservedBytes(kRuntimeISA); in GetStackEndForInterpreter() 602 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA); in ResetDefaultStackEnd()
|
D | stack.h | 616 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA); in GetVRegAddr()
|
D | elf_file.cc | 1070 if (elf_ISA != kRuntimeISA) { in Load() 1072 oss << "Expected ISA " << kRuntimeISA << " but found " << elf_ISA; in Load()
|
/art/runtime/arch/ |
D | stub_test.cc | 40 runtime_->SetInstructionSet(kRuntimeISA); in SetUp() 593 LOG(INFO) << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA; in TEST_F() 595 std::cout << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F() 651 LOG(INFO) << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA; in TEST_F() 653 …std::cout << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F() 809 LOG(INFO) << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA; in TestUnlockObject() 811 …std::cout << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA << std::en… in TestUnlockObject() 865 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA; in TEST_F() 867 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F() 999 LOG(INFO) << "Skipping aput_obj as I don't know how to do that on " << kRuntimeISA; in TEST_F() [all …]
|
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 123 if (isa != kNone && isa != kRuntimeISA) { in ZygoteHooks_nativePostForkChild()
|
D | dalvik_system_DexFile.cc | 603 const char* instruction_set = GetInstructionSetString(kRuntimeISA); in CopyProfileFile()
|
D | dalvik_system_VMRuntime.cc | 544 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
|
/art/compiler/ |
D | elf_writer_test.cc | 57 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); in TEST_F()
|
D | image_test.cc | 52 kRuntimeISA)); in TEST_F()
|
D | oat_test.cc | 190 EXPECT_EQ(79 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints)); in TEST_F()
|
D | common_compiler_test.cc | 287 InstructionSet instruction_set = kRuntimeISA; in SetUp()
|
/art/runtime/base/ |
D | mutex.cc | 849 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { in Init() 940 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) { in Init()
|
/art/dex2oat/ |
D | dex2oat.cc | 886 InstructionSet instruction_set = kRuntimeISA; in dex2oat() 1536 oss << kRuntimeISA; in dex2oat()
|