LLVM  3.7.0
c/Transforms/Scalar.h
Go to the documentation of this file.
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. */
37 
38 /** See llvm::createBitTrackingDCEPass function. */
40 
41 /** See llvm::createAlignmentFromAssumptionsPass function. */
43 
44 /** See llvm::createCFGSimplificationPass function. */
46 
47 /** See llvm::createDeadStoreEliminationPass function. */
49 
50 /** See llvm::createScalarizerPass function. */
52 
53 /** See llvm::createMergedLoadStoreMotionPass function. */
55 
56 /** See llvm::createGVNPass function. */
58 
59 /** See llvm::createIndVarSimplifyPass function. */
61 
62 /** See llvm::createInstructionCombiningPass function. */
64 
65 /** See llvm::createJumpThreadingPass function. */
67 
68 /** See llvm::createLICMPass function. */
70 
71 /** See llvm::createLoopDeletionPass function. */
73 
74 /** See llvm::createLoopIdiomPass function */
76 
77 /** See llvm::createLoopRotatePass function. */
79 
80 /** See llvm::createLoopRerollPass function. */
82 
83 /** See llvm::createLoopUnrollPass function. */
85 
86 /** See llvm::createLoopUnswitchPass function. */
88 
89 /** See llvm::createMemCpyOptPass function. */
91 
92 /** See llvm::createPartiallyInlineLibCallsPass function. */
94 
95 /** See llvm::createLowerSwitchPass function. */
97 
98 /** See llvm::createPromoteMemoryToRegisterPass function. */
100 
101 /** See llvm::createReassociatePass function. */
103 
104 /** See llvm::createSCCPPass function. */
106 
107 /** See llvm::createScalarReplAggregatesPass function. */
109 
110 /** See llvm::createScalarReplAggregatesPass function. */
112 
113 /** See llvm::createScalarReplAggregatesPass function. */
115  int Threshold);
116 
117 /** See llvm::createSimplifyLibCallsPass function. */
119 
120 /** See llvm::createTailCallEliminationPass function. */
122 
123 /** See llvm::createConstantPropagationPass function. */
125 
126 /** See llvm::demotePromoteMemoryToRegisterPass function. */
128 
129 /** See llvm::createVerifierPass function. */
131 
132 /** See llvm::createCorrelatedValuePropagationPass function */
134 
135 /** See llvm::createEarlyCSEPass function */
137 
138 /** See llvm::createLowerExpectIntrinsicPass function */
140 
141 /** See llvm::createTypeBasedAliasAnalysisPass function */
143 
144 /** See llvm::createScopedNoAliasAAPass function */
146 
147 /** See llvm::createBasicAliasAnalysisPass function */
149 
150 /**
151  * @}
152  */
153 
154 #ifdef __cplusplus
155 }
156 #endif /* defined(__cplusplus) */
157 
158 #endif
void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM)
See llvm::createJumpThreadingPass function.
Definition: Scalar.cpp:130
void LLVMAddGVNPass(LLVMPassManagerRef PM)
See llvm::createGVNPass function.
Definition: Scalar.cpp:114
void LLVMAddLICMPass(LLVMPassManagerRef PM)
See llvm::createLICMPass function.
Definition: Scalar.cpp:134
void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM)
See llvm::createSimplifyLibCallsPass function.
Definition: Scalar.cpp:199
void LLVMAddTypeBasedAliasAnalysisPass(LLVMPassManagerRef PM)
See llvm::createTypeBasedAliasAnalysisPass function.
Definition: Scalar.cpp:227
void LLVMAddReassociatePass(LLVMPassManagerRef PM)
See llvm::createReassociatePass function.
Definition: Scalar.cpp:178
void LLVMAddLowerSwitchPass(LLVMPassManagerRef PM)
See llvm::createLowerSwitchPass function.
Definition: Scalar.cpp:170
void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM)
See llvm::createConstantPropagationPass function.
Definition: Scalar.cpp:207
void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM)
See llvm::createPromoteMemoryToRegisterPass function.
Definition: Scalar.cpp:174
void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM)
See llvm::createLoopUnrollPass function.
Definition: Scalar.cpp:154
void LLVMAddScalarizerPass(LLVMPassManagerRef PM)
See llvm::createScalarizerPass function.
Definition: Scalar.cpp:110
void LLVMAddScalarReplAggregatesPassSSA(LLVMPassManagerRef PM)
See llvm::createScalarReplAggregatesPass function.
Definition: Scalar.cpp:190
void LLVMAddMergedLoadStoreMotionPass(LLVMPassManagerRef PM)
See llvm::createMergedLoadStoreMotionPass function.
Definition: Scalar.cpp:118
void LLVMAddScopedNoAliasAAPass(LLVMPassManagerRef PM)
See llvm::createScopedNoAliasAAPass function.
Definition: Scalar.cpp:231
void LLVMAddLoopRerollPass(LLVMPassManagerRef PM)
See llvm::createLoopRerollPass function.
Definition: Scalar.cpp:150
void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM)
See llvm::createDeadStoreEliminationPass function.
Definition: Scalar.cpp:106
void LLVMAddAlignmentFromAssumptionsPass(LLVMPassManagerRef PM)
See llvm::createAlignmentFromAssumptionsPass function.
Definition: Scalar.cpp:98
void LLVMAddLoopRotatePass(LLVMPassManagerRef PM)
See llvm::createLoopRotatePass function.
Definition: Scalar.cpp:146
void LLVMAddScalarReplAggregatesPassWithThreshold(LLVMPassManagerRef PM, int Threshold)
See llvm::createScalarReplAggregatesPass function.
Definition: Scalar.cpp:194
void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM)
See llvm::createLoopDeletionPass function.
Definition: Scalar.cpp:138
void LLVMAddEarlyCSEPass(LLVMPassManagerRef PM)
See llvm::createEarlyCSEPass function.
Definition: Scalar.cpp:223
void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM)
See llvm::createScalarReplAggregatesPass function.
Definition: Scalar.cpp:186
void LLVMAddLoopIdiomPass(LLVMPassManagerRef PM)
See llvm::createLoopIdiomPass function.
Definition: Scalar.cpp:142
void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM)
See llvm::createInstructionCombiningPass function.
Definition: Scalar.cpp:126
void LLVMAddSCCPPass(LLVMPassManagerRef PM)
See llvm::createSCCPPass function.
Definition: Scalar.cpp:182
void LLVMAddVerifierPass(LLVMPassManagerRef PM)
See llvm::createVerifierPass function.
Definition: Scalar.cpp:215
void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM)
See llvm::demotePromoteMemoryToRegisterPass function.
Definition: Scalar.cpp:211
void LLVMAddBasicAliasAnalysisPass(LLVMPassManagerRef PM)
See llvm::createBasicAliasAnalysisPass function.
Definition: Scalar.cpp:235
void LLVMAddBitTrackingDCEPass(LLVMPassManagerRef PM)
See llvm::createBitTrackingDCEPass function.
Definition: Scalar.cpp:94
struct LLVMOpaquePassManager * LLVMPassManagerRef
Definition: Core.h:116
void LLVMAddCorrelatedValuePropagationPass(LLVMPassManagerRef PM)
See llvm::createCorrelatedValuePropagationPass function.
Definition: Scalar.cpp:219
void LLVMAddLowerExpectIntrinsicPass(LLVMPassManagerRef PM)
See llvm::createLowerExpectIntrinsicPass function.
Definition: Scalar.cpp:239
void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM)
See llvm::createIndVarSimplifyPass function.
Definition: Scalar.cpp:122
void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM)
See llvm::createTailCallEliminationPass function.
Definition: Scalar.cpp:203
void LLVMAddPartiallyInlineLibCallsPass(LLVMPassManagerRef PM)
See llvm::createPartiallyInlineLibCallsPass function.
Definition: Scalar.cpp:166
static int const Threshold
TODO: Write a new FunctionPass AliasAnalysis so that it can keep a cache.
void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM)
See llvm::createLoopUnswitchPass function.
Definition: Scalar.cpp:158
void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM)
See llvm::createCFGSimplificationPass function.
Definition: Scalar.cpp:102
void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM)
See llvm::createMemCpyOptPass function.
Definition: Scalar.cpp:162
void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM)
See llvm::createAggressiveDCEPass function.
Definition: Scalar.cpp:90