HomeSort by relevance Sort by last modified time
    Searched refs:GetInstructionSet (Results 1 - 25 of 62) sorted by null

1 2 3

  /art/runtime/arch/arm64/
instruction_set_features_arm64_test.cc 29 EXPECT_EQ(arm64_features->GetInstructionSet(), kArm64);
instruction_set_features_arm64.h 50 InstructionSet GetInstructionSet() const OVERRIDE {
instruction_set_features_arm64.cc 107 if (kArm64 != other->GetInstructionSet()) {
  /art/runtime/arch/mips/
instruction_set_features_mips_test.cc 28 EXPECT_EQ(mips_features->GetInstructionSet(), kMips);
instruction_set_features_mips.h 50 InstructionSet GetInstructionSet() const OVERRIDE {
instruction_set_features_mips.cc 163 if (kMips != other->GetInstructionSet()) {
  /art/runtime/arch/mips64/
instruction_set_features_mips64_test.cc 28 EXPECT_EQ(mips64_features->GetInstructionSet(), kMips64);
instruction_set_features_mips64.h 50 InstructionSet GetInstructionSet() const OVERRIDE {
instruction_set_features_mips64.cc 82 if (kMips64 != other->GetInstructionSet()) {
  /art/runtime/arch/x86_64/
instruction_set_features_x86_64_test.cc 28 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
instruction_set_features_x86_64.h 61 InstructionSet GetInstructionSet() const OVERRIDE {
  /art/runtime/arch/x86/
instruction_set_features_x86_test.cc 28 EXPECT_EQ(x86_features->GetInstructionSet(), kX86);
41 EXPECT_EQ(x86_features->GetInstructionSet(), kX86);
51 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86);
61 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
78 EXPECT_EQ(x86_features->GetInstructionSet(), kX86);
88 EXPECT_EQ(x86_default_features->GetInstructionSet(), kX86);
98 EXPECT_EQ(x86_64_features->GetInstructionSet(), kX86_64);
instruction_set_features_x86.h 51 virtual InstructionSet GetInstructionSet() const OVERRIDE {
instruction_set_features_x86.cc 238 if (GetInstructionSet() != other->GetInstructionSet()) {
  /art/runtime/arch/
instruction_set_features.cc 262 DCHECK_EQ(kArm, GetInstructionSet());
267 DCHECK_EQ(kArm64, GetInstructionSet());
272 DCHECK_EQ(kMips, GetInstructionSet());
277 DCHECK_EQ(kMips64, GetInstructionSet());
282 DCHECK(kX86 == GetInstructionSet() || kX86_64 == GetInstructionSet());
287 DCHECK_EQ(kX86_64, GetInstructionSet());
299 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString();
instruction_set_features.h 69 virtual InstructionSet GetInstructionSet() const = 0;
  /art/runtime/arch/arm/
instruction_set_features_arm.h 50 InstructionSet GetInstructionSet() const OVERRIDE {
instruction_set_features_arm_test.cc 30 ASSERT_EQ(krait_features->GetInstructionSet(), kArm);
81 ASSERT_EQ(krait_features->GetInstructionSet(), kArm);
  /art/compiler/
common_compiler_test.h 65 InstructionSet GetInstructionSet() const;
128 switch (GetInstructionSet()) { \
common_compiler_test.cc 70 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet());
88 compiled_method->GetInstructionSet());
216 InstructionSet CommonCompilerTest::GetInstructionSet() const {
218 return compiler_driver_->GetInstructionSet();
  /art/compiler/optimizing/
optimizing_compiler.cc 282 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
563 RunArchOptimizations(driver->GetInstructionSet(), graph, codegen, stats, pass_observer);
592 codegen->GetInstructionSet(),
622 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
678 compiler_driver->GetInstructionSet(),
839 IsInstructionSetSupported(compiler_driver->GetInstructionSet()) &&
841 InstructionSetSupportsReadBarrier(compiler_driver->GetInstructionSet()))) {
    [all...]
sharpening.cc 114 DexCacheArraysLayout layout(GetInstructionSetPointerSize(codegen_->GetInstructionSet()),
244 size_t pointer_size = InstructionSetPointerSize(codegen_->GetInstructionSet());
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 38 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet());
  /art/runtime/
oat.h 98 InstructionSet GetInstructionSet() const;
signal_catcher.cc 140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n";

Completed in 662 milliseconds

1 2 3