/art/libartbase/arch/ |
D | instruction_set.h | 28 enum class InstructionSet { enum 37 std::ostream& operator<<(std::ostream& os, InstructionSet rhs); 40 static constexpr InstructionSet kRuntimeISA = InstructionSet::kArm; 42 static constexpr InstructionSet kRuntimeISA = InstructionSet::kArm64; 44 static constexpr InstructionSet kRuntimeISA = InstructionSet::kX86; 46 static constexpr InstructionSet kRuntimeISA = InstructionSet::kX86_64; 48 static constexpr InstructionSet kRuntimeISA = InstructionSet::kNone; 76 const char* GetInstructionSetString(InstructionSet isa); 79 InstructionSet GetInstructionSetFromString(const char* instruction_set); 82 NO_RETURN void InstructionSetAbort(InstructionSet isa); [all …]
|
D | instruction_set.cc | 25 void InstructionSetAbort(InstructionSet isa) { in InstructionSetAbort() 27 case InstructionSet::kArm: in InstructionSetAbort() 28 case InstructionSet::kThumb2: in InstructionSetAbort() 29 case InstructionSet::kArm64: in InstructionSetAbort() 30 case InstructionSet::kX86: in InstructionSetAbort() 31 case InstructionSet::kX86_64: in InstructionSetAbort() 32 case InstructionSet::kNone: in InstructionSetAbort() 40 const char* GetInstructionSetString(InstructionSet isa) { in GetInstructionSetString() 42 case InstructionSet::kArm: in GetInstructionSetString() 43 case InstructionSet::kThumb2: in GetInstructionSetString() [all …]
|
D | instruction_set_test.cc | 26 EXPECT_EQ(InstructionSet::kArm, GetInstructionSetFromString("arm")); in TEST() 27 EXPECT_EQ(InstructionSet::kArm64, GetInstructionSetFromString("arm64")); in TEST() 28 EXPECT_EQ(InstructionSet::kX86, GetInstructionSetFromString("x86")); in TEST() 29 EXPECT_EQ(InstructionSet::kX86_64, GetInstructionSetFromString("x86_64")); in TEST() 30 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); in TEST() 31 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST() 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() [all …]
|
/art/runtime/arch/ |
D | instruction_set_features.cc | 37 InstructionSet isa, const std::string& variant, std::string* error_msg) { in FromVariant() 39 case InstructionSet::kArm: in FromVariant() 40 case InstructionSet::kThumb2: in FromVariant() 42 case InstructionSet::kArm64: in FromVariant() 44 case InstructionSet::kX86: in FromVariant() 46 case InstructionSet::kX86_64: in FromVariant() 56 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromBitmap(InstructionSet isa, in FromBitmap() 60 case InstructionSet::kArm: in FromBitmap() 61 case InstructionSet::kThumb2: in FromBitmap() 64 case InstructionSet::kArm64: in FromBitmap() [all …]
|
/art/compiler/ |
D | compiled_method.cc | 25 InstructionSet instruction_set, in CompiledCode() 53 size_t CompiledCode::AlignCode(size_t offset, InstructionSet instruction_set) { in AlignCode() 61 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) { in CodeDelta() 63 case InstructionSet::kArm: in CodeDelta() 64 case InstructionSet::kArm64: in CodeDelta() 65 case InstructionSet::kX86: in CodeDelta() 66 case InstructionSet::kX86_64: in CodeDelta() 68 case InstructionSet::kThumb2: { in CodeDelta() 78 const void* CompiledCode::CodePointer(const void* code_pointer, InstructionSet instruction_set) { in CodePointer() 80 case InstructionSet::kArm: in CodePointer() [all …]
|
D | compiled_method.h | 42 InstructionSet instruction_set, 47 InstructionSet GetInstructionSet() const { in GetInstructionSet() 59 static size_t AlignCode(size_t offset, InstructionSet instruction_set); 64 static size_t CodeDelta(InstructionSet instruction_set); 69 static const void* CodePointer(const void* code_pointer, InstructionSet instruction_set); 73 MinimumBitsToStore(static_cast<size_t>(InstructionSet::kLast)); 96 using InstructionSetField = BitField<InstructionSet, 0u, kInstructionSetFieldSize>; 112 InstructionSet instruction_set, 122 InstructionSet instruction_set,
|
D | common_compiler_test.h | 47 static std::unique_ptr<CompilerOptions> CreateCompilerOptions(InstructionSet instruction_set, 56 InstructionSet instruction_set); 86 void OverrideInstructionSetFeatures(InstructionSet instruction_set, const std::string& variant); 92 InstructionSet instruction_set_ = 93 (kRuntimeISA == InstructionSet::kArm) ? InstructionSet::kThumb2 : kRuntimeISA;
|
/art/runtime/arch/x86/ |
D | instruction_set_features_x86_test.cc | 24 const bool is_runtime_isa = kRuntimeISA == InstructionSet::kX86; in TEST() 27 InstructionSetFeatures::FromVariant(InstructionSet::kX86, "default", &error_msg)); in TEST() 29 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 42 InstructionSetFeatures::FromVariant(InstructionSet::kX86, "atom", &error_msg)); in TEST() 44 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 52 InstructionSetFeatures::FromVariant(InstructionSet::kX86_64, "atom", &error_msg)); in TEST() 54 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST() 67 InstructionSetFeatures::FromVariant(InstructionSet::kX86, "sandybridge", &error_msg)); in TEST() 69 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 77 InstructionSetFeatures::FromVariant(InstructionSet::kX86_64, "sandybridge", &error_msg)); in TEST() [all …]
|
/art/odrefresh/ |
D | odr_config.h | 83 InstructionSet isa_; 104 isa_(InstructionSet::kNone), in OdrConfig() 106 artifact_dir_(GetApexDataDalvikCacheDirectory(InstructionSet::kNone)) { in OdrConfig() 111 std::vector<InstructionSet> GetBootClasspathIsas() const { in GetBootClasspathIsas() 124 InstructionSet GetSystemServerIsa() const { in GetSystemServerIsa() 201 void SetIsa(const InstructionSet isa) { isa_ = isa; } in SetIsa() 243 std::pair<InstructionSet, InstructionSet> GetPotentialInstructionSets() const { in GetPotentialInstructionSets() 245 case art::InstructionSet::kArm: in GetPotentialInstructionSets() 246 case art::InstructionSet::kArm64: in GetPotentialInstructionSets() 247 return std::make_pair(art::InstructionSet::kArm, art::InstructionSet::kArm64); in GetPotentialInstructionSets() [all …]
|
/art/disassembler/ |
D | disassembler.cc | 45 Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerOptions* options) { in Create() 48 case InstructionSet::kArm: in Create() 49 case InstructionSet::kThumb2: in Create() 53 case InstructionSet::kArm64: in Create() 57 case InstructionSet::kX86: in Create() 61 case InstructionSet::kX86_64: in Create() 79 Disassembler* create_disassembler(InstructionSet instruction_set, DisassemblerOptions* options) { in create_disassembler()
|
/art/compiler/utils/ |
D | jni_macro_assembler.cc | 45 InstructionSet instruction_set, in Create() 52 case InstructionSet::kArm: in Create() 53 case InstructionSet::kThumb2: in Create() 57 case InstructionSet::kX86: in Create() 71 InstructionSet instruction_set, in Create() 78 case InstructionSet::kArm64: in Create() 82 case InstructionSet::kX86_64: in Create()
|
/art/runtime/ |
D | prebuilt_tools_test.cc | 30 static void CheckToolsExist(InstructionSet isa) { in CheckToolsExist() 40 CheckToolsExist(InstructionSet::kX86); in TEST_F() 41 CheckToolsExist(InstructionSet::kX86_64); in TEST_F() 45 CheckToolsExist(InstructionSet::kThumb2); in TEST_F() 46 CheckToolsExist(InstructionSet::kArm64); in TEST_F()
|
D | nterp_helpers.cc | 90 static constexpr size_t NterpGetFrameEntrySize(InstructionSet isa) { in NterpGetFrameEntrySize() 95 case InstructionSet::kX86: in NterpGetFrameEntrySize() 101 case InstructionSet::kX86_64: in NterpGetFrameEntrySize() 106 case InstructionSet::kArm: in NterpGetFrameEntrySize() 107 case InstructionSet::kThumb2: in NterpGetFrameEntrySize() 111 case InstructionSet::kArm64: in NterpGetFrameEntrySize() 123 static uint16_t GetNumberOfOutRegs(ArtMethod* method, InstructionSet isa) in GetNumberOfOutRegs() 128 case InstructionSet::kX86: { in GetNumberOfOutRegs() 139 size_t NterpGetFrameSize(ArtMethod* method, InstructionSet isa) { in NterpGetFrameSize() 208 bool CanMethodUseNterp(ArtMethod* method, InstructionSet isa) { in CanMethodUseNterp()
|
D | oat_file_assistant.h | 114 const InstructionSet isa, 123 const InstructionSet isa, 190 InstructionSet isa, 246 InstructionSet isa, 257 InstructionSet isa, 266 InstructionSet isa, 424 const InstructionSet isa_ = InstructionSet::kNone;
|
/art/libartbase/base/ |
D | file_utils_test.cc | 71 GetSystemImageFilename("/system/framework/boot.art", InstructionSet::kArm).c_str()); in TEST_F() 195 GetApexDataOatFilename("/product/javalib/beep.jar", InstructionSet::kArm)); in TEST_F() 198 EXPECT_EQ(std::string {}, GetApexDataOatFilename(art_apex_jar.c_str(), InstructionSet::kArm)); in TEST_F() 202 EXPECT_EQ(std::string {}, GetApexDataOatFilename(i18n_jar, InstructionSet::kArm)); in TEST_F() 206 GetApexDataOatFilename("/system/framework/lace.jar", InstructionSet::kX86)); in TEST_F() 214 GetApexDataOdexFilename("/data/some/code.dex", InstructionSet::kArm)); in TEST_F() 219 GetApexDataOdexFilename(art_apex_jar.c_str(), InstructionSet::kArm)); in TEST_F() 225 GetApexDataOdexFilename(i18n_jar.c_str(), InstructionSet::kArm)); in TEST_F() 230 GetApexDataOdexFilename("/system/framework/cookie.jar", InstructionSet::kX86)); in TEST_F() 247 const InstructionSet isa = InstructionSet::kArm64; in TEST_F() [all …]
|
/art/runtime/arch/arm64/ |
D | instruction_set_features_arm64_test.cc | 27 InstructionSetFeatures::FromVariant(InstructionSet::kArm64, "default", &error_msg)); in TEST() 29 EXPECT_EQ(arm64_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 35 InstructionSetFeatures::FromVariant(InstructionSet::kArm64, "cortex-a57", &error_msg)); in TEST() 37 EXPECT_EQ(cortex_a57_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 45 InstructionSetFeatures::FromVariant(InstructionSet::kArm64, "cortex-a73", &error_msg)); in TEST() 47 EXPECT_EQ(cortex_a73_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 59 InstructionSetFeatures::FromVariant(InstructionSet::kArm64, "cortex-a35", &error_msg)); in TEST() 61 EXPECT_EQ(cortex_a35_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 68 InstructionSetFeatures::FromVariant(InstructionSet::kArm64, "kryo", &error_msg)); in TEST() 70 EXPECT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() [all …]
|
/art/compiler/jni/quick/ |
D | calling_convention.cc | 49 InstructionSet instruction_set) { in Create() 52 case InstructionSet::kArm: in Create() 53 case InstructionSet::kThumb2: in Create() 59 case InstructionSet::kArm64: in Create() 65 case InstructionSet::kX86: in Create() 71 case InstructionSet::kX86_64: in Create() 140 InstructionSet instruction_set) { in Create() 143 case InstructionSet::kArm: in Create() 144 case InstructionSet::kThumb2: in Create() 150 case InstructionSet::kArm64: in Create() [all …]
|
/art/compiler/debug/ |
D | elf_debug_loc_writer.h | 34 static Reg GetDwarfCoreReg(InstructionSet isa, int machine_reg) { in GetDwarfCoreReg() 36 case InstructionSet::kArm: in GetDwarfCoreReg() 37 case InstructionSet::kThumb2: in GetDwarfCoreReg() 39 case InstructionSet::kArm64: in GetDwarfCoreReg() 41 case InstructionSet::kX86: in GetDwarfCoreReg() 43 case InstructionSet::kX86_64: in GetDwarfCoreReg() 45 case InstructionSet::kNone: in GetDwarfCoreReg() 51 static Reg GetDwarfFpReg(InstructionSet isa, int machine_reg) { in GetDwarfFpReg() 53 case InstructionSet::kArm: in GetDwarfFpReg() 54 case InstructionSet::kThumb2: in GetDwarfFpReg() [all …]
|
/art/runtime/entrypoints/quick/ |
D | callee_save_frame.h | 71 template <InstructionSet> 76 struct CSFSelector<InstructionSet::kArm> { using type = arm::ArmCalleeSaveFrame; }; 78 struct CSFSelector<InstructionSet::kArm64> { using type = arm64::Arm64CalleeSaveFrame; }; 80 struct CSFSelector<InstructionSet::kX86> { using type = x86::X86CalleeSaveFrame; }; 82 struct CSFSelector<InstructionSet::kX86_64> { using type = x86_64::X86_64CalleeSaveFrame; };
|
/art/test/dexpreopt/ |
D | dexpreopt_test.cc | 62 android::base::Result<std::vector<std::pair<std::string, InstructionSet>>> GetZygoteNamesAndIsas() { in GetZygoteNamesAndIsas() 63 std::vector<std::pair<std::string, InstructionSet>> names_and_isas; in GetZygoteNamesAndIsas() 72 case InstructionSet::kArm: in GetZygoteNamesAndIsas() 73 case InstructionSet::kArm64: in GetZygoteNamesAndIsas() 75 names_and_isas.push_back(std::make_pair(kZygote32, InstructionSet::kArm)); in GetZygoteNamesAndIsas() 78 names_and_isas.push_back(std::make_pair(kZygote64, InstructionSet::kArm64)); in GetZygoteNamesAndIsas() 81 case InstructionSet::kX86: in GetZygoteNamesAndIsas() 82 case InstructionSet::kX86_64: in GetZygoteNamesAndIsas() 84 names_and_isas.push_back(std::make_pair(kZygote32, InstructionSet::kX86)); in GetZygoteNamesAndIsas() 87 names_and_isas.push_back(std::make_pair(kZygote64, InstructionSet::kX86_64)); in GetZygoteNamesAndIsas() [all …]
|
/art/simulator/ |
D | code_simulator.cc | 23 CodeSimulator* CodeSimulator::CreateCodeSimulator(InstructionSet target_isa) { in CreateCodeSimulator() 25 case InstructionSet::kArm64: in CreateCodeSimulator() 32 CodeSimulator* CreateCodeSimulator(InstructionSet target_isa) { in CreateCodeSimulator()
|
/art/runtime/entrypoints/jni/ |
D | jni_entrypoints.cc | 145 case InstructionSet::kArm: in artCriticalNativeFrameSize() 146 case InstructionSet::kThumb2: in artCriticalNativeFrameSize() 148 case InstructionSet::kArm64: in artCriticalNativeFrameSize() 150 case InstructionSet::kX86: in artCriticalNativeFrameSize() 152 case InstructionSet::kX86_64: in artCriticalNativeFrameSize() 181 case InstructionSet::kArm: in artCriticalNativeFrameSize() 182 case InstructionSet::kThumb2: in artCriticalNativeFrameSize() 184 case InstructionSet::kArm64: in artCriticalNativeFrameSize() 186 case InstructionSet::kX86: in artCriticalNativeFrameSize() 188 case InstructionSet::kX86_64: in artCriticalNativeFrameSize()
|
/art/runtime/arch/arm/ |
D | instruction_set_features_arm_test.cc | 27 InstructionSetFeatures::FromVariant(InstructionSet::kArm, "krait", &error_msg)); in TEST() 30 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 39 InstructionSetFeatures::FromVariant(InstructionSet::kArm, "kryo", &error_msg)); in TEST() 42 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 51 InstructionSetFeatures::FromVariant(InstructionSet::kArm, "generic", &error_msg)); in TEST() 64 InstructionSetFeatures::FromVariant(InstructionSet::kArm, "arm6", &error_msg)); in TEST() 72 InstructionSetFeatures::FromVariant(InstructionSet::kArm, "generic", &error_msg)); in TEST() 80 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 92 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm); in TEST()
|
/art/runtime/arch/x86_64/ |
D | instruction_set_features_x86_64_test.cc | 24 const bool is_runtime_isa = kRuntimeISA == InstructionSet::kX86_64; in TEST() 27 InstructionSetFeatures::FromVariant(InstructionSet::kX86_64, "default", &error_msg)); in TEST() 29 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST()
|
/art/dex2oat/linker/ |
D | relative_patcher.cc | 38 InstructionSet instruction_set, in Create() 100 case InstructionSet::kX86: in Create() 104 case InstructionSet::kX86_64: in Create() 108 case InstructionSet::kArm: in Create() 110 case InstructionSet::kThumb2: in Create() 115 case InstructionSet::kArm64: in Create()
|