2009-03-07 00:54:19 +08:00
|
|
|
/*===-- IPO.h - Interprocedural Transformations C Interface -----*- C++ -*-===*\
|
2009-03-07 00:52:18 +08:00
|
|
|
|* *|
|
2019-01-19 16:50:56 +08:00
|
|
|
|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
|
|
|
|
|* Exceptions. *|
|
|
|
|
|* See https://llvm.org/LICENSE.txt for license information. *|
|
|
|
|
|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
|
2009-03-07 00:52:18 +08:00
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
2009-03-07 00:54:19 +08:00
|
|
|
|* This header declares the C interface to libLLVMIPO.a, which implements *|
|
|
|
|
|* various interprocedural transformations of the LLVM IR. *|
|
2009-03-07 00:52:18 +08:00
|
|
|
|* *|
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
2009-03-07 00:54:19 +08:00
|
|
|
#ifndef LLVM_C_TRANSFORMS_IPO_H
|
|
|
|
#define LLVM_C_TRANSFORMS_IPO_H
|
2009-03-07 00:52:18 +08:00
|
|
|
|
2015-12-18 09:46:52 +08:00
|
|
|
#include "llvm-c/Types.h"
|
2009-03-07 00:52:18 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-03-21 11:54:29 +08:00
|
|
|
/**
|
|
|
|
* @defgroup LLVMCTransformsIPO Interprocedural transformations
|
|
|
|
* @ingroup LLVMCTransforms
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2009-03-07 00:52:18 +08:00
|
|
|
/** See llvm::createArgumentPromotionPass function. */
|
|
|
|
void LLVMAddArgumentPromotionPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createConstantMergePass function. */
|
|
|
|
void LLVMAddConstantMergePass(LLVMPassManagerRef PM);
|
|
|
|
|
2017-10-25 21:40:08 +08:00
|
|
|
/** See llvm::createCalledValuePropagationPass function. */
|
|
|
|
void LLVMAddCalledValuePropagationPass(LLVMPassManagerRef PM);
|
|
|
|
|
2009-03-07 00:52:18 +08:00
|
|
|
/** See llvm::createDeadArgEliminationPass function. */
|
|
|
|
void LLVMAddDeadArgEliminationPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createFunctionAttrsPass function. */
|
|
|
|
void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createFunctionInliningPass function. */
|
|
|
|
void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM);
|
|
|
|
|
2011-07-26 23:23:23 +08:00
|
|
|
/** See llvm::createAlwaysInlinerPass function. */
|
|
|
|
void LLVMAddAlwaysInlinerPass(LLVMPassManagerRef PM);
|
|
|
|
|
2009-03-07 00:52:18 +08:00
|
|
|
/** See llvm::createGlobalDCEPass function. */
|
|
|
|
void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createGlobalOptimizerPass function. */
|
|
|
|
void LLVMAddGlobalOptimizerPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createIPConstantPropagationPass function. */
|
|
|
|
void LLVMAddIPConstantPropagationPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createPruneEHPass function. */
|
|
|
|
void LLVMAddPruneEHPass(LLVMPassManagerRef PM);
|
|
|
|
|
2010-04-10 04:43:20 +08:00
|
|
|
/** See llvm::createIPSCCPPass function. */
|
|
|
|
void LLVMAddIPSCCPPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createInternalizePass function. */
|
|
|
|
void LLVMAddInternalizePass(LLVMPassManagerRef, unsigned AllButMain);
|
|
|
|
|
2009-03-07 00:52:18 +08:00
|
|
|
/** See llvm::createStripDeadPrototypesPass function. */
|
|
|
|
void LLVMAddStripDeadPrototypesPass(LLVMPassManagerRef PM);
|
|
|
|
|
|
|
|
/** See llvm::createStripSymbolsPass function. */
|
|
|
|
void LLVMAddStripSymbolsPass(LLVMPassManagerRef PM);
|
|
|
|
|
2012-03-21 11:54:29 +08:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2009-03-07 00:52:18 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
|
|
|
#endif
|