]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/include/llvm/IR/Attributes.h
Merge ^/head r317808 through r317970.
[FreeBSD/FreeBSD.git] / contrib / llvm / 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/FoldingSet.h"
21 #include "llvm/ADT/iterator_range.h"
22 #include "llvm/ADT/Optional.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/Support/PointerLikeTypeTraits.h"
25 #include "llvm-c/Types.h"
26 #include <bitset>
27 #include <cassert>
28 #include <cstdint>
29 #include <map>
30 #include <string>
31 #include <utility>
32
33 namespace llvm {
34
35 class AttrBuilder;
36 class AttributeImpl;
37 class AttributeListImpl;
38 class AttributeSetNode;
39 template<typename T> struct DenseMapInfo;
40 class Function;
41 class LLVMContext;
42 class Type;
43
44 //===----------------------------------------------------------------------===//
45 /// \class
46 /// \brief Functions, function parameters, and return types can have attributes
47 /// to indicate how they should be treated by optimizations and code
48 /// generation. This class represents one of those attributes. It's light-weight
49 /// and should be passed around by-value.
50 class Attribute {
51 public:
52   /// This enumeration lists the attributes that can be associated with
53   /// parameters, function results, or the function itself.
54   ///
55   /// Note: The `uwtable' attribute is about the ABI or the user mandating an
56   /// entry in the unwind table. The `nounwind' attribute is about an exception
57   /// passing by the function.
58   ///
59   /// In a theoretical system that uses tables for profiling and SjLj for
60   /// exceptions, they would be fully independent. In a normal system that uses
61   /// tables for both, the semantics are:
62   ///
63   /// nil                = Needs an entry because an exception might pass by.
64   /// nounwind           = No need for an entry
65   /// uwtable            = Needs an entry because the ABI says so and because
66   ///                      an exception might pass by.
67   /// uwtable + nounwind = Needs an entry because the ABI says so.
68
69   enum AttrKind {
70     // IR-Level Attributes
71     None,                  ///< No attributes have been set
72     #define GET_ATTR_ENUM
73     #include "llvm/IR/Attributes.gen"
74     EndAttrKinds           ///< Sentinal value useful for loops
75   };
76
77 private:
78   AttributeImpl *pImpl = nullptr;
79
80   Attribute(AttributeImpl *A) : pImpl(A) {}
81
82 public:
83   Attribute() = default;
84
85   //===--------------------------------------------------------------------===//
86   // Attribute Construction
87   //===--------------------------------------------------------------------===//
88
89   /// \brief Return a uniquified Attribute object.
90   static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
91   static Attribute get(LLVMContext &Context, StringRef Kind,
92                        StringRef Val = StringRef());
93
94   /// \brief Return a uniquified Attribute object that has the specific
95   /// alignment set.
96   static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
97   static Attribute getWithStackAlignment(LLVMContext &Context, uint64_t Align);
98   static Attribute getWithDereferenceableBytes(LLVMContext &Context,
99                                               uint64_t Bytes);
100   static Attribute getWithDereferenceableOrNullBytes(LLVMContext &Context,
101                                                      uint64_t Bytes);
102   static Attribute getWithAllocSizeArgs(LLVMContext &Context,
103                                         unsigned ElemSizeArg,
104                                         const Optional<unsigned> &NumElemsArg);
105
106   //===--------------------------------------------------------------------===//
107   // Attribute Accessors
108   //===--------------------------------------------------------------------===//
109
110   /// \brief Return true if the attribute is an Attribute::AttrKind type.
111   bool isEnumAttribute() const;
112
113   /// \brief Return true if the attribute is an integer attribute.
114   bool isIntAttribute() const;
115
116   /// \brief Return true if the attribute is a string (target-dependent)
117   /// attribute.
118   bool isStringAttribute() const;
119
120   /// \brief Return true if the attribute is present.
121   bool hasAttribute(AttrKind Val) const;
122
123   /// \brief Return true if the target-dependent attribute is present.
124   bool hasAttribute(StringRef Val) const;
125
126   /// \brief Return the attribute's kind as an enum (Attribute::AttrKind). This
127   /// requires the attribute to be an enum or integer attribute.
128   Attribute::AttrKind getKindAsEnum() const;
129
130   /// \brief Return the attribute's value as an integer. This requires that the
131   /// attribute be an integer attribute.
132   uint64_t getValueAsInt() const;
133
134   /// \brief Return the attribute's kind as a string. This requires the
135   /// attribute to be a string attribute.
136   StringRef getKindAsString() const;
137
138   /// \brief Return the attribute's value as a string. This requires the
139   /// attribute to be a string attribute.
140   StringRef getValueAsString() const;
141
142   /// \brief Returns the alignment field of an attribute as a byte alignment
143   /// value.
144   unsigned getAlignment() const;
145
146   /// \brief Returns the stack alignment field of an attribute as a byte
147   /// alignment value.
148   unsigned getStackAlignment() const;
149
150   /// \brief Returns the number of dereferenceable bytes from the
151   /// dereferenceable attribute.
152   uint64_t getDereferenceableBytes() const;
153
154   /// \brief Returns the number of dereferenceable_or_null bytes from the
155   /// dereferenceable_or_null attribute.
156   uint64_t getDereferenceableOrNullBytes() const;
157
158   /// Returns the argument numbers for the allocsize attribute (or pair(0, 0)
159   /// if not known).
160   std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
161
162   /// \brief The Attribute is converted to a string of equivalent mnemonic. This
163   /// is, presumably, for writing out the mnemonics for the assembly writer.
164   std::string getAsString(bool InAttrGrp = false) const;
165
166   /// \brief Equality and non-equality operators.
167   bool operator==(Attribute A) const { return pImpl == A.pImpl; }
168   bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
169
170   /// \brief Less-than operator. Useful for sorting the attributes list.
171   bool operator<(Attribute A) const;
172
173   void Profile(FoldingSetNodeID &ID) const {
174     ID.AddPointer(pImpl);
175   }
176
177   /// \brief Return a raw pointer that uniquely identifies this attribute.
178   void *getRawPointer() const {
179     return pImpl;
180   }
181
182   /// \brief Get an attribute from a raw pointer created by getRawPointer.
183   static Attribute fromRawPointer(void *RawPtr) {
184     return Attribute(reinterpret_cast<AttributeImpl*>(RawPtr));
185   }
186 };
187
188 // Specialized opaque value conversions.
189 inline LLVMAttributeRef wrap(Attribute Attr) {
190   return reinterpret_cast<LLVMAttributeRef>(Attr.getRawPointer());
191 }
192
193 // Specialized opaque value conversions.
194 inline Attribute unwrap(LLVMAttributeRef Attr) {
195   return Attribute::fromRawPointer(Attr);
196 }
197
198 //===----------------------------------------------------------------------===//
199 /// \class
200 /// This class holds the attributes for a particular argument, parameter,
201 /// function, or return value. It is an immutable value type that is cheap to
202 /// copy. Adding and removing enum attributes is intended to be fast, but adding
203 /// and removing string or integer attributes involves a FoldingSet lookup.
204 class AttributeSet {
205   // TODO: Extract AvailableAttrs from AttributeSetNode and store them here.
206   // This will allow an efficient implementation of addAttribute and
207   // removeAttribute for enum attrs.
208
209   /// Private implementation pointer.
210   AttributeSetNode *SetNode = nullptr;
211
212   friend AttributeListImpl;
213   template <typename Ty> friend struct DenseMapInfo;
214
215 private:
216   explicit AttributeSet(AttributeSetNode *ASN) : SetNode(ASN) {}
217
218 public:
219   /// AttributeSet is a trivially copyable value type.
220   AttributeSet() = default;
221   AttributeSet(const AttributeSet &) = default;
222   ~AttributeSet() = default;
223
224   static AttributeSet get(LLVMContext &C, const AttrBuilder &B);
225   static AttributeSet get(LLVMContext &C, ArrayRef<Attribute> Attrs);
226
227   bool operator==(const AttributeSet &O) { return SetNode == O.SetNode; }
228   bool operator!=(const AttributeSet &O) { return !(*this == O); }
229
230   unsigned getNumAttributes() const;
231
232   bool hasAttributes() const { return SetNode != nullptr; }
233
234   bool hasAttribute(Attribute::AttrKind Kind) const;
235   bool hasAttribute(StringRef Kind) const;
236
237   Attribute getAttribute(Attribute::AttrKind Kind) const;
238   Attribute getAttribute(StringRef Kind) const;
239
240   unsigned getAlignment() const;
241   unsigned getStackAlignment() const;
242   uint64_t getDereferenceableBytes() const;
243   uint64_t getDereferenceableOrNullBytes() const;
244   std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
245   std::string getAsString(bool InAttrGrp = false) const;
246
247   using iterator = const Attribute *;
248
249   iterator begin() const;
250   iterator end() const;
251 };
252
253 //===----------------------------------------------------------------------===//
254 /// \class
255 /// \brief Provide DenseMapInfo for AttributeSet.
256 template <> struct DenseMapInfo<AttributeSet> {
257   static inline AttributeSet getEmptyKey() {
258     uintptr_t Val = static_cast<uintptr_t>(-1);
259     Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
260     return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
261   }
262
263   static inline AttributeSet getTombstoneKey() {
264     uintptr_t Val = static_cast<uintptr_t>(-2);
265     Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
266     return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
267   }
268
269   static unsigned getHashValue(AttributeSet AS) {
270     return (unsigned((uintptr_t)AS.SetNode) >> 4) ^
271            (unsigned((uintptr_t)AS.SetNode) >> 9);
272   }
273
274   static bool isEqual(AttributeSet LHS, AttributeSet RHS) { return LHS == RHS; }
275 };
276
277 //===----------------------------------------------------------------------===//
278 /// \class
279 /// \brief This class holds the attributes for a function, its return value, and
280 /// its parameters. You access the attributes for each of them via an index into
281 /// the AttributeList object. The function attributes are at index
282 /// `AttributeList::FunctionIndex', the return value is at index
283 /// `AttributeList::ReturnIndex', and the attributes for the parameters start at
284 /// index `1'.
285 class AttributeList {
286 public:
287   enum AttrIndex : unsigned {
288     ReturnIndex = 0U,
289     FunctionIndex = ~0U,
290     FirstArgIndex = 1,
291   };
292
293 private:
294   friend class AttrBuilder;
295   friend class AttributeListImpl;
296   friend class AttributeSet;
297   friend class AttributeSetNode;
298
299   template <typename Ty> friend struct DenseMapInfo;
300
301   /// \brief The attributes that we are managing. This can be null to represent
302   /// the empty attributes list.
303   AttributeListImpl *pImpl = nullptr;
304
305 public:
306   /// \brief Create an AttributeList with the specified parameters in it.
307   static AttributeList get(LLVMContext &C,
308                            ArrayRef<std::pair<unsigned, Attribute>> Attrs);
309   static AttributeList
310   get(LLVMContext &C, ArrayRef<std::pair<unsigned, AttributeSet>> Attrs);
311
312   /// \brief Create an AttributeList from attribute sets for a function, its
313   /// return value, and all of its arguments.
314   static AttributeList get(LLVMContext &C, AttributeSet FnAttrs,
315                            AttributeSet RetAttrs,
316                            ArrayRef<AttributeSet> ArgAttrs);
317
318   static AttributeList
319   getImpl(LLVMContext &C,
320           ArrayRef<std::pair<unsigned, AttributeSet>> Attrs);
321
322 private:
323   explicit AttributeList(AttributeListImpl *LI) : pImpl(LI) {}
324
325 public:
326   AttributeList() = default;
327
328   //===--------------------------------------------------------------------===//
329   // AttributeList Construction and Mutation
330   //===--------------------------------------------------------------------===//
331
332   /// \brief Return an AttributeList with the specified parameters in it.
333   static AttributeList get(LLVMContext &C, ArrayRef<AttributeList> Attrs);
334   static AttributeList get(LLVMContext &C, unsigned Index,
335                            ArrayRef<Attribute::AttrKind> Kinds);
336   static AttributeList get(LLVMContext &C, unsigned Index,
337                            ArrayRef<StringRef> Kind);
338   static AttributeList get(LLVMContext &C, unsigned Index,
339                            const AttrBuilder &B);
340
341   /// Add an argument attribute to the list. Returns a new list because
342   /// attribute lists are immutable.
343   AttributeList addParamAttribute(LLVMContext &C, unsigned ArgNo,
344                                   Attribute::AttrKind Kind) const {
345     return addAttribute(C, ArgNo + FirstArgIndex, Kind);
346   }
347
348   /// \brief Add an attribute to the attribute set at the given index. Because
349   /// attribute sets are immutable, this returns a new set.
350   AttributeList addAttribute(LLVMContext &C, unsigned Index,
351                              Attribute::AttrKind Kind) const;
352
353   /// \brief Add an attribute to the attribute set at the given index. Because
354   /// attribute sets are immutable, this returns a new set.
355   AttributeList addAttribute(LLVMContext &C, unsigned Index, StringRef Kind,
356                              StringRef Value = StringRef()) const;
357
358   /// Add an attribute to the attribute set at the given indices. Because
359   /// attribute sets are immutable, this returns a new set.
360   AttributeList addAttribute(LLVMContext &C, ArrayRef<unsigned> Indices,
361                              Attribute A) const;
362
363   /// \brief Add attributes to the attribute set at the given index. Because
364   /// attribute sets are immutable, this returns a new set.
365   AttributeList addAttributes(LLVMContext &C, unsigned Index,
366                               const AttrBuilder &B) const;
367
368   /// \brief Remove the specified attribute at the specified index from this
369   /// attribute list. Because attribute lists are immutable, this returns the
370   /// new list.
371   AttributeList removeAttribute(LLVMContext &C, unsigned Index,
372                                 Attribute::AttrKind Kind) const;
373
374   /// \brief Remove the specified attribute at the specified index from this
375   /// attribute list. Because attribute lists are immutable, this returns the
376   /// new list.
377   AttributeList removeAttribute(LLVMContext &C, unsigned Index,
378                                 StringRef Kind) const;
379
380   /// \brief Remove the specified attributes at the specified index from this
381   /// attribute list. Because attribute lists are immutable, this returns the
382   /// new list.
383   AttributeList removeAttributes(LLVMContext &C, unsigned Index,
384                                  const AttrBuilder &AttrsToRemove) const;
385
386   /// \brief Remove all attributes at the specified index from this
387   /// attribute list. Because attribute lists are immutable, this returns the
388   /// new list.
389   AttributeList removeAttributes(LLVMContext &C, unsigned Index) const;
390
391   /// \brief Add the dereferenceable attribute to the attribute set at the given
392   /// index. Because attribute sets are immutable, this returns a new set.
393   AttributeList addDereferenceableAttr(LLVMContext &C, unsigned Index,
394                                        uint64_t Bytes) const;
395
396   /// \brief Add the dereferenceable_or_null attribute to the attribute set at
397   /// the given index. Because attribute sets are immutable, this returns a new
398   /// set.
399   AttributeList addDereferenceableOrNullAttr(LLVMContext &C, unsigned Index,
400                                              uint64_t Bytes) const;
401
402   /// Add the allocsize attribute to the attribute set at the given index.
403   /// Because attribute sets are immutable, this returns a new set.
404   AttributeList addAllocSizeAttr(LLVMContext &C, unsigned Index,
405                                  unsigned ElemSizeArg,
406                                  const Optional<unsigned> &NumElemsArg);
407
408   //===--------------------------------------------------------------------===//
409   // AttributeList Accessors
410   //===--------------------------------------------------------------------===//
411
412   /// \brief Retrieve the LLVM context.
413   LLVMContext &getContext() const;
414
415   /// \brief The attributes for the specified index are returned.
416   AttributeSet getAttributes(unsigned Index) const;
417
418   /// \brief The attributes for the argument or parameter at the given index are
419   /// returned.
420   AttributeSet getParamAttributes(unsigned ArgNo) const;
421
422   /// \brief The attributes for the ret value are returned.
423   AttributeSet getRetAttributes() const;
424
425   /// \brief The function attributes are returned.
426   AttributeSet getFnAttributes() const;
427
428   /// \brief Return true if the attribute exists at the given index.
429   bool hasAttribute(unsigned Index, Attribute::AttrKind Kind) const;
430
431   /// \brief Return true if the attribute exists at the given index.
432   bool hasAttribute(unsigned Index, StringRef Kind) const;
433
434   /// \brief Return true if attribute exists at the given index.
435   bool hasAttributes(unsigned Index) const;
436
437   /// \brief Equivalent to hasAttribute(AttributeList::FunctionIndex, Kind) but
438   /// may be faster.
439   bool hasFnAttribute(Attribute::AttrKind Kind) const;
440
441   /// \brief Equivalent to hasAttribute(AttributeList::FunctionIndex, Kind) but
442   /// may be faster.
443   bool hasFnAttribute(StringRef Kind) const;
444
445   /// \brief Equivalent to hasAttribute(ArgNo + FirstArgIndex, Kind).
446   bool hasParamAttribute(unsigned ArgNo, Attribute::AttrKind Kind) const;
447
448   /// \brief Return true if the specified attribute is set for at least one
449   /// parameter or for the return value. If Index is not nullptr, the index
450   /// of a parameter with the specified attribute is provided.
451   bool hasAttrSomewhere(Attribute::AttrKind Kind,
452                         unsigned *Index = nullptr) const;
453
454   /// \brief Return the attribute object that exists at the given index.
455   Attribute getAttribute(unsigned Index, Attribute::AttrKind Kind) const;
456
457   /// \brief Return the attribute object that exists at the given index.
458   Attribute getAttribute(unsigned Index, StringRef Kind) const;
459
460   /// \brief Return the alignment of the return value.
461   unsigned getRetAlignment() const;
462
463   /// \brief Return the alignment for the specified function parameter.
464   unsigned getParamAlignment(unsigned ArgNo) const;
465
466   /// \brief Get the stack alignment.
467   unsigned getStackAlignment(unsigned Index) const;
468
469   /// \brief Get the number of dereferenceable bytes (or zero if unknown).
470   uint64_t getDereferenceableBytes(unsigned Index) const;
471
472   /// \brief Get the number of dereferenceable_or_null bytes (or zero if
473   /// unknown).
474   uint64_t getDereferenceableOrNullBytes(unsigned Index) const;
475
476   /// Get the allocsize argument numbers (or pair(0, 0) if unknown).
477   std::pair<unsigned, Optional<unsigned>>
478   getAllocSizeArgs(unsigned Index) const;
479
480   /// \brief Return the attributes at the index as a string.
481   std::string getAsString(unsigned Index, bool InAttrGrp = false) const;
482
483   using iterator = ArrayRef<Attribute>::iterator;
484
485   iterator begin(unsigned Slot) const;
486   iterator end(unsigned Slot) const;
487
488   /// operator==/!= - Provide equality predicates.
489   bool operator==(const AttributeList &RHS) const { return pImpl == RHS.pImpl; }
490   bool operator!=(const AttributeList &RHS) const { return pImpl != RHS.pImpl; }
491
492   //===--------------------------------------------------------------------===//
493   // AttributeList Introspection
494   //===--------------------------------------------------------------------===//
495
496   /// \brief Return a raw pointer that uniquely identifies this attribute list.
497   void *getRawPointer() const {
498     return pImpl;
499   }
500
501   /// \brief Return true if there are no attributes.
502   bool isEmpty() const {
503     return getNumSlots() == 0;
504   }
505
506   /// \brief Return the number of slots used in this attribute list.  This is
507   /// the number of arguments that have an attribute set on them (including the
508   /// function itself).
509   unsigned getNumSlots() const;
510
511   /// \brief Return the index for the given slot.
512   unsigned getSlotIndex(unsigned Slot) const;
513
514   /// \brief Return the attributes at the given slot.
515   AttributeSet getSlotAttributes(unsigned Slot) const;
516
517   void dump() const;
518 };
519
520 //===----------------------------------------------------------------------===//
521 /// \class
522 /// \brief Provide DenseMapInfo for AttributeList.
523 template <> struct DenseMapInfo<AttributeList> {
524   static inline AttributeList getEmptyKey() {
525     uintptr_t Val = static_cast<uintptr_t>(-1);
526     Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
527     return AttributeList(reinterpret_cast<AttributeListImpl *>(Val));
528   }
529
530   static inline AttributeList getTombstoneKey() {
531     uintptr_t Val = static_cast<uintptr_t>(-2);
532     Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
533     return AttributeList(reinterpret_cast<AttributeListImpl *>(Val));
534   }
535
536   static unsigned getHashValue(AttributeList AS) {
537     return (unsigned((uintptr_t)AS.pImpl) >> 4) ^
538            (unsigned((uintptr_t)AS.pImpl) >> 9);
539   }
540
541   static bool isEqual(AttributeList LHS, AttributeList RHS) {
542     return LHS == RHS;
543   }
544 };
545
546 //===----------------------------------------------------------------------===//
547 /// \class
548 /// \brief This class is used in conjunction with the Attribute::get method to
549 /// create an Attribute object. The object itself is uniquified. The Builder's
550 /// value, however, is not. So this can be used as a quick way to test for
551 /// equality, presence of attributes, etc.
552 class AttrBuilder {
553   std::bitset<Attribute::EndAttrKinds> Attrs;
554   std::map<std::string, std::string> TargetDepAttrs;
555   uint64_t Alignment = 0;
556   uint64_t StackAlignment = 0;
557   uint64_t DerefBytes = 0;
558   uint64_t DerefOrNullBytes = 0;
559   uint64_t AllocSizeArgs = 0;
560
561 public:
562   AttrBuilder() = default;
563   AttrBuilder(const Attribute &A) {
564     addAttribute(A);
565   }
566   AttrBuilder(AttributeList AS, unsigned Idx);
567   AttrBuilder(AttributeSet AS);
568
569   void clear();
570
571   /// \brief Add an attribute to the builder.
572   AttrBuilder &addAttribute(Attribute::AttrKind Val);
573
574   /// \brief Add the Attribute object to the builder.
575   AttrBuilder &addAttribute(Attribute A);
576
577   /// \brief Add the target-dependent attribute to the builder.
578   AttrBuilder &addAttribute(StringRef A, StringRef V = StringRef());
579
580   /// \brief Remove an attribute from the builder.
581   AttrBuilder &removeAttribute(Attribute::AttrKind Val);
582
583   /// \brief Remove the attributes from the builder.
584   AttrBuilder &removeAttributes(AttributeList A, uint64_t WithoutIndex);
585
586   /// \brief Remove the target-dependent attribute to the builder.
587   AttrBuilder &removeAttribute(StringRef A);
588
589   /// \brief Add the attributes from the builder.
590   AttrBuilder &merge(const AttrBuilder &B);
591
592   /// \brief Remove the attributes from the builder.
593   AttrBuilder &remove(const AttrBuilder &B);
594
595   /// \brief Return true if the builder has any attribute that's in the
596   /// specified builder.
597   bool overlaps(const AttrBuilder &B) const;
598
599   /// \brief Return true if the builder has the specified attribute.
600   bool contains(Attribute::AttrKind A) const {
601     assert((unsigned)A < Attribute::EndAttrKinds && "Attribute out of range!");
602     return Attrs[A];
603   }
604
605   /// \brief Return true if the builder has the specified target-dependent
606   /// attribute.
607   bool contains(StringRef A) const;
608
609   /// \brief Return true if the builder has IR-level attributes.
610   bool hasAttributes() const;
611
612   /// \brief Return true if the builder has any attribute that's in the
613   /// specified attribute.
614   bool hasAttributes(AttributeList A, uint64_t Index) const;
615
616   /// \brief Return true if the builder has an alignment attribute.
617   bool hasAlignmentAttr() const;
618
619   /// \brief Retrieve the alignment attribute, if it exists.
620   uint64_t getAlignment() const { return Alignment; }
621
622   /// \brief Retrieve the stack alignment attribute, if it exists.
623   uint64_t getStackAlignment() const { return StackAlignment; }
624
625   /// \brief Retrieve the number of dereferenceable bytes, if the
626   /// dereferenceable attribute exists (zero is returned otherwise).
627   uint64_t getDereferenceableBytes() const { return DerefBytes; }
628
629   /// \brief Retrieve the number of dereferenceable_or_null bytes, if the
630   /// dereferenceable_or_null attribute exists (zero is returned otherwise).
631   uint64_t getDereferenceableOrNullBytes() const { return DerefOrNullBytes; }
632
633   /// Retrieve the allocsize args, if the allocsize attribute exists.  If it
634   /// doesn't exist, pair(0, 0) is returned.
635   std::pair<unsigned, Optional<unsigned>> getAllocSizeArgs() const;
636
637   /// \brief This turns an int alignment (which must be a power of 2) into the
638   /// form used internally in Attribute.
639   AttrBuilder &addAlignmentAttr(unsigned Align);
640
641   /// \brief This turns an int stack alignment (which must be a power of 2) into
642   /// the form used internally in Attribute.
643   AttrBuilder &addStackAlignmentAttr(unsigned Align);
644
645   /// \brief This turns the number of dereferenceable bytes into the form used
646   /// internally in Attribute.
647   AttrBuilder &addDereferenceableAttr(uint64_t Bytes);
648
649   /// \brief This turns the number of dereferenceable_or_null bytes into the
650   /// form used internally in Attribute.
651   AttrBuilder &addDereferenceableOrNullAttr(uint64_t Bytes);
652
653   /// This turns one (or two) ints into the form used internally in Attribute.
654   AttrBuilder &addAllocSizeAttr(unsigned ElemSizeArg,
655                                 const Optional<unsigned> &NumElemsArg);
656
657   /// Add an allocsize attribute, using the representation returned by
658   /// Attribute.getIntValue().
659   AttrBuilder &addAllocSizeAttrFromRawRepr(uint64_t RawAllocSizeRepr);
660
661   /// \brief Return true if the builder contains no target-independent
662   /// attributes.
663   bool empty() const { return Attrs.none(); }
664
665   // Iterators for target-dependent attributes.
666   using td_type = std::pair<std::string, std::string>;
667   using td_iterator = std::map<std::string, std::string>::iterator;
668   using td_const_iterator = std::map<std::string, std::string>::const_iterator;
669   using td_range = iterator_range<td_iterator>;
670   using td_const_range = iterator_range<td_const_iterator>;
671
672   td_iterator td_begin()             { return TargetDepAttrs.begin(); }
673   td_iterator td_end()               { return TargetDepAttrs.end(); }
674
675   td_const_iterator td_begin() const { return TargetDepAttrs.begin(); }
676   td_const_iterator td_end() const   { return TargetDepAttrs.end(); }
677
678   td_range td_attrs() { return td_range(td_begin(), td_end()); }
679   td_const_range td_attrs() const {
680     return td_const_range(td_begin(), td_end());
681   }
682
683   bool td_empty() const              { return TargetDepAttrs.empty(); }
684
685   bool operator==(const AttrBuilder &B);
686   bool operator!=(const AttrBuilder &B) {
687     return !(*this == B);
688   }
689 };
690
691 namespace AttributeFuncs {
692
693 /// \brief Which attributes cannot be applied to a type.
694 AttrBuilder typeIncompatible(Type *Ty);
695
696 /// \returns Return true if the two functions have compatible target-independent
697 /// attributes for inlining purposes.
698 bool areInlineCompatible(const Function &Caller, const Function &Callee);
699
700 /// \brief Merge caller's and callee's attributes.
701 void mergeAttributesForInlining(Function &Caller, const Function &Callee);
702
703 } // end AttributeFuncs namespace
704
705 } // end llvm namespace
706
707 #endif // LLVM_IR_ATTRIBUTES_H