Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DCodeGenOptions.cpp19 RelocationModel = llvm::Reloc::PIC_; in CodeGenOptions()
56 RelocationModel = llvm::Reloc::PIC_; in resetNonModularOptions()
/freebsd/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp151 std::string RelocationModel; member
332 Opts.RelocationModel = in CreateFromArgs()
448 if (Opts.RelocationModel == "static") { in ExecuteAssemblerImpl()
450 } else if (Opts.RelocationModel == "pic") { in ExecuteAssemblerImpl()
453 assert(Opts.RelocationModel == "dynamic-no-pic" && in ExecuteAssemblerImpl()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DWebAssembly.cpp312 llvm::Reloc::Model RelocationModel; in addClangTargetOptions() local
315 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
317 if (RelocationModel == llvm::Reloc::PIC_) { in addClangTargetOptions()
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()
H A DClang.cpp1870 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1873 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
5299 llvm::Reloc::Model RelocationModel; in ConstructJob() local
5323 bool IsROPI = RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
5325 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
5354 if (RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
5355 RelocationModel == llvm::Reloc::ROPI_RWPI) in ConstructJob()
5357 if (RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
5358 RelocationModel == llvm::Reloc::ROPI_RWPI) in ConstructJob()
8373 llvm::Reloc::Model RelocationModel; in ConstructJob() local
[all …]
H A DCommonArgs.cpp2099 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
2102 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
2104 if (RelocationModel != llvm::Reloc::Static) in AddAssemblerKPIC()
H A DGnu.cpp691 llvm::Reloc::Model RelocationModel; in ConstructJob() local
699 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
866 if (RelocationModel == llvm::Reloc::Static) in ConstructJob()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h262 llvm::Reloc::Model RelocationModel; variable
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp548 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1212 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp1575 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td6756 MarshallingInfoEnum<CodeGenOpts<"RelocationModel">, "PIC_">;