Not everyone uses C++11, apparently
[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 is distributed under the University of Illinois Open Source
6 // 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/CallingConv.h"
23 #include "llvm/BasicBlock.h"
24 #include "llvm/Argument.h"
25 #include "llvm/Attributes.h"
26 #include "llvm/Support/Compiler.h"
27
28 namespace llvm {
29
30 class FunctionType;
31 class LLVMContext;
32
33 // Traits for intrusive list of basic blocks...
34 template<> struct ilist_traits<BasicBlock>
35   : public SymbolTableListTraits<BasicBlock, Function> {
36
37   // createSentinel is used to get hold of the node that marks the end of the
38   // list... (same trick used here as in ilist_traits<Instruction>)
39   BasicBlock *createSentinel() const {
40     return static_cast<BasicBlock*>(&Sentinel);
41   }
42   static void destroySentinel(BasicBlock*) {}
43
44   BasicBlock *provideInitialHead() const { return createSentinel(); }
45   BasicBlock *ensureHead(BasicBlock*) const { return createSentinel(); }
46   static void noteHead(BasicBlock*, BasicBlock*) {}
47
48   static ValueSymbolTable *getSymTab(Function *ItemParent);
49 private:
50   mutable ilist_half_node<BasicBlock> Sentinel;
51 };
52
53 template<> struct ilist_traits<Argument>
54   : public SymbolTableListTraits<Argument, Function> {
55
56   Argument *createSentinel() const {
57     return static_cast<Argument*>(&Sentinel);
58   }
59   static void destroySentinel(Argument*) {}
60
61   Argument *provideInitialHead() const { return createSentinel(); }
62   Argument *ensureHead(Argument*) const { return createSentinel(); }
63   static void noteHead(Argument*, Argument*) {}
64
65   static ValueSymbolTable *getSymTab(Function *ItemParent);
66 private:
67   mutable ilist_half_node<Argument> Sentinel;
68 };
69
70 class Function : public GlobalValue,
71                  public ilist_node<Function> {
72 public:
73   typedef iplist<Argument> ArgumentListType;
74   typedef iplist<BasicBlock> BasicBlockListType;
75
76   // BasicBlock iterators...
77   typedef BasicBlockListType::iterator iterator;
78   typedef BasicBlockListType::const_iterator const_iterator;
79
80   typedef ArgumentListType::iterator arg_iterator;
81   typedef ArgumentListType::const_iterator const_arg_iterator;
82
83 private:
84   // Important things that make up a function!
85   BasicBlockListType  BasicBlocks;        ///< The basic blocks
86   mutable ArgumentListType ArgumentList;  ///< The formal arguments
87   ValueSymbolTable *SymTab;               ///< Symbol table of args/instructions
88   AttrListPtr AttributeList;              ///< Parameter attributes
89
90   // HasLazyArguments is stored in Value::SubclassData.
91   /*bool HasLazyArguments;*/
92                    
93   // The Calling Convention is stored in Value::SubclassData.
94   /*CallingConv::ID CallingConvention;*/
95
96   friend class SymbolTableListTraits<Function, Module>;
97
98   void setParent(Module *parent);
99
100   /// hasLazyArguments/CheckLazyArguments - The argument list of a function is
101   /// built on demand, so that the list isn't allocated until the first client
102   /// needs it.  The hasLazyArguments predicate returns true if the arg list
103   /// hasn't been set up yet.
104   bool hasLazyArguments() const {
105     return getSubclassDataFromValue() & 1;
106   }
107   void CheckLazyArguments() const {
108     if (hasLazyArguments())
109       BuildLazyArguments();
110   }
111   void BuildLazyArguments() const;
112
113   Function(const Function&) LLVM_DELETED_FUNCTION;
114   void operator=(const Function&) LLVM_DELETED_FUNCTION;
115
116   /// Function ctor - If the (optional) Module argument is specified, the
117   /// function is automatically inserted into the end of the function list for
118   /// the module.
119   ///
120   Function(FunctionType *Ty, LinkageTypes Linkage,
121            const Twine &N = "", Module *M = 0);
122
123 public:
124   static Function *Create(FunctionType *Ty, LinkageTypes Linkage,
125                           const Twine &N = "", Module *M = 0) {
126     return new(0) Function(Ty, Linkage, N, M);
127   }
128
129   ~Function();
130
131   Type *getReturnType() const;           // Return the type of the ret val
132   FunctionType *getFunctionType() const; // Return the FunctionType for me
133
134   /// getContext - Return a pointer to the LLVMContext associated with this 
135   /// function, or NULL if this function is not bound to a context yet.
136   LLVMContext &getContext() const;
137
138   /// isVarArg - Return true if this function takes a variable number of
139   /// arguments.
140   bool isVarArg() const;
141
142   /// getIntrinsicID - This method returns the ID number of the specified
143   /// function, or Intrinsic::not_intrinsic if the function is not an
144   /// instrinsic, or if the pointer is null.  This value is always defined to be
145   /// zero to allow easy checking for whether a function is intrinsic or not.
146   /// The particular intrinsic functions which correspond to this value are
147   /// defined in llvm/Intrinsics.h.
148   ///
149   unsigned getIntrinsicID() const LLVM_READONLY;
150   bool isIntrinsic() const { return getIntrinsicID() != 0; }
151
152   /// getCallingConv()/setCallingConv(CC) - These method get and set the
153   /// calling convention of this function.  The enum values for the known
154   /// calling conventions are defined in CallingConv.h.
155   CallingConv::ID getCallingConv() const {
156     return static_cast<CallingConv::ID>(getSubclassDataFromValue() >> 1);
157   }
158   void setCallingConv(CallingConv::ID CC) {
159     setValueSubclassData((getSubclassDataFromValue() & 1) |
160                          (static_cast<unsigned>(CC) << 1));
161   }
162   
163   /// getAttributes - Return the attribute list for this Function.
164   ///
165   const AttrListPtr &getAttributes() const { return AttributeList; }
166
167   /// setAttributes - Set the attribute list for this Function.
168   ///
169   void setAttributes(const AttrListPtr &attrs) { AttributeList = attrs; }
170
171   /// getFnAttributes - Return the function attributes for querying.
172   ///
173   Attributes getFnAttributes() const {
174     return AttributeList.getFnAttributes();
175   }
176
177   /// addFnAttr - Add function attributes to this function.
178   ///
179   void addFnAttr(Attributes N) { 
180     // Function Attributes are stored at ~0 index 
181     addAttribute(~0U, N);
182   }
183
184   /// removeFnAttr - Remove function attributes from this function.
185   ///
186   void removeFnAttr(Attributes N) {
187     // Function Attributes are stored at ~0 index 
188     removeAttribute(~0U, N);
189   }
190
191   /// hasGC/getGC/setGC/clearGC - The name of the garbage collection algorithm
192   ///                             to use during code generation.
193   bool hasGC() const;
194   const char *getGC() const;
195   void setGC(const char *Str);
196   void clearGC();
197
198
199   /// getRetAttributes - Return the return attributes for querying.
200   Attributes getRetAttributes() const {
201     return AttributeList.getRetAttributes();
202   }
203
204   /// getParamAttributes - Return the parameter attributes for querying.
205   Attributes getParamAttributes(unsigned Idx) const {
206     return AttributeList.getParamAttributes(Idx);
207   }
208
209   /// addAttribute - adds the attribute to the list of attributes.
210   void addAttribute(unsigned i, Attributes attr);
211   
212   /// removeAttribute - removes the attribute from the list of attributes.
213   void removeAttribute(unsigned i, Attributes attr);
214
215   /// @brief Extract the alignment for a call or parameter (0=unknown).
216   unsigned getParamAlignment(unsigned i) const {
217     return AttributeList.getParamAlignment(i);
218   }
219
220   /// @brief Determine if the function does not access memory.
221   bool doesNotAccessMemory() const {
222     return getFnAttributes().hasAttribute(Attributes::ReadNone);
223   }
224   void setDoesNotAccessMemory(bool DoesNotAccessMemory = true) {
225     if (DoesNotAccessMemory) addFnAttr(Attribute::ReadNone);
226     else removeFnAttr(Attribute::ReadNone);
227   }
228
229   /// @brief Determine if the function does not access or only reads memory.
230   bool onlyReadsMemory() const {
231     return doesNotAccessMemory() ||
232       getFnAttributes().hasAttribute(Attributes::ReadOnly);
233   }
234   void setOnlyReadsMemory(bool OnlyReadsMemory = true) {
235     if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly);
236     else removeFnAttr(Attribute::ReadOnly | Attribute::ReadNone);
237   }
238
239   /// @brief Determine if the function cannot return.
240   bool doesNotReturn() const {
241     return getFnAttributes().hasAttribute(Attributes::NoReturn);
242   }
243   void setDoesNotReturn(bool DoesNotReturn = true) {
244     if (DoesNotReturn) addFnAttr(Attribute::NoReturn);
245     else removeFnAttr(Attribute::NoReturn);
246   }
247
248   /// @brief Determine if the function cannot unwind.
249   bool doesNotThrow() const {
250     return getFnAttributes().hasAttribute(Attributes::NoUnwind);
251   }
252   void setDoesNotThrow(bool DoesNotThrow = true) {
253     if (DoesNotThrow) addFnAttr(Attribute::NoUnwind);
254     else removeFnAttr(Attribute::NoUnwind);
255   }
256
257   /// @brief True if the ABI mandates (or the user requested) that this
258   /// function be in a unwind table.
259   bool hasUWTable() const {
260     return getFnAttributes().hasAttribute(Attributes::UWTable);
261   }
262   void setHasUWTable(bool HasUWTable = true) {
263     if (HasUWTable)
264       addFnAttr(Attribute::UWTable);
265     else
266       removeFnAttr(Attribute::UWTable);
267   }
268
269   /// @brief True if this function needs an unwind table.
270   bool needsUnwindTableEntry() const {
271     return hasUWTable() || !doesNotThrow();
272   }
273
274   /// @brief Determine if the function returns a structure through first 
275   /// pointer argument.
276   bool hasStructRetAttr() const {
277     return getParamAttributes(1).hasAttribute(Attributes::StructRet);
278   }
279
280   /// @brief Determine if the parameter does not alias other parameters.
281   /// @param n The parameter to check. 1 is the first parameter, 0 is the return
282   bool doesNotAlias(unsigned n) const {
283     return getParamAttributes(n).hasAttribute(Attributes::NoAlias);
284   }
285   void setDoesNotAlias(unsigned n, bool DoesNotAlias = true) {
286     if (DoesNotAlias) addAttribute(n, Attribute::NoAlias);
287     else removeAttribute(n, Attribute::NoAlias);
288   }
289
290   /// @brief Determine if the parameter can be captured.
291   /// @param n The parameter to check. 1 is the first parameter, 0 is the return
292   bool doesNotCapture(unsigned n) const {
293     return getParamAttributes(n).hasAttribute(Attributes::NoCapture);
294   }
295   void setDoesNotCapture(unsigned n, bool DoesNotCapture = true) {
296     if (DoesNotCapture) addAttribute(n, Attribute::NoCapture);
297     else removeAttribute(n, Attribute::NoCapture);
298   }
299
300   /// copyAttributesFrom - copy all additional attributes (those not needed to
301   /// create a Function) from the Function Src to this one.
302   void copyAttributesFrom(const GlobalValue *Src);
303
304   /// deleteBody - This method deletes the body of the function, and converts
305   /// the linkage to external.
306   ///
307   void deleteBody() {
308     dropAllReferences();
309     setLinkage(ExternalLinkage);
310   }
311
312   /// removeFromParent - This method unlinks 'this' from the containing module,
313   /// but does not delete it.
314   ///
315   virtual void removeFromParent();
316
317   /// eraseFromParent - This method unlinks 'this' from the containing module
318   /// and deletes it.
319   ///
320   virtual void eraseFromParent();
321
322
323   /// Get the underlying elements of the Function... the basic block list is
324   /// empty for external functions.
325   ///
326   const ArgumentListType &getArgumentList() const {
327     CheckLazyArguments();
328     return ArgumentList;
329   }
330   ArgumentListType &getArgumentList() {
331     CheckLazyArguments();
332     return ArgumentList;
333   }
334   static iplist<Argument> Function::*getSublistAccess(Argument*) {
335     return &Function::ArgumentList;
336   }
337
338   const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
339         BasicBlockListType &getBasicBlockList()       { return BasicBlocks; }
340   static iplist<BasicBlock> Function::*getSublistAccess(BasicBlock*) {
341     return &Function::BasicBlocks;
342   }
343
344   const BasicBlock       &getEntryBlock() const   { return front(); }
345         BasicBlock       &getEntryBlock()         { return front(); }
346
347   //===--------------------------------------------------------------------===//
348   // Symbol Table Accessing functions...
349
350   /// getSymbolTable() - Return the symbol table...
351   ///
352   inline       ValueSymbolTable &getValueSymbolTable()       { return *SymTab; }
353   inline const ValueSymbolTable &getValueSymbolTable() const { return *SymTab; }
354
355
356   //===--------------------------------------------------------------------===//
357   // BasicBlock iterator forwarding functions
358   //
359   iterator                begin()       { return BasicBlocks.begin(); }
360   const_iterator          begin() const { return BasicBlocks.begin(); }
361   iterator                end  ()       { return BasicBlocks.end();   }
362   const_iterator          end  () const { return BasicBlocks.end();   }
363
364   size_t                   size() const { return BasicBlocks.size();  }
365   bool                    empty() const { return BasicBlocks.empty(); }
366   const BasicBlock       &front() const { return BasicBlocks.front(); }
367         BasicBlock       &front()       { return BasicBlocks.front(); }
368   const BasicBlock        &back() const { return BasicBlocks.back();  }
369         BasicBlock        &back()       { return BasicBlocks.back();  }
370
371   //===--------------------------------------------------------------------===//
372   // Argument iterator forwarding functions
373   //
374   arg_iterator arg_begin() {
375     CheckLazyArguments();
376     return ArgumentList.begin();
377   }
378   const_arg_iterator arg_begin() const {
379     CheckLazyArguments();
380     return ArgumentList.begin();
381   }
382   arg_iterator arg_end() {
383     CheckLazyArguments();
384     return ArgumentList.end();
385   }
386   const_arg_iterator arg_end() const {
387     CheckLazyArguments();
388     return ArgumentList.end();
389   }
390
391   size_t arg_size() const;
392   bool arg_empty() const;
393
394   /// viewCFG - This function is meant for use from the debugger.  You can just
395   /// say 'call F->viewCFG()' and a ghostview window should pop up from the
396   /// program, displaying the CFG of the current function with the code for each
397   /// basic block inside.  This depends on there being a 'dot' and 'gv' program
398   /// in your path.
399   ///
400   void viewCFG() const;
401
402   /// viewCFGOnly - This function is meant for use from the debugger.  It works
403   /// just like viewCFG, but it does not include the contents of basic blocks
404   /// into the nodes, just the label.  If you are only interested in the CFG
405   /// this can make the graph smaller.
406   ///
407   void viewCFGOnly() const;
408
409   /// Methods for support type inquiry through isa, cast, and dyn_cast:
410   static inline bool classof(const Function *) { return true; }
411   static inline bool classof(const Value *V) {
412     return V->getValueID() == Value::FunctionVal;
413   }
414
415   /// dropAllReferences() - This method causes all the subinstructions to "let
416   /// go" of all references that they are maintaining.  This allows one to
417   /// 'delete' a whole module at a time, even though there may be circular
418   /// references... first all references are dropped, and all use counts go to
419   /// zero.  Then everything is deleted for real.  Note that no operations are
420   /// valid on an object that has "dropped all references", except operator
421   /// delete.
422   ///
423   /// Since no other object in the module can have references into the body of a
424   /// function, dropping all references deletes the entire body of the function,
425   /// including any contained basic blocks.
426   ///
427   void dropAllReferences();
428
429   /// hasAddressTaken - returns true if there are any uses of this function
430   /// other than direct calls or invokes to it, or blockaddress expressions.
431   /// Optionally passes back an offending user for diagnostic purposes.
432   ///
433   bool hasAddressTaken(const User** = 0) const;
434
435   /// isDefTriviallyDead - Return true if it is trivially safe to remove
436   /// this function definition from the module (because it isn't externally
437   /// visible, does not have its address taken, and has no callers).  To make
438   /// this more accurate, call removeDeadConstantUsers first.
439   bool isDefTriviallyDead() const;
440
441   /// callsFunctionThatReturnsTwice - Return true if the function has a call to
442   /// setjmp or other function that gcc recognizes as "returning twice".
443   bool callsFunctionThatReturnsTwice() const;
444
445 private:
446   // Shadow Value::setValueSubclassData with a private forwarding method so that
447   // subclasses cannot accidentally use it.
448   void setValueSubclassData(unsigned short D) {
449     Value::setValueSubclassData(D);
450   }
451 };
452
453 inline ValueSymbolTable *
454 ilist_traits<BasicBlock>::getSymTab(Function *F) {
455   return F ? &F->getValueSymbolTable() : 0;
456 }
457
458 inline ValueSymbolTable *
459 ilist_traits<Argument>::getSymTab(Function *F) {
460   return F ? &F->getValueSymbolTable() : 0;
461 }
462
463 } // End llvm namespace
464
465 #endif