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

  /art/compiler/dex/
compiler_ir.h 61 instruction_set(kNone),
90 InstructionSet instruction_set; member in struct:art::CompilationUnit
  /art/compiler/jni/quick/
jni_compiler.cc 63 InstructionSet instruction_set = compiler.GetInstructionSet(); local
64 if (instruction_set == kThumb2) {
65 instruction_set = kArm;
69 JniCallingConvention::Create(is_static, is_synchronized, shorty, instruction_set));
73 ManagedRuntimeCallingConvention::Create(is_static, is_synchronized, shorty, instruction_set));
83 JniCallingConvention::Create(is_static, is_synchronized, jni_end_shorty, instruction_set));
87 UniquePtr<Assembler> jni_asm(Assembler::Create(instruction_set));
277 if (instruction_set == kX86) {
292 if (instruction_set == kMips && main_jni_conv->GetReturnType() == Primitive::kPrimDouble &&
370 UniquePtr<Disassembler> disassembler(Disassembler::Create(instruction_set));
    [all...]
  /art/compiler/
oat_test.cc 151 InstructionSet instruction_set = kX86; local
156 OatHeader oat_header(instruction_set,
oat_writer.cc 181 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); local
184 offset = CompiledCode::AlignCode(offset, instruction_set); \
553 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); local
557 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
    [all...]
  /art/runtime/
common_test.h 37 #include "instruction_set.h"
318 InstructionSet instruction_set = kNone; local
320 instruction_set = kThumb2;
322 instruction_set = kMips;
324 instruction_set = kX86;
341 runtime_->CreateCalleeSaveMethod(instruction_set, type), type);
345 compiler_driver_.reset(new CompilerDriver(compiler_backend, instruction_set,
  /art/dex2oat/
dex2oat.cc 157 InstructionSet instruction_set,
160 if (!CreateRuntime(options, instruction_set)) {
164 *p_dex2oat = new Dex2Oat(Runtime::Current(), compiler_backend, instruction_set, thread_count);
329 InstructionSet instruction_set,
332 instruction_set_(instruction_set),
338 static bool CreateRuntime(Runtime::Options& options, InstructionSet instruction_set)
352 runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set, type), type);
598 InstructionSet instruction_set = kThumb2; local
600 InstructionSet instruction_set = kX86; local
602 InstructionSet instruction_set = kMips local
    [all...]

Completed in 158 milliseconds