Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DFlang.cpp65 llvm::Reloc::Model RelocationModel; in addPicOptions() local
68 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions()
71 if (auto *RMName = RelocationModelName(RelocationModel)) { in addPicOptions()
H A DWebAssembly.cpp265 llvm::Reloc::Model RelocationModel; in addClangTargetOptions() local
268 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
270 if (RelocationModel == llvm::Reloc::PIC_) { in addClangTargetOptions()
H A DClang.cpp1920 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1923 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
1927 (RelocationModel == llvm::Reloc::Static && ABIName == "n64"); in AddMIPSTargetArgs()
5045 llvm::Reloc::Model RelocationModel; in ConstructJob() local
5048 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
5069 bool IsROPI = RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
5070 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
5071 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
5072 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
5086 const char *RMName = RelocationModelName(RelocationModel); in ConstructJob()
[all …]
H A DCommonArgs.cpp1651 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
1654 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
1656 if (RelocationModel != llvm::Reloc::Static) in AddAssemblerKPIC()
H A DGnu.cpp716 llvm::Reloc::Model RelocationModel; in ConstructJob() local
720 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
875 if (RelocationModel == llvm::Reloc::Static) in ConstructJob()
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DCodeGenOptions.cpp19 RelocationModel = llvm::Reloc::PIC_; in CodeGenOptions()
/openbsd-src/gnu/llvm/clang/tools/driver/
H A Dcc1as_main.cpp146 std::string RelocationModel; member
327 Opts.RelocationModel = in CreateFromArgs()
439 if (Opts.RelocationModel == "static") { in ExecuteAssemblerImpl()
441 } else if (Opts.RelocationModel == "pic") { in ExecuteAssemblerImpl()
444 assert(Opts.RelocationModel == "dynamic-no-pic" && in ExecuteAssemblerImpl()
/openbsd-src/gnu/llvm/llvm/tools/gold/
H A Dgold-plugin.cpp124 static std::optional<Reloc::Model> RelocationModel; variable
367 RelocationModel = Reloc::PIC_; in onload()
371 RelocationModel = Reloc::PIC_; in onload()
375 RelocationModel = Reloc::Static; in onload()
883 Conf.RelocModel = RelocationModel; in createLTO()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.h254 llvm::Reloc::Model RelocationModel; variable
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DBackendUtil.cpp566 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1151 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp1189 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td5396 MarshallingInfoEnum<CodeGenOpts<"RelocationModel">, "PIC_">;