PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instruction
[oota-llvm.git] / include / llvm / Transforms / Utils / Local.h
1 //===-- Local.h - Functions to perform local 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 family of functions perform various local transformations to the
11 // program.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TRANSFORMS_UTILS_LOCAL_H
16 #define LLVM_TRANSFORMS_UTILS_LOCAL_H
17
18 namespace llvm {
19
20 class User;
21 class BasicBlock;
22 class Function;
23 class BranchInst;
24 class Instruction;
25 class DbgDeclareInst;
26 class StoreInst;
27 class LoadInst;
28 class Value;
29 class Pass;
30 class PHINode;
31 class AllocaInst;
32 class ConstantExpr;
33 class TargetData;
34 class DIBuilder;
35
36 template<typename T> class SmallVectorImpl;
37   
38 //===----------------------------------------------------------------------===//
39 //  Local constant propagation.
40 //
41
42 /// ConstantFoldTerminator - If a terminator instruction is predicated on a
43 /// constant value, convert it into an unconditional branch to the constant
44 /// destination.  This is a nontrivial operation because the successors of this
45 /// basic block must have their PHI nodes updated.
46 ///
47 bool ConstantFoldTerminator(BasicBlock *BB);
48
49 //===----------------------------------------------------------------------===//
50 //  Local dead code elimination.
51 //
52
53 /// isInstructionTriviallyDead - Return true if the result produced by the
54 /// instruction is not used, and the instruction has no side effects.
55 ///
56 bool isInstructionTriviallyDead(Instruction *I);
57
58 /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a
59 /// trivially dead instruction, delete it.  If that makes any of its operands
60 /// trivially dead, delete them too, recursively.  Return true if any
61 /// instructions were deleted.
62 bool RecursivelyDeleteTriviallyDeadInstructions(Value *V);
63
64 /// RecursivelyDeleteDeadPHINode - If the specified value is an effectively
65 /// dead PHI node, due to being a def-use chain of single-use nodes that
66 /// either forms a cycle or is terminated by a trivially dead instruction,
67 /// delete it.  If that makes any of its operands trivially dead, delete them
68 /// too, recursively.  Return true if a change was made.
69 bool RecursivelyDeleteDeadPHINode(PHINode *PN);
70
71   
72 /// SimplifyInstructionsInBlock - Scan the specified basic block and try to
73 /// simplify any instructions in it and recursively delete dead instructions.
74 ///
75 /// This returns true if it changed the code, note that it can delete
76 /// instructions in other blocks as well in this block.
77 bool SimplifyInstructionsInBlock(BasicBlock *BB, const TargetData *TD = 0);
78     
79 //===----------------------------------------------------------------------===//
80 //  Control Flow Graph Restructuring.
81 //
82
83 /// RemovePredecessorAndSimplify - Like BasicBlock::removePredecessor, this
84 /// method is called when we're about to delete Pred as a predecessor of BB.  If
85 /// BB contains any PHI nodes, this drops the entries in the PHI nodes for Pred.
86 ///
87 /// Unlike the removePredecessor method, this attempts to simplify uses of PHI
88 /// nodes that collapse into identity values.  For example, if we have:
89 ///   x = phi(1, 0, 0, 0)
90 ///   y = and x, z
91 ///
92 /// .. and delete the predecessor corresponding to the '1', this will attempt to
93 /// recursively fold the 'and' to 0.
94 void RemovePredecessorAndSimplify(BasicBlock *BB, BasicBlock *Pred,
95                                   TargetData *TD = 0);
96     
97   
98 /// MergeBasicBlockIntoOnlyPred - BB is a block with one predecessor and its
99 /// predecessor is known to have one successor (BB!).  Eliminate the edge
100 /// between them, moving the instructions in the predecessor into BB.  This
101 /// deletes the predecessor block.
102 ///
103 void MergeBasicBlockIntoOnlyPred(BasicBlock *BB, Pass *P = 0);
104     
105
106 /// TryToSimplifyUncondBranchFromEmptyBlock - BB is known to contain an
107 /// unconditional branch, and contains no instructions other than PHI nodes,
108 /// potential debug intrinsics and the branch.  If possible, eliminate BB by
109 /// rewriting all the predecessors to branch to the successor block and return
110 /// true.  If we can't transform, return false.
111 bool TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB);
112
113 /// EliminateDuplicatePHINodes - Check for and eliminate duplicate PHI
114 /// nodes in this block. This doesn't try to be clever about PHI nodes
115 /// which differ only in the order of the incoming values, but instcombine
116 /// orders them so it usually won't matter.
117 ///
118 bool EliminateDuplicatePHINodes(BasicBlock *BB);
119
120 /// SimplifyCFG - This function is used to do simplification of a CFG.  For
121 /// example, it adjusts branches to branches to eliminate the extra hop, it
122 /// eliminates unreachable basic blocks, and does other "peephole" optimization
123 /// of the CFG.  It returns true if a modification was made, possibly deleting
124 /// the basic block that was pointed to.
125 ///
126 bool SimplifyCFG(BasicBlock *BB, const TargetData *TD = 0);
127
128 /// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch,
129 /// and if a predecessor branches to us and one of our successors, fold the
130 /// setcc into the predecessor and use logical operations to pick the right
131 /// destination.
132 bool FoldBranchToCommonDest(BranchInst *BI);
133
134 /// DemoteRegToStack - This function takes a virtual register computed by an
135 /// Instruction and replaces it with a slot in the stack frame, allocated via
136 /// alloca.  This allows the CFG to be changed around without fear of
137 /// invalidating the SSA information for the value.  It returns the pointer to
138 /// the alloca inserted to create a stack slot for X.
139 ///
140 AllocaInst *DemoteRegToStack(Instruction &X,
141                              bool VolatileLoads = false,
142                              Instruction *AllocaPoint = 0);
143
144 /// DemotePHIToStack - This function takes a virtual register computed by a phi
145 /// node and replaces it with a slot in the stack frame, allocated via alloca.
146 /// The phi node is deleted and it returns the pointer to the alloca inserted. 
147 AllocaInst *DemotePHIToStack(PHINode *P, Instruction *AllocaPoint = 0);
148
149 /// getOrEnforceKnownAlignment - If the specified pointer has an alignment that
150 /// we can determine, return it, otherwise return 0.  If PrefAlign is specified,
151 /// and it is more than the alignment of the ultimate object, see if we can
152 /// increase the alignment of the ultimate object, making this check succeed.
153 unsigned getOrEnforceKnownAlignment(Value *V, unsigned PrefAlign,
154                                     const TargetData *TD = 0);
155
156 /// getKnownAlignment - Try to infer an alignment for the specified pointer.
157 static inline unsigned getKnownAlignment(Value *V, const TargetData *TD = 0) {
158   return getOrEnforceKnownAlignment(V, 0, TD);
159 }
160
161 ///===---------------------------------------------------------------------===//
162 ///  Dbg Intrinsic utilities
163 ///
164
165 /// Inserts a llvm.dbg.value instrinsic before the stores to an alloca'd value
166 /// that has an associated llvm.dbg.decl intrinsic.
167 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
168                                      StoreInst *SI, DIBuilder &Builder);
169
170 /// Inserts a llvm.dbg.value instrinsic before the stores to an alloca'd value
171 /// that has an associated llvm.dbg.decl intrinsic.
172 bool ConvertDebugDeclareToDebugValue(DbgDeclareInst *DDI,
173                                      LoadInst *LI, DIBuilder &Builder);
174
175 /// LowerDbgDeclare - Lowers llvm.dbg.declare intrinsics into appropriate set
176 /// of llvm.dbg.value intrinsics.
177 bool LowerDbgDeclare(Function &F);
178
179 } // End llvm namespace
180
181 #endif