HomeSort by relevance Sort by last modified time
    Searched defs:instruction_set (Results 1 - 6 of 6) sorted by null

  /art/compiler/jit/
jit_compiler.cc 21 #include "arch/instruction_set.h"
67 const InstructionSet instruction_set = compiler_options_->GetInstructionSet(); local
69 DCHECK_EQ(instruction_set, InstructionSet::kThumb2);
71 DCHECK_EQ(instruction_set, kRuntimeISA);
81 instruction_set, str, &error_msg);
90 instruction_set, "default", &error_msg);
  /art/compiler/jni/quick/
jni_compiler.cc 126 InstructionSet instruction_set = compiler_options.GetInstructionSet(); local
188 instruction_set);
193 &allocator, is_static, is_synchronized, shorty, instruction_set));
214 instruction_set));
218 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features);
316 (instruction_set != InstructionSet::kMips) && (instruction_set != InstructionSet::kMips64);
498 ArtMethod::EntryPointFromJniOffset(InstructionSetPointerSize(instruction_set));
524 if ((instruction_set == InstructionSet::kMips ||
525 instruction_set == InstructionSet::kMips64) &
    [all...]
  /art/dex2oat/dex/
dex_to_dex_compiler.cc 611 InstructionSet instruction_set = driver_->GetCompilerOptions().GetInstructionSet(); local
612 if (instruction_set == InstructionSet::kThumb2) {
614 instruction_set = InstructionSet::kArm;
618 instruction_set,
  /art/compiler/optimizing/
code_generator.h 20 #include "arch/instruction_set.h"
690 InstructionSet instruction_set = GetInstructionSet(); local
691 return instruction_set == InstructionSet::kX86 || instruction_set == InstructionSet::kX86_64;
    [all...]
optimizing_compiler.cc 449 static bool IsInstructionSetSupported(InstructionSet instruction_set) {
450 return instruction_set == InstructionSet::kArm
451 || instruction_set == InstructionSet::kArm64
452 || instruction_set == InstructionSet::kThumb2
453 || instruction_set == InstructionSet::kMips
454 || instruction_set == InstructionSet::kMips64
455 || instruction_set == InstructionSet::kX86
456 || instruction_set == InstructionSet::kX86_64;
788 InstructionSet instruction_set = compiler_options.GetInstructionSet(); local
795 DCHECK_NE(instruction_set, InstructionSet::kArm)
951 InstructionSet instruction_set = compiler_options.GetInstructionSet(); local
    [all...]
  /art/dex2oat/driver/
compiler_driver.cc 2050 InstructionSet instruction_set = variable
    [all...]

Completed in 64 milliseconds