HomeSort by relevance Sort by last modified time
    Searched refs:kRuntimeISA (Results 1 - 25 of 55) sorted by null

1 2 3

  /system/core/libnativebridge/tests/
NeedsNativeBridge_test.cpp 25 static const char* kRuntimeISA = "arm";
27 static const char* kRuntimeISA = "arm64";
29 static const char* kRuntimeISA = "mips";
31 static const char* kRuntimeISA = "x86";
33 static const char* kRuntimeISA = "x86_64";
35 static const char* kRuntimeISA = "unknown";
39 EXPECT_EQ(false, NeedsNativeBridge(kRuntimeISA));
43 EXPECT_EQ(kISAs[i] == nullptr ? false : strcmp(kISAs[i], kRuntimeISA) != 0,
  /art/runtime/native/
java_util_concurrent_atomic_AtomicLong.cc 26 return QuasiAtomic::LongAtomicsUseMutexes(kRuntimeISA) ? JNI_FALSE : JNI_TRUE;
  /art/runtime/arch/
instruction_set_test.cc 48 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));
52 EXPECT_EQ(sizeof(void*), GetInstructionSetPointerSize(kRuntimeISA));
instruction_set.h 40 static constexpr InstructionSet kRuntimeISA = kArm;
42 static constexpr InstructionSet kRuntimeISA = kArm64;
44 static constexpr InstructionSet kRuntimeISA = kMips;
46 static constexpr InstructionSet kRuntimeISA = kMips64;
48 static constexpr InstructionSet kRuntimeISA = kX86;
50 static constexpr InstructionSet kRuntimeISA = kX86_64;
52 static constexpr InstructionSet kRuntimeISA = kNone;
instruction_set_features_test.cc 41 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
48 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
69 GetInstructionSetString(kRuntimeISA));
74 GetInstructionSetString(kRuntimeISA));
81 InstructionSetFeatures::FromVariant(kRuntimeISA, dex2oat_isa_variant, &error_msg));
118 InstructionSetFeatures::FromVariant(kRuntimeISA, "default", &error_msg));
instruction_set_features.cc 97 switch (kRuntimeISA) {
118 UNIMPLEMENTED(FATAL) << kRuntimeISA;
127 switch (kRuntimeISA) {
148 UNIMPLEMENTED(FATAL) << kRuntimeISA;
156 switch (kRuntimeISA) {
177 UNIMPLEMENTED(FATAL) << kRuntimeISA;
185 switch (kRuntimeISA) {
206 UNIMPLEMENTED(FATAL) << kRuntimeISA;
stub_test.cc 42 runtime_->SetInstructionSet(kRuntimeISA);
576 LOG(INFO) << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA;
578 std::cout << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA << std::endl;
635 LOG(INFO) << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA;
637 std::cout << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
795 LOG(INFO) << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA;
797 std::cout << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
856 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA;
858 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl;
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 109 // Note: we can only check against the kRuntimeISA, because the ArtMethod computation uses
111 CheckPCOffset(kRuntimeISA, Runtime::kRefsAndArgs,
112 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kRefsAndArgs));
113 CheckPCOffset(kRuntimeISA, Runtime::kRefsOnly,
114 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kRefsOnly));
115 CheckPCOffset(kRuntimeISA, Runtime::kSaveAll,
116 GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kSaveAll));
quick_instrumentation_entrypoints.cc 58 size_t return_pc_offset = GetCalleeSaveReturnPcOffset(kRuntimeISA, Runtime::kRefsOnly);
quick_trampoline_entrypoints.cc 48 GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kRefsAndArgs);
83 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
121 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
157 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
201 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
234 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
277 case 0: return (4 * GetBytesPerGprSpillLocation(kRuntimeISA));
278 case 1: return (1 * GetBytesPerGprSpillLocation(kRuntimeISA));
279 case 2: return (0 * GetBytesPerGprSpillLocation(kRuntimeISA));
280 case 3: return (5 * GetBytesPerGprSpillLocation(kRuntimeISA));
    [all...]
  /art/runtime/
oat_quick_method_header.h 44 DCHECK(IsAlignedParam(code, GetInstructionSetAlignment(kRuntimeISA)) ||
45 IsAlignedParam(header, GetInstructionSetAlignment(kRuntimeISA)))
89 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
90 if (kRuntimeISA == kArm) {
98 // When the runtime architecture is ARM, `kRuntimeISA` is set to `kArm`
102 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
103 return (kRuntimeISA == kArm)
atomic.cc 31 if (NeedSwapMutexes(kRuntimeISA)) {
40 if (NeedSwapMutexes(kRuntimeISA)) {
oat_file_assistant_test.cc 56 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
148 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
214 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
386 OatFileAssistant ofa(dex_location, kRuntimeISA, false, false);
418 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
448 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
471 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
501 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
527 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, true, false);
553 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true)
    [all...]
atomic.h 60 if (!NeedSwapMutexes(kRuntimeISA)) {
96 if (!NeedSwapMutexes(kRuntimeISA)) {
142 if (!NeedSwapMutexes(kRuntimeISA)) {
native_bridge_art_interface.cc 104 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
common_runtime_test.h 203 if (kRuntimeISA == kMips) { \
  /art/runtime/simulator/
code_simulator_arm64.h 49 static constexpr bool kCanSimulate = (kRuntimeISA == kX86_64);
  /system/core/libnativebridge/
native_bridge.cc 231 static const char* kRuntimeISA = "arm";
233 static const char* kRuntimeISA = "arm64";
235 static const char* kRuntimeISA = "mips";
237 static const char* kRuntimeISA = "x86";
239 static const char* kRuntimeISA = "x86_64";
241 static const char* kRuntimeISA = "unknown";
250 return strncmp(instruction_set, kRuntimeISA, strlen(kRuntimeISA) + 1) != 0;
  /art/oatdump/
oatdump_test.cc 41 core_oat_location_ = GetSystemImageFilename(GetCoreOatLocation().c_str(), kRuntimeISA);
72 exec_argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
  /art/compiler/
exception_test.cc 84 const size_t alignment = GetInstructionSetAlignment(kRuntimeISA);
98 if (kRuntimeISA == kArm) {
170 r->SetInstructionSet(kRuntimeISA);
elf_writer_test.cc 55 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
  /art/compiler/optimizing/
optimizing_unit_test.h 80 kRuntimeISA);
  /art/imgdiag/
imgdiag_test.cc 77 if (OS::FileExists(root32.c_str()) && !Is64BitInstructionSet(kRuntimeISA)) {
  /art/cmdline/
cmdline.h 206 GetInstructionSetString(kRuntimeISA));
218 InstructionSet instruction_set_ = kRuntimeISA;
  /art/compiler/jit/
jit_compiler.cc 73 kRuntimeISA, jit_compiler->GetCompilerDriver()->GetInstructionSetFeatures(), types_array);
117 const InstructionSet instruction_set = kRuntimeISA;

Completed in 923 milliseconds

1 2 3