Home
last modified time | relevance | path

Searched refs:GetInstructionSetString (Results 1 – 16 of 16) sorted by relevance

/art/runtime/arch/
Dinstruction_set_test.cc36 TEST(InstructionSetTest, GetInstructionSetString) { in TEST() argument
37 EXPECT_STREQ("arm", GetInstructionSetString(kArm)); in TEST()
38 EXPECT_STREQ("arm", GetInstructionSetString(kThumb2)); in TEST()
39 EXPECT_STREQ("arm64", GetInstructionSetString(kArm64)); in TEST()
40 EXPECT_STREQ("x86", GetInstructionSetString(kX86)); in TEST()
41 EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64)); in TEST()
42 EXPECT_STREQ("mips", GetInstructionSetString(kMips)); in TEST()
43 EXPECT_STREQ("mips64", GetInstructionSetString(kMips64)); in TEST()
44 EXPECT_STREQ("none", GetInstructionSetString(kNone)); in TEST()
48 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
Dinstruction_set_features_test.cc41 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
69 GetInstructionSetString(kRuntimeISA));
74 GetInstructionSetString(kRuntimeISA));
Dinstruction_set.cc25 const char* GetInstructionSetString(const InstructionSet isa) { in GetInstructionSetString() function
Dinstruction_set.h78 const char* GetInstructionSetString(InstructionSet isa);
/art/cmdline/
Dcmdline.h56 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
106 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime()
204 GetInstructionSetString(kRuntimeISA)); in GetUsage()
/art/runtime/
Dnative_bridge_art_interface.cc119 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dsignal_catcher.cc140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Doat_file_assistant.cc324 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_)); in OatFileName()
632 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_))); in CopyProfileFile()
762 dir += "oat/" + std::string(GetInstructionSetString(isa)); in CopyProfileFile()
Doat_file_assistant_test.cc55 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp()
147 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetImageFile()
Druntime.cc544 GetInstructionSetString(kRuntimeISA)); in Start()
1685 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Dutils.cc1364 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
/art/runtime/gc/space/
Dimage_space.cc87 RealPruneDalvikCache(GetDalvikCacheOrDie(GetInstructionSetString(isa), false)); in PruneDalvikCache()
129 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false); in MarkZygoteStart()
255 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, in FindImageFilename()
310 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc179 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
594 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
Ddalvik_system_DexFile.cc373 const char* instruction_set = GetInstructionSetString(kRuntimeISA); in DexFile_isDexOptNeeded()
/art/patchoat/
Dpatchoat.cc68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
105 const char *isa_name = GetInstructionSetString(isa); in Patch()
202 const char* isa_name = GetInstructionSetString(isa); in Patch()
/art/dex2oat/
Ddex2oat.cc1179 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in Setup()