Home
last modified time | relevance | path

Searched refs:kRuntimeISA (Results 1 – 25 of 85) sorted by relevance

1234

/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc75 kRuntimeISA, in TEST_F()
79 kRuntimeISA, in TEST_F()
83 kRuntimeISA, in TEST_F()
87 kRuntimeISA, in TEST_F()
91 kRuntimeISA, in TEST_F()
95 kRuntimeISA, in TEST_F()
/art/runtime/arch/
Dinstruction_set_features.cc83 switch (kRuntimeISA) { in FromCppDefines()
97 UNIMPLEMENTED(FATAL) << kRuntimeISA; in FromCppDefines()
102 switch (kRuntimeISA) { in FromRuntimeDetection()
113 switch (kRuntimeISA) { in FromCpuInfo()
127 UNIMPLEMENTED(FATAL) << kRuntimeISA; in FromCpuInfo()
132 switch (kRuntimeISA) { in FromHwcap()
146 UNIMPLEMENTED(FATAL) << kRuntimeISA; in FromHwcap()
151 switch (kRuntimeISA) { in FromAssembly()
165 UNIMPLEMENTED(FATAL) << kRuntimeISA; in FromAssembly()
170 switch (kRuntimeISA) { in FromCpuFeatures()
[all …]
Dstub_test.cc48 runtime_->SetInstructionSet(kRuntimeISA); in SetUp()
447 LOG(INFO) << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA; in TEST_F()
449 std::cout << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F()
506 LOG(INFO) << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA; in TEST_F()
508 …std::cout << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F()
666 LOG(INFO) << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA; in TestUnlockObject()
668 …std::cout << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA << std::en… in TestUnlockObject()
777 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA; in TEST_F()
779 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl; in TEST_F()
894 LOG(INFO) << "Skipping alloc_object as I don't know how to do that on " << kRuntimeISA; in TEST_F()
[all …]
Dinstruction_set_features_test.cc54 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
61 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
88 GetInstructionSetString(kRuntimeISA));
93 GetInstructionSetString(kRuntimeISA));
100 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
137 InstructionSetFeatures::FromVariant(kRuntimeISA, "default", &error_msg));
/art/runtime/
Doat_quick_method_header.h45 DCHECK(IsAlignedParam(code, GetInstructionSetAlignment(kRuntimeISA)) || in FromCodePointer()
46 IsAlignedParam(header, GetInstructionSetAlignment(kRuntimeISA))) in FromCodePointer()
56 return RoundUp(sizeof(OatQuickMethodHeader), GetInstructionSetAlignment(kRuntimeISA)); in InstructionAlignedSize()
108 static_assert(kRuntimeISA != InstructionSet::kThumb2, "kThumb2 cannot be a runtime ISA"); in Contains()
109 if (kRuntimeISA == InstructionSet::kArm) { in Contains()
121 static_assert(kRuntimeISA != InstructionSet::kThumb2, "kThumb2 cannot be a runtime ISA"); in GetEntryPoint()
122 return (kRuntimeISA == InstructionSet::kArm) in GetEntryPoint()
Doat_file_assistant_test.cc57 file, kRuntimeISA, &compilation_filter1, &compilation_reason1); in VerifyOptimizationStatus()
177 kRuntimeISA, in TEST_F()
201 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, context.get(), false); in TEST_F()
232 kRuntimeISA, in TEST_F()
254 kRuntimeISA, in TEST_F()
286 kRuntimeISA, in TEST_F()
310 kRuntimeISA, in TEST_F()
350 kRuntimeISA, in TEST_F()
393 kRuntimeISA, in TEST_F()
430 kRuntimeISA, in TEST_F()
[all …]
Dnterp_helpers.h29 size_t NterpGetFrameSize(ArtMethod* method, InstructionSet isa = kRuntimeISA)
81 bool CanMethodUseNterp(ArtMethod* method, InstructionSet isa = kRuntimeISA)
Doat_file_test.cc42 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in TEST_F()
65 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg; in TEST_F()
Doat_quick_method_header.cc82 stack_map.GetNativePcOffset(kRuntimeISA); in ToNativeQuickPc()
97 uintptr_t nterp_code_pointer = (kRuntimeISA == InstructionSet::kArm) in GetNterpMethodHeader()
Dcommon_runtime_test.h273 if (kRuntimeISA == InstructionSet::kArm || kRuntimeISA == InstructionSet::kThumb2) { \
279 if (kRuntimeISA == InstructionSet::kArm64) { \
285 if (kRuntimeISA == InstructionSet::kX86) { \
291 if (kRuntimeISA == InstructionSet::kX86_64) { \
/art/libartbase/arch/
Dinstruction_set_test.cc55 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
59 EXPECT_EQ(kRuntimePointerSize, GetInstructionSetPointerSize(kRuntimeISA)); in TEST()
Dinstruction_set.h40 static constexpr InstructionSet kRuntimeISA = InstructionSet::kArm; variable
42 static constexpr InstructionSet kRuntimeISA = InstructionSet::kArm64; variable
44 static constexpr InstructionSet kRuntimeISA = InstructionSet::kX86; variable
46 static constexpr InstructionSet kRuntimeISA = InstructionSet::kX86_64; variable
48 static constexpr InstructionSet kRuntimeISA = InstructionSet::kNone; variable
/art/runtime/base/
Dquasi_atomic.h61 if (!NeedSwapMutexes(kRuntimeISA)) { in Read64()
97 if (!NeedSwapMutexes(kRuntimeISA)) { in Write64()
143 if (!NeedSwapMutexes(kRuntimeISA)) { in Cas64()
Dquasi_atomic.cc32 if (NeedSwapMutexes(kRuntimeISA)) { in Startup()
41 if (NeedSwapMutexes(kRuntimeISA)) { in Shutdown()
/art/compiler/optimizing/
Dstack_map_test.cc48 constexpr static uint32_t kPcAlign = GetInstructionSetInstructionAlignment(kRuntimeISA);
54 StackMapStream stream(&allocator, kRuntimeISA); in TEST()
77 ASSERT_EQ(64u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
108 StackMapStream stream(&allocator, kRuntimeISA); in TEST()
165 ASSERT_EQ(64u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
204 ASSERT_EQ(128u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
237 ASSERT_EQ(192u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
270 ASSERT_EQ(256u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
302 StackMapStream stream(&allocator, kRuntimeISA); in TEST()
335 ASSERT_EQ(64u * kPcAlign, stack_map.GetNativePcOffset(kRuntimeISA)); in TEST()
[all …]
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc140 switch (kRuntimeISA) { in artCriticalNativeFrameSize()
151 UNIMPLEMENTED(FATAL) << kRuntimeISA; in artCriticalNativeFrameSize()
176 switch (kRuntimeISA) { in artCriticalNativeFrameSize()
187 UNIMPLEMENTED(FATAL) << kRuntimeISA; in artCriticalNativeFrameSize()
/art/compiler/
Dexception_test.cc75 CHECK_ALIGNED_PARAM(native_pc_offset, GetInstructionSetInstructionAlignment(kRuntimeISA)); in SetUp()
80 StackMapStream stack_maps(&allocator, kRuntimeISA); in SetUp()
89 const size_t code_alignment = GetInstructionSetAlignment(kRuntimeISA); in SetUp()
102 if (kRuntimeISA == InstructionSet::kArm) { in SetUp()
175 r->SetInstructionSet(kRuntimeISA); in TEST_F()
Dcommon_compiler_test.h93 (kRuntimeISA == InstructionSet::kArm) ? InstructionSet::kThumb2 : kRuntimeISA;
/art/oatdump/
Doatdump_test.h46 core_oat_location_ = GetSystemImageFilename(GetCoreOatLocation().c_str(), kRuntimeISA); in SetUp()
83 path += Is64BitInstructionSet(kRuntimeISA) ? "64" : "32"; in GetExecutableFilePath()
145 "--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)), in GenerateAppOdexFile()
204 GetInstructionSetString(kRuntimeISA)));
216 GetInstructionSetString(kRuntimeISA)));
226 GetInstructionSetString(kRuntimeISA)));
/art/runtime/native/
Djava_util_concurrent_atomic_AtomicLong.cc30 return QuasiAtomic::LongAtomicsUseMutexes(kRuntimeISA) ? JNI_FALSE : JNI_TRUE; in AtomicLong_VMSupportsCS8()
/art/dexlayout/
Ddexdiag_test.cc45 if (OS::FileExists(path32.c_str()) && !Is64BitInstructionSet(kRuntimeISA)) { in GetDexDiagFilePath()
62 std::string oat_location = GetSystemImageFilename(default_location.c_str(), kRuntimeISA); in OpenOatAndVdexFiles()
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64_test.cc24 const bool is_runtime_isa = kRuntimeISA == InstructionSet::kX86_64; in TEST()
/art/simulator/
Dcode_simulator_arm64.h52 static constexpr bool kCanSimulate = (kRuntimeISA == InstructionSet::kX86_64);
/art/compiler/driver/
Dcompiler_options.cc47 instruction_set_(kRuntimeISA == InstructionSet::kArm ? InstructionSet::kThumb2 : kRuntimeISA), in CompilerOptions()
/art/dex2oat/linker/
Delf_writer_test.cc58 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); in TEST_F()
125 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA); in TEST_F()

1234