2003-09-30 20:37:50 +02:00
|
|
|
//===-- Scalar.h - Scalar Transformations -----------------------*- C++ -*-===//
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
|
|
|
// This header file defines prototypes for accessor functions that expose passes
|
|
|
|
// in the Scalar transformations library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_SCALAR_H
|
|
|
|
#define LLVM_TRANSFORMS_SCALAR_H
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-08-13 20:18:15 +02:00
|
|
|
class FunctionPass;
|
2007-01-26 00:23:25 +01:00
|
|
|
class Pass;
|
2002-09-16 18:07:19 +02:00
|
|
|
class GetElementPtrInst;
|
2002-09-24 17:42:27 +02:00
|
|
|
class PassInfo;
|
2002-10-08 23:06:27 +02:00
|
|
|
class TerminatorInst;
|
2006-03-14 00:14:23 +01:00
|
|
|
class TargetLowering;
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// ConstantPropagation - A worklist driven constant propagation pass
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
2004-09-20 06:41:39 +02:00
|
|
|
FunctionPass *createConstantPropagationPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// SCCP - Sparse conditional constant propagation.
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
2004-09-20 06:41:39 +02:00
|
|
|
FunctionPass *createSCCPPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DeadInstElimination - This pass quickly removes trivially dead instructions
|
|
|
|
// without modifying the CFG of the function. It is a BasicBlockPass, so it
|
|
|
|
// runs efficiently when queued next to other BasicBlockPass's.
|
|
|
|
//
|
2007-01-26 00:23:25 +01:00
|
|
|
Pass *createDeadInstEliminationPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DeadCodeElimination - This pass is more powerful than DeadInstElimination,
|
|
|
|
// because it is worklist driven that can potentially revisit instructions when
|
|
|
|
// their other instructions become dead, to eliminate chains of dead
|
|
|
|
// computations.
|
|
|
|
//
|
2004-07-27 19:43:21 +02:00
|
|
|
FunctionPass *createDeadCodeEliminationPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
2004-07-22 10:07:30 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DeadStoreElimination - This pass deletes stores that are post-dominated by
|
|
|
|
// must-aliased stores and are not loaded used between the stores.
|
|
|
|
//
|
2004-09-20 06:41:39 +02:00
|
|
|
FunctionPass *createDeadStoreEliminationPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2002-05-08 00:12:52 +02:00
|
|
|
// AggressiveDCE - This pass uses the SSA based Aggressive DCE algorithm. This
|
2002-05-07 21:37:18 +02:00
|
|
|
// algorithm assumes instructions are dead until proven otherwise, which makes
|
|
|
|
// it more successful are removing non-obviously dead instructions.
|
|
|
|
//
|
2004-09-20 06:41:39 +02:00
|
|
|
FunctionPass *createAggressiveDCEPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
2003-05-27 17:52:45 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// ScalarReplAggregates - Break up alloca's of aggregates into multiple allocas
|
|
|
|
// if possible.
|
2003-05-27 17:52:45 +02:00
|
|
|
//
|
2011-01-14 09:13:00 +01:00
|
|
|
FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
|
2011-01-18 04:53:26 +01:00
|
|
|
bool UseDomTree = true);
|
2003-05-27 17:52:45 +02:00
|
|
|
|
2002-05-07 21:37:18 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// InductionVariableSimplify - Transform induction variables in a program to all
|
2003-09-10 07:29:43 +02:00
|
|
|
// use a single canonical induction variable per loop.
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createIndVarSimplifyPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// InstructionCombining - Combine instructions to form fewer, simple
|
2006-10-13 22:53:50 +02:00
|
|
|
// instructions. This pass does not modify the CFG, and has a tendency to make
|
|
|
|
// instructions dead, so a subsequent DCE pass is useful.
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
|
|
|
// This pass combines things like:
|
|
|
|
// %Y = add int 1, %X
|
|
|
|
// %Z = add int 1, %Y
|
|
|
|
// into:
|
|
|
|
// %Z = add int 2, %X
|
|
|
|
//
|
2004-07-27 19:43:21 +02:00
|
|
|
FunctionPass *createInstructionCombiningPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
2002-05-11 00:44:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2004-04-18 07:20:32 +02:00
|
|
|
// LICM - This pass is a loop invariant code motion and memory promotion pass.
|
2002-05-11 00:44:16 +02:00
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLICMPass();
|
2002-05-11 00:44:16 +02:00
|
|
|
|
2004-10-18 23:08:22 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopStrengthReduce - This pass is strength reduces GEP instructions that use
|
2006-03-16 22:53:05 +01:00
|
|
|
// a loop's canonical induction variable as one of their indices. It takes an
|
|
|
|
// optional parameter used to consult the target machine whether certain
|
|
|
|
// transformations are profitable.
|
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLoopStrengthReducePass(const TargetLowering *TLI = 0);
|
2002-05-11 00:44:16 +02:00
|
|
|
|
2004-04-19 08:28:37 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopUnswitch - This pass is a simple loop unswitching pass.
|
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLoopUnswitchPass(bool OptimizeForSize = false);
|
2004-04-19 08:28:37 +02:00
|
|
|
|
2011-01-03 01:25:16 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopInstSimplify - This pass simplifies instructions in a loop's body.
|
|
|
|
//
|
|
|
|
Pass *createLoopInstSimplifyPass();
|
|
|
|
|
2004-04-18 07:20:32 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopUnroll - This pass is a simple loop unrolling pass.
|
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLoopUnrollPass();
|
2004-04-18 07:20:32 +02:00
|
|
|
|
2007-04-07 03:25:15 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopRotate - This pass is a simple loop rotating pass.
|
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLoopRotatePass();
|
2007-04-07 03:25:15 +02:00
|
|
|
|
2010-12-26 20:32:44 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LoopIdiom - This pass recognizes and replaces idioms in loops.
|
|
|
|
//
|
|
|
|
Pass *createLoopIdiomPass();
|
|
|
|
|
2007-08-07 02:25:56 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// PromoteMemoryToRegister - This pass is used to promote memory references to
|
|
|
|
// be register references. A simple example of the transformation performed by
|
|
|
|
// this pass is:
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
|
|
|
// FROM CODE TO CODE
|
2009-06-15 01:30:43 +02:00
|
|
|
// %X = alloca i32, i32 1 ret i32 42
|
|
|
|
// store i32 42, i32 *%X
|
|
|
|
// %Y = load i32* %X
|
|
|
|
// ret i32 %Y
|
2002-05-07 21:37:18 +02:00
|
|
|
//
|
2005-03-28 04:01:12 +02:00
|
|
|
FunctionPass *createPromoteMemoryToRegisterPass();
|
2002-05-07 21:37:18 +02:00
|
|
|
|
2005-11-10 02:58:38 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// DemoteRegisterToMemoryPass - This pass is used to demote registers to memory
|
|
|
|
// references. In basically undoes the PromoteMemoryToRegister pass to make cfg
|
|
|
|
// hacking easier.
|
|
|
|
//
|
2005-11-10 02:58:38 +01:00
|
|
|
FunctionPass *createDemoteRegisterToMemoryPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &DemoteRegisterToMemoryID;
|
2002-05-07 21:37:18 +02:00
|
|
|
|
2002-05-09 00:19:01 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// Reassociate - This pass reassociates commutative expressions in an order that
|
|
|
|
// is designed to promote better constant propagation, GCSE, LICM, PRE...
|
2002-05-09 00:19:01 +02:00
|
|
|
//
|
|
|
|
// For example: 4 + (x + 5) -> x + (4 + 5)
|
|
|
|
//
|
2003-11-07 18:19:39 +01:00
|
|
|
FunctionPass *createReassociatePass();
|
2002-05-09 00:19:01 +02:00
|
|
|
|
2006-10-13 22:53:50 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2003-06-22 22:10:42 +02:00
|
|
|
// TailDuplication - Eliminate unconditional branches through controlled code
|
|
|
|
// duplication, creating simpler CFG structures.
|
|
|
|
//
|
2004-09-20 06:41:39 +02:00
|
|
|
FunctionPass *createTailDuplicationPass();
|
2003-06-22 22:10:42 +02:00
|
|
|
|
2002-05-21 22:04:15 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-04-20 22:35:01 +02:00
|
|
|
// JumpThreading - Thread control through mult-pred/multi-succ blocks where some
|
|
|
|
// preds always go to some succ.
|
|
|
|
//
|
|
|
|
FunctionPass *createJumpThreadingPass();
|
|
|
|
|
2008-05-14 02:43:10 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-04-20 22:35:01 +02:00
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// CFGSimplification - Merge basic blocks, eliminate unreachable blocks,
|
2002-05-21 22:04:15 +02:00
|
|
|
// simplify terminator instructions, etc...
|
|
|
|
//
|
2003-10-05 21:15:13 +02:00
|
|
|
FunctionPass *createCFGSimplificationPass();
|
2002-05-21 22:04:15 +02:00
|
|
|
|
2002-09-24 02:08:37 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// BreakCriticalEdges - Break all of the critical edges in the CFG by inserting
|
|
|
|
// a dummy basic block. This pass may be "required" by passes that cannot deal
|
|
|
|
// with critical edges. For this usage, a pass must call:
|
2002-09-24 17:42:27 +02:00
|
|
|
//
|
|
|
|
// AU.addRequiredID(BreakCriticalEdgesID);
|
|
|
|
//
|
|
|
|
// This pass obviously invalidates the CFG, but can update forward dominator
|
2003-11-10 05:09:44 +01:00
|
|
|
// (set, immediate dominators, tree, and frontier) information.
|
2002-09-24 02:08:37 +02:00
|
|
|
//
|
2004-07-31 12:02:24 +02:00
|
|
|
FunctionPass *createBreakCriticalEdgesPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &BreakCriticalEdgesID;
|
2002-05-21 22:04:15 +02:00
|
|
|
|
2002-09-26 18:17:33 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// LoopSimplify - Insert Pre-header blocks into the CFG for every function in
|
|
|
|
// the module. This pass updates dominator information, loop information, and
|
|
|
|
// does not add critical edges to the CFG.
|
2002-09-26 18:17:33 +02:00
|
|
|
//
|
2003-10-12 23:52:28 +02:00
|
|
|
// AU.addRequiredID(LoopSimplifyID);
|
2002-09-26 18:17:33 +02:00
|
|
|
//
|
2009-09-28 16:37:51 +02:00
|
|
|
Pass *createLoopSimplifyPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &LoopSimplifyID;
|
2002-09-26 18:17:33 +02:00
|
|
|
|
2003-04-23 18:24:19 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2006-10-13 22:53:50 +02:00
|
|
|
// TailCallElimination - This pass eliminates call instructions to the current
|
|
|
|
// function which occur immediately before return instructions.
|
2006-05-02 06:24:36 +02:00
|
|
|
//
|
|
|
|
FunctionPass *createTailCallEliminationPass();
|
2002-07-23 21:37:38 +02:00
|
|
|
|
2004-03-30 20:41:10 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-10-13 22:53:50 +02:00
|
|
|
//
|
|
|
|
// LowerSwitch - This pass converts SwitchInst instructions into a sequence of
|
|
|
|
// chained binary branch instructions.
|
2004-03-30 20:41:10 +02:00
|
|
|
//
|
2006-05-02 06:24:36 +02:00
|
|
|
FunctionPass *createLowerSwitchPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &LowerSwitchID;
|
2003-10-05 21:15:13 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2006-10-13 22:53:50 +02:00
|
|
|
//
|
|
|
|
// LowerInvoke - This pass converts invoke and unwind instructions to use sjlj
|
|
|
|
// exception handling mechanisms. Note that after this pass runs the CFG is not
|
|
|
|
// entirely accurate (exceptional control flow edges are not correct anymore) so
|
|
|
|
// only very simple things should be done after the lowerinvoke pass has run
|
|
|
|
// (like generation of native code). This should *NOT* be used as a general
|
|
|
|
// purpose "my LLVM-to-LLVM pass doesn't support the invoke instruction yet"
|
|
|
|
// lowering pass.
|
2003-10-05 21:15:13 +02:00
|
|
|
//
|
2008-05-29 21:52:31 +02:00
|
|
|
FunctionPass *createLowerInvokePass(const TargetLowering *TLI = 0);
|
2010-04-27 01:49:32 +02:00
|
|
|
FunctionPass *createLowerInvokePass(const TargetLowering *TLI,
|
|
|
|
bool useExpensiveEHSupport);
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &LowerInvokePassID;
|
2003-10-05 21:15:13 +02:00
|
|
|
|
2005-01-08 18:21:40 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-10-13 22:53:50 +02:00
|
|
|
//
|
|
|
|
// BlockPlacement - This pass reorders basic blocks in order to increase the
|
|
|
|
// number of fall-through conditional branches.
|
|
|
|
//
|
2005-01-08 18:21:40 +01:00
|
|
|
FunctionPass *createBlockPlacementPass();
|
|
|
|
|
2006-05-26 15:58:26 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-10-13 22:53:50 +02:00
|
|
|
//
|
|
|
|
// LCSSA - This pass inserts phi nodes at loop boundaries to simplify other loop
|
2006-05-26 15:58:26 +02:00
|
|
|
// optimizations.
|
2006-10-13 22:53:50 +02:00
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLCSSAPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &LCSSAID;
|
2006-05-26 15:58:26 +02:00
|
|
|
|
2011-01-02 22:47:05 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// EarlyCSE - This pass performs a simple and fast CSE pass over the dominator
|
|
|
|
// tree.
|
|
|
|
//
|
|
|
|
FunctionPass *createEarlyCSEPass();
|
|
|
|
|
2007-07-24 19:55:58 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// GVN - This pass performs global value numbering and redundant load
|
|
|
|
// elimination cotemporaneously.
|
|
|
|
//
|
2010-02-28 06:34:05 +01:00
|
|
|
FunctionPass *createGVNPass(bool NoLoads = false);
|
2007-07-24 19:55:58 +02:00
|
|
|
|
2008-04-09 10:23:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// MemCpyOpt - This pass performs optimizations related to eliminating memcpy
|
|
|
|
// calls and/or combining multiple stores into memset's.
|
|
|
|
//
|
|
|
|
FunctionPass *createMemCpyOptPass();
|
|
|
|
|
2008-04-29 02:38:34 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-04-29 22:06:54 +02:00
|
|
|
// LoopDeletion - This pass performs DCE of non-infinite loops that it
|
2008-04-29 02:38:34 +02:00
|
|
|
// can prove are dead.
|
|
|
|
//
|
2008-10-23 01:32:42 +02:00
|
|
|
Pass *createLoopDeletionPass();
|
2008-05-01 08:25:24 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// createSimplifyLibCallsPass - This pass optimizes specific calls to
|
|
|
|
/// specific well-known (library) functions.
|
|
|
|
FunctionPass *createSimplifyLibCallsPass();
|
2008-04-29 02:38:34 +02:00
|
|
|
|
2007-03-31 06:06:36 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// CodeGenPrepare - This pass prepares a function for instruction selection.
|
|
|
|
//
|
|
|
|
FunctionPass *createCodeGenPreparePass(const TargetLowering *TLI = 0);
|
|
|
|
|
2008-08-23 08:07:02 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// InstructionNamer - Give any unnamed non-void instructions "tmp" names.
|
|
|
|
//
|
|
|
|
FunctionPass *createInstructionNamerPass();
|
2010-08-06 20:33:48 +02:00
|
|
|
extern char &InstructionNamerID;
|
2008-08-23 08:07:02 +02:00
|
|
|
|
2009-10-26 20:12:14 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// GEPSplitter - Split complex GEPs into simple ones
|
|
|
|
//
|
|
|
|
FunctionPass *createGEPSplitterPass();
|
|
|
|
|
2010-05-07 17:40:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Sink - Code Sinking
|
|
|
|
//
|
|
|
|
FunctionPass *createSinkingPass();
|
|
|
|
|
2010-08-03 18:19:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// LowerAtomic - Lower atomic intrinsics to non-atomic form
|
|
|
|
//
|
|
|
|
Pass *createLowerAtomicPass();
|
|
|
|
|
2010-08-28 01:31:36 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// ValuePropagation - Propagate CFG-derived value information
|
|
|
|
//
|
2010-08-31 09:48:34 +02:00
|
|
|
Pass *createCorrelatedValuePropagationPass();
|
2010-08-28 01:31:36 +02:00
|
|
|
|
2010-12-20 21:54:37 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// InstructionSimplifier - Remove redundant instructions.
|
|
|
|
//
|
|
|
|
FunctionPass *createInstructionSimplifierPass();
|
|
|
|
extern char &InstructionSimplifierID;
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-05-07 21:37:18 +02:00
|
|
|
#endif
|