Home
last modified time | relevance | path

Searched refs:IsPIE (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFreeBSD.cpp137 const bool IsPIE = in ConstructJob() local
153 if (IsPIE) in ConstructJob()
241 else if (IsPIE) in ConstructJob()
254 else if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
372 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
H A DSolaris.cpp90 const bool IsPIE = getPIE(Args, ToolChain); in ConstructJob() local
104 if (IsPIE) { in ConstructJob()
193 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
279 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
H A DFlang.cpp161 bool IsPIE; in addPicOptions() local
162 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions()
172 if (IsPIE) in addPicOptions()
H A DWebAssembly.cpp314 bool IsPIE; in addClangTargetOptions() local
315 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
H A DGnu.cpp432 bool IsPIE = false; in ConstructJob() local
445 IsPIE = Args.hasFlag(options::OPT_pie, options::OPT_no_pie, in ConstructJob()
447 if (IsPIE) in ConstructJob()
465 else if (IsPIE) in ConstructJob()
500 else if (IsPIE || IsStaticPIE) in ConstructJob()
658 else if (IsPIE || IsStaticPIE) in ConstructJob()
693 bool IsPIE; in ConstructJob() local
699 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
H A DHexagon.cpp293 bool IsPIE = Args.hasArg(options::OPT_pie); in constructHexagonLinkArgs() local
342 if (IsPIE && !IsShared) in constructHexagonLinkArgs()
H A DClang.cpp1872 bool IsPIE; in AddMIPSTargetArgs() local
1873 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
5301 bool IsPIE; in ConstructJob() local
5302 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
5348 if (IsPIE) in ConstructJob()
5380 if (RelocationModel != llvm::Reloc::Static && !IsPIE) { in ConstructJob()
8375 bool IsPIE; in ConstructJob() local
8376 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
H A DCommonArgs.cpp2101 bool IsPIE; in AddAssemblerKPIC() local
2102 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp219 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default; in getTLSModel() local
221 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE; in getTLSModel()