Home
last modified time | relevance | path

Searched refs:RelocationModel (Results 1 – 7 of 7) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/
H A DMCCodeGenInfo.h25 Reloc::Model RelocationModel; variable
40 Reloc::Model getRelocationModel() const { return RelocationModel; } in getRelocationModel()
/minix3/external/bsd/llvm/dist/llvm/lib/MC/
H A DMCCodeGenInfo.cpp20 RelocationModel = RM; in InitMCCodeGenInfo()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCodeGenOptions.cpp20 RelocationModel = "pic"; in CodeGenOptions()
H A DCompilerInvocation.cpp464 Opts.RelocationModel = Args.getLastArgValue(OPT_mrelocation_model, "pic"); in ParseCodeGenArgs()
/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DCodeGenOptions.h137 std::string RelocationModel; variable
/minix3/external/bsd/llvm/dist/llvm/tools/gold/
H A Dgold-plugin.cpp77 static Reloc::Model RelocationModel = Reloc::Default; variable
169 RelocationModel = Reloc::PIC_; in onload()
172 RelocationModel = Reloc::Static; in onload()
734 TripleStr, options::mcpu, Features.getString(), Options, RelocationModel, in codegen()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp445 if (CodeGenOpts.RelocationModel == "static") { in CreateTargetMachine()
447 } else if (CodeGenOpts.RelocationModel == "pic") { in CreateTargetMachine()
450 assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" && in CreateTargetMachine()