Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp139 std::string RelocationModel; member
285 Opts.RelocationModel = Args.getLastArgValue(OPT_mrelocation_model, "pic"); in CreateFromArgs()
376 if (Opts.RelocationModel == "static") { in ExecuteAssembler()
378 } else if (Opts.RelocationModel == "pic") { in ExecuteAssembler()
381 assert(Opts.RelocationModel == "dynamic-no-pic" && in ExecuteAssembler()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DCodeGenOptions.cpp20 RelocationModel = llvm::Reloc::PIC_; in CodeGenOptions()
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.h36 Optional<Reloc::Model> RelocationModel,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.h192 llvm::Reloc::Model RelocationModel; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp1120 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
1123 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
1125 if (RelocationModel != llvm::Reloc::Static) in AddAssemblerKPIC()
H A DClang.cpp1656 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1659 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
1663 (RelocationModel == llvm::Reloc::Static && ABIName == "n64"); in AddMIPSTargetArgs()
3783 llvm::Reloc::Model RelocationModel; in ConstructJob() local
3786 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
3788 const char *RMName = RelocationModelName(RelocationModel); in ConstructJob()
3790 if ((RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
3791 RelocationModel == llvm::Reloc::ROPI_RWPI) && in ConstructJob()
5968 llvm::Reloc::Model RelocationModel; in ConstructJob() local
5971 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
[all …]
H A DGnu.cpp580 llvm::Reloc::Model RelocationModel; in ConstructJob() local
583 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
728 if (RelocationModel == llvm::Reloc::Static) in ConstructJob()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp737 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1227 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp775 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp874 Opts.RelocationModel = getRelocModel(Args, Diags); in ParseCodeGenArgs()