Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1083 bool EnableSplitLTOUnit;
1115 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false)
1116 : HaveGVs(HaveGVs), EnableSplitLTOUnit(EnableSplitLTOUnit), Saver(Alloc),
1241 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1242 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp482 bool EnableSplitLTOUnit = false; in enableSplitLTOUnit() local
485 EnableSplitLTOUnit = MD->getZExtValue(); in enableSplitLTOUnit()
486 return EnableSplitLTOUnit; in enableSplitLTOUnit()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h56 bool EnableSplitLTOUnit; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp649 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex() local
652 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
653 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit); in buildModuleSummaryIndex()
/freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp641 if (EnableSplitLTOUnit.hasValue()) { in addModule()
645 if (EnableSplitLTOUnit.getValue() != LTOInfo->EnableSplitLTOUnit) in addModule()
648 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h442 Optional<bool> EnableSplitLTOUnit; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp998 CodeGenOpts.EnableSplitLTOUnit); in EmitAssembly()
1444 CodeGenOpts.EnableSplitLTOUnit); in EmitAssemblyWithNewPassManager()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp6912 Expected<bool> EnableSplitLTOUnit = in getLTOInfo() local
6914 if (!EnableSplitLTOUnit) in getLTOInfo()
6915 return EnableSplitLTOUnit.takeError(); in getLTOInfo()
6917 *EnableSplitLTOUnit}; in getLTOInfo()
6921 Expected<bool> EnableSplitLTOUnit = in getLTOInfo() local
6923 if (!EnableSplitLTOUnit) in getLTOInfo()
6924 return EnableSplitLTOUnit.takeError(); in getLTOInfo()
6926 *EnableSplitLTOUnit}; in getLTOInfo()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def152 CODEGENOPT(EnableSplitLTOUnit, 1, 0) ///< Enable LTO unit splitting to support
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2727 CodeGenOpts<"EnableSplitLTOUnit">, DefaultFalse,