Add an AlignmentFromAssumptions Pass
[oota-llvm.git] / include / llvm / Transforms / Scalar.h
1 //===-- Scalar.h - Scalar Transformations -----------------------*- C++ -*-===//
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 header file defines prototypes for accessor functions that expose passes
11 // in the Scalar transformations library.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TRANSFORMS_SCALAR_H
16 #define LLVM_TRANSFORMS_SCALAR_H
17
18 #include "llvm/ADT/StringRef.h"
19
20 namespace llvm {
21
22 class BasicBlockPass;
23 class FunctionPass;
24 class Pass;
25 class GetElementPtrInst;
26 class PassInfo;
27 class TerminatorInst;
28 class TargetLowering;
29 class TargetMachine;
30
31 //===----------------------------------------------------------------------===//
32 //
33 // ConstantPropagation - A worklist driven constant propagation pass
34 //
35 FunctionPass *createConstantPropagationPass();
36
37 //===----------------------------------------------------------------------===//
38 //
39 // AlignmentFromAssumptions - Use assume intrinsics to set load/store
40 // alignments.
41 //
42 FunctionPass *createAlignmentFromAssumptionsPass();
43
44 //===----------------------------------------------------------------------===//
45 //
46 // SCCP - Sparse conditional constant propagation.
47 //
48 FunctionPass *createSCCPPass();
49
50 //===----------------------------------------------------------------------===//
51 //
52 // DeadInstElimination - This pass quickly removes trivially dead instructions
53 // without modifying the CFG of the function.  It is a BasicBlockPass, so it
54 // runs efficiently when queued next to other BasicBlockPass's.
55 //
56 Pass *createDeadInstEliminationPass();
57
58 //===----------------------------------------------------------------------===//
59 //
60 // DeadCodeElimination - This pass is more powerful than DeadInstElimination,
61 // because it is worklist driven that can potentially revisit instructions when
62 // their other instructions become dead, to eliminate chains of dead
63 // computations.
64 //
65 FunctionPass *createDeadCodeEliminationPass();
66
67 //===----------------------------------------------------------------------===//
68 //
69 // DeadStoreElimination - This pass deletes stores that are post-dominated by
70 // must-aliased stores and are not loaded used between the stores.
71 //
72 FunctionPass *createDeadStoreEliminationPass();
73
74 //===----------------------------------------------------------------------===//
75 //
76 // AggressiveDCE - This pass uses the SSA based Aggressive DCE algorithm.  This
77 // algorithm assumes instructions are dead until proven otherwise, which makes
78 // it more successful are removing non-obviously dead instructions.
79 //
80 FunctionPass *createAggressiveDCEPass();
81
82 //===----------------------------------------------------------------------===//
83 //
84 // SROA - Replace aggregates or pieces of aggregates with scalar SSA values.
85 //
86 FunctionPass *createSROAPass(bool RequiresDomTree = true);
87
88 //===----------------------------------------------------------------------===//
89 //
90 // ScalarReplAggregates - Break up alloca's of aggregates into multiple allocas
91 // if possible.
92 //
93 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
94                                              bool UseDomTree = true,
95                                              signed StructMemberThreshold = -1,
96                                              signed ArrayElementThreshold = -1,
97                                              signed ScalarLoadThreshold = -1);
98
99 //===----------------------------------------------------------------------===//
100 //
101 // InductionVariableSimplify - Transform induction variables in a program to all
102 // use a single canonical induction variable per loop.
103 //
104 Pass *createIndVarSimplifyPass();
105
106 //===----------------------------------------------------------------------===//
107 //
108 // InstructionCombining - Combine instructions to form fewer, simple
109 // instructions. This pass does not modify the CFG, and has a tendency to make
110 // instructions dead, so a subsequent DCE pass is useful.
111 //
112 // This pass combines things like:
113 //    %Y = add int 1, %X
114 //    %Z = add int 1, %Y
115 // into:
116 //    %Z = add int 2, %X
117 //
118 FunctionPass *createInstructionCombiningPass();
119
120 //===----------------------------------------------------------------------===//
121 //
122 // LICM - This pass is a loop invariant code motion and memory promotion pass.
123 //
124 Pass *createLICMPass();
125
126 //===----------------------------------------------------------------------===//
127 //
128 // LoopStrengthReduce - This pass is strength reduces GEP instructions that use
129 // a loop's canonical induction variable as one of their indices.
130 //
131 Pass *createLoopStrengthReducePass();
132
133 Pass *createGlobalMergePass(const TargetMachine *TM = nullptr);
134
135 //===----------------------------------------------------------------------===//
136 //
137 // LoopUnswitch - This pass is a simple loop unswitching pass.
138 //
139 Pass *createLoopUnswitchPass(bool OptimizeForSize = false);
140
141 //===----------------------------------------------------------------------===//
142 //
143 // LoopInstSimplify - This pass simplifies instructions in a loop's body.
144 //
145 Pass *createLoopInstSimplifyPass();
146
147 //===----------------------------------------------------------------------===//
148 //
149 // LoopUnroll - This pass is a simple loop unrolling pass.
150 //
151 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1,
152                            int AllowPartial = -1, int Runtime = -1);
153 // Create an unrolling pass for full unrolling only.
154 Pass *createSimpleLoopUnrollPass();
155
156 //===----------------------------------------------------------------------===//
157 //
158 // LoopReroll - This pass is a simple loop rerolling pass.
159 //
160 Pass *createLoopRerollPass();
161
162 //===----------------------------------------------------------------------===//
163 //
164 // LoopRotate - This pass is a simple loop rotating pass.
165 //
166 Pass *createLoopRotatePass(int MaxHeaderSize = -1);
167
168 //===----------------------------------------------------------------------===//
169 //
170 // LoopIdiom - This pass recognizes and replaces idioms in loops.
171 //
172 Pass *createLoopIdiomPass();
173
174 //===----------------------------------------------------------------------===//
175 //
176 // PromoteMemoryToRegister - This pass is used to promote memory references to
177 // be register references. A simple example of the transformation performed by
178 // this pass is:
179 //
180 //        FROM CODE                           TO CODE
181 //   %X = alloca i32, i32 1                 ret i32 42
182 //   store i32 42, i32 *%X
183 //   %Y = load i32* %X
184 //   ret i32 %Y
185 //
186 FunctionPass *createPromoteMemoryToRegisterPass();
187
188 //===----------------------------------------------------------------------===//
189 //
190 // DemoteRegisterToMemoryPass - This pass is used to demote registers to memory
191 // references. In basically undoes the PromoteMemoryToRegister pass to make cfg
192 // hacking easier.
193 //
194 FunctionPass *createDemoteRegisterToMemoryPass();
195 extern char &DemoteRegisterToMemoryID;
196
197 //===----------------------------------------------------------------------===//
198 //
199 // Reassociate - This pass reassociates commutative expressions in an order that
200 // is designed to promote better constant propagation, GCSE, LICM, PRE...
201 //
202 // For example:  4 + (x + 5)  ->  x + (4 + 5)
203 //
204 FunctionPass *createReassociatePass();
205
206 //===----------------------------------------------------------------------===//
207 //
208 // JumpThreading - Thread control through mult-pred/multi-succ blocks where some
209 // preds always go to some succ.
210 //
211 FunctionPass *createJumpThreadingPass();
212
213 //===----------------------------------------------------------------------===//
214 //
215 // CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
216 // simplify terminator instructions, etc...
217 //
218 FunctionPass *createCFGSimplificationPass();
219
220 //===----------------------------------------------------------------------===//
221 //
222 // FlattenCFG - flatten CFG, reduce number of conditional branches by using
223 // parallel-and and parallel-or mode, etc...
224 //
225 FunctionPass *createFlattenCFGPass();
226
227 //===----------------------------------------------------------------------===//
228 //
229 // CFG Structurization - Remove irreducible control flow
230 //
231 Pass *createStructurizeCFGPass();
232
233 //===----------------------------------------------------------------------===//
234 //
235 // BreakCriticalEdges - Break all of the critical edges in the CFG by inserting
236 // a dummy basic block. This pass may be "required" by passes that cannot deal
237 // with critical edges. For this usage, a pass must call:
238 //
239 //   AU.addRequiredID(BreakCriticalEdgesID);
240 //
241 // This pass obviously invalidates the CFG, but can update forward dominator
242 // (set, immediate dominators, tree, and frontier) information.
243 //
244 FunctionPass *createBreakCriticalEdgesPass();
245 extern char &BreakCriticalEdgesID;
246
247 //===----------------------------------------------------------------------===//
248 //
249 // LoopSimplify - Insert Pre-header blocks into the CFG for every function in
250 // the module.  This pass updates dominator information, loop information, and
251 // does not add critical edges to the CFG.
252 //
253 //   AU.addRequiredID(LoopSimplifyID);
254 //
255 Pass *createLoopSimplifyPass();
256 extern char &LoopSimplifyID;
257
258 //===----------------------------------------------------------------------===//
259 //
260 // TailCallElimination - This pass eliminates call instructions to the current
261 // function which occur immediately before return instructions.
262 //
263 FunctionPass *createTailCallEliminationPass();
264
265 //===----------------------------------------------------------------------===//
266 //
267 // LowerSwitch - This pass converts SwitchInst instructions into a sequence of
268 // chained binary branch instructions.
269 //
270 FunctionPass *createLowerSwitchPass();
271 extern char &LowerSwitchID;
272
273 //===----------------------------------------------------------------------===//
274 //
275 // LowerInvoke - This pass removes invoke instructions, converting them to call
276 // instructions.
277 //
278 FunctionPass *createLowerInvokePass();
279 extern char &LowerInvokePassID;
280
281 //===----------------------------------------------------------------------===//
282 //
283 // LCSSA - This pass inserts phi nodes at loop boundaries to simplify other loop
284 // optimizations.
285 //
286 Pass *createLCSSAPass();
287 extern char &LCSSAID;
288
289 //===----------------------------------------------------------------------===//
290 //
291 // EarlyCSE - This pass performs a simple and fast CSE pass over the dominator
292 // tree.
293 //
294 FunctionPass *createEarlyCSEPass();
295
296 //===----------------------------------------------------------------------===//
297 //
298 // MergedLoadStoreMotion - This pass merges loads and stores in diamonds. Loads
299 // are hoisted into the header, while stores sink into the footer.
300 //
301 FunctionPass *createMergedLoadStoreMotionPass();
302
303 //===----------------------------------------------------------------------===//
304 //
305 // GVN - This pass performs global value numbering and redundant load
306 // elimination cotemporaneously.
307 //
308 FunctionPass *createGVNPass(bool NoLoads = false);
309
310 //===----------------------------------------------------------------------===//
311 //
312 // MemCpyOpt - This pass performs optimizations related to eliminating memcpy
313 // calls and/or combining multiple stores into memset's.
314 //
315 FunctionPass *createMemCpyOptPass();
316
317 //===----------------------------------------------------------------------===//
318 //
319 // LoopDeletion - This pass performs DCE of non-infinite loops that it
320 // can prove are dead.
321 //
322 Pass *createLoopDeletionPass();
323
324 //===----------------------------------------------------------------------===//
325 //
326 // ConstantHoisting - This pass prepares a function for expensive constants.
327 //
328 FunctionPass *createConstantHoistingPass();
329
330 //===----------------------------------------------------------------------===//
331 //
332 // InstructionNamer - Give any unnamed non-void instructions "tmp" names.
333 //
334 FunctionPass *createInstructionNamerPass();
335 extern char &InstructionNamerID;
336
337 //===----------------------------------------------------------------------===//
338 //
339 // Sink - Code Sinking
340 //
341 FunctionPass *createSinkingPass();
342
343 //===----------------------------------------------------------------------===//
344 //
345 // LowerAtomic - Lower atomic intrinsics to non-atomic form
346 //
347 Pass *createLowerAtomicPass();
348
349 //===----------------------------------------------------------------------===//
350 //
351 // ValuePropagation - Propagate CFG-derived value information
352 //
353 Pass *createCorrelatedValuePropagationPass();
354
355 //===----------------------------------------------------------------------===//
356 //
357 // InstructionSimplifier - Remove redundant instructions.
358 //
359 FunctionPass *createInstructionSimplifierPass();
360 extern char &InstructionSimplifierID;
361
362 //===----------------------------------------------------------------------===//
363 //
364 // LowerExpectIntrinsics - Removes llvm.expect intrinsics and creates
365 // "block_weights" metadata.
366 FunctionPass *createLowerExpectIntrinsicPass();
367
368 //===----------------------------------------------------------------------===//
369 //
370 // PartiallyInlineLibCalls - Tries to inline the fast path of library
371 // calls such as sqrt.
372 //
373 FunctionPass *createPartiallyInlineLibCallsPass();
374
375 //===----------------------------------------------------------------------===//
376 //
377 // SampleProfilePass - Loads sample profile data from disk and generates
378 // IR metadata to reflect the profile.
379 FunctionPass *createSampleProfileLoaderPass();
380 FunctionPass *createSampleProfileLoaderPass(StringRef Name);
381
382 //===----------------------------------------------------------------------===//
383 //
384 // ScalarizerPass - Converts vector operations into scalar operations
385 //
386 FunctionPass *createScalarizerPass();
387
388 //===----------------------------------------------------------------------===//
389 //
390 // AddDiscriminators - Add DWARF path discriminators to the IR.
391 FunctionPass *createAddDiscriminatorsPass();
392
393 //===----------------------------------------------------------------------===//
394 //
395 // SeparateConstOffsetFromGEP - Split GEPs for better CSE
396 //
397 FunctionPass *createSeparateConstOffsetFromGEPPass();
398
399 //===----------------------------------------------------------------------===//
400 //
401 // LoadCombine - Combine loads into bigger loads.
402 //
403 BasicBlockPass *createLoadCombinePass();
404
405 } // End llvm namespace
406
407 #endif