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 | |
Chris Lattner | 25a8999 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 28 | /** See llvm::createAggressiveDCEPass function. */ |
| 29 | void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM); |
Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +0000 | [diff] [blame] | 30 | |
Chris Lattner | 25a8999 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 31 | /** See llvm::createCFGSimplificationPass function. */ |
| 32 | void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM); |
Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +0000 | [diff] [blame] | 33 | |
Chris Lattner | 25a8999 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 34 | /** See llvm::createDeadStoreEliminationPass function. */ |
| 35 | void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM); |
Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +0000 | [diff] [blame] | 36 | |
| 37 | /** See llvm::createGVNPass function. */ |
| 38 | void LLVMAddGVNPass(LLVMPassManagerRef PM); |
| 39 | |
Chris Lattner | 25a8999 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 40 | /** See llvm::createIndVarSimplifyPass function. */ |
| 41 | void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM); |
| 42 | |
| 43 | /** See llvm::createInstructionCombiningPass function. */ |
| 44 | void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM); |
| 45 | |
| 46 | /** See llvm::createJumpThreadingPass function. */ |
| 47 | void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM); |
| 48 | |
| 49 | /** See llvm::createLICMPass function. */ |
| 50 | void LLVMAddLICMPass(LLVMPassManagerRef PM); |
| 51 | |
| 52 | /** See llvm::createLoopDeletionPass function. */ |
| 53 | void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM); |
| 54 | |
| 55 | /** See llvm::createLoopIndexSplitPass function. */ |
| 56 | void LLVMAddLoopIndexSplitPass(LLVMPassManagerRef PM); |
| 57 | |
| 58 | /** See llvm::createLoopRotatePass function. */ |
| 59 | void LLVMAddLoopRotatePass(LLVMPassManagerRef PM); |
| 60 | |
| 61 | /** See llvm::createLoopUnrollPass function. */ |
| 62 | void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM); |
| 63 | |
| 64 | /** See llvm::createLoopUnswitchPass function. */ |
| 65 | void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM); |
| 66 | |
| 67 | /** See llvm::createMemCpyOptPass function. */ |
| 68 | void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM); |
| 69 | |
| 70 | /** See llvm::createPromoteMemoryToRegisterPass function. */ |
| 71 | void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM); |
| 72 | |
| 73 | /** See llvm::createReassociatePass function. */ |
| 74 | void LLVMAddReassociatePass(LLVMPassManagerRef PM); |
| 75 | |
| 76 | /** See llvm::createSCCPPass function. */ |
| 77 | void LLVMAddSCCPPass(LLVMPassManagerRef PM); |
| 78 | |
| 79 | /** See llvm::createScalarReplAggregatesPass function. */ |
| 80 | void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM); |
| 81 | |
| 82 | /** See llvm::createSimplifyLibCallsPass function. */ |
| 83 | void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM); |
| 84 | |
| 85 | /** See llvm::createTailCallEliminationPass function. */ |
| 86 | void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM); |
| 87 | |
| 88 | /** See llvm::createConstantPropagationPass function. */ |
| 89 | void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM); |
| 90 | |
| 91 | /** See llvm::demotePromoteMemoryToRegisterPass function. */ |
| 92 | void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM); |
Gordon Henriksen | 47f20aa | 2008-03-16 16:32:40 +0000 | [diff] [blame] | 93 | |
| 94 | #ifdef __cplusplus |
| 95 | } |
| 96 | #endif /* defined(__cplusplus) */ |
| 97 | |
| 98 | #endif |