MergedLoadStoreMotion pass
[oota-llvm.git] / include / llvm-c / Transforms / Scalar.h
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 /**
29  * @defgroup LLVMCTransformsScalar Scalar transformations
30  * @ingroup LLVMCTransforms
31  *
32  * @{
33  */
34
35 /** See llvm::createAggressiveDCEPass function. */
36 void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM);
37
38 /** See llvm::createCFGSimplificationPass function. */
39 void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM);
40
41 /** See llvm::createDeadStoreEliminationPass function. */
42 void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM);
43
44 /** See llvm::createScalarizerPass function. */
45 void LLVMAddScalarizerPass(LLVMPassManagerRef PM);
46
47 /** See llvm::createMergedLoadStoreMotionPass function. */
48 void LLVMAddMergedLoadStoreMotionPass(LLVMPassManagerRef PM);
49
50 /** See llvm::createGVNPass function. */
51 void LLVMAddGVNPass(LLVMPassManagerRef PM);
52
53 /** See llvm::createIndVarSimplifyPass function. */
54 void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM);
55
56 /** See llvm::createInstructionCombiningPass function. */
57 void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM);
58
59 /** See llvm::createJumpThreadingPass function. */
60 void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM);
61
62 /** See llvm::createLICMPass function. */
63 void LLVMAddLICMPass(LLVMPassManagerRef PM);
64
65 /** See llvm::createLoopDeletionPass function. */
66 void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM);
67
68 /** See llvm::createLoopIdiomPass function */
69 void LLVMAddLoopIdiomPass(LLVMPassManagerRef PM);
70
71 /** See llvm::createLoopRotatePass function. */
72 void LLVMAddLoopRotatePass(LLVMPassManagerRef PM);
73
74 /** See llvm::createLoopRerollPass function. */
75 void LLVMAddLoopRerollPass(LLVMPassManagerRef PM);
76
77 /** See llvm::createLoopUnrollPass function. */
78 void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM);
79
80 /** See llvm::createLoopUnswitchPass function. */
81 void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM);
82
83 /** See llvm::createMemCpyOptPass function. */
84 void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM);
85
86 /** See llvm::createPartiallyInlineLibCallsPass function. */
87 void LLVMAddPartiallyInlineLibCallsPass(LLVMPassManagerRef PM);
88
89 /** See llvm::createPromoteMemoryToRegisterPass function. */
90 void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM);
91
92 /** See llvm::createReassociatePass function. */
93 void LLVMAddReassociatePass(LLVMPassManagerRef PM);
94
95 /** See llvm::createSCCPPass function. */
96 void LLVMAddSCCPPass(LLVMPassManagerRef PM);
97
98 /** See llvm::createScalarReplAggregatesPass function. */
99 void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM);
100
101 /** See llvm::createScalarReplAggregatesPass function. */
102 void LLVMAddScalarReplAggregatesPassSSA(LLVMPassManagerRef PM);
103
104 /** See llvm::createScalarReplAggregatesPass function. */
105 void LLVMAddScalarReplAggregatesPassWithThreshold(LLVMPassManagerRef PM,
106                                                   int Threshold);
107
108 /** See llvm::createSimplifyLibCallsPass function. */
109 void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM);
110
111 /** See llvm::createTailCallEliminationPass function. */
112 void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM);
113
114 /** See llvm::createConstantPropagationPass function. */
115 void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM);
116
117 /** See llvm::demotePromoteMemoryToRegisterPass function. */
118 void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM);
119
120 /** See llvm::createVerifierPass function. */
121 void LLVMAddVerifierPass(LLVMPassManagerRef PM);
122
123 /** See llvm::createCorrelatedValuePropagationPass function */
124 void LLVMAddCorrelatedValuePropagationPass(LLVMPassManagerRef PM);
125
126 /** See llvm::createEarlyCSEPass function */
127 void LLVMAddEarlyCSEPass(LLVMPassManagerRef PM);
128
129 /** See llvm::createLowerExpectIntrinsicPass function */
130 void LLVMAddLowerExpectIntrinsicPass(LLVMPassManagerRef PM);
131
132 /** See llvm::createTypeBasedAliasAnalysisPass function */
133 void LLVMAddTypeBasedAliasAnalysisPass(LLVMPassManagerRef PM);
134
135 /** See llvm::createBasicAliasAnalysisPass function */
136 void LLVMAddBasicAliasAnalysisPass(LLVMPassManagerRef PM);
137
138 /**
139  * @}
140  */
141
142 #ifdef __cplusplus
143 }
144 #endif /* defined(__cplusplus) */
145
146 #endif