Home
last modified time | relevance | path

Searched refs:InstructionSet (Results 101 – 125 of 166) sorted by relevance

1234567

/art/libartbase/base/
Dcommon_art_test.h250 static std::string GetAndroidTool(const char* name, InstructionSet isa = InstructionSet::kX86_64);
Dfile_utils_test.cc58 GetSystemImageFilename("/system/framework/boot.art", InstructionSet::kArm).c_str()); in TEST_F()
Dfile_utils.cc364 static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) { in InsertIsaDirectory()
373 std::string GetSystemImageFilename(const char* location, const InstructionSet isa) { in GetSystemImageFilename()
/art/runtime/
Druntime.cc232 instruction_set_(InstructionSet::kNone), in Runtime()
1485 case InstructionSet::kArm: in Init()
1486 case InstructionSet::kThumb2: in Init()
1487 case InstructionSet::kX86: in Init()
1488 case InstructionSet::kArm64: in Init()
1489 case InstructionSet::kX86_64: in Init()
2316 DCHECK_NE(instruction_set_, InstructionSet::kNone); in CreateCalleeSaveMethod()
2371 void Runtime::SetInstructionSet(InstructionSet instruction_set) { in SetInstructionSet()
2374 case InstructionSet::kThumb2: in SetInstructionSet()
2376 instruction_set_ = InstructionSet::kArm; in SetInstructionSet()
[all …]
Dclass_loader_context.h84 bool OpenDexFiles(InstructionSet isa,
Druntime.h92 enum class InstructionSet; variable
464 InstructionSet GetInstructionSet() const { in GetInstructionSet()
468 void SetInstructionSet(InstructionSet instruction_set);
1047 InstructionSet instruction_set_;
Delf_file.cc1078 static InstructionSet GetInstructionSetFromELF(uint16_t e_machine, in GetInstructionSetFromELF()
1082 return InstructionSet::kArm; in GetInstructionSetFromELF()
1084 return InstructionSet::kArm64; in GetInstructionSetFromELF()
1086 return InstructionSet::kX86; in GetInstructionSetFromELF()
1088 return InstructionSet::kX86_64; in GetInstructionSetFromELF()
1090 return InstructionSet::kNone; in GetInstructionSetFromELF()
1102 InstructionSet elf_ISA = GetInstructionSetFromELF(GetHeader().e_machine, GetHeader().e_flags); in Load()
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc410 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
412 if (isa != InstructionSet::kNone && isa != kRuntimeISA) { in ZygoteHooks_nativePostForkChild()
/art/runtime/arch/
Darch_test.cc39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet()); in FinalizeSetup()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc611 InstructionSet instruction_set = driver_->GetCompilerOptions().GetInstructionSet(); in CompileMethod()
612 if (instruction_set == InstructionSet::kThumb2) { in CompileMethod()
614 instruction_set = InstructionSet::kArm; in CompileMethod()
/art/dex2oat/linker/x86_64/
Drelative_patcher_x86_64_test.cc26 X86_64RelativePatcherTest() : RelativePatcherTest(InstructionSet::kX86_64, "default") { } in X86_64RelativePatcherTest()
/art/dex2oat/linker/x86/
Drelative_patcher_x86_test.cc26 X86RelativePatcherTest() : RelativePatcherTest(InstructionSet::kX86, "default") { } in X86RelativePatcherTest()
/art/compiler/optimizing/
Dscheduler.cc818 case InstructionSet::kArm64: { in Run()
826 case InstructionSet::kThumb2: in Run()
827 case InstructionSet::kArm: { in Run()
Dgraph_visualizer.cc112 using create_disasm_prototype = Disassembler*(InstructionSet, DisassemblerOptions*);
115 HGraphVisualizerDisassembler(InstructionSet instruction_set, in HGraphVisualizerDisassembler()
162 if (instruction_set_ == InstructionSet::kThumb2) { in Disassemble()
171 InstructionSet instruction_set_;
Dcode_generator.h276 virtual InstructionSet GetInstructionSet() const = 0;
750 InstructionSet instruction_set = GetInstructionSet(); in CallPushesPC()
751 return instruction_set == InstructionSet::kX86 || instruction_set == InstructionSet::kX86_64; in CallPushesPC()
Dloop_optimization.cc491 : InstructionSet::kNone, in HLoopOptimization()
1543 InstructionSet isa = compiler_options_->GetInstructionSet(); in GetVectorSizeInBytes()
1545 DCHECK_EQ(simd_register_size_, (isa == InstructionSet::kArm || isa == InstructionSet::kThumb2) in GetVectorSizeInBytes()
1556 case InstructionSet::kArm: in TrySetVectorType()
1557 case InstructionSet::kThumb2: in TrySetVectorType()
1577 case InstructionSet::kArm64: in TrySetVectorType()
1605 case InstructionSet::kX86: in TrySetVectorType()
1606 case InstructionSet::kX86_64: in TrySetVectorType()
Dcode_generator.cc143 InstructionSet instruction_set) { in Create()
197 CodeGenerationData(ScopedArenaAllocator&& allocator, InstructionSet instruction_set) in CodeGenerationData()
984 case InstructionSet::kArm: in Create()
985 case InstructionSet::kThumb2: { in Create()
991 case InstructionSet::kArm64: { in Create()
997 case InstructionSet::kX86: { in Create()
1003 case InstructionSet::kX86_64: { in Create()
/art/compiler/utils/x86/
Djni_macro_assembler_x86.h180 InstructionSet::kX86> {
/art/compiler/utils/x86_64/
Djni_macro_assembler_x86_64.h200 InstructionSet::kX86_64> {
/art/dex2oat/linker/
Drelative_patcher_test.h41 RelativePatcherTest(InstructionSet instruction_set, const std::string& variant) in RelativePatcherTest()
385 InstructionSet instruction_set_;
/art/dex2oat/linker/arm/
Drelative_patcher_thumb2.cc54 : ArmBaseRelativePatcher(thunk_provider, target_provider, InstructionSet::kThumb2) { in Thumb2RelativePatcher()
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.h236 InstructionSet::kArm> {
/art/dex2oat/
Ddex2oat_options.def64 DEX2OAT_OPTIONS_KEY (InstructionSet, TargetInstructionSet)
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc36 : RelativePatcherTest(InstructionSet::kArm64, variant) { } in Arm64RelativePatcherTest()
161 CompiledCode::AlignCode(gap_end, InstructionSet::kArm64) + MethodCallThunkSize(); in Create2MethodsWithGap()
394 CompiledCode::AlignCode(method1_offset + method1_size, InstructionSet::kArm64); in TestNopsAdrpInsn2AndUseHasThunk()
655 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
783 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
1019 InstructionSet::kArm64); in TEST_F()
/art/runtime/entrypoints/quick/
Dquick_jni_entrypoints.cc249 if (kRuntimeISA == InstructionSet::kX86) { in GenericJniMethodEnd()

1234567