/art/runtime/arch/x86/ |
D | instruction_set_features_x86_test.cc | 28 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 41 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 51 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 61 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST() 78 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 88 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 98 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST() 115 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 125 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86); in TEST() 135 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST() [all …]
|
D | instruction_set_features_x86.cc | 236 if (GetInstructionSet() != other->GetInstructionSet()) { in Equals() 249 if (GetInstructionSet() != other->GetInstructionSet()) { in HasAtLeast()
|
D | instruction_set_features_x86.h | 76 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
|
/art/runtime/arch/arm64/ |
D | instruction_set_features_arm64_test.cc | 29 EXPECT_EQ(arm64_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 37 EXPECT_EQ(cortex_a57_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 47 EXPECT_EQ(cortex_a73_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 61 EXPECT_EQ(cortex_a35_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 70 EXPECT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 80 EXPECT_EQ(cortex_a55_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 91 EXPECT_EQ(cortex_a75_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 111 EXPECT_EQ(cortex_a76_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 140 ASSERT_EQ(a76_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() 156 ASSERT_EQ(generic_features->GetInstructionSet(), InstructionSet::kArm64); in TEST() [all …]
|
D | instruction_set_features_arm64.h | 57 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
|
D | instruction_set_features_arm64.cc | 249 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in Equals() 263 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in HasAtLeast()
|
/art/runtime/arch/ |
D | instruction_set_features.cc | 224 DCHECK_EQ(InstructionSet::kArm, GetInstructionSet()); in AsArmInstructionSetFeatures() 229 DCHECK_EQ(InstructionSet::kArm64, GetInstructionSet()); in AsArm64InstructionSetFeatures() 234 DCHECK(InstructionSet::kX86 == GetInstructionSet() || in AsX86InstructionSetFeatures() 235 InstructionSet::kX86_64 == GetInstructionSet()); in AsX86InstructionSetFeatures() 240 DCHECK_EQ(InstructionSet::kX86_64, GetInstructionSet()); in AsX86_64InstructionSetFeatures() 258 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
|
D | instruction_set_features.h | 101 virtual InstructionSet GetInstructionSet() const = 0;
|
/art/runtime/arch/arm/ |
D | instruction_set_features_arm_test.cc | 30 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 42 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 80 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm); in TEST() 92 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm); in TEST()
|
D | instruction_set_features_arm.h | 54 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
|
D | instruction_set_features_arm.cc | 271 if (InstructionSet::kArm != other->GetInstructionSet()) { in Equals() 281 if (InstructionSet::kArm != other->GetInstructionSet()) { in HasAtLeast()
|
/art/runtime/arch/x86_64/ |
D | instruction_set_features_x86_64_test.cc | 28 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST()
|
D | instruction_set_features_x86_64.h | 62 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
|
/art/compiler/ |
D | compiled_method.cc | 50 return AlignCode(offset, GetInstructionSet()); in AlignCode() 58 return CodeDelta(GetInstructionSet()); in CodeDelta()
|
D | common_compiler_test.cc | 63 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet()); in MakeExecutable() 82 compiled_method->GetInstructionSet()); in MakeExecutable() 126 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet() 128 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 293 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet()))); in GetEntryPointOf() 462 switch (codegen->GetCompilerOptions().GetInstructionSet()) { in RunBaselineOptimizations() 491 switch (codegen->GetCompilerOptions().GetInstructionSet()) { in RunArchOptimizations() 715 codegen->GetInstructionSet(), in Emit() 744 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompile() 804 compiler_options.GetInstructionSet(), in TryCompile() 914 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompileIntrinsic() 932 compiler_options.GetInstructionSet(), in TryCompileIntrinsic() 1110 IsInstructionSetSupported(compiler_options.GetInstructionSet())) { in Compile() 1128 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet())); in CreateJniStackMap() [all …]
|
D | codegen_test.cc | 59 if (CanExecute(test_config.GetInstructionSet())) { in GetTargetConfigs() 84 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCode() 96 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCodeLong() 457 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F() 504 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F() 572 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F() 682 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestComparison()
|
D | codegen_test_utils.h | 55 InstructionSet GetInstructionSet() const { return isa_; } in GetInstructionSet() function 249 InstructionSet target_isa = codegen.GetInstructionSet(); in Run()
|
D | scheduler_test.cc | 60 if (CanExecute(test_config.GetInstructionSet())) { in GetTargetConfigs() 188 HInstructionScheduling scheduling(graph, target_config.GetInstructionSet()); in CompileWithRandomSchedulerAndRun() 191 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in CompileWithRandomSchedulerAndRun()
|
/art/compiler/jni/quick/ |
D | jni_compiler.h | 49 InstructionSet GetInstructionSet() const { return instruction_set_; } in GetInstructionSet() function
|
/art/compiler/jit/ |
D | jit_compiler.cc | 67 const InstructionSet instruction_set = compiler_options_->GetInstructionSet(); in ParseCompilerOptions() 129 InstructionSet isa = compiler_options.GetInstructionSet(); in TypesLoaded()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints_test.cc | 39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet()); in FinalizeSetup()
|
/art/runtime/jit/ |
D | profile_saver_test.cc | 96 Hotness::Flag expected_flag = Is64BitInstructionSet(Runtime::Current()->GetInstructionSet()) in TEST_F()
|
/art/runtime/ |
D | oat.h | 92 InstructionSet GetInstructionSet() const;
|
/art/dex2oat/linker/ |
D | elf_writer_quick.cc | 141 if (Is64BitInstructionSet(compiler_options.GetInstructionSet())) { in CreateElfWriterQuick() 160 builder_(new ElfBuilder<ElfTypes>(compiler_options_.GetInstructionSet(), in ElfWriterQuick()
|