Home
last modified time | relevance | path

Searched refs:target_triple (Results 1 – 5 of 5) sorted by relevance

/art/compiler/sea_ir/code_gen/
Dcode_gen_data.cc36 std::string target_triple; in GetElf() local
40 target_triple, target_cpu, target_attr); in GetElf()
44 ::llvm::TargetRegistry::lookupTarget(target_triple, errmsg); in GetElf()
58 target->createTargetMachine(target_triple, target_cpu, target_attr, target_options, in GetElf()
/art/compiler/llvm/
Dllvm_compilation_unit.cc199 std::string target_triple; in MaterializeToRawOStream() local
202 CompilerDriver::InstructionSetToLLVMTarget(GetInstructionSet(), &target_triple, &target_cpu, in MaterializeToRawOStream()
207 ::llvm::TargetRegistry::lookupTarget(target_triple, errmsg); in MaterializeToRawOStream()
220 target->createTargetMachine(target_triple, target_cpu, target_attr, target_options, in MaterializeToRawOStream()
/art/compiler/
Delf_writer_mclinker.cc102 std::string target_triple; in Init() local
106 &target_triple, in Init()
122 linker_config_.reset(new mcld::LinkerConfig(target_triple)); in Init()
/art/compiler/driver/
Dcompiler_driver.cc2230 std::string* target_triple, in InstructionSetToLLVMTarget() argument
2235 *target_triple = "thumb-none-linux-gnueabi"; in InstructionSetToLLVMTarget()
2241 *target_triple = "armv7-none-linux-gnueabi"; in InstructionSetToLLVMTarget()
2249 *target_triple = "i386-pc-linux-gnu"; in InstructionSetToLLVMTarget()
2254 *target_triple = "x86_64-pc-linux-gnu"; in InstructionSetToLLVMTarget()
2259 *target_triple = "mipsel-unknown-linux"; in InstructionSetToLLVMTarget()
Dcompiler_driver.h401 std::string* target_triple,