Home
last modified time | relevance | path

Searched refs:GetInstructionSet (Results 1 – 25 of 67) sorted by relevance

123

/art/runtime/arch/x86/
Dinstruction_set_features_x86_test.cc28 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 …]
Dinstruction_set_features_x86.cc236 if (GetInstructionSet() != other->GetInstructionSet()) { in Equals()
249 if (GetInstructionSet() != other->GetInstructionSet()) { in HasAtLeast()
Dinstruction_set_features_x86.h56 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc29 EXPECT_EQ(arm64_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
37 EXPECT_EQ(cortex_a57_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
46 EXPECT_EQ(cortex_a73_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
58 EXPECT_EQ(cortex_a35_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
66 EXPECT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
76 EXPECT_EQ(cortex_a55_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
87 EXPECT_EQ(cortex_a75_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
106 EXPECT_EQ(cortex_a76_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
134 ASSERT_EQ(a76_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
149 ASSERT_EQ(generic_features->GetInstructionSet(), InstructionSet::kArm64); in TEST()
[all …]
Dinstruction_set_features_arm64.h57 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
Dinstruction_set_features_arm64.cc233 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in Equals()
246 if (InstructionSet::kArm64 != other->GetInstructionSet()) { in HasAtLeast()
/art/runtime/arch/
Dinstruction_set_features.cc253 DCHECK_EQ(InstructionSet::kArm, GetInstructionSet()); in AsArmInstructionSetFeatures()
258 DCHECK_EQ(InstructionSet::kArm64, GetInstructionSet()); in AsArm64InstructionSetFeatures()
263 DCHECK_EQ(InstructionSet::kMips, GetInstructionSet()); in AsMipsInstructionSetFeatures()
268 DCHECK_EQ(InstructionSet::kMips64, GetInstructionSet()); in AsMips64InstructionSetFeatures()
273 DCHECK(InstructionSet::kX86 == GetInstructionSet() || in AsX86InstructionSetFeatures()
274 InstructionSet::kX86_64 == GetInstructionSet()); in AsX86InstructionSetFeatures()
279 DCHECK_EQ(InstructionSet::kX86_64, GetInstructionSet()); in AsX86_64InstructionSetFeatures()
297 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
Dinstruction_set_features.h103 virtual InstructionSet GetInstructionSet() const = 0;
/art/runtime/arch/mips/
Dinstruction_set_features_mips_test.cc28 EXPECT_EQ(mips_features->GetInstructionSet(), InstructionSet::kMips); in TEST()
39 EXPECT_EQ(mips32r1_features->GetInstructionSet(), InstructionSet::kMips); in TEST()
55 EXPECT_EQ(mips32r2_features->GetInstructionSet(), InstructionSet::kMips); in TEST()
76 EXPECT_EQ(mips32r5_features->GetInstructionSet(), InstructionSet::kMips); in TEST()
102 EXPECT_EQ(mips32r6_features->GetInstructionSet(), InstructionSet::kMips); in TEST()
Dinstruction_set_features_mips.h55 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
/art/runtime/arch/mips64/
Dinstruction_set_features_mips64_test.cc28 EXPECT_EQ(mips64_features->GetInstructionSet(), InstructionSet::kMips64); in TEST()
39 EXPECT_EQ(mips64r6_features->GetInstructionSet(), InstructionSet::kMips64); in TEST()
Dinstruction_set_features_mips64.h53 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
Dinstruction_set_features_mips64.cc92 if (InstructionSet::kMips64 != other->GetInstructionSet()) { in Equals()
/art/runtime/arch/arm/
Dinstruction_set_features_arm_test.cc30 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()
Dinstruction_set_features_arm.h54 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
Dinstruction_set_features_arm.cc271 if (InstructionSet::kArm != other->GetInstructionSet()) { in Equals()
281 if (InstructionSet::kArm != other->GetInstructionSet()) { in HasAtLeast()
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64_test.cc28 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64); in TEST()
Dinstruction_set_features_x86_64.h62 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
/art/compiler/
Dcommon_compiler_test.cc63 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet()); in MakeExecutable()
82 compiled_method->GetInstructionSet()); in MakeExecutable()
124 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
126 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
Dcompiled_method.cc50 return AlignCode(offset, GetInstructionSet()); in AlignCode()
58 return CodeDelta(GetInstructionSet()); in CodeDelta()
/art/compiler/optimizing/
Doptimizing_compiler.cc293 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet()))); in GetEntryPointOf()
464 switch (codegen->GetCompilerOptions().GetInstructionSet()) { in RunBaselineOptimizations()
506 switch (codegen->GetCompilerOptions().GetInstructionSet()) { in RunArchOptimizations()
760 codegen->GetInstructionSet(), in Emit()
788 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompile()
848 compiler_options.GetInstructionSet(), in TryCompile()
951 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompileIntrinsic()
969 compiler_options.GetInstructionSet(), in TryCompileIntrinsic()
1146 IsInstructionSetSupported(compiler_options.GetInstructionSet())) { in Compile()
1164 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet())); in CreateJniStackMap()
[all …]
Dcodegen_test.cc67 if (CanExecute(test_config.GetInstructionSet())) { in GetTargetConfigs()
92 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCode()
104 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestCodeLong()
465 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F()
512 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F()
580 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TEST_F()
690 OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default"); in TestComparison()
/art/compiler/jni/quick/
Djni_compiler.h49 InstructionSet GetInstructionSet() const { return instruction_set_; } in GetInstructionSet() function
/art/compiler/jit/
Djit_compiler.cc67 const InstructionSet instruction_set = compiler_options_->GetInstructionSet(); in ParseCompilerOptions()
154 compiler_options.GetInstructionSet(), in jit_types_loaded()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints_test.cc39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet()); in FinalizeSetup()

123