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

1 2

  /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/
instruction_set_test.cc 46 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)));
50 EXPECT_EQ(kPointerSize, GetInstructionSetPointerSize(kRuntimeISA));
instruction_set.h 42 static constexpr InstructionSet kRuntimeISA = kArm;
44 static constexpr InstructionSet kRuntimeISA = kArm64;
46 static constexpr InstructionSet kRuntimeISA = kMips;
48 static constexpr InstructionSet kRuntimeISA = kX86;
50 static constexpr InstructionSet kRuntimeISA = kX86_64;
52 static constexpr InstructionSet kRuntimeISA = kNone;
common_runtime_test.h 160 if (kRuntimeISA == kMips || kRuntimeISA == kMips64) { \
vmap_table.h 68 bool target64 = (kRuntimeISA == kArm64) || (kRuntimeISA == kX86_64);
native_bridge_art_interface.cc 123 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
stack.cc 174 bool target64 = Is64BitInstructionSet(kRuntimeISA);
231 bool target64 = Is64BitInstructionSet(kRuntimeISA);
270 bool target64 = Is64BitInstructionSet(kRuntimeISA);
338 bool target64 = Is64BitInstructionSet(kRuntimeISA);
runtime.cc 454 GetInstructionSetString(kRuntimeISA));
597 kRuntimeISA,
756 switch (kRuntimeISA) {
828 SetInstructionSet(kRuntimeISA);
    [all...]
thread.h 585 return tlsPtr_.stack_end + GetStackOverflowReservedBytes(kRuntimeISA);
602 tlsPtr_.stack_end = tlsPtr_.stack_begin + GetStackOverflowReservedBytes(kRuntimeISA);
    [all...]
thread.cc 79 const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA);
226 stack_size += GetStackOverflowReservedBytes(kRuntimeISA);
231 GetStackOverflowReservedBytes(kRuntimeISA);
518 uint32_t min_stack = GetStackOverflowReservedBytes(kRuntimeISA) + kStackOverflowProtectedSize
    [all...]
stack.h 616 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg, kRuntimeISA);
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 97 // Note: we can only check against the kRuntimeISA, because the ArtMethod computation uses
99 CheckPCOffset(kRuntimeISA, Runtime::kRefsAndArgs,
100 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsAndArgs));
101 CheckPCOffset(kRuntimeISA, Runtime::kRefsOnly,
102 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsOnly));
103 CheckPCOffset(kRuntimeISA, Runtime::kSaveAll,
104 GetCalleeSavePCOffset(kRuntimeISA, Runtime::kSaveAll));
quick_instrumentation_entrypoints.cc 62 uint32_t return_pc_offset = GetCalleeSavePCOffset(kRuntimeISA, Runtime::kRefsOnly);
quick_trampoline_entrypoints.cc 41 GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kRefsAndArgs);
68 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
101 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
125 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
149 return gpr_index * GetBytesPerGprSpillLocation(kRuntimeISA);
187 case 0: return (4 * GetBytesPerGprSpillLocation(kRuntimeISA));
188 case 1: return (1 * GetBytesPerGprSpillLocation(kRuntimeISA));
189 case 2: return (0 * GetBytesPerGprSpillLocation(kRuntimeISA));
190 case 3: return (5 * GetBytesPerGprSpillLocation(kRuntimeISA));
191 case 4: return (6 * GetBytesPerGprSpillLocation(kRuntimeISA));
    [all...]
quick_field_entrypoints.cc 251 constexpr size_t frame_size = GetCalleeSaveFrameSize(kRuntimeISA, Runtime::kRefsOnly);
  /system/core/libnativebridge/
native_bridge.cc 209 static const char* kRuntimeISA = "arm";
211 static const char* kRuntimeISA = "arm64";
213 static const char* kRuntimeISA = "mips";
215 static const char* kRuntimeISA = "x86";
217 static const char* kRuntimeISA = "x86_64";
219 static const char* kRuntimeISA = "unknown";
228 return strncmp(instruction_set, kRuntimeISA, strlen(kRuntimeISA) + 1) != 0;
  /art/runtime/arch/
stub_test.cc 40 runtime_->SetInstructionSet(kRuntimeISA);
593 LOG(INFO) << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA;
595 std::cout << "Skipping memcpy as I don't know how to do that on " << kRuntimeISA << std::endl;
651 LOG(INFO) << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA;
653 std::cout << "Skipping lock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
809 LOG(INFO) << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA;
811 std::cout << "Skipping unlock_object as I don't know how to do that on " << kRuntimeISA << std::endl;
865 LOG(INFO) << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA;
867 std::cout << "Skipping check_cast as I don't know how to do that on " << kRuntimeISA << std::endl;
    [all...]
  /art/compiler/
elf_writer_test.cc 57 std::string elf_filename = GetSystemImageFilename(elf_location.c_str(), kRuntimeISA);
image_test.cc 52 kRuntimeISA));
oat_test.cc 190 EXPECT_EQ(79 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
common_compiler_test.cc 287 InstructionSet instruction_set = kRuntimeISA;
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 123 if (isa != kNone && isa != kRuntimeISA) {
dalvik_system_DexFile.cc 603 const char* instruction_set = GetInstructionSetString(kRuntimeISA);
dalvik_system_VMRuntime.cc 544 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA));
  /art/runtime/base/
mutex.cc 849 if (kRuntimeISA == kX86 || kRuntimeISA == kX86_64) {
    [all...]

Completed in 977 milliseconds

1 2