blob: 6d12dd839c3c6129ee2b934f2d9c56dec30333ca [file] [log] [blame]
Chris Lattneraa4c91f2003-12-28 07:59:53 +00001//===-- Passes.cpp - Target independent code generation passes ------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +00009//
10// This file defines interfaces to access the target independent code
11// generation passes provided by the LLVM backend.
12//
13//===---------------------------------------------------------------------===//
14
Andrew Trickd5422652012-02-04 02:56:48 +000015#include "llvm/Analysis/Passes.h"
16#include "llvm/Analysis/Verifier.h"
17#include "llvm/Transforms/Scalar.h"
18#include "llvm/PassManager.h"
19#include "llvm/CodeGen/GCStrategy.h"
Andrew Trickd5422652012-02-04 02:56:48 +000020#include "llvm/CodeGen/MachineFunctionPass.h"
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +000021#include "llvm/CodeGen/Passes.h"
Andrew Trickd5422652012-02-04 02:56:48 +000022#include "llvm/CodeGen/RegAllocRegistry.h"
23#include "llvm/Target/TargetLowering.h"
Andrew Trickd5422652012-02-04 02:56:48 +000024#include "llvm/Target/TargetOptions.h"
Andrew Trickd5422652012-02-04 02:56:48 +000025#include "llvm/Assembly/PrintModulePass.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
Andrew Trick74613342012-02-04 02:56:45 +000028#include "llvm/Support/ErrorHandling.h"
Jim Laskey13ec7022006-08-01 14:21:23 +000029
Chris Lattneraa4c91f2003-12-28 07:59:53 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Andrew Trickd5422652012-02-04 02:56:48 +000032static cl::opt<bool> DisablePostRA("disable-post-ra", cl::Hidden,
33 cl::desc("Disable Post Regalloc"));
34static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
35 cl::desc("Disable branch folding"));
36static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
37 cl::desc("Disable tail duplication"));
38static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
39 cl::desc("Disable pre-register allocation tail duplication"));
40static cl::opt<bool> EnableBlockPlacement("enable-block-placement",
41 cl::Hidden, cl::desc("Enable probability-driven block placement"));
42static cl::opt<bool> EnableBlockPlacementStats("enable-block-placement-stats",
43 cl::Hidden, cl::desc("Collect probability-driven block placement stats"));
44static cl::opt<bool> DisableCodePlace("disable-code-place", cl::Hidden,
45 cl::desc("Disable code placement"));
46static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
47 cl::desc("Disable Stack Slot Coloring"));
48static cl::opt<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden,
49 cl::desc("Disable Machine Dead Code Elimination"));
50static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
51 cl::desc("Disable Machine LICM"));
52static cl::opt<bool> DisableMachineCSE("disable-machine-cse", cl::Hidden,
53 cl::desc("Disable Machine Common Subexpression Elimination"));
54static cl::opt<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
55 cl::Hidden,
56 cl::desc("Disable Machine LICM"));
57static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
58 cl::desc("Disable Machine Sinking"));
59static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
60 cl::desc("Disable Loop Strength Reduction Pass"));
61static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
62 cl::desc("Disable Codegen Prepare"));
63static cl::opt<bool> DisableCopyProp("disable-copyprop", cl::Hidden,
64 cl::desc("Disable Copy Propagation pass"));
65static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
66 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
67static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
68 cl::desc("Print LLVM IR input to isel pass"));
69static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
70 cl::desc("Dump garbage collector data"));
71static cl::opt<bool> VerifyMachineCode("verify-machineinstrs", cl::Hidden,
72 cl::desc("Verify generated machine code"),
73 cl::init(getenv("LLVM_VERIFY_MACHINEINSTRS")!=NULL));
74
Jim Laskeyeb577ba2006-08-02 12:30:23 +000075//===---------------------------------------------------------------------===//
Andrew Trick74613342012-02-04 02:56:45 +000076/// TargetPassConfig
77//===---------------------------------------------------------------------===//
78
79INITIALIZE_PASS(TargetPassConfig, "targetpassconfig",
80 "Target Pass Configuration", false, false)
81char TargetPassConfig::ID = 0;
82
83// Out of line virtual method.
84TargetPassConfig::~TargetPassConfig() {}
85
Andrew Trick061efcf2012-02-04 02:56:59 +000086TargetPassConfig::TargetPassConfig(TargetMachine *tm, PassManagerBase &pm)
Andrew Trickffea03f2012-02-08 21:22:39 +000087 : ImmutablePass(ID), TM(tm), PM(pm), Initialized(false),
88 DisableVerify(false),
89 EnableTailMerge(true) {
90
Andrew Trick74613342012-02-04 02:56:45 +000091 // Register all target independent codegen passes to activate their PassIDs,
92 // including this pass itself.
93 initializeCodeGen(*PassRegistry::getPassRegistry());
94}
95
96/// createPassConfig - Create a pass configuration object to be used by
97/// addPassToEmitX methods for generating a pipeline of CodeGen passes.
98///
99/// Targets may override this to extend TargetPassConfig.
Andrew Trick061efcf2012-02-04 02:56:59 +0000100TargetPassConfig *LLVMTargetMachine::createPassConfig(PassManagerBase &PM) {
101 return new TargetPassConfig(this, PM);
Andrew Trick74613342012-02-04 02:56:45 +0000102}
103
104TargetPassConfig::TargetPassConfig()
105 : ImmutablePass(ID), PM(*(PassManagerBase*)0) {
106 llvm_unreachable("TargetPassConfig should not be constructed on-the-fly");
107}
108
Andrew Trickffea03f2012-02-08 21:22:39 +0000109// Helper to verify the analysis is really immutable.
110void TargetPassConfig::setOpt(bool &Opt, bool Val) {
111 assert(!Initialized && "PassConfig is immutable");
112 Opt = Val;
113}
114
Andrew Trickebe18ef2012-02-08 21:22:34 +0000115void TargetPassConfig::addPass(char &ID) {
116 // FIXME: check user overrides
117 Pass *P = Pass::createPass(ID);
118 if (!P)
119 llvm_unreachable("Pass ID not registered");
120 PM.add(P);
Andrew Trick061efcf2012-02-04 02:56:59 +0000121}
Andrew Trickd5422652012-02-04 02:56:48 +0000122
123void TargetPassConfig::printNoVerify(const char *Banner) const {
124 if (TM->shouldPrintMachineCode())
125 PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
126}
127
128void TargetPassConfig::printAndVerify(const char *Banner) const {
129 if (TM->shouldPrintMachineCode())
130 PM.add(createMachineFunctionPrinterPass(dbgs(), Banner));
131
132 if (VerifyMachineCode)
133 PM.add(createMachineVerifierPass(Banner));
134}
135
Andrew Trick061efcf2012-02-04 02:56:59 +0000136/// Add common target configurable passes that perform LLVM IR to IR transforms
137/// following machine independent optimization.
138void TargetPassConfig::addIRPasses() {
Andrew Trickd5422652012-02-04 02:56:48 +0000139 // Basic AliasAnalysis support.
140 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
141 // BasicAliasAnalysis wins if they disagree. This is intended to help
142 // support "obvious" type-punning idioms.
143 PM.add(createTypeBasedAliasAnalysisPass());
144 PM.add(createBasicAliasAnalysisPass());
145
146 // Before running any passes, run the verifier to determine if the input
147 // coming from the front-end and/or optimizer is valid.
148 if (!DisableVerify)
149 PM.add(createVerifierPass());
150
151 // Run loop strength reduction before anything else.
152 if (getOptLevel() != CodeGenOpt::None && !DisableLSR) {
153 PM.add(createLoopStrengthReducePass(getTargetLowering()));
154 if (PrintLSR)
155 PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &dbgs()));
156 }
157
158 PM.add(createGCLoweringPass());
159
160 // Make sure that no unreachable blocks are instruction selected.
161 PM.add(createUnreachableBlockEliminationPass());
Andrew Trick061efcf2012-02-04 02:56:59 +0000162}
Andrew Trickd5422652012-02-04 02:56:48 +0000163
Andrew Trick061efcf2012-02-04 02:56:59 +0000164/// Add common passes that perform LLVM IR to IR transforms in preparation for
165/// instruction selection.
166void TargetPassConfig::addISelPrepare() {
Andrew Trickd5422652012-02-04 02:56:48 +0000167 if (getOptLevel() != CodeGenOpt::None && !DisableCGP)
168 PM.add(createCodeGenPreparePass(getTargetLowering()));
169
170 PM.add(createStackProtectorPass(getTargetLowering()));
171
172 addPreISel();
173
174 if (PrintISelInput)
175 PM.add(createPrintFunctionPass("\n\n"
176 "*** Final LLVM Code input to ISel ***\n",
177 &dbgs()));
178
179 // All passes which modify the LLVM IR are now complete; run the verifier
180 // to ensure that the IR is valid.
181 if (!DisableVerify)
182 PM.add(createVerifierPass());
Andrew Trick061efcf2012-02-04 02:56:59 +0000183}
Andrew Trickd5422652012-02-04 02:56:48 +0000184
Andrew Trick061efcf2012-02-04 02:56:59 +0000185void TargetPassConfig::addMachinePasses() {
Andrew Trickd5422652012-02-04 02:56:48 +0000186 // Print the instruction selected machine code...
187 printAndVerify("After Instruction Selection");
188
189 // Expand pseudo-instructions emitted by ISel.
190 PM.add(createExpandISelPseudosPass());
191
192 // Pre-ra tail duplication.
193 if (getOptLevel() != CodeGenOpt::None && !DisableEarlyTailDup) {
Andrew Trickd2a7bed2012-02-08 21:22:30 +0000194 PM.add(createTailDuplicatePass());
Andrew Trickd5422652012-02-04 02:56:48 +0000195 printAndVerify("After Pre-RegAlloc TailDuplicate");
196 }
197
198 // Optimize PHIs before DCE: removing dead PHI cycles may make more
199 // instructions dead.
200 if (getOptLevel() != CodeGenOpt::None)
201 PM.add(createOptimizePHIsPass());
202
203 // If the target requests it, assign local variables to stack slots relative
204 // to one another and simplify frame index references where possible.
205 PM.add(createLocalStackSlotAllocationPass());
206
207 if (getOptLevel() != CodeGenOpt::None) {
208 // With optimization, dead code should already be eliminated. However
209 // there is one known exception: lowered code for arguments that are only
210 // used by tail calls, where the tail calls reuse the incoming stack
211 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
212 if (!DisableMachineDCE)
213 PM.add(createDeadMachineInstructionElimPass());
214 printAndVerify("After codegen DCE pass");
215
216 if (!DisableMachineLICM)
217 PM.add(createMachineLICMPass());
218 if (!DisableMachineCSE)
219 PM.add(createMachineCSEPass());
220 if (!DisableMachineSink)
221 PM.add(createMachineSinkingPass());
222 printAndVerify("After Machine LICM, CSE and Sinking passes");
223
224 PM.add(createPeepholeOptimizerPass());
225 printAndVerify("After codegen peephole optimization pass");
226 }
227
228 // Run pre-ra passes.
229 if (addPreRegAlloc())
230 printAndVerify("After PreRegAlloc passes");
231
232 // Perform register allocation.
233 PM.add(createRegisterAllocator(getOptLevel()));
234 printAndVerify("After Register Allocation");
235
236 // Perform stack slot coloring and post-ra machine LICM.
237 if (getOptLevel() != CodeGenOpt::None) {
238 // FIXME: Re-enable coloring with register when it's capable of adding
239 // kill markers.
240 if (!DisableSSC)
241 PM.add(createStackSlotColoringPass(false));
242
243 // Run post-ra machine LICM to hoist reloads / remats.
244 if (!DisablePostRAMachineLICM)
245 PM.add(createMachineLICMPass(false));
246
247 printAndVerify("After StackSlotColoring and postra Machine LICM");
248 }
249
250 // Run post-ra passes.
251 if (addPostRegAlloc())
252 printAndVerify("After PostRegAlloc passes");
253
254 // Insert prolog/epilog code. Eliminate abstract frame index references...
255 PM.add(createPrologEpilogCodeInserter());
256 printAndVerify("After PrologEpilogCodeInserter");
257
258 // Branch folding must be run after regalloc and prolog/epilog insertion.
259 if (getOptLevel() != CodeGenOpt::None && !DisableBranchFold) {
260 PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));
261 printNoVerify("After BranchFolding");
262 }
263
264 // Tail duplication.
265 if (getOptLevel() != CodeGenOpt::None && !DisableTailDuplicate) {
Andrew Trickd2a7bed2012-02-08 21:22:30 +0000266 PM.add(createTailDuplicatePass());
Andrew Trickd5422652012-02-04 02:56:48 +0000267 printNoVerify("After TailDuplicate");
268 }
269
270 // Copy propagation.
271 if (getOptLevel() != CodeGenOpt::None && !DisableCopyProp) {
272 PM.add(createMachineCopyPropagationPass());
273 printNoVerify("After copy propagation pass");
274 }
275
276 // Expand pseudo instructions before second scheduling pass.
277 PM.add(createExpandPostRAPseudosPass());
278 printNoVerify("After ExpandPostRAPseudos");
279
280 // Run pre-sched2 passes.
281 if (addPreSched2())
282 printNoVerify("After PreSched2 passes");
283
284 // Second pass scheduler.
285 if (getOptLevel() != CodeGenOpt::None && !DisablePostRA) {
286 PM.add(createPostRAScheduler(getOptLevel()));
287 printNoVerify("After PostRAScheduler");
288 }
289
290 PM.add(createGCMachineCodeAnalysisPass());
291
292 if (PrintGCInfo)
293 PM.add(createGCInfoPrinter(dbgs()));
294
295 if (getOptLevel() != CodeGenOpt::None && !DisableCodePlace) {
296 if (EnableBlockPlacement) {
297 // MachineBlockPlacement is an experimental pass which is disabled by
298 // default currently. Eventually it should subsume CodePlacementOpt, so
299 // when enabled, the other is disabled.
300 PM.add(createMachineBlockPlacementPass());
301 printNoVerify("After MachineBlockPlacement");
302 } else {
303 PM.add(createCodePlacementOptPass());
304 printNoVerify("After CodePlacementOpt");
305 }
306
307 // Run a separate pass to collect block placement statistics.
308 if (EnableBlockPlacementStats) {
309 PM.add(createMachineBlockPlacementStatsPass());
310 printNoVerify("After MachineBlockPlacementStats");
311 }
312 }
313
314 if (addPreEmitPass())
315 printNoVerify("After PreEmit passes");
Andrew Trickd5422652012-02-04 02:56:48 +0000316}
317
Andrew Trick74613342012-02-04 02:56:45 +0000318//===---------------------------------------------------------------------===//
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000319///
320/// RegisterRegAlloc class - Track the registration of register allocators.
321///
322//===---------------------------------------------------------------------===//
323MachinePassRegistry RegisterRegAlloc::Registry;
324
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000325static FunctionPass *createDefaultRegisterAllocator() { return 0; }
326static RegisterRegAlloc
327defaultRegAlloc("default",
328 "pick register allocator based on -O option",
329 createDefaultRegisterAllocator);
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000330
331//===---------------------------------------------------------------------===//
332///
333/// RegAlloc command line options.
334///
335//===---------------------------------------------------------------------===//
Dan Gohman844731a2008-05-13 00:00:25 +0000336static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
337 RegisterPassParser<RegisterRegAlloc> >
338RegAlloc("regalloc",
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000339 cl::init(&createDefaultRegisterAllocator),
340 cl::desc("Register allocator to use"));
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +0000341
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000342
343//===---------------------------------------------------------------------===//
344///
345/// createRegisterAllocator - choose the appropriate register allocator.
346///
347//===---------------------------------------------------------------------===//
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000348FunctionPass *llvm::createRegisterAllocator(CodeGenOpt::Level OptLevel) {
Jim Laskey9ff542f2006-08-01 18:29:48 +0000349 RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000350
Jim Laskey13ec7022006-08-01 14:21:23 +0000351 if (!Ctor) {
Jim Laskeyeb577ba2006-08-02 12:30:23 +0000352 Ctor = RegAlloc;
353 RegisterRegAlloc::setDefault(RegAlloc);
Jim Laskey13ec7022006-08-01 14:21:23 +0000354 }
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000355
356 if (Ctor != createDefaultRegisterAllocator)
357 return Ctor();
358
359 // When the 'default' allocator is requested, pick one based on OptLevel.
360 switch (OptLevel) {
361 case CodeGenOpt::None:
Jakob Stoklund Olesen8b89c642010-06-03 00:39:06 +0000362 return createFastRegisterAllocator();
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000363 default:
Jakob Stoklund Olesen5aa32112011-04-30 01:37:54 +0000364 return createGreedyRegisterAllocator();
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +0000365 }
Jim Laskey33a0a6d2006-07-27 20:05:00 +0000366}