2002-09-06 20:47:31 +00:00
|
|
|
//===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
|
2003-10-20 20:19:47 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-03-23 22:47:28 +00:00
|
|
|
// This file contains the declaration of the Function class, which represents a
|
2002-09-06 20:47:31 +00:00
|
|
|
// single function/procedure in LLVM.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-09-06 20:47:31 +00:00
|
|
|
// A function basically consists of a list of basic blocks, a list of arguments,
|
|
|
|
// and a symbol table.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-03-23 22:47:28 +00:00
|
|
|
#ifndef LLVM_FUNCTION_H
|
|
|
|
#define LLVM_FUNCTION_H
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-10-03 14:53:21 +00:00
|
|
|
#include "llvm/GlobalValue.h"
|
2002-06-25 16:12:52 +00:00
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/Argument.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/Annotation.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-03-29 03:30:59 +00:00
|
|
|
class FunctionType;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
// Traits for intrusive list of instructions...
|
|
|
|
template<> struct ilist_traits<BasicBlock>
|
|
|
|
: public SymbolTableListTraits<BasicBlock, Function, Function> {
|
|
|
|
|
|
|
|
// createNode is used to create a node that marks the end of the list...
|
2002-09-06 21:31:57 +00:00
|
|
|
static BasicBlock *createNode();
|
2002-06-25 16:12:52 +00:00
|
|
|
|
|
|
|
static iplist<BasicBlock> &getList(Function *F);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<> struct ilist_traits<Argument>
|
|
|
|
: public SymbolTableListTraits<Argument, Function, Function> {
|
|
|
|
|
|
|
|
// createNode is used to create a node that marks the end of the list...
|
|
|
|
static Argument *createNode();
|
|
|
|
static iplist<Argument> &getList(Function *F);
|
|
|
|
};
|
|
|
|
|
2004-02-26 08:08:38 +00:00
|
|
|
class Function : public GlobalValue, public Annotable {
|
2001-06-06 20:29:01 +00:00
|
|
|
public:
|
2002-06-25 16:12:52 +00:00
|
|
|
typedef iplist<Argument> ArgumentListType;
|
|
|
|
typedef iplist<BasicBlock> BasicBlockListType;
|
2001-06-27 23:26:41 +00:00
|
|
|
|
|
|
|
// BasicBlock iterators...
|
2002-06-25 16:12:52 +00:00
|
|
|
typedef BasicBlockListType::iterator iterator;
|
|
|
|
typedef BasicBlockListType::const_iterator const_iterator;
|
2002-01-20 22:54:45 +00:00
|
|
|
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
|
|
|
|
typedef std::reverse_iterator<iterator> reverse_iterator;
|
2001-06-27 23:26:41 +00:00
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
typedef ArgumentListType::iterator aiterator;
|
|
|
|
typedef ArgumentListType::const_iterator const_aiterator;
|
|
|
|
typedef std::reverse_iterator<const_aiterator> const_reverse_aiterator;
|
|
|
|
typedef std::reverse_iterator<aiterator> reverse_aiterator;
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
private:
|
2002-04-28 04:44:40 +00:00
|
|
|
// Important things that make up a function!
|
2002-09-06 20:47:31 +00:00
|
|
|
BasicBlockListType BasicBlocks; // The basic blocks
|
2001-10-22 13:58:08 +00:00
|
|
|
ArgumentListType ArgumentList; // The formal arguments
|
2002-04-28 04:44:40 +00:00
|
|
|
|
2002-10-15 21:26:29 +00:00
|
|
|
SymbolTable *SymTab;
|
2001-10-22 13:58:08 +00:00
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
friend class SymbolTableListTraits<Function, Module, Module>;
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
void setParent(Module *parent);
|
2002-06-25 16:12:52 +00:00
|
|
|
Function *Prev, *Next;
|
|
|
|
void setNext(Function *N) { Next = N; }
|
|
|
|
void setPrev(Function *N) { Prev = N; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
public:
|
2002-09-06 20:47:31 +00:00
|
|
|
/// Function ctor - If the (optional) Module argument is specified, the
|
|
|
|
/// function is automatically inserted into the end of the function list for
|
|
|
|
/// the module.
|
|
|
|
///
|
2003-04-16 20:28:45 +00:00
|
|
|
Function(const FunctionType *Ty, LinkageTypes Linkage,
|
|
|
|
const std::string &N = "", Module *M = 0);
|
2002-03-23 22:47:28 +00:00
|
|
|
~Function();
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Specialize setName to handle symbol table majik...
|
2002-01-20 22:54:45 +00:00
|
|
|
virtual void setName(const std::string &name, SymbolTable *ST = 0);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-03-29 03:30:59 +00:00
|
|
|
const Type *getReturnType() const; // Return the type of the ret val
|
|
|
|
const FunctionType *getFunctionType() const; // Return the FunctionType for me
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-01-07 07:40:32 +00:00
|
|
|
/// isVarArg - Return true if this function takes a variable number of
|
|
|
|
/// arguments.
|
|
|
|
bool isVarArg() const;
|
|
|
|
|
2004-03-01 18:31:19 +00:00
|
|
|
/// isExternal - Is the body of this function unknown? (The basic block list
|
|
|
|
/// is empty if so.) This is true for external functions, defined as forward
|
2002-08-25 22:54:55 +00:00
|
|
|
/// "declare"ations
|
|
|
|
///
|
2002-10-09 23:11:33 +00:00
|
|
|
virtual bool isExternal() const { return BasicBlocks.empty(); }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-05-08 03:34:12 +00:00
|
|
|
/// getIntrinsicID - This method returns the ID number of the specified
|
2003-11-11 22:41:34 +00:00
|
|
|
/// function, or Intrinsic::not_intrinsic if the function is not an
|
2003-05-08 03:34:12 +00:00
|
|
|
/// instrinsic, or if the pointer is null. This value is always defined to be
|
|
|
|
/// zero to allow easy checking for whether a function is intrinsic or not.
|
|
|
|
/// The particular intrinsic functions which correspond to this value are
|
|
|
|
/// defined in llvm/Intrinsics.h.
|
|
|
|
///
|
|
|
|
unsigned getIntrinsicID() const;
|
|
|
|
bool isIntrinsic() const { return getIntrinsicID() != 0; }
|
|
|
|
|
2004-12-05 06:43:27 +00:00
|
|
|
/// renameLocalSymbols - This method goes through the Function's symbol table
|
|
|
|
/// and renames any symbols that conflict with symbols at global scope. This
|
|
|
|
/// is required before printing out to a textual form, to ensure that there is
|
|
|
|
/// no ambiguity when parsing.
|
|
|
|
void renameLocalSymbols();
|
|
|
|
|
|
|
|
|
2003-09-17 04:58:43 +00:00
|
|
|
/// deleteBody - This method deletes the body of the function, and converts
|
|
|
|
/// the linkage to external.
|
2004-03-01 18:31:19 +00:00
|
|
|
///
|
2003-09-17 04:58:43 +00:00
|
|
|
void deleteBody() {
|
|
|
|
dropAllReferences();
|
|
|
|
setLinkage(ExternalLinkage);
|
|
|
|
}
|
|
|
|
|
2004-10-11 22:21:13 +00:00
|
|
|
/// removeFromParent - This method unlinks 'this' from the containing module,
|
|
|
|
/// but does not delete it.
|
|
|
|
///
|
|
|
|
void removeFromParent();
|
|
|
|
|
|
|
|
/// eraseFromParent - This method unlinks 'this' from the containing module
|
|
|
|
/// and deletes it.
|
|
|
|
///
|
|
|
|
void eraseFromParent();
|
|
|
|
|
|
|
|
|
2002-09-06 20:47:31 +00:00
|
|
|
// getNext/Prev - Return the next or previous function in the list. These
|
|
|
|
// methods should never be used directly, and are only used to implement the
|
|
|
|
// function list as part of the module.
|
|
|
|
//
|
2002-06-25 16:12:52 +00:00
|
|
|
Function *getNext() { return Next; }
|
|
|
|
const Function *getNext() const { return Next; }
|
|
|
|
Function *getPrev() { return Prev; }
|
|
|
|
const Function *getPrev() const { return Prev; }
|
|
|
|
|
2003-05-09 22:16:18 +00:00
|
|
|
/// Get the underlying elements of the Function... the basic block list is
|
|
|
|
/// empty for external functions.
|
2002-08-25 22:54:55 +00:00
|
|
|
///
|
2002-06-25 16:12:52 +00:00
|
|
|
const ArgumentListType &getArgumentList() const { return ArgumentList; }
|
|
|
|
ArgumentListType &getArgumentList() { return ArgumentList; }
|
2001-06-27 23:26:41 +00:00
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
|
|
|
|
BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-09-20 14:36:49 +00:00
|
|
|
const BasicBlock &getEntryBlock() const { return front(); }
|
|
|
|
BasicBlock &getEntryBlock() { return front(); }
|
2002-04-28 04:44:40 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Symbol Table Accessing functions...
|
|
|
|
|
2002-11-20 18:07:48 +00:00
|
|
|
/// getSymbolTable() - Return the symbol table...
|
2002-08-25 22:54:55 +00:00
|
|
|
///
|
2002-11-20 18:36:02 +00:00
|
|
|
inline SymbolTable &getSymbolTable() { return *SymTab; }
|
|
|
|
inline const SymbolTable &getSymbolTable() const { return *SymTab; }
|
2002-04-28 04:44:40 +00:00
|
|
|
|
2001-10-14 23:20:44 +00:00
|
|
|
|
2001-06-27 23:26:41 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// BasicBlock iterator forwarding functions
|
|
|
|
//
|
2002-06-25 16:12:52 +00:00
|
|
|
iterator begin() { return BasicBlocks.begin(); }
|
|
|
|
const_iterator begin() const { return BasicBlocks.begin(); }
|
|
|
|
iterator end () { return BasicBlocks.end(); }
|
|
|
|
const_iterator end () const { return BasicBlocks.end(); }
|
|
|
|
|
|
|
|
reverse_iterator rbegin() { return BasicBlocks.rbegin(); }
|
|
|
|
const_reverse_iterator rbegin() const { return BasicBlocks.rbegin(); }
|
|
|
|
reverse_iterator rend () { return BasicBlocks.rend(); }
|
|
|
|
const_reverse_iterator rend () const { return BasicBlocks.rend(); }
|
|
|
|
|
2004-11-15 19:02:35 +00:00
|
|
|
size_t size() const { return BasicBlocks.size(); }
|
2002-06-25 16:12:52 +00:00
|
|
|
bool empty() const { return BasicBlocks.empty(); }
|
|
|
|
const BasicBlock &front() const { return BasicBlocks.front(); }
|
|
|
|
BasicBlock &front() { return BasicBlocks.front(); }
|
2004-10-19 05:50:34 +00:00
|
|
|
const BasicBlock &back() const { return BasicBlocks.back(); }
|
|
|
|
BasicBlock &back() { return BasicBlocks.back(); }
|
2002-06-25 16:12:52 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Argument iterator forwarding functions
|
|
|
|
//
|
|
|
|
aiterator abegin() { return ArgumentList.begin(); }
|
|
|
|
const_aiterator abegin() const { return ArgumentList.begin(); }
|
|
|
|
aiterator aend () { return ArgumentList.end(); }
|
|
|
|
const_aiterator aend () const { return ArgumentList.end(); }
|
|
|
|
|
|
|
|
reverse_aiterator arbegin() { return ArgumentList.rbegin(); }
|
|
|
|
const_reverse_aiterator arbegin() const { return ArgumentList.rbegin(); }
|
|
|
|
reverse_aiterator arend () { return ArgumentList.rend(); }
|
|
|
|
const_reverse_aiterator arend () const { return ArgumentList.rend(); }
|
|
|
|
|
2004-11-15 19:02:35 +00:00
|
|
|
size_t asize() const { return ArgumentList.size(); }
|
2002-09-06 20:47:31 +00:00
|
|
|
bool aempty() const { return ArgumentList.empty(); }
|
|
|
|
const Argument &afront() const { return ArgumentList.front(); }
|
|
|
|
Argument &afront() { return ArgumentList.front(); }
|
2004-10-19 05:50:34 +00:00
|
|
|
const Argument &aback() const { return ArgumentList.back(); }
|
|
|
|
Argument &aback() { return ArgumentList.back(); }
|
2001-06-27 23:26:41 +00:00
|
|
|
|
2003-10-30 23:41:19 +00:00
|
|
|
virtual void print(std::ostream &OS) const { print(OS, 0); }
|
|
|
|
void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-10-22 16:03:20 +00:00
|
|
|
/// viewCFG - This function is meant for use from the debugger. You can just
|
|
|
|
/// say 'call F->viewCFG()' and a ghostview window should pop up from the
|
|
|
|
/// program, displaying the CFG of the current function with the code for each
|
|
|
|
/// basic block inside. This depends on there being a 'dot' and 'gv' program
|
|
|
|
/// in your path.
|
|
|
|
///
|
|
|
|
void viewCFG() const;
|
|
|
|
|
|
|
|
/// viewCFGOnly - This function is meant for use from the debugger. It works
|
|
|
|
/// just like viewCFG, but it does not include the contents of basic blocks
|
2004-03-01 18:31:19 +00:00
|
|
|
/// into the nodes, just the label. If you are only interested in the CFG
|
|
|
|
/// this can make the graph smaller.
|
2003-10-22 16:03:20 +00:00
|
|
|
///
|
|
|
|
void viewCFGOnly() const;
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
2002-03-23 22:47:28 +00:00
|
|
|
static inline bool classof(const Function *) { return true; }
|
2001-10-02 03:41:24 +00:00
|
|
|
static inline bool classof(const Value *V) {
|
2002-03-26 17:48:08 +00:00
|
|
|
return V->getValueType() == Value::FunctionVal;
|
2001-10-01 16:18:37 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-09-17 04:58:43 +00:00
|
|
|
/// dropAllReferences() - This method causes all the subinstructions to "let
|
2002-08-25 22:54:55 +00:00
|
|
|
/// go" of all references that they are maintaining. This allows one to
|
2003-09-17 04:58:43 +00:00
|
|
|
/// 'delete' a whole module at a time, even though there may be circular
|
2002-08-25 22:54:55 +00:00
|
|
|
/// references... first all references are dropped, and all use counts go to
|
2004-03-01 18:31:19 +00:00
|
|
|
/// zero. Then everything is deleted for real. Note that no operations are
|
2002-08-25 22:54:55 +00:00
|
|
|
/// valid on an object that has "dropped all references", except operator
|
|
|
|
/// delete.
|
|
|
|
///
|
2003-09-17 04:58:43 +00:00
|
|
|
/// Since no other object in the module can have references into the body of a
|
|
|
|
/// function, dropping all references deletes the entire body of the function,
|
|
|
|
/// including any contained basic blocks.
|
|
|
|
///
|
2001-06-06 20:29:01 +00:00
|
|
|
void dropAllReferences();
|
2001-09-28 22:56:31 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|