Add a DenseMapInfo class for the AttributeSet.
[oota-llvm.git] / include / llvm / IR / 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 /// \file
11 /// \brief This file contains the simple types necessary to represent the
12 /// attributes associated with functions and their calls.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_IR_ATTRIBUTES_H
17 #define LLVM_IR_ATTRIBUTES_H
18
19 #include "llvm/ADT/ArrayRef.h"
20 #include "llvm/ADT/DenseSet.h"
21 #include "llvm/ADT/FoldingSet.h"
22 #include <cassert>
23 #include <map>
24 #include <string>
25
26 namespace llvm {
27
28 class AttrBuilder;
29 class AttributeImpl;
30 class AttributeSetImpl;
31 class AttributeSetNode;
32 class Constant;
33 class LLVMContext;
34 class Type;
35
36 //===----------------------------------------------------------------------===//
37 /// \class
38 /// \brief Functions, function parameters, and return types can have attributes
39 /// to indicate how they should be treated by optimizations and code
40 /// generation. This class represents one of those attributes. It's light-weight
41 /// and should be passed around by-value.
42 class Attribute {
43 public:
44   /// This enumeration lists the attributes that can be associated with
45   /// parameters, function results, or the function itself.
46   ///
47   /// Note: The `uwtable' attribute is about the ABI or the user mandating an
48   /// entry in the unwind table. The `nounwind' attribute is about an exception
49   /// passing by the function.
50   ///
51   /// In a theoretical system that uses tables for profiling and SjLj for
52   /// exceptions, they would be fully independent. In a normal system that uses
53   /// tables for both, the semantics are:
54   ///
55   /// nil                = Needs an entry because an exception might pass by.
56   /// nounwind           = No need for an entry
57   /// uwtable            = Needs an entry because the ABI says so and because
58   ///                      an exception might pass by.
59   /// uwtable + nounwind = Needs an entry because the ABI says so.
60
61   enum AttrKind {
62     // IR-Level Attributes
63     None,                  ///< No attributes have been set
64     AddressSafety,         ///< Address safety checking is on.
65     Alignment,             ///< Alignment of parameter (5 bits)
66                            ///< stored as log2 of alignment with +1 bias
67                            ///< 0 means unaligned (different from align(1))
68     AlwaysInline,          ///< inline=always
69     ByVal,                 ///< Pass structure by value
70     InlineHint,            ///< Source said inlining was desirable
71     InReg,                 ///< Force argument to be passed in register
72     MinSize,               ///< Function must be optimized for size first
73     Naked,                 ///< Naked function
74     Nest,                  ///< Nested function static chain
75     NoAlias,               ///< Considered to not alias after call
76     NoCapture,             ///< Function creates no aliases of pointer
77     NoDuplicate,           ///< Call cannot be duplicated
78     NoImplicitFloat,       ///< Disable implicit floating point insts
79     NoInline,              ///< inline=never
80     NonLazyBind,           ///< Function is called early and/or
81                            ///< often, so lazy binding isn't worthwhile
82     NoRedZone,             ///< Disable redzone
83     NoReturn,              ///< Mark the function as not returning
84     NoUnwind,              ///< Function doesn't unwind stack
85     OptimizeForSize,       ///< opt_size
86     ReadNone,              ///< Function does not access memory
87     ReadOnly,              ///< Function only reads from memory
88     ReturnsTwice,          ///< Function can return twice
89     SExt,                  ///< Sign extended before/after call
90     StackAlignment,        ///< Alignment of stack for function (3 bits)
91                            ///< stored as log2 of alignment with +1 bias 0
92                            ///< means unaligned (different from
93                            ///< alignstack=(1))
94     StackProtect,          ///< Stack protection.
95     StackProtectReq,       ///< Stack protection required.
96     StackProtectStrong,    ///< Strong Stack protection.
97     StructRet,             ///< Hidden pointer to structure to return
98     UWTable,               ///< Function must be in a unwind table
99     ZExt,                  ///< Zero extended before/after call
100
101     EndAttrKinds,          ///< Sentinal value useful for loops
102
103     AttrKindEmptyKey,      ///< Empty key value for DenseMapInfo
104     AttrKindTombstoneKey   ///< Tombstone key value for DenseMapInfo
105   };
106 private:
107   AttributeImpl *pImpl;
108   Attribute(AttributeImpl *A) : pImpl(A) {}
109 public:
110   Attribute() : pImpl(0) {}
111
112   //===--------------------------------------------------------------------===//
113   // Attribute Construction
114   //===--------------------------------------------------------------------===//
115
116   /// \brief Return a uniquified Attribute object.
117   static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
118   static Attribute get(LLVMContext &Context, StringRef Kind,
119                        StringRef Val = StringRef());
120
121   /// \brief Return a uniquified Attribute object that has the specific
122   /// alignment set.
123   static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
124   static Attribute getWithStackAlignment(LLVMContext &Context, uint64_t Align);
125
126   //===--------------------------------------------------------------------===//
127   // Attribute Accessors
128   //===--------------------------------------------------------------------===//
129
130   /// \brief Return true if the attribute is an Attribute::AttrKind type.
131   bool isEnumAttribute() const;
132
133   /// \brief Return true if the attribute is an alignment attribute.
134   bool isAlignAttribute() const;
135
136   /// \brief Return true if the attribute is a string (target-dependent)
137   /// attribute.
138   bool isStringAttribute() const;
139
140   /// \brief Return true if the attribute is present.
141   bool hasAttribute(AttrKind Val) const;
142
143   /// \brief Return true if the target-dependent attribute is present.
144   bool hasAttribute(StringRef Val) const;
145
146   /// \brief Return the attribute's kind as an enum (Attribute::AttrKind). This
147   /// requires the attribute to be an enum or alignment attribute.
148   Attribute::AttrKind getKindAsEnum() const;
149
150   /// \brief Return the attribute's value as an integer. This requires that the
151   /// attribute be an alignment attribute.
152   uint64_t getValueAsInt() const;
153
154   /// \brief Return the attribute's kind as a string. This requires the
155   /// attribute to be a string attribute.
156   StringRef getKindAsString() const;
157
158   /// \brief Return the attribute's value as a string. This requires the
159   /// attribute to be a string attribute.
160   StringRef getValueAsString() const;
161
162   /// \brief Returns the alignment field of an attribute as a byte alignment
163   /// value.
164   unsigned getAlignment() const;
165
166   /// \brief Returns the stack alignment field of an attribute as a byte
167   /// alignment value.
168   unsigned getStackAlignment() const;
169
170   /// \brief The Attribute is converted to a string of equivalent mnemonic. This
171   /// is, presumably, for writing out the mnemonics for the assembly writer.
172   std::string getAsString() const;
173
174   /// \brief Equality and non-equality operators.
175   bool operator==(Attribute A) const { return pImpl == A.pImpl; }
176   bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
177
178   /// \brief Less-than operator. Useful for sorting the attributes list.
179   bool operator<(Attribute A) const;
180
181   void Profile(FoldingSetNodeID &ID) const {
182     ID.AddPointer(pImpl);
183   }
184 };
185
186 //===----------------------------------------------------------------------===//
187 /// \class
188 /// \brief Provide DenseMapInfo for Attribute::AttrKinds. This is used by
189 /// AttrBuilder.
190 template<> struct DenseMapInfo<Attribute::AttrKind> {
191   static inline Attribute::AttrKind getEmptyKey() {
192     return Attribute::AttrKindEmptyKey;
193   }
194   static inline Attribute::AttrKind getTombstoneKey() {
195     return Attribute::AttrKindTombstoneKey;
196   }
197   static unsigned getHashValue(const Attribute::AttrKind &Val) {
198     return Val * 37U;
199   }
200   static bool isEqual(const Attribute::AttrKind &LHS,
201                       const Attribute::AttrKind &RHS) {
202     return LHS == RHS;
203   }
204 };
205
206 //===----------------------------------------------------------------------===//
207 /// \class
208 /// \brief This class holds the attributes for a function, its return value, and
209 /// its parameters. You access the attributes for each of them via an index into
210 /// the AttributeSet object. The function attributes are at index
211 /// `AttributeSet::FunctionIndex', the return value is at index
212 /// `AttributeSet::ReturnIndex', and the attributes for the parameters start at
213 /// index `1'.
214 class AttributeSet {
215 public:
216   enum AttrIndex {
217     ReturnIndex = 0U,
218     FunctionIndex = ~0U
219   };
220 private:
221   friend class AttrBuilder;
222   friend class AttributeSetImpl;
223   template <typename Ty> friend struct DenseMapInfo;
224
225   /// \brief The attributes that we are managing. This can be null to represent
226   /// the empty attributes list.
227   AttributeSetImpl *pImpl;
228
229   /// \brief The attributes for the specified index are returned.
230   AttributeSetNode *getAttributes(unsigned Idx) const;
231
232   /// \brief Create an AttributeSet with the specified parameters in it.
233   static AttributeSet get(LLVMContext &C,
234                           ArrayRef<std::pair<unsigned, Attribute> > Attrs);
235   static AttributeSet get(LLVMContext &C,
236                           ArrayRef<std::pair<unsigned,
237                                              AttributeSetNode*> > Attrs);
238
239   static AttributeSet getImpl(LLVMContext &C,
240                               ArrayRef<std::pair<unsigned,
241                                                  AttributeSetNode*> > Attrs);
242
243
244   explicit AttributeSet(AttributeSetImpl *LI) : pImpl(LI) {}
245 public:
246   AttributeSet() : pImpl(0) {}
247   AttributeSet(const AttributeSet &P) : pImpl(P.pImpl) {}
248   const AttributeSet &operator=(const AttributeSet &RHS) {
249     pImpl = RHS.pImpl;
250     return *this;
251   }
252
253   //===--------------------------------------------------------------------===//
254   // AttributeSet Construction and Mutation
255   //===--------------------------------------------------------------------===//
256
257   /// \brief Return an AttributeSet with the specified parameters in it.
258   static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
259   static AttributeSet get(LLVMContext &C, unsigned Idx,
260                           ArrayRef<Attribute::AttrKind> Kind);
261   static AttributeSet get(LLVMContext &C, unsigned Idx, AttrBuilder &B);
262
263   /// \brief Add an attribute to the attribute set at the given index. Since
264   /// attribute sets are immutable, this returns a new set.
265   AttributeSet addAttribute(LLVMContext &C, unsigned Idx,
266                             Attribute::AttrKind Attr) const;
267
268   /// \brief Add attributes to the attribute set at the given index. Since
269   /// attribute sets are immutable, this returns a new set.
270   AttributeSet addAttributes(LLVMContext &C, unsigned Idx,
271                              AttributeSet Attrs) const;
272
273   /// \brief Remove the specified attribute at the specified index from this
274   /// attribute list. Since attribute lists are immutable, this returns the new
275   /// list.
276   AttributeSet removeAttribute(LLVMContext &C, unsigned Idx, 
277                                Attribute::AttrKind Attr) const;
278
279   /// \brief Remove the specified attributes at the specified index from this
280   /// attribute list. Since attribute lists are immutable, this returns the new
281   /// list.
282   AttributeSet removeAttributes(LLVMContext &C, unsigned Idx, 
283                                 AttributeSet Attrs) const;
284
285   //===--------------------------------------------------------------------===//
286   // AttributeSet Accessors
287   //===--------------------------------------------------------------------===//
288
289   /// \brief The attributes for the specified index are returned.
290   AttributeSet getParamAttributes(unsigned Idx) const;
291
292   /// \brief The attributes for the ret value are returned.
293   AttributeSet getRetAttributes() const;
294
295   /// \brief The function attributes are returned.
296   AttributeSet getFnAttributes() const;
297
298   /// \brief Return true if the attribute exists at the given index.
299   bool hasAttribute(unsigned Index, Attribute::AttrKind Kind) const;
300
301   /// \brief Return true if attribute exists at the given index.
302   bool hasAttributes(unsigned Index) const;
303
304   /// \brief Return true if the specified attribute is set for at least one
305   /// parameter or for the return value.
306   bool hasAttrSomewhere(Attribute::AttrKind Attr) const;
307
308   /// \brief Return the alignment for the specified function parameter.
309   unsigned getParamAlignment(unsigned Idx) const;
310
311   /// \brief Get the stack alignment.
312   unsigned getStackAlignment(unsigned Index) const;
313
314   /// \brief Return the attributes at the index as a string.
315   std::string getAsString(unsigned Index) const;
316
317   typedef ArrayRef<Attribute>::iterator iterator;
318
319   iterator begin(unsigned Idx) const;
320   iterator end(unsigned Idx) const;
321
322   /// operator==/!= - Provide equality predicates.
323   bool operator==(const AttributeSet &RHS) const {
324     return pImpl == RHS.pImpl;
325   }
326   bool operator!=(const AttributeSet &RHS) const {
327     return pImpl != RHS.pImpl;
328   }
329
330   //===--------------------------------------------------------------------===//
331   // AttributeSet Introspection
332   //===--------------------------------------------------------------------===//
333
334   // FIXME: Remove this.
335   uint64_t Raw(unsigned Index) const;
336
337   /// \brief Return a raw pointer that uniquely identifies this attribute list.
338   void *getRawPointer() const {
339     return pImpl;
340   }
341
342   /// \brief Return true if there are no attributes.
343   bool isEmpty() const {
344     return getNumSlots() == 0;
345   }
346
347   /// \brief Return the number of slots used in this attribute list.  This is
348   /// the number of arguments that have an attribute set on them (including the
349   /// function itself).
350   unsigned getNumSlots() const;
351
352   /// \brief Return the index for the given slot.
353   uint64_t getSlotIndex(unsigned Slot) const;
354
355   /// \brief Return the attributes at the given slot.
356   AttributeSet getSlotAttributes(unsigned Slot) const;
357
358   void dump() const;
359 };
360
361 //===----------------------------------------------------------------------===//
362 /// \class
363 /// \brief Provide DenseMapInfo for AttributeSet.
364 template<> struct DenseMapInfo<AttributeSet> {
365   static inline AttributeSet getEmptyKey() {
366     uintptr_t Val = static_cast<uintptr_t>(-1);
367     Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
368     return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
369   }
370   static inline AttributeSet getTombstoneKey() {
371     uintptr_t Val = static_cast<uintptr_t>(-2);
372     Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
373     return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
374   }
375   static unsigned getHashValue(AttributeSet AS) {
376     return (unsigned((uintptr_t)AS.pImpl) >> 4) ^
377            (unsigned((uintptr_t)AS.pImpl) >> 9);
378   }
379   static bool isEqual(AttributeSet LHS, AttributeSet RHS) { return LHS == RHS; }
380 };
381
382 //===----------------------------------------------------------------------===//
383 /// \class
384 /// \brief This class is used in conjunction with the Attribute::get method to
385 /// create an Attribute object. The object itself is uniquified. The Builder's
386 /// value, however, is not. So this can be used as a quick way to test for
387 /// equality, presence of attributes, etc.
388 class AttrBuilder {
389   DenseSet<Attribute::AttrKind> Attrs;
390   std::map<std::string, std::string> TargetDepAttrs;
391   uint64_t Alignment;
392   uint64_t StackAlignment;
393 public:
394   AttrBuilder() : Alignment(0), StackAlignment(0) {}
395   explicit AttrBuilder(uint64_t Val) : Alignment(0), StackAlignment(0) {
396     addRawValue(Val);
397   }
398   AttrBuilder(const Attribute &A) : Alignment(0), StackAlignment(0) {
399     addAttribute(A);
400   }
401   AttrBuilder(AttributeSet AS, unsigned Idx);
402   AttrBuilder(const AttrBuilder &B)
403     : Attrs(B.Attrs),
404       TargetDepAttrs(B.TargetDepAttrs.begin(), B.TargetDepAttrs.end()),
405       Alignment(B.Alignment), StackAlignment(B.StackAlignment) {}
406
407   void clear();
408
409   /// \brief Add an attribute to the builder.
410   AttrBuilder &addAttribute(Attribute::AttrKind Val);
411
412   /// \brief Add the Attribute object to the builder.
413   AttrBuilder &addAttribute(Attribute A);
414
415   /// \brief Add the target-dependent attribute to the builder.
416   AttrBuilder &addAttribute(StringRef A, StringRef V);
417
418   /// \brief Remove an attribute from the builder.
419   AttrBuilder &removeAttribute(Attribute::AttrKind Val);
420
421   /// \brief Remove the attributes from the builder.
422   AttrBuilder &removeAttributes(AttributeSet A, uint64_t Index);
423
424   /// \brief Remove the target-dependent attribute to the builder.
425   AttrBuilder &removeAttribute(StringRef A);
426
427   /// \brief Add the attributes from the builder.
428   AttrBuilder &merge(const AttrBuilder &B);
429
430   /// \brief Return true if the builder has the specified attribute.
431   bool contains(Attribute::AttrKind A) const;
432
433   /// \brief Return true if the builder has the specified target-dependent
434   /// attribute.
435   bool contains(StringRef A) const;
436
437   /// \brief Return true if the builder has IR-level attributes.
438   bool hasAttributes() const;
439
440   /// \brief Return true if the builder has any attribute that's in the
441   /// specified attribute.
442   bool hasAttributes(AttributeSet A, uint64_t Index) const;
443
444   /// \brief Return true if the builder has an alignment attribute.
445   bool hasAlignmentAttr() const;
446
447   /// \brief Retrieve the alignment attribute, if it exists.
448   uint64_t getAlignment() const { return Alignment; }
449
450   /// \brief Retrieve the stack alignment attribute, if it exists.
451   uint64_t getStackAlignment() const { return StackAlignment; }
452
453   /// \brief This turns an int alignment (which must be a power of 2) into the
454   /// form used internally in Attribute.
455   AttrBuilder &addAlignmentAttr(unsigned Align);
456
457   /// \brief This turns an int stack alignment (which must be a power of 2) into
458   /// the form used internally in Attribute.
459   AttrBuilder &addStackAlignmentAttr(unsigned Align);
460
461   // Iterators for target-independent attributes.
462   typedef DenseSet<Attribute::AttrKind>::iterator       iterator;
463   typedef DenseSet<Attribute::AttrKind>::const_iterator const_iterator;
464
465   iterator begin()             { return Attrs.begin(); }
466   iterator end()               { return Attrs.end(); }
467
468   const_iterator begin() const { return Attrs.begin(); }
469   const_iterator end() const   { return Attrs.end(); }
470
471   // Iterators for target-dependent attributes.
472   typedef std::pair<std::string, std::string>                td_type;
473   typedef std::map<std::string, std::string>::iterator       td_iterator;
474   typedef std::map<std::string, std::string>::const_iterator td_const_iterator;
475
476   td_iterator td_begin()             { return TargetDepAttrs.begin(); }
477   td_iterator td_end()               { return TargetDepAttrs.end(); }
478
479   td_const_iterator td_begin() const { return TargetDepAttrs.begin(); }
480   td_const_iterator td_end() const   { return TargetDepAttrs.end(); }
481
482   /// \brief Remove attributes that are used on functions only.
483   void removeFunctionOnlyAttrs() {
484     removeAttribute(Attribute::NoReturn)
485       .removeAttribute(Attribute::NoUnwind)
486       .removeAttribute(Attribute::ReadNone)
487       .removeAttribute(Attribute::ReadOnly)
488       .removeAttribute(Attribute::NoInline)
489       .removeAttribute(Attribute::AlwaysInline)
490       .removeAttribute(Attribute::OptimizeForSize)
491       .removeAttribute(Attribute::StackProtect)
492       .removeAttribute(Attribute::StackProtectReq)
493       .removeAttribute(Attribute::StackProtectStrong)
494       .removeAttribute(Attribute::NoRedZone)
495       .removeAttribute(Attribute::NoImplicitFloat)
496       .removeAttribute(Attribute::Naked)
497       .removeAttribute(Attribute::InlineHint)
498       .removeAttribute(Attribute::StackAlignment)
499       .removeAttribute(Attribute::UWTable)
500       .removeAttribute(Attribute::NonLazyBind)
501       .removeAttribute(Attribute::ReturnsTwice)
502       .removeAttribute(Attribute::AddressSafety)
503       .removeAttribute(Attribute::MinSize)
504       .removeAttribute(Attribute::NoDuplicate);
505   }
506
507   bool operator==(const AttrBuilder &B);
508   bool operator!=(const AttrBuilder &B) {
509     return !(*this == B);
510   }
511
512   // FIXME: Remove this in 4.0.
513
514   /// \brief Add the raw value to the internal representation.
515   AttrBuilder &addRawValue(uint64_t Val);
516 };
517
518 namespace AttributeFuncs {
519
520 /// \brief Which attributes cannot be applied to a type.
521 AttributeSet typeIncompatible(Type *Ty, uint64_t Index);
522
523 } // end AttributeFuncs namespace
524
525 } // end llvm namespace
526
527 #endif