1 /*===-- Scalar.h - Scalar Transformation Library 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 libLLVMScalarOpts.a, which *|
11 |* implements various scalar transformations of the LLVM IR. *|
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. *|
17 \*===----------------------------------------------------------------------===*/
19 #ifndef LLVM_C_TRANSFORMS_SCALAR_H
20 #define LLVM_C_TRANSFORMS_SCALAR_H
22 #include "llvm-c/Core.h"
28 /** See llvm::createAggressiveDCEPass function. */
29 void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM
);
31 /** See llvm::createCFGSimplificationPass function. */
32 void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM
);
34 /** See llvm::createCondPropagationPass function. */
35 void LLVMAddCondPropagationPass(LLVMPassManagerRef PM
);
37 /** See llvm::createDeadStoreEliminationPass function. */
38 void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM
);
40 /** See llvm::createGVNPass function. */
41 void LLVMAddGVNPass(LLVMPassManagerRef PM
);
43 /** See llvm::createIndVarSimplifyPass function. */
44 void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM
);
46 /** See llvm::createInstructionCombiningPass function. */
47 void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM
);
49 /** See llvm::createJumpThreadingPass function. */
50 void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM
);
52 /** See llvm::createLICMPass function. */
53 void LLVMAddLICMPass(LLVMPassManagerRef PM
);
55 /** See llvm::createLoopDeletionPass function. */
56 void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM
);
58 /** See llvm::createLoopIndexSplitPass function. */
59 void LLVMAddLoopIndexSplitPass(LLVMPassManagerRef PM
);
61 /** See llvm::createLoopRotatePass function. */
62 void LLVMAddLoopRotatePass(LLVMPassManagerRef PM
);
64 /** See llvm::createLoopUnrollPass function. */
65 void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM
);
67 /** See llvm::createLoopUnswitchPass function. */
68 void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM
);
70 /** See llvm::createMemCpyOptPass function. */
71 void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM
);
73 /** See llvm::createPromoteMemoryToRegisterPass function. */
74 void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM
);
76 /** See llvm::createReassociatePass function. */
77 void LLVMAddReassociatePass(LLVMPassManagerRef PM
);
79 /** See llvm::createSCCPPass function. */
80 void LLVMAddSCCPPass(LLVMPassManagerRef PM
);
82 /** See llvm::createScalarReplAggregatesPass function. */
83 void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM
);
85 /** See llvm::createSimplifyLibCallsPass function. */
86 void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM
);
88 /** See llvm::createTailCallEliminationPass function. */
89 void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM
);
91 /** See llvm::createConstantPropagationPass function. */
92 void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM
);
94 /** See llvm::demotePromoteMemoryToRegisterPass function. */
95 void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM
);
99 #endif /* defined(__cplusplus) */