Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | /*===-- Scalar.h - Scalar Transformation Library C Interface ----*- C++ -*-===*\ |
| 2 | |* *| |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame^] | 3 | |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| |
| 4 | |* Exceptions. *| |
| 5 | |* See https://llvm.org/LICENSE.txt for license information. *| |
| 6 | |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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/Types.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::createBitTrackingDCEPass function. */ |
| 39 | void LLVMAddBitTrackingDCEPass(LLVMPassManagerRef PM); |
| 40 | |
| 41 | /** See llvm::createAlignmentFromAssumptionsPass function. */ |
| 42 | void LLVMAddAlignmentFromAssumptionsPass(LLVMPassManagerRef PM); |
| 43 | |
| 44 | /** See llvm::createCFGSimplificationPass function. */ |
| 45 | void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM); |
| 46 | |
| 47 | /** See llvm::createDeadStoreEliminationPass function. */ |
| 48 | void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM); |
| 49 | |
| 50 | /** See llvm::createScalarizerPass function. */ |
| 51 | void LLVMAddScalarizerPass(LLVMPassManagerRef PM); |
| 52 | |
| 53 | /** See llvm::createMergedLoadStoreMotionPass function. */ |
| 54 | void LLVMAddMergedLoadStoreMotionPass(LLVMPassManagerRef PM); |
| 55 | |
| 56 | /** See llvm::createGVNPass function. */ |
| 57 | void LLVMAddGVNPass(LLVMPassManagerRef PM); |
| 58 | |
| 59 | /** See llvm::createGVNPass function. */ |
| 60 | void LLVMAddNewGVNPass(LLVMPassManagerRef PM); |
| 61 | |
| 62 | /** See llvm::createIndVarSimplifyPass function. */ |
| 63 | void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM); |
| 64 | |
| 65 | /** See llvm::createInstructionCombiningPass function. */ |
| 66 | void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM); |
| 67 | |
| 68 | /** See llvm::createJumpThreadingPass function. */ |
| 69 | void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM); |
| 70 | |
| 71 | /** See llvm::createLICMPass function. */ |
| 72 | void LLVMAddLICMPass(LLVMPassManagerRef PM); |
| 73 | |
| 74 | /** See llvm::createLoopDeletionPass function. */ |
| 75 | void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM); |
| 76 | |
| 77 | /** See llvm::createLoopIdiomPass function */ |
| 78 | void LLVMAddLoopIdiomPass(LLVMPassManagerRef PM); |
| 79 | |
| 80 | /** See llvm::createLoopRotatePass function. */ |
| 81 | void LLVMAddLoopRotatePass(LLVMPassManagerRef PM); |
| 82 | |
| 83 | /** See llvm::createLoopRerollPass function. */ |
| 84 | void LLVMAddLoopRerollPass(LLVMPassManagerRef PM); |
| 85 | |
| 86 | /** See llvm::createLoopUnrollPass function. */ |
| 87 | void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM); |
| 88 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 89 | /** See llvm::createLoopUnrollAndJamPass function. */ |
| 90 | void LLVMAddLoopUnrollAndJamPass(LLVMPassManagerRef PM); |
| 91 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 92 | /** See llvm::createLoopUnswitchPass function. */ |
| 93 | void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM); |
| 94 | |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 95 | /** See llvm::createLowerAtomicPass function. */ |
| 96 | void LLVMAddLowerAtomicPass(LLVMPassManagerRef PM); |
| 97 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 98 | /** See llvm::createMemCpyOptPass function. */ |
| 99 | void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM); |
| 100 | |
| 101 | /** See llvm::createPartiallyInlineLibCallsPass function. */ |
| 102 | void LLVMAddPartiallyInlineLibCallsPass(LLVMPassManagerRef PM); |
| 103 | |
| 104 | /** See llvm::createReassociatePass function. */ |
| 105 | void LLVMAddReassociatePass(LLVMPassManagerRef PM); |
| 106 | |
| 107 | /** See llvm::createSCCPPass function. */ |
| 108 | void LLVMAddSCCPPass(LLVMPassManagerRef PM); |
| 109 | |
| 110 | /** See llvm::createSROAPass function. */ |
| 111 | void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM); |
| 112 | |
| 113 | /** See llvm::createSROAPass function. */ |
| 114 | void LLVMAddScalarReplAggregatesPassSSA(LLVMPassManagerRef PM); |
| 115 | |
| 116 | /** See llvm::createSROAPass function. */ |
| 117 | void LLVMAddScalarReplAggregatesPassWithThreshold(LLVMPassManagerRef PM, |
| 118 | int Threshold); |
| 119 | |
| 120 | /** See llvm::createSimplifyLibCallsPass function. */ |
| 121 | void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM); |
| 122 | |
| 123 | /** See llvm::createTailCallEliminationPass function. */ |
| 124 | void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM); |
| 125 | |
| 126 | /** See llvm::createConstantPropagationPass function. */ |
| 127 | void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM); |
| 128 | |
| 129 | /** See llvm::demotePromoteMemoryToRegisterPass function. */ |
| 130 | void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM); |
| 131 | |
| 132 | /** See llvm::createVerifierPass function. */ |
| 133 | void LLVMAddVerifierPass(LLVMPassManagerRef PM); |
| 134 | |
| 135 | /** See llvm::createCorrelatedValuePropagationPass function */ |
| 136 | void LLVMAddCorrelatedValuePropagationPass(LLVMPassManagerRef PM); |
| 137 | |
| 138 | /** See llvm::createEarlyCSEPass function */ |
| 139 | void LLVMAddEarlyCSEPass(LLVMPassManagerRef PM); |
| 140 | |
| 141 | /** See llvm::createEarlyCSEPass function */ |
| 142 | void LLVMAddEarlyCSEMemSSAPass(LLVMPassManagerRef PM); |
| 143 | |
| 144 | /** See llvm::createLowerExpectIntrinsicPass function */ |
| 145 | void LLVMAddLowerExpectIntrinsicPass(LLVMPassManagerRef PM); |
| 146 | |
| 147 | /** See llvm::createTypeBasedAliasAnalysisPass function */ |
| 148 | void LLVMAddTypeBasedAliasAnalysisPass(LLVMPassManagerRef PM); |
| 149 | |
| 150 | /** See llvm::createScopedNoAliasAAPass function */ |
| 151 | void LLVMAddScopedNoAliasAAPass(LLVMPassManagerRef PM); |
| 152 | |
| 153 | /** See llvm::createBasicAliasAnalysisPass function */ |
| 154 | void LLVMAddBasicAliasAnalysisPass(LLVMPassManagerRef PM); |
| 155 | |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame] | 156 | /** See llvm::createUnifyFunctionExitNodesPass function */ |
| 157 | void LLVMAddUnifyFunctionExitNodesPass(LLVMPassManagerRef PM); |
| 158 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 159 | /** |
| 160 | * @} |
| 161 | */ |
| 162 | |
| 163 | #ifdef __cplusplus |
| 164 | } |
| 165 | #endif /* defined(__cplusplus) */ |
| 166 | |
| 167 | #endif |