Replace the odd kill# hack with something less fragile.
[oota-llvm.git] / include / llvm / Function.h
1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declaration of the Function class, which represents a
11 // single function/procedure in LLVM.
12 //
13 // A function basically consists of a list of basic blocks, a list of arguments,
14 // and a symbol table.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_FUNCTION_H
19 #define LLVM_FUNCTION_H
20
21 #include "llvm/GlobalValue.h"
22 #include "llvm/BasicBlock.h"
23 #include "llvm/Argument.h"
24 #include "llvm/ParameterAttributes.h"
25 #include "llvm/Support/Annotation.h"
26
27 namespace llvm {
28
29 class FunctionType;
30 class ParamAttrsList;
31
32 // Traits for intrusive list of instructions...
33 template<> struct ilist_traits<BasicBlock>
34   : public SymbolTableListTraits<BasicBlock, Function> {
35
36   // createSentinel is used to create a node that marks the end of the list...
37   static BasicBlock *createSentinel();
38   static void destroySentinel(BasicBlock *BB) { delete BB; }
39   static iplist<BasicBlock> &getList(Function *F);
40   static ValueSymbolTable *getSymTab(Function *ItemParent);
41   static int getListOffset();
42 };
43
44 template<> struct ilist_traits<Argument>
45   : public SymbolTableListTraits<Argument, Function> {
46
47   // createSentinel is used to create a node that marks the end of the list...
48   static Argument *createSentinel();
49   static void destroySentinel(Argument *A) { delete A; }
50   static iplist<Argument> &getList(Function *F);
51   static ValueSymbolTable *getSymTab(Function *ItemParent);
52   static int getListOffset();
53 };
54
55 class Function : public GlobalValue, public Annotable {
56 public:
57   typedef iplist<Argument> ArgumentListType;
58   typedef iplist<BasicBlock> BasicBlockListType;
59
60   // BasicBlock iterators...
61   typedef BasicBlockListType::iterator iterator;
62   typedef BasicBlockListType::const_iterator const_iterator;
63
64   typedef ArgumentListType::iterator arg_iterator;
65   typedef ArgumentListType::const_iterator const_arg_iterator;
66
67 private:
68   // Important things that make up a function!
69   BasicBlockListType  BasicBlocks;        ///< The basic blocks
70   mutable ArgumentListType ArgumentList;  ///< The formal arguments
71   ValueSymbolTable *SymTab;               ///< Symbol table of args/instructions
72   const ParamAttrsList *ParamAttrs;       ///< Parameter attributes
73   
74   // The Calling Convention is stored in Value::SubclassData.
75   /*unsigned CallingConvention;*/
76
77   friend class SymbolTableListTraits<Function, Module>;
78
79   void setParent(Module *parent);
80   Function *Prev, *Next;
81   void setNext(Function *N) { Next = N; }
82   void setPrev(Function *N) { Prev = N; }
83
84   // getNext/Prev - Return the next or previous function in the list.  These
85   // methods should never be used directly, and are only used to implement the
86   // function list as part of the module.
87   //
88   Function *getNext()             { return Next; }
89   const Function *getNext() const { return Next; }
90   Function *getPrev()             { return Prev; }
91   const Function *getPrev() const { return Prev; }
92
93   /// hasLazyArguments/CheckLazyArguments - The argument list of a function is
94   /// built on demand, so that the list isn't allocated until the first client
95   /// needs it.  The hasLazyArguments predicate returns true if the arg list
96   /// hasn't been set up yet.
97   bool hasLazyArguments() const {
98     return SubclassData & 1;
99   }
100   void CheckLazyArguments() const {
101     if (hasLazyArguments())
102       BuildLazyArguments();
103   }
104   void BuildLazyArguments() const;
105 public:
106   /// Function ctor - If the (optional) Module argument is specified, the
107   /// function is automatically inserted into the end of the function list for
108   /// the module.
109   ///
110   Function(const FunctionType *Ty, LinkageTypes Linkage,
111            const std::string &N = "", Module *M = 0);
112   ~Function();
113
114   const Type *getReturnType() const;           // Return the type of the ret val
115   const FunctionType *getFunctionType() const; // Return the FunctionType for me
116
117   /// isVarArg - Return true if this function takes a variable number of
118   /// arguments.
119   bool isVarArg() const;
120
121   /// isDeclaration - Is the body of this function unknown? (The basic block 
122   /// list is empty if so.) This is true for function declarations, but not 
123   /// true for function definitions.
124   ///
125   virtual bool isDeclaration() const { return BasicBlocks.empty(); }
126
127   /// getIntrinsicID - This method returns the ID number of the specified
128   /// function, or Intrinsic::not_intrinsic if the function is not an
129   /// instrinsic, or if the pointer is null.  This value is always defined to be
130   /// zero to allow easy checking for whether a function is intrinsic or not.
131   /// The particular intrinsic functions which correspond to this value are
132   /// defined in llvm/Intrinsics.h.
133   ///
134   unsigned getIntrinsicID(bool noAssert = false) const;
135   bool isIntrinsic() const { return getIntrinsicID() != 0; }
136
137   /// getCallingConv()/setCallingConv(uint) - These method get and set the
138   /// calling convention of this function.  The enum values for the known
139   /// calling conventions are defined in CallingConv.h.
140   unsigned getCallingConv() const { return SubclassData >> 1; }
141   void setCallingConv(unsigned CC) {
142     SubclassData = (SubclassData & 1) | (CC << 1);
143   }
144   
145   /// Obtains a constant pointer to the ParamAttrsList object which holds the
146   /// parameter attributes information, if any. 
147   /// @returns 0 if no parameter attributes have been set.
148   /// @brief Get the parameter attributes.
149   const ParamAttrsList *getParamAttrs() const { return ParamAttrs; }
150
151   /// Sets the parameter attributes for this Function. To construct a 
152   /// ParamAttrsList, see ParameterAttributes.h
153   /// @brief Set the parameter attributes.
154   void setParamAttrs(const ParamAttrsList *attrs);
155
156   /// @brief Determine whether the function has the given attribute.
157   bool paramHasAttr(uint16_t i, ParameterAttributes attr) const {
158     return ParamAttrs && ParamAttrs->paramHasAttr(i, attr);
159   }
160
161   /// @brief Determine if the function returns a structure.
162   bool isStructReturn() const {
163     return paramHasAttr(1, ParamAttr::StructRet);
164   }
165
166   /// deleteBody - This method deletes the body of the function, and converts
167   /// the linkage to external.
168   ///
169   void deleteBody() {
170     dropAllReferences();
171     setLinkage(ExternalLinkage);
172   }
173
174   /// removeFromParent - This method unlinks 'this' from the containing module,
175   /// but does not delete it.
176   ///
177   void removeFromParent();
178
179   /// eraseFromParent - This method unlinks 'this' from the containing module
180   /// and deletes it.
181   ///
182   void eraseFromParent();
183
184
185   /// Get the underlying elements of the Function... the basic block list is
186   /// empty for external functions.
187   ///
188   const ArgumentListType &getArgumentList() const {
189     CheckLazyArguments();
190     return ArgumentList;
191   }
192   ArgumentListType &getArgumentList() {
193     CheckLazyArguments();
194     return ArgumentList;
195   }
196
197   const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
198         BasicBlockListType &getBasicBlockList()       { return BasicBlocks; }
199
200   const BasicBlock       &getEntryBlock() const   { return front(); }
201         BasicBlock       &getEntryBlock()         { return front(); }
202
203   //===--------------------------------------------------------------------===//
204   // Symbol Table Accessing functions...
205
206   /// getSymbolTable() - Return the symbol table...
207   ///
208   inline       ValueSymbolTable &getValueSymbolTable()       { return *SymTab; }
209   inline const ValueSymbolTable &getValueSymbolTable() const { return *SymTab; }
210
211
212   //===--------------------------------------------------------------------===//
213   // BasicBlock iterator forwarding functions
214   //
215   iterator                begin()       { return BasicBlocks.begin(); }
216   const_iterator          begin() const { return BasicBlocks.begin(); }
217   iterator                end  ()       { return BasicBlocks.end();   }
218   const_iterator          end  () const { return BasicBlocks.end();   }
219
220   size_t                   size() const { return BasicBlocks.size();  }
221   bool                    empty() const { return BasicBlocks.empty(); }
222   const BasicBlock       &front() const { return BasicBlocks.front(); }
223         BasicBlock       &front()       { return BasicBlocks.front(); }
224   const BasicBlock        &back() const { return BasicBlocks.back();  }
225         BasicBlock        &back()       { return BasicBlocks.back();  }
226
227   //===--------------------------------------------------------------------===//
228   // Argument iterator forwarding functions
229   //
230   arg_iterator arg_begin() {
231     CheckLazyArguments();
232     return ArgumentList.begin();
233   }
234   const_arg_iterator arg_begin() const {
235     CheckLazyArguments();
236     return ArgumentList.begin();
237   }
238   arg_iterator arg_end() {
239     CheckLazyArguments();
240     return ArgumentList.end();
241   }
242   const_arg_iterator arg_end() const {
243     CheckLazyArguments();
244     return ArgumentList.end();
245   }
246
247   size_t arg_size() const;
248   bool arg_empty() const;
249
250   virtual void print(std::ostream &OS) const { print(OS, 0); }
251   void print(std::ostream *OS) const { if (OS) print(*OS); }
252   void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
253
254   /// viewCFG - This function is meant for use from the debugger.  You can just
255   /// say 'call F->viewCFG()' and a ghostview window should pop up from the
256   /// program, displaying the CFG of the current function with the code for each
257   /// basic block inside.  This depends on there being a 'dot' and 'gv' program
258   /// in your path.
259   ///
260   void viewCFG() const;
261
262   /// viewCFGOnly - This function is meant for use from the debugger.  It works
263   /// just like viewCFG, but it does not include the contents of basic blocks
264   /// into the nodes, just the label.  If you are only interested in the CFG
265   /// this can make the graph smaller.
266   ///
267   void viewCFGOnly() const;
268
269   /// Methods for support type inquiry through isa, cast, and dyn_cast:
270   static inline bool classof(const Function *) { return true; }
271   static inline bool classof(const Value *V) {
272     return V->getValueID() == Value::FunctionVal;
273   }
274
275   /// dropAllReferences() - This method causes all the subinstructions to "let
276   /// go" of all references that they are maintaining.  This allows one to
277   /// 'delete' a whole module at a time, even though there may be circular
278   /// references... first all references are dropped, and all use counts go to
279   /// zero.  Then everything is deleted for real.  Note that no operations are
280   /// valid on an object that has "dropped all references", except operator
281   /// delete.
282   ///
283   /// Since no other object in the module can have references into the body of a
284   /// function, dropping all references deletes the entire body of the function,
285   /// including any contained basic blocks.
286   ///
287   void dropAllReferences();
288   
289   static unsigned getBasicBlockListOffset() {
290     Function *Obj = 0;
291     return unsigned(reinterpret_cast<uintptr_t>(&Obj->BasicBlocks));
292   }
293   static unsigned getArgumentListOffset() {
294     Function *Obj = 0;
295     return unsigned(reinterpret_cast<uintptr_t>(&Obj->ArgumentList));
296   }
297 };
298
299 inline ValueSymbolTable *
300 ilist_traits<BasicBlock>::getSymTab(Function *F) {
301   return F ? &F->getValueSymbolTable() : 0;
302 }
303
304 inline ValueSymbolTable *
305 ilist_traits<Argument>::getSymTab(Function *F) {
306   return F ? &F->getValueSymbolTable() : 0;
307 }
308
309 inline int 
310 ilist_traits<BasicBlock>::getListOffset() {
311   return Function::getBasicBlockListOffset();
312 }
313
314 inline int 
315 ilist_traits<Argument>::getListOffset() {
316   return Function::getArgumentListOffset();
317 }
318
319
320 } // End llvm namespace
321
322 #endif