Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFreeBSD.cpp137 const bool IsPIE = in ConstructJob() local
153 if (IsPIE) in ConstructJob()
249 else if (IsPIE) in ConstructJob()
262 else if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
371 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
H A DSolaris.cpp89 const bool IsPIE = getPIE(Args, ToolChain); in ConstructJob() local
103 if (IsPIE) { in ConstructJob()
192 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
274 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
H A DWebAssembly.cpp342 bool IsPIE; in addClangTargetOptions() local
343 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
H A DFlang.cpp188 bool IsPIE; in addPicOptions() local
189 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions()
199 if (IsPIE) in addPicOptions()
H A DGnu.cpp364 bool IsPIE = false; in ConstructJob() local
377 IsPIE = Args.hasFlag(options::OPT_pie, options::OPT_no_pie, in ConstructJob()
379 if (IsPIE) in ConstructJob()
397 else if (IsPIE) in ConstructJob()
432 else if (IsPIE || IsStaticPIE) in ConstructJob()
581 else if (IsPIE || IsStaticPIE) in ConstructJob()
616 bool IsPIE; in ConstructJob() local
622 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
H A DHexagon.cpp290 bool IsPIE = Args.hasArg(options::OPT_pie); in constructHexagonLinkArgs() local
341 if (IsPIE && !IsShared) in constructHexagonLinkArgs()
H A DClang.cpp1859 bool IsPIE; in AddMIPSTargetArgs() local
1860 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
5571 bool IsPIE; in ConstructJob() local
5572 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
5618 if (IsPIE) in ConstructJob()
5650 if (RelocationModel != llvm::Reloc::Static && !IsPIE) { in ConstructJob()
8686 bool IsPIE; in ConstructJob() local
8687 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
H A DCommonArgs.cpp2248 bool IsPIE; in AddAssemblerKPIC() local
2249 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp265 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default; in getTLSModel() local
267 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE; in getTLSModel()