/art/runtime/arch/x86/ |
D | instruction_set_features_x86_test.cc | 28 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST() 41 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST() 51 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86); in TEST() 61 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST() 78 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST() 88 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86); in TEST() 98 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST() 115 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST() 125 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86); in TEST() 135 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST()
|
D | instruction_set_features_x86.cc | 221 if (GetInstructionSet() != other->GetInstructionSet()) { in Equals()
|
D | instruction_set_features_x86.h | 55 virtual InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
/art/runtime/arch/arm64/ |
D | instruction_set_features_arm64_test.cc | 29 EXPECT_EQ(arm64_features->GetInstructionSet(), kArm64); in TEST() 37 EXPECT_EQ(cortex_a57_features->GetInstructionSet(), kArm64); in TEST() 45 EXPECT_EQ(cortex_a73_features->GetInstructionSet(), kArm64); in TEST() 53 EXPECT_EQ(cortex_a35_features->GetInstructionSet(), kArm64); in TEST() 61 EXPECT_EQ(kryo_features->GetInstructionSet(), kArm64); in TEST()
|
D | instruction_set_features_arm64.h | 52 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
D | instruction_set_features_arm64.cc | 101 if (kArm64 != other->GetInstructionSet()) { in Equals()
|
/art/runtime/arch/ |
D | instruction_set_features.cc | 226 DCHECK_EQ(kArm, GetInstructionSet()); in AsArmInstructionSetFeatures() 231 DCHECK_EQ(kArm64, GetInstructionSet()); in AsArm64InstructionSetFeatures() 236 DCHECK_EQ(kMips, GetInstructionSet()); in AsMipsInstructionSetFeatures() 241 DCHECK_EQ(kMips64, GetInstructionSet()); in AsMips64InstructionSetFeatures() 246 DCHECK(kX86 == GetInstructionSet() || kX86_64 == GetInstructionSet()); in AsX86InstructionSetFeatures() 251 DCHECK_EQ(kX86_64, GetInstructionSet()); in AsX86_64InstructionSetFeatures() 263 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
|
D | instruction_set_features.h | 89 virtual InstructionSet GetInstructionSet() const = 0;
|
/art/runtime/arch/mips/ |
D | instruction_set_features_mips_test.cc | 28 EXPECT_EQ(mips_features->GetInstructionSet(), kMips); in TEST() 39 EXPECT_EQ(mips32r1_features->GetInstructionSet(), kMips); in TEST() 55 EXPECT_EQ(mips32r2_features->GetInstructionSet(), kMips); in TEST() 76 EXPECT_EQ(mips32r5_features->GetInstructionSet(), kMips); in TEST() 102 EXPECT_EQ(mips32r6_features->GetInstructionSet(), kMips); in TEST()
|
D | instruction_set_features_mips.h | 54 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
/art/runtime/arch/mips64/ |
D | instruction_set_features_mips64_test.cc | 28 EXPECT_EQ(mips64_features->GetInstructionSet(), kMips64); in TEST() 39 EXPECT_EQ(mips64r6_features->GetInstructionSet(), kMips64); in TEST()
|
D | instruction_set_features_mips64.h | 53 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
D | instruction_set_features_mips64.cc | 92 if (kMips64 != other->GetInstructionSet()) { in Equals()
|
/art/runtime/arch/arm/ |
D | instruction_set_features_arm_test.cc | 30 ASSERT_EQ(krait_features->GetInstructionSet(), kArm); in TEST() 42 ASSERT_EQ(kryo_features->GetInstructionSet(), kArm); in TEST() 94 ASSERT_EQ(krait_features->GetInstructionSet(), kArm); in TEST() 106 ASSERT_EQ(kryo_features->GetInstructionSet(), kArm); in TEST()
|
D | instruction_set_features_arm.h | 54 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
D | instruction_set_features_arm.cc | 268 if (kArm != other->GetInstructionSet()) { in Equals() 278 if (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(), kX86_64); in TEST()
|
D | instruction_set_features_x86_64.h | 62 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
|
/art/compiler/ |
D | common_compiler_test.cc | 77 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet()); in MakeExecutable() 96 compiled_method->GetInstructionSet()); in MakeExecutable() 224 InstructionSet CommonCompilerTest::GetInstructionSet() const { in GetInstructionSet() function in art::CommonCompilerTest 226 return compiler_driver_->GetInstructionSet(); in GetInstructionSet()
|
D | common_compiler_test.h | 64 InstructionSet GetInstructionSet() const;
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 325 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet()))); in GetEntryPointOf() 833 RunArchOptimizations(driver->GetInstructionSet(), graph, codegen, pass_observer); in RunOptimizations() 868 codegen->GetInstructionSet(), in Emit() 899 InstructionSet instruction_set = compiler_driver->GetInstructionSet(); in TryCompile() 942 compiler_driver->GetInstructionSet(), in TryCompile() 1095 IsInstructionSetSupported(compiler_driver->GetInstructionSet())) { in Compile() 1263 info.isa = codegen->GetInstructionSet(); in JitCompile() 1274 GetCompilerDriver()->GetInstructionSet(), in JitCompile()
|
D | codegen_test_utils.h | 70 InstructionSet GetInstructionSet() const { return isa_; } in GetInstructionSet() function 209 InstructionSet target_isa = codegen.GetInstructionSet(); in Run()
|
D | code_generator.h | 202 + static_cast<size_t>(InstructionSetPointerSize(GetInstructionSet())) // Art method in GetStackSlotOfParameter() 253 virtual InstructionSet GetInstructionSet() const = 0; 606 stack_map_stream_(graph->GetArena(), graph->GetInstructionSet()), in CodeGenerator() 648 InstructionSet instruction_set = GetInstructionSet(); in CallPushesPC()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints_test.cc | 39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet()); in FinalizeSetup()
|
/art/runtime/ |
D | oat.h | 101 InstructionSet GetInstructionSet() const;
|