Chris Lattner | 25a8999 | 2009-03-06 16:52:18 +0000 | [diff] [blame^] | 1 | /*===-- Scalar.h - Scalar Transformation Library C Interface ----*- 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 declares the C interface to libLLVMScalarOpts.a, which *| |
| 11 | |* implements various scalar transformations of the LLVM IR. *| |
| 12 | |* *| |
| 13 | |* Many exotic languages can interoperate with C code but have a harder time *| |
| 14 | |* with C++ due to name mangling. So in addition to C, this interface enables *| |
| 15 | |* tools written in such languages. *| |
| 16 | |* *| |
| 17 | \*===----------------------------------------------------------------------===*/ |
| 18 | |
| 19 | #ifndef LLVM_C_TRANSFORMS_SCALAR_H |
| 20 | #define LLVM_C_TRANSFORMS_SCALAR_H |
| 21 | |
| 22 | #include "llvm-c/Core.h" |
| 23 | |
| 24 | #ifdef __cplusplus |
| 25 | extern "C" { |
| 26 | #endif |
| 27 | |
| 28 | /** See llvm::createArgumentPromotionPass function. */ |
| 29 | void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM); |
| 30 | |
| 31 | /** See llvm::createConstantMergePass function. */ |
| 32 | void LLVMAddConstantMergePass(LLVMPassManagerRef PM); |
| 33 | |
| 34 | /** See llvm::createDeadArgEliminationPass function. */ |
| 35 | void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM); |
| 36 | |
| 37 | /** See llvm::createDeadTypeEliminationPass function. */ |
| 38 | void LLVMAddDeadTypeEliminationPass(LLVMPassManagerRef PM); |
| 39 | |
| 40 | /** See llvm::createFunctionAttrsPass function. */ |
| 41 | void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM); |
| 42 | |
| 43 | /** See llvm::createFunctionInliningPass function. */ |
| 44 | void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM); |
| 45 | |
| 46 | /** See llvm::createGlobalDCEPass function. */ |
| 47 | void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM); |
| 48 | |
| 49 | /** See llvm::createGlobalOptimizerPass function. */ |
| 50 | void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM); |
| 51 | |
| 52 | /** See llvm::createIPConstantPropagationPass function. */ |
| 53 | void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM); |
| 54 | |
| 55 | /** See llvm::createLowerSetJmpPass function. */ |
| 56 | void LLVMAddLowerSetJmpPass(LLVMPassManagerRef PM); |
| 57 | |
| 58 | /** See llvm::createPruneEHPass function. */ |
| 59 | void LLVMAddPruneEHPass(LLVMPassManagerRef PM); |
| 60 | |
| 61 | /** See llvm::createRaiseAllocationsPass function. */ |
| 62 | void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM); |
| 63 | |
| 64 | /** See llvm::createStripDeadPrototypesPass function. */ |
| 65 | void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM); |
| 66 | |
| 67 | /** See llvm::createStripSymbolsPass function. */ |
| 68 | void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM); |
| 69 | |
| 70 | #ifdef __cplusplus |
| 71 | } |
| 72 | #endif /* defined(__cplusplus) */ |
| 73 | |
| 74 | #endif |