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

  /art/compiler/dex/
dex_to_dex_compiler.cc 353 InstructionSet instruction_set = driver->GetInstructionSet(); local
354 if (instruction_set == kThumb2) {
356 instruction_set = kArm;
360 instruction_set,
  /art/compiler/jit/
jit_compiler.cc 19 #include "arch/instruction_set.h"
117 const InstructionSet instruction_set = kRuntimeISA; local
125 instruction_set, str.as_string(), &error_msg));
134 instruction_set, "default", &error_msg));
156 instruction_set,
  /art/compiler/
common_compiler_test.cc 156 const InstructionSet instruction_set = kRuntimeISA; local
160 runtime_->SetInstructionSet(instruction_set);
169 CreateCompilerDriver(compiler_kind_, instruction_set);
  /art/compiler/jni/quick/
jni_compiler.cc 70 InstructionSet instruction_set = driver->GetInstructionSet(); local
72 const bool is_64_bit_target = Is64BitInstructionSet(instruction_set);
79 JniCallingConvention::Create(&arena, is_static, is_synchronized, shorty, instruction_set));
84 &arena, is_static, is_synchronized, shorty, instruction_set));
100 &arena, is_static, is_synchronized, jni_end_shorty, instruction_set));
104 Assembler::Create(&arena, instruction_set, instruction_set_features));
366 InstructionSetPointerSize(instruction_set));
386 if ((instruction_set == kMips || instruction_set == kMips64) &&
492 instruction_set,
    [all...]
  /art/compiler/optimizing/
code_generator.h 20 #include "arch/instruction_set.h"
174 InstructionSet instruction_set,
552 InstructionSet instruction_set = GetInstructionSet(); local
553 return instruction_set == kX86 || instruction_set == kX86_64;
optimizing_compiler.cc 371 static bool IsInstructionSetSupported(InstructionSet instruction_set) {
372 return (instruction_set == kArm && !kArm32QuickCodeUseSoftFloat)
373 || instruction_set == kArm64
374 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
375 || instruction_set == kMips
376 || instruction_set == kMips64
377 || instruction_set == kX86
378 || instruction_set == kX86_64;
383 static bool InstructionSetSupportsReadBarrier(InstructionSet instruction_set) {
384 return instruction_set == kArm6
622 InstructionSet instruction_set = compiler_driver->GetInstructionSet(); local
    [all...]
  /frameworks/base/core/jni/
AndroidRuntime.cpp 809 constexpr const char* instruction_set = "arm"; local
811 constexpr const char* instruction_set = "arm64"; local
813 constexpr const char* instruction_set = "mips"; local
815 constexpr const char* instruction_set = "mips64"; local
817 constexpr const char* instruction_set = "x86"; local
819 constexpr const char* instruction_set = "x86_64"; local
821 constexpr const char* instruction_set = "unknown"; local
    [all...]

Completed in 324 milliseconds