Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +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::createConstantPropagationPass function. */ |
| 29 | void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM); |
| 30 | |
| 31 | /** See llvm::createInstructionCombiningPass function. */ |
| 32 | void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM); |
| 33 | |
Gordon Henriksen | c9da101 | 2008-03-20 17:16:03 +0000 | [diff] [blame] | 34 | /** See llvm::createPromoteMemoryToRegisterPass function. */ |
| 35 | void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM); |
| 36 | |
| 37 | /** See llvm::demotePromoteMemoryToRegisterPass function. */ |
| 38 | void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM); |
| 39 | |
Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +0000 | [diff] [blame] | 40 | /** See llvm::createReassociatePass function. */ |
| 41 | void LLVMAddReassociatePass(LLVMPassManagerRef PM); |
| 42 | |
| 43 | /** See llvm::createGVNPass function. */ |
| 44 | void LLVMAddGVNPass(LLVMPassManagerRef PM); |
| 45 | |
| 46 | /** See llvm::createCFGSimplificationPass function. */ |
| 47 | void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM); |
| 48 | |
| 49 | #ifdef __cplusplus |
| 50 | } |
| 51 | #endif /* defined(__cplusplus) */ |
| 52 | |
| 53 | #endif |