remove doConstantPropagation and dceInstruction, they are just
[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 #include "llvm/Function.h"
19
20 namespace llvm {
21
22 class Pass;
23 class PHINode;
24 class AllocaInst;
25 class ConstantExpr;
26 class TargetData;
27
28 //===----------------------------------------------------------------------===//
29 //  Local constant propagation.
30 //
31
32 /// ConstantFoldTerminator - If a terminator instruction is predicated on a
33 /// constant value, convert it into an unconditional branch to the constant
34 /// destination.  This is a nontrivial operation because the successors of this
35 /// basic block must have their PHI nodes updated.
36 ///
37 bool ConstantFoldTerminator(BasicBlock *BB);
38
39 //===----------------------------------------------------------------------===//
40 //  Local dead code elimination.
41 //
42
43 /// isInstructionTriviallyDead - Return true if the result produced by the
44 /// instruction is not used, and the instruction has no side effects.
45 ///
46 bool isInstructionTriviallyDead(Instruction *I);
47
48   
49 /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a
50 /// trivially dead instruction, delete it.  If that makes any of its operands
51 /// trivially dead, delete them too, recursively.
52 void RecursivelyDeleteTriviallyDeadInstructions(Value *V);
53     
54 //===----------------------------------------------------------------------===//
55 //  Control Flow Graph Restructuring...
56 //
57
58 /// MergeBasicBlockIntoOnlyPred - BB is a block with one predecessor and its
59 /// predecessor is known to have one successor (BB!).  Eliminate the edge
60 /// between them, moving the instructions in the predecessor into BB.  This
61 /// deletes the predecessor block.
62 ///
63 void MergeBasicBlockIntoOnlyPred(BasicBlock *BB);
64     
65   
66 /// SimplifyCFG - This function is used to do simplification of a CFG.  For
67 /// example, it adjusts branches to branches to eliminate the extra hop, it
68 /// eliminates unreachable basic blocks, and does other "peephole" optimization
69 /// of the CFG.  It returns true if a modification was made, possibly deleting
70 /// the basic block that was pointed to.
71 ///
72 /// WARNING:  The entry node of a method may not be simplified.
73 ///
74 bool SimplifyCFG(BasicBlock *BB);
75
76 /// DemoteRegToStack - This function takes a virtual register computed by an
77 /// Instruction and replaces it with a slot in the stack frame, allocated via
78 /// alloca.  This allows the CFG to be changed around without fear of
79 /// invalidating the SSA information for the value.  It returns the pointer to
80 /// the alloca inserted to create a stack slot for X.
81 ///
82 AllocaInst *DemoteRegToStack(Instruction &X, bool VolatileLoads = false,
83                              Instruction *AllocaPoint = NULL);
84
85 /// DemotePHIToStack - This function takes a virtual register computed by a phi
86 /// node and replaces it with a slot in the stack frame, allocated via alloca.
87 /// The phi node is deleted and it returns the pointer to the alloca inserted. 
88 AllocaInst *DemotePHIToStack(PHINode *P, Instruction *AllocaPoint = NULL);
89
90 } // End llvm namespace
91
92 #endif