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.cpp515 bool EnableSplitLTOUnit = false; in enableSplitLTOUnit() local
518 EnableSplitLTOUnit = MD->getZExtValue(); in enableSplitLTOUnit()
519 return EnableSplitLTOUnit; in enableSplitLTOUnit()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1388 bool EnableSplitLTOUnit;
1438 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false,
1440 : HaveGVs(HaveGVs), EnableSplitLTOUnit(EnableSplitLTOUnit),
1596 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1597 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h96 bool EnableSplitLTOUnit; member
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp736 if (EnableSplitLTOUnit) { in addModule()
740 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
743 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp890 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex() local
894 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
898 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit, UnifiedLTO); in buildModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h445 std::optional<bool> EnableSplitLTOUnit; variable
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def169 CODEGENOPT(EnableSplitLTOUnit, 1, 0) ///< Enable LTO unit splitting to support
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp1058 CodeGenOpts.EnableSplitLTOUnit); in RunOptimizationPipeline()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8458 bool EnableSplitLTOUnit = Flags & 0x8; 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.td4149 CodeGenOpts<"EnableSplitLTOUnit">, DefaultFalse,