Chris Lattner | a5951827 | 2009-03-06 16:54:19 +0000 | [diff] [blame] | 1 | /*===-- IPO.h - Interprocedural Transformations C Interface -----*- C++ -*-===*\ |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 2 | |* *| |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [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 *| |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 7 | |* *| |
| 8 | |*===----------------------------------------------------------------------===*| |
| 9 | |* *| |
Chris Lattner | a5951827 | 2009-03-06 16:54:19 +0000 | [diff] [blame] | 10 | |* This header declares the C interface to libLLVMIPO.a, which implements *| |
| 11 | |* various interprocedural transformations of the LLVM IR. *| |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 12 | |* *| |
| 13 | \*===----------------------------------------------------------------------===*/ |
| 14 | |
Chris Lattner | a5951827 | 2009-03-06 16:54:19 +0000 | [diff] [blame] | 15 | #ifndef LLVM_C_TRANSFORMS_IPO_H |
| 16 | #define LLVM_C_TRANSFORMS_IPO_H |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 17 | |
Eric Christopher | a6b9600 | 2015-12-18 01:46:52 +0000 | [diff] [blame] | 18 | #include "llvm-c/Types.h" |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 19 | |
| 20 | #ifdef __cplusplus |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 24 | /** |
| 25 | * @defgroup LLVMCTransformsIPO Interprocedural transformations |
| 26 | * @ingroup LLVMCTransforms |
| 27 | * |
| 28 | * @{ |
| 29 | */ |
| 30 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 31 | /** See llvm::createArgumentPromotionPass function. */ |
| 32 | void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM); |
| 33 | |
| 34 | /** See llvm::createConstantMergePass function. */ |
| 35 | void LLVMAddConstantMergePass(LLVMPassManagerRef PM); |
| 36 | |
Aditya Kumar | a6d9d31 | 2019-09-29 16:06:22 +0000 | [diff] [blame] | 37 | /** See llvm::createMergeFunctionsPass function. */ |
| 38 | void LLVMAddMergeFunctionsPass(LLVMPassManagerRef PM); |
| 39 | |
Matthew Simpson | cb58558 | 2017-10-25 13:40:08 +0000 | [diff] [blame] | 40 | /** See llvm::createCalledValuePropagationPass function. */ |
| 41 | void LLVMAddCalledValuePropagationPass(LLVMPassManagerRef PM); |
| 42 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 43 | /** See llvm::createDeadArgEliminationPass function. */ |
| 44 | void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM); |
| 45 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 46 | /** See llvm::createFunctionAttrsPass function. */ |
| 47 | void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM); |
| 48 | |
| 49 | /** See llvm::createFunctionInliningPass function. */ |
| 50 | void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM); |
| 51 | |
Rafael Espindola | b84dc6b | 2011-07-26 15:23:23 +0000 | [diff] [blame] | 52 | /** See llvm::createAlwaysInlinerPass function. */ |
| 53 | void LLVMAddAlwaysInlinerPass(LLVMPassManagerRef PM); |
| 54 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 55 | /** See llvm::createGlobalDCEPass function. */ |
| 56 | void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM); |
| 57 | |
| 58 | /** See llvm::createGlobalOptimizerPass function. */ |
| 59 | void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM); |
| 60 | |
| 61 | /** See llvm::createIPConstantPropagationPass function. */ |
| 62 | void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM); |
| 63 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 64 | /** See llvm::createPruneEHPass function. */ |
| 65 | void LLVMAddPruneEHPass(LLVMPassManagerRef PM); |
| 66 | |
Wesley Peck | a2ca3fa | 2010-04-09 20:43:20 +0000 | [diff] [blame] | 67 | /** See llvm::createIPSCCPPass function. */ |
| 68 | void LLVMAddIPSCCPPass(LLVMPassManagerRef PM); |
| 69 | |
| 70 | /** See llvm::createInternalizePass function. */ |
| 71 | void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain); |
| 72 | |
Robert Widmann | fcf3c55 | 2019-07-23 04:56:44 +0000 | [diff] [blame] | 73 | /** |
| 74 | * Create and add the internalize pass to the given pass manager with the |
| 75 | * provided preservation callback. |
| 76 | * |
| 77 | * The context parameter is forwarded to the callback on each invocation. |
| 78 | * As such, it is the responsibility of the caller to extend its lifetime |
| 79 | * until execution of this pass has finished. |
| 80 | * |
| 81 | * @see llvm::createInternalizePass function. |
| 82 | */ |
| 83 | void LLVMAddInternalizePassWithMustPreservePredicate( |
| 84 | LLVMPassManagerRef PM, |
| 85 | void *Context, |
| 86 | LLVMBool (*MustPreserve)(LLVMValueRef, void *)); |
| 87 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 88 | /** See llvm::createStripDeadPrototypesPass function. */ |
| 89 | void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM); |
| 90 | |
| 91 | /** See llvm::createStripSymbolsPass function. */ |
| 92 | void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM); |
| 93 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 94 | /** |
| 95 | * @} |
| 96 | */ |
| 97 | |
Chris Lattner | e48f897 | 2009-03-06 16:52:18 +0000 | [diff] [blame] | 98 | #ifdef __cplusplus |
| 99 | } |
| 100 | #endif /* defined(__cplusplus) */ |
| 101 | |
| 102 | #endif |