Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DCodeGenOptions.cpp19 RelocationModel = llvm::Reloc::PIC_; in CodeGenOptions()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.h32 Optional<Reloc::Model> RelocationModel,
/freebsd-13.1/contrib/llvm-project/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.cpp1905 llvm::Reloc::Model RelocationModel; in AddMIPSTargetArgs() local
1908 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
4725 llvm::Reloc::Model RelocationModel; in ConstructJob() local
4730 bool IsROPI = RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
4732 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
4759 if (RelocationModel == llvm::Reloc::ROPI || in ConstructJob()
4760 RelocationModel == llvm::Reloc::ROPI_RWPI) in ConstructJob()
4762 if (RelocationModel == llvm::Reloc::RWPI || in ConstructJob()
4763 RelocationModel == llvm::Reloc::ROPI_RWPI) in ConstructJob()
7493 llvm::Reloc::Model RelocationModel; in ConstructJob() local
[all …]
H A DCommonArgs.cpp1372 llvm::Reloc::Model RelocationModel; in AddAssemblerKPIC() local
1375 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
1377 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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h219 llvm::Reloc::Model RelocationModel; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp905 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel; in CreateTargetMachine()
1544 Conf.RelocModel = CGOpts.RelocationModel; in runThinLTOBackend()
H A DCodeGenModule.cpp1044 llvm::Reloc::Model RM = CGOpts.RelocationModel; in shouldAssumeDSOLocal()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4840 MarshallingInfoEnum<CodeGenOpts<"RelocationModel">, "PIC_">;