Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp490 bool EnableSplitLTOUnit = false; in enableSplitLTOUnit() local
493 EnableSplitLTOUnit = MD->getZExtValue(); in enableSplitLTOUnit()
494 return EnableSplitLTOUnit; in enableSplitLTOUnit()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1257 bool EnableSplitLTOUnit;
1299 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false)
1300 : HaveGVs(HaveGVs), EnableSplitLTOUnit(EnableSplitLTOUnit), Saver(Alloc),
1453 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1454 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/openbsd-src/gnu/llvm/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h96 bool EnableSplitLTOUnit; member
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp743 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex() local
746 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
747 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit); in buildModuleSummaryIndex()
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DLTO.cpp661 if (EnableSplitLTOUnit) { in addModule()
665 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
668 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/openbsd-src/gnu/llvm/llvm/include/llvm/LTO/
H A DLTO.h418 std::optional<bool> EnableSplitLTOUnit; variable
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/
H A DReducerWorkItem.cpp713 if (LTOInfo && LTOInfo->IsThinLTO && LTOInfo->EnableSplitLTOUnit) { in writeBitcode()
818 if (MMM->LTOInfo->IsThinLTO && MMM->LTOInfo->EnableSplitLTOUnit) in parseReducerWorkItem()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp8087 Expected<bool> EnableSplitLTOUnit = in getLTOInfo() local
8089 if (!EnableSplitLTOUnit) in getLTOInfo()
8090 return EnableSplitLTOUnit.takeError(); in getLTOInfo()
8092 *EnableSplitLTOUnit}; in getLTOInfo()
8096 Expected<bool> EnableSplitLTOUnit = in getLTOInfo() local
8098 if (!EnableSplitLTOUnit) in getLTOInfo()
8099 return EnableSplitLTOUnit.takeError(); in getLTOInfo()
8101 *EnableSplitLTOUnit}; in getLTOInfo()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.def165 CODEGENOPT(EnableSplitLTOUnit, 1, 0) ///< Enable LTO unit splitting to support
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DBackendUtil.cpp1011 CodeGenOpts.EnableSplitLTOUnit); in RunOptimizationPipeline()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td3079 CodeGenOpts<"EnableSplitLTOUnit">, DefaultFalse,