| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | CodeGen.h | 31 namespace PICLevel {
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Module.cpp | 587 PICLevel::Level Module::getPICLevel() const { in getPICLevel() 591 return PICLevel::NotPIC; in getPICLevel() 593 return static_cast<PICLevel::Level>( in getPICLevel() 597 void Module::setPICLevel(PICLevel::Level PL) { in setPICLevel()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 1068 if (unsigned PICLevel = LangOpts.PICLevel) { in InitializePredefinedMacros() local 1069 Builder.defineMacro("__PIC__", Twine(PICLevel)); in InitializePredefinedMacros() 1070 Builder.defineMacro("__pic__", Twine(PICLevel)); in InitializePredefinedMacros() 1072 Builder.defineMacro("__PIE__", Twine(PICLevel)); in InitializePredefinedMacros() 1073 Builder.defineMacro("__pie__", Twine(PICLevel)); in InitializePredefinedMacros()
|
| H A D | CompilerInvocation.cpp | 1337 if (Opts.DirectAccessExternalData && LangOpts->PICLevel != 0) in GenerateCodeGenArgs() 1339 else if (!Opts.DirectAccessExternalData && LangOpts->PICLevel == 0) in GenerateCodeGenArgs() 1610 LangOpts->PICLevel == 0); in ParseCodeGenArgs() 3303 if (Opts.PICLevel != 0) in GenerateLangArgs() 3304 GenerateArg(Args, OPT_pic_level, Twine(Opts.PICLevel), SA); in GenerateLangArgs() 3549 Opts.PICLevel = getLastArgIntValue(Args, OPT_pic_level, 0, Diags); in ParseLangArgs()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| H A D | WebAssembly.cpp | 262 unsigned PICLevel; in addClangTargetOptions() local 264 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
|
| H A D | Clang.cpp | 1899 unsigned PICLevel; in AddMIPSTargetArgs() local 1901 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs() 4709 unsigned PICLevel; in ConstructJob() local 4711 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob() 4735 if (PICLevel > 0) { in ConstructJob() 4737 CmdArgs.push_back(PICLevel == 1 ? "1" : "2"); in ConstructJob() 5053 (PICLevel == 0)) in ConstructJob() 7439 unsigned PICLevel; in ConstructJob() local 7441 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
| H A D | CommonArgs.cpp | 1375 unsigned PICLevel; in AddAssemblerKPIC() local 1377 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
|
| H A D | Gnu.cpp | 694 unsigned PICLevel; in ConstructJob() local 697 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Module.h | 838 PICLevel::Level getPICLevel() const; 841 void setPICLevel(PICLevel::Level PL);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCMCInstLower.cpp | 120 M->getPICLevel() == PICLevel::BigPIC && in GetSymbolRef()
|
| H A D | PPCAsmPrinter.cpp | 590 M->getPICLevel() == PICLevel::BigPIC) in EmitTlsCall() 630 PICLevel::Level PL = M->getPICLevel(); in emitInstruction() 760 M->getPICLevel() == PICLevel::SmallPIC ? "_GLOBAL_OFFSET_TABLE_" in emitInstruction() 822 if (PL == PICLevel::SmallPIC && !IsAIX) { in emitInstruction() 1511 if (M.getPICLevel() == PICLevel::SmallPIC) in emitStartOfAsmFile() 1538 MF->getFunction().getParent()->getPICLevel() == PICLevel::SmallPIC)) in emitFunctionEntryLabel()
|
| H A D | PPCISelDAGToDAG.cpp | 444 M->getPICLevel() == PICLevel::SmallPIC) { in getGlobalBaseReg() 5041 Mod->getPICLevel() == PICLevel::SmallPIC) in Select()
|
| H A D | PPCISelLowering.cpp | 3276 PICLevel::Level picLevel = M->getPICLevel(); in LowerGlobalTLSAddressLinux() 3324 else if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux() 3349 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux() 3375 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemProfiler.cpp | 579 if (F.getParent()->getPICLevel() == PICLevel::NotPIC) in insertDynamicShadowAtFunctionEntry()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| H A D | LTOBackend.cpp | 193 M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_; in createTargetMachine()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | LangOptions.def | 190 COMPATIBLE_VALUE_LANGOPT(PICLevel , 2, 0, "__PIC__ level")
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 1954 PICLevel::Level picLevel = M->getPICLevel(); in makeAddress() 1957 if (picLevel == PICLevel::SmallPIC) { in makeAddress()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 725 if (uint32_t PLevel = Context.getLangOpts().PICLevel) { in Release() 727 getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel)); in Release()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| H A D | Options.td | 5460 MarshallingInfoInt<LangOpts<"PICLevel">>;
|