blob: 78d5ea955e6442fa56c133da4803e7a590d4ee2d [file] [log] [blame]
Chandler Carruth1ff77242015-03-07 09:02:36 +00001//===- Parsing, selection, and construction of pass pipelines -------------===//
Chandler Carruth66445382014-01-11 08:16:35 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10///
Chandler Carruth1ff77242015-03-07 09:02:36 +000011/// This file provides the implementation of the PassBuilder based on our
12/// static pass registry as well as related functionality. It also provides
13/// helpers to aid in analyzing, debugging, and testing passes and pass
14/// pipelines.
Chandler Carruth66445382014-01-11 08:16:35 +000015///
16//===----------------------------------------------------------------------===//
17
Chandler Carruth1ff77242015-03-07 09:02:36 +000018#include "llvm/Passes/PassBuilder.h"
Chandler Carruth8b5a74192016-02-28 22:16:03 +000019#include "llvm/ADT/StringSwitch.h"
Chandler Carruth6f5770b102016-02-13 23:32:00 +000020#include "llvm/Analysis/AliasAnalysis.h"
Chandler Carruth4f846a52016-02-20 03:46:03 +000021#include "llvm/Analysis/AliasAnalysisEvaluator.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000022#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruthbece8d52016-02-13 23:46:24 +000023#include "llvm/Analysis/BasicAliasAnalysis.h"
Xinliang David Li28a93272016-05-05 21:13:27 +000024#include "llvm/Analysis/BlockFrequencyInfo.h"
25#include "llvm/Analysis/BlockFrequencyInfoImpl.h"
Xinliang David Li6e5dd412016-05-05 02:59:57 +000026#include "llvm/Analysis/BranchProbabilityInfo.h"
Mehdi Amini27d23792016-09-16 16:56:30 +000027#include "llvm/Analysis/CFGPrinter.h"
George Burgess IVbfa401e2016-07-06 00:26:41 +000028#include "llvm/Analysis/CFLAndersAliasAnalysis.h"
29#include "llvm/Analysis/CFLSteensAliasAnalysis.h"
Chandler Carruth572e3402014-04-21 11:12:00 +000030#include "llvm/Analysis/CGSCCPassManager.h"
Chandler Carruth4c660f72016-03-10 11:24:11 +000031#include "llvm/Analysis/CallGraph.h"
Michael Kupersteinde16b442016-04-18 23:55:01 +000032#include "llvm/Analysis/DemandedBits.h"
Chandler Carruth49c22192016-05-12 22:19:39 +000033#include "llvm/Analysis/DependenceAnalysis.h"
Hongbin Zheng751337f2016-02-25 17:54:15 +000034#include "llvm/Analysis/DominanceFrontier.h"
Chandler Carruth45a9c202016-03-11 09:15:11 +000035#include "llvm/Analysis/GlobalsModRef.h"
Dehao Chen1a444522016-07-16 22:51:33 +000036#include "llvm/Analysis/IVUsers.h"
Chandler Carruthbf71a342014-02-06 04:37:03 +000037#include "llvm/Analysis/LazyCallGraph.h"
Sean Silva687019f2016-06-13 22:01:25 +000038#include "llvm/Analysis/LazyValueInfo.h"
Xinliang David Li8a021312016-07-02 21:18:40 +000039#include "llvm/Analysis/LoopAccessAnalysis.h"
Chandler Carruthaaf0b4c2015-01-20 10:58:50 +000040#include "llvm/Analysis/LoopInfo.h"
Chandler Carruth61440d22016-03-10 00:55:30 +000041#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Daniel Berlin554dcd82017-04-11 20:06:36 +000042#include "llvm/Analysis/MemorySSA.h"
Teresa Johnsonf93b2462016-08-12 13:53:02 +000043#include "llvm/Analysis/ModuleSummaryAnalysis.h"
Adam Nemet79ac42a2016-07-18 16:29:21 +000044#include "llvm/Analysis/OptimizationDiagnosticInfo.h"
Hongbin Zheng3f978402016-02-25 17:54:07 +000045#include "llvm/Analysis/PostDominators.h"
Easwaran Raman019e0bf2016-06-03 22:54:26 +000046#include "llvm/Analysis/ProfileSummaryInfo.h"
Hongbin Zhengbc539772016-02-25 17:54:25 +000047#include "llvm/Analysis/RegionInfo.h"
Chandler Carruth2f1fd162015-08-17 02:08:17 +000048#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth2b3d0442016-02-20 04:01:45 +000049#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
Chandler Carruthd6091a02016-02-20 04:03:06 +000050#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth8ca43222015-01-15 11:39:46 +000051#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruthe0385522015-02-01 10:11:22 +000052#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruthc1dc3842016-02-20 04:04:52 +000053#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Michael Kuperstein82d5da52016-06-24 20:13:42 +000054#include "llvm/CodeGen/PreISelIntrinsicLowering.h"
Wei Mi90d195a2016-07-08 03:32:49 +000055#include "llvm/CodeGen/UnreachableBlockElim.h"
Chandler Carruth64764b42015-01-14 10:19:28 +000056#include "llvm/IR/Dominators.h"
Chandler Carruth52eef882014-01-12 12:15:39 +000057#include "llvm/IR/IRPrintingPasses.h"
Chandler Carruth66445382014-01-11 08:16:35 +000058#include "llvm/IR/PassManager.h"
Chandler Carruth4d356312014-01-20 11:34:08 +000059#include "llvm/IR/Verifier.h"
Chandler Carruth52eef882014-01-12 12:15:39 +000060#include "llvm/Support/Debug.h"
Chandler Carruth8b5a74192016-02-28 22:16:03 +000061#include "llvm/Support/Regex.h"
Chandler Carruthe0385522015-02-01 10:11:22 +000062#include "llvm/Target/TargetMachine.h"
Xinliang David Li64dbb292016-06-05 05:12:23 +000063#include "llvm/Transforms/GCOVProfiler.h"
Chandler Carruth67fc52f2016-08-17 02:56:20 +000064#include "llvm/Transforms/IPO/AlwaysInliner.h"
Chandler Carruthaddcda42017-02-09 23:46:27 +000065#include "llvm/Transforms/IPO/ArgumentPromotion.h"
Davide Italiano164b9bc2016-05-05 00:51:09 +000066#include "llvm/Transforms/IPO/ConstantMerge.h"
Davide Italiano92b933a2016-07-09 03:25:35 +000067#include "llvm/Transforms/IPO/CrossDSOCFI.h"
Sean Silvae3bb4572016-06-12 09:16:39 +000068#include "llvm/Transforms/IPO/DeadArgumentElimination.h"
Davide Italiano344e8382016-05-05 02:37:32 +000069#include "llvm/Transforms/IPO/ElimAvailExtern.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000070#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000071#include "llvm/Transforms/IPO/FunctionAttrs.h"
Teresa Johnson21241572016-07-18 21:22:24 +000072#include "llvm/Transforms/IPO/FunctionImport.h"
Davide Italiano66228c42016-05-03 19:39:15 +000073#include "llvm/Transforms/IPO/GlobalDCE.h"
Justin Bogner1a075012016-04-26 00:28:01 +000074#include "llvm/Transforms/IPO/GlobalOpt.h"
Davide Italiano2ae76dd2016-11-21 00:28:23 +000075#include "llvm/Transforms/IPO/GlobalSplit.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000076#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Chandler Carruth1d963112016-12-20 03:15:32 +000077#include "llvm/Transforms/IPO/Inliner.h"
Justin Bogner4563a062016-04-26 20:15:52 +000078#include "llvm/Transforms/IPO/Internalize.h"
Davide Italianoe8ae0b52016-07-11 18:10:06 +000079#include "llvm/Transforms/IPO/LowerTypeTests.h"
Easwaran Raman1832bf62016-06-27 16:50:18 +000080#include "llvm/Transforms/IPO/PartialInlining.h"
Davide Italianof54f2f02016-05-05 21:05:36 +000081#include "llvm/Transforms/IPO/SCCP.h"
Justin Bogner21e15372015-10-30 23:28:12 +000082#include "llvm/Transforms/IPO/StripDeadPrototypes.h"
Davide Italianod737dd22016-06-14 21:44:19 +000083#include "llvm/Transforms/IPO/WholeProgramDevirt.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000084#include "llvm/Transforms/InstCombine/InstCombine.h"
Xinliang David Lie6b89292016-04-18 17:47:38 +000085#include "llvm/Transforms/InstrProfiling.h"
Xinliang David Li8aebf442016-05-06 05:49:19 +000086#include "llvm/Transforms/PGOInstrumentation.h"
Xinliang David Lid38392e2016-05-27 23:20:16 +000087#include "llvm/Transforms/SampleProfile.h"
Justin Bogner19b67992015-10-30 23:13:18 +000088#include "llvm/Transforms/Scalar/ADCE.h"
Sean Silvaa4c2d152016-06-15 06:18:01 +000089#include "llvm/Transforms/Scalar/AlignmentFromAssumptions.h"
Davide Italiano655a1452016-05-25 01:57:04 +000090#include "llvm/Transforms/Scalar/BDCE.h"
Adam Nemet3beef412016-07-18 16:29:17 +000091#include "llvm/Transforms/Scalar/ConstantHoisting.h"
Sean Silvab025d372016-07-06 23:26:29 +000092#include "llvm/Transforms/Scalar/CorrelatedValuePropagation.h"
Justin Bogner395c2122016-04-22 19:40:41 +000093#include "llvm/Transforms/Scalar/DCE.h"
Justin Bogner594e07b2016-05-17 21:38:13 +000094#include "llvm/Transforms/Scalar/DeadStoreElimination.h"
Chandler Carruthe8c686a2015-02-01 10:51:23 +000095#include "llvm/Transforms/Scalar/EarlyCSE.h"
Michael Kuperstein83b753d2016-06-24 23:32:02 +000096#include "llvm/Transforms/Scalar/Float2Int.h"
Easwaran Raman019e0bf2016-06-03 22:54:26 +000097#include "llvm/Transforms/Scalar/GVN.h"
Davide Italiano89ab89d2016-06-14 00:49:23 +000098#include "llvm/Transforms/Scalar/GuardWidening.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000099#include "llvm/Transforms/Scalar/IVUsersPrinter.h"
Sanjoy Das4d4339d2016-06-05 18:01:19 +0000100#include "llvm/Transforms/Scalar/IndVarSimplify.h"
Sean Silva46590d52016-06-14 00:51:09 +0000101#include "llvm/Transforms/Scalar/JumpThreading.h"
Dehao Chenf400a092016-07-12 22:42:24 +0000102#include "llvm/Transforms/Scalar/LICM.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000103#include "llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h"
Teresa Johnson1eca6bc2016-08-13 04:11:27 +0000104#include "llvm/Transforms/Scalar/LoopDataPrefetch.h"
Jun Bum Limc837af32016-07-14 18:28:29 +0000105#include "llvm/Transforms/Scalar/LoopDeletion.h"
Adam Nemetb2593f72016-07-18 16:29:27 +0000106#include "llvm/Transforms/Scalar/LoopDistribute.h"
Dehao Chenb9f8e292016-07-12 18:45:51 +0000107#include "llvm/Transforms/Scalar/LoopIdiomRecognize.h"
Dehao Chendcafd5e2016-07-15 16:42:11 +0000108#include "llvm/Transforms/Scalar/LoopInstSimplify.h"
Chandler Carruthbaabda92017-01-27 01:32:26 +0000109#include "llvm/Transforms/Scalar/LoopLoadElimination.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000110#include "llvm/Transforms/Scalar/LoopPassManager.h"
Artur Pilipenko8fb3d572017-01-25 16:00:44 +0000111#include "llvm/Transforms/Scalar/LoopPredication.h"
Justin Bognerd0d23412016-05-03 22:02:31 +0000112#include "llvm/Transforms/Scalar/LoopRotation.h"
Justin Bognerab6a5132016-05-03 21:47:32 +0000113#include "llvm/Transforms/Scalar/LoopSimplifyCFG.h"
Chandler Carruthe9b18e32017-01-20 08:42:19 +0000114#include "llvm/Transforms/Scalar/LoopSink.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000115#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
Sean Silvae3c18a52016-07-19 23:54:23 +0000116#include "llvm/Transforms/Scalar/LoopUnrollPass.h"
Davide Italiano99223442016-05-13 22:52:35 +0000117#include "llvm/Transforms/Scalar/LowerAtomic.h"
Chandler Carruth43e590e2015-01-24 11:13:02 +0000118#include "llvm/Transforms/Scalar/LowerExpectIntrinsic.h"
Michael Kupersteine45d4d92016-07-28 22:08:41 +0000119#include "llvm/Transforms/Scalar/LowerGuardIntrinsic.h"
Sean Silva6347df02016-06-14 02:44:55 +0000120#include "llvm/Transforms/Scalar/MemCpyOptimizer.h"
Davide Italianob49aa5c2016-06-17 19:10:09 +0000121#include "llvm/Transforms/Scalar/MergedLoadStoreMotion.h"
Wei Mi1cf58f82016-07-21 22:28:52 +0000122#include "llvm/Transforms/Scalar/NaryReassociate.h"
Davide Italianoe05e3302016-12-22 16:35:02 +0000123#include "llvm/Transforms/Scalar/NewGVN.h"
Davide Italiano1021c682016-05-25 23:38:53 +0000124#include "llvm/Transforms/Scalar/PartiallyInlineLibCalls.h"
Justin Bognerc2bf63d2016-04-26 23:39:29 +0000125#include "llvm/Transforms/Scalar/Reassociate.h"
Davide Italiano98f7e0e2016-05-18 15:18:25 +0000126#include "llvm/Transforms/Scalar/SCCP.h"
Chandler Carruth29a18a42015-09-12 09:09:14 +0000127#include "llvm/Transforms/Scalar/SROA.h"
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000128#include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000129#include "llvm/Transforms/Scalar/SimplifyCFG.h"
Justin Bognerb9394902016-04-22 19:54:10 +0000130#include "llvm/Transforms/Scalar/Sink.h"
Michael Kupersteinc4061862016-08-01 21:48:33 +0000131#include "llvm/Transforms/Scalar/SpeculativeExecution.h"
Sean Silva59fe82f2016-07-06 23:48:41 +0000132#include "llvm/Transforms/Scalar/TailRecursionElimination.h"
Xinliang David Li1eaecef2016-06-15 21:51:30 +0000133#include "llvm/Transforms/Utils/AddDiscriminators.h"
Wei Mie04d0ef2016-07-22 18:04:25 +0000134#include "llvm/Transforms/Utils/BreakCriticalEdges.h"
Easwaran Ramane12c4872016-06-09 19:44:46 +0000135#include "llvm/Transforms/Utils/LCSSA.h"
Rong Xu1c0e9b92016-10-18 21:36:27 +0000136#include "llvm/Transforms/Utils/LibCallsShrinkWrap.h"
Davide Italianocd96cfd2016-07-09 03:03:01 +0000137#include "llvm/Transforms/Utils/LoopSimplify.h"
Michael Kuperstein31b83992016-08-12 17:28:27 +0000138#include "llvm/Transforms/Utils/LowerInvoke.h"
Davide Italianocccf4f02016-06-14 03:22:22 +0000139#include "llvm/Transforms/Utils/Mem2Reg.h"
Mehdi Amini27d23792016-09-16 16:56:30 +0000140#include "llvm/Transforms/Utils/NameAnonGlobals.h"
Daniel Berlin439042b2017-02-07 21:10:46 +0000141#include "llvm/Transforms/Utils/PredicateInfo.h"
Davide Italiano16284df2016-07-07 21:14:36 +0000142#include "llvm/Transforms/Utils/SimplifyInstructions.h"
Michael Kuperstein39feb622016-07-25 20:52:00 +0000143#include "llvm/Transforms/Utils/SymbolRewriter.h"
Sean Silvadb90d4d2016-07-09 22:56:50 +0000144#include "llvm/Transforms/Vectorize/LoopVectorize.h"
Sean Silva0dacbd82016-07-09 03:11:29 +0000145#include "llvm/Transforms/Vectorize/SLPVectorizer.h"
Davide Italianocccf4f02016-06-14 03:22:22 +0000146
Chandler Carruth58dde8c2016-02-26 12:17:54 +0000147#include <type_traits>
Chandler Carruth66445382014-01-11 08:16:35 +0000148
149using namespace llvm;
150
Chandler Carruth719ffe12017-02-12 05:38:04 +0000151static cl::opt<unsigned> MaxDevirtIterations("pm-max-devirt-iterations",
152 cl::ReallyHidden, cl::init(4));
Xinliang David Li126157c2017-05-22 16:41:57 +0000153static cl::opt<bool>
154 RunPartialInlining("enable-npm-partial-inlining", cl::init(false),
155 cl::Hidden, cl::ZeroOrMore,
156 cl::desc("Run Partial inlinining pass"));
Chandler Carruth719ffe12017-02-12 05:38:04 +0000157
Davide Italiano8a09b8e2017-05-22 23:41:40 +0000158static cl::opt<bool>
Davide Italiano8e7d11a2017-05-22 23:47:11 +0000159 RunNewGVN("enable-npm-newgvn", cl::init(false),
Davide Italiano8a09b8e2017-05-22 23:41:40 +0000160 cl::Hidden, cl::ZeroOrMore,
161 cl::desc("Run NewGVN instead of GVN"));
162
Geoff Berry3cca1da2017-06-10 15:20:03 +0000163static cl::opt<bool> EnableEarlyCSEMemSSA(
164 "enable-npm-earlycse-memssa", cl::init(false), cl::Hidden,
165 cl::desc("Enable the EarlyCSE w/ MemorySSA pass for the new PM (default = off)"));
166
Chandler Carruthc246a4c2017-04-27 00:28:03 +0000167static cl::opt<bool> EnableGVNHoist(
168 "enable-npm-gvn-hoist", cl::init(false), cl::Hidden,
169 cl::desc("Enable the GVN hoisting pass for the new PM (default = off)"));
170
Davide Italianobe1b6a92017-06-03 23:18:29 +0000171static cl::opt<bool> EnableGVNSink(
172 "enable-npm-gvn-sink", cl::init(false), cl::Hidden,
173 cl::desc("Enable the GVN hoisting pass for the new PM (default = off)"));
174
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000175static Regex DefaultAliasRegex(
176 "^(default|thinlto-pre-link|thinlto|lto-pre-link|lto)<(O[0123sz])>$");
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000177
Chandler Carruthe3f50642016-12-22 06:59:15 +0000178static bool isOptimizingForSize(PassBuilder::OptimizationLevel Level) {
179 switch (Level) {
180 case PassBuilder::O0:
181 case PassBuilder::O1:
182 case PassBuilder::O2:
183 case PassBuilder::O3:
184 return false;
185
186 case PassBuilder::Os:
187 case PassBuilder::Oz:
188 return true;
189 }
190 llvm_unreachable("Invalid optimization level!");
191}
192
Chandler Carruth66445382014-01-11 08:16:35 +0000193namespace {
194
Chandler Carruthd8330982014-01-12 09:34:22 +0000195/// \brief No-op module pass which does nothing.
Chandler Carruth66445382014-01-11 08:16:35 +0000196struct NoOpModulePass {
Sean Silvafd03ac62016-08-09 00:28:38 +0000197 PreservedAnalyses run(Module &M, ModuleAnalysisManager &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000198 return PreservedAnalyses::all();
199 }
Chandler Carrutha13f27c2014-01-11 11:52:05 +0000200 static StringRef name() { return "NoOpModulePass"; }
Chandler Carruth66445382014-01-11 08:16:35 +0000201};
202
Chandler Carruth0b576b32015-01-06 02:50:06 +0000203/// \brief No-op module analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000204class NoOpModuleAnalysis : public AnalysisInfoMixin<NoOpModuleAnalysis> {
205 friend AnalysisInfoMixin<NoOpModuleAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000206 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000207
208public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000209 struct Result {};
Sean Silvafd03ac62016-08-09 00:28:38 +0000210 Result run(Module &, ModuleAnalysisManager &) { return Result(); }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000211 static StringRef name() { return "NoOpModuleAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000212};
213
Chandler Carruth572e3402014-04-21 11:12:00 +0000214/// \brief No-op CGSCC pass which does nothing.
215struct NoOpCGSCCPass {
Chandler Carruth88823462016-08-24 09:37:14 +0000216 PreservedAnalyses run(LazyCallGraph::SCC &C, CGSCCAnalysisManager &,
217 LazyCallGraph &, CGSCCUpdateResult &UR) {
Chandler Carruth572e3402014-04-21 11:12:00 +0000218 return PreservedAnalyses::all();
219 }
220 static StringRef name() { return "NoOpCGSCCPass"; }
221};
222
Chandler Carruth0b576b32015-01-06 02:50:06 +0000223/// \brief No-op CGSCC analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000224class NoOpCGSCCAnalysis : public AnalysisInfoMixin<NoOpCGSCCAnalysis> {
225 friend AnalysisInfoMixin<NoOpCGSCCAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000226 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000227
228public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000229 struct Result {};
Chandler Carruth88823462016-08-24 09:37:14 +0000230 Result run(LazyCallGraph::SCC &, CGSCCAnalysisManager &, LazyCallGraph &G) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000231 return Result();
232 }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000233 static StringRef name() { return "NoOpCGSCCAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000234};
235
Chandler Carruthd8330982014-01-12 09:34:22 +0000236/// \brief No-op function pass which does nothing.
237struct NoOpFunctionPass {
Sean Silva36e0d012016-08-09 00:28:15 +0000238 PreservedAnalyses run(Function &F, FunctionAnalysisManager &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000239 return PreservedAnalyses::all();
240 }
Chandler Carruthd8330982014-01-12 09:34:22 +0000241 static StringRef name() { return "NoOpFunctionPass"; }
242};
243
Chandler Carruth0b576b32015-01-06 02:50:06 +0000244/// \brief No-op function analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000245class NoOpFunctionAnalysis : public AnalysisInfoMixin<NoOpFunctionAnalysis> {
246 friend AnalysisInfoMixin<NoOpFunctionAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000247 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000248
249public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000250 struct Result {};
Sean Silva36e0d012016-08-09 00:28:15 +0000251 Result run(Function &, FunctionAnalysisManager &) { return Result(); }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000252 static StringRef name() { return "NoOpFunctionAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000253};
254
Justin Bognereecc3c82016-02-25 07:23:08 +0000255/// \brief No-op loop pass which does nothing.
256struct NoOpLoopPass {
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000257 PreservedAnalyses run(Loop &L, LoopAnalysisManager &,
258 LoopStandardAnalysisResults &, LPMUpdater &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000259 return PreservedAnalyses::all();
260 }
Justin Bognereecc3c82016-02-25 07:23:08 +0000261 static StringRef name() { return "NoOpLoopPass"; }
262};
263
264/// \brief No-op loop analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000265class NoOpLoopAnalysis : public AnalysisInfoMixin<NoOpLoopAnalysis> {
266 friend AnalysisInfoMixin<NoOpLoopAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000267 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000268
269public:
Justin Bognereecc3c82016-02-25 07:23:08 +0000270 struct Result {};
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000271 Result run(Loop &, LoopAnalysisManager &, LoopStandardAnalysisResults &) {
272 return Result();
273 }
Justin Bognereecc3c82016-02-25 07:23:08 +0000274 static StringRef name() { return "NoOpLoopAnalysis"; }
Justin Bognereecc3c82016-02-25 07:23:08 +0000275};
276
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000277AnalysisKey NoOpModuleAnalysis::Key;
278AnalysisKey NoOpCGSCCAnalysis::Key;
279AnalysisKey NoOpFunctionAnalysis::Key;
280AnalysisKey NoOpLoopAnalysis::Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000281
Chandler Carruth66445382014-01-11 08:16:35 +0000282} // End anonymous namespace.
283
Chandler Carruth1ff77242015-03-07 09:02:36 +0000284void PassBuilder::registerModuleAnalyses(ModuleAnalysisManager &MAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000285#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000286 MAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000287#include "PassRegistry.def"
288}
289
Chandler Carruth1ff77242015-03-07 09:02:36 +0000290void PassBuilder::registerCGSCCAnalyses(CGSCCAnalysisManager &CGAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000291#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000292 CGAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000293#include "PassRegistry.def"
294}
295
Chandler Carruth1ff77242015-03-07 09:02:36 +0000296void PassBuilder::registerFunctionAnalyses(FunctionAnalysisManager &FAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000297#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000298 FAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000299#include "PassRegistry.def"
300}
301
Justin Bognereecc3c82016-02-25 07:23:08 +0000302void PassBuilder::registerLoopAnalyses(LoopAnalysisManager &LAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000303#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
Justin Bognereecc3c82016-02-25 07:23:08 +0000304 LAM.registerPass([&] { return CREATE_PASS; });
305#include "PassRegistry.def"
306}
307
Chandler Carruthe3f50642016-12-22 06:59:15 +0000308FunctionPassManager
309PassBuilder::buildFunctionSimplificationPipeline(OptimizationLevel Level,
310 bool DebugLogging) {
311 assert(Level != O0 && "Must request optimizations!");
312 FunctionPassManager FPM(DebugLogging);
313
314 // Form SSA out of local memory accesses after breaking apart aggregates into
315 // scalars.
316 FPM.addPass(SROA());
317
318 // Catch trivial redundancies
Geoff Berry3cca1da2017-06-10 15:20:03 +0000319 FPM.addPass(EarlyCSEPass(EnableEarlyCSEMemSSA));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000320
Davide Italianoc3688312017-06-01 23:08:14 +0000321 // Hoisting of scalars and load expressions.
322 if (EnableGVNHoist)
323 FPM.addPass(GVNHoistPass());
324
Davide Italianobe1b6a92017-06-03 23:18:29 +0000325 // Global value numbering based sinking.
326 if (EnableGVNSink) {
327 FPM.addPass(GVNSinkPass());
328 FPM.addPass(SimplifyCFGPass());
329 }
330
Chandler Carruthe3f50642016-12-22 06:59:15 +0000331 // Speculative execution if the target has divergent branches; otherwise nop.
332 FPM.addPass(SpeculativeExecutionPass());
333
334 // Optimize based on known information about branches, and cleanup afterward.
335 FPM.addPass(JumpThreadingPass());
336 FPM.addPass(CorrelatedValuePropagationPass());
337 FPM.addPass(SimplifyCFGPass());
338 FPM.addPass(InstCombinePass());
339
340 if (!isOptimizingForSize(Level))
341 FPM.addPass(LibCallsShrinkWrapPass());
342
343 FPM.addPass(TailCallElimPass());
344 FPM.addPass(SimplifyCFGPass());
345
346 // Form canonically associated expression trees, and simplify the trees using
347 // basic mathematical properties. For example, this will form (nearly)
348 // minimal multiplication trees.
349 FPM.addPass(ReassociatePass());
350
351 // Add the primary loop simplification pipeline.
352 // FIXME: Currently this is split into two loop pass pipelines because we run
353 // some function passes in between them. These can and should be replaced by
354 // loop pass equivalenst but those aren't ready yet. Specifically,
355 // `SimplifyCFGPass` and `InstCombinePass` are used. We have
356 // `LoopSimplifyCFGPass` which isn't yet powerful enough, and the closest to
357 // the other we have is `LoopInstSimplify`.
358 LoopPassManager LPM1(DebugLogging), LPM2(DebugLogging);
359
360 // Rotate Loop - disable header duplication at -Oz
361 LPM1.addPass(LoopRotatePass(Level != Oz));
362 LPM1.addPass(LICMPass());
Chandler Carruth86248d52017-05-26 01:24:11 +0000363 LPM1.addPass(SimpleLoopUnswitchPass());
Chandler Carruth79b733b2017-01-26 23:21:17 +0000364 LPM2.addPass(IndVarSimplifyPass());
365 LPM2.addPass(LoopIdiomRecognizePass());
366 LPM2.addPass(LoopDeletionPass());
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000367 // FIXME: The old pass manager has a hack to disable loop unrolling during
368 // ThinLTO when using sample PGO. Need to either fix it or port some
369 // workaround.
Dehao Chen7d230322017-02-18 03:46:51 +0000370 LPM2.addPass(LoopUnrollPass::createFull(Level));
Chandler Carruth79b733b2017-01-26 23:21:17 +0000371
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000372 // We provide the opt remark emitter pass for LICM to use. We only need to do
373 // this once as it is immutable.
374 FPM.addPass(RequireAnalysisPass<OptimizationRemarkEmitterAnalysis, Function>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000375 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM1)));
376 FPM.addPass(SimplifyCFGPass());
377 FPM.addPass(InstCombinePass());
378 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM2)));
379
380 // Eliminate redundancies.
381 if (Level != O1) {
382 // These passes add substantial compile time so skip them at O1.
383 FPM.addPass(MergedLoadStoreMotionPass());
Davide Italiano8a09b8e2017-05-22 23:41:40 +0000384 if (RunNewGVN)
385 FPM.addPass(NewGVNPass());
386 else
387 FPM.addPass(GVN());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000388 }
389
390 // Specially optimize memory movement as it doesn't look like dataflow in SSA.
391 FPM.addPass(MemCpyOptPass());
392
393 // Sparse conditional constant propagation.
394 // FIXME: It isn't clear why we do this *after* loop passes rather than
395 // before...
396 FPM.addPass(SCCPPass());
397
398 // Delete dead bit computations (instcombine runs after to fold away the dead
399 // computations, and then ADCE will run later to exploit any new DCE
400 // opportunities that creates).
401 FPM.addPass(BDCEPass());
402
403 // Run instcombine after redundancy and dead bit elimination to exploit
404 // opportunities opened up by them.
405 FPM.addPass(InstCombinePass());
406
407 // Re-consider control flow based optimizations after redundancy elimination,
408 // redo DCE, etc.
409 FPM.addPass(JumpThreadingPass());
410 FPM.addPass(CorrelatedValuePropagationPass());
411 FPM.addPass(DSEPass());
412 FPM.addPass(createFunctionToLoopPassAdaptor(LICMPass()));
413
414 // Finally, do an expensive DCE pass to catch all the dead code exposed by
415 // the simplifications and basic cleanup after all the simplifications.
416 FPM.addPass(ADCEPass());
417 FPM.addPass(SimplifyCFGPass());
418 FPM.addPass(InstCombinePass());
419
420 return FPM;
421}
422
Davide Italiano513dfaa2017-02-13 15:26:22 +0000423static void addPGOInstrPasses(ModulePassManager &MPM, bool DebugLogging,
424 PassBuilder::OptimizationLevel Level,
425 bool RunProfileGen, std::string ProfileGenFile,
426 std::string ProfileUseFile) {
427 // Generally running simplification passes and the inliner with an high
428 // threshold results in smaller executables, but there may be cases where
429 // the size grows, so let's be conservative here and skip this simplification
430 // at -Os/Oz.
431 if (!isOptimizingForSize(Level)) {
432 InlineParams IP;
433
434 // In the old pass manager, this is a cl::opt. Should still this be one?
435 IP.DefaultThreshold = 75;
436
437 // FIXME: The hint threshold has the same value used by the regular inliner.
438 // This should probably be lowered after performance testing.
439 // FIXME: this comment is cargo culted from the old pass manager, revisit).
440 IP.HintThreshold = 325;
441
442 CGSCCPassManager CGPipeline(DebugLogging);
443
444 CGPipeline.addPass(InlinerPass(IP));
445
446 FunctionPassManager FPM;
447 FPM.addPass(SROA());
448 FPM.addPass(EarlyCSEPass()); // Catch trivial redundancies.
449 FPM.addPass(SimplifyCFGPass()); // Merge & remove basic blocks.
450 FPM.addPass(InstCombinePass()); // Combine silly sequences.
451
452 // FIXME: Here the old pass manager inserts peephole extensions.
453 // Add them when they're supported.
454 CGPipeline.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
455
456 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPipeline)));
457 }
458
Chandler Carruthf4d62c42017-05-25 07:15:09 +0000459 // Delete anything that is now dead to make sure that we don't instrument
460 // dead code. Instrumentation can end up keeping dead code around and
461 // dramatically increase code size.
462 MPM.addPass(GlobalDCEPass());
463
Davide Italiano513dfaa2017-02-13 15:26:22 +0000464 if (RunProfileGen) {
465 MPM.addPass(PGOInstrumentationGen());
466
Xinliang David Lib67530e2017-06-25 00:26:43 +0000467 FunctionPassManager FPM;
468 FPM.addPass(createFunctionToLoopPassAdaptor(LoopRotatePass()));
469 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
470
Davide Italiano513dfaa2017-02-13 15:26:22 +0000471 // Add the profile lowering pass.
472 InstrProfOptions Options;
473 if (!ProfileGenFile.empty())
474 Options.InstrProfileOutput = ProfileGenFile;
Xinliang David Lib67530e2017-06-25 00:26:43 +0000475 Options.DoCounterPromotion = true;
Davide Italiano513dfaa2017-02-13 15:26:22 +0000476 MPM.addPass(InstrProfiling(Options));
477 }
478
479 if (!ProfileUseFile.empty())
480 MPM.addPass(PGOInstrumentationUse(ProfileUseFile));
481}
482
Chandler Carruthe3f50642016-12-22 06:59:15 +0000483ModulePassManager
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000484PassBuilder::buildModuleSimplificationPipeline(OptimizationLevel Level,
485 bool DebugLogging) {
Chandler Carruthe3f50642016-12-22 06:59:15 +0000486 ModulePassManager MPM(DebugLogging);
487
Chandler Carruthe3f50642016-12-22 06:59:15 +0000488 // Do basic inference of function attributes from known properties of system
489 // libraries and other oracles.
490 MPM.addPass(InferFunctionAttrsPass());
491
492 // Create an early function pass manager to cleanup the output of the
493 // frontend.
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000494 FunctionPassManager EarlyFPM(DebugLogging);
495 EarlyFPM.addPass(SimplifyCFGPass());
496 EarlyFPM.addPass(SROA());
497 EarlyFPM.addPass(EarlyCSEPass());
498 EarlyFPM.addPass(LowerExpectIntrinsicPass());
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000499 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(EarlyFPM)));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000500
501 // Interprocedural constant propagation now that basic cleanup has occured
502 // and prior to optimizing globals.
503 // FIXME: This position in the pipeline hasn't been carefully considered in
504 // years, it should be re-analyzed.
505 MPM.addPass(IPSCCPPass());
506
507 // Optimize globals to try and fold them into constants.
508 MPM.addPass(GlobalOptPass());
509
510 // Promote any localized globals to SSA registers.
511 // FIXME: Should this instead by a run of SROA?
512 // FIXME: We should probably run instcombine and simplify-cfg afterward to
513 // delete control flows that are dead once globals have been folded to
514 // constants.
515 MPM.addPass(createModuleToFunctionPassAdaptor(PromotePass()));
516
517 // Remove any dead arguments exposed by cleanups and constand folding
518 // globals.
519 MPM.addPass(DeadArgumentEliminationPass());
520
521 // Create a small function pass pipeline to cleanup after all the global
522 // optimizations.
523 FunctionPassManager GlobalCleanupPM(DebugLogging);
524 GlobalCleanupPM.addPass(InstCombinePass());
525 GlobalCleanupPM.addPass(SimplifyCFGPass());
526 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(GlobalCleanupPM)));
527
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000528 // Add all the requested passes for PGO, if requested.
Davide Italiano513dfaa2017-02-13 15:26:22 +0000529 if (PGOOpt) {
Dehao Chencc75d242017-02-23 22:15:18 +0000530 assert(PGOOpt->RunProfileGen || PGOOpt->SamplePGO ||
531 !PGOOpt->ProfileUseFile.empty());
Davide Italiano513dfaa2017-02-13 15:26:22 +0000532 addPGOInstrPasses(MPM, DebugLogging, Level, PGOOpt->RunProfileGen,
533 PGOOpt->ProfileGenFile, PGOOpt->ProfileUseFile);
Davide Italiano513dfaa2017-02-13 15:26:22 +0000534
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000535 // Indirect call promotion that promotes intra-module targes only.
536 MPM.addPass(PGOIndirectCallPromotion(false, PGOOpt && PGOOpt->SamplePGO));
537 }
Davide Italiano513dfaa2017-02-13 15:26:22 +0000538
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000539 // Require the GlobalsAA analysis for the module so we can query it within
540 // the CGSCC pipeline.
541 MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000542
Easwaran Raman5e6f9bd2017-05-04 16:58:45 +0000543 // Require the ProfileSummaryAnalysis for the module so we can query it within
544 // the inliner pass.
545 MPM.addPass(RequireAnalysisPass<ProfileSummaryAnalysis, Module>());
546
Chandler Carruthe3f50642016-12-22 06:59:15 +0000547 // Now begin the main postorder CGSCC pipeline.
548 // FIXME: The current CGSCC pipeline has its origins in the legacy pass
549 // manager and trying to emulate its precise behavior. Much of this doesn't
550 // make a lot of sense and we should revisit the core CGSCC structure.
551 CGSCCPassManager MainCGPipeline(DebugLogging);
552
553 // Note: historically, the PruneEH pass was run first to deduce nounwind and
554 // generally clean up exception handling overhead. It isn't clear this is
555 // valuable as the inliner doesn't currently care whether it is inlining an
556 // invoke or a call.
557
558 // Run the inliner first. The theory is that we are walking bottom-up and so
559 // the callees have already been fully optimized, and we want to inline them
560 // into the callers so that our optimizations can reflect that.
561 // FIXME; Customize the threshold based on optimization level.
562 MainCGPipeline.addPass(InlinerPass());
563
564 // Now deduce any function attributes based in the current code.
565 MainCGPipeline.addPass(PostOrderFunctionAttrsPass());
566
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000567 // When at O3 add argument promotion to the pass pipeline.
568 // FIXME: It isn't at all clear why this should be limited to O3.
569 if (Level == O3)
570 MainCGPipeline.addPass(ArgumentPromotionPass());
571
Chandler Carruthe3f50642016-12-22 06:59:15 +0000572 // Lastly, add the core function simplification pipeline nested inside the
573 // CGSCC walk.
574 MainCGPipeline.addPass(createCGSCCToFunctionPassAdaptor(
575 buildFunctionSimplificationPipeline(Level, DebugLogging)));
576
Chandler Carruth719ffe12017-02-12 05:38:04 +0000577 // We wrap the CGSCC pipeline in a devirtualization repeater. This will try
578 // to detect when we devirtualize indirect calls and iterate the SCC passes
579 // in that case to try and catch knock-on inlining or function attrs
580 // opportunities. Then we add it to the module pipeline by walking the SCCs
581 // in postorder (or bottom-up).
Chandler Carruthe3f50642016-12-22 06:59:15 +0000582 MPM.addPass(
Chandler Carruth719ffe12017-02-12 05:38:04 +0000583 createModuleToPostOrderCGSCCPassAdaptor(createDevirtSCCRepeatedPass(
584 std::move(MainCGPipeline), MaxDevirtIterations, DebugLogging)));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000585
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000586 return MPM;
587}
588
589ModulePassManager
590PassBuilder::buildModuleOptimizationPipeline(OptimizationLevel Level,
591 bool DebugLogging) {
592 ModulePassManager MPM(DebugLogging);
593
594 // Optimize globals now that the module is fully simplified.
595 MPM.addPass(GlobalOptPass());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000596
Xinliang David Li126157c2017-05-22 16:41:57 +0000597 // Run partial inlining pass to partially inline functions that have
598 // large bodies.
599 if (RunPartialInlining)
600 MPM.addPass(PartialInlinerPass());
601
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000602 // Remove avail extern fns and globals definitions since we aren't compiling
603 // an object file for later LTO. For LTO we want to preserve these so they
604 // are eligible for inlining at link-time. Note if they are unreferenced they
605 // will be removed by GlobalDCE later, so this only impacts referenced
606 // available externally globals. Eventually they will be suppressed during
607 // codegen, but eliminating here enables more opportunity for GlobalDCE as it
608 // may make globals referenced by available external functions dead and saves
609 // running remaining passes on the eliminated functions.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000610 MPM.addPass(EliminateAvailableExternallyPass());
611
612 // Do RPO function attribute inference across the module to forward-propagate
613 // attributes where applicable.
614 // FIXME: Is this really an optimization rather than a canonicalization?
615 MPM.addPass(ReversePostOrderFunctionAttrsPass());
616
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000617 // Re-require GloblasAA here prior to function passes. This is particularly
Chandler Carruthe3f50642016-12-22 06:59:15 +0000618 // useful as the above will have inlined, DCE'ed, and function-attr
619 // propagated everything. We should at this point have a reasonably minimal
620 // and richly annotated call graph. By computing aliasing and mod/ref
621 // information for all local globals here, the late loop passes and notably
622 // the vectorizer will be able to use them to help recognize vectorizable
623 // memory operations.
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000624 MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000625
626 FunctionPassManager OptimizePM(DebugLogging);
627 OptimizePM.addPass(Float2IntPass());
628 // FIXME: We need to run some loop optimizations to re-rotate loops after
629 // simplify-cfg and others undo their rotation.
630
631 // Optimize the loop execution. These passes operate on entire loop nests
632 // rather than on each loop in an inside-out manner, and so they are actually
633 // function passes.
Chandler Carrutha95ff382017-01-27 00:50:21 +0000634
635 // First rotate loops that may have been un-rotated by prior passes.
636 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LoopRotatePass()));
637
638 // Distribute loops to allow partial vectorization. I.e. isolate dependences
639 // into separate loop that would otherwise inhibit vectorization. This is
640 // currently only performed for loops marked with the metadata
641 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000642 OptimizePM.addPass(LoopDistributePass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000643
644 // Now run the core loop vectorizer.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000645 OptimizePM.addPass(LoopVectorizePass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000646
Chandler Carruthbaabda92017-01-27 01:32:26 +0000647 // Eliminate loads by forwarding stores from the previous iteration to loads
648 // of the current iteration.
649 OptimizePM.addPass(LoopLoadEliminationPass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000650
651 // Cleanup after the loop optimization passes.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000652 OptimizePM.addPass(InstCombinePass());
653
Chandler Carrutha95ff382017-01-27 00:50:21 +0000654
655 // Now that we've formed fast to execute loop structures, we do further
656 // optimizations. These are run afterward as they might block doing complex
657 // analyses and transforms such as what are needed for loop vectorization.
658
Chandler Carruthe3f50642016-12-22 06:59:15 +0000659 // Optimize parallel scalar instruction chains into SIMD instructions.
660 OptimizePM.addPass(SLPVectorizerPass());
661
Chandler Carrutha95ff382017-01-27 00:50:21 +0000662 // Cleanup after all of the vectorizers.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000663 OptimizePM.addPass(SimplifyCFGPass());
664 OptimizePM.addPass(InstCombinePass());
665
666 // Unroll small loops to hide loop backedge latency and saturate any parallel
Chandler Carrutha95ff382017-01-27 00:50:21 +0000667 // execution resources of an out-of-order processor. We also then need to
668 // clean up redundancies and loop invariant code.
669 // FIXME: It would be really good to use a loop-integrated instruction
670 // combiner for cleanup here so that the unrolling and LICM can be pipelined
671 // across the loop nests.
Dehao Chen7d230322017-02-18 03:46:51 +0000672 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LoopUnrollPass::create(Level)));
Chandler Carrutha95ff382017-01-27 00:50:21 +0000673 OptimizePM.addPass(InstCombinePass());
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000674 OptimizePM.addPass(RequireAnalysisPass<OptimizationRemarkEmitterAnalysis, Function>());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000675 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LICMPass()));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000676
677 // Now that we've vectorized and unrolled loops, we may have more refined
678 // alignment information, try to re-derive it here.
679 OptimizePM.addPass(AlignmentFromAssumptionsPass());
680
Chandler Carrutha95ff382017-01-27 00:50:21 +0000681 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
682 // canonicalization pass that enables other optimizations. As a result,
683 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
684 // result too early.
685 OptimizePM.addPass(LoopSinkPass());
686
687 // And finally clean up LCSSA form before generating code.
688 OptimizePM.addPass(InstSimplifierPass());
689
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000690 // LoopSink (and other loop passes since the last simplifyCFG) might have
691 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
692 OptimizePM.addPass(SimplifyCFGPass());
693
Chandler Carrutha95ff382017-01-27 00:50:21 +0000694 // Add the core optimizing pipeline.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000695 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(OptimizePM)));
696
697 // Now we need to do some global optimization transforms.
698 // FIXME: It would seem like these should come first in the optimization
699 // pipeline and maybe be the bottom of the canonicalization pipeline? Weird
700 // ordering here.
701 MPM.addPass(GlobalDCEPass());
702 MPM.addPass(ConstantMergePass());
703
704 return MPM;
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000705}
706
Chandler Carruthe3f50642016-12-22 06:59:15 +0000707ModulePassManager
Chandler Carruth8b3be4e2017-06-01 11:39:39 +0000708PassBuilder::buildPerModuleDefaultPipeline(OptimizationLevel Level,
709 bool DebugLogging) {
710 assert(Level != O0 && "Must request optimizations for the default pipeline!");
711
712 ModulePassManager MPM(DebugLogging);
713
714 // Force any function attributes we want the rest of the pipeline to observe.
715 MPM.addPass(ForceFunctionAttrsPass());
716
717 // Add the core simplification pipeline.
718 MPM.addPass(buildModuleSimplificationPipeline(Level, DebugLogging));
719
720 // Now add the optimization pipeline.
721 MPM.addPass(buildModuleOptimizationPipeline(Level, DebugLogging));
722
723 return MPM;
724}
725
726ModulePassManager
727PassBuilder::buildThinLTOPreLinkDefaultPipeline(OptimizationLevel Level,
728 bool DebugLogging) {
729 assert(Level != O0 && "Must request optimizations for the default pipeline!");
730
731 ModulePassManager MPM(DebugLogging);
732
733 // Force any function attributes we want the rest of the pipeline to observe.
734 MPM.addPass(ForceFunctionAttrsPass());
735
736 // If we are planning to perform ThinLTO later, we don't bloat the code with
737 // unrolling/vectorization/... now. Just simplify the module as much as we
738 // can.
739 MPM.addPass(buildModuleSimplificationPipeline(Level, DebugLogging));
740
741 // Run partial inlining pass to partially inline functions that have
742 // large bodies.
743 // FIXME: It isn't clear whether this is really the right place to run this
744 // in ThinLTO. Because there is another canonicalization and simplification
745 // phase that will run after the thin link, running this here ends up with
746 // less information than will be available later and it may grow functions in
747 // ways that aren't beneficial.
748 if (RunPartialInlining)
749 MPM.addPass(PartialInlinerPass());
750
751 // Reduce the size of the IR as much as possible.
752 MPM.addPass(GlobalOptPass());
753
754 // Rename anon globals to be able to export them in the summary.
755 MPM.addPass(NameAnonGlobalPass());
756
757 return MPM;
758}
759
760ModulePassManager
761PassBuilder::buildThinLTODefaultPipeline(OptimizationLevel Level,
762 bool DebugLogging) {
763 // FIXME: The summary index is not hooked in the new pass manager yet.
764 // When it's going to be hooked, enable WholeProgramDevirt and LowerTypeTest
765 // here.
766
767 ModulePassManager MPM(DebugLogging);
768
769 // Force any function attributes we want the rest of the pipeline to observe.
770 MPM.addPass(ForceFunctionAttrsPass());
771
772 // During the ThinLTO backend phase we perform early indirect call promotion
773 // here, before globalopt. Otherwise imported available_externally functions
774 // look unreferenced and are removed.
775 MPM.addPass(PGOIndirectCallPromotion(true /* InLTO */,
776 PGOOpt && PGOOpt->SamplePGO &&
777 !PGOOpt->ProfileUseFile.empty()));
778
779 // Add the core simplification pipeline.
780 MPM.addPass(buildModuleSimplificationPipeline(Level, DebugLogging));
781
782 // Now add the optimization pipeline.
783 MPM.addPass(buildModuleOptimizationPipeline(Level, DebugLogging));
784
785 return MPM;
786}
787
788ModulePassManager
Chandler Carruthe3f50642016-12-22 06:59:15 +0000789PassBuilder::buildLTOPreLinkDefaultPipeline(OptimizationLevel Level,
790 bool DebugLogging) {
791 assert(Level != O0 && "Must request optimizations for the default pipeline!");
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000792 // FIXME: We should use a customized pre-link pipeline!
Chandler Carruthe3f50642016-12-22 06:59:15 +0000793 return buildPerModuleDefaultPipeline(Level, DebugLogging);
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000794}
795
Chandler Carruthe3f50642016-12-22 06:59:15 +0000796ModulePassManager PassBuilder::buildLTODefaultPipeline(OptimizationLevel Level,
797 bool DebugLogging) {
798 assert(Level != O0 && "Must request optimizations for the default pipeline!");
799 ModulePassManager MPM(DebugLogging);
800
Davide Italiano089a9122017-01-24 00:57:39 +0000801 // Remove unused virtual tables to improve the quality of code generated by
802 // whole-program devirtualization and bitset lowering.
803 MPM.addPass(GlobalDCEPass());
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000804
Davide Italiano089a9122017-01-24 00:57:39 +0000805 // Force any function attributes we want the rest of the pipeline to observe.
806 MPM.addPass(ForceFunctionAttrsPass());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000807
Davide Italiano089a9122017-01-24 00:57:39 +0000808 // Do basic inference of function attributes from known properties of system
809 // libraries and other oracles.
810 MPM.addPass(InferFunctionAttrsPass());
811
812 if (Level > 1) {
813 // Indirect call promotion. This should promote all the targets that are
814 // left by the earlier promotion pass that promotes intra-module targets.
815 // This two-step promotion is to save the compile time. For LTO, it should
816 // produce the same result as if we only do promotion here.
Dehao Chencc75d242017-02-23 22:15:18 +0000817 MPM.addPass(PGOIndirectCallPromotion(true /* InLTO */,
818 PGOOpt && PGOOpt->SamplePGO));
Davide Italiano089a9122017-01-24 00:57:39 +0000819
820 // Propagate constants at call sites into the functions they call. This
821 // opens opportunities for globalopt (and inlining) by substituting function
822 // pointers passed as arguments to direct uses of functions.
823 MPM.addPass(IPSCCPPass());
824 }
825
826 // Now deduce any function attributes based in the current code.
827 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(
828 PostOrderFunctionAttrsPass()));
829
830 // Do RPO function attribute inference across the module to forward-propagate
831 // attributes where applicable.
832 // FIXME: Is this really an optimization rather than a canonicalization?
833 MPM.addPass(ReversePostOrderFunctionAttrsPass());
834
835 // Use inragne annotations on GEP indices to split globals where beneficial.
836 MPM.addPass(GlobalSplitPass());
837
838 // Run whole program optimization of virtual call when the list of callees
839 // is fixed.
840 MPM.addPass(WholeProgramDevirtPass());
841
842 // Stop here at -O1.
843 if (Level == 1)
844 return MPM;
845
846 // Optimize globals to try and fold them into constants.
847 MPM.addPass(GlobalOptPass());
848
849 // Promote any localized globals to SSA registers.
850 MPM.addPass(createModuleToFunctionPassAdaptor(PromotePass()));
851
852 // Linking modules together can lead to duplicate global constant, only
853 // keep one copy of each constant.
854 MPM.addPass(ConstantMergePass());
855
856 // Remove unused arguments from functions.
857 MPM.addPass(DeadArgumentEliminationPass());
858
859 // Reduce the code after globalopt and ipsccp. Both can open up significant
860 // simplification opportunities, and both can propagate functions through
861 // function pointers. When this happens, we often have to resolve varargs
862 // calls, etc, so let instcombine do this.
863 // FIXME: add peephole extensions here as the legacy PM does.
864 MPM.addPass(createModuleToFunctionPassAdaptor(InstCombinePass()));
865
866 // Note: historically, the PruneEH pass was run first to deduce nounwind and
867 // generally clean up exception handling overhead. It isn't clear this is
868 // valuable as the inliner doesn't currently care whether it is inlining an
869 // invoke or a call.
870 // Run the inliner now.
871 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(InlinerPass()));
872
873 // Optimize globals again after we ran the inliner.
874 MPM.addPass(GlobalOptPass());
875
876 // Garbage collect dead functions.
877 // FIXME: Add ArgumentPromotion pass after once it's ported.
878 MPM.addPass(GlobalDCEPass());
879
880 FunctionPassManager FPM(DebugLogging);
881
882 // The IPO Passes may leave cruft around. Clean up after them.
883 // FIXME: add peephole extensions here as the legacy PM does.
884 FPM.addPass(InstCombinePass());
885 FPM.addPass(JumpThreadingPass());
886
887 // Break up allocas
888 FPM.addPass(SROA());
889
890 // Run a few AA driver optimizations here and now to cleanup the code.
891 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
892
893 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(
894 PostOrderFunctionAttrsPass()));
895 // FIXME: here we run IP alias analysis in the legacy PM.
896
897 FunctionPassManager MainFPM;
898
899 // FIXME: once we fix LoopPass Manager, add LICM here.
900 // FIXME: once we provide support for enabling MLSM, add it here.
901 // FIXME: once we provide support for enabling NewGVN, add it here.
Davide Italiano8a09b8e2017-05-22 23:41:40 +0000902 if (RunNewGVN)
903 MainFPM.addPass(NewGVNPass());
904 else
905 MainFPM.addPass(GVN());
Davide Italiano089a9122017-01-24 00:57:39 +0000906
907 // Remove dead memcpy()'s.
908 MainFPM.addPass(MemCpyOptPass());
909
910 // Nuke dead stores.
911 MainFPM.addPass(DSEPass());
912
913 // FIXME: at this point, we run a bunch of loop passes:
914 // indVarSimplify, loopDeletion, loopInterchange, loopUnrool,
915 // loopVectorize. Enable them once the remaining issue with LPM
916 // are sorted out.
917
918 MainFPM.addPass(InstCombinePass());
919 MainFPM.addPass(SimplifyCFGPass());
920 MainFPM.addPass(SCCPPass());
921 MainFPM.addPass(InstCombinePass());
922 MainFPM.addPass(BDCEPass());
923
924 // FIXME: We may want to run SLPVectorizer here.
925 // After vectorization, assume intrinsics may tell us more
926 // about pointer alignments.
927#if 0
928 MainFPM.add(AlignmentFromAssumptionsPass());
929#endif
930
Davide Italiano089a9122017-01-24 00:57:39 +0000931 // FIXME: add peephole extensions to the PM here.
932 MainFPM.addPass(InstCombinePass());
933 MainFPM.addPass(JumpThreadingPass());
934 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(MainFPM)));
935
936 // Create a function that performs CFI checks for cross-DSO calls with
937 // targets in the current module.
938 MPM.addPass(CrossDSOCFIPass());
939
940 // Lower type metadata and the type.test intrinsic. This pass supports
941 // clang's control flow integrity mechanisms (-fsanitize=cfi*) and needs
942 // to be run at link time if CFI is enabled. This pass does nothing if
943 // CFI is disabled.
944 // Enable once we add support for the summary in the new PM.
945#if 0
Peter Collingbourne857aba42017-02-09 21:45:01 +0000946 MPM.addPass(LowerTypeTestsPass(Summary ? PassSummaryAction::Export :
947 PassSummaryAction::None,
Davide Italiano089a9122017-01-24 00:57:39 +0000948 Summary));
949#endif
950
951 // Add late LTO optimization passes.
952 // Delete basic blocks, which optimization passes may have killed.
953 MPM.addPass(createModuleToFunctionPassAdaptor(SimplifyCFGPass()));
954
955 // Drop bodies of available eternally objects to improve GlobalDCE.
956 MPM.addPass(EliminateAvailableExternallyPass());
957
958 // Now that we have optimized the program, discard unreachable functions.
959 MPM.addPass(GlobalDCEPass());
960
961 // FIXME: Enable MergeFuncs, conditionally, after ported, maybe.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000962 return MPM;
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000963}
964
Chandler Carruth060ad612016-12-23 20:38:19 +0000965AAManager PassBuilder::buildDefaultAAPipeline() {
966 AAManager AA;
967
968 // The order in which these are registered determines their priority when
969 // being queried.
970
971 // First we register the basic alias analysis that provides the majority of
972 // per-function local AA logic. This is a stateless, on-demand local set of
973 // AA techniques.
974 AA.registerFunctionAnalysis<BasicAA>();
975
976 // Next we query fast, specialized alias analyses that wrap IR-embedded
977 // information about aliasing.
978 AA.registerFunctionAnalysis<ScopedNoAliasAA>();
979 AA.registerFunctionAnalysis<TypeBasedAA>();
980
981 // Add support for querying global aliasing information when available.
Chandler Carruth534d6442016-12-24 05:11:17 +0000982 // Because the `AAManager` is a function analysis and `GlobalsAA` is a module
983 // analysis, all that the `AAManager` can do is query for any *cached*
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000984 // results from `GlobalsAA` through a readonly proxy.
Chandler Carruth060ad612016-12-23 20:38:19 +0000985 AA.registerModuleAnalysis<GlobalsAA>();
Chandler Carruth060ad612016-12-23 20:38:19 +0000986
987 return AA;
988}
989
Chandler Carruth241bf242016-08-03 07:44:48 +0000990static Optional<int> parseRepeatPassName(StringRef Name) {
991 if (!Name.consume_front("repeat<") || !Name.consume_back(">"))
992 return None;
993 int Count;
994 if (Name.getAsInteger(0, Count) || Count <= 0)
995 return None;
996 return Count;
997}
998
Chandler Carruth05ca5ac2016-12-28 11:07:33 +0000999static Optional<int> parseDevirtPassName(StringRef Name) {
1000 if (!Name.consume_front("devirt<") || !Name.consume_back(">"))
1001 return None;
1002 int Count;
1003 if (Name.getAsInteger(0, Count) || Count <= 0)
1004 return None;
1005 return Count;
1006}
1007
Chandler Carruth8b3be4e2017-06-01 11:39:39 +00001008/// Tests whether a pass name starts with a valid prefix for a default pipeline
1009/// alias.
1010static bool startsWithDefaultPipelineAliasPrefix(StringRef Name) {
1011 return Name.startswith("default") || Name.startswith("thinlto") ||
1012 Name.startswith("lto");
1013}
1014
Chandler Carruth66445382014-01-11 08:16:35 +00001015static bool isModulePassName(StringRef Name) {
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001016 // Manually handle aliases for pre-configured pipeline fragments.
Chandler Carruth8b3be4e2017-06-01 11:39:39 +00001017 if (startsWithDefaultPipelineAliasPrefix(Name))
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001018 return DefaultAliasRegex.match(Name);
1019
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001020 // Explicitly handle pass manager names.
1021 if (Name == "module")
1022 return true;
1023 if (Name == "cgscc")
1024 return true;
1025 if (Name == "function")
1026 return true;
1027
Chandler Carruth241bf242016-08-03 07:44:48 +00001028 // Explicitly handle custom-parsed pass names.
1029 if (parseRepeatPassName(Name))
1030 return true;
1031
Chandler Carruth74a8a222016-06-17 07:15:29 +00001032#define MODULE_PASS(NAME, CREATE_PASS) \
1033 if (Name == NAME) \
1034 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +00001035#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001036 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +00001037 return true;
1038#include "PassRegistry.def"
1039
Chandler Carruth66445382014-01-11 08:16:35 +00001040 return false;
1041}
1042
Chandler Carruth572e3402014-04-21 11:12:00 +00001043static bool isCGSCCPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001044 // Explicitly handle pass manager names.
1045 if (Name == "cgscc")
1046 return true;
1047 if (Name == "function")
1048 return true;
1049
Chandler Carruth241bf242016-08-03 07:44:48 +00001050 // Explicitly handle custom-parsed pass names.
1051 if (parseRepeatPassName(Name))
1052 return true;
Chandler Carruth05ca5ac2016-12-28 11:07:33 +00001053 if (parseDevirtPassName(Name))
1054 return true;
Chandler Carruth241bf242016-08-03 07:44:48 +00001055
Chandler Carruth74a8a222016-06-17 07:15:29 +00001056#define CGSCC_PASS(NAME, CREATE_PASS) \
1057 if (Name == NAME) \
1058 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +00001059#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001060 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +00001061 return true;
1062#include "PassRegistry.def"
1063
Chandler Carruth572e3402014-04-21 11:12:00 +00001064 return false;
1065}
1066
Chandler Carruthd8330982014-01-12 09:34:22 +00001067static bool isFunctionPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001068 // Explicitly handle pass manager names.
1069 if (Name == "function")
1070 return true;
1071 if (Name == "loop")
1072 return true;
1073
Chandler Carruth241bf242016-08-03 07:44:48 +00001074 // Explicitly handle custom-parsed pass names.
1075 if (parseRepeatPassName(Name))
1076 return true;
1077
Chandler Carruth74a8a222016-06-17 07:15:29 +00001078#define FUNCTION_PASS(NAME, CREATE_PASS) \
1079 if (Name == NAME) \
1080 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +00001081#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001082 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +00001083 return true;
1084#include "PassRegistry.def"
1085
Chandler Carruthd8330982014-01-12 09:34:22 +00001086 return false;
1087}
1088
Justin Bognereecc3c82016-02-25 07:23:08 +00001089static bool isLoopPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001090 // Explicitly handle pass manager names.
1091 if (Name == "loop")
1092 return true;
1093
Chandler Carruth241bf242016-08-03 07:44:48 +00001094 // Explicitly handle custom-parsed pass names.
1095 if (parseRepeatPassName(Name))
1096 return true;
1097
Chandler Carruth74a8a222016-06-17 07:15:29 +00001098#define LOOP_PASS(NAME, CREATE_PASS) \
1099 if (Name == NAME) \
1100 return true;
Justin Bognereecc3c82016-02-25 07:23:08 +00001101#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
1102 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1103 return true;
1104#include "PassRegistry.def"
1105
1106 return false;
1107}
1108
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001109Optional<std::vector<PassBuilder::PipelineElement>>
1110PassBuilder::parsePipelineText(StringRef Text) {
1111 std::vector<PipelineElement> ResultPipeline;
1112
1113 SmallVector<std::vector<PipelineElement> *, 4> PipelineStack = {
1114 &ResultPipeline};
1115 for (;;) {
1116 std::vector<PipelineElement> &Pipeline = *PipelineStack.back();
1117 size_t Pos = Text.find_first_of(",()");
1118 Pipeline.push_back({Text.substr(0, Pos), {}});
1119
1120 // If we have a single terminating name, we're done.
1121 if (Pos == Text.npos)
1122 break;
1123
1124 char Sep = Text[Pos];
1125 Text = Text.substr(Pos + 1);
1126 if (Sep == ',')
1127 // Just a name ending in a comma, continue.
1128 continue;
1129
1130 if (Sep == '(') {
1131 // Push the inner pipeline onto the stack to continue processing.
1132 PipelineStack.push_back(&Pipeline.back().InnerPipeline);
1133 continue;
1134 }
1135
1136 assert(Sep == ')' && "Bogus separator!");
1137 // When handling the close parenthesis, we greedily consume them to avoid
1138 // empty strings in the pipeline.
1139 do {
1140 // If we try to pop the outer pipeline we have unbalanced parentheses.
1141 if (PipelineStack.size() == 1)
1142 return None;
1143
1144 PipelineStack.pop_back();
1145 } while (Text.consume_front(")"));
1146
1147 // Check if we've finished parsing.
1148 if (Text.empty())
1149 break;
1150
1151 // Otherwise, the end of an inner pipeline always has to be followed by
1152 // a comma, and then we can continue.
1153 if (!Text.consume_front(","))
1154 return None;
1155 }
1156
1157 if (PipelineStack.size() > 1)
1158 // Unbalanced paretheses.
1159 return None;
1160
1161 assert(PipelineStack.back() == &ResultPipeline &&
1162 "Wrong pipeline at the bottom of the stack!");
1163 return {std::move(ResultPipeline)};
1164}
1165
1166bool PassBuilder::parseModulePass(ModulePassManager &MPM,
1167 const PipelineElement &E, bool VerifyEachPass,
1168 bool DebugLogging) {
1169 auto &Name = E.Name;
1170 auto &InnerPipeline = E.InnerPipeline;
1171
1172 // First handle complex passes like the pass managers which carry pipelines.
1173 if (!InnerPipeline.empty()) {
1174 if (Name == "module") {
1175 ModulePassManager NestedMPM(DebugLogging);
1176 if (!parseModulePassPipeline(NestedMPM, InnerPipeline, VerifyEachPass,
1177 DebugLogging))
1178 return false;
1179 MPM.addPass(std::move(NestedMPM));
1180 return true;
1181 }
1182 if (Name == "cgscc") {
1183 CGSCCPassManager CGPM(DebugLogging);
1184 if (!parseCGSCCPassPipeline(CGPM, InnerPipeline, VerifyEachPass,
1185 DebugLogging))
1186 return false;
1187 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPM),
1188 DebugLogging));
1189 return true;
1190 }
1191 if (Name == "function") {
1192 FunctionPassManager FPM(DebugLogging);
1193 if (!parseFunctionPassPipeline(FPM, InnerPipeline, VerifyEachPass,
1194 DebugLogging))
1195 return false;
1196 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
1197 return true;
1198 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001199 if (auto Count = parseRepeatPassName(Name)) {
1200 ModulePassManager NestedMPM(DebugLogging);
1201 if (!parseModulePassPipeline(NestedMPM, InnerPipeline, VerifyEachPass,
1202 DebugLogging))
1203 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001204 MPM.addPass(createRepeatedPass(*Count, std::move(NestedMPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001205 return true;
1206 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001207 // Normal passes can't have pipelines.
1208 return false;
1209 }
1210
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001211 // Manually handle aliases for pre-configured pipeline fragments.
Chandler Carruth8b3be4e2017-06-01 11:39:39 +00001212 if (startsWithDefaultPipelineAliasPrefix(Name)) {
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001213 SmallVector<StringRef, 3> Matches;
1214 if (!DefaultAliasRegex.match(Name, &Matches))
1215 return false;
1216 assert(Matches.size() == 3 && "Must capture two matched strings!");
1217
Jordan Rosef85a95f2016-07-25 18:34:51 +00001218 OptimizationLevel L = StringSwitch<OptimizationLevel>(Matches[2])
1219 .Case("O0", O0)
1220 .Case("O1", O1)
1221 .Case("O2", O2)
1222 .Case("O3", O3)
1223 .Case("Os", Os)
1224 .Case("Oz", Oz);
Chandler Carruthe3f50642016-12-22 06:59:15 +00001225 if (L == O0)
1226 // At O0 we do nothing at all!
1227 return true;
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001228
1229 if (Matches[1] == "default") {
Chandler Carruthe3f50642016-12-22 06:59:15 +00001230 MPM.addPass(buildPerModuleDefaultPipeline(L, DebugLogging));
Chandler Carruth8b3be4e2017-06-01 11:39:39 +00001231 } else if (Matches[1] == "thinlto-pre-link") {
1232 MPM.addPass(buildThinLTOPreLinkDefaultPipeline(L, DebugLogging));
1233 } else if (Matches[1] == "thinlto") {
1234 MPM.addPass(buildThinLTODefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001235 } else if (Matches[1] == "lto-pre-link") {
Chandler Carruthe3f50642016-12-22 06:59:15 +00001236 MPM.addPass(buildLTOPreLinkDefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001237 } else {
1238 assert(Matches[1] == "lto" && "Not one of the matched options!");
Chandler Carruthe3f50642016-12-22 06:59:15 +00001239 MPM.addPass(buildLTODefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001240 }
1241 return true;
1242 }
1243
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001244 // Finally expand the basic registered passes from the .inc file.
Chandler Carruth58944182014-04-21 08:08:50 +00001245#define MODULE_PASS(NAME, CREATE_PASS) \
1246 if (Name == NAME) { \
1247 MPM.addPass(CREATE_PASS); \
1248 return true; \
Chandler Carruth52eef882014-01-12 12:15:39 +00001249 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001250#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
1251 if (Name == "require<" NAME ">") { \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001252 MPM.addPass( \
1253 RequireAnalysisPass< \
1254 std::remove_reference<decltype(CREATE_PASS)>::type, Module>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001255 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001256 } \
1257 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001258 MPM.addPass(InvalidateAnalysisPass< \
1259 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001260 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001261 }
1262#include "PassRegistry.def"
1263
Chandler Carruth66445382014-01-11 08:16:35 +00001264 return false;
1265}
1266
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001267bool PassBuilder::parseCGSCCPass(CGSCCPassManager &CGPM,
1268 const PipelineElement &E, bool VerifyEachPass,
1269 bool DebugLogging) {
1270 auto &Name = E.Name;
1271 auto &InnerPipeline = E.InnerPipeline;
1272
1273 // First handle complex passes like the pass managers which carry pipelines.
1274 if (!InnerPipeline.empty()) {
1275 if (Name == "cgscc") {
1276 CGSCCPassManager NestedCGPM(DebugLogging);
1277 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1278 DebugLogging))
1279 return false;
1280 // Add the nested pass manager with the appropriate adaptor.
1281 CGPM.addPass(std::move(NestedCGPM));
1282 return true;
1283 }
1284 if (Name == "function") {
1285 FunctionPassManager FPM(DebugLogging);
1286 if (!parseFunctionPassPipeline(FPM, InnerPipeline, VerifyEachPass,
1287 DebugLogging))
1288 return false;
1289 // Add the nested pass manager with the appropriate adaptor.
1290 CGPM.addPass(
1291 createCGSCCToFunctionPassAdaptor(std::move(FPM), DebugLogging));
1292 return true;
1293 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001294 if (auto Count = parseRepeatPassName(Name)) {
1295 CGSCCPassManager NestedCGPM(DebugLogging);
1296 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1297 DebugLogging))
1298 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001299 CGPM.addPass(createRepeatedPass(*Count, std::move(NestedCGPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001300 return true;
1301 }
Chandler Carruth05ca5ac2016-12-28 11:07:33 +00001302 if (auto MaxRepetitions = parseDevirtPassName(Name)) {
1303 CGSCCPassManager NestedCGPM(DebugLogging);
1304 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1305 DebugLogging))
1306 return false;
1307 CGPM.addPass(createDevirtSCCRepeatedPass(std::move(NestedCGPM),
1308 *MaxRepetitions, DebugLogging));
1309 return true;
1310 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001311 // Normal passes can't have pipelines.
1312 return false;
1313 }
1314
1315 // Now expand the basic registered passes from the .inc file.
Chandler Carruth572e3402014-04-21 11:12:00 +00001316#define CGSCC_PASS(NAME, CREATE_PASS) \
1317 if (Name == NAME) { \
1318 CGPM.addPass(CREATE_PASS); \
1319 return true; \
1320 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001321#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
1322 if (Name == "require<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001323 CGPM.addPass(RequireAnalysisPass< \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001324 std::remove_reference<decltype(CREATE_PASS)>::type, \
Chandler Carruth88823462016-08-24 09:37:14 +00001325 LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, \
1326 CGSCCUpdateResult &>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001327 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001328 } \
1329 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001330 CGPM.addPass(InvalidateAnalysisPass< \
1331 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001332 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001333 }
1334#include "PassRegistry.def"
1335
Chandler Carruth572e3402014-04-21 11:12:00 +00001336 return false;
1337}
1338
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001339bool PassBuilder::parseFunctionPass(FunctionPassManager &FPM,
1340 const PipelineElement &E,
1341 bool VerifyEachPass, bool DebugLogging) {
1342 auto &Name = E.Name;
1343 auto &InnerPipeline = E.InnerPipeline;
1344
1345 // First handle complex passes like the pass managers which carry pipelines.
1346 if (!InnerPipeline.empty()) {
1347 if (Name == "function") {
1348 FunctionPassManager NestedFPM(DebugLogging);
1349 if (!parseFunctionPassPipeline(NestedFPM, InnerPipeline, VerifyEachPass,
1350 DebugLogging))
1351 return false;
1352 // Add the nested pass manager with the appropriate adaptor.
1353 FPM.addPass(std::move(NestedFPM));
1354 return true;
1355 }
1356 if (Name == "loop") {
1357 LoopPassManager LPM(DebugLogging);
1358 if (!parseLoopPassPipeline(LPM, InnerPipeline, VerifyEachPass,
1359 DebugLogging))
1360 return false;
1361 // Add the nested pass manager with the appropriate adaptor.
1362 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM)));
1363 return true;
1364 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001365 if (auto Count = parseRepeatPassName(Name)) {
1366 FunctionPassManager NestedFPM(DebugLogging);
1367 if (!parseFunctionPassPipeline(NestedFPM, InnerPipeline, VerifyEachPass,
1368 DebugLogging))
1369 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001370 FPM.addPass(createRepeatedPass(*Count, std::move(NestedFPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001371 return true;
1372 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001373 // Normal passes can't have pipelines.
1374 return false;
1375 }
1376
1377 // Now expand the basic registered passes from the .inc file.
Chandler Carruth58944182014-04-21 08:08:50 +00001378#define FUNCTION_PASS(NAME, CREATE_PASS) \
1379 if (Name == NAME) { \
1380 FPM.addPass(CREATE_PASS); \
1381 return true; \
Chandler Carruth52eef882014-01-12 12:15:39 +00001382 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001383#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
1384 if (Name == "require<" NAME ">") { \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001385 FPM.addPass( \
1386 RequireAnalysisPass< \
1387 std::remove_reference<decltype(CREATE_PASS)>::type, Function>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001388 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001389 } \
1390 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001391 FPM.addPass(InvalidateAnalysisPass< \
1392 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001393 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001394 }
1395#include "PassRegistry.def"
1396
Chandler Carruthd8330982014-01-12 09:34:22 +00001397 return false;
1398}
1399
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001400bool PassBuilder::parseLoopPass(LoopPassManager &LPM, const PipelineElement &E,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001401 bool VerifyEachPass, bool DebugLogging) {
Chandler Carruth241bf242016-08-03 07:44:48 +00001402 StringRef Name = E.Name;
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001403 auto &InnerPipeline = E.InnerPipeline;
1404
1405 // First handle complex passes like the pass managers which carry pipelines.
1406 if (!InnerPipeline.empty()) {
1407 if (Name == "loop") {
1408 LoopPassManager NestedLPM(DebugLogging);
1409 if (!parseLoopPassPipeline(NestedLPM, InnerPipeline, VerifyEachPass,
1410 DebugLogging))
1411 return false;
1412 // Add the nested pass manager with the appropriate adaptor.
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001413 LPM.addPass(std::move(NestedLPM));
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001414 return true;
1415 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001416 if (auto Count = parseRepeatPassName(Name)) {
1417 LoopPassManager NestedLPM(DebugLogging);
1418 if (!parseLoopPassPipeline(NestedLPM, InnerPipeline, VerifyEachPass,
1419 DebugLogging))
1420 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001421 LPM.addPass(createRepeatedPass(*Count, std::move(NestedLPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001422 return true;
1423 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001424 // Normal passes can't have pipelines.
1425 return false;
1426 }
1427
1428 // Now expand the basic registered passes from the .inc file.
Justin Bognereecc3c82016-02-25 07:23:08 +00001429#define LOOP_PASS(NAME, CREATE_PASS) \
1430 if (Name == NAME) { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001431 LPM.addPass(CREATE_PASS); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001432 return true; \
1433 }
1434#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
1435 if (Name == "require<" NAME ">") { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001436 LPM.addPass(RequireAnalysisPass< \
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001437 std::remove_reference<decltype(CREATE_PASS)>::type, Loop, \
1438 LoopAnalysisManager, LoopStandardAnalysisResults &, \
1439 LPMUpdater &>()); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001440 return true; \
1441 } \
1442 if (Name == "invalidate<" NAME ">") { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001443 LPM.addPass(InvalidateAnalysisPass< \
Chandler Carruth470734b2016-02-26 12:30:18 +00001444 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001445 return true; \
1446 }
1447#include "PassRegistry.def"
1448
1449 return false;
1450}
1451
Chandler Carruthedf59962016-02-18 09:45:17 +00001452bool PassBuilder::parseAAPassName(AAManager &AA, StringRef Name) {
Chandler Carruth45a9c202016-03-11 09:15:11 +00001453#define MODULE_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
1454 if (Name == NAME) { \
1455 AA.registerModuleAnalysis< \
1456 std::remove_reference<decltype(CREATE_PASS)>::type>(); \
1457 return true; \
1458 }
Chandler Carruthedf59962016-02-18 09:45:17 +00001459#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
1460 if (Name == NAME) { \
Chandler Carruth58dde8c2016-02-26 12:17:54 +00001461 AA.registerFunctionAnalysis< \
1462 std::remove_reference<decltype(CREATE_PASS)>::type>(); \
Chandler Carruthedf59962016-02-18 09:45:17 +00001463 return true; \
1464 }
1465#include "PassRegistry.def"
1466
1467 return false;
1468}
1469
Justin Bognereecc3c82016-02-25 07:23:08 +00001470bool PassBuilder::parseLoopPassPipeline(LoopPassManager &LPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001471 ArrayRef<PipelineElement> Pipeline,
Justin Bognereecc3c82016-02-25 07:23:08 +00001472 bool VerifyEachPass,
1473 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001474 for (const auto &Element : Pipeline) {
1475 if (!parseLoopPass(LPM, Element, VerifyEachPass, DebugLogging))
1476 return false;
1477 // FIXME: No verifier support for Loop passes!
Justin Bognereecc3c82016-02-25 07:23:08 +00001478 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001479 return true;
Justin Bognereecc3c82016-02-25 07:23:08 +00001480}
1481
Chandler Carruth1ff77242015-03-07 09:02:36 +00001482bool PassBuilder::parseFunctionPassPipeline(FunctionPassManager &FPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001483 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001484 bool VerifyEachPass,
1485 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001486 for (const auto &Element : Pipeline) {
1487 if (!parseFunctionPass(FPM, Element, VerifyEachPass, DebugLogging))
1488 return false;
1489 if (VerifyEachPass)
1490 FPM.addPass(VerifierPass());
Chandler Carruthd8330982014-01-12 09:34:22 +00001491 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001492 return true;
Chandler Carruthd8330982014-01-12 09:34:22 +00001493}
1494
Chandler Carruth1ff77242015-03-07 09:02:36 +00001495bool PassBuilder::parseCGSCCPassPipeline(CGSCCPassManager &CGPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001496 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001497 bool VerifyEachPass,
1498 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001499 for (const auto &Element : Pipeline) {
1500 if (!parseCGSCCPass(CGPM, Element, VerifyEachPass, DebugLogging))
1501 return false;
1502 // FIXME: No verifier support for CGSCC passes!
Chandler Carruth572e3402014-04-21 11:12:00 +00001503 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001504 return true;
Chandler Carruth572e3402014-04-21 11:12:00 +00001505}
1506
NAKAMURA Takumia42f5282016-05-16 10:13:37 +00001507void PassBuilder::crossRegisterProxies(LoopAnalysisManager &LAM,
1508 FunctionAnalysisManager &FAM,
1509 CGSCCAnalysisManager &CGAM,
1510 ModuleAnalysisManager &MAM) {
1511 MAM.registerPass([&] { return FunctionAnalysisManagerModuleProxy(FAM); });
1512 MAM.registerPass([&] { return CGSCCAnalysisManagerModuleProxy(CGAM); });
NAKAMURA Takumia42f5282016-05-16 10:13:37 +00001513 CGAM.registerPass([&] { return ModuleAnalysisManagerCGSCCProxy(MAM); });
1514 FAM.registerPass([&] { return CGSCCAnalysisManagerFunctionProxy(CGAM); });
1515 FAM.registerPass([&] { return ModuleAnalysisManagerFunctionProxy(MAM); });
1516 FAM.registerPass([&] { return LoopAnalysisManagerFunctionProxy(LAM); });
1517 LAM.registerPass([&] { return FunctionAnalysisManagerLoopProxy(FAM); });
1518}
1519
Chandler Carruth1ff77242015-03-07 09:02:36 +00001520bool PassBuilder::parseModulePassPipeline(ModulePassManager &MPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001521 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001522 bool VerifyEachPass,
1523 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001524 for (const auto &Element : Pipeline) {
1525 if (!parseModulePass(MPM, Element, VerifyEachPass, DebugLogging))
1526 return false;
1527 if (VerifyEachPass)
1528 MPM.addPass(VerifierPass());
Chandler Carruth66445382014-01-11 08:16:35 +00001529 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001530 return true;
Chandler Carruth66445382014-01-11 08:16:35 +00001531}
1532
1533// Primary pass pipeline description parsing routine.
1534// FIXME: Should this routine accept a TargetMachine or require the caller to
1535// pre-populate the analysis managers with target-specific stuff?
Chandler Carruth1ff77242015-03-07 09:02:36 +00001536bool PassBuilder::parsePassPipeline(ModulePassManager &MPM,
1537 StringRef PipelineText, bool VerifyEachPass,
1538 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001539 auto Pipeline = parsePipelineText(PipelineText);
1540 if (!Pipeline || Pipeline->empty())
1541 return false;
Chandler Carruth66445382014-01-11 08:16:35 +00001542
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001543 // If the first name isn't at the module layer, wrap the pipeline up
1544 // automatically.
1545 StringRef FirstName = Pipeline->front().Name;
Chandler Carruth66445382014-01-11 08:16:35 +00001546
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001547 if (!isModulePassName(FirstName)) {
1548 if (isCGSCCPassName(FirstName))
1549 Pipeline = {{"cgscc", std::move(*Pipeline)}};
1550 else if (isFunctionPassName(FirstName))
1551 Pipeline = {{"function", std::move(*Pipeline)}};
1552 else if (isLoopPassName(FirstName))
1553 Pipeline = {{"function", {{"loop", std::move(*Pipeline)}}}};
1554 else
1555 // Unknown pass name!
Chandler Carruth572e3402014-04-21 11:12:00 +00001556 return false;
Chandler Carruth572e3402014-04-21 11:12:00 +00001557 }
1558
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001559 return parseModulePassPipeline(MPM, *Pipeline, VerifyEachPass, DebugLogging);
Chandler Carruth66445382014-01-11 08:16:35 +00001560}
Chandler Carruthedf59962016-02-18 09:45:17 +00001561
1562bool PassBuilder::parseAAPipeline(AAManager &AA, StringRef PipelineText) {
Chandler Carruth060ad612016-12-23 20:38:19 +00001563 // If the pipeline just consists of the word 'default' just replace the AA
1564 // manager with our default one.
1565 if (PipelineText == "default") {
1566 AA = buildDefaultAAPipeline();
1567 return true;
1568 }
1569
Chandler Carruthedf59962016-02-18 09:45:17 +00001570 while (!PipelineText.empty()) {
1571 StringRef Name;
1572 std::tie(Name, PipelineText) = PipelineText.split(',');
1573 if (!parseAAPassName(AA, Name))
1574 return false;
1575 }
1576
1577 return true;
1578}