Searched refs:GetInstructionSetString (Results 1 – 21 of 21) sorted by relevance
/art/runtime/arch/ |
D | instruction_set_test.cc | 36 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()
|
D | instruction_set_features_test.cc | 44 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA)); 72 GetInstructionSetString(kRuntimeISA)); 77 GetInstructionSetString(kRuntimeISA));
|
D | instruction_set.cc | 44 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() function
|
D | instruction_set.h | 87 const char* GetInstructionSetString(InstructionSet isa);
|
/art/cmdline/ |
D | cmdline.h | 60 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename() 110 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime() 211 GetInstructionSetString(kRuntimeISA)); in GetUsage() 237 LOG(WARNING) << "No instruction set given, assuming " << GetInstructionSetString(kRuntimeISA); in ParseCheckBootImage()
|
/art/runtime/gc/space/ |
D | image_space_fs.h | 98 impl::DeleteDirectoryContents(GetDalvikCache(GetInstructionSetString(isa)), false); in PruneDalvikCache() 111 const std::string isa_subdir = GetDalvikCache(GetInstructionSetString(isa)); in MarkZygoteStart()
|
/art/runtime/ |
D | dex2oat_environment_test.h | 66 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp() 159 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetSystemImageFile()
|
D | dexopt_test.cc | 55 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA)); in GenerateOatForTest() 206 GetDalvikCache(GetInstructionSetString(kRuntimeISA), in PreRelocateImage() 224 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in PreRelocateImage()
|
D | native_bridge_art_interface.cc | 107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
|
D | signal_catcher.cc | 192 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
|
D | oat_file_assistant.cc | 199 std::string lock_file_name = dex_location_ + "." + GetInstructionSetString(isa_) + ".flock"; in Lock() 600 dir += "/" + std::string(GetInstructionSetString(isa)); in DexLocationToOdexNames() 869 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa)); in DexLocationToOatFilename()
|
D | parsed_options.cc | 515 GetInstructionSetString(kRuntimeISA)); in DoParse()
|
D | runtime.cc | 821 GetInstructionSetString(kRuntimeISA)); in Start() 2431 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
|
/art/oatdump/ |
D | oatdump_test.h | 127 "--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)), in GenerateAppOdexFile() 171 GetInstructionSetString(kRuntimeISA))); in Exec() 178 GetInstructionSetString(kRuntimeISA))); in Exec()
|
/art/patchoat/ |
D | patchoat_test.cc | 134 argv.push_back(StringPrintf("--instruction-set=%s", GetInstructionSetString(kRuntimeISA))); in BasePatchoatCommand() 373 dex2oat_orig_dir + "/" + GetInstructionSetString(kRuntimeISA); in TEST_F() 464 dex2oat_orig_dir_ + "/" + GetInstructionSetString(kRuntimeISA); in CreateRelocatedBootImage()
|
D | patchoat.cc | 139 isa_name_ = GetInstructionSetString(isa); in PatchoatRuntimeOptionsHolder()
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 226 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_)); in CreateRuntime()
|
D | dexoptanalyzer_test.cc | 44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA))); in Analyze()
|
/art/runtime/base/ |
D | file_utils.cc | 297 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 243 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet() 664 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
|
/art/dex2oat/ |
D | dex2oat.cc | 2599 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in PrepareRuntimeOptions() 2849 GetInstructionSetString(isa)) { in StripIsaFrom()
|