Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1343 bool EnableSplitLTOUnit;
1393 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false,
1395 : HaveGVs(HaveGVs), EnableSplitLTOUnit(EnableSplitLTOUnit),
1551 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1552 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h96 bool EnableSplitLTOUnit; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp815 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex() local
819 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
823 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit, UnifiedLTO); in buildModuleSummaryIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp722 if (EnableSplitLTOUnit) { in addModule()
726 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
729 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h443 std::optional<bool> EnableSplitLTOUnit; variable
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def164 CODEGENOPT(EnableSplitLTOUnit, 1, 0) ///< Enable LTO unit splitting to support
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp1045 CodeGenOpts.EnableSplitLTOUnit); in RunOptimizationPipeline()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8112 bool EnableSplitLTOUnit = Flags & 0x8; in getEnableSplitLTOUnitAndUnifiedFlag() local
8114 Result = {EnableSplitLTOUnit, UnifiedLTO}; in getEnableSplitLTOUnitAndUnifiedFlag()
8151 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
8163 std::tie(LTOInfo.EnableSplitLTOUnit, LTOInfo.UnifiedLTO) = Flags.get(); in getLTOInfo()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td3956 CodeGenOpts<"EnableSplitLTOUnit">, DefaultFalse,