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

1 2 3

  /art/runtime/arch/x86/
instruction_set_features_x86_test.cc 28 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86);
41 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86);
51 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86);
61 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64);
78 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86);
88 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86);
98 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64);
115 EXPECT_EQ(x86_features->GetInstructionSet(), InstructionSet::kX86);
125 EXPECT_EQ(x86_default_features->GetInstructionSet(), InstructionSet::kX86);
135 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64)
    [all...]
instruction_set_features_x86.cc 236 if (GetInstructionSet() != other->GetInstructionSet()) {
249 if (GetInstructionSet() != other->GetInstructionSet()) {
instruction_set_features_x86.h 56 InstructionSet GetInstructionSet() const override {
  /art/runtime/arch/x86_64/
instruction_set_features_x86_64_test.cc 28 EXPECT_EQ(x86_64_features->GetInstructionSet(), InstructionSet::kX86_64);
instruction_set_features_x86_64.h 62 InstructionSet GetInstructionSet() const override {
  /art/runtime/arch/
instruction_set_features.cc 253 DCHECK_EQ(InstructionSet::kArm, GetInstructionSet());
258 DCHECK_EQ(InstructionSet::kArm64, GetInstructionSet());
263 DCHECK_EQ(InstructionSet::kMips, GetInstructionSet());
268 DCHECK_EQ(InstructionSet::kMips64, GetInstructionSet());
273 DCHECK(InstructionSet::kX86 == GetInstructionSet() ||
274 InstructionSet::kX86_64 == GetInstructionSet());
279 DCHECK_EQ(InstructionSet::kX86_64, GetInstructionSet());
297 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString();
instruction_set_features.h 103 virtual InstructionSet GetInstructionSet() const = 0;
  /art/runtime/arch/mips64/
instruction_set_features_mips64_test.cc 28 EXPECT_EQ(mips64_features->GetInstructionSet(), InstructionSet::kMips64);
39 EXPECT_EQ(mips64r6_features->GetInstructionSet(), InstructionSet::kMips64);
instruction_set_features_mips64.h 53 InstructionSet GetInstructionSet() const override {
instruction_set_features_mips64.cc 92 if (InstructionSet::kMips64 != other->GetInstructionSet()) {
  /art/runtime/arch/arm64/
instruction_set_features_arm64_test.cc 29 EXPECT_EQ(arm64_features->GetInstructionSet(), InstructionSet::kArm64);
37 EXPECT_EQ(cortex_a57_features->GetInstructionSet(), InstructionSet::kArm64);
46 EXPECT_EQ(cortex_a73_features->GetInstructionSet(), InstructionSet::kArm64);
58 EXPECT_EQ(cortex_a35_features->GetInstructionSet(), InstructionSet::kArm64);
66 EXPECT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm64);
76 EXPECT_EQ(cortex_a55_features->GetInstructionSet(), InstructionSet::kArm64);
87 EXPECT_EQ(cortex_a75_features->GetInstructionSet(), InstructionSet::kArm64);
106 EXPECT_EQ(cortex_a76_features->GetInstructionSet(), InstructionSet::kArm64);
134 ASSERT_EQ(a76_features->GetInstructionSet(), InstructionSet::kArm64);
149 ASSERT_EQ(generic_features->GetInstructionSet(), InstructionSet::kArm64)
    [all...]
instruction_set_features_arm64.h 57 InstructionSet GetInstructionSet() const override {
  /art/runtime/arch/mips/
instruction_set_features_mips_test.cc 28 EXPECT_EQ(mips_features->GetInstructionSet(), InstructionSet::kMips);
39 EXPECT_EQ(mips32r1_features->GetInstructionSet(), InstructionSet::kMips);
55 EXPECT_EQ(mips32r2_features->GetInstructionSet(), InstructionSet::kMips);
76 EXPECT_EQ(mips32r5_features->GetInstructionSet(), InstructionSet::kMips);
102 EXPECT_EQ(mips32r6_features->GetInstructionSet(), InstructionSet::kMips);
instruction_set_features_mips.h 55 InstructionSet GetInstructionSet() const override {
  /art/compiler/jni/quick/
jni_compiler.h 49 InstructionSet GetInstructionSet() const { return instruction_set_; }
  /art/runtime/arch/arm/
instruction_set_features_arm.h 54 InstructionSet GetInstructionSet() const override {
instruction_set_features_arm_test.cc 30 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm);
42 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm);
80 ASSERT_EQ(krait_features->GetInstructionSet(), InstructionSet::kArm);
92 ASSERT_EQ(kryo_features->GetInstructionSet(), InstructionSet::kArm);
instruction_set_features_arm.cc 271 if (InstructionSet::kArm != other->GetInstructionSet()) {
281 if (InstructionSet::kArm != other->GetInstructionSet()) {
  /art/compiler/
compiled_method.cc 50 return AlignCode(offset, GetInstructionSet());
58 return CodeDelta(GetInstructionSet());
common_compiler_test.cc 63 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet());
82 compiled_method->GetInstructionSet());
124 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet());
126 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet());
compiled_method.h 47 InstructionSet GetInstructionSet() const {
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet());
  /art/runtime/
oat.h 89 InstructionSet GetInstructionSet() const;
  /art/compiler/optimizing/
optimizing_compiler.cc 293 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet())));
464 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
506 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
760 codegen->GetInstructionSet(),
788 InstructionSet instruction_set = compiler_options.GetInstructionSet();
    [all...]
  /art/compiler/jit/
jit_compiler.cc 67 const InstructionSet instruction_set = compiler_options_->GetInstructionSet();
154 compiler_options.GetInstructionSet(),

Completed in 507 milliseconds

1 2 3