68d69a95622d30055a889da873daedf93c75d1de
[oota-llvm.git] / lib / Transforms / IPO / PassManagerBuilder.cpp
1 //===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===//
2 //
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 //
10 // This file defines the PassManagerBuilder class, which is used to set up a
11 // "standard" optimization sequence suitable for languages like C and C++.
12 //
13 //===----------------------------------------------------------------------===//
14
15
16 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
17 #include "llvm-c/Transforms/PassManagerBuilder.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/Analysis/Passes.h"
20 #include "llvm/Analysis/Verifier.h"
21 #include "llvm/PassManager.h"
22 #include "llvm/Support/CommandLine.h"
23 #include "llvm/Support/ManagedStatic.h"
24 #include "llvm/Target/TargetLibraryInfo.h"
25 #include "llvm/Transforms/IPO.h"
26 #include "llvm/Transforms/Scalar.h"
27 #include "llvm/Transforms/Vectorize.h"
28
29 using namespace llvm;
30
31 static cl::opt<bool>
32 RunLoopVectorization("vectorize-loops",
33                      cl::desc("Run the Loop vectorization passes"));
34
35 static cl::opt<bool>
36 LateVectorization("late-vectorize", cl::init(false), cl::Hidden,
37                   cl::desc("Run the vectorization pasess late in the pass "
38                            "pipeline (after the inliner)"));
39
40 static cl::opt<bool>
41 RunSLPVectorization("vectorize-slp",
42                     cl::desc("Run the SLP vectorization passes"));
43
44 static cl::opt<bool>
45 RunBBVectorization("vectorize-slp-aggressive",
46                     cl::desc("Run the BB vectorization passes"));
47
48 static cl::opt<bool>
49 UseGVNAfterVectorization("use-gvn-after-vectorization",
50   cl::init(false), cl::Hidden,
51   cl::desc("Run GVN instead of Early CSE after vectorization passes"));
52
53 static cl::opt<bool> UseNewSROA("use-new-sroa",
54   cl::init(true), cl::Hidden,
55   cl::desc("Enable the new, experimental SROA pass"));
56
57 PassManagerBuilder::PassManagerBuilder() {
58     OptLevel = 2;
59     SizeLevel = 0;
60     LibraryInfo = 0;
61     Inliner = 0;
62     DisableUnitAtATime = false;
63     DisableUnrollLoops = false;
64     BBVectorize = RunBBVectorization;
65     SLPVectorize = RunSLPVectorization;
66     LoopVectorize = RunLoopVectorization;
67     LateVectorize = LateVectorization;
68 }
69
70 PassManagerBuilder::~PassManagerBuilder() {
71   delete LibraryInfo;
72   delete Inliner;
73 }
74
75 /// Set of global extensions, automatically added as part of the standard set.
76 static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
77    PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
78
79 void PassManagerBuilder::addGlobalExtension(
80     PassManagerBuilder::ExtensionPointTy Ty,
81     PassManagerBuilder::ExtensionFn Fn) {
82   GlobalExtensions->push_back(std::make_pair(Ty, Fn));
83 }
84
85 void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
86   Extensions.push_back(std::make_pair(Ty, Fn));
87 }
88
89 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
90                                            PassManagerBase &PM) const {
91   for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
92     if ((*GlobalExtensions)[i].first == ETy)
93       (*GlobalExtensions)[i].second(*this, PM);
94   for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
95     if (Extensions[i].first == ETy)
96       Extensions[i].second(*this, PM);
97 }
98
99 void
100 PassManagerBuilder::addInitialAliasAnalysisPasses(PassManagerBase &PM) const {
101   // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
102   // BasicAliasAnalysis wins if they disagree. This is intended to help
103   // support "obvious" type-punning idioms.
104   PM.add(createTypeBasedAliasAnalysisPass());
105   PM.add(createBasicAliasAnalysisPass());
106 }
107
108 void PassManagerBuilder::populateFunctionPassManager(FunctionPassManager &FPM) {
109   addExtensionsToPM(EP_EarlyAsPossible, FPM);
110
111   // Add LibraryInfo if we have some.
112   if (LibraryInfo) FPM.add(new TargetLibraryInfo(*LibraryInfo));
113
114   if (OptLevel == 0) return;
115
116   addInitialAliasAnalysisPasses(FPM);
117
118   FPM.add(createCFGSimplificationPass());
119   if (UseNewSROA)
120     FPM.add(createSROAPass());
121   else
122     FPM.add(createScalarReplAggregatesPass());
123   FPM.add(createEarlyCSEPass());
124   FPM.add(createLowerExpectIntrinsicPass());
125 }
126
127 void PassManagerBuilder::populateModulePassManager(PassManagerBase &MPM) {
128   // If all optimizations are disabled, just run the always-inline pass.
129   if (OptLevel == 0) {
130     if (Inliner) {
131       MPM.add(Inliner);
132       Inliner = 0;
133     }
134
135     // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
136     // pass manager, but we don't want to add extensions into that pass manager.
137     // To prevent this we must insert a no-op module pass to reset the pass
138     // manager to get the same behavior as EP_OptimizerLast in non-O0 builds.
139     if (!GlobalExtensions->empty() || !Extensions.empty())
140       MPM.add(createBarrierNoopPass());
141
142     addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
143     return;
144   }
145
146   // Add LibraryInfo if we have some.
147   if (LibraryInfo) MPM.add(new TargetLibraryInfo(*LibraryInfo));
148
149   addInitialAliasAnalysisPasses(MPM);
150
151   if (!DisableUnitAtATime) {
152     addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
153
154     MPM.add(createGlobalOptimizerPass());     // Optimize out global vars
155
156     MPM.add(createIPSCCPPass());              // IP SCCP
157     MPM.add(createDeadArgEliminationPass());  // Dead argument elimination
158
159     MPM.add(createInstructionCombiningPass());// Clean up after IPCP & DAE
160     MPM.add(createCFGSimplificationPass());   // Clean up after IPCP & DAE
161   }
162
163   // Start of CallGraph SCC passes.
164   if (!DisableUnitAtATime)
165     MPM.add(createPruneEHPass());             // Remove dead EH info
166   if (Inliner) {
167     MPM.add(Inliner);
168     Inliner = 0;
169   }
170   if (!DisableUnitAtATime)
171     MPM.add(createFunctionAttrsPass());       // Set readonly/readnone attrs
172   if (OptLevel > 2)
173     MPM.add(createArgumentPromotionPass());   // Scalarize uninlined fn args
174
175   // Start of function pass.
176   // Break up aggregate allocas, using SSAUpdater.
177   if (UseNewSROA)
178     MPM.add(createSROAPass(/*RequiresDomTree*/ false));
179   else
180     MPM.add(createScalarReplAggregatesPass(-1, false));
181   MPM.add(createEarlyCSEPass());              // Catch trivial redundancies
182   MPM.add(createJumpThreadingPass());         // Thread jumps.
183   MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
184   MPM.add(createCFGSimplificationPass());     // Merge & remove BBs
185   MPM.add(createInstructionCombiningPass());  // Combine silly seq's
186
187   MPM.add(createTailCallEliminationPass());   // Eliminate tail calls
188   MPM.add(createCFGSimplificationPass());     // Merge & remove BBs
189   MPM.add(createReassociatePass());           // Reassociate expressions
190   MPM.add(createLoopRotatePass());            // Rotate Loop
191   MPM.add(createLICMPass());                  // Hoist loop invariants
192   MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
193   MPM.add(createInstructionCombiningPass());
194   MPM.add(createIndVarSimplifyPass());        // Canonicalize indvars
195   MPM.add(createLoopIdiomPass());             // Recognize idioms like memset.
196   MPM.add(createLoopDeletionPass());          // Delete dead loops
197
198   if (!LateVectorize && LoopVectorize)
199       MPM.add(createLoopVectorizePass(DisableUnrollLoops));
200
201   if (!DisableUnrollLoops)
202     MPM.add(createLoopUnrollPass());          // Unroll small loops
203   addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
204
205   if (OptLevel > 1)
206     MPM.add(createGVNPass());                 // Remove redundancies
207   MPM.add(createMemCpyOptPass());             // Remove memcpy / form memset
208   MPM.add(createSCCPPass());                  // Constant prop with SCCP
209
210   // Run instcombine after redundancy elimination to exploit opportunities
211   // opened up by them.
212   MPM.add(createInstructionCombiningPass());
213   MPM.add(createJumpThreadingPass());         // Thread jumps
214   MPM.add(createCorrelatedValuePropagationPass());
215   MPM.add(createDeadStoreEliminationPass());  // Delete dead stores
216
217   addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
218
219   if (SLPVectorize)
220     MPM.add(createSLPVectorizerPass());   // Vectorize parallel scalar chains.
221
222   if (BBVectorize) {
223     MPM.add(createBBVectorizePass());
224     MPM.add(createInstructionCombiningPass());
225     if (OptLevel > 1 && UseGVNAfterVectorization)
226       MPM.add(createGVNPass());           // Remove redundancies
227     else
228       MPM.add(createEarlyCSEPass());      // Catch trivial redundancies
229
230     // BBVectorize may have significantly shortened a loop body; unroll again.
231     if (!DisableUnrollLoops)
232       MPM.add(createLoopUnrollPass());
233   }
234
235   MPM.add(createAggressiveDCEPass());         // Delete dead instructions
236   MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
237   MPM.add(createInstructionCombiningPass());  // Clean up after everything.
238
239   // As an experimental mode, run any vectorization passes in a separate
240   // pipeline from the CGSCC pass manager that runs iteratively with the
241   // inliner.
242   if (LateVectorize && LoopVectorize) {
243     // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
244     // pass manager that we are specifically trying to avoid. To prevent this
245     // we must insert a no-op module pass to reset the pass manager.
246     MPM.add(createBarrierNoopPass());
247
248     // Add the various vectorization passes and relevant cleanup passes for
249     // them since we are no longer in the middle of the main scalar pipeline.
250     MPM.add(createLoopVectorizePass(DisableUnrollLoops));
251     MPM.add(createInstructionCombiningPass());
252     MPM.add(createCFGSimplificationPass());
253   }
254
255   if (!DisableUnitAtATime) {
256     // FIXME: We shouldn't bother with this anymore.
257     MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
258
259     // GlobalOpt already deletes dead functions and globals, at -O2 try a
260     // late pass of GlobalDCE.  It is capable of deleting dead cycles.
261     if (OptLevel > 1) {
262       MPM.add(createGlobalDCEPass());         // Remove dead fns and globals.
263       MPM.add(createConstantMergePass());     // Merge dup global constants
264     }
265   }
266   addExtensionsToPM(EP_OptimizerLast, MPM);
267 }
268
269 void PassManagerBuilder::populateLTOPassManager(PassManagerBase &PM,
270                                                 bool Internalize,
271                                                 bool RunInliner,
272                                                 bool DisableGVNLoadPRE) {
273   // Provide AliasAnalysis services for optimizations.
274   addInitialAliasAnalysisPasses(PM);
275
276   // Now that composite has been compiled, scan through the module, looking
277   // for a main function.  If main is defined, mark all other functions
278   // internal.
279   if (Internalize) {
280     std::vector<const char*> E;
281     E.push_back("main");
282     PM.add(createInternalizePass(E));
283   }
284
285   // Propagate constants at call sites into the functions they call.  This
286   // opens opportunities for globalopt (and inlining) by substituting function
287   // pointers passed as arguments to direct uses of functions.
288   PM.add(createIPSCCPPass());
289
290   // Now that we internalized some globals, see if we can hack on them!
291   PM.add(createGlobalOptimizerPass());
292
293   // Linking modules together can lead to duplicated global constants, only
294   // keep one copy of each constant.
295   PM.add(createConstantMergePass());
296
297   // Remove unused arguments from functions.
298   PM.add(createDeadArgEliminationPass());
299
300   // Reduce the code after globalopt and ipsccp.  Both can open up significant
301   // simplification opportunities, and both can propagate functions through
302   // function pointers.  When this happens, we often have to resolve varargs
303   // calls, etc, so let instcombine do this.
304   PM.add(createInstructionCombiningPass());
305
306   // Inline small functions
307   if (RunInliner)
308     PM.add(createFunctionInliningPass());
309
310   PM.add(createPruneEHPass());   // Remove dead EH info.
311
312   // Optimize globals again if we ran the inliner.
313   if (RunInliner)
314     PM.add(createGlobalOptimizerPass());
315   PM.add(createGlobalDCEPass()); // Remove dead functions.
316
317   // If we didn't decide to inline a function, check to see if we can
318   // transform it to pass arguments by value instead of by reference.
319   PM.add(createArgumentPromotionPass());
320
321   // The IPO passes may leave cruft around.  Clean up after them.
322   PM.add(createInstructionCombiningPass());
323   PM.add(createJumpThreadingPass());
324   // Break up allocas
325   if (UseNewSROA)
326     PM.add(createSROAPass());
327   else
328     PM.add(createScalarReplAggregatesPass());
329
330   // Run a few AA driven optimizations here and now, to cleanup the code.
331   PM.add(createFunctionAttrsPass()); // Add nocapture.
332   PM.add(createGlobalsModRefPass()); // IP alias analysis.
333
334   PM.add(createLICMPass());                 // Hoist loop invariants.
335   PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
336   PM.add(createMemCpyOptPass());            // Remove dead memcpys.
337   // Nuke dead stores.
338   PM.add(createDeadStoreEliminationPass());
339
340   // Cleanup and simplify the code after the scalar optimizations.
341   PM.add(createInstructionCombiningPass());
342
343   PM.add(createJumpThreadingPass());
344
345   // Delete basic blocks, which optimization passes may have killed.
346   PM.add(createCFGSimplificationPass());
347
348   // Now that we have optimized the program, discard unreachable functions.
349   PM.add(createGlobalDCEPass());
350 }
351
352 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
353     return reinterpret_cast<PassManagerBuilder*>(P);
354 }
355
356 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
357   return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
358 }
359
360 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
361   PassManagerBuilder *PMB = new PassManagerBuilder();
362   return wrap(PMB);
363 }
364
365 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
366   PassManagerBuilder *Builder = unwrap(PMB);
367   delete Builder;
368 }
369
370 void
371 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
372                                   unsigned OptLevel) {
373   PassManagerBuilder *Builder = unwrap(PMB);
374   Builder->OptLevel = OptLevel;
375 }
376
377 void
378 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
379                                    unsigned SizeLevel) {
380   PassManagerBuilder *Builder = unwrap(PMB);
381   Builder->SizeLevel = SizeLevel;
382 }
383
384 void
385 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
386                                             LLVMBool Value) {
387   PassManagerBuilder *Builder = unwrap(PMB);
388   Builder->DisableUnitAtATime = Value;
389 }
390
391 void
392 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
393                                             LLVMBool Value) {
394   PassManagerBuilder *Builder = unwrap(PMB);
395   Builder->DisableUnrollLoops = Value;
396 }
397
398 void
399 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
400                                                  LLVMBool Value) {
401   // NOTE: The simplify-libcalls pass has been removed.
402 }
403
404 void
405 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
406                                               unsigned Threshold) {
407   PassManagerBuilder *Builder = unwrap(PMB);
408   Builder->Inliner = createFunctionInliningPass(Threshold);
409 }
410
411 void
412 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
413                                                   LLVMPassManagerRef PM) {
414   PassManagerBuilder *Builder = unwrap(PMB);
415   FunctionPassManager *FPM = unwrap<FunctionPassManager>(PM);
416   Builder->populateFunctionPassManager(*FPM);
417 }
418
419 void
420 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
421                                                 LLVMPassManagerRef PM) {
422   PassManagerBuilder *Builder = unwrap(PMB);
423   PassManagerBase *MPM = unwrap(PM);
424   Builder->populateModulePassManager(*MPM);
425 }
426
427 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
428                                                   LLVMPassManagerRef PM,
429                                                   LLVMBool Internalize,
430                                                   LLVMBool RunInliner) {
431   PassManagerBuilder *Builder = unwrap(PMB);
432   PassManagerBase *LPM = unwrap(PM);
433   Builder->populateLTOPassManager(*LPM, Internalize != 0, RunInliner != 0);
434 }