Home
last modified time | relevance | path

Searched refs:PICLevel (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp605 PICLevel::Level Module::getPICLevel() const { in getPICLevel()
609 return PICLevel::NotPIC; in getPICLevel()
611 return static_cast<PICLevel::Level>( in getPICLevel()
615 void Module::setPICLevel(PICLevel::Level PL) { in setPICLevel()
714 return getPICLevel() == PICLevel::NotPIC; in getDirectAccessExternalData()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGen.h34 namespace PICLevel {
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFlang.cpp160 unsigned PICLevel; in addPicOptions() local
162 std::tie(RelocationModel, PICLevel, IsPIE) = in addPicOptions()
169 if (PICLevel > 0) { in addPicOptions()
171 CmdArgs.push_back(PICLevel == 1 ? "1" : "2"); in addPicOptions()
H A DWebAssembly.cpp315 unsigned PICLevel; in addClangTargetOptions() local
317 std::tie(RelocationModel, PICLevel, IsPIE) = in addClangTargetOptions()
H A DClang.cpp1951 unsigned PICLevel; in AddMIPSTargetArgs() local
1953 std::tie(RelocationModel, PICLevel, IsPIE) = in AddMIPSTargetArgs()
5555 unsigned PICLevel; in ConstructJob() local
5557 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args); in ConstructJob()
5566 if (!PICLevel) in ConstructJob()
5600 if (PICLevel > 0) { in ConstructJob()
5602 CmdArgs.push_back(PICLevel == 1 ? "1" : "2"); in ConstructJob()
5950 (PICLevel == 0)) in ConstructJob()
5952 } else if (PICLevel == 0 && Triple.isLoongArch()) { in ConstructJob()
8626 unsigned PICLevel; in ConstructJob() local
[all …]
H A DCommonArgs.cpp2104 unsigned PICLevel; in AddAssemblerKPIC() local
2106 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); in AddAssemblerKPIC()
H A DGnu.cpp696 unsigned PICLevel; in ConstructJob() local
703 std::tie(RelocationModel, PICLevel, IsPIE) = in ConstructJob()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1378 if (unsigned PICLevel = LangOpts.PICLevel) { in InitializePredefinedMacros() local
1379 Builder.defineMacro("__PIC__", Twine(PICLevel)); in InitializePredefinedMacros()
1380 Builder.defineMacro("__pic__", Twine(PICLevel)); in InitializePredefinedMacros()
1382 Builder.defineMacro("__PIE__", Twine(PICLevel)); in InitializePredefinedMacros()
1383 Builder.defineMacro("__pie__", Twine(PICLevel)); in InitializePredefinedMacros()
H A DASTUnit.cpp547 auto PICLevel = LangOpt.PICLevel; in ReadLanguageOptions() local
552 LangOpt.PICLevel = PICLevel; in ReadLanguageOptions()
H A DCompilerInvocation.cpp1549 if (Opts.DirectAccessExternalData && LangOpts->PICLevel != 0) in GenerateCodeGenArgs()
1551 else if (!Opts.DirectAccessExternalData && LangOpts->PICLevel == 0) in GenerateCodeGenArgs()
1826 LangOpts->PICLevel == 0); in ParseCodeGenArgs()
3550 if (Opts.PICLevel != 0) in GenerateLangArgs()
3551 GenerateArg(Consumer, OPT_pic_level, Twine(Opts.PICLevel)); in GenerateLangArgs()
3846 Opts.PICLevel = getLastArgIntValue(Args, OPT_pic_level, 0, Diags); in ParseLangArgs()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp142 M->getPICLevel() == PICLevel::BigPIC && in GetSymbolRef()
H A DPPCAsmPrinter.cpp736 M->getPICLevel() == PICLevel::BigPIC) in EmitTlsCall()
809 PICLevel::Level PL = M->getPICLevel(); in emitInstruction()
987 M->getPICLevel() == PICLevel::SmallPIC ? "_GLOBAL_OFFSET_TABLE_" in emitInstruction()
1049 if (PL == PICLevel::SmallPIC && !IsAIX) { in emitInstruction()
1946 if (M.getPICLevel() == PICLevel::SmallPIC) in emitStartOfAsmFile()
1973 MF->getFunction().getParent()->getPICLevel() == PICLevel::SmallPIC)) in emitFunctionEntryLabel()
H A DPPCISelDAGToDAG.cpp478 M->getPICLevel() == PICLevel::SmallPIC) { in INITIALIZE_PASS()
5470 Mod->getPICLevel() == PICLevel::SmallPIC) in Select()
H A DPPCISelLowering.cpp3564 PICLevel::Level picLevel = M->getPICLevel(); in LowerGlobalTLSAddressLinux()
3611 else if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux()
3636 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux()
3662 if (picLevel == PICLevel::SmallPIC) in LowerGlobalTLSAddressLinux()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h931 PICLevel::Level getPICLevel() const;
934 void setPICLevel(PICLevel::Level PL);
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp213 M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_; in createTargetMachine()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp605 if (F.getParent()->getPICLevel() == PICLevel::NotPIC) in insertDynamicShadowAtFunctionEntry()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def219 COMPATIBLE_VALUE_LANGOPT(PICLevel , 2, 0, "__PIC__ level")
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2141 PICLevel::Level picLevel = M->getPICLevel(); in makeAddress()
2144 if (picLevel == PICLevel::SmallPIC) { in makeAddress()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp1300 if (uint32_t PLevel = Context.getLangOpts().PICLevel) { in Release()
1302 getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel)); in Release()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7817 MarshallingInfoInt<LangOpts<"PICLevel">>;