2002-07-23 21:56:27 +02:00
|
|
|
//===- llvm/Transforms/IPO.h - Interprocedural Transformations --*- C++ -*-===//
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-31 05:32:53 +01:00
|
|
|
//
|
2002-07-23 21:56:27 +02:00
|
|
|
// This header file defines prototypes for accessor functions that expose passes
|
|
|
|
// in the IPO transformations library.
|
2001-10-31 05:32:53 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-07-23 21:48:52 +02:00
|
|
|
#ifndef LLVM_TRANSFORMS_IPO_H
|
|
|
|
#define LLVM_TRANSFORMS_IPO_H
|
2001-10-31 05:32:53 +01:00
|
|
|
|
2004-08-13 05:03:44 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2005-01-10 05:23:32 +01:00
|
|
|
class FunctionPass;
|
2004-09-20 06:41:39 +02:00
|
|
|
class ModulePass;
|
2007-01-26 01:47:38 +01:00
|
|
|
class Pass;
|
2002-11-19 19:42:59 +01:00
|
|
|
class Function;
|
2004-08-13 05:03:44 +02:00
|
|
|
class BasicBlock;
|
2008-03-07 20:51:57 +01:00
|
|
|
class GlobalValue;
|
2002-04-10 22:31:22 +02:00
|
|
|
|
2004-12-02 22:24:19 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// These functions removes symbols from functions and modules. If OnlyDebugInfo
|
|
|
|
// is true, only debugging information is removed from the module.
|
|
|
|
//
|
|
|
|
ModulePass *createStripSymbolsPass(bool OnlyDebugInfo = false);
|
|
|
|
|
2003-09-15 07:05:23 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createLowerSetJmpPass - This function lowers the setjmp/longjmp intrinsics
|
|
|
|
/// to invoke/unwind instructions. This should really be part of the C/C++
|
|
|
|
/// front-end, but it's so much easier to write transformations in LLVM proper.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass* createLowerSetJmpPass();
|
2003-09-15 07:05:23 +02:00
|
|
|
|
2002-07-23 21:56:27 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createConstantMergePass - This function returns a new pass that merges
|
|
|
|
/// duplicate global constants together into a single constant that is shared.
|
|
|
|
/// This is useful because some passes (ie TraceValues) insert a lot of string
|
|
|
|
/// constants into the program, regardless of whether or not they duplicate an
|
|
|
|
/// existing string.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createConstantMergePass();
|
2002-07-23 21:56:27 +02:00
|
|
|
|
|
|
|
|
2004-02-25 22:34:51 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-10-07 06:12:02 +02:00
|
|
|
/// createGlobalOptimizerPass - This function returns a new pass that optimizes
|
|
|
|
/// non-address taken internal globals.
|
2004-03-14 21:00:37 +01:00
|
|
|
///
|
2004-10-07 06:12:02 +02:00
|
|
|
ModulePass *createGlobalOptimizerPass();
|
2004-02-25 22:34:51 +01:00
|
|
|
|
|
|
|
|
2003-09-01 05:14:00 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createRaiseAllocationsPass - Return a new pass that transforms malloc and
|
|
|
|
/// free function calls into malloc and free instructions.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createRaiseAllocationsPass();
|
2003-09-01 05:14:00 +02:00
|
|
|
|
|
|
|
|
2002-07-23 21:48:52 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createDeadTypeEliminationPass - Return a new pass that eliminates symbol
|
|
|
|
/// table entries for types that are never used.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createDeadTypeEliminationPass();
|
2001-10-31 05:32:53 +01:00
|
|
|
|
2002-04-10 22:31:22 +02:00
|
|
|
|
2002-07-24 19:10:58 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createGlobalDCEPass - This transform is designed to eliminate unreachable
|
|
|
|
/// internal globals (functions or global variables)
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createGlobalDCEPass();
|
2002-07-24 19:10:58 +02:00
|
|
|
|
|
|
|
|
2008-03-07 20:51:57 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// createGVExtractionPass - If deleteFn is true, this pass deletes as
|
|
|
|
/// the specified global values. Otherwise, it deletes as much of the module as
|
|
|
|
/// possible, except for the global values specified.
|
|
|
|
///
|
|
|
|
ModulePass *createGVExtractionPass(std::vector<GlobalValue*>& GVs, bool
|
|
|
|
deleteFn = false,
|
|
|
|
bool relinkCallees = false);
|
2002-11-19 19:42:59 +01:00
|
|
|
|
2002-11-19 21:43:24 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createFunctionInliningPass - Return a new pass object that uses a heuristic
|
|
|
|
/// to inline direct function calls to small functions.
|
|
|
|
///
|
2007-01-26 01:47:38 +01:00
|
|
|
Pass *createFunctionInliningPass();
|
2008-01-12 07:49:13 +01:00
|
|
|
Pass *createFunctionInliningPass(int Threshold);
|
2002-07-24 19:10:58 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createPruneEHPass - Return a new pass object which transforms invoke
|
|
|
|
/// instructions into calls, if the callee can _not_ unwind the stack.
|
|
|
|
///
|
2007-01-26 01:47:38 +01:00
|
|
|
Pass *createPruneEHPass();
|
2003-08-31 18:30:25 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createInternalizePass - This pass loops over all of the functions in the
|
2008-05-14 22:01:01 +02:00
|
|
|
/// input module, internalizing all globals (functions and variables) not part
|
|
|
|
/// of the api. If a list of symbols is specified with the
|
|
|
|
/// -internalize-public-api-* command line options, those symbols are not
|
|
|
|
/// internalized and all others are. Otherwise if AllButMain is set and the
|
|
|
|
/// main function is found, all other globals are marked as internal.
|
2004-03-14 21:00:37 +01:00
|
|
|
///
|
2005-10-18 08:28:16 +02:00
|
|
|
ModulePass *createInternalizePass(bool InternalizeEverything);
|
2008-05-14 22:01:01 +02:00
|
|
|
|
|
|
|
/// createInternalizePass - This pass loops over all of the functions in the
|
|
|
|
/// input module, internalizing all globals (functions and variables) not in the
|
|
|
|
/// given exportList.
|
2006-07-20 19:48:05 +02:00
|
|
|
ModulePass *createInternalizePass(const std::vector<const char *> &exportList);
|
2002-07-24 19:10:58 +02:00
|
|
|
|
2003-06-16 14:16:52 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createDeadArgEliminationPass - This pass removes arguments from functions
|
|
|
|
/// which are not used by the body of the function.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createDeadArgEliminationPass();
|
2003-11-05 22:43:42 +01:00
|
|
|
|
2004-03-14 21:00:37 +01:00
|
|
|
/// DeadArgHacking pass - Same as DAE, but delete arguments of external
|
|
|
|
/// functions as well. This is definitely not safe, and should only be used by
|
|
|
|
/// bugpoint.
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createDeadArgHackingPass();
|
2003-06-16 14:16:52 +02:00
|
|
|
|
2004-03-07 22:30:08 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createArgumentPromotionPass - This pass promotes "by reference" arguments to
|
2008-04-19 21:50:01 +02:00
|
|
|
/// be passed by value if the number of elements passed is smaller or
|
|
|
|
/// equal to maxElements (maxElements == 0 means always promote).
|
2004-03-14 21:00:37 +01:00
|
|
|
///
|
2008-04-19 21:50:01 +02:00
|
|
|
Pass *createArgumentPromotionPass(unsigned maxElements = 3);
|
Add pass to promote sret.
This pass transforms
%struct._Point = type { i32, i32, i32, i32, i32, i32 }
define internal void @foo(%struct._Point* sret %agg.result)
into
%struct._Point = type { i32, i32, i32, i32, i32, i32 }
define internal %struct._Point @foo()
This pass updates foo() clients appropriately to use
getresult instruction to extract return values.
This pass is not yet ready for prime time.
llvm-svn: 47776
2008-03-01 00:34:08 +01:00
|
|
|
Pass *createStructRetPromotionPass();
|
2004-03-07 22:30:08 +01:00
|
|
|
|
2003-10-23 18:51:49 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createIPConstantPropagationPass - This pass propagates constants from call
|
|
|
|
/// sites into the bodies of functions.
|
|
|
|
///
|
2004-09-20 06:41:39 +02:00
|
|
|
ModulePass *createIPConstantPropagationPass();
|
2003-10-23 18:51:49 +02:00
|
|
|
|
2004-12-10 08:55:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// createIPSCCPPass - This pass propagates constants from call sites into the
|
|
|
|
/// bodies of functions, and keeps track of whether basic blocks are executable
|
|
|
|
/// in the process.
|
|
|
|
///
|
|
|
|
ModulePass *createIPSCCPPass();
|
2002-07-24 19:10:58 +02:00
|
|
|
|
2004-03-14 03:36:34 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2005-01-08 18:21:40 +01:00
|
|
|
/// createLoopExtractorPass - This pass extracts all natural loops from the
|
|
|
|
/// program into a function if it can.
|
|
|
|
///
|
2005-01-10 05:23:32 +01:00
|
|
|
FunctionPass *createLoopExtractorPass();
|
2005-01-08 18:21:40 +01:00
|
|
|
|
2004-03-14 21:00:37 +01:00
|
|
|
/// createSingleLoopExtractorPass - This pass extracts one natural loop from the
|
|
|
|
/// program into a function if it can. This is used by bugpoint.
|
|
|
|
///
|
2005-01-10 05:23:32 +01:00
|
|
|
FunctionPass *createSingleLoopExtractorPass();
|
2004-03-14 03:36:34 +01:00
|
|
|
|
2007-02-05 21:47:22 +01:00
|
|
|
/// createBlockExtractorPass - This pass extracts all blocks (except those
|
|
|
|
/// specified in the argument list) from the functions in the module.
|
|
|
|
///
|
2007-11-05 02:54:05 +01:00
|
|
|
ModulePass *createBlockExtractorPass(const std::vector<BasicBlock*> &BTNE);
|
2004-08-13 05:03:44 +02:00
|
|
|
|
2007-02-05 21:47:22 +01:00
|
|
|
/// createIndMemRemPass - This pass removes potential indirect calls of
|
|
|
|
/// malloc and free
|
2006-04-10 21:26:09 +02:00
|
|
|
ModulePass *createIndMemRemPass();
|
|
|
|
|
2007-02-05 21:47:22 +01:00
|
|
|
/// createStripDeadPrototypesPass - This pass removes any function declarations
|
|
|
|
/// (prototypes) that are not used.
|
|
|
|
ModulePass *createStripDeadPrototypesPass();
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-10-31 05:32:53 +01:00
|
|
|
#endif
|