Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/tools/driver/
H A Dcc1as_main.cpp141 std::string RelocationModel; member
298 Opts.RelocationModel = in CreateFromArgs()
397 if (Opts.RelocationModel == "static") { in ExecuteAssemblerImpl()
399 } else if (Opts.RelocationModel == "pic") { in ExecuteAssemblerImpl()
402 assert(Opts.RelocationModel == "dynamic-no-pic" && in ExecuteAssemblerImpl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DCodeGenOptions.cpp19 RelocationModel = llvm::Reloc::PIC_; in CodeGenOptions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DWebAssembly.cpp261 llvm::Reloc::Model RelocationModel; in addClangTargetOptions() local
264 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
266 if (RelocationModel == llvm::Reloc::PIC_) { in addClangTargetOptions()
H A DClang.cpp1898 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1901 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
1905 (RelocationModel == llvm::Reloc::Static && ABIName == "n64"); in AddMIPSTargetArgs()
4708 llvm::Reloc::Model RelocationModel; in ConstructJob() local
4711 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
4713 bool IsROPI = RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
4714 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
4715 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
4716 RelocationModel == llvm::Reloc::ROPI_RWPI; in ConstructJob()
4730 const char *RMName = RelocationModelName(RelocationModel); in ConstructJob()
[all …]
H A DCommonArgs.cpp1374 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
1377 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
1379 if (RelocationModel != llvm::Reloc::Static) in AddAssemblerKPIC()
H A DGnu.cpp693 llvm::Reloc::Model RelocationModel; in ConstructJob() local
697 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
854 if (RelocationModel == llvm::Reloc::Static) in ConstructJob()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.h32 Optional<Reloc::Model> RelocationModel,
/netbsd-src/external/apache2/llvm/dist/llvm/tools/gold/
H A Dgold-plugin.cpp124 static Optional<Reloc::Model> RelocationModel = None; variable
365 RelocationModel = Reloc::PIC_; in onload()
369 RelocationModel = Reloc::PIC_; in onload()
373 RelocationModel = Reloc::Static; in onload()
885 Conf.RelocModel = RelocationModel; in createLTO()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCodeGenOptions.h219 llvm::Reloc::Model RelocationModel; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp899 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1537 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp1014 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td4785 MarshallingInfoEnum<CodeGenOpts<"RelocationModel">, "PIC_">;