blob: 6ae952d896d8c2c767dc822ee77480b31ebf337a [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"
Teresa Johnsonf93b2462016-08-12 13:53:02 +000042#include "llvm/Analysis/ModuleSummaryAnalysis.h"
Adam Nemet79ac42a2016-07-18 16:29:21 +000043#include "llvm/Analysis/OptimizationDiagnosticInfo.h"
Hongbin Zheng3f978402016-02-25 17:54:07 +000044#include "llvm/Analysis/PostDominators.h"
Easwaran Raman019e0bf2016-06-03 22:54:26 +000045#include "llvm/Analysis/ProfileSummaryInfo.h"
Hongbin Zhengbc539772016-02-25 17:54:25 +000046#include "llvm/Analysis/RegionInfo.h"
Chandler Carruth2f1fd162015-08-17 02:08:17 +000047#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth2b3d0442016-02-20 04:01:45 +000048#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
Chandler Carruthd6091a02016-02-20 04:03:06 +000049#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth8ca43222015-01-15 11:39:46 +000050#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruthe0385522015-02-01 10:11:22 +000051#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruthc1dc3842016-02-20 04:04:52 +000052#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Michael Kuperstein82d5da52016-06-24 20:13:42 +000053#include "llvm/CodeGen/PreISelIntrinsicLowering.h"
Wei Mi90d195a2016-07-08 03:32:49 +000054#include "llvm/CodeGen/UnreachableBlockElim.h"
Chandler Carruth64764b42015-01-14 10:19:28 +000055#include "llvm/IR/Dominators.h"
Chandler Carruth52eef882014-01-12 12:15:39 +000056#include "llvm/IR/IRPrintingPasses.h"
Chandler Carruth66445382014-01-11 08:16:35 +000057#include "llvm/IR/PassManager.h"
Chandler Carruth4d356312014-01-20 11:34:08 +000058#include "llvm/IR/Verifier.h"
Chandler Carruth52eef882014-01-12 12:15:39 +000059#include "llvm/Support/Debug.h"
Chandler Carruth8b5a74192016-02-28 22:16:03 +000060#include "llvm/Support/Regex.h"
Chandler Carruthe0385522015-02-01 10:11:22 +000061#include "llvm/Target/TargetMachine.h"
Xinliang David Li64dbb292016-06-05 05:12:23 +000062#include "llvm/Transforms/GCOVProfiler.h"
Chandler Carruth67fc52f2016-08-17 02:56:20 +000063#include "llvm/Transforms/IPO/AlwaysInliner.h"
Chandler Carruthaddcda42017-02-09 23:46:27 +000064#include "llvm/Transforms/IPO/ArgumentPromotion.h"
Davide Italiano164b9bc2016-05-05 00:51:09 +000065#include "llvm/Transforms/IPO/ConstantMerge.h"
Davide Italiano92b933a2016-07-09 03:25:35 +000066#include "llvm/Transforms/IPO/CrossDSOCFI.h"
Sean Silvae3bb4572016-06-12 09:16:39 +000067#include "llvm/Transforms/IPO/DeadArgumentElimination.h"
Davide Italiano344e8382016-05-05 02:37:32 +000068#include "llvm/Transforms/IPO/ElimAvailExtern.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000069#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000070#include "llvm/Transforms/IPO/FunctionAttrs.h"
Teresa Johnson21241572016-07-18 21:22:24 +000071#include "llvm/Transforms/IPO/FunctionImport.h"
Davide Italiano66228c42016-05-03 19:39:15 +000072#include "llvm/Transforms/IPO/GlobalDCE.h"
Justin Bogner1a075012016-04-26 00:28:01 +000073#include "llvm/Transforms/IPO/GlobalOpt.h"
Davide Italiano2ae76dd2016-11-21 00:28:23 +000074#include "llvm/Transforms/IPO/GlobalSplit.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000075#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Chandler Carruth1d963112016-12-20 03:15:32 +000076#include "llvm/Transforms/IPO/Inliner.h"
Justin Bogner4563a062016-04-26 20:15:52 +000077#include "llvm/Transforms/IPO/Internalize.h"
Davide Italianoe8ae0b52016-07-11 18:10:06 +000078#include "llvm/Transforms/IPO/LowerTypeTests.h"
Easwaran Raman1832bf62016-06-27 16:50:18 +000079#include "llvm/Transforms/IPO/PartialInlining.h"
Davide Italianof54f2f02016-05-05 21:05:36 +000080#include "llvm/Transforms/IPO/SCCP.h"
Justin Bogner21e15372015-10-30 23:28:12 +000081#include "llvm/Transforms/IPO/StripDeadPrototypes.h"
Davide Italianod737dd22016-06-14 21:44:19 +000082#include "llvm/Transforms/IPO/WholeProgramDevirt.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000083#include "llvm/Transforms/InstCombine/InstCombine.h"
Xinliang David Lie6b89292016-04-18 17:47:38 +000084#include "llvm/Transforms/InstrProfiling.h"
Xinliang David Li8aebf442016-05-06 05:49:19 +000085#include "llvm/Transforms/PGOInstrumentation.h"
Xinliang David Lid38392e2016-05-27 23:20:16 +000086#include "llvm/Transforms/SampleProfile.h"
Justin Bogner19b67992015-10-30 23:13:18 +000087#include "llvm/Transforms/Scalar/ADCE.h"
Sean Silvaa4c2d152016-06-15 06:18:01 +000088#include "llvm/Transforms/Scalar/AlignmentFromAssumptions.h"
Davide Italiano655a1452016-05-25 01:57:04 +000089#include "llvm/Transforms/Scalar/BDCE.h"
Adam Nemet3beef412016-07-18 16:29:17 +000090#include "llvm/Transforms/Scalar/ConstantHoisting.h"
Sean Silvab025d372016-07-06 23:26:29 +000091#include "llvm/Transforms/Scalar/CorrelatedValuePropagation.h"
Justin Bogner395c2122016-04-22 19:40:41 +000092#include "llvm/Transforms/Scalar/DCE.h"
Justin Bogner594e07b2016-05-17 21:38:13 +000093#include "llvm/Transforms/Scalar/DeadStoreElimination.h"
Chandler Carruthe8c686a2015-02-01 10:51:23 +000094#include "llvm/Transforms/Scalar/EarlyCSE.h"
Michael Kuperstein83b753d2016-06-24 23:32:02 +000095#include "llvm/Transforms/Scalar/Float2Int.h"
Easwaran Raman019e0bf2016-06-03 22:54:26 +000096#include "llvm/Transforms/Scalar/GVN.h"
Davide Italiano89ab89d2016-06-14 00:49:23 +000097#include "llvm/Transforms/Scalar/GuardWidening.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000098#include "llvm/Transforms/Scalar/IVUsersPrinter.h"
Sanjoy Das4d4339d2016-06-05 18:01:19 +000099#include "llvm/Transforms/Scalar/IndVarSimplify.h"
Sean Silva46590d52016-06-14 00:51:09 +0000100#include "llvm/Transforms/Scalar/JumpThreading.h"
Dehao Chenf400a092016-07-12 22:42:24 +0000101#include "llvm/Transforms/Scalar/LICM.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000102#include "llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h"
Teresa Johnson1eca6bc2016-08-13 04:11:27 +0000103#include "llvm/Transforms/Scalar/LoopDataPrefetch.h"
Jun Bum Limc837af32016-07-14 18:28:29 +0000104#include "llvm/Transforms/Scalar/LoopDeletion.h"
Adam Nemetb2593f72016-07-18 16:29:27 +0000105#include "llvm/Transforms/Scalar/LoopDistribute.h"
Dehao Chenb9f8e292016-07-12 18:45:51 +0000106#include "llvm/Transforms/Scalar/LoopIdiomRecognize.h"
Dehao Chendcafd5e2016-07-15 16:42:11 +0000107#include "llvm/Transforms/Scalar/LoopInstSimplify.h"
Chandler Carruthbaabda92017-01-27 01:32:26 +0000108#include "llvm/Transforms/Scalar/LoopLoadElimination.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000109#include "llvm/Transforms/Scalar/LoopPassManager.h"
Artur Pilipenko8fb3d572017-01-25 16:00:44 +0000110#include "llvm/Transforms/Scalar/LoopPredication.h"
Justin Bognerd0d23412016-05-03 22:02:31 +0000111#include "llvm/Transforms/Scalar/LoopRotation.h"
Justin Bognerab6a5132016-05-03 21:47:32 +0000112#include "llvm/Transforms/Scalar/LoopSimplifyCFG.h"
Chandler Carruthe9b18e32017-01-20 08:42:19 +0000113#include "llvm/Transforms/Scalar/LoopSink.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000114#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
Sean Silvae3c18a52016-07-19 23:54:23 +0000115#include "llvm/Transforms/Scalar/LoopUnrollPass.h"
Davide Italiano99223442016-05-13 22:52:35 +0000116#include "llvm/Transforms/Scalar/LowerAtomic.h"
Chandler Carruth43e590e2015-01-24 11:13:02 +0000117#include "llvm/Transforms/Scalar/LowerExpectIntrinsic.h"
Michael Kupersteine45d4d92016-07-28 22:08:41 +0000118#include "llvm/Transforms/Scalar/LowerGuardIntrinsic.h"
Sean Silva6347df02016-06-14 02:44:55 +0000119#include "llvm/Transforms/Scalar/MemCpyOptimizer.h"
Davide Italianob49aa5c2016-06-17 19:10:09 +0000120#include "llvm/Transforms/Scalar/MergedLoadStoreMotion.h"
Wei Mi1cf58f82016-07-21 22:28:52 +0000121#include "llvm/Transforms/Scalar/NaryReassociate.h"
Davide Italianoe05e3302016-12-22 16:35:02 +0000122#include "llvm/Transforms/Scalar/NewGVN.h"
Davide Italiano1021c682016-05-25 23:38:53 +0000123#include "llvm/Transforms/Scalar/PartiallyInlineLibCalls.h"
Justin Bognerc2bf63d2016-04-26 23:39:29 +0000124#include "llvm/Transforms/Scalar/Reassociate.h"
Davide Italiano98f7e0e2016-05-18 15:18:25 +0000125#include "llvm/Transforms/Scalar/SCCP.h"
Chandler Carruth29a18a42015-09-12 09:09:14 +0000126#include "llvm/Transforms/Scalar/SROA.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000127#include "llvm/Transforms/Scalar/SimplifyCFG.h"
Justin Bognerb9394902016-04-22 19:54:10 +0000128#include "llvm/Transforms/Scalar/Sink.h"
Michael Kupersteinc4061862016-08-01 21:48:33 +0000129#include "llvm/Transforms/Scalar/SpeculativeExecution.h"
Sean Silva59fe82f2016-07-06 23:48:41 +0000130#include "llvm/Transforms/Scalar/TailRecursionElimination.h"
Xinliang David Li1eaecef2016-06-15 21:51:30 +0000131#include "llvm/Transforms/Utils/AddDiscriminators.h"
Wei Mie04d0ef2016-07-22 18:04:25 +0000132#include "llvm/Transforms/Utils/BreakCriticalEdges.h"
Easwaran Ramane12c4872016-06-09 19:44:46 +0000133#include "llvm/Transforms/Utils/LCSSA.h"
Rong Xu1c0e9b92016-10-18 21:36:27 +0000134#include "llvm/Transforms/Utils/LibCallsShrinkWrap.h"
Davide Italianocd96cfd2016-07-09 03:03:01 +0000135#include "llvm/Transforms/Utils/LoopSimplify.h"
Michael Kuperstein31b83992016-08-12 17:28:27 +0000136#include "llvm/Transforms/Utils/LowerInvoke.h"
Davide Italianocccf4f02016-06-14 03:22:22 +0000137#include "llvm/Transforms/Utils/Mem2Reg.h"
Geoff Berryb96d3b22016-06-01 21:30:40 +0000138#include "llvm/Transforms/Utils/MemorySSA.h"
Mehdi Amini27d23792016-09-16 16:56:30 +0000139#include "llvm/Transforms/Utils/NameAnonGlobals.h"
Daniel Berlin439042b2017-02-07 21:10:46 +0000140#include "llvm/Transforms/Utils/PredicateInfo.h"
Davide Italiano16284df2016-07-07 21:14:36 +0000141#include "llvm/Transforms/Utils/SimplifyInstructions.h"
Michael Kuperstein39feb622016-07-25 20:52:00 +0000142#include "llvm/Transforms/Utils/SymbolRewriter.h"
Sean Silvadb90d4d2016-07-09 22:56:50 +0000143#include "llvm/Transforms/Vectorize/LoopVectorize.h"
Sean Silva0dacbd82016-07-09 03:11:29 +0000144#include "llvm/Transforms/Vectorize/SLPVectorizer.h"
Davide Italianocccf4f02016-06-14 03:22:22 +0000145
Chandler Carruth58dde8c2016-02-26 12:17:54 +0000146#include <type_traits>
Chandler Carruth66445382014-01-11 08:16:35 +0000147
148using namespace llvm;
149
Chandler Carruth719ffe12017-02-12 05:38:04 +0000150static cl::opt<unsigned> MaxDevirtIterations("pm-max-devirt-iterations",
151 cl::ReallyHidden, cl::init(4));
152
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000153static Regex DefaultAliasRegex("^(default|lto-pre-link|lto)<(O[0123sz])>$");
154
Chandler Carruthe3f50642016-12-22 06:59:15 +0000155static bool isOptimizingForSize(PassBuilder::OptimizationLevel Level) {
156 switch (Level) {
157 case PassBuilder::O0:
158 case PassBuilder::O1:
159 case PassBuilder::O2:
160 case PassBuilder::O3:
161 return false;
162
163 case PassBuilder::Os:
164 case PassBuilder::Oz:
165 return true;
166 }
167 llvm_unreachable("Invalid optimization level!");
168}
169
Chandler Carruth66445382014-01-11 08:16:35 +0000170namespace {
171
Chandler Carruthd8330982014-01-12 09:34:22 +0000172/// \brief No-op module pass which does nothing.
Chandler Carruth66445382014-01-11 08:16:35 +0000173struct NoOpModulePass {
Sean Silvafd03ac62016-08-09 00:28:38 +0000174 PreservedAnalyses run(Module &M, ModuleAnalysisManager &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000175 return PreservedAnalyses::all();
176 }
Chandler Carrutha13f27c2014-01-11 11:52:05 +0000177 static StringRef name() { return "NoOpModulePass"; }
Chandler Carruth66445382014-01-11 08:16:35 +0000178};
179
Chandler Carruth0b576b32015-01-06 02:50:06 +0000180/// \brief No-op module analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000181class NoOpModuleAnalysis : public AnalysisInfoMixin<NoOpModuleAnalysis> {
182 friend AnalysisInfoMixin<NoOpModuleAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000183 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000184
185public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000186 struct Result {};
Sean Silvafd03ac62016-08-09 00:28:38 +0000187 Result run(Module &, ModuleAnalysisManager &) { return Result(); }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000188 static StringRef name() { return "NoOpModuleAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000189};
190
Chandler Carruth572e3402014-04-21 11:12:00 +0000191/// \brief No-op CGSCC pass which does nothing.
192struct NoOpCGSCCPass {
Chandler Carruth88823462016-08-24 09:37:14 +0000193 PreservedAnalyses run(LazyCallGraph::SCC &C, CGSCCAnalysisManager &,
194 LazyCallGraph &, CGSCCUpdateResult &UR) {
Chandler Carruth572e3402014-04-21 11:12:00 +0000195 return PreservedAnalyses::all();
196 }
197 static StringRef name() { return "NoOpCGSCCPass"; }
198};
199
Chandler Carruth0b576b32015-01-06 02:50:06 +0000200/// \brief No-op CGSCC analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000201class NoOpCGSCCAnalysis : public AnalysisInfoMixin<NoOpCGSCCAnalysis> {
202 friend AnalysisInfoMixin<NoOpCGSCCAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000203 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000204
205public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000206 struct Result {};
Chandler Carruth88823462016-08-24 09:37:14 +0000207 Result run(LazyCallGraph::SCC &, CGSCCAnalysisManager &, LazyCallGraph &G) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000208 return Result();
209 }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000210 static StringRef name() { return "NoOpCGSCCAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000211};
212
Chandler Carruthd8330982014-01-12 09:34:22 +0000213/// \brief No-op function pass which does nothing.
214struct NoOpFunctionPass {
Sean Silva36e0d012016-08-09 00:28:15 +0000215 PreservedAnalyses run(Function &F, FunctionAnalysisManager &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000216 return PreservedAnalyses::all();
217 }
Chandler Carruthd8330982014-01-12 09:34:22 +0000218 static StringRef name() { return "NoOpFunctionPass"; }
219};
220
Chandler Carruth0b576b32015-01-06 02:50:06 +0000221/// \brief No-op function analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000222class NoOpFunctionAnalysis : public AnalysisInfoMixin<NoOpFunctionAnalysis> {
223 friend AnalysisInfoMixin<NoOpFunctionAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000224 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000225
226public:
Chandler Carruth0b576b32015-01-06 02:50:06 +0000227 struct Result {};
Sean Silva36e0d012016-08-09 00:28:15 +0000228 Result run(Function &, FunctionAnalysisManager &) { return Result(); }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000229 static StringRef name() { return "NoOpFunctionAnalysis"; }
Chandler Carruth0b576b32015-01-06 02:50:06 +0000230};
231
Justin Bognereecc3c82016-02-25 07:23:08 +0000232/// \brief No-op loop pass which does nothing.
233struct NoOpLoopPass {
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000234 PreservedAnalyses run(Loop &L, LoopAnalysisManager &,
235 LoopStandardAnalysisResults &, LPMUpdater &) {
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000236 return PreservedAnalyses::all();
237 }
Justin Bognereecc3c82016-02-25 07:23:08 +0000238 static StringRef name() { return "NoOpLoopPass"; }
239};
240
241/// \brief No-op loop analysis.
Chandler Carruth30a07302016-03-11 10:33:22 +0000242class NoOpLoopAnalysis : public AnalysisInfoMixin<NoOpLoopAnalysis> {
243 friend AnalysisInfoMixin<NoOpLoopAnalysis>;
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000244 static AnalysisKey Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000245
246public:
Justin Bognereecc3c82016-02-25 07:23:08 +0000247 struct Result {};
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000248 Result run(Loop &, LoopAnalysisManager &, LoopStandardAnalysisResults &) {
249 return Result();
250 }
Justin Bognereecc3c82016-02-25 07:23:08 +0000251 static StringRef name() { return "NoOpLoopAnalysis"; }
Justin Bognereecc3c82016-02-25 07:23:08 +0000252};
253
Chandler Carruthdab4eae2016-11-23 17:53:26 +0000254AnalysisKey NoOpModuleAnalysis::Key;
255AnalysisKey NoOpCGSCCAnalysis::Key;
256AnalysisKey NoOpFunctionAnalysis::Key;
257AnalysisKey NoOpLoopAnalysis::Key;
Chandler Carruthb4faf132016-03-11 10:22:49 +0000258
Chandler Carruth66445382014-01-11 08:16:35 +0000259} // End anonymous namespace.
260
Chandler Carruth1ff77242015-03-07 09:02:36 +0000261void PassBuilder::registerModuleAnalyses(ModuleAnalysisManager &MAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000262#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000263 MAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000264#include "PassRegistry.def"
265}
266
Chandler Carruth1ff77242015-03-07 09:02:36 +0000267void PassBuilder::registerCGSCCAnalyses(CGSCCAnalysisManager &CGAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000268#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000269 CGAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000270#include "PassRegistry.def"
271}
272
Chandler Carruth1ff77242015-03-07 09:02:36 +0000273void PassBuilder::registerFunctionAnalyses(FunctionAnalysisManager &FAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000274#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruthedf59962016-02-18 09:45:17 +0000275 FAM.registerPass([&] { return CREATE_PASS; });
Chandler Carruthb70f6732015-01-06 02:21:37 +0000276#include "PassRegistry.def"
277}
278
Justin Bognereecc3c82016-02-25 07:23:08 +0000279void PassBuilder::registerLoopAnalyses(LoopAnalysisManager &LAM) {
Chandler Carruth74a8a222016-06-17 07:15:29 +0000280#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
Justin Bognereecc3c82016-02-25 07:23:08 +0000281 LAM.registerPass([&] { return CREATE_PASS; });
282#include "PassRegistry.def"
283}
284
Chandler Carruthe3f50642016-12-22 06:59:15 +0000285FunctionPassManager
286PassBuilder::buildFunctionSimplificationPipeline(OptimizationLevel Level,
287 bool DebugLogging) {
288 assert(Level != O0 && "Must request optimizations!");
289 FunctionPassManager FPM(DebugLogging);
290
291 // Form SSA out of local memory accesses after breaking apart aggregates into
292 // scalars.
293 FPM.addPass(SROA());
294
295 // Catch trivial redundancies
296 FPM.addPass(EarlyCSEPass());
297
298 // Speculative execution if the target has divergent branches; otherwise nop.
299 FPM.addPass(SpeculativeExecutionPass());
300
301 // Optimize based on known information about branches, and cleanup afterward.
302 FPM.addPass(JumpThreadingPass());
303 FPM.addPass(CorrelatedValuePropagationPass());
304 FPM.addPass(SimplifyCFGPass());
305 FPM.addPass(InstCombinePass());
306
307 if (!isOptimizingForSize(Level))
308 FPM.addPass(LibCallsShrinkWrapPass());
309
310 FPM.addPass(TailCallElimPass());
311 FPM.addPass(SimplifyCFGPass());
312
313 // Form canonically associated expression trees, and simplify the trees using
314 // basic mathematical properties. For example, this will form (nearly)
315 // minimal multiplication trees.
316 FPM.addPass(ReassociatePass());
317
318 // Add the primary loop simplification pipeline.
319 // FIXME: Currently this is split into two loop pass pipelines because we run
320 // some function passes in between them. These can and should be replaced by
321 // loop pass equivalenst but those aren't ready yet. Specifically,
322 // `SimplifyCFGPass` and `InstCombinePass` are used. We have
323 // `LoopSimplifyCFGPass` which isn't yet powerful enough, and the closest to
324 // the other we have is `LoopInstSimplify`.
325 LoopPassManager LPM1(DebugLogging), LPM2(DebugLogging);
326
327 // Rotate Loop - disable header duplication at -Oz
328 LPM1.addPass(LoopRotatePass(Level != Oz));
329 LPM1.addPass(LICMPass());
Chandler Carruth79b733b2017-01-26 23:21:17 +0000330#if 0
331 // The LoopUnswitch pass isn't yet ported to the new pass manager.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000332 LPM1.addPass(LoopUnswitchPass(/* OptimizeForSize */ Level != O3));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000333#endif
Chandler Carruth79b733b2017-01-26 23:21:17 +0000334 LPM2.addPass(IndVarSimplifyPass());
335 LPM2.addPass(LoopIdiomRecognizePass());
336 LPM2.addPass(LoopDeletionPass());
337 LPM2.addPass(LoopUnrollPass::createFull());
338
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000339 // We provide the opt remark emitter pass for LICM to use. We only need to do
340 // this once as it is immutable.
341 FPM.addPass(RequireAnalysisPass<OptimizationRemarkEmitterAnalysis, Function>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000342 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM1)));
343 FPM.addPass(SimplifyCFGPass());
344 FPM.addPass(InstCombinePass());
345 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM2)));
346
347 // Eliminate redundancies.
348 if (Level != O1) {
349 // These passes add substantial compile time so skip them at O1.
350 FPM.addPass(MergedLoadStoreMotionPass());
351 FPM.addPass(GVN());
352 }
353
354 // Specially optimize memory movement as it doesn't look like dataflow in SSA.
355 FPM.addPass(MemCpyOptPass());
356
357 // Sparse conditional constant propagation.
358 // FIXME: It isn't clear why we do this *after* loop passes rather than
359 // before...
360 FPM.addPass(SCCPPass());
361
362 // Delete dead bit computations (instcombine runs after to fold away the dead
363 // computations, and then ADCE will run later to exploit any new DCE
364 // opportunities that creates).
365 FPM.addPass(BDCEPass());
366
367 // Run instcombine after redundancy and dead bit elimination to exploit
368 // opportunities opened up by them.
369 FPM.addPass(InstCombinePass());
370
371 // Re-consider control flow based optimizations after redundancy elimination,
372 // redo DCE, etc.
373 FPM.addPass(JumpThreadingPass());
374 FPM.addPass(CorrelatedValuePropagationPass());
375 FPM.addPass(DSEPass());
376 FPM.addPass(createFunctionToLoopPassAdaptor(LICMPass()));
377
378 // Finally, do an expensive DCE pass to catch all the dead code exposed by
379 // the simplifications and basic cleanup after all the simplifications.
380 FPM.addPass(ADCEPass());
381 FPM.addPass(SimplifyCFGPass());
382 FPM.addPass(InstCombinePass());
383
384 return FPM;
385}
386
Davide Italiano513dfaa2017-02-13 15:26:22 +0000387static void addPGOInstrPasses(ModulePassManager &MPM, bool DebugLogging,
388 PassBuilder::OptimizationLevel Level,
389 bool RunProfileGen, std::string ProfileGenFile,
390 std::string ProfileUseFile) {
391 // Generally running simplification passes and the inliner with an high
392 // threshold results in smaller executables, but there may be cases where
393 // the size grows, so let's be conservative here and skip this simplification
394 // at -Os/Oz.
395 if (!isOptimizingForSize(Level)) {
396 InlineParams IP;
397
398 // In the old pass manager, this is a cl::opt. Should still this be one?
399 IP.DefaultThreshold = 75;
400
401 // FIXME: The hint threshold has the same value used by the regular inliner.
402 // This should probably be lowered after performance testing.
403 // FIXME: this comment is cargo culted from the old pass manager, revisit).
404 IP.HintThreshold = 325;
405
406 CGSCCPassManager CGPipeline(DebugLogging);
407
408 CGPipeline.addPass(InlinerPass(IP));
409
410 FunctionPassManager FPM;
411 FPM.addPass(SROA());
412 FPM.addPass(EarlyCSEPass()); // Catch trivial redundancies.
413 FPM.addPass(SimplifyCFGPass()); // Merge & remove basic blocks.
414 FPM.addPass(InstCombinePass()); // Combine silly sequences.
415
416 // FIXME: Here the old pass manager inserts peephole extensions.
417 // Add them when they're supported.
418 CGPipeline.addPass(createCGSCCToFunctionPassAdaptor(std::move(FPM)));
419
420 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPipeline)));
421 }
422
423 if (RunProfileGen) {
424 MPM.addPass(PGOInstrumentationGen());
425
426 // Add the profile lowering pass.
427 InstrProfOptions Options;
428 if (!ProfileGenFile.empty())
429 Options.InstrProfileOutput = ProfileGenFile;
430 MPM.addPass(InstrProfiling(Options));
431 }
432
433 if (!ProfileUseFile.empty())
434 MPM.addPass(PGOInstrumentationUse(ProfileUseFile));
435}
436
Chandler Carruthe3f50642016-12-22 06:59:15 +0000437ModulePassManager
438PassBuilder::buildPerModuleDefaultPipeline(OptimizationLevel Level,
439 bool DebugLogging) {
440 assert(Level != O0 && "Must request optimizations for the default pipeline!");
441 ModulePassManager MPM(DebugLogging);
442
443 // Force any function attributes we want the rest of the pipeline te observe.
444 MPM.addPass(ForceFunctionAttrsPass());
445
446 // Do basic inference of function attributes from known properties of system
447 // libraries and other oracles.
448 MPM.addPass(InferFunctionAttrsPass());
449
450 // Create an early function pass manager to cleanup the output of the
451 // frontend.
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000452 FunctionPassManager EarlyFPM(DebugLogging);
453 EarlyFPM.addPass(SimplifyCFGPass());
454 EarlyFPM.addPass(SROA());
455 EarlyFPM.addPass(EarlyCSEPass());
456 EarlyFPM.addPass(LowerExpectIntrinsicPass());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000457 EarlyFPM.addPass(GVNHoistPass());
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000458 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(EarlyFPM)));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000459
460 // Interprocedural constant propagation now that basic cleanup has occured
461 // and prior to optimizing globals.
462 // FIXME: This position in the pipeline hasn't been carefully considered in
463 // years, it should be re-analyzed.
464 MPM.addPass(IPSCCPPass());
465
466 // Optimize globals to try and fold them into constants.
467 MPM.addPass(GlobalOptPass());
468
469 // Promote any localized globals to SSA registers.
470 // FIXME: Should this instead by a run of SROA?
471 // FIXME: We should probably run instcombine and simplify-cfg afterward to
472 // delete control flows that are dead once globals have been folded to
473 // constants.
474 MPM.addPass(createModuleToFunctionPassAdaptor(PromotePass()));
475
476 // Remove any dead arguments exposed by cleanups and constand folding
477 // globals.
478 MPM.addPass(DeadArgumentEliminationPass());
479
480 // Create a small function pass pipeline to cleanup after all the global
481 // optimizations.
482 FunctionPassManager GlobalCleanupPM(DebugLogging);
483 GlobalCleanupPM.addPass(InstCombinePass());
484 GlobalCleanupPM.addPass(SimplifyCFGPass());
485 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(GlobalCleanupPM)));
486
Davide Italiano513dfaa2017-02-13 15:26:22 +0000487 // Add all the requested passes for PGO Instrumentation, if requested.
488 if (PGOOpt) {
489 assert(PGOOpt->RunProfileGen || !PGOOpt->ProfileUseFile.empty());
490 addPGOInstrPasses(MPM, DebugLogging, Level, PGOOpt->RunProfileGen,
491 PGOOpt->ProfileGenFile, PGOOpt->ProfileUseFile);
492 }
493
494 // Indirect call promotion that promotes intra-module targes only.
495 MPM.addPass(PGOIndirectCallPromotion());
496
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000497 // Require the GlobalsAA analysis for the module so we can query it within
498 // the CGSCC pipeline.
499 MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000500
501 // Now begin the main postorder CGSCC pipeline.
502 // FIXME: The current CGSCC pipeline has its origins in the legacy pass
503 // manager and trying to emulate its precise behavior. Much of this doesn't
504 // make a lot of sense and we should revisit the core CGSCC structure.
505 CGSCCPassManager MainCGPipeline(DebugLogging);
506
507 // Note: historically, the PruneEH pass was run first to deduce nounwind and
508 // generally clean up exception handling overhead. It isn't clear this is
509 // valuable as the inliner doesn't currently care whether it is inlining an
510 // invoke or a call.
511
512 // Run the inliner first. The theory is that we are walking bottom-up and so
513 // the callees have already been fully optimized, and we want to inline them
514 // into the callers so that our optimizations can reflect that.
515 // FIXME; Customize the threshold based on optimization level.
516 MainCGPipeline.addPass(InlinerPass());
517
518 // Now deduce any function attributes based in the current code.
519 MainCGPipeline.addPass(PostOrderFunctionAttrsPass());
520
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000521 // When at O3 add argument promotion to the pass pipeline.
522 // FIXME: It isn't at all clear why this should be limited to O3.
523 if (Level == O3)
524 MainCGPipeline.addPass(ArgumentPromotionPass());
525
Chandler Carruthe3f50642016-12-22 06:59:15 +0000526 // Lastly, add the core function simplification pipeline nested inside the
527 // CGSCC walk.
528 MainCGPipeline.addPass(createCGSCCToFunctionPassAdaptor(
529 buildFunctionSimplificationPipeline(Level, DebugLogging)));
530
Chandler Carruth719ffe12017-02-12 05:38:04 +0000531 // We wrap the CGSCC pipeline in a devirtualization repeater. This will try
532 // to detect when we devirtualize indirect calls and iterate the SCC passes
533 // in that case to try and catch knock-on inlining or function attrs
534 // opportunities. Then we add it to the module pipeline by walking the SCCs
535 // in postorder (or bottom-up).
Chandler Carruthe3f50642016-12-22 06:59:15 +0000536 MPM.addPass(
Chandler Carruth719ffe12017-02-12 05:38:04 +0000537 createModuleToPostOrderCGSCCPassAdaptor(createDevirtSCCRepeatedPass(
538 std::move(MainCGPipeline), MaxDevirtIterations, DebugLogging)));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000539
540 // This ends the canonicalization and simplification phase of the pipeline.
541 // At this point, we expect to have canonical and simple IR which we begin
542 // *optimizing* for efficient execution going forward.
543
544 // Eliminate externally available functions now that inlining is over -- we
545 // won't emit these anyways.
546 MPM.addPass(EliminateAvailableExternallyPass());
547
548 // Do RPO function attribute inference across the module to forward-propagate
549 // attributes where applicable.
550 // FIXME: Is this really an optimization rather than a canonicalization?
551 MPM.addPass(ReversePostOrderFunctionAttrsPass());
552
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000553 // Re-require GloblasAA here prior to function passes. This is particularly
Chandler Carruthe3f50642016-12-22 06:59:15 +0000554 // useful as the above will have inlined, DCE'ed, and function-attr
555 // propagated everything. We should at this point have a reasonably minimal
556 // and richly annotated call graph. By computing aliasing and mod/ref
557 // information for all local globals here, the late loop passes and notably
558 // the vectorizer will be able to use them to help recognize vectorizable
559 // memory operations.
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000560 MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000561
562 FunctionPassManager OptimizePM(DebugLogging);
563 OptimizePM.addPass(Float2IntPass());
564 // FIXME: We need to run some loop optimizations to re-rotate loops after
565 // simplify-cfg and others undo their rotation.
566
567 // Optimize the loop execution. These passes operate on entire loop nests
568 // rather than on each loop in an inside-out manner, and so they are actually
569 // function passes.
Chandler Carrutha95ff382017-01-27 00:50:21 +0000570
571 // First rotate loops that may have been un-rotated by prior passes.
572 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LoopRotatePass()));
573
574 // Distribute loops to allow partial vectorization. I.e. isolate dependences
575 // into separate loop that would otherwise inhibit vectorization. This is
576 // currently only performed for loops marked with the metadata
577 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000578 OptimizePM.addPass(LoopDistributePass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000579
580 // Now run the core loop vectorizer.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000581 OptimizePM.addPass(LoopVectorizePass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000582
Chandler Carruthbaabda92017-01-27 01:32:26 +0000583 // Eliminate loads by forwarding stores from the previous iteration to loads
584 // of the current iteration.
585 OptimizePM.addPass(LoopLoadEliminationPass());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000586
587 // Cleanup after the loop optimization passes.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000588 OptimizePM.addPass(InstCombinePass());
589
Chandler Carrutha95ff382017-01-27 00:50:21 +0000590
591 // Now that we've formed fast to execute loop structures, we do further
592 // optimizations. These are run afterward as they might block doing complex
593 // analyses and transforms such as what are needed for loop vectorization.
594
Chandler Carruthe3f50642016-12-22 06:59:15 +0000595 // Optimize parallel scalar instruction chains into SIMD instructions.
596 OptimizePM.addPass(SLPVectorizerPass());
597
Chandler Carrutha95ff382017-01-27 00:50:21 +0000598 // Cleanup after all of the vectorizers.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000599 OptimizePM.addPass(SimplifyCFGPass());
600 OptimizePM.addPass(InstCombinePass());
601
602 // Unroll small loops to hide loop backedge latency and saturate any parallel
Chandler Carrutha95ff382017-01-27 00:50:21 +0000603 // execution resources of an out-of-order processor. We also then need to
604 // clean up redundancies and loop invariant code.
605 // FIXME: It would be really good to use a loop-integrated instruction
606 // combiner for cleanup here so that the unrolling and LICM can be pipelined
607 // across the loop nests.
608 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LoopUnrollPass::create()));
609 OptimizePM.addPass(InstCombinePass());
Chandler Carruth0ede22e2017-02-09 23:54:57 +0000610 OptimizePM.addPass(RequireAnalysisPass<OptimizationRemarkEmitterAnalysis, Function>());
Chandler Carrutha95ff382017-01-27 00:50:21 +0000611 OptimizePM.addPass(createFunctionToLoopPassAdaptor(LICMPass()));
Chandler Carruthe3f50642016-12-22 06:59:15 +0000612
613 // Now that we've vectorized and unrolled loops, we may have more refined
614 // alignment information, try to re-derive it here.
615 OptimizePM.addPass(AlignmentFromAssumptionsPass());
616
Chandler Carrutha95ff382017-01-27 00:50:21 +0000617 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
618 // canonicalization pass that enables other optimizations. As a result,
619 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
620 // result too early.
621 OptimizePM.addPass(LoopSinkPass());
622
623 // And finally clean up LCSSA form before generating code.
624 OptimizePM.addPass(InstSimplifierPass());
625
626 // Add the core optimizing pipeline.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000627 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(OptimizePM)));
628
629 // Now we need to do some global optimization transforms.
630 // FIXME: It would seem like these should come first in the optimization
631 // pipeline and maybe be the bottom of the canonicalization pipeline? Weird
632 // ordering here.
633 MPM.addPass(GlobalDCEPass());
634 MPM.addPass(ConstantMergePass());
635
636 return MPM;
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000637}
638
Chandler Carruthe3f50642016-12-22 06:59:15 +0000639ModulePassManager
640PassBuilder::buildLTOPreLinkDefaultPipeline(OptimizationLevel Level,
641 bool DebugLogging) {
642 assert(Level != O0 && "Must request optimizations for the default pipeline!");
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000643 // FIXME: We should use a customized pre-link pipeline!
Chandler Carruthe3f50642016-12-22 06:59:15 +0000644 return buildPerModuleDefaultPipeline(Level, DebugLogging);
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000645}
646
Chandler Carruthe3f50642016-12-22 06:59:15 +0000647ModulePassManager PassBuilder::buildLTODefaultPipeline(OptimizationLevel Level,
648 bool DebugLogging) {
649 assert(Level != O0 && "Must request optimizations for the default pipeline!");
650 ModulePassManager MPM(DebugLogging);
651
Davide Italiano089a9122017-01-24 00:57:39 +0000652 // Remove unused virtual tables to improve the quality of code generated by
653 // whole-program devirtualization and bitset lowering.
654 MPM.addPass(GlobalDCEPass());
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000655
Davide Italiano089a9122017-01-24 00:57:39 +0000656 // Force any function attributes we want the rest of the pipeline to observe.
657 MPM.addPass(ForceFunctionAttrsPass());
Chandler Carruthe3f50642016-12-22 06:59:15 +0000658
Davide Italiano089a9122017-01-24 00:57:39 +0000659 // Do basic inference of function attributes from known properties of system
660 // libraries and other oracles.
661 MPM.addPass(InferFunctionAttrsPass());
662
663 if (Level > 1) {
664 // Indirect call promotion. This should promote all the targets that are
665 // left by the earlier promotion pass that promotes intra-module targets.
666 // This two-step promotion is to save the compile time. For LTO, it should
667 // produce the same result as if we only do promotion here.
668 MPM.addPass(PGOIndirectCallPromotion(true /* InLTO */));
669
670 // Propagate constants at call sites into the functions they call. This
671 // opens opportunities for globalopt (and inlining) by substituting function
672 // pointers passed as arguments to direct uses of functions.
673 MPM.addPass(IPSCCPPass());
674 }
675
676 // Now deduce any function attributes based in the current code.
677 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(
678 PostOrderFunctionAttrsPass()));
679
680 // Do RPO function attribute inference across the module to forward-propagate
681 // attributes where applicable.
682 // FIXME: Is this really an optimization rather than a canonicalization?
683 MPM.addPass(ReversePostOrderFunctionAttrsPass());
684
685 // Use inragne annotations on GEP indices to split globals where beneficial.
686 MPM.addPass(GlobalSplitPass());
687
688 // Run whole program optimization of virtual call when the list of callees
689 // is fixed.
690 MPM.addPass(WholeProgramDevirtPass());
691
692 // Stop here at -O1.
693 if (Level == 1)
694 return MPM;
695
696 // Optimize globals to try and fold them into constants.
697 MPM.addPass(GlobalOptPass());
698
699 // Promote any localized globals to SSA registers.
700 MPM.addPass(createModuleToFunctionPassAdaptor(PromotePass()));
701
702 // Linking modules together can lead to duplicate global constant, only
703 // keep one copy of each constant.
704 MPM.addPass(ConstantMergePass());
705
706 // Remove unused arguments from functions.
707 MPM.addPass(DeadArgumentEliminationPass());
708
709 // Reduce the code after globalopt and ipsccp. Both can open up significant
710 // simplification opportunities, and both can propagate functions through
711 // function pointers. When this happens, we often have to resolve varargs
712 // calls, etc, so let instcombine do this.
713 // FIXME: add peephole extensions here as the legacy PM does.
714 MPM.addPass(createModuleToFunctionPassAdaptor(InstCombinePass()));
715
716 // Note: historically, the PruneEH pass was run first to deduce nounwind and
717 // generally clean up exception handling overhead. It isn't clear this is
718 // valuable as the inliner doesn't currently care whether it is inlining an
719 // invoke or a call.
720 // Run the inliner now.
721 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(InlinerPass()));
722
723 // Optimize globals again after we ran the inliner.
724 MPM.addPass(GlobalOptPass());
725
726 // Garbage collect dead functions.
727 // FIXME: Add ArgumentPromotion pass after once it's ported.
728 MPM.addPass(GlobalDCEPass());
729
730 FunctionPassManager FPM(DebugLogging);
731
732 // The IPO Passes may leave cruft around. Clean up after them.
733 // FIXME: add peephole extensions here as the legacy PM does.
734 FPM.addPass(InstCombinePass());
735 FPM.addPass(JumpThreadingPass());
736
737 // Break up allocas
738 FPM.addPass(SROA());
739
740 // Run a few AA driver optimizations here and now to cleanup the code.
741 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
742
743 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(
744 PostOrderFunctionAttrsPass()));
745 // FIXME: here we run IP alias analysis in the legacy PM.
746
747 FunctionPassManager MainFPM;
748
749 // FIXME: once we fix LoopPass Manager, add LICM here.
750 // FIXME: once we provide support for enabling MLSM, add it here.
751 // FIXME: once we provide support for enabling NewGVN, add it here.
752 MainFPM.addPass(GVN());
753
754 // Remove dead memcpy()'s.
755 MainFPM.addPass(MemCpyOptPass());
756
757 // Nuke dead stores.
758 MainFPM.addPass(DSEPass());
759
760 // FIXME: at this point, we run a bunch of loop passes:
761 // indVarSimplify, loopDeletion, loopInterchange, loopUnrool,
762 // loopVectorize. Enable them once the remaining issue with LPM
763 // are sorted out.
764
765 MainFPM.addPass(InstCombinePass());
766 MainFPM.addPass(SimplifyCFGPass());
767 MainFPM.addPass(SCCPPass());
768 MainFPM.addPass(InstCombinePass());
769 MainFPM.addPass(BDCEPass());
770
771 // FIXME: We may want to run SLPVectorizer here.
772 // After vectorization, assume intrinsics may tell us more
773 // about pointer alignments.
774#if 0
775 MainFPM.add(AlignmentFromAssumptionsPass());
776#endif
777
778 // FIXME: Conditionally run LoadCombine here, after it's ported
779 // (in case we still have this pass, given its questionable usefulness).
780
781 // FIXME: add peephole extensions to the PM here.
782 MainFPM.addPass(InstCombinePass());
783 MainFPM.addPass(JumpThreadingPass());
784 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(MainFPM)));
785
786 // Create a function that performs CFI checks for cross-DSO calls with
787 // targets in the current module.
788 MPM.addPass(CrossDSOCFIPass());
789
790 // Lower type metadata and the type.test intrinsic. This pass supports
791 // clang's control flow integrity mechanisms (-fsanitize=cfi*) and needs
792 // to be run at link time if CFI is enabled. This pass does nothing if
793 // CFI is disabled.
794 // Enable once we add support for the summary in the new PM.
795#if 0
Peter Collingbourne857aba42017-02-09 21:45:01 +0000796 MPM.addPass(LowerTypeTestsPass(Summary ? PassSummaryAction::Export :
797 PassSummaryAction::None,
Davide Italiano089a9122017-01-24 00:57:39 +0000798 Summary));
799#endif
800
801 // Add late LTO optimization passes.
802 // Delete basic blocks, which optimization passes may have killed.
803 MPM.addPass(createModuleToFunctionPassAdaptor(SimplifyCFGPass()));
804
805 // Drop bodies of available eternally objects to improve GlobalDCE.
806 MPM.addPass(EliminateAvailableExternallyPass());
807
808 // Now that we have optimized the program, discard unreachable functions.
809 MPM.addPass(GlobalDCEPass());
810
811 // FIXME: Enable MergeFuncs, conditionally, after ported, maybe.
Chandler Carruthe3f50642016-12-22 06:59:15 +0000812 return MPM;
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000813}
814
Chandler Carruth060ad612016-12-23 20:38:19 +0000815AAManager PassBuilder::buildDefaultAAPipeline() {
816 AAManager AA;
817
818 // The order in which these are registered determines their priority when
819 // being queried.
820
821 // First we register the basic alias analysis that provides the majority of
822 // per-function local AA logic. This is a stateless, on-demand local set of
823 // AA techniques.
824 AA.registerFunctionAnalysis<BasicAA>();
825
826 // Next we query fast, specialized alias analyses that wrap IR-embedded
827 // information about aliasing.
828 AA.registerFunctionAnalysis<ScopedNoAliasAA>();
829 AA.registerFunctionAnalysis<TypeBasedAA>();
830
831 // Add support for querying global aliasing information when available.
Chandler Carruth534d6442016-12-24 05:11:17 +0000832 // Because the `AAManager` is a function analysis and `GlobalsAA` is a module
833 // analysis, all that the `AAManager` can do is query for any *cached*
Chandler Carruthe87fc8c2017-02-12 05:34:04 +0000834 // results from `GlobalsAA` through a readonly proxy.
Chandler Carruth060ad612016-12-23 20:38:19 +0000835 AA.registerModuleAnalysis<GlobalsAA>();
Chandler Carruth060ad612016-12-23 20:38:19 +0000836
837 return AA;
838}
839
Chandler Carruth241bf242016-08-03 07:44:48 +0000840static Optional<int> parseRepeatPassName(StringRef Name) {
841 if (!Name.consume_front("repeat<") || !Name.consume_back(">"))
842 return None;
843 int Count;
844 if (Name.getAsInteger(0, Count) || Count <= 0)
845 return None;
846 return Count;
847}
848
Chandler Carruth05ca5ac2016-12-28 11:07:33 +0000849static Optional<int> parseDevirtPassName(StringRef Name) {
850 if (!Name.consume_front("devirt<") || !Name.consume_back(">"))
851 return None;
852 int Count;
853 if (Name.getAsInteger(0, Count) || Count <= 0)
854 return None;
855 return Count;
856}
857
Chandler Carruth66445382014-01-11 08:16:35 +0000858static bool isModulePassName(StringRef Name) {
Chandler Carruth8b5a74192016-02-28 22:16:03 +0000859 // Manually handle aliases for pre-configured pipeline fragments.
860 if (Name.startswith("default") || Name.startswith("lto"))
861 return DefaultAliasRegex.match(Name);
862
Chandler Carruth6cb2ab22016-08-03 03:21:41 +0000863 // Explicitly handle pass manager names.
864 if (Name == "module")
865 return true;
866 if (Name == "cgscc")
867 return true;
868 if (Name == "function")
869 return true;
870
Chandler Carruth241bf242016-08-03 07:44:48 +0000871 // Explicitly handle custom-parsed pass names.
872 if (parseRepeatPassName(Name))
873 return true;
874
Chandler Carruth74a8a222016-06-17 07:15:29 +0000875#define MODULE_PASS(NAME, CREATE_PASS) \
876 if (Name == NAME) \
877 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +0000878#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +0000879 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +0000880 return true;
881#include "PassRegistry.def"
882
Chandler Carruth66445382014-01-11 08:16:35 +0000883 return false;
884}
885
Chandler Carruth572e3402014-04-21 11:12:00 +0000886static bool isCGSCCPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +0000887 // Explicitly handle pass manager names.
888 if (Name == "cgscc")
889 return true;
890 if (Name == "function")
891 return true;
892
Chandler Carruth241bf242016-08-03 07:44:48 +0000893 // Explicitly handle custom-parsed pass names.
894 if (parseRepeatPassName(Name))
895 return true;
Chandler Carruth05ca5ac2016-12-28 11:07:33 +0000896 if (parseDevirtPassName(Name))
897 return true;
Chandler Carruth241bf242016-08-03 07:44:48 +0000898
Chandler Carruth74a8a222016-06-17 07:15:29 +0000899#define CGSCC_PASS(NAME, CREATE_PASS) \
900 if (Name == NAME) \
901 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +0000902#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +0000903 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +0000904 return true;
905#include "PassRegistry.def"
906
Chandler Carruth572e3402014-04-21 11:12:00 +0000907 return false;
908}
909
Chandler Carruthd8330982014-01-12 09:34:22 +0000910static bool isFunctionPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +0000911 // Explicitly handle pass manager names.
912 if (Name == "function")
913 return true;
914 if (Name == "loop")
915 return true;
916
Chandler Carruth241bf242016-08-03 07:44:48 +0000917 // Explicitly handle custom-parsed pass names.
918 if (parseRepeatPassName(Name))
919 return true;
920
Chandler Carruth74a8a222016-06-17 07:15:29 +0000921#define FUNCTION_PASS(NAME, CREATE_PASS) \
922 if (Name == NAME) \
923 return true;
Chandler Carruth628503e2015-01-06 02:10:51 +0000924#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
Chandler Carruth3472ffb2015-01-06 04:49:44 +0000925 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
Chandler Carruth628503e2015-01-06 02:10:51 +0000926 return true;
927#include "PassRegistry.def"
928
Chandler Carruthd8330982014-01-12 09:34:22 +0000929 return false;
930}
931
Justin Bognereecc3c82016-02-25 07:23:08 +0000932static bool isLoopPassName(StringRef Name) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +0000933 // Explicitly handle pass manager names.
934 if (Name == "loop")
935 return true;
936
Chandler Carruth241bf242016-08-03 07:44:48 +0000937 // Explicitly handle custom-parsed pass names.
938 if (parseRepeatPassName(Name))
939 return true;
940
Chandler Carruth74a8a222016-06-17 07:15:29 +0000941#define LOOP_PASS(NAME, CREATE_PASS) \
942 if (Name == NAME) \
943 return true;
Justin Bognereecc3c82016-02-25 07:23:08 +0000944#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
945 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
946 return true;
947#include "PassRegistry.def"
948
949 return false;
950}
951
Chandler Carruth6cb2ab22016-08-03 03:21:41 +0000952Optional<std::vector<PassBuilder::PipelineElement>>
953PassBuilder::parsePipelineText(StringRef Text) {
954 std::vector<PipelineElement> ResultPipeline;
955
956 SmallVector<std::vector<PipelineElement> *, 4> PipelineStack = {
957 &ResultPipeline};
958 for (;;) {
959 std::vector<PipelineElement> &Pipeline = *PipelineStack.back();
960 size_t Pos = Text.find_first_of(",()");
961 Pipeline.push_back({Text.substr(0, Pos), {}});
962
963 // If we have a single terminating name, we're done.
964 if (Pos == Text.npos)
965 break;
966
967 char Sep = Text[Pos];
968 Text = Text.substr(Pos + 1);
969 if (Sep == ',')
970 // Just a name ending in a comma, continue.
971 continue;
972
973 if (Sep == '(') {
974 // Push the inner pipeline onto the stack to continue processing.
975 PipelineStack.push_back(&Pipeline.back().InnerPipeline);
976 continue;
977 }
978
979 assert(Sep == ')' && "Bogus separator!");
980 // When handling the close parenthesis, we greedily consume them to avoid
981 // empty strings in the pipeline.
982 do {
983 // If we try to pop the outer pipeline we have unbalanced parentheses.
984 if (PipelineStack.size() == 1)
985 return None;
986
987 PipelineStack.pop_back();
988 } while (Text.consume_front(")"));
989
990 // Check if we've finished parsing.
991 if (Text.empty())
992 break;
993
994 // Otherwise, the end of an inner pipeline always has to be followed by
995 // a comma, and then we can continue.
996 if (!Text.consume_front(","))
997 return None;
998 }
999
1000 if (PipelineStack.size() > 1)
1001 // Unbalanced paretheses.
1002 return None;
1003
1004 assert(PipelineStack.back() == &ResultPipeline &&
1005 "Wrong pipeline at the bottom of the stack!");
1006 return {std::move(ResultPipeline)};
1007}
1008
1009bool PassBuilder::parseModulePass(ModulePassManager &MPM,
1010 const PipelineElement &E, bool VerifyEachPass,
1011 bool DebugLogging) {
1012 auto &Name = E.Name;
1013 auto &InnerPipeline = E.InnerPipeline;
1014
1015 // First handle complex passes like the pass managers which carry pipelines.
1016 if (!InnerPipeline.empty()) {
1017 if (Name == "module") {
1018 ModulePassManager NestedMPM(DebugLogging);
1019 if (!parseModulePassPipeline(NestedMPM, InnerPipeline, VerifyEachPass,
1020 DebugLogging))
1021 return false;
1022 MPM.addPass(std::move(NestedMPM));
1023 return true;
1024 }
1025 if (Name == "cgscc") {
1026 CGSCCPassManager CGPM(DebugLogging);
1027 if (!parseCGSCCPassPipeline(CGPM, InnerPipeline, VerifyEachPass,
1028 DebugLogging))
1029 return false;
1030 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(CGPM),
1031 DebugLogging));
1032 return true;
1033 }
1034 if (Name == "function") {
1035 FunctionPassManager FPM(DebugLogging);
1036 if (!parseFunctionPassPipeline(FPM, InnerPipeline, VerifyEachPass,
1037 DebugLogging))
1038 return false;
1039 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
1040 return true;
1041 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001042 if (auto Count = parseRepeatPassName(Name)) {
1043 ModulePassManager NestedMPM(DebugLogging);
1044 if (!parseModulePassPipeline(NestedMPM, InnerPipeline, VerifyEachPass,
1045 DebugLogging))
1046 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001047 MPM.addPass(createRepeatedPass(*Count, std::move(NestedMPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001048 return true;
1049 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001050 // Normal passes can't have pipelines.
1051 return false;
1052 }
1053
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001054 // Manually handle aliases for pre-configured pipeline fragments.
1055 if (Name.startswith("default") || Name.startswith("lto")) {
1056 SmallVector<StringRef, 3> Matches;
1057 if (!DefaultAliasRegex.match(Name, &Matches))
1058 return false;
1059 assert(Matches.size() == 3 && "Must capture two matched strings!");
1060
Jordan Rosef85a95f2016-07-25 18:34:51 +00001061 OptimizationLevel L = StringSwitch<OptimizationLevel>(Matches[2])
1062 .Case("O0", O0)
1063 .Case("O1", O1)
1064 .Case("O2", O2)
1065 .Case("O3", O3)
1066 .Case("Os", Os)
1067 .Case("Oz", Oz);
Chandler Carruthe3f50642016-12-22 06:59:15 +00001068 if (L == O0)
1069 // At O0 we do nothing at all!
1070 return true;
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001071
1072 if (Matches[1] == "default") {
Chandler Carruthe3f50642016-12-22 06:59:15 +00001073 MPM.addPass(buildPerModuleDefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001074 } else if (Matches[1] == "lto-pre-link") {
Chandler Carruthe3f50642016-12-22 06:59:15 +00001075 MPM.addPass(buildLTOPreLinkDefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001076 } else {
1077 assert(Matches[1] == "lto" && "Not one of the matched options!");
Chandler Carruthe3f50642016-12-22 06:59:15 +00001078 MPM.addPass(buildLTODefaultPipeline(L, DebugLogging));
Chandler Carruth8b5a74192016-02-28 22:16:03 +00001079 }
1080 return true;
1081 }
1082
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001083 // Finally expand the basic registered passes from the .inc file.
Chandler Carruth58944182014-04-21 08:08:50 +00001084#define MODULE_PASS(NAME, CREATE_PASS) \
1085 if (Name == NAME) { \
1086 MPM.addPass(CREATE_PASS); \
1087 return true; \
Chandler Carruth52eef882014-01-12 12:15:39 +00001088 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001089#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
1090 if (Name == "require<" NAME ">") { \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001091 MPM.addPass( \
1092 RequireAnalysisPass< \
1093 std::remove_reference<decltype(CREATE_PASS)>::type, Module>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001094 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001095 } \
1096 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001097 MPM.addPass(InvalidateAnalysisPass< \
1098 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001099 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001100 }
1101#include "PassRegistry.def"
1102
Chandler Carruth66445382014-01-11 08:16:35 +00001103 return false;
1104}
1105
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001106bool PassBuilder::parseCGSCCPass(CGSCCPassManager &CGPM,
1107 const PipelineElement &E, bool VerifyEachPass,
1108 bool DebugLogging) {
1109 auto &Name = E.Name;
1110 auto &InnerPipeline = E.InnerPipeline;
1111
1112 // First handle complex passes like the pass managers which carry pipelines.
1113 if (!InnerPipeline.empty()) {
1114 if (Name == "cgscc") {
1115 CGSCCPassManager NestedCGPM(DebugLogging);
1116 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1117 DebugLogging))
1118 return false;
1119 // Add the nested pass manager with the appropriate adaptor.
1120 CGPM.addPass(std::move(NestedCGPM));
1121 return true;
1122 }
1123 if (Name == "function") {
1124 FunctionPassManager FPM(DebugLogging);
1125 if (!parseFunctionPassPipeline(FPM, InnerPipeline, VerifyEachPass,
1126 DebugLogging))
1127 return false;
1128 // Add the nested pass manager with the appropriate adaptor.
1129 CGPM.addPass(
1130 createCGSCCToFunctionPassAdaptor(std::move(FPM), DebugLogging));
1131 return true;
1132 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001133 if (auto Count = parseRepeatPassName(Name)) {
1134 CGSCCPassManager NestedCGPM(DebugLogging);
1135 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1136 DebugLogging))
1137 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001138 CGPM.addPass(createRepeatedPass(*Count, std::move(NestedCGPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001139 return true;
1140 }
Chandler Carruth05ca5ac2016-12-28 11:07:33 +00001141 if (auto MaxRepetitions = parseDevirtPassName(Name)) {
1142 CGSCCPassManager NestedCGPM(DebugLogging);
1143 if (!parseCGSCCPassPipeline(NestedCGPM, InnerPipeline, VerifyEachPass,
1144 DebugLogging))
1145 return false;
1146 CGPM.addPass(createDevirtSCCRepeatedPass(std::move(NestedCGPM),
1147 *MaxRepetitions, DebugLogging));
1148 return true;
1149 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001150 // Normal passes can't have pipelines.
1151 return false;
1152 }
1153
1154 // Now expand the basic registered passes from the .inc file.
Chandler Carruth572e3402014-04-21 11:12:00 +00001155#define CGSCC_PASS(NAME, CREATE_PASS) \
1156 if (Name == NAME) { \
1157 CGPM.addPass(CREATE_PASS); \
1158 return true; \
1159 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001160#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
1161 if (Name == "require<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001162 CGPM.addPass(RequireAnalysisPass< \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001163 std::remove_reference<decltype(CREATE_PASS)>::type, \
Chandler Carruth88823462016-08-24 09:37:14 +00001164 LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, \
1165 CGSCCUpdateResult &>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001166 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001167 } \
1168 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001169 CGPM.addPass(InvalidateAnalysisPass< \
1170 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001171 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001172 }
1173#include "PassRegistry.def"
1174
Chandler Carruth572e3402014-04-21 11:12:00 +00001175 return false;
1176}
1177
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001178bool PassBuilder::parseFunctionPass(FunctionPassManager &FPM,
1179 const PipelineElement &E,
1180 bool VerifyEachPass, bool DebugLogging) {
1181 auto &Name = E.Name;
1182 auto &InnerPipeline = E.InnerPipeline;
1183
1184 // First handle complex passes like the pass managers which carry pipelines.
1185 if (!InnerPipeline.empty()) {
1186 if (Name == "function") {
1187 FunctionPassManager NestedFPM(DebugLogging);
1188 if (!parseFunctionPassPipeline(NestedFPM, InnerPipeline, VerifyEachPass,
1189 DebugLogging))
1190 return false;
1191 // Add the nested pass manager with the appropriate adaptor.
1192 FPM.addPass(std::move(NestedFPM));
1193 return true;
1194 }
1195 if (Name == "loop") {
1196 LoopPassManager LPM(DebugLogging);
1197 if (!parseLoopPassPipeline(LPM, InnerPipeline, VerifyEachPass,
1198 DebugLogging))
1199 return false;
1200 // Add the nested pass manager with the appropriate adaptor.
1201 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM)));
1202 return true;
1203 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001204 if (auto Count = parseRepeatPassName(Name)) {
1205 FunctionPassManager NestedFPM(DebugLogging);
1206 if (!parseFunctionPassPipeline(NestedFPM, InnerPipeline, VerifyEachPass,
1207 DebugLogging))
1208 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001209 FPM.addPass(createRepeatedPass(*Count, std::move(NestedFPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001210 return true;
1211 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001212 // Normal passes can't have pipelines.
1213 return false;
1214 }
1215
1216 // Now expand the basic registered passes from the .inc file.
Chandler Carruth58944182014-04-21 08:08:50 +00001217#define FUNCTION_PASS(NAME, CREATE_PASS) \
1218 if (Name == NAME) { \
1219 FPM.addPass(CREATE_PASS); \
1220 return true; \
Chandler Carruth52eef882014-01-12 12:15:39 +00001221 }
Chandler Carruth628503e2015-01-06 02:10:51 +00001222#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
1223 if (Name == "require<" NAME ">") { \
Chandler Carruth9b35e6d2016-08-19 18:36:06 +00001224 FPM.addPass( \
1225 RequireAnalysisPass< \
1226 std::remove_reference<decltype(CREATE_PASS)>::type, Function>()); \
Chandler Carruth628503e2015-01-06 02:10:51 +00001227 return true; \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001228 } \
1229 if (Name == "invalidate<" NAME ">") { \
Chandler Carruth470734b2016-02-26 12:30:18 +00001230 FPM.addPass(InvalidateAnalysisPass< \
1231 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Chandler Carruth3472ffb2015-01-06 04:49:44 +00001232 return true; \
Chandler Carruth628503e2015-01-06 02:10:51 +00001233 }
1234#include "PassRegistry.def"
1235
Chandler Carruthd8330982014-01-12 09:34:22 +00001236 return false;
1237}
1238
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001239bool PassBuilder::parseLoopPass(LoopPassManager &LPM, const PipelineElement &E,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001240 bool VerifyEachPass, bool DebugLogging) {
Chandler Carruth241bf242016-08-03 07:44:48 +00001241 StringRef Name = E.Name;
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001242 auto &InnerPipeline = E.InnerPipeline;
1243
1244 // First handle complex passes like the pass managers which carry pipelines.
1245 if (!InnerPipeline.empty()) {
1246 if (Name == "loop") {
1247 LoopPassManager NestedLPM(DebugLogging);
1248 if (!parseLoopPassPipeline(NestedLPM, InnerPipeline, VerifyEachPass,
1249 DebugLogging))
1250 return false;
1251 // Add the nested pass manager with the appropriate adaptor.
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001252 LPM.addPass(std::move(NestedLPM));
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001253 return true;
1254 }
Chandler Carruth241bf242016-08-03 07:44:48 +00001255 if (auto Count = parseRepeatPassName(Name)) {
1256 LoopPassManager NestedLPM(DebugLogging);
1257 if (!parseLoopPassPipeline(NestedLPM, InnerPipeline, VerifyEachPass,
1258 DebugLogging))
1259 return false;
Chandler Carrutha053a882016-08-04 03:52:53 +00001260 LPM.addPass(createRepeatedPass(*Count, std::move(NestedLPM)));
Chandler Carruth241bf242016-08-03 07:44:48 +00001261 return true;
1262 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001263 // Normal passes can't have pipelines.
1264 return false;
1265 }
1266
1267 // Now expand the basic registered passes from the .inc file.
Justin Bognereecc3c82016-02-25 07:23:08 +00001268#define LOOP_PASS(NAME, CREATE_PASS) \
1269 if (Name == NAME) { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001270 LPM.addPass(CREATE_PASS); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001271 return true; \
1272 }
1273#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
1274 if (Name == "require<" NAME ">") { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001275 LPM.addPass(RequireAnalysisPass< \
Chandler Carruth410eaeb2017-01-11 06:23:21 +00001276 std::remove_reference<decltype(CREATE_PASS)>::type, Loop, \
1277 LoopAnalysisManager, LoopStandardAnalysisResults &, \
1278 LPMUpdater &>()); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001279 return true; \
1280 } \
1281 if (Name == "invalidate<" NAME ">") { \
Chandler Carruthfdc6ba12016-08-03 09:14:03 +00001282 LPM.addPass(InvalidateAnalysisPass< \
Chandler Carruth470734b2016-02-26 12:30:18 +00001283 std::remove_reference<decltype(CREATE_PASS)>::type>()); \
Justin Bognereecc3c82016-02-25 07:23:08 +00001284 return true; \
1285 }
1286#include "PassRegistry.def"
1287
1288 return false;
1289}
1290
Chandler Carruthedf59962016-02-18 09:45:17 +00001291bool PassBuilder::parseAAPassName(AAManager &AA, StringRef Name) {
Chandler Carruth45a9c202016-03-11 09:15:11 +00001292#define MODULE_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
1293 if (Name == NAME) { \
1294 AA.registerModuleAnalysis< \
1295 std::remove_reference<decltype(CREATE_PASS)>::type>(); \
1296 return true; \
1297 }
Chandler Carruthedf59962016-02-18 09:45:17 +00001298#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
1299 if (Name == NAME) { \
Chandler Carruth58dde8c2016-02-26 12:17:54 +00001300 AA.registerFunctionAnalysis< \
1301 std::remove_reference<decltype(CREATE_PASS)>::type>(); \
Chandler Carruthedf59962016-02-18 09:45:17 +00001302 return true; \
1303 }
1304#include "PassRegistry.def"
1305
1306 return false;
1307}
1308
Justin Bognereecc3c82016-02-25 07:23:08 +00001309bool PassBuilder::parseLoopPassPipeline(LoopPassManager &LPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001310 ArrayRef<PipelineElement> Pipeline,
Justin Bognereecc3c82016-02-25 07:23:08 +00001311 bool VerifyEachPass,
1312 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001313 for (const auto &Element : Pipeline) {
1314 if (!parseLoopPass(LPM, Element, VerifyEachPass, DebugLogging))
1315 return false;
1316 // FIXME: No verifier support for Loop passes!
Justin Bognereecc3c82016-02-25 07:23:08 +00001317 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001318 return true;
Justin Bognereecc3c82016-02-25 07:23:08 +00001319}
1320
Chandler Carruth1ff77242015-03-07 09:02:36 +00001321bool PassBuilder::parseFunctionPassPipeline(FunctionPassManager &FPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001322 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001323 bool VerifyEachPass,
1324 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001325 for (const auto &Element : Pipeline) {
1326 if (!parseFunctionPass(FPM, Element, VerifyEachPass, DebugLogging))
1327 return false;
1328 if (VerifyEachPass)
1329 FPM.addPass(VerifierPass());
Chandler Carruthd8330982014-01-12 09:34:22 +00001330 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001331 return true;
Chandler Carruthd8330982014-01-12 09:34:22 +00001332}
1333
Chandler Carruth1ff77242015-03-07 09:02:36 +00001334bool PassBuilder::parseCGSCCPassPipeline(CGSCCPassManager &CGPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001335 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001336 bool VerifyEachPass,
1337 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001338 for (const auto &Element : Pipeline) {
1339 if (!parseCGSCCPass(CGPM, Element, VerifyEachPass, DebugLogging))
1340 return false;
1341 // FIXME: No verifier support for CGSCC passes!
Chandler Carruth572e3402014-04-21 11:12:00 +00001342 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001343 return true;
Chandler Carruth572e3402014-04-21 11:12:00 +00001344}
1345
NAKAMURA Takumia42f5282016-05-16 10:13:37 +00001346void PassBuilder::crossRegisterProxies(LoopAnalysisManager &LAM,
1347 FunctionAnalysisManager &FAM,
1348 CGSCCAnalysisManager &CGAM,
1349 ModuleAnalysisManager &MAM) {
1350 MAM.registerPass([&] { return FunctionAnalysisManagerModuleProxy(FAM); });
1351 MAM.registerPass([&] { return CGSCCAnalysisManagerModuleProxy(CGAM); });
NAKAMURA Takumia42f5282016-05-16 10:13:37 +00001352 CGAM.registerPass([&] { return ModuleAnalysisManagerCGSCCProxy(MAM); });
1353 FAM.registerPass([&] { return CGSCCAnalysisManagerFunctionProxy(CGAM); });
1354 FAM.registerPass([&] { return ModuleAnalysisManagerFunctionProxy(MAM); });
1355 FAM.registerPass([&] { return LoopAnalysisManagerFunctionProxy(LAM); });
1356 LAM.registerPass([&] { return FunctionAnalysisManagerLoopProxy(FAM); });
1357}
1358
Chandler Carruth1ff77242015-03-07 09:02:36 +00001359bool PassBuilder::parseModulePassPipeline(ModulePassManager &MPM,
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001360 ArrayRef<PipelineElement> Pipeline,
Chandler Carruth1ff77242015-03-07 09:02:36 +00001361 bool VerifyEachPass,
1362 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001363 for (const auto &Element : Pipeline) {
1364 if (!parseModulePass(MPM, Element, VerifyEachPass, DebugLogging))
1365 return false;
1366 if (VerifyEachPass)
1367 MPM.addPass(VerifierPass());
Chandler Carruth66445382014-01-11 08:16:35 +00001368 }
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001369 return true;
Chandler Carruth66445382014-01-11 08:16:35 +00001370}
1371
1372// Primary pass pipeline description parsing routine.
1373// FIXME: Should this routine accept a TargetMachine or require the caller to
1374// pre-populate the analysis managers with target-specific stuff?
Chandler Carruth1ff77242015-03-07 09:02:36 +00001375bool PassBuilder::parsePassPipeline(ModulePassManager &MPM,
1376 StringRef PipelineText, bool VerifyEachPass,
1377 bool DebugLogging) {
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001378 auto Pipeline = parsePipelineText(PipelineText);
1379 if (!Pipeline || Pipeline->empty())
1380 return false;
Chandler Carruth66445382014-01-11 08:16:35 +00001381
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001382 // If the first name isn't at the module layer, wrap the pipeline up
1383 // automatically.
1384 StringRef FirstName = Pipeline->front().Name;
Chandler Carruth66445382014-01-11 08:16:35 +00001385
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001386 if (!isModulePassName(FirstName)) {
1387 if (isCGSCCPassName(FirstName))
1388 Pipeline = {{"cgscc", std::move(*Pipeline)}};
1389 else if (isFunctionPassName(FirstName))
1390 Pipeline = {{"function", std::move(*Pipeline)}};
1391 else if (isLoopPassName(FirstName))
1392 Pipeline = {{"function", {{"loop", std::move(*Pipeline)}}}};
1393 else
1394 // Unknown pass name!
Chandler Carruth572e3402014-04-21 11:12:00 +00001395 return false;
Chandler Carruth572e3402014-04-21 11:12:00 +00001396 }
1397
Chandler Carruth6cb2ab22016-08-03 03:21:41 +00001398 return parseModulePassPipeline(MPM, *Pipeline, VerifyEachPass, DebugLogging);
Chandler Carruth66445382014-01-11 08:16:35 +00001399}
Chandler Carruthedf59962016-02-18 09:45:17 +00001400
1401bool PassBuilder::parseAAPipeline(AAManager &AA, StringRef PipelineText) {
Chandler Carruth060ad612016-12-23 20:38:19 +00001402 // If the pipeline just consists of the word 'default' just replace the AA
1403 // manager with our default one.
1404 if (PipelineText == "default") {
1405 AA = buildDefaultAAPipeline();
1406 return true;
1407 }
1408
Chandler Carruthedf59962016-02-18 09:45:17 +00001409 while (!PipelineText.empty()) {
1410 StringRef Name;
1411 std::tie(Name, PipelineText) = PipelineText.split(',');
1412 if (!parseAAPassName(AA, Name))
1413 return false;
1414 }
1415
1416 return true;
1417}