Home
last modified time | relevance | path

Searched refs:GetInstructionSet (Results 1 – 17 of 17) sorted by relevance

/art/compiler/llvm/
Dllvm_compilation_unit.cc117 switch (GetInstructionSet()) { in LlvmCompilationUnit()
142 InstructionSet LlvmCompilationUnit::GetInstructionSet() const { in GetInstructionSet() function in art::llvm::LlvmCompilationUnit
143 return compiler_llvm_->GetInstructionSet(); in GetInstructionSet()
205 …CompilerDriver::InstructionSetToLLVMTarget(GetInstructionSet(), target_triple, target_cpu, target_… in MaterializeToRawOStream()
318 InstructionSet insn_set = GetInstructionSet(); in CheckCodeAlign()
Dcompiler_llvm.h69 InstructionSet GetInstructionSet() const { in GetInstructionSet() function
Dcompiler_llvm.cc156 return new CompiledMethod(*compiler_driver_, compiler_driver_->GetInstructionSet(), in CompileDexMethod()
192 driver.GetInstructionSet()); in ArtInitCompilerContext()
Dllvm_compilation_unit.h60 InstructionSet GetInstructionSet() const;
/art/compiler/sea_ir/
Dfrontend.cc59 std::string llvm_code = llvm_data->GetElf(compiler.GetInstructionSet()); in CompileMethodWithSeaIr()
61 new CompiledMethod(compiler, compiler.GetInstructionSet(), llvm_code, in CompileMethodWithSeaIr()
/art/compiler/dex/
Dfrontend.cc126 cu.instruction_set = compiler.GetInstructionSet(); in CompileMethod()
229 switch (compiler.GetInstructionSet()) { in CompileMethod()
240 LOG(FATAL) << "Unexpected instruction set: " << compiler.GetInstructionSet(); in CompileMethod()
/art/runtime/
Doat.h76 InstructionSet GetInstructionSet() const;
Doat.cc95 InstructionSet OatHeader::GetInstructionSet() const { in GetInstructionSet() function in art::OatHeader
Dcommon_test.h201 compiled_method->GetInstructionSet()); in MakeExecutable()
/art/compiler/
Dcompiled_method.h45 InstructionSet GetInstructionSet() const { in GetInstructionSet() function
Delf_writer_mclinker.cc101 CompilerDriver::InstructionSetToLLVMTarget(compiler_driver_->GetInstructionSet(), in Init()
127 if (compiler_driver_->GetInstructionSet() == kMips) { in Init()
Doat_writer.cc95 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(), in InitOatHeader()
181 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); in InitOatCode()
553 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); in WriteCode()
Delf_writer_quick.cc307 switch (compiler_driver_->GetInstructionSet()) { in Write()
329 LOG(FATAL) << "Unknown instruction set: " << compiler_driver_->GetInstructionSet(); in Write()
/art/oatdump/
Doatdump.cc103 disassembler_(Disassembler::Create(oat_file_.GetOatHeader().GetInstructionSet())) { in OatDumper()
117 os << oat_header.GetInstructionSet() << "\n\n"; in Dump()
168 InstructionSet GetInstructionSet() { in GetInstructionSet() function in art::OatDumper
169 return oat_file_.GetOatHeader().GetInstructionSet(); in GetInstructionSet()
235 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) { in AddOffsets()
886 if (oat_dumper_->GetInstructionSet() == kThumb2) { in GetOatCodeBegin()
/art/compiler/jni/portable/
Djni_compiler.cc254 return new CompiledMethod(*driver_, cunit_->GetInstructionSet(), cunit_->GetElfObject(), in Compile()
/art/compiler/driver/
Dcompiler_driver.h107 InstructionSet GetInstructionSet() const { in GetInstructionSet() function
/art/compiler/jni/quick/
Djni_compiler.cc63 InstructionSet instruction_set = compiler.GetInstructionSet(); in ArtJniCompileMethodInternal()