Home
last modified time | relevance | path

Searched refs:GetInstructionSetString (Results 1 – 17 of 17) 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()
105 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime()
206 GetInstructionSetString(kRuntimeISA)); in GetUsage()
/art/runtime/gc/space/
Dimage_space_fs.h203 impl::DeleteDirectoryContents(GetDalvikCacheOrDie(GetInstructionSetString(isa), false), false); in PruneDalvikCache()
216 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false); in MarkZygoteStart()
Dimage_space.cc161 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, in FindImageFilename()
210 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
/art/runtime/
Dnative_bridge_art_interface.cc104 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dsignal_catcher.cc140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Doat_file_assistant.cc402 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_)); in OatFileName()
654 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_))); in RelocateOatFile()
807 dir += "oat/" + std::string(GetInstructionSetString(isa)); in DexFilenameToOdexFilename()
Doat_file_assistant_test.cc56 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp()
148 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetImageFile()
214 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in GenerateOdexForTest()
Druntime.cc619 GetInstructionSetString(kRuntimeISA)); in Start()
1921 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Dutils.cc1385 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
/art/oatdump/
Doatdump_test.cc72 exec_argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in Exec()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc183 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
629 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
/art/patchoat/
Dpatchoat.cc68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
164 const char* isa_name = GetInstructionSetString(isa); in Patch()
/art/dex2oat/
Ddex2oat.cc2183 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in PrepareRuntimeOptions()
2409 GetInstructionSetString(isa)) { in StripIsaFrom()