Move EVER MORE stuff over to LLVMContext.
[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 BranchInst;
23 class Instruction;
24 class Value;
25 class Pass;
26 class PHINode;
27 class AllocaInst;
28 class ConstantExpr;
29 class TargetData;
30 class LLVMContext;
31 struct DbgInfoIntrinsic;
32
33 template<typename T> class SmallVectorImpl;
34   
35 //===----------------------------------------------------------------------===//
36 //  Local analysis.
37 //
38
39 /// isSafeToLoadUnconditionally - Return true if we know that executing a load
40 /// from this value cannot trap.  If it is not obviously safe to load from the
41 /// specified pointer, we do a quick local scan of the basic block containing
42 /// ScanFrom, to determine if the address is already accessed.
43 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom);
44
45 //===----------------------------------------------------------------------===//
46 //  Local constant propagation.
47 //
48
49 /// ConstantFoldTerminator - If a terminator instruction is predicated on a
50 /// constant value, convert it into an unconditional branch to the constant
51 /// destination.  This is a nontrivial operation because the successors of this
52 /// basic block must have their PHI nodes updated.
53 ///
54 bool ConstantFoldTerminator(BasicBlock *BB);
55
56 //===----------------------------------------------------------------------===//
57 //  Local dead code elimination.
58 //
59
60 /// isInstructionTriviallyDead - Return true if the result produced by the
61 /// instruction is not used, and the instruction has no side effects.
62 ///
63 bool isInstructionTriviallyDead(Instruction *I);
64
65 /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a
66 /// trivially dead instruction, delete it.  If that makes any of its operands
67 /// trivially dead, delete them too, recursively.
68 void RecursivelyDeleteTriviallyDeadInstructions(Value *V);
69
70 /// RecursivelyDeleteDeadPHINode - If the specified value is an effectively
71 /// dead PHI node, due to being a def-use chain of single-use nodes that
72 /// either forms a cycle or is terminated by a trivially dead instruction,
73 /// delete it.  If that makes any of its operands trivially dead, delete them
74 /// too, recursively.
75 void RecursivelyDeleteDeadPHINode(PHINode *PN);
76
77 //===----------------------------------------------------------------------===//
78 //  Control Flow Graph Restructuring.
79 //
80
81 /// MergeBasicBlockIntoOnlyPred - BB is a block with one predecessor and its
82 /// predecessor is known to have one successor (BB!).  Eliminate the edge
83 /// between them, moving the instructions in the predecessor into BB.  This
84 /// deletes the predecessor block.
85 ///
86 void MergeBasicBlockIntoOnlyPred(BasicBlock *BB);
87     
88   
89 /// SimplifyCFG - This function is used to do simplification of a CFG.  For
90 /// example, it adjusts branches to branches to eliminate the extra hop, it
91 /// eliminates unreachable basic blocks, and does other "peephole" optimization
92 /// of the CFG.  It returns true if a modification was made, possibly deleting
93 /// the basic block that was pointed to.
94 ///
95 /// WARNING:  The entry node of a method may not be simplified.
96 ///
97 bool SimplifyCFG(BasicBlock *BB);
98
99 /// FoldBranchToCommonDest - If this basic block is ONLY a setcc and a branch,
100 /// and if a predecessor branches to us and one of our successors, fold the
101 /// setcc into the predecessor and use logical operations to pick the right
102 /// destination.
103 bool FoldBranchToCommonDest(BranchInst *BI);
104
105 /// DemoteRegToStack - This function takes a virtual register computed by an
106 /// Instruction and replaces it with a slot in the stack frame, allocated via
107 /// alloca.  This allows the CFG to be changed around without fear of
108 /// invalidating the SSA information for the value.  It returns the pointer to
109 /// the alloca inserted to create a stack slot for X.
110 ///
111 AllocaInst *DemoteRegToStack(LLVMContext &Context, Instruction &X,
112                              bool VolatileLoads = false,
113                              Instruction *AllocaPoint = 0);
114
115 /// DemotePHIToStack - This function takes a virtual register computed by a phi
116 /// node and replaces it with a slot in the stack frame, allocated via alloca.
117 /// The phi node is deleted and it returns the pointer to the alloca inserted. 
118 AllocaInst *DemotePHIToStack(LLVMContext &Context, PHINode *P,
119                              Instruction *AllocaPoint = 0);
120
121 /// OnlyUsedByDbgIntrinsics - Return true if the instruction I is only used
122 /// by DbgIntrinsics. If DbgInUses is specified then the vector is filled 
123 /// with DbgInfoIntrinsic that use the instruction I.
124 bool OnlyUsedByDbgInfoIntrinsics(Instruction *I, 
125                            SmallVectorImpl<DbgInfoIntrinsic *> *DbgInUses = 0);
126
127 } // End llvm namespace
128
129 #endif