Searched refs:kRuntimeISA (Results 1 - 25 of 64) sorted by relevance

123

/art/runtime/native/
H A Djava_util_concurrent_atomic_AtomicLong.cc26 return QuasiAtomic::LongAtomicsUseMutexes(kRuntimeISA) ? JNI_FALSE : JNI_TRUE;
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints_test.cc117 // Note: we can only check against the kRuntimeISA, because the ArtMethod computation uses
119 CheckPCOffset(kRuntimeISA, Runtime::kSaveRefsAndArgs,
120 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveRefsAndArgs));
121 CheckPCOffset(kRuntimeISA, Runtime::kSaveRefsOnly,
122 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveRefsOnly));
123 CheckPCOffset(kRuntimeISA, Runtime::kSaveAllCalleeSaves,
124 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveAllCalleeSaves));
H A Dquick_dexcache_entrypoints.cc63 (kRuntimeISA == kMips || kRuntimeISA == kMips64) ? Runtime::kSaveRefsOnly
H A Dquick_instrumentation_entrypoints.cc59 size_t return_pc_offset = GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveRefsOnly);
H A Dquick_trampoline_entrypoints.cc54 GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kSaveRefsAndArgs);
89 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
127 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
173 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
217 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
250 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
293 case 0: return (4 * GetBytesPerGprSpillLocation(kRuntimeISA));
294 case 1: return (1 * GetBytesPerGprSpillLocation(kRuntimeISA));
295 case 2: return (0 * GetBytesPerGprSpillLocation(kRuntimeISA));
296 case 3: return (5 * GetBytesPerGprSpillLocation(kRuntimeISA));
[all...]
/art/runtime/arch/
H A Dinstruction_set_test.cc57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));
61 EXPECT_EQ(kRuntimePointerSize, GetInstructionSetPointerSize(kRuntimeISA));
H A Dinstruction_set.h41 static constexpr InstructionSet kRuntimeISA = kArm; member in namespace:art
43 static constexpr InstructionSet kRuntimeISA = kArm64; member in namespace:art
45 static constexpr InstructionSet kRuntimeISA = kMips; member in namespace:art
47 static constexpr InstructionSet kRuntimeISA = kMips64; member in namespace:art
49 static constexpr InstructionSet kRuntimeISA = kX86; member in namespace:art
51 static constexpr InstructionSet kRuntimeISA = kX86_64; member in namespace:art
53 static constexpr InstructionSet kRuntimeISA = kNone; member in namespace:art
H A Dinstruction_set_features_test.cc45 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
52 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
73 GetInstructionSetString(kRuntimeISA));
78 GetInstructionSetString(kRuntimeISA));
85 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
122 InstructionSetFeatures::FromVariant(kRuntimeISA, "default", &error_msg));
H A Dinstruction_set_features.cc98 switch (kRuntimeISA) {
119 UNIMPLEMENTED(FATAL) << kRuntimeISA;
128 switch (kRuntimeISA) {
149 UNIMPLEMENTED(FATAL) << kRuntimeISA;
157 switch (kRuntimeISA) {
178 UNIMPLEMENTED(FATAL) << kRuntimeISA;
186 switch (kRuntimeISA) {
207 UNIMPLEMENTED(FATAL) << kRuntimeISA;
H A Dcode_offset.h32 ALWAYS_INLINE static CodeOffset FromOffset(uint32_t offset, InstructionSet isa = kRuntimeISA) { argument
40 ALWAYS_INLINE uint32_t Uint32Value(InstructionSet isa = kRuntimeISA) const {
H A Dstub_test.cc45 runtime_->SetInstructionSet(kRuntimeISA);
575 LOG(INFO) << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA;
577 std::cout << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA << std::endl;
634 LOG(INFO) << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA;
636 std::cout << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
794 LOG(INFO) << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA;
796 std::cout << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
905 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA;
907 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl;
1022 LOG(INFO) << "Skipping alloc_object as I don't know how to do that on " << kRuntimeISA;
[all...]
/art/runtime/
H A Doat_quick_method_header.h47 DCHECK(IsAlignedParam(code, GetInstructionSetAlignment(kRuntimeISA)) ||
48 IsAlignedParam(header, GetInstructionSetAlignment(kRuntimeISA)))
138 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
139 if (kRuntimeISA == kArm) {
147 // When the runtime architecture is ARM, `kRuntimeISA` is set to `kArm`
151 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
152 return (kRuntimeISA == kArm)
H A Datomic.cc31 if (NeedSwapMutexes(kRuntimeISA)) {
40 if (NeedSwapMutexes(kRuntimeISA)) {
H A Doat_file_assistant_test.cc85 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
107 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, true);
131 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
164 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
198 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
242 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
277 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
302 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
324 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg;
332 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, fals
[all...]
H A Ddex2oat_environment_test.h61 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
145 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
156 GetDalvikCache(GetInstructionSetString(kRuntimeISA),
H A Ddexopt_test.cc53 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA));
116 kRuntimeISA,
175 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg;
205 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
H A Doat_quick_method_header.cc84 stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA);
H A Datomic.h60 if (!NeedSwapMutexes(kRuntimeISA)) {
96 if (!NeedSwapMutexes(kRuntimeISA)) {
142 if (!NeedSwapMutexes(kRuntimeISA)) {
H A Dnative_bridge_art_interface.cc107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
/art/runtime/simulator/
H A Dcode_simulator_arm64.h50 static constexpr bool kCanSimulate = (kRuntimeISA == kX86_64);
/art/compiler/
H A Dexception_test.cc64 StackMapStream stack_maps(&allocator, kRuntimeISA);
85 const size_t alignment = GetInstructionSetAlignment(kRuntimeISA);
99 if (kRuntimeISA == kArm) {
171 r->SetInstructionSet(kRuntimeISA);
H A Delf_writer_test.cc53 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
109 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
/art/compiler/optimizing/
H A Dstack_map_test.cc51 StackMapStream stream(&arena, kRuntimeISA);
82 ASSERT_EQ(64u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
132 StackMapStream stream(&arena, kRuntimeISA);
197 ASSERT_EQ(64u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
256 ASSERT_EQ(128u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
310 ASSERT_EQ(192u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
364 ASSERT_EQ(256u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
416 StackMapStream stream(&arena, kRuntimeISA);
457 ASSERT_EQ(64u, stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA));
510 StackMapStream stream(&arena, kRuntimeISA);
[all...]
H A Doptimizing_unit_test.h85 kRuntimeISA);
/art/imgdiag/
H A Dimgdiag_test.cc79 if (OS::FileExists(root32.c_str()) && !Is64BitInstructionSet(kRuntimeISA)) {

Completed in 1391 milliseconds

123