Home
last modified time | relevance | path

Searched refs:UnifiedLTO (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/opt/
H A DNewPMDriver.h78 bool UnifiedLTO = false);
H A DNewPMDriver.cpp349 bool UnifiedLTO) { in runPassPipeline() argument
439 PTO.UnifiedLTO = UnifiedLTO; in runPassPipeline()
H A Doptdriver.cpp123 UnifiedLTO("unified-lto", variable
670 if (UnifiedLTO) in optMain()
744 EnableDebugify, VerifyDebugInfoPreserve, UnifiedLTO) in optMain()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp264 bool UnifiedLTO = false; in enableUnifiedLTO() local
267 UnifiedLTO = MD->getZExtValue(); in enableUnifiedLTO()
268 return UnifiedLTO; in enableUnifiedLTO()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1391 bool UnifiedLTO;
1439 bool UnifiedLTO = false)
1441 UnifiedLTO(UnifiedLTO), Saver(Alloc), BlockCount(0) {}
1599 bool hasUnifiedLTO() const { return UnifiedLTO; }
1600 void setUnifiedLTO() { UnifiedLTO = true; }
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h97 bool UnifiedLTO; member
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp204 return CodeGenOpts.UnifiedLTO && in shouldEmitUnifiedLTOModueFlag()
859 PTO.UnifiedLTO = CodeGenOpts.UnifiedLTO; in RunOptimizationPipeline()
1076 if (!TheModule->getModuleFlag("ThinLTO") && !CodeGenOpts.UnifiedLTO) in RunOptimizationPipeline()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp891 bool UnifiedLTO = false; in buildModuleSummaryIndex() local
897 UnifiedLTO = MD->getZExtValue(); in buildModuleSummaryIndex()
898 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit, UnifiedLTO); in buildModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h81 bool UnifiedLTO; variable
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp748 !LTOInfo->UnifiedLTO) in addModule()
754 if (LTOInfo->UnifiedLTO && LTOMode == LTOK_Default) in addModule()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def173 CODEGENOPT(UnifiedLTO, 1, 0) ///< Use the unified LTO pipeline.
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp5098 bool UnifiedLTO = false; in ConstructJob() local
5100 UnifiedLTO = Args.hasFlag(options::OPT_funified_lto, in ConstructJob()
5102 if (UnifiedLTO) in ConstructJob()
5268 (D.getLTOMode() == LTOK_Full) || !UnifiedLTO) in ConstructJob()
7802 (IsPS4 && !UnifiedLTO && (D.getLTOMode() != LTOK_Full))) in ConstructJob()
7805 << ((IsPS4 && !UnifiedLTO) ? "-flto=full" : "-flto"); in ConstructJob()
7815 (!Triple.isPS4() && UnifiedLTO); in ConstructJob()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderPipelines.cpp321 UnifiedLTO = false; in PipelineTuningOptions()
H A DPassBuilder.cpp1521 if (PTO.UnifiedLTO) in parseModulePass()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8459 bool UnifiedLTO = Flags & 0x200; in getEnableSplitLTOUnitAndUnifiedFlag() local
8460 Result = {EnableSplitLTOUnit, UnifiedLTO}; in getEnableSplitLTOUnitAndUnifiedFlag()
8497 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
8509 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2969 CodeGenOpts<"UnifiedLTO">, DefaultFalse,