Home
last modified time | relevance | path

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

12

/art/libartbase/arch/
Dinstruction_set_test.cc34 TEST(InstructionSetTest, GetInstructionSetString) { in TEST() argument
35 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kArm)); in TEST()
36 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kThumb2)); in TEST()
37 EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64)); in TEST()
38 EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86)); in TEST()
39 EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64)); in TEST()
40 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); in TEST()
55 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
Dinstruction_set.cc40 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() function
Dinstruction_set.h76 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/oatdump/
Doatdump_test.h145 "--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)), in GenerateAppOdexFile()
204 GetInstructionSetString(kRuntimeISA)));
216 GetInstructionSetString(kRuntimeISA)));
226 GetInstructionSetString(kRuntimeISA)));
/art/runtime/arch/
Dinstruction_set_features_test.cc54 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
88 GetInstructionSetString(kRuntimeISA));
93 GetInstructionSetString(kRuntimeISA));
/art/test/dexpreopt/
Ddexpreopt_test.cc91 return Errorf("Unknown runtime ISA: {}", GetInstructionSetString(kRuntimeISA)); in GetZygoteNamesAndIsas()
112 "%s/%s/%s", dir.c_str(), GetInstructionSetString(isa), basename.c_str()); in GetZygoteExpectedArtifacts()
/art/runtime/
Dnative_bridge_art_interface.cc107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dsignal_catcher.cc129 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Ddex2oat_environment_test.h64 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp()
Ddexopt_test.cc79 std::string image_dir = scratch_dir + GetInstructionSetString(kRuntimeISA); in GenerateAlternateImage()
Doat_file_assistant.cc555 dir += "/" + std::string(GetInstructionSetString(isa)); in DexLocationToOdexFilename()
600 GetDalvikCache(GetInstructionSetString(isa), in DexLocationToOatFilename()
Dcommon_runtime_test.cc534 std::string isa = GetInstructionSetString(kRuntimeISA); in GetSystemImageFile()
Dparsed_options.cc649 GetInstructionSetString(kRuntimeISA)); in DoParse()
Druntime.cc1015 GetInstructionSetString(kRuntimeISA)); in Start()
2939 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
/art/test/generate-boot-image/
Dgenerate-boot-image.cc68 std::string isa = GetInstructionSetString(kRuntimeISA); in GenerateBootImage()
/art/libartbase/base/
Dfile_utils.cc454 return GetDalvikCacheDirectory(GetArtApexData(), GetInstructionSetString(isa)); in GetApexDataDalvikCacheDirectory()
526 std::string dir = GetAndroidRoot() + "/framework/oat/" + GetInstructionSetString(isa); in GetSystemOdexFilenameForApex()
542 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc243 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
427 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
/art/dex2oat/
Ddex2oat_image_test.cc259 std::string image_dir = scratch_dir + GetInstructionSetString(kRuntimeISA); in TEST_F()
369 std::string single_image_dir = single_dir + GetInstructionSetString(kRuntimeISA); in TEST_F()
Ddex2oat.cc2684 GetInstructionSetString(compiler_options_->GetInstructionSet()))); in PrepareRuntimeOptions()
2881 GetInstructionSetString(isa)) { in StripIsaFrom()
/art/dexoptanalyzer/
Ddexoptanalyzer_test.cc49 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
Ddexoptanalyzer.cc265 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_)); in CreateRuntime()
/art/runtime/gc/space/
Dimage_space_test.cc57 std::string image_dir = scratch_dir + GetInstructionSetString(kRuntimeISA); in TEST_F()
/art/odrefresh/
Dodrefresh.cc406 const char* isa_str = GetInstructionSetString(isa); in AddDex2OatInstructionSet()
782 const char* isa_str = GetInstructionSetString(config_.GetSystemServerIsa()); in GetSystemServerImagePath()
1537 GetInstructionSetString(isa), in CompileBootClasspathArtifacts()
/art/adbconnection/
Dadbconnection.cc484 const char* isa = GetInstructionSetString(art::Runtime::Current()->GetInstructionSet()); in SetupAdbConnection()

12