Home
last modified time | relevance | path

Searched refs:EnableSplitLTOUnit (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp526 bool EnableSplitLTOUnit = false; in enableSplitLTOUnit() local
529 EnableSplitLTOUnit = MD->getZExtValue(); in enableSplitLTOUnit()
530 return EnableSplitLTOUnit; in enableSplitLTOUnit()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1460 bool EnableSplitLTOUnit;
1510 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false,
1513 EnableSplitLTOUnit(EnableSplitLTOUnit), UnifiedLTO(UnifiedLTO),
1661 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1662 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h98 bool EnableSplitLTOUnit; member
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp940 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex() local
944 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
948 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit, UnifiedLTO); in buildModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp761 if (EnableSplitLTOUnit) { in addModule()
765 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
768 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h573 std::optional<bool> EnableSplitLTOUnit; variable
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def166 CODEGENOPT(EnableSplitLTOUnit, 1, 0, Benign) ///< Enable LTO unit splitting to support
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp1151 CodeGenOpts.EnableSplitLTOUnit); in RunOptimizationPipeline()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8593 bool EnableSplitLTOUnit = Flags & 0x8; in getEnableSplitLTOUnitAndUnifiedFlag() local
8595 Result = {EnableSplitLTOUnit, UnifiedLTO}; in getEnableSplitLTOUnitAndUnifiedFlag()
8632 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
8644 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4388 CodeGenOpts<"EnableSplitLTOUnit">, DefaultFalse,