HomeSort by relevance Sort by last modified time
    Searched refs:kRuntimeISA (Results 1 - 25 of 65) 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 = "mips64";
33 static const char* kRuntimeISA = "x86";
35 static const char* kRuntimeISA = "x86_64";
37 static const char* kRuntimeISA = "unknown";
41 EXPECT_EQ(false, NeedsNativeBridge(kRuntimeISA));
45 EXPECT_EQ(kISAs[i] == nullptr ? false : strcmp(kISAs[i], kRuntimeISA) != 0,
  /art/runtime/native/
java_util_concurrent_atomic_AtomicLong.cc 29 return QuasiAtomic::LongAtomicsUseMutexes(kRuntimeISA) ? JNI_FALSE : JNI_TRUE;
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 118 // Note: we can only check against the kRuntimeISA, because the ArtMethod computation uses
120 CheckPCOffset(kRuntimeISA, CalleeSaveType::kSaveRefsAndArgs,
121 GetCalleeSaveReturnPcOffset(kRuntimeISA, CalleeSaveType::kSaveRefsAndArgs));
122 CheckPCOffset(kRuntimeISA, CalleeSaveType::kSaveRefsOnly,
123 GetCalleeSaveReturnPcOffset(kRuntimeISA, CalleeSaveType::kSaveRefsOnly));
124 CheckPCOffset(kRuntimeISA, CalleeSaveType::kSaveAllCalleeSaves,
125 GetCalleeSaveReturnPcOffset(kRuntimeISA, CalleeSaveType::kSaveAllCalleeSaves));
  /art/runtime/arch/
instruction_set_test.cc 57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));
61 EXPECT_EQ(kRuntimePointerSize, GetInstructionSetPointerSize(kRuntimeISA));
instruction_set.h 41 static constexpr InstructionSet kRuntimeISA = kArm;
43 static constexpr InstructionSet kRuntimeISA = kArm64;
45 static constexpr InstructionSet kRuntimeISA = kMips;
47 static constexpr InstructionSet kRuntimeISA = kMips64;
49 static constexpr InstructionSet kRuntimeISA = kX86;
51 static constexpr InstructionSet kRuntimeISA = kX86_64;
53 static constexpr InstructionSet kRuntimeISA = kNone;
instruction_set_features_test.cc 45 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));
code_offset.h 32 ALWAYS_INLINE static CodeOffset FromOffset(uint32_t offset, InstructionSet isa = kRuntimeISA) {
40 ALWAYS_INLINE uint32_t Uint32Value(InstructionSet isa = kRuntimeISA) const {
instruction_set_features.cc 92 switch (kRuntimeISA) {
110 UNIMPLEMENTED(FATAL) << kRuntimeISA;
116 switch (kRuntimeISA) {
134 UNIMPLEMENTED(FATAL) << kRuntimeISA;
139 switch (kRuntimeISA) {
157 UNIMPLEMENTED(FATAL) << kRuntimeISA;
162 switch (kRuntimeISA) {
180 UNIMPLEMENTED(FATAL) << kRuntimeISA;
stub_test.cc 46 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;
906 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA;
908 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl;
    [all...]
  /art/runtime/
oat_quick_method_header.h 47 DCHECK(IsAlignedParam(code, GetInstructionSetAlignment(kRuntimeISA)) ||
48 IsAlignedParam(header, GetInstructionSetAlignment(kRuntimeISA)))
139 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
140 if (kRuntimeISA == kArm) {
148 // When the runtime architecture is ARM, `kRuntimeISA` is set to `kArm`
152 static_assert(kRuntimeISA != kThumb2, "kThumb2 cannot be a runtime ISA");
153 return (kRuntimeISA == kArm)
atomic.cc 31 if (NeedSwapMutexes(kRuntimeISA)) {
40 if (NeedSwapMutexes(kRuntimeISA)) {
oat_file_assistant_test.cc 90 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
112 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, true);
137 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
170 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
204 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
248 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
283 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
308 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false);
330 dex_location, kRuntimeISA, &oat_location, &error_msg)) << error_msg;
338 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false)
    [all...]
dex2oat_environment_test.h 62 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
146 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
157 GetDalvikCache(GetInstructionSetString(kRuntimeISA),
dexopt_test.cc 53 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)));
oat_quick_method_header.cc 84 stack_map.GetNativePcOffset(encoding.stack_map.encoding, kRuntimeISA);
atomic.h 60 if (!NeedSwapMutexes(kRuntimeISA)) {
96 if (!NeedSwapMutexes(kRuntimeISA)) {
142 if (!NeedSwapMutexes(kRuntimeISA)) {
  /art/runtime/simulator/
code_simulator_arm64.h 50 static constexpr bool kCanSimulate = (kRuntimeISA == kX86_64);
  /system/core/libnativebridge/
native_bridge.cc 247 static const char* kRuntimeISA = "arm";
249 static const char* kRuntimeISA = "arm64";
251 static const char* kRuntimeISA = "mips";
253 static const char* kRuntimeISA = "mips64";
255 static const char* kRuntimeISA = "x86";
257 static const char* kRuntimeISA = "x86_64";
259 static const char* kRuntimeISA = "unknown";
268 return strncmp(instruction_set, kRuntimeISA, strlen(kRuntimeISA) + 1) != 0;
  /art/dexlayout/
dexdiag_test.cc 49 if (OS::FileExists(root32.c_str()) && !Is64BitInstructionSet(kRuntimeISA)) {
66 std::string oat_location = GetSystemImageFilename(default_location.c_str(), kRuntimeISA);
  /art/compiler/
exception_test.cc 65 StackMapStream stack_maps(&allocator, kRuntimeISA);
86 const size_t alignment = GetInstructionSetAlignment(kRuntimeISA);
100 if (kRuntimeISA == kArm) {
174 r->SetInstructionSet(kRuntimeISA);
elf_writer_test.cc 53 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
109 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
  /art/compiler/jit/
jit_compiler.cc 76 kRuntimeISA, jit_compiler->GetCompilerDriver()->GetInstructionSetFeatures(), types_array);
107 const InstructionSet instruction_set = kRuntimeISA;
  /art/compiler/optimizing/
stack_map_test.cc 51 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...]
optimizing_unit_test.h 85 kRuntimeISA);
  /art/imgdiag/
imgdiag_test.cc 80 if (OS::FileExists(root32.c_str()) && !Is64BitInstructionSet(kRuntimeISA)) {

Completed in 1054 milliseconds

1 2 3