Searched refs:EnableSplitLTOUnit (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp432 bool EnableSplitLTOUnit = false; local
434 M.getModuleFlag("EnableSplitLTOUnit")))
435 EnableSplitLTOUnit = MD->getZExtValue();
436 return EnableSplitLTOUnit;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1058 bool EnableSplitLTOUnit; member in class:llvm::CalleeInfo::ModuleSummaryIndex
1087 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false)
1088 : HaveGVs(HaveGVs), EnableSplitLTOUnit(EnableSplitLTOUnit), Saver(Alloc),
1210 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1211 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h56 bool EnableSplitLTOUnit; member in struct:llvm::BitcodeLTOInfo
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h432 Optional<bool> EnableSplitLTOUnit; member in namespace:llvm::lto
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp653 bool EnableSplitLTOUnit = false; local
655 M.getModuleFlag("EnableSplitLTOUnit")))
656 EnableSplitLTOUnit = MD->getZExtValue();
657 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp609 if (EnableSplitLTOUnit.hasValue()) {
613 if (EnableSplitLTOUnit.getValue() != LTOInfo->EnableSplitLTOUnit)
616 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp900 TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
901 CodeGenOpts.EnableSplitLTOUnit);
915 TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
1398 TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
1399 CodeGenOpts.EnableSplitLTOUnit);
1413 TheModule->addModuleFlag(Module::Error, "EnableSplitLTOUnit",
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp6722 /*EnableSplitLTOUnit=*/false};
6726 Expected<bool> EnableSplitLTOUnit = local
6728 if (!EnableSplitLTOUnit)
6729 return EnableSplitLTOUnit.takeError();
6731 *EnableSplitLTOUnit};
6735 Expected<bool> EnableSplitLTOUnit = local
6737 if (!EnableSplitLTOUnit)
6738 return EnableSplitLTOUnit.takeError();
6740 *EnableSplitLTOUnit};
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp1009 Opts.EnableSplitLTOUnit = Args.hasArg(OPT_fsplit_lto_unit);

Completed in 107 milliseconds