1 //===-- Scalar.h - Scalar Transformations -----------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This header file defines prototypes for accessor functions that expose passes
10 // in the Scalar transformations library.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TRANSFORMS_SCALAR_H
15 #define LLVM_TRANSFORMS_SCALAR_H
26 class GetElementPtrInst
;
31 //===----------------------------------------------------------------------===//
33 // ConstantPropagation - A worklist driven constant propagation pass
35 FunctionPass
*createConstantPropagationPass();
37 //===----------------------------------------------------------------------===//
39 // AlignmentFromAssumptions - Use assume intrinsics to set load/store
42 FunctionPass
*createAlignmentFromAssumptionsPass();
44 //===----------------------------------------------------------------------===//
46 // SCCP - Sparse conditional constant propagation.
48 FunctionPass
*createSCCPPass();
50 //===----------------------------------------------------------------------===//
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.
56 Pass
*createDeadInstEliminationPass();
58 //===----------------------------------------------------------------------===//
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
65 FunctionPass
*createDeadCodeEliminationPass();
67 //===----------------------------------------------------------------------===//
69 // DeadStoreElimination - This pass deletes stores that are post-dominated by
70 // must-aliased stores and are not loaded used between the stores.
72 FunctionPass
*createDeadStoreEliminationPass();
75 //===----------------------------------------------------------------------===//
77 // CallSiteSplitting - This pass split call-site based on its known argument
79 FunctionPass
*createCallSiteSplittingPass();
81 //===----------------------------------------------------------------------===//
83 // AggressiveDCE - This pass uses the SSA based Aggressive DCE algorithm. This
84 // algorithm assumes instructions are dead until proven otherwise, which makes
85 // it more successful are removing non-obviously dead instructions.
87 FunctionPass
*createAggressiveDCEPass();
89 //===----------------------------------------------------------------------===//
91 // GuardWidening - An optimization over the @llvm.experimental.guard intrinsic
92 // that (optimistically) combines multiple guards into one to have fewer checks
95 FunctionPass
*createGuardWideningPass();
98 //===----------------------------------------------------------------------===//
100 // LoopGuardWidening - Analogous to the GuardWidening pass, but restricted to a
101 // single loop at a time for use within a LoopPassManager. Desired effect is
102 // to widen guards into preheader or a single guard within loop if that's not
105 Pass
*createLoopGuardWideningPass();
108 //===----------------------------------------------------------------------===//
110 // BitTrackingDCE - This pass uses a bit-tracking DCE algorithm in order to
111 // remove computations of dead bits.
113 FunctionPass
*createBitTrackingDCEPass();
115 //===----------------------------------------------------------------------===//
117 // SROA - Replace aggregates or pieces of aggregates with scalar SSA values.
119 FunctionPass
*createSROAPass();
121 //===----------------------------------------------------------------------===//
123 // InductiveRangeCheckElimination - Transform loops to elide range checks on
124 // linear functions of the induction variable.
126 Pass
*createInductiveRangeCheckEliminationPass();
128 //===----------------------------------------------------------------------===//
130 // InductionVariableSimplify - Transform induction variables in a program to all
131 // use a single canonical induction variable per loop.
133 Pass
*createIndVarSimplifyPass();
135 //===----------------------------------------------------------------------===//
137 // LICM - This pass is a loop invariant code motion and memory promotion pass.
139 Pass
*createLICMPass();
141 //===----------------------------------------------------------------------===//
143 // LoopSink - This pass sinks invariants from preheader to loop body where
144 // frequency is lower than loop preheader.
146 Pass
*createLoopSinkPass();
148 //===----------------------------------------------------------------------===//
150 // LoopPredication - This pass does loop predication on guards.
152 Pass
*createLoopPredicationPass();
154 //===----------------------------------------------------------------------===//
156 // LoopInterchange - This pass interchanges loops to provide a more
157 // cache-friendly memory access patterns.
159 Pass
*createLoopInterchangePass();
161 //===----------------------------------------------------------------------===//
163 // LoopStrengthReduce - This pass is strength reduces GEP instructions that use
164 // a loop's canonical induction variable as one of their indices.
166 Pass
*createLoopStrengthReducePass();
168 //===----------------------------------------------------------------------===//
170 // LoopUnswitch - This pass is a simple loop unswitching pass.
172 Pass
*createLoopUnswitchPass(bool OptimizeForSize
= false,
173 bool hasBranchDivergence
= false);
175 //===----------------------------------------------------------------------===//
177 // LoopInstSimplify - This pass simplifies instructions in a loop's body.
179 Pass
*createLoopInstSimplifyPass();
181 //===----------------------------------------------------------------------===//
183 // LoopUnroll - This pass is a simple loop unrolling pass.
185 Pass
*createLoopUnrollPass(int OptLevel
= 2, bool OnlyWhenForced
= false,
186 int Threshold
= -1, int Count
= -1,
187 int AllowPartial
= -1, int Runtime
= -1,
188 int UpperBound
= -1, int AllowPeeling
= -1);
189 // Create an unrolling pass for full unrolling that uses exact trip count only.
190 Pass
*createSimpleLoopUnrollPass(int OptLevel
= 2, bool OnlyWhenForced
= false);
192 //===----------------------------------------------------------------------===//
194 // LoopUnrollAndJam - This pass is a simple loop unroll and jam pass.
196 Pass
*createLoopUnrollAndJamPass(int OptLevel
= 2);
198 //===----------------------------------------------------------------------===//
200 // LoopReroll - This pass is a simple loop rerolling pass.
202 Pass
*createLoopRerollPass();
204 //===----------------------------------------------------------------------===//
206 // LoopRotate - This pass is a simple loop rotating pass.
208 Pass
*createLoopRotatePass(int MaxHeaderSize
= -1);
210 //===----------------------------------------------------------------------===//
212 // LoopIdiom - This pass recognizes and replaces idioms in loops.
214 Pass
*createLoopIdiomPass();
216 //===----------------------------------------------------------------------===//
218 // LoopVersioningLICM - This pass is a loop versioning pass for LICM.
220 Pass
*createLoopVersioningLICMPass();
222 //===----------------------------------------------------------------------===//
224 // DemoteRegisterToMemoryPass - This pass is used to demote registers to memory
225 // references. In basically undoes the PromoteMemoryToRegister pass to make cfg
228 FunctionPass
*createDemoteRegisterToMemoryPass();
229 extern char &DemoteRegisterToMemoryID
;
231 //===----------------------------------------------------------------------===//
233 // Reassociate - This pass reassociates commutative expressions in an order that
234 // is designed to promote better constant propagation, GCSE, LICM, PRE...
236 // For example: 4 + (x + 5) -> x + (4 + 5)
238 FunctionPass
*createReassociatePass();
240 //===----------------------------------------------------------------------===//
242 // JumpThreading - Thread control through mult-pred/multi-succ blocks where some
243 // preds always go to some succ. Thresholds other than minus one override the
244 // internal BB duplication default threshold.
246 FunctionPass
*createJumpThreadingPass(int Threshold
= -1);
248 //===----------------------------------------------------------------------===//
250 // CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
251 // simplify terminator instructions, convert switches to lookup tables, etc.
253 FunctionPass
*createCFGSimplificationPass(
254 unsigned Threshold
= 1, bool ForwardSwitchCond
= false,
255 bool ConvertSwitch
= false, bool KeepLoops
= true, bool SinkCommon
= false,
256 std::function
<bool(const Function
&)> Ftor
= nullptr);
258 //===----------------------------------------------------------------------===//
260 // FlattenCFG - flatten CFG, reduce number of conditional branches by using
261 // parallel-and and parallel-or mode, etc...
263 FunctionPass
*createFlattenCFGPass();
265 //===----------------------------------------------------------------------===//
267 // CFG Structurization - Remove irreducible control flow
270 /// When \p SkipUniformRegions is true the structizer will not structurize
271 /// regions that only contain uniform branches.
272 Pass
*createStructurizeCFGPass(bool SkipUniformRegions
= false);
274 //===----------------------------------------------------------------------===//
276 // TailCallElimination - This pass eliminates call instructions to the current
277 // function which occur immediately before return instructions.
279 FunctionPass
*createTailCallEliminationPass();
281 //===----------------------------------------------------------------------===//
283 // EarlyCSE - This pass performs a simple and fast CSE pass over the dominator
286 FunctionPass
*createEarlyCSEPass(bool UseMemorySSA
= false);
288 //===----------------------------------------------------------------------===//
290 // GVNHoist - This pass performs a simple and fast GVN pass over the dominator
291 // tree to hoist common expressions from sibling branches.
293 FunctionPass
*createGVNHoistPass();
295 //===----------------------------------------------------------------------===//
297 // GVNSink - This pass uses an "inverted" value numbering to decide the
298 // similarity of expressions and sinks similar expressions into successors.
300 FunctionPass
*createGVNSinkPass();
302 //===----------------------------------------------------------------------===//
304 // MergedLoadStoreMotion - This pass merges loads and stores in diamonds. Loads
305 // are hoisted into the header, while stores sink into the footer.
307 FunctionPass
*createMergedLoadStoreMotionPass();
309 //===----------------------------------------------------------------------===//
311 // GVN - This pass performs global value numbering and redundant load
312 // elimination cotemporaneously.
314 FunctionPass
*createNewGVNPass();
316 //===----------------------------------------------------------------------===//
318 // DivRemPairs - Hoist/decompose integer division and remainder instructions.
320 FunctionPass
*createDivRemPairsPass();
322 //===----------------------------------------------------------------------===//
324 // MemCpyOpt - This pass performs optimizations related to eliminating memcpy
325 // calls and/or combining multiple stores into memset's.
327 FunctionPass
*createMemCpyOptPass();
329 //===----------------------------------------------------------------------===//
331 // LoopDeletion - This pass performs DCE of non-infinite loops that it
332 // can prove are dead.
334 Pass
*createLoopDeletionPass();
336 //===----------------------------------------------------------------------===//
338 // ConstantHoisting - This pass prepares a function for expensive constants.
340 FunctionPass
*createConstantHoistingPass();
342 //===----------------------------------------------------------------------===//
344 // Sink - Code Sinking
346 FunctionPass
*createSinkingPass();
348 //===----------------------------------------------------------------------===//
350 // LowerAtomic - Lower atomic intrinsics to non-atomic form
352 Pass
*createLowerAtomicPass();
354 //===----------------------------------------------------------------------===//
356 // LowerGuardIntrinsic - Lower guard intrinsics to normal control flow.
358 Pass
*createLowerGuardIntrinsicPass();
360 //===----------------------------------------------------------------------===//
362 // LowerWidenableCondition - Lower widenable condition to i1 true.
364 Pass
*createLowerWidenableConditionPass();
366 //===----------------------------------------------------------------------===//
368 // MergeICmps - Merge integer comparison chains into a memcmp
370 Pass
*createMergeICmpsPass();
372 //===----------------------------------------------------------------------===//
374 // ValuePropagation - Propagate CFG-derived value information
376 Pass
*createCorrelatedValuePropagationPass();
378 //===----------------------------------------------------------------------===//
380 // InferAddressSpaces - Modify users of addrspacecast instructions with values
381 // in the source address space if using the destination address space is slower
384 FunctionPass
*createInferAddressSpacesPass();
385 extern char &InferAddressSpacesID
;
387 //===----------------------------------------------------------------------===//
389 // LowerExpectIntrinsics - Removes llvm.expect intrinsics and creates
390 // "block_weights" metadata.
391 FunctionPass
*createLowerExpectIntrinsicPass();
393 //===----------------------------------------------------------------------===//
395 // PartiallyInlineLibCalls - Tries to inline the fast path of library
396 // calls such as sqrt.
398 FunctionPass
*createPartiallyInlineLibCallsPass();
400 //===----------------------------------------------------------------------===//
402 // SeparateConstOffsetFromGEP - Split GEPs for better CSE
404 FunctionPass
*createSeparateConstOffsetFromGEPPass(bool LowerGEP
= false);
406 //===----------------------------------------------------------------------===//
408 // SpeculativeExecution - Aggressively hoist instructions to enable
409 // speculative execution on targets where branches are expensive.
411 FunctionPass
*createSpeculativeExecutionPass();
413 // Same as createSpeculativeExecutionPass, but does nothing unless
414 // TargetTransformInfo::hasBranchDivergence() is true.
415 FunctionPass
*createSpeculativeExecutionIfHasBranchDivergencePass();
417 //===----------------------------------------------------------------------===//
419 // StraightLineStrengthReduce - This pass strength-reduces some certain
420 // instruction patterns in straight-line code.
422 FunctionPass
*createStraightLineStrengthReducePass();
424 //===----------------------------------------------------------------------===//
426 // PlaceSafepoints - Rewrite any IR calls to gc.statepoints and insert any
427 // safepoint polls (method entry, backedge) that might be required. This pass
428 // does not generate explicit relocation sequences - that's handled by
429 // RewriteStatepointsForGC which can be run at an arbitrary point in the pass
430 // order following this pass.
432 FunctionPass
*createPlaceSafepointsPass();
434 //===----------------------------------------------------------------------===//
436 // RewriteStatepointsForGC - Rewrite any gc.statepoints which do not yet have
437 // explicit relocations to include explicit relocations.
439 ModulePass
*createRewriteStatepointsForGCLegacyPass();
441 //===----------------------------------------------------------------------===//
443 // Float2Int - Demote floats to ints where possible.
445 FunctionPass
*createFloat2IntPass();
447 //===----------------------------------------------------------------------===//
449 // NaryReassociate - Simplify n-ary operations by reassociation.
451 FunctionPass
*createNaryReassociatePass();
453 //===----------------------------------------------------------------------===//
455 // LoopDistribute - Distribute loops.
457 FunctionPass
*createLoopDistributePass();
459 //===----------------------------------------------------------------------===//
461 // LoopLoadElimination - Perform loop-aware load elimination.
463 FunctionPass
*createLoopLoadEliminationPass();
465 //===----------------------------------------------------------------------===//
467 // LoopVersioning - Perform loop multi-versioning.
469 FunctionPass
*createLoopVersioningPass();
471 //===----------------------------------------------------------------------===//
473 // LoopDataPrefetch - Perform data prefetching in loops.
475 FunctionPass
*createLoopDataPrefetchPass();
477 ///===---------------------------------------------------------------------===//
478 ModulePass
*createNameAnonGlobalPass();
479 ModulePass
*createCanonicalizeAliasesPass();
481 //===----------------------------------------------------------------------===//
483 // LibCallsShrinkWrap - Shrink-wraps a call to function if the result is not
486 FunctionPass
*createLibCallsShrinkWrapPass();
488 //===----------------------------------------------------------------------===//
490 // LoopSimplifyCFG - This pass performs basic CFG simplification on loops,
491 // primarily to help other loop passes.
493 Pass
*createLoopSimplifyCFGPass();
495 //===----------------------------------------------------------------------===//
497 // WarnMissedTransformations - This pass emits warnings for leftover forced
500 Pass
*createWarnMissedTransformationsPass();
501 } // End llvm namespace