Remove all contents of the cfg namespace to the global namespace
[oota-llvm.git] / include / llvm / Transforms / FunctionInlining.h
1 //===-- FunctionInlining.h - Functions that perform Inlining -----*- C++ -*--=//
2 //
3 // This family of functions is useful for performing function inlining.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_TRANSFORMS_FUNCTION_INLINING_H
8 #define LLVM_TRANSFORMS_FUNCTION_INLINING_H
9
10 #include "llvm/BasicBlock.h"
11 class CallInst;
12 class Pass;
13
14 Pass *createFunctionInliningPass();
15
16 // InlineFunction - This function forcibly inlines the called function into the
17 // basic block of the caller.  This returns true if it is not possible to inline
18 // this call.  The program is still in a well defined state if this occurs 
19 // though.
20 //
21 // Note that this only does one level of inlining.  For example, if the 
22 // instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now 
23 // exists in the instruction stream.  Similiarly this will inline a recursive
24 // function by one level.
25 //
26 bool InlineFunction(CallInst *C);
27 bool InlineFunction(BasicBlock::iterator CI);  // *CI must be CallInst
28
29 #endif