Home
last modified time | relevance | path

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

123

/art/runtime/arch/x86/
Dinstruction_set_features_x86_test.cc28 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST()
40 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST()
49 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86); in TEST()
59 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST()
76 EXPECT_EQ(x86_features->GetInstructionSet(), kX86); in TEST()
85 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86); in TEST()
95 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST()
Dinstruction_set_features_x86.h51 virtual InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
Dinstruction_set_features_x86.cc198 if (GetInstructionSet() != other->GetInstructionSet()) { in Equals()
/art/runtime/arch/
Dinstruction_set_features.cc262 DCHECK_EQ(kArm, GetInstructionSet()); in AsArmInstructionSetFeatures()
267 DCHECK_EQ(kArm64, GetInstructionSet()); in AsArm64InstructionSetFeatures()
272 DCHECK_EQ(kMips, GetInstructionSet()); in AsMipsInstructionSetFeatures()
277 DCHECK_EQ(kMips64, GetInstructionSet()); in AsMips64InstructionSetFeatures()
282 DCHECK(kX86 == GetInstructionSet() || kX86_64 == GetInstructionSet()); in AsX86InstructionSetFeatures()
287 DCHECK_EQ(kX86_64, GetInstructionSet()); in AsX86_64InstructionSetFeatures()
299 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
Dinstruction_set_features.h69 virtual InstructionSet GetInstructionSet() const = 0;
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64_test.cc28 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64); in TEST()
Dinstruction_set_features_x86_64.h61 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
/art/runtime/arch/mips/
Dinstruction_set_features_mips_test.cc28 EXPECT_EQ(mips_features->GetInstructionSet(), kMips); in TEST()
Dinstruction_set_features_mips.h50 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
Dinstruction_set_features_mips.cc163 if (kMips != other->GetInstructionSet()) { in Equals()
/art/runtime/arch/mips64/
Dinstruction_set_features_mips64_test.cc28 EXPECT_EQ(mips64_features->GetInstructionSet(), kMips64); in TEST()
Dinstruction_set_features_mips64.h50 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
Dinstruction_set_features_mips64.cc82 if (kMips64 != other->GetInstructionSet()) { in Equals()
/art/runtime/arch/arm64/
Dinstruction_set_features_arm64_test.cc29 EXPECT_EQ(arm64_features->GetInstructionSet(), kArm64); in TEST()
Dinstruction_set_features_arm64.h50 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
Dinstruction_set_features_arm64.cc107 if (kArm64 != other->GetInstructionSet()) { in Equals()
/art/runtime/arch/arm/
Dinstruction_set_features_arm_test.cc30 ASSERT_EQ(krait_features->GetInstructionSet(), kArm); in TEST()
81 ASSERT_EQ(krait_features->GetInstructionSet(), kArm); in TEST()
Dinstruction_set_features_arm.h50 InstructionSet GetInstructionSet() const OVERRIDE { in GetInstructionSet() function
/art/compiler/optimizing/
Doptimizing_compiler.cc202 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet()))); in GetEntryPointOf()
424 codegen->GetInstructionSet(), in CompileOptimized()
461 codegen->GetInstructionSet(), in CompileBaseline()
488 InstructionSet instruction_set = compiler_driver->GetInstructionSet(); in TryCompile()
533 &arena, dex_file, method_idx, compiler_driver->GetInstructionSet(), in TryCompile()
Dinliner.cc175 compiler_driver_->GetInstructionSet(), in TryBuildAndInline()
197 compiler_driver_->GetInstructionSet())) { in TryBuildAndInline()
Dcode_generator.h148 + InstructionSetPointerSize(GetInstructionSet()) // Art method in GetStackSlotOfParameter()
195 virtual InstructionSet GetInstructionSet() const = 0;
400 InstructionSet instruction_set = GetInstructionSet(); in CallPushesPC()
/art/compiler/
Delf_writer_quick.cc146 const InstructionSet isa = compiler_driver_->GetInstructionSet(); in Write()
286 if (it->compiled_method_->GetInstructionSet() == kThumb2) { in WriteDebugSymbols()
Doat_writer.cc110 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); in OatWriter()
540 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in NewQuickCodeOffset()
597 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) { in InitImageMethodVisitor()
717 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in VisitMethod()
810 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet()); in GetTargetOffset()
988 oat_header_ = OatHeader::Create(compiler_driver_->GetInstructionSet(), in InitOatHeader()
1077 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); in InitOatCode()
1328 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); in WriteCode()
/art/runtime/
Doat.h94 InstructionSet GetInstructionSet() const;
Dsignal_catcher.cc140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()

123