Auto-upgrade free instructions to calls to the builtin free function.
[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 is distributed under the University of Illinois Open Source
6 // 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 ModulePass;
23 class Pass;
24 class Function;
25 class BasicBlock;
26 class GlobalValue;
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 //
37 // These functions strips symbols from functions and modules.  
38 // Only debugging information is not stripped.
39 //
40 ModulePass *createStripNonDebugSymbolsPass();
41
42 //===----------------------------------------------------------------------===//
43 //
44 // These pass removes llvm.dbg.declare intrinsics.
45 ModulePass *createStripDebugDeclarePass();
46
47 //===----------------------------------------------------------------------===//
48 /// createLowerSetJmpPass - This function lowers the setjmp/longjmp intrinsics
49 /// to invoke/unwind instructions.  This should really be part of the C/C++
50 /// front-end, but it's so much easier to write transformations in LLVM proper.
51 ///
52 ModulePass *createLowerSetJmpPass();
53
54 //===----------------------------------------------------------------------===//
55 /// createConstantMergePass - This function returns a new pass that merges
56 /// duplicate global constants together into a single constant that is shared.
57 /// This is useful because some passes (ie TraceValues) insert a lot of string
58 /// constants into the program, regardless of whether or not they duplicate an
59 /// existing string.
60 ///
61 ModulePass *createConstantMergePass();
62
63
64 //===----------------------------------------------------------------------===//
65 /// createGlobalOptimizerPass - This function returns a new pass that optimizes
66 /// non-address taken internal globals.
67 ///
68 ModulePass *createGlobalOptimizerPass();
69
70
71 //===----------------------------------------------------------------------===//
72 /// createDeadTypeEliminationPass - Return a new pass that eliminates symbol
73 /// table entries for types that are never used.
74 ///
75 ModulePass *createDeadTypeEliminationPass();
76
77
78 //===----------------------------------------------------------------------===//
79 /// createGlobalDCEPass - This transform is designed to eliminate unreachable
80 /// internal globals (functions or global variables)
81 ///
82 ModulePass *createGlobalDCEPass();
83
84
85 //===----------------------------------------------------------------------===//
86 /// createGVExtractionPass - If deleteFn is true, this pass deletes as
87 /// the specified global values. Otherwise, it deletes as much of the module as
88 /// possible, except for the global values specified.
89 ///
90 ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool 
91                                    deleteFn = false, 
92                                    bool relinkCallees = false);
93
94 //===----------------------------------------------------------------------===//
95 /// createFunctionInliningPass - Return a new pass object that uses a heuristic
96 /// to inline direct function calls to small functions.
97 ///
98 Pass *createFunctionInliningPass();
99 Pass *createFunctionInliningPass(int Threshold);
100
101 //===----------------------------------------------------------------------===//
102 /// createAlwaysInlinerPass - Return a new pass object that inlines only 
103 /// functions that are marked as "always_inline".
104 Pass *createAlwaysInlinerPass();
105
106 //===----------------------------------------------------------------------===//
107 /// createPruneEHPass - Return a new pass object which transforms invoke
108 /// instructions into calls, if the callee can _not_ unwind the stack.
109 ///
110 Pass *createPruneEHPass();
111
112 //===----------------------------------------------------------------------===//
113 /// createInternalizePass - This pass loops over all of the functions in the
114 /// input module, internalizing all globals (functions and variables) not part
115 /// of the api.  If a list of symbols is specified with the
116 /// -internalize-public-api-* command line options, those symbols are not
117 /// internalized and all others are.  Otherwise if AllButMain is set and the
118 /// main function is found, all other globals are marked as internal. If no api
119 /// is supplied and AllButMain is not set, or no main function is found, nothing
120 /// is internalized.
121 ///
122 ModulePass *createInternalizePass(bool AllButMain);
123
124 /// createInternalizePass - This pass loops over all of the functions in the
125 /// input module, internalizing all globals (functions and variables) not in the
126 /// given exportList.
127 ///
128 /// Note that commandline options that are used with the above function are not
129 /// used now! Also, when exportList is empty, nothing is internalized.
130 ModulePass *createInternalizePass(const std::vector<const char *> &exportList);
131
132 //===----------------------------------------------------------------------===//
133 /// createDeadArgEliminationPass - This pass removes arguments from functions
134 /// which are not used by the body of the function.
135 ///
136 ModulePass *createDeadArgEliminationPass();
137
138 /// DeadArgHacking pass - Same as DAE, but delete arguments of external
139 /// functions as well.  This is definitely not safe, and should only be used by
140 /// bugpoint.
141 ModulePass *createDeadArgHackingPass();
142
143 //===----------------------------------------------------------------------===//
144 /// createArgumentPromotionPass - This pass promotes "by reference" arguments to
145 /// be passed by value if the number of elements passed is smaller or
146 /// equal to maxElements (maxElements == 0 means always promote).
147 ///
148 Pass *createArgumentPromotionPass(unsigned maxElements = 3);
149 Pass *createStructRetPromotionPass();
150
151 //===----------------------------------------------------------------------===//
152 /// createIPConstantPropagationPass - This pass propagates constants from call
153 /// sites into the bodies of functions.
154 ///
155 ModulePass *createIPConstantPropagationPass();
156
157 //===----------------------------------------------------------------------===//
158 /// createIPSCCPPass - This pass propagates constants from call sites into the
159 /// bodies of functions, and keeps track of whether basic blocks are executable
160 /// in the process.
161 ///
162 ModulePass *createIPSCCPPass();
163
164 //===----------------------------------------------------------------------===//
165 //
166 /// createLoopExtractorPass - This pass extracts all natural loops from the
167 /// program into a function if it can.
168 ///
169 Pass *createLoopExtractorPass();
170
171 /// createSingleLoopExtractorPass - This pass extracts one natural loop from the
172 /// program into a function if it can.  This is used by bugpoint.
173 ///
174 Pass *createSingleLoopExtractorPass();
175
176 /// createBlockExtractorPass - This pass extracts all blocks (except those
177 /// specified in the argument list) from the functions in the module.
178 ///
179 ModulePass *createBlockExtractorPass(const std::vector<BasicBlock*> &BTNE);
180
181 /// createStripDeadPrototypesPass - This pass removes any function declarations
182 /// (prototypes) that are not used.
183 ModulePass *createStripDeadPrototypesPass();
184
185 //===----------------------------------------------------------------------===//
186 /// createPartialSpecializationPass - This pass specializes functions for
187 /// constant arguments.
188 ///
189 ModulePass *createPartialSpecializationPass();
190
191 //===----------------------------------------------------------------------===//
192 /// createFunctionAttrsPass - This pass discovers functions that do not access
193 /// memory, or only read memory, and gives them the readnone/readonly attribute.
194 /// It also discovers function arguments that are not captured by the function
195 /// and marks them with the nocapture attribute.
196 ///
197 Pass *createFunctionAttrsPass();
198
199 //===----------------------------------------------------------------------===//
200 /// createMergeFunctionsPass - This pass discovers identical functions and
201 /// collapses them.
202 ///
203 ModulePass *createMergeFunctionsPass();
204
205 //===----------------------------------------------------------------------===//
206 /// createPartialInliningPass - This pass inlines parts of functions.
207 ///
208 ModulePass *createPartialInliningPass();
209
210 } // End llvm namespace
211
212 #endif