1 /*===-- IPO.h - Interprocedural Transformations C Interface -----*- C++ -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header declares the C interface to libLLVMIPO.a, which implements *|
11 |* various interprocedural transformations of the LLVM IR. *|
13 \*===----------------------------------------------------------------------===*/
15 #ifndef LLVM_C_TRANSFORMS_IPO_H
16 #define LLVM_C_TRANSFORMS_IPO_H
18 #include "llvm-c/Core.h"
25 * @defgroup LLVMCTransformsIPO Interprocedural transformations
26 * @ingroup LLVMCTransforms
31 /** See llvm::createArgumentPromotionPass function. */
32 void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM);
34 /** See llvm::createConstantMergePass function. */
35 void LLVMAddConstantMergePass(LLVMPassManagerRef PM);
37 /** See llvm::createDeadArgEliminationPass function. */
38 void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM);
40 /** See llvm::createFunctionAttrsPass function. */
41 void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM);
43 /** See llvm::createFunctionInliningPass function. */
44 void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM);
46 /** See llvm::createAlwaysInlinerPass function. */
47 void LLVMAddAlwaysInlinerPass(LLVMPassManagerRef PM);
49 /** See llvm::createGlobalDCEPass function. */
50 void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM);
52 /** See llvm::createGlobalOptimizerPass function. */
53 void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM);
55 /** See llvm::createIPConstantPropagationPass function. */
56 void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM);
58 /** See llvm::createPruneEHPass function. */
59 void LLVMAddPruneEHPass(LLVMPassManagerRef PM);
61 /** See llvm::createIPSCCPPass function. */
62 void LLVMAddIPSCCPPass(LLVMPassManagerRef PM);
64 /** See llvm::createInternalizePass function. */
65 void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain);
67 /** See llvm::createStripDeadPrototypesPass function. */
68 void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM);
70 /** See llvm::createStripSymbolsPass function. */
71 void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM);
79 #endif /* defined(__cplusplus) */