Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp173 std::string RelocationModel; member
357 Opts.RelocationModel = in CreateFromArgs()
478 if (Opts.RelocationModel == "static") { in ExecuteAssemblerImpl()
480 } else if (Opts.RelocationModel == "pic") { in ExecuteAssemblerImpl()
483 assert(Opts.RelocationModel == "dynamic-no-pic" && in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFlang.cpp159 llvm::Reloc::Model RelocationModel; in addPicOptions() local
162 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions()
165 if (auto *RMName = RelocationModelName(RelocationModel)) { in addPicOptions()
754 llvm::Reloc::Model RelocationModel = in ConstructJob() local
757 addMCModel(D, Args, Triple, RelocationModel, CmdArgs); in ConstructJob()
H A DWebAssembly.cpp314 llvm::Reloc::Model RelocationModel; in addClangTargetOptions() local
317 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
319 if (RelocationModel == llvm::Reloc::PIC_) { in addClangTargetOptions()
H A DCommonArgs.h228 const llvm::Reloc::Model &RelocationModel,
H A DClang.cpp1950 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1953 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
1957 (RelocationModel == llvm::Reloc::Static && ABIName == "n64"); in AddMIPSTargetArgs()
5554 llvm::Reloc::Model RelocationModel; in ConstructJob() local
5557 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
5578 bool IsROPI = RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
5579 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
5580 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
5581 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
5595 const char *RMName = RelocationModelName(RelocationModel); in ConstructJob()
[all …]
H A DCommonArgs.cpp2103 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
2106 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
2108 if (RelocationModel != llvm::Reloc::Static) in AddAssemblerKPIC()
2845 const llvm::Reloc::Model &RelocationModel, in addMCModel() argument
2855 RelocationModel != llvm::Reloc::Static) in addMCModel()
H A DGnu.cpp695 llvm::Reloc::Model RelocationModel; in ConstructJob() local
703 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
871 if (RelocationModel == llvm::Reloc::Static) in ConstructJob()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h266 llvm::Reloc::Model RelocationModel; variable
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp563 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1225 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp1674 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7054 MarshallingInfoEnum<CodeGenOpts<"RelocationModel">, "PIC_">;