blob: 567a9f7d7be56be24cd6fd3ecab33e6e3b6bb29a [file] [log] [blame]
Misha Brukmanef6a6a62003-08-21 22:14:26 +00001//===-- Passes.h - Target independent code generation passes ----*- C++ -*-===//
Misha Brukmanea61c352005-04-21 20:39:54 +00002//
John Criswell6fbcc262003-10-20 20:19:47 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner7ed47a12007-12-29 19:59:42 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanea61c352005-04-21 20:39:54 +00007//
John Criswell6fbcc262003-10-20 20:19:47 +00008//===----------------------------------------------------------------------===//
Chris Lattnerdb000652003-01-13 01:01:31 +00009//
Misha Brukmanef6a6a62003-08-21 22:14:26 +000010// This file defines interfaces to access the target independent code generation
Chris Lattnerdb000652003-01-13 01:01:31 +000011// passes provided by the LLVM backend.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CODEGEN_PASSES_H
16#define LLVM_CODEGEN_PASSES_H
17
Andrew Trick74613342012-02-04 02:56:45 +000018#include "llvm/Pass.h"
Evan Chengfa163542009-10-16 21:06:15 +000019#include "llvm/Target/TargetMachine.h"
Brian Gaekefc1f6e82004-02-04 21:41:10 +000020#include <string>
Brian Gaeke09caa372004-01-30 21:53:46 +000021
Brian Gaeked0fde302003-11-11 22:41:34 +000022namespace llvm {
23
Chris Lattner3e200e62003-12-20 10:18:58 +000024 class FunctionPass;
David Greene5c8aa952010-04-02 23:17:14 +000025 class MachineFunctionPass;
Chris Lattner3e200e62003-12-20 10:18:58 +000026 class PassInfo;
Bill Wendling80a320d2008-11-04 21:53:09 +000027 class TargetLowering;
Jakob Stoklund Olesendf4b35e2011-09-27 23:50:46 +000028 class TargetRegisterClass;
Chris Lattnercf143a42009-08-23 03:13:20 +000029 class raw_ostream;
Andrew Trick843ee2e2012-02-03 05:12:41 +000030}
Chris Lattner8b708e42004-07-02 05:44:13 +000031
Andrew Trick843ee2e2012-02-03 05:12:41 +000032namespace llvm {
33
Andrew Trick746f24b2012-02-11 07:11:32 +000034extern char &NoPassID; // Allow targets to choose not to run a pass.
35
Andrew Trick5e108ee2012-02-15 03:21:47 +000036class PassConfigImpl;
37
Andrew Trick843ee2e2012-02-03 05:12:41 +000038/// Target-Independent Code Generator Pass Configuration Options.
39///
Andrew Trick74613342012-02-04 02:56:45 +000040/// This is an ImmutablePass solely for the purpose of exposing CodeGen options
41/// to the internals of other CodeGen passes.
Andrew Trick74613342012-02-04 02:56:45 +000042class TargetPassConfig : public ImmutablePass {
Andrew Trick79bf2882012-02-15 03:21:51 +000043public:
44 /// Pseudo Pass IDs. These are defined within TargetPassConfig because they
45 /// are unregistered pass IDs. They are only useful for use with
46 /// TargetPassConfig APIs to identify multiple occurrences of the same pass.
47 ///
48
49 /// EarlyTailDuplicate - A clone of the TailDuplicate pass that runs early
50 /// during codegen, on SSA form.
51 static char EarlyTailDuplicateID;
52
53 /// PostRAMachineLICM - A clone of the LICM pass that runs during late machine
54 /// optimization after regalloc.
55 static char PostRAMachineLICMID;
56
Andrew Trick843ee2e2012-02-03 05:12:41 +000057protected:
58 TargetMachine *TM;
Bill Wendling7c4ce302012-05-01 08:27:43 +000059 PassManagerBase *PM;
Andrew Trick5e108ee2012-02-15 03:21:47 +000060 PassConfigImpl *Impl; // Internal data structures
61 bool Initialized; // Flagged after all passes are configured.
Andrew Trick061efcf2012-02-04 02:56:59 +000062
63 // Target Pass Options
Andrew Trick61f1e3d2012-02-08 21:22:48 +000064 // Targets provide a default setting, user flags override.
Andrew Trick061efcf2012-02-04 02:56:59 +000065 //
Andrew Trick843ee2e2012-02-03 05:12:41 +000066 bool DisableVerify;
67
Andrew Trick61f1e3d2012-02-08 21:22:48 +000068 /// Default setting for -enable-tail-merge on this target.
69 bool EnableTailMerge;
70
Andrew Trick843ee2e2012-02-03 05:12:41 +000071public:
Andrew Trick061efcf2012-02-04 02:56:59 +000072 TargetPassConfig(TargetMachine *tm, PassManagerBase &pm);
Andrew Trick74613342012-02-04 02:56:45 +000073 // Dummy constructor.
74 TargetPassConfig();
Andrew Trick843ee2e2012-02-03 05:12:41 +000075
Andrew Trick74613342012-02-04 02:56:45 +000076 virtual ~TargetPassConfig();
77
78 static char ID;
Andrew Trick843ee2e2012-02-03 05:12:41 +000079
80 /// Get the right type of TargetMachine for this target.
81 template<typename TMC> TMC &getTM() const {
82 return *static_cast<TMC*>(TM);
83 }
84
Andrew Trick061efcf2012-02-04 02:56:59 +000085 const TargetLowering *getTargetLowering() const {
86 return TM->getTargetLowering();
87 }
88
Andrew Trick5e108ee2012-02-15 03:21:47 +000089 //
Andrew Trickffea03f2012-02-08 21:22:39 +000090 void setInitialized() { Initialized = true; }
91
Andrew Trick843ee2e2012-02-03 05:12:41 +000092 CodeGenOpt::Level getOptLevel() const { return TM->getOptLevel(); }
93
Andrew Trick61f1e3d2012-02-08 21:22:48 +000094 void setDisableVerify(bool Disable) { setOpt(DisableVerify, Disable); }
95
96 bool getEnableTailMerge() const { return EnableTailMerge; }
97 void setEnableTailMerge(bool Enable) { setOpt(EnableTailMerge, Enable); }
Andrew Trick061efcf2012-02-04 02:56:59 +000098
Andrew Trick5e108ee2012-02-15 03:21:47 +000099 /// Allow the target to override a specific pass without overriding the pass
100 /// pipeline. When passes are added to the standard pipeline at the
101 /// point where StadardID is expected, add TargetID in its place.
102 void substitutePass(char &StandardID, char &TargetID);
103
Bob Wilson6e1b8122012-05-30 00:17:12 +0000104 /// Insert InsertedPassID pass after TargetPassID pass.
105 void insertPass(const char &TargetPassID, const char &InsertedPassID);
106
Andrew Trickf91a3302012-03-09 00:52:17 +0000107 /// Allow the target to enable a specific standard pass by default.
108 void enablePass(char &ID) { substitutePass(ID, ID); }
109
110 /// Allow the target to disable a specific standard pass by default.
Andrew Trick5e108ee2012-02-15 03:21:47 +0000111 void disablePass(char &ID) { substitutePass(ID, NoPassID); }
112
113 /// Return the pass ssubtituted for StandardID by the target.
114 /// If no substitution exists, return StandardID.
115 AnalysisID getPassSubstitution(AnalysisID StandardID) const;
116
Andrew Trick5fd84a22012-02-15 03:21:43 +0000117 /// Return true if the optimized regalloc pipeline is enabled.
Andrew Trick8dd26252012-02-10 04:10:36 +0000118 bool getOptimizeRegAlloc() const;
119
Andrew Trick061efcf2012-02-04 02:56:59 +0000120 /// Add common target configurable passes that perform LLVM IR to IR
121 /// transforms following machine independent optimization.
122 virtual void addIRPasses();
123
124 /// Add common passes that perform LLVM IR to IR transforms in preparation for
125 /// instruction selection.
126 virtual void addISelPrepare();
127
128 /// addInstSelector - This method should install an instruction selector pass,
129 /// which converts from LLVM code to machine instructions.
130 virtual bool addInstSelector() {
131 return true;
132 }
Andrew Trick843ee2e2012-02-03 05:12:41 +0000133
134 /// Add the complete, standard set of LLVM CodeGen passes.
135 /// Fully developed targets will not generally override this.
Andrew Trick061efcf2012-02-04 02:56:59 +0000136 virtual void addMachinePasses();
Andrew Trick9d41bd52012-02-08 21:23:03 +0000137
Andrew Trick843ee2e2012-02-03 05:12:41 +0000138protected:
Andrew Trickffea03f2012-02-08 21:22:39 +0000139 // Helper to verify the analysis is really immutable.
140 void setOpt(bool &Opt, bool Val);
141
Andrew Trick061efcf2012-02-04 02:56:59 +0000142 /// Methods with trivial inline returns are convenient points in the common
143 /// codegen pass pipeline where targets may insert passes. Methods with
144 /// out-of-line standard implementations are major CodeGen stages called by
145 /// addMachinePasses. Some targets may override major stages when inserting
146 /// passes is insufficient, but maintaining overriden stages is more work.
Andrew Trick843ee2e2012-02-03 05:12:41 +0000147 ///
148
149 /// addPreISelPasses - This method should add any "last minute" LLVM->LLVM
150 /// passes (which are run just before instruction selector).
151 virtual bool addPreISel() {
152 return true;
153 }
154
Andrew Trickf7b96312012-02-09 00:40:55 +0000155 /// addMachineSSAOptimization - Add standard passes that optimize machine
156 /// instructions in SSA form.
157 virtual void addMachineSSAOptimization();
158
Andrew Trick843ee2e2012-02-03 05:12:41 +0000159 /// addPreRegAlloc - This method may be implemented by targets that want to
160 /// run passes immediately before register allocation. This should return
161 /// true if -print-machineinstrs should print after these passes.
162 virtual bool addPreRegAlloc() {
163 return false;
164 }
165
Andrew Trick8dd26252012-02-10 04:10:36 +0000166 /// createTargetRegisterAllocator - Create the register allocator pass for
167 /// this target at the current optimization level.
168 virtual FunctionPass *createTargetRegisterAllocator(bool Optimized);
169
170 /// addFastRegAlloc - Add the minimum set of target-independent passes that
171 /// are required for fast register allocation.
172 virtual void addFastRegAlloc(FunctionPass *RegAllocPass);
173
Andrew Trickfda655e2012-02-11 07:11:29 +0000174 /// addOptimizedRegAlloc - Add passes related to register allocation.
175 /// LLVMTargetMachine provides standard regalloc passes for most targets.
Andrew Trick8dd26252012-02-10 04:10:36 +0000176 virtual void addOptimizedRegAlloc(FunctionPass *RegAllocPass);
Andrew Trickf7b96312012-02-09 00:40:55 +0000177
Andrew Trick746f24b2012-02-11 07:11:32 +0000178 /// addFinalizeRegAlloc - This method may be implemented by targets that want
179 /// to run passes within the regalloc pipeline, immediately after the register
180 /// allocation pass itself. These passes run as soon as virtual regisiters
181 /// have been rewritten to physical registers but before and other postRA
182 /// optimization happens. Targets that have marked instructions for bundling
183 /// must have finalized those bundles by the time these passes have run,
184 /// because subsequent passes are not guaranteed to be bundle-aware.
185 virtual bool addFinalizeRegAlloc() {
186 return false;
187 }
188
189 /// addPostRegAlloc - This method may be implemented by targets that want to
190 /// run passes after register allocation pass pipeline but before
191 /// prolog-epilog insertion. This should return true if -print-machineinstrs
192 /// should print after these passes.
Andrew Trick843ee2e2012-02-03 05:12:41 +0000193 virtual bool addPostRegAlloc() {
194 return false;
195 }
196
Andrew Trickf7b96312012-02-09 00:40:55 +0000197 /// Add passes that optimize machine instructions after register allocation.
198 virtual void addMachineLateOptimization();
199
Andrew Trick843ee2e2012-02-03 05:12:41 +0000200 /// addPreSched2 - This method may be implemented by targets that want to
201 /// run passes after prolog-epilog insertion and before the second instruction
202 /// scheduling pass. This should return true if -print-machineinstrs should
203 /// print after these passes.
204 virtual bool addPreSched2() {
205 return false;
206 }
207
Andrew Trickf7b96312012-02-09 00:40:55 +0000208 /// Add standard basic block placement passes.
209 virtual void addBlockPlacement();
210
Andrew Trick843ee2e2012-02-03 05:12:41 +0000211 /// addPreEmitPass - This pass may be implemented by targets that want to run
212 /// passes immediately before machine code is emitted. This should return
213 /// true if -print-machineinstrs should print out the code after the passes.
214 virtual bool addPreEmitPass() {
215 return false;
216 }
217
218 /// Utilities for targets to add passes to the pass manager.
219 ///
220
Andrew Trick5e108ee2012-02-15 03:21:47 +0000221 /// Add a CodeGen pass at this point in the pipeline after checking overrides.
222 /// Return the pass that was added, or NoPassID.
223 AnalysisID addPass(char &ID);
Andrew Trick843ee2e2012-02-03 05:12:41 +0000224
Andrew Trick8dd26252012-02-10 04:10:36 +0000225 /// addMachinePasses helper to create the target-selected or overriden
226 /// regalloc pass.
227 FunctionPass *createRegAllocPass(bool Optimized);
228
Andrew Trick843ee2e2012-02-03 05:12:41 +0000229 /// printAndVerify - Add a pass to dump then verify the machine function, if
230 /// those steps are enabled.
231 ///
232 void printAndVerify(const char *Banner) const;
233};
234} // namespace llvm
235
236/// List of target independent CodeGen pass IDs.
237namespace llvm {
Chris Lattner8b708e42004-07-02 05:44:13 +0000238 /// createUnreachableBlockEliminationPass - The LLVM code generator does not
239 /// work well with unreachable basic blocks (what live ranges make sense for a
240 /// block that cannot be reached?). As such, a code generator should either
Jim Grosbachf6912292010-08-06 21:31:35 +0000241 /// not instruction select unreachable blocks, or run this pass as its
Chris Lattner8b708e42004-07-02 05:44:13 +0000242 /// last LLVM modifying pass to clean up blocks that are not reachable from
243 /// the entry block.
244 FunctionPass *createUnreachableBlockEliminationPass();
Misha Brukmanea61c352005-04-21 20:39:54 +0000245
Chris Lattner3e200e62003-12-20 10:18:58 +0000246 /// MachineFunctionPrinter pass - This pass prints out the machine function to
Jim Grosbachf6912292010-08-06 21:31:35 +0000247 /// the given stream as a debugging tool.
David Greene5c8aa952010-04-02 23:17:14 +0000248 MachineFunctionPass *
249 createMachineFunctionPrinterPass(raw_ostream &OS,
250 const std::string &Banner ="");
Brian Gaeke09caa372004-01-30 21:53:46 +0000251
Andrew Trick1dd8c852012-02-08 21:23:13 +0000252 /// MachineLoopInfo - This pass is a loop analysis pass.
Owen Anderson90c579d2010-08-06 18:33:48 +0000253 extern char &MachineLoopInfoID;
Bill Wendling67d65bb2008-01-04 20:54:55 +0000254
Andrew Trick1dd8c852012-02-08 21:23:13 +0000255 /// MachineLoopRanges - This pass is an on-demand loop coverage analysis.
Jakob Stoklund Olesenceadc012010-12-15 23:41:23 +0000256 extern char &MachineLoopRangesID;
257
Andrew Trick1dd8c852012-02-08 21:23:13 +0000258 /// MachineDominators - This pass is a machine dominators analysis pass.
Owen Anderson90c579d2010-08-06 18:33:48 +0000259 extern char &MachineDominatorsID;
Bill Wendling67d65bb2008-01-04 20:54:55 +0000260
Jakob Stoklund Olesen8dd070e2011-01-04 21:10:05 +0000261 /// EdgeBundles analysis - Bundle machine CFG edges.
Jakob Stoklund Olesen8dd070e2011-01-04 21:10:05 +0000262 extern char &EdgeBundlesID;
263
Andrew Trick8dd26252012-02-10 04:10:36 +0000264 /// LiveVariables pass - This pass computes the set of blocks in which each
265 /// variable is life and sets machine operand kill flags.
266 extern char &LiveVariablesID;
267
Andrew Trick1dd8c852012-02-08 21:23:13 +0000268 /// PHIElimination - This pass eliminates machine instruction PHI nodes
Chris Lattner3e200e62003-12-20 10:18:58 +0000269 /// by inserting copy instructions. This destroys SSA information, but is the
270 /// desired input for some register allocators. This pass is "required" by
271 /// these register allocator like this: AU.addRequiredID(PHIEliminationID);
Owen Anderson90c579d2010-08-06 18:33:48 +0000272 extern char &PHIEliminationID;
Jim Grosbachf6912292010-08-06 21:31:35 +0000273
Andrew Trick1dd8c852012-02-08 21:23:13 +0000274 /// StrongPHIElimination - This pass eliminates machine instruction PHI
Owen Anderson0bda0e82007-10-31 03:37:57 +0000275 /// nodes by inserting copy instructions. This destroys SSA information, but
276 /// is the desired input for some register allocators. This pass is
277 /// "required" by these register allocator like this:
278 /// AU.addRequiredID(PHIEliminationID);
279 /// This pass is still in development
Owen Anderson90c579d2010-08-06 18:33:48 +0000280 extern char &StrongPHIEliminationID;
Chris Lattnerdb000652003-01-13 01:01:31 +0000281
Jakob Stoklund Olesen2d172932010-10-26 00:11:33 +0000282 /// LiveStacks pass. An analysis keeping track of the liveness of stack slots.
283 extern char &LiveStacksID;
284
Andrew Trick1dd8c852012-02-08 21:23:13 +0000285 /// TwoAddressInstruction - This pass reduces two-address instructions to
Chris Lattner3e200e62003-12-20 10:18:58 +0000286 /// use two operands. This destroys SSA information but it is desired by
287 /// register allocators.
Owen Anderson90c579d2010-08-06 18:33:48 +0000288 extern char &TwoAddressInstructionPassID;
Chris Lattnerdb000652003-01-13 01:01:31 +0000289
Andrew Trick8dd26252012-02-10 04:10:36 +0000290 /// ProcessImpicitDefs pass - This pass removes IMPLICIT_DEFs.
291 extern char &ProcessImplicitDefsID;
292
293 /// RegisterCoalescer - This pass merges live ranges to eliminate copies.
294 extern char &RegisterCoalescerID;
Jakob Stoklund Olesen27215672011-08-09 00:29:53 +0000295
Andrew Trick1dd8c852012-02-08 21:23:13 +0000296 /// MachineScheduler - This pass schedules machine instructions.
Andrew Trick42b7a712012-01-17 06:55:03 +0000297 extern char &MachineSchedulerID;
Andrew Trick96f678f2012-01-13 06:30:30 +0000298
Jakob Stoklund Olesen8bfe5082011-01-06 01:21:53 +0000299 /// SpillPlacement analysis. Suggest optimal placement of spill code between
300 /// basic blocks.
Jakob Stoklund Olesen8bfe5082011-01-06 01:21:53 +0000301 extern char &SpillPlacementID;
302
Andrew Trick1dd8c852012-02-08 21:23:13 +0000303 /// UnreachableMachineBlockElimination - This pass removes unreachable
Owen Andersonbd3ba462008-08-04 23:54:43 +0000304 /// machine basic blocks.
Owen Anderson90c579d2010-08-06 18:33:48 +0000305 extern char &UnreachableMachineBlockElimID;
Owen Andersonbd3ba462008-08-04 23:54:43 +0000306
Andrew Trick1dd8c852012-02-08 21:23:13 +0000307 /// DeadMachineInstructionElim - This pass removes dead machine instructions.
308 extern char &DeadMachineInstructionElimID;
Dan Gohmand3ead432008-09-17 00:43:24 +0000309
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000310 /// FastRegisterAllocation Pass - This pass register allocates as fast as
311 /// possible. It is best suited for debug code where live ranges are short.
312 ///
313 FunctionPass *createFastRegisterAllocator();
314
Andrew Trick14e8d712010-10-22 23:09:15 +0000315 /// BasicRegisterAllocation Pass - This pass implements a degenerate global
316 /// register allocator using the basic regalloc framework.
317 ///
318 FunctionPass *createBasicRegisterAllocator();
319
Jakob Stoklund Olesencba2e062010-12-08 03:26:16 +0000320 /// Greedy register allocation pass - This pass implements a global register
321 /// allocator for optimized builds.
322 ///
323 FunctionPass *createGreedyRegisterAllocator();
324
Evan Chengb1290a62008-10-02 18:29:27 +0000325 /// PBQPRegisterAllocation Pass - This pass implements the Partitioned Boolean
326 /// Quadratic Prograaming (PBQP) based register allocator.
327 ///
Lang Hamesf70e7cc2010-09-23 04:28:54 +0000328 FunctionPass *createDefaultPBQPRegisterAllocator();
Evan Chengb1290a62008-10-02 18:29:27 +0000329
Andrew Trick1dd8c852012-02-08 21:23:13 +0000330 /// PrologEpilogCodeInserter - This pass inserts prolog and epilog code,
Chris Lattner3e200e62003-12-20 10:18:58 +0000331 /// and eliminates abstract frame references.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000332 extern char &PrologEpilogCodeInserterID;
Jim Grosbachf6912292010-08-06 21:31:35 +0000333
Andrew Trick1dd8c852012-02-08 21:23:13 +0000334 /// ExpandPostRAPseudos - This pass expands pseudo instructions after
Jakob Stoklund Olesen74e2d6e2011-09-25 16:46:08 +0000335 /// register allocation.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000336 extern char &ExpandPostRAPseudosID;
Chris Lattnerdb000652003-01-13 01:01:31 +0000337
Evan Chengfa163542009-10-16 21:06:15 +0000338 /// createPostRAScheduler - This pass performs post register allocation
339 /// scheduling.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000340 extern char &PostRASchedulerID;
Dale Johannesene7e7d0d2007-07-13 17:13:54 +0000341
Andrew Trick1dd8c852012-02-08 21:23:13 +0000342 /// BranchFolding - This pass performs machine code CFG based
Chris Lattner36c29db2004-07-31 09:59:14 +0000343 /// optimizations to delete branches to branches, eliminate branches to
344 /// successor blocks (creating fall throughs), and eliminating branches over
345 /// branches.
Andrew Trick61f1e3d2012-02-08 21:22:48 +0000346 extern char &BranchFolderPassID;
Chris Lattner36c29db2004-07-31 09:59:14 +0000347
Bob Wilson6e1b8122012-05-30 00:17:12 +0000348 /// MachineFunctionPrinterPass - This pass prints out MachineInstr's.
349 extern char &MachineFunctionPrinterPassID;
350
Andrew Trick1dd8c852012-02-08 21:23:13 +0000351 /// TailDuplicate - Duplicate blocks with unconditional branches
Bob Wilson15acadd2009-11-26 00:32:21 +0000352 /// into tails of their predecessors.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000353 extern char &TailDuplicateID;
Bob Wilson15acadd2009-11-26 00:32:21 +0000354
Andrew Trick1dd8c852012-02-08 21:23:13 +0000355 /// IfConverter - This pass performs machine code if conversion.
356 extern char &IfConverterID;
Evan Cheng4e654852007-05-16 02:00:57 +0000357
Andrew Trick1dd8c852012-02-08 21:23:13 +0000358 /// MachineBlockPlacement - This pass places basic blocks based on branch
Chandler Carruthdb350872011-10-21 06:46:38 +0000359 /// probabilities.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000360 extern char &MachineBlockPlacementID;
Chandler Carruthdb350872011-10-21 06:46:38 +0000361
Andrew Trick1dd8c852012-02-08 21:23:13 +0000362 /// MachineBlockPlacementStats - This pass collects statistics about the
Chandler Carruth37efc9f2011-11-02 07:17:12 +0000363 /// basic block placement using branch probabilities and block frequency
364 /// information.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000365 extern char &MachineBlockPlacementStatsID;
Chandler Carruth37efc9f2011-11-02 07:17:12 +0000366
Andrew Trick1dd8c852012-02-08 21:23:13 +0000367 /// Code Placement - This pass optimize code placement and aligns loop
Evan Chengbbf1db72009-05-07 05:42:24 +0000368 /// headers to target specific alignment boundary.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000369 extern char &CodePlacementOptID;
Evan Chengfb8075d2008-02-28 00:43:03 +0000370
Andrew Trick1dd8c852012-02-08 21:23:13 +0000371 /// GCLowering Pass - Performs target-independent LLVM IR transformations for
372 /// highly portable strategies.
373 ///
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000374 FunctionPass *createGCLoweringPass();
Jim Grosbachf6912292010-08-06 21:31:35 +0000375
Andrew Trick1dd8c852012-02-08 21:23:13 +0000376 /// GCMachineCodeAnalysis - Target-independent pass to mark safe points
377 /// in machine code. Must be added very late during code generation, just
378 /// prior to output, and importantly after all CFG transformations (such as
379 /// branch folding).
380 extern char &GCMachineCodeAnalysisID;
Jim Grosbachf6912292010-08-06 21:31:35 +0000381
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000382 /// Deleter Pass - Releases GC metadata.
Jim Grosbachf6912292010-08-06 21:31:35 +0000383 ///
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000384 FunctionPass *createGCInfoDeleter();
Jim Grosbachf6912292010-08-06 21:31:35 +0000385
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000386 /// Creates a pass to print GC metadata.
Jim Grosbachf6912292010-08-06 21:31:35 +0000387 ///
Chris Lattnercf143a42009-08-23 03:13:20 +0000388 FunctionPass *createGCInfoPrinter(raw_ostream &OS);
Jim Grosbachf6912292010-08-06 21:31:35 +0000389
Andrew Trick1dd8c852012-02-08 21:23:13 +0000390 /// MachineCSE - This pass performs global CSE on machine instructions.
391 extern char &MachineCSEID;
Evan Chengc6fe3332010-03-02 02:38:24 +0000392
Andrew Trick1dd8c852012-02-08 21:23:13 +0000393 /// MachineLICM - This pass performs LICM on machine instructions.
394 extern char &MachineLICMID;
Bill Wendling0f940c92007-12-07 21:42:31 +0000395
Andrew Trick1dd8c852012-02-08 21:23:13 +0000396 /// MachineSinking - This pass performs sinking on machine instructions.
397 extern char &MachineSinkingID;
Evan Cheng3f32d652008-06-04 09:18:41 +0000398
Andrew Trick1dd8c852012-02-08 21:23:13 +0000399 /// MachineCopyPropagation - This pass performs copy propagation on
Evan Cheng977679d2012-01-07 03:02:36 +0000400 /// machine instructions.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000401 extern char &MachineCopyPropagationID;
Evan Cheng977679d2012-01-07 03:02:36 +0000402
Andrew Trick1dd8c852012-02-08 21:23:13 +0000403 /// PeepholeOptimizer - This pass performs peephole optimizations -
Bill Wendling6cdb1ab2010-08-09 23:59:04 +0000404 /// like extension and comparison eliminations.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000405 extern char &PeepholeOptimizerID;
Evan Cheng7da9ecf2010-01-13 00:30:23 +0000406
Andrew Trick1dd8c852012-02-08 21:23:13 +0000407 /// OptimizePHIs - This pass optimizes machine instruction PHIs
Bob Wilsonfe61fb12010-02-12 01:30:21 +0000408 /// to take advantage of opportunities created during DAG legalization.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000409 extern char &OptimizePHIsID;
Bob Wilsonfe61fb12010-02-12 01:30:21 +0000410
Andrew Trick1dd8c852012-02-08 21:23:13 +0000411 /// StackSlotColoring - This pass performs stack slot coloring.
412 extern char &StackSlotColoringID;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000413
414 /// createStackProtectorPass - This pass adds stack protectors to functions.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000415 ///
Bill Wendlinge9e6bdf2008-11-13 01:02:14 +0000416 FunctionPass *createStackProtectorPass(const TargetLowering *tli);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000417
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000418 /// createMachineVerifierPass - This pass verifies cenerated machine code
419 /// instructions for correctness.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000420 ///
Jakob Stoklund Olesen89cab932010-12-18 00:06:56 +0000421 FunctionPass *createMachineVerifierPass(const char *Banner = 0);
Jakob Stoklund Olesen48872e02009-05-16 00:33:53 +0000422
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000423 /// createDwarfEHPass - This pass mulches exception handling code into a form
424 /// adapted to code generation. Required if using dwarf exception handling.
Duncan Sands22efc182010-08-31 09:05:06 +0000425 FunctionPass *createDwarfEHPass(const TargetMachine *tm);
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000426
Bill Wendlingeabae1d2012-03-13 20:04:21 +0000427 /// createSjLjEHPreparePass - This pass adapts exception handling code to use
Jim Grosbach8b818d72009-08-17 16:41:22 +0000428 /// the GCC-style builtin setjmp/longjmp (sjlj) to handling EH control flow.
Andrew Trick1dd8c852012-02-08 21:23:13 +0000429 ///
Bill Wendlingeabae1d2012-03-13 20:04:21 +0000430 FunctionPass *createSjLjEHPreparePass(const TargetLowering *tli);
Jim Grosbach8b818d72009-08-17 16:41:22 +0000431
Andrew Trick1dd8c852012-02-08 21:23:13 +0000432 /// LocalStackSlotAllocation - This pass assigns local frame indices to stack
433 /// slots relative to one another and allocates base registers to access them
434 /// when it is estimated by the target to be out of range of normal frame
435 /// pointer or stack pointer index addressing.
436 extern char &LocalStackSlotAllocationID;
Jim Grosbach3d723672010-08-14 00:15:52 +0000437
Andrew Trick1dd8c852012-02-08 21:23:13 +0000438 /// ExpandISelPseudos - This pass expands pseudo-instructions.
439 extern char &ExpandISelPseudosID;
Dan Gohman668ac2f2010-11-16 21:02:37 +0000440
Jakob Stoklund Olesendf4b35e2011-09-27 23:50:46 +0000441 /// createExecutionDependencyFixPass - This pass fixes execution time
442 /// problems with dependent instructions, such as switching execution
443 /// domains to match.
444 ///
445 /// The pass will examine instructions using and defining registers in RC.
446 ///
447 FunctionPass *createExecutionDependencyFixPass(const TargetRegisterClass *RC);
448
Andrew Trick1dd8c852012-02-08 21:23:13 +0000449 /// UnpackMachineBundles - This pass unpack machine instruction bundles.
450 extern char &UnpackMachineBundlesID;
Evan Chengddfd1372011-12-14 02:11:42 +0000451
Andrew Trick1dd8c852012-02-08 21:23:13 +0000452 /// FinalizeMachineBundles - This pass finalize machine instruction
Evan Chengef2887d2012-01-19 07:47:03 +0000453 /// bundles (created earlier, e.g. during pre-RA scheduling).
Andrew Trick1dd8c852012-02-08 21:23:13 +0000454 extern char &FinalizeMachineBundlesID;
Evan Chengef2887d2012-01-19 07:47:03 +0000455
Brian Gaeked0fde302003-11-11 22:41:34 +0000456} // End llvm namespace
457
Chris Lattnerdb000652003-01-13 01:01:31 +0000458#endif