2002-09-06 20:47:31 +00:00
|
|
|
//===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
|
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"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2002-04-28 04:44:40 +00:00
|
|
|
class Function : public GlobalValue {
|
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.
|
|
|
|
///
|
|
|
|
Function(const FunctionType *Ty, bool isInternal, 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
|
|
|
|
2002-08-25 22:54:55 +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
|
|
|
|
/// "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
|
|
|
|
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; }
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// Get the underlying elements of the Function... both the argument list and
|
|
|
|
/// basic block list are empty for external functions.
|
|
|
|
///
|
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
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
const BasicBlock &getEntryNode() const { return front(); }
|
|
|
|
BasicBlock &getEntryNode() { return front(); }
|
2002-04-28 04:44:40 +00:00
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Symbol Table Accessing functions...
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// hasSymbolTable() - Returns true if there is a symbol table allocated to
|
|
|
|
/// this object AND if there is at least one name in it!
|
|
|
|
///
|
2002-04-28 04:44:40 +00:00
|
|
|
bool hasSymbolTable() const;
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// getSymbolTable() - CAUTION: The current symbol table may be null if there
|
|
|
|
/// are no names (ie, the symbol table is empty)
|
|
|
|
///
|
2002-04-28 04:44:40 +00:00
|
|
|
inline SymbolTable *getSymbolTable() { return SymTab; }
|
|
|
|
inline const SymbolTable *getSymbolTable() const { return SymTab; }
|
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// getSymbolTableSure is guaranteed to not return a null pointer, because if
|
|
|
|
/// the function does not already have a symtab, one is created. Use this if
|
|
|
|
/// you intend to put something into the symbol table for the function.
|
|
|
|
///
|
2002-04-28 04:44:40 +00:00
|
|
|
SymbolTable *getSymbolTableSure(); // Implemented in Value.cpp
|
|
|
|
|
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(); }
|
|
|
|
|
|
|
|
unsigned size() const { return BasicBlocks.size(); }
|
|
|
|
bool empty() const { return BasicBlocks.empty(); }
|
|
|
|
const BasicBlock &front() const { return BasicBlocks.front(); }
|
|
|
|
BasicBlock &front() { return BasicBlocks.front(); }
|
|
|
|
const BasicBlock &back() const { return BasicBlocks.back(); }
|
|
|
|
BasicBlock &back() { return BasicBlocks.back(); }
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// 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(); }
|
|
|
|
|
2002-09-06 20:47:31 +00:00
|
|
|
unsigned asize() const { return ArgumentList.size(); }
|
|
|
|
bool aempty() const { return ArgumentList.empty(); }
|
|
|
|
const Argument &afront() const { return ArgumentList.front(); }
|
|
|
|
Argument &afront() { return ArgumentList.front(); }
|
|
|
|
const Argument &aback() const { return ArgumentList.back(); }
|
|
|
|
Argument &aback() { return ArgumentList.back(); }
|
2001-06-27 23:26:41 +00:00
|
|
|
|
2002-04-08 21:56:02 +00:00
|
|
|
virtual void print(std::ostream &OS) const;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
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
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// dropAllReferences() - This function causes all the subinstructions to "let
|
|
|
|
/// go" of all references that they are maintaining. This allows one to
|
|
|
|
/// 'delete' a whole class at a time, even though there may be circular
|
|
|
|
/// references... first all references are dropped, and all use counts go to
|
|
|
|
/// zero. Then everything is delete'd for real. Note that no operations are
|
|
|
|
/// valid on an object that has "dropped all references", except operator
|
|
|
|
/// delete.
|
|
|
|
///
|
2001-06-06 20:29:01 +00:00
|
|
|
void dropAllReferences();
|
2001-09-28 22:56:31 +00:00
|
|
|
};
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#endif
|