blob: 731597c4fe43bc0819d92124122b0f3b324b991d [file] [log] [blame]
Chris Lattner25a89992009-03-06 16:52:18 +00001/*===-- 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
25extern "C" {
26#endif
27
28/** See llvm::createArgumentPromotionPass function. */
29void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM);
30
31/** See llvm::createConstantMergePass function. */
32void LLVMAddConstantMergePass(LLVMPassManagerRef PM);
33
34/** See llvm::createDeadArgEliminationPass function. */
35void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM);
36
37/** See llvm::createDeadTypeEliminationPass function. */
38void LLVMAddDeadTypeEliminationPass(LLVMPassManagerRef PM);
39
40/** See llvm::createFunctionAttrsPass function. */
41void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM);
42
43/** See llvm::createFunctionInliningPass function. */
44void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM);
45
46/** See llvm::createGlobalDCEPass function. */
47void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM);
48
49/** See llvm::createGlobalOptimizerPass function. */
50void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM);
51
52/** See llvm::createIPConstantPropagationPass function. */
53void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM);
54
55/** See llvm::createLowerSetJmpPass function. */
56void LLVMAddLowerSetJmpPass(LLVMPassManagerRef PM);
57
58/** See llvm::createPruneEHPass function. */
59void LLVMAddPruneEHPass(LLVMPassManagerRef PM);
60
61/** See llvm::createRaiseAllocationsPass function. */
62void LLVMAddRaiseAllocationsPass(LLVMPassManagerRef PM);
63
64/** See llvm::createStripDeadPrototypesPass function. */
65void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM);
66
67/** See llvm::createStripSymbolsPass function. */
68void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM);
69
70#ifdef __cplusplus
71}
72#endif /* defined(__cplusplus) */
73
74#endif