LLVM
4.0.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
llvm.src
include
llvm-c
Transforms
c/Transforms/IPO.h
Go to the documentation of this file.
1
/*===-- IPO.h - Interprocedural Transformations 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 libLLVMIPO.a, which implements *|
11
|* various interprocedural transformations of the LLVM IR. *|
12
|* *|
13
\*===----------------------------------------------------------------------===*/
14
15
#ifndef LLVM_C_TRANSFORMS_IPO_H
16
#define LLVM_C_TRANSFORMS_IPO_H
17
18
#include "
llvm-c/Types.h
"
19
20
#ifdef __cplusplus
21
extern
"C"
{
22
#endif
23
24
/**
25
* @defgroup LLVMCTransformsIPO Interprocedural transformations
26
* @ingroup LLVMCTransforms
27
*
28
* @{
29
*/
30
31
/** See llvm::createArgumentPromotionPass function. */
32
void
LLVMAddArgumentPromotionPass
(
LLVMPassManagerRef
PM);
33
34
/** See llvm::createConstantMergePass function. */
35
void
LLVMAddConstantMergePass
(
LLVMPassManagerRef
PM);
36
37
/** See llvm::createDeadArgEliminationPass function. */
38
void
LLVMAddDeadArgEliminationPass
(
LLVMPassManagerRef
PM);
39
40
/** See llvm::createFunctionAttrsPass function. */
41
void
LLVMAddFunctionAttrsPass
(
LLVMPassManagerRef
PM);
42
43
/** See llvm::createFunctionInliningPass function. */
44
void
LLVMAddFunctionInliningPass
(
LLVMPassManagerRef
PM);
45
46
/** See llvm::createAlwaysInlinerPass function. */
47
void
LLVMAddAlwaysInlinerPass
(
LLVMPassManagerRef
PM);
48
49
/** See llvm::createGlobalDCEPass function. */
50
void
LLVMAddGlobalDCEPass
(
LLVMPassManagerRef
PM);
51
52
/** See llvm::createGlobalOptimizerPass function. */
53
void
LLVMAddGlobalOptimizerPass
(
LLVMPassManagerRef
PM);
54
55
/** See llvm::createIPConstantPropagationPass function. */
56
void
LLVMAddIPConstantPropagationPass
(
LLVMPassManagerRef
PM);
57
58
/** See llvm::createPruneEHPass function. */
59
void
LLVMAddPruneEHPass
(
LLVMPassManagerRef
PM);
60
61
/** See llvm::createIPSCCPPass function. */
62
void
LLVMAddIPSCCPPass
(
LLVMPassManagerRef
PM);
63
64
/** See llvm::createInternalizePass function. */
65
void
LLVMAddInternalizePass
(
LLVMPassManagerRef
,
unsigned
AllButMain);
66
67
/** See llvm::createStripDeadPrototypesPass function. */
68
void
LLVMAddStripDeadPrototypesPass
(
LLVMPassManagerRef
PM);
69
70
/** See llvm::createStripSymbolsPass function. */
71
void
LLVMAddStripSymbolsPass
(
LLVMPassManagerRef
PM);
72
73
/**
74
* @}
75
*/
76
77
#ifdef __cplusplus
78
}
79
#endif
/* defined(__cplusplus) */
80
81
#endif
LLVMAddGlobalDCEPass
void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM)
See llvm::createGlobalDCEPass function.
Definition:
IPO.cpp:90
LLVMAddPruneEHPass
void LLVMAddPruneEHPass(LLVMPassManagerRef PM)
See llvm::createPruneEHPass function.
Definition:
IPO.cpp:102
LLVMAddAlwaysInlinerPass
void LLVMAddAlwaysInlinerPass(LLVMPassManagerRef PM)
See llvm::createAlwaysInlinerPass function.
Definition:
IPO.cpp:86
LLVMAddIPSCCPPass
void LLVMAddIPSCCPPass(LLVMPassManagerRef PM)
See llvm::createIPSCCPPass function.
Definition:
IPO.cpp:106
LLVMAddConstantMergePass
void LLVMAddConstantMergePass(LLVMPassManagerRef PM)
See llvm::createConstantMergePass function.
Definition:
IPO.cpp:70
LLVMAddDeadArgEliminationPass
void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM)
See llvm::createDeadArgEliminationPass function.
Definition:
IPO.cpp:74
LLVMAddInternalizePass
void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain)
See llvm::createInternalizePass function.
Definition:
IPO.cpp:110
LLVMAddIPConstantPropagationPass
void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM)
See llvm::createIPConstantPropagationPass function.
Definition:
IPO.cpp:98
LLVMPassManagerRef
struct LLVMOpaquePassManager * LLVMPassManagerRef
Definition:
c/Types.h:100
LLVMAddArgumentPromotionPass
void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM)
See llvm::createArgumentPromotionPass function.
Definition:
IPO.cpp:66
LLVMAddFunctionInliningPass
void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM)
See llvm::createFunctionInliningPass function.
Definition:
IPO.cpp:82
LLVMAddStripSymbolsPass
void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM)
See llvm::createStripSymbolsPass function.
Definition:
IPO.cpp:121
LLVMAddGlobalOptimizerPass
void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM)
See llvm::createGlobalOptimizerPass function.
Definition:
IPO.cpp:94
LLVMAddFunctionAttrsPass
void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM)
See llvm::createFunctionAttrsPass function.
Definition:
IPO.cpp:78
LLVMAddStripDeadPrototypesPass
void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM)
See llvm::createStripDeadPrototypesPass function.
Definition:
IPO.cpp:117
Types.h
Generated on Wed Mar 8 2017 17:11:16 for LLVM by
1.8.6