Home
last modified time | relevance | path

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

/art/libartbase/arch/
Dinstruction_set_test.cc36 TEST(InstructionSetTest, GetInstructionSetString) { in TEST() argument
37 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kArm)); in TEST()
38 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kThumb2)); in TEST()
39 EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64)); in TEST()
40 EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86)); in TEST()
41 EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64)); in TEST()
42 EXPECT_STREQ("mips", GetInstructionSetString(InstructionSet::kMips)); in TEST()
43 EXPECT_STREQ("mips64", GetInstructionSetString(InstructionSet::kMips64)); in TEST()
44 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); in TEST()
63 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
Dinstruction_set.cc42 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() function
Dinstruction_set.h87 const char* GetInstructionSetString(InstructionSet isa);
/art/cmdline/
Dcmdline.h61 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
113 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime()
229 GetInstructionSetString(kRuntimeISA)); in GetUsage()
263 LOG(WARNING) << "No instruction set given, assuming " << GetInstructionSetString(kRuntimeISA); in ParseCheckBootImage()
/art/runtime/gc/space/
Dimage_space_fs.h99 impl::DeleteDirectoryContents(GetDalvikCache(GetInstructionSetString(isa)), false); in PruneDalvikCache()
112 const std::string isa_subdir = GetDalvikCache(GetInstructionSetString(isa)); in MarkZygoteStart()
Dimage_space.cc207 GetDalvikCache(GetInstructionSetString(image_isa), in FindImageFilenameImpl()
316 const std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(isa)); in CanWriteToDalvikCache()
2232 GetInstructionSetString(image_isa)); in GetBootClassPathChecksums()
/art/oatdump/
Doatdump_test.h136 "--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)), in GenerateAppOdexFile()
194 GetInstructionSetString(kRuntimeISA))); in Exec()
206 GetInstructionSetString(kRuntimeISA))); in Exec()
216 GetInstructionSetString(kRuntimeISA))); in Exec()
/art/runtime/arch/
Dinstruction_set_features_test.cc47 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
75 GetInstructionSetString(kRuntimeISA));
80 GetInstructionSetString(kRuntimeISA));
/art/runtime/
Ddex2oat_environment_test.h66 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp()
159 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetSystemImageFile()
Dnative_bridge_art_interface.cc107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dsignal_catcher.cc128 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Ddexopt_test.cc77 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA)); in GenerateOatForTest()
Doat_file_assistant.cc512 dir += "/" + std::string(GetInstructionSetString(isa)); in DexLocationToOdexNames()
551 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa)); in DexLocationToOatFilename()
Dparsed_options.cc541 GetInstructionSetString(kRuntimeISA)); in DoParse()
Druntime.cc897 GetInstructionSetString(kRuntimeISA)); in Start()
2545 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Doat_file_assistant_test.cc1442 odex_dir = odex_dir + std::string(GetInstructionSetString(kRuntimeISA)); in TEST_F()
/art/dexoptanalyzer/
Ddexoptanalyzer.cc263 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_)); in CreateRuntime()
Ddexoptanalyzer_test.cc45 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
/art/libartbase/base/
Dfile_utils.cc292 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc246 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
678 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
/art/dex2oat/
Ddex2oat.cc2493 GetInstructionSetString(compiler_options_->GetInstructionSet()))); in PrepareRuntimeOptions()
2717 GetInstructionSetString(isa)) { in StripIsaFrom()