use different name for parameter to make it clear that we set DIDescriptor::GV
[oota-llvm.git] / include / llvm / Attributes.h
1 //===-- llvm/Attributes.h - Container for Attributes ---*---------- 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 simple types necessary to represent the
11 // attributes associated with functions and their calls.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_ATTRIBUTES_H
16 #define LLVM_ATTRIBUTES_H
17
18 #include "llvm/Support/MathExtras.h"
19 #include <cassert>
20 #include <string>
21
22 namespace llvm {
23 class Type;
24
25 /// Attributes - A bitset of attributes.
26 typedef unsigned Attributes;
27
28 namespace Attribute {
29
30 /// Function parameters and results can have attributes to indicate how they 
31 /// should be treated by optimizations and code generation. This enumeration 
32 /// lists the attributes that can be associated with parameters, function 
33 /// results or the function itself.
34 /// @brief Function attributes.
35
36 const Attributes None      = 0;     ///< No attributes have been set
37 const Attributes ZExt      = 1<<0;  ///< Zero extended before/after call
38 const Attributes SExt      = 1<<1;  ///< Sign extended before/after call
39 const Attributes NoReturn  = 1<<2;  ///< Mark the function as not returning
40 const Attributes InReg     = 1<<3;  ///< Force argument to be passed in register
41 const Attributes StructRet = 1<<4;  ///< Hidden pointer to structure to return
42 const Attributes NoUnwind  = 1<<5;  ///< Function doesn't unwind stack
43 const Attributes NoAlias   = 1<<6;  ///< Considered to not alias after call
44 const Attributes ByVal     = 1<<7;  ///< Pass structure by value
45 const Attributes Nest      = 1<<8;  ///< Nested function static chain
46 const Attributes ReadNone  = 1<<9;  ///< Function does not access memory
47 const Attributes ReadOnly  = 1<<10; ///< Function only reads from memory
48 const Attributes NoInline        = 1<<11; ///< inline=never 
49 const Attributes AlwaysInline    = 1<<12; ///< inline=always
50 const Attributes OptimizeForSize = 1<<13; ///< opt_size
51 const Attributes StackProtect    = 1<<14; ///< Stack protection.
52 const Attributes StackProtectReq = 1<<15; ///< Stack protection required.
53 const Attributes Alignment = 31<<16; ///< Alignment of parameter (5 bits)
54                                      // stored as log2 of alignment with +1 bias
55                                      // 0 means unaligned different from align 1
56 const Attributes NoCapture = 1<<21; ///< Function creates no aliases of pointer
57
58 /// @brief Attributes that only apply to function parameters.
59 const Attributes ParameterOnly = ByVal | Nest | StructRet | NoCapture;
60
61 /// @brief Attributes that only apply to function.
62 const Attributes FunctionOnly = NoReturn | NoUnwind | ReadNone | ReadOnly | 
63   NoInline | AlwaysInline | OptimizeForSize | StackProtect | StackProtectReq;
64
65 /// @brief Parameter attributes that do not apply to vararg call arguments.
66 const Attributes VarArgsIncompatible = StructRet;
67
68 /// @brief Attributes that are mutually incompatible.
69 const Attributes MutuallyIncompatible[4] = {
70   ByVal | InReg | Nest | StructRet,
71   ZExt  | SExt,
72   ReadNone | ReadOnly,
73   NoInline | AlwaysInline
74 };
75
76 /// @brief Which attributes cannot be applied to a type.
77 Attributes typeIncompatible(const Type *Ty);
78
79 /// This turns an int alignment (a power of 2, normally) into the
80 /// form used internally in Attributes.
81 inline Attributes constructAlignmentFromInt(unsigned i) {
82   assert(isPowerOf2_32(i) && "Alignment must be a power of two.");
83   assert(i <= 0x40000000 && "Alignment too large.");
84   return (Log2_32(i)+1) << 16;
85 }
86
87 /// The set of Attributes set in Attributes is converted to a
88 /// string of equivalent mnemonics. This is, presumably, for writing out
89 /// the mnemonics for the assembly writer. 
90 /// @brief Convert attribute bits to text
91 std::string getAsString(Attributes Attrs);
92 } // end namespace Attribute
93
94 /// This is just a pair of values to associate a set of attributes
95 /// with an index. 
96 struct AttributeWithIndex {
97   Attributes Attrs; ///< The attributes that are set, or'd together.
98   unsigned Index; ///< Index of the parameter for which the attributes apply.
99                   ///< Index 0 is used for return value attributes.
100                   ///< Index ~0U is used for function attributes.
101   
102   static AttributeWithIndex get(unsigned Idx, Attributes Attrs) {
103     AttributeWithIndex P;
104     P.Index = Idx;
105     P.Attrs = Attrs;
106     return P;
107   }
108 };
109   
110 //===----------------------------------------------------------------------===//
111 // AttrListPtr Smart Pointer
112 //===----------------------------------------------------------------------===//
113
114 class AttributeListImpl;
115   
116 /// AttrListPtr - This class manages the ref count for the opaque 
117 /// AttributeListImpl object and provides accessors for it.
118 class AttrListPtr {
119   /// AttrList - The attributes that we are managing.  This can be null
120   /// to represent the empty attributes list.
121   AttributeListImpl *AttrList;
122 public:
123   AttrListPtr() : AttrList(0) {}
124   AttrListPtr(const AttrListPtr &P);
125   const AttrListPtr &operator=(const AttrListPtr &RHS);
126   ~AttrListPtr();
127   
128   //===--------------------------------------------------------------------===//
129   // Attribute List Construction and Mutation
130   //===--------------------------------------------------------------------===//
131   
132   /// get - Return a Attributes list with the specified parameter in it.
133   static AttrListPtr get(const AttributeWithIndex *Attr, unsigned NumAttrs);
134   
135   /// get - Return a Attribute list with the parameters specified by the
136   /// consecutive random access iterator range.
137   template <typename Iter>
138   static AttrListPtr get(const Iter &I, const Iter &E) {
139     if (I == E) return AttrListPtr();  // Empty list.
140     return get(&*I, static_cast<unsigned>(E-I));
141   }
142
143   /// addAttr - Add the specified attribute at the specified index to this
144   /// attribute list.  Since attribute lists are immutable, this
145   /// returns the new list.
146   AttrListPtr addAttr(unsigned Idx, Attributes Attrs) const;
147   
148   /// removeAttr - Remove the specified attribute at the specified index from
149   /// this attribute list.  Since attribute lists are immutable, this
150   /// returns the new list.
151   AttrListPtr removeAttr(unsigned Idx, Attributes Attrs) const;
152   
153   //===--------------------------------------------------------------------===//
154   // Attribute List Accessors
155   //===--------------------------------------------------------------------===//
156   /// getParamAttributes - The attributes for the specified index are
157   /// returned. 
158   Attributes getParamAttributes(unsigned Idx) const {
159     assert (Idx && Idx != ~0U && "Invalid parameter index!");
160     return getAttributes(Idx);
161   }
162
163   /// getRetAttributes - The attributes for the ret value are
164   /// returned. 
165   Attributes getRetAttributes() const {
166     return getAttributes(0);
167   }
168
169   /// getFnAttributes - The function attributes are returned.
170   Attributes getFnAttributes() const {
171     return getAttributes(~0);
172   }
173   
174   /// paramHasAttr - Return true if the specified parameter index has the
175   /// specified attribute set.
176   bool paramHasAttr(unsigned Idx, Attributes Attr) const {
177     return getAttributes(Idx) & Attr;
178   }
179   
180   /// getParamAlignment - Return the alignment for the specified function
181   /// parameter.
182   unsigned getParamAlignment(unsigned Idx) const {
183     return 1ull << (((getAttributes(Idx) & Attribute::Alignment) >> 16) - 1);
184   }
185   
186   /// hasAttrSomewhere - Return true if the specified attribute is set for at
187   /// least one parameter or for the return value.
188   bool hasAttrSomewhere(Attributes Attr) const;
189
190   /// operator==/!= - Provide equality predicates.
191   bool operator==(const AttrListPtr &RHS) const { return AttrList == RHS.AttrList; }
192   bool operator!=(const AttrListPtr &RHS) const { return AttrList != RHS.AttrList; }
193   
194   void dump() const;
195
196   //===--------------------------------------------------------------------===//
197   // Attribute List Introspection
198   //===--------------------------------------------------------------------===//
199   
200   /// getRawPointer - Return a raw pointer that uniquely identifies this
201   /// attribute list. 
202   void *getRawPointer() const {
203     return AttrList;
204   }
205   
206   // Attributes are stored as a dense set of slots, where there is one
207   // slot for each argument that has an attribute.  This allows walking over the
208   // dense set instead of walking the sparse list of attributes.
209   
210   /// isEmpty - Return true if there are no attributes.
211   ///
212   bool isEmpty() const {
213     return AttrList == 0;
214   }
215   
216   /// getNumSlots - Return the number of slots used in this attribute list. 
217   /// This is the number of arguments that have an attribute set on them
218   /// (including the function itself).
219   unsigned getNumSlots() const;
220   
221   /// getSlot - Return the AttributeWithIndex at the specified slot.  This
222   /// holds a index number plus a set of attributes.
223   const AttributeWithIndex &getSlot(unsigned Slot) const;
224   
225 private:
226   explicit AttrListPtr(AttributeListImpl *L);
227
228   /// getAttributes - The attributes for the specified index are
229   /// returned.  Attributes for the result are denoted with Idx = 0.
230   Attributes getAttributes(unsigned Idx) const;
231
232 };
233
234 } // End llvm namespace
235
236 #endif