| /freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/ |
| HD | Module.cpp | 504 PICLevel::Level Module::getPICLevel() const { in getPICLevel() 508 return PICLevel::NotPIC; in getPICLevel() 510 return static_cast<PICLevel::Level>( in getPICLevel() 514 void Module::setPICLevel(PICLevel::Level PL) { in setPICLevel()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| HD | CodeGen.h | 31 namespace PICLevel {
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/ |
| HD | InitPreprocessor.cpp | 1001 if (unsigned PICLevel = LangOpts.PICLevel) { in InitializePredefinedMacros() local 1002 Builder.defineMacro("__PIC__", Twine(PICLevel)); in InitializePredefinedMacros() 1003 Builder.defineMacro("__pic__", Twine(PICLevel)); in InitializePredefinedMacros() 1005 Builder.defineMacro("__PIE__", Twine(PICLevel)); in InitializePredefinedMacros() 1006 Builder.defineMacro("__pie__", Twine(PICLevel)); in InitializePredefinedMacros()
|
| HD | CompilerInvocation.cpp | 2901 Opts.PICLevel = getLastArgIntValue(Args, OPT_pic_level, 0, Diags); in ParseLangArgs() 3575 LangOpts.PICLevel = getLastArgIntValue(Args, OPT_pic_level, 0, Diags); in CreateFromArgs()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | Module.h | 810 PICLevel::Level getPICLevel() const; 813 void setPICLevel(PICLevel::Level PL);
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| HD | PPCAsmPrinter.cpp | 506 M->getPICLevel() == PICLevel::BigPIC) in EmitTlsCall() 546 PICLevel::Level PL = M->getPICLevel(); in EmitInstruction() 635 M->getPICLevel() == PICLevel::SmallPIC ? "_GLOBAL_OFFSET_TABLE_" in EmitInstruction() 699 if (PL == PICLevel::SmallPIC && !IsAIX) { in EmitInstruction() 1339 if (M.getPICLevel() == PICLevel::SmallPIC) in EmitStartOfAsmFile() 1366 MF->getFunction().getParent()->getPICLevel() == PICLevel::SmallPIC)) in EmitFunctionEntryLabel()
|
| HD | PPCMCInstLower.cpp | 119 M->getPICLevel() == PICLevel::BigPIC && in GetSymbolRef()
|
| HD | PPCISelDAGToDAG.cpp | 443 M->getPICLevel() == PICLevel::SmallPIC) { in getGlobalBaseReg() 4555 Mod->getPICLevel() == PICLevel::SmallPIC) in Select()
|
| HD | PPCISelLowering.cpp | 2915 PICLevel::Level picLevel = M->getPICLevel(); in LowerGlobalTLSAddress() 2945 else if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddress() 2964 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddress() 2982 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddress()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| HD | CommonArgs.cpp | 1148 unsigned PICLevel; in AddAssemblerKPIC() local 1150 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
|
| HD | Clang.cpp | 1824 unsigned PICLevel; in AddMIPSTargetArgs() local 1826 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs() 4328 unsigned PICLevel; in ConstructJob() local 4330 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob() 4344 if (PICLevel > 0) { in ConstructJob() 4346 CmdArgs.push_back(PICLevel == 1 ? "1" : "2"); in ConstructJob() 6698 unsigned PICLevel; in ConstructJob() local 6700 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
| HD | Gnu.cpp | 649 unsigned PICLevel; in ConstructJob() local 651 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/ |
| HD | LTOBackend.cpp | 143 M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_; in createTargetMachine()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| HD | LangOptions.def | 180 COMPATIBLE_VALUE_LANGOPT(PICLevel , 2, 0, "__PIC__ level")
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| HD | SparcISelLowering.cpp | 1948 PICLevel::Level picLevel = M->getPICLevel(); in makeAddress() 1951 if (picLevel == PICLevel::SmallPIC) { in makeAddress()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CodeGenModule.cpp | 601 if (uint32_t PLevel = Context.getLangOpts().PICLevel) { in Release() 603 getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel)); in Release()
|