Searched refs:IsPIE (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | FreeBSD.cpp | 138 const bool IsPIE = in ConstructJob() local 154 if (IsPIE) in ConstructJob() 246 else if (IsPIE) in ConstructJob() 259 else if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob() 377 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
|
H A D | Solaris.cpp | 90 const bool IsPIE = getPIE(Args, ToolChain); in ConstructJob() local 104 if (IsPIE) { in ConstructJob() 193 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob() 278 if (Args.hasArg(options::OPT_shared) || IsPIE) in ConstructJob()
|
H A D | Flang.cpp | 161 bool IsPIE; in addPicOptions() local 162 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions() 172 if (IsPIE) in addPicOptions()
|
H A D | WebAssembly.cpp | 316 bool IsPIE; in addClangTargetOptions() local 317 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
|
H A D | Gnu.cpp | 436 bool IsPIE = false; in ConstructJob() local 449 IsPIE = Args.hasFlag(options::OPT_pie, options::OPT_no_pie, in ConstructJob() 451 if (IsPIE) in ConstructJob() 469 else if (IsPIE) in ConstructJob() 504 else if (IsPIE || IsStaticPIE) in ConstructJob() 662 else if (IsPIE || IsStaticPIE) in ConstructJob() 697 bool IsPIE; in ConstructJob() local 703 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
H A D | Hexagon.cpp | 292 bool IsPIE = Args.hasArg(options::OPT_pie); in constructHexagonLinkArgs() local 342 if (IsPIE && !IsShared) in constructHexagonLinkArgs()
|
H A D | Clang.cpp | 1952 bool IsPIE; in AddMIPSTargetArgs() local 1953 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs() 5556 bool IsPIE; in ConstructJob() local 5557 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob() 5603 if (IsPIE) in ConstructJob() 5635 if (RelocationModel != llvm::Reloc::Static && !IsPIE) { in ConstructJob() 8627 bool IsPIE; in ConstructJob() local 8628 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
H A D | CommonArgs.cpp | 2105 bool IsPIE; in AddAssemblerKPIC() local 2106 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ |
H A D | TargetMachine.cpp | 239 bool IsPIE = GV->getParent()->getPIELevel() != PIELevel::Default; in getTLSModel() local 241 bool IsSharedLibrary = RM == Reloc::PIC_ && !IsPIE; in getTLSModel()
|