00e8c35102431254a0b93bc7994ef54a4241476e
[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 /** See llvm::createConstantPropagationPass function. */
29 void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM);
30
31 /** See llvm::createInstructionCombiningPass function. */
32 void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM);
33
34 /** See llvm::createReassociatePass function. */
35 void LLVMAddReassociatePass(LLVMPassManagerRef PM);
36
37 /** See llvm::createGVNPass function. */
38 void LLVMAddGVNPass(LLVMPassManagerRef PM);
39
40 /** See llvm::createCFGSimplificationPass function. */
41 void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM);
42
43 #ifdef __cplusplus
44 }
45 #endif /* defined(__cplusplus) */
46
47 #endif