Inherit CallGraphSCCPass directly from Pass.
[oota-llvm.git] / include / llvm / Transforms / IPO.h
1 //===- llvm/Transforms/IPO.h - Interprocedural Transformations --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This header file defines prototypes for accessor functions that expose passes
11 // in the IPO transformations library.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TRANSFORMS_IPO_H
16 #define LLVM_TRANSFORMS_IPO_H
17
18 #include <vector>
19
20 namespace llvm {
21
22 class FunctionPass;
23 class ModulePass;
24 class Pass;
25 class Function;
26 class BasicBlock;
27
28 //===----------------------------------------------------------------------===//
29 //
30 // These functions removes symbols from functions and modules.  If OnlyDebugInfo
31 // is true, only debugging information is removed from the module.
32 //
33 ModulePass *createStripSymbolsPass(bool OnlyDebugInfo = false);
34
35 //===----------------------------------------------------------------------===//
36 /// createLowerSetJmpPass - This function lowers the setjmp/longjmp intrinsics
37 /// to invoke/unwind instructions.  This should really be part of the C/C++
38 /// front-end, but it's so much easier to write transformations in LLVM proper.
39 ///
40 ModulePass* createLowerSetJmpPass();
41
42 //===----------------------------------------------------------------------===//
43 /// createConstantMergePass - This function returns a new pass that merges
44 /// duplicate global constants together into a single constant that is shared.
45 /// This is useful because some passes (ie TraceValues) insert a lot of string
46 /// constants into the program, regardless of whether or not they duplicate an
47 /// existing string.
48 ///
49 ModulePass *createConstantMergePass();
50
51
52 //===----------------------------------------------------------------------===//
53 /// createGlobalOptimizerPass - This function returns a new pass that optimizes
54 /// non-address taken internal globals.
55 ///
56 ModulePass *createGlobalOptimizerPass();
57
58
59 //===----------------------------------------------------------------------===//
60 /// createRaiseAllocationsPass - Return a new pass that transforms malloc and
61 /// free function calls into malloc and free instructions.
62 ///
63 ModulePass *createRaiseAllocationsPass();
64
65
66 //===----------------------------------------------------------------------===//
67 /// createDeadTypeEliminationPass - Return a new pass that eliminates symbol
68 /// table entries for types that are never used.
69 ///
70 ModulePass *createDeadTypeEliminationPass();
71
72
73 //===----------------------------------------------------------------------===//
74 /// createGlobalDCEPass - This transform is designed to eliminate unreachable
75 /// internal globals (functions or global variables)
76 ///
77 ModulePass *createGlobalDCEPass();
78
79
80 //===----------------------------------------------------------------------===//
81 /// createFunctionExtractionPass - If deleteFn is true, this pass deletes as
82 /// the specified function. Otherwise, it deletes as much of the module as
83 /// possible, except for the function specified.
84 ///
85 ModulePass *createFunctionExtractionPass(Function *F, bool deleteFn = false);
86
87
88 //===----------------------------------------------------------------------===//
89 /// FunctionResolvingPass - Go over the functions that are in the module and
90 /// look for functions that have the same name.  More often than not, there will
91 /// be things like:
92 ///    void "foo"(...)
93 ///    void "foo"(int, int)
94 /// because of the way things are declared in C.  If this is the case, patch
95 /// things up.
96 ///
97 /// This is an interprocedural pass.
98 ///
99 ModulePass *createFunctionResolvingPass();
100
101 //===----------------------------------------------------------------------===//
102 /// createFunctionInliningPass - Return a new pass object that uses a heuristic
103 /// to inline direct function calls to small functions.
104 ///
105 Pass *createFunctionInliningPass();
106
107 //===----------------------------------------------------------------------===//
108 /// createPruneEHPass - Return a new pass object which transforms invoke
109 /// instructions into calls, if the callee can _not_ unwind the stack.
110 ///
111 Pass *createPruneEHPass();
112
113 //===----------------------------------------------------------------------===//
114 /// createInternalizePass - This pass loops over all of the functions in the
115 /// input module, looking for a main function.  If a list of symbols is
116 /// specified with the -internalize-public-api-* command line options, those
117 /// symbols are internalized.  Otherwise if InternalizeEverything is set and
118 /// the main function is found, all other globals are marked as internal.
119 ///
120 ModulePass *createInternalizePass(bool InternalizeEverything);
121 ModulePass *createInternalizePass(const std::vector<const char *> &exportList);
122
123 //===----------------------------------------------------------------------===//
124 /// createDeadArgEliminationPass - This pass removes arguments from functions
125 /// which are not used by the body of the function.
126 ///
127 ModulePass *createDeadArgEliminationPass();
128
129 /// DeadArgHacking pass - Same as DAE, but delete arguments of external
130 /// functions as well.  This is definitely not safe, and should only be used by
131 /// bugpoint.
132 ModulePass *createDeadArgHackingPass();
133
134 //===----------------------------------------------------------------------===//
135 /// createArgumentPromotionPass - This pass promotes "by reference" arguments to
136 /// be passed by value.
137 ///
138 Pass *createArgumentPromotionPass();
139
140 //===----------------------------------------------------------------------===//
141 /// createIPConstantPropagationPass - This pass propagates constants from call
142 /// sites into the bodies of functions.
143 ///
144 ModulePass *createIPConstantPropagationPass();
145
146 //===----------------------------------------------------------------------===//
147 /// createIPSCCPPass - This pass propagates constants from call sites into the
148 /// bodies of functions, and keeps track of whether basic blocks are executable
149 /// in the process.
150 ///
151 ModulePass *createIPSCCPPass();
152
153 //===----------------------------------------------------------------------===//
154 //
155 /// createLoopExtractorPass - This pass extracts all natural loops from the
156 /// program into a function if it can.
157 ///
158 FunctionPass *createLoopExtractorPass();
159
160 /// createSingleLoopExtractorPass - This pass extracts one natural loop from the
161 /// program into a function if it can.  This is used by bugpoint.
162 ///
163 FunctionPass *createSingleLoopExtractorPass();
164
165 // createBlockExtractorPass - This pass extracts all blocks (except those
166 // specified in the argument list) from the functions in the module.
167 //
168 ModulePass *createBlockExtractorPass(std::vector<BasicBlock*> &BTNE);
169
170 // createOptimizeWellKnownCallsPass - This pass optimizes specific calls to
171 // specific well-known (library) functions.
172 ModulePass *createSimplifyLibCallsPass();
173
174
175 // createIndMemRemPass - This pass removes potential indirect calls of
176 // malloc and free
177 ModulePass *createIndMemRemPass();
178
179 } // End llvm namespace
180
181 #endif