Home
last modified time | relevance | path

Searched refs:GetInstructionSetString (Results 1 – 21 of 21) 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()
57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
Dinstruction_set_features_test.cc45 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
73 GetInstructionSetString(kRuntimeISA));
78 GetInstructionSetString(kRuntimeISA));
Dinstruction_set.cc44 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() function
Dinstruction_set.h86 const char* GetInstructionSetString(InstructionSet isa);
/art/runtime/
Ddex2oat_environment_test.h62 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp()
146 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetSystemImageFile()
157 GetDalvikCache(GetInstructionSetString(kRuntimeISA), in GetCachedImageFile()
Ddexopt_test.cc53 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA)); in GenerateOatForTest()
205 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in PreRelocateImage()
Dnative_bridge_art_interface.cc107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dsignal_catcher.cc189 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Doat_file_assistant.cc181 std::string lock_file_name = dex_location_ + "." + GetInstructionSetString(isa_) + ".flock"; in Lock()
574 dir += "/" + std::string(GetInstructionSetString(isa)); in DexLocationToOdexNames()
838 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa)); in DexLocationToOatFilename()
Dutils.cc855 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
Dparsed_options.cc497 GetInstructionSetString(kRuntimeISA)); in DoParse()
Druntime.cc780 GetInstructionSetString(kRuntimeISA)); in Start()
2238 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
/art/runtime/gc/space/
Dimage_space_fs.h97 impl::DeleteDirectoryContents(GetDalvikCache(GetInstructionSetString(isa)), false); in PruneDalvikCache()
110 const std::string isa_subdir = GetDalvikCache(GetInstructionSetString(isa)); in MarkZygoteStart()
Dimage_space.cc179 GetDalvikCache(GetInstructionSetString(image_isa), in FindImageFilenameImpl()
257 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
378 const std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(isa)); in CanWriteToDalvikCache()
/art/cmdline/
Dcmdline.h58 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
107 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime()
208 GetInstructionSetString(kRuntimeISA)); in GetUsage()
/art/oatdump/
Doatdump_test.h115 GetInstructionSetString(kRuntimeISA))); in Exec()
/art/dexoptanalyzer/
Ddexoptanalyzer.cc192 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_)); in CreateRuntime()
Ddexoptanalyzer_test.cc44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc199 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
623 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
/art/patchoat/
Dpatchoat.cc133 const char* isa_name = GetInstructionSetString(isa); in Patch()
/art/dex2oat/
Ddex2oat.cc2583 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in PrepareRuntimeOptions()
2833 GetInstructionSetString(isa)) { in StripIsaFrom()