ed8bbdf3c320c101949266af04c8b8e869b70eee
[oota-llvm.git] / include / llvm / Transforms / Utils / Local.h
1 //===-- Local.h - Functions to perform local transformations -----*- C++ -*--=//
2 //
3 // This family of functions perform various local transformations to the
4 // program.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_TRANSFORMS_UTILS_LOCAL_H
9 #define LLVM_TRANSFORMS_UTILS_LOCAL_H
10
11 #include "llvm/Function.h"
12 #include "llvm/BasicBlock.h"
13
14 //===----------------------------------------------------------------------===//
15 //  Local constant propogation...
16 //
17
18 // doConstantPropogation - Constant prop a specific instruction.  Returns true
19 // and potentially moves the iterator if constant propogation was performed.
20 //
21 bool doConstantPropogation(BasicBlock *BB, BasicBlock::iterator &I);
22
23 // ConstantFoldTerminator - If a terminator instruction is predicated on a
24 // constant value, convert it into an unconditional branch to the constant
25 // destination.  This is a nontrivial operation because the successors of this
26 // basic block must have their PHI nodes updated.
27 //
28 bool ConstantFoldTerminator(BasicBlock *BB);
29
30
31 //===----------------------------------------------------------------------===//
32 //  Local dead code elimination...
33 //
34
35 // isInstructionTriviallyDead - Return true if the result produced by the
36 // instruction is not used, and the instruction has no side effects.
37 //
38 bool isInstructionTriviallyDead(Instruction *I);
39
40
41 // dceInstruction - Inspect the instruction at *BBI and figure out if it
42 // isTriviallyDead.  If so, remove the instruction and update the iterator to
43 // point to the instruction that immediately succeeded the original instruction.
44 //
45 bool dceInstruction(BasicBlock::InstListType &BBIL, BasicBlock::iterator &BBI);
46
47
48 //===----------------------------------------------------------------------===//
49 //  Control Flow Graph Restructuring...
50 //
51
52 // SimplifyCFG - This function is used to do simplification of a CFG.  For
53 // example, it adjusts branches to branches to eliminate the extra hop, it
54 // eliminates unreachable basic blocks, and does other "peephole" optimization
55 // of the CFG.  It returns true if a modification was made, and returns an 
56 // iterator that designates the first element remaining after the block that
57 // was deleted.
58 //
59 // WARNING:  The entry node of a method may not be simplified.
60 //
61 bool SimplifyCFG(Function::iterator &BBIt);
62
63 #endif