Attributes.h revision 3f213e7b3a6829a154d4e8ceb7d8689b389bd5dc
1710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov//===-- llvm/Attributes.h - Container for Attributes ------------*- C++ -*-===//
26091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//
36091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//                     The LLVM Compiler Infrastructure
46091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//
57ed47a13356daed2a34cd2209a31f92552e3bdd8Chris Lattner// This file is distributed under the University of Illinois Open Source
67ed47a13356daed2a34cd2209a31f92552e3bdd8Chris Lattner// License. See LICENSE.TXT for details.
76091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//
86091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//===----------------------------------------------------------------------===//
927107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling///
1027107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// \file
1127107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// \brief This file contains the simple types necessary to represent the
1227107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// attributes associated with functions and their calls.
1327107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling///
146091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer//===----------------------------------------------------------------------===//
156091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer
16674be02d525d4e24bc6943ed9274958c580bcfbcJakub Staszak#ifndef LLVM_IR_ATTRIBUTES_H
17674be02d525d4e24bc6943ed9274958c580bcfbcJakub Staszak#define LLVM_IR_ATTRIBUTES_H
186091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer
19d509d0b532ec2358b3f341d4a4cd1411cb8b5db2Chris Lattner#include "llvm/ADT/ArrayRef.h"
203467e30edf63b6d8a8d446186674ba9e4b7885a9Bill Wendling#include "llvm/ADT/FoldingSet.h"
21c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer#include "llvm/Support/PointerLikeTypeTraits.h"
223f213e7b3a6829a154d4e8ceb7d8689b389bd5dcBenjamin Kramer#include <bitset>
2322bd64173981bf1251c4b3bfc684207340534ba3Bill Wendling#include <cassert>
24ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling#include <map>
2558d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner#include <string>
266091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer
276091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencernamespace llvm {
28d426a642a23a234547cbc7061f5bfec157673249Bill Wendling
29702cc91aa1bd41540e8674921ae7ac89a4ff061fBill Wendlingclass AttrBuilder;
30f6670729aabc1fab85238d2b306a1c1767a807bbBill Wendlingclass AttributeImpl;
31817abdd8b055059e5930a15704b9f52da4236456Bill Wendlingclass AttributeSetImpl;
32817abdd8b055059e5930a15704b9f52da4236456Bill Wendlingclass AttributeSetNode;
336dc3781d44e56f0addf28b06232a50f3f9e6b1afBill Wendlingclass Constant;
34c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramertemplate<typename T> struct DenseMapInfo;
352c79ecbd704c656178ffa43d5a58ebe3ca188b40Bill Wendlingclass LLVMContext;
36ad9a9e15595bc9d5ba1ed752caf8572957f77a3dDuncan Sandsclass Type;
37ad9a9e15595bc9d5ba1ed752caf8572957f77a3dDuncan Sands
381d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling//===----------------------------------------------------------------------===//
3927107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// \class
4027107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// \brief Functions, function parameters, and return types can have attributes
411d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling/// to indicate how they should be treated by optimizations and code
421d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling/// generation. This class represents one of those attributes. It's light-weight
431d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling/// and should be passed around by-value.
44034b94b17006f51722886b0f2283fb6fb19aca1fBill Wendlingclass Attribute {
456765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendlingpublic:
461d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling  /// This enumeration lists the attributes that can be associated with
4773dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// parameters, function results, or the function itself.
48f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1Bill Wendling  ///
4973dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// Note: The `uwtable' attribute is about the ABI or the user mandating an
5073dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// entry in the unwind table. The `nounwind' attribute is about an exception
5173dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// passing by the function.
52f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1Bill Wendling  ///
5373dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// In a theoretical system that uses tables for profiling and SjLj for
5411d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// exceptions, they would be fully independent. In a normal system that uses
5511d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// tables for both, the semantics are:
56f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1Bill Wendling  ///
5711d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// nil                = Needs an entry because an exception might pass by.
5811d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// nounwind           = No need for an entry
5911d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// uwtable            = Needs an entry because the ABI says so and because
6011d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  ///                      an exception might pass by.
6111d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling  /// uwtable + nounwind = Needs an entry because the ABI says so.
6211d00420e42ba88c3b48cab997965a7be79315e2Bill Wendling
63629fb82419d9bfff6ae475363bcce66192dfcc8eBill Wendling  enum AttrKind {
645a0eeb5a9d727940b1dbe8dff6e9aa292ada0f6aBill Wendling    // IR-Level Attributes
65480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    None,                  ///< No attributes have been set
66480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    AddressSafety,         ///< Address safety checking is on.
67480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    Alignment,             ///< Alignment of parameter (5 bits)
686765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendling                           ///< stored as log2 of alignment with +1 bias
69f6670729aabc1fab85238d2b306a1c1767a807bbBill Wendling                           ///< 0 means unaligned (different from align(1))
70480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    AlwaysInline,          ///< inline=always
71480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    ByVal,                 ///< Pass structure by value
72480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    InlineHint,            ///< Source said inlining was desirable
73480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    InReg,                 ///< Force argument to be passed in register
749a419f656e278b96e9dfe739cd63c7bff9a4e1fdQuentin Colombet    MinSize,               ///< Function must be optimized for size first
75480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    Naked,                 ///< Naked function
76480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    Nest,                  ///< Nested function static chain
77480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoAlias,               ///< Considered to not alias after call
78480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoCapture,             ///< Function creates no aliases of pointer
7967ae13575900e8efd056672987249fd0adbf5e73James Molloy    NoDuplicate,           ///< Call cannot be duplicated
80480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoImplicitFloat,       ///< Disable implicit floating point insts
81480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoInline,              ///< inline=never
82480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NonLazyBind,           ///< Function is called early and/or
833a106e60366a51b4594ec303ff8dbbc58913227fBill Wendling                           ///< often, so lazy binding isn't worthwhile
84480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoRedZone,             ///< Disable redzone
85480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoReturn,              ///< Mark the function as not returning
86480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    NoUnwind,              ///< Function doesn't unwind stack
87480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    OptimizeForSize,       ///< opt_size
88480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    ReadNone,              ///< Function does not access memory
89480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    ReadOnly,              ///< Function only reads from memory
90480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    ReturnsTwice,          ///< Function can return twice
91480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    SExt,                  ///< Sign extended before/after call
92480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    StackAlignment,        ///< Alignment of stack for function (3 bits)
936765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendling                           ///< stored as log2 of alignment with +1 bias 0
946765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendling                           ///< means unaligned (different from
95f6670729aabc1fab85238d2b306a1c1767a807bbBill Wendling                           ///< alignstack=(1))
96480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    StackProtect,          ///< Stack protection.
97480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    StackProtectReq,       ///< Stack protection required.
98114baee1fa017daefad2339c77b45b9ca3d79a41Bill Wendling    StackProtectStrong,    ///< Strong Stack protection.
99480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    StructRet,             ///< Hidden pointer to structure to return
100ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3Kostya Serebryany    ThreadSafety,          ///< Thread safety checking is on.
101ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3Kostya Serebryany    UninitializedChecks,   ///< Checking for uses of uninitialized memory is on.
102480b1b28ea6fc1bb5c78d99472df624cfd3fce47Bill Wendling    UWTable,               ///< Function must be in a unwind table
1030319888773b36dd61d7d2283cb9a26cac1e5abe8Bill Wendling    ZExt,                  ///< Zero extended before/after call
1040319888773b36dd61d7d2283cb9a26cac1e5abe8Bill Wendling
105886a7663c72cb04eaee58cb6997c394f5096a8b9Benjamin Kramer    EndAttrKinds           ///< Sentinal value useful for loops
1066765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendling  };
1076765834754cbb3cb0f15b4b15e98c5e73fa50066Bill Wendlingprivate:
10827107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling  AttributeImpl *pImpl;
10927107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling  Attribute(AttributeImpl *A) : pImpl(A) {}
110d426a642a23a234547cbc7061f5bfec157673249Bill Wendlingpublic:
11127107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling  Attribute() : pImpl(0) {}
1122c79ecbd704c656178ffa43d5a58ebe3ca188b40Bill Wendling
113c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  //===--------------------------------------------------------------------===//
114c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // Attribute Construction
115c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  //===--------------------------------------------------------------------===//
116c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
117c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  /// \brief Return a uniquified Attribute object.
1188c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
1198c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  static Attribute get(LLVMContext &Context, StringRef Kind,
1208c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling                       StringRef Val = StringRef());
1212c79ecbd704c656178ffa43d5a58ebe3ca188b40Bill Wendling
122c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  /// \brief Return a uniquified Attribute object that has the specific
123c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  /// alignment set.
124c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
125c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  static Attribute getWithStackAlignment(LLVMContext &Context, uint64_t Align);
126c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling
127c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  //===--------------------------------------------------------------------===//
128c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // Attribute Accessors
129c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  //===--------------------------------------------------------------------===//
130c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
1318c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return true if the attribute is an Attribute::AttrKind type.
1328c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  bool isEnumAttribute() const;
1338c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling
1348c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return true if the attribute is an alignment attribute.
1358c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  bool isAlignAttribute() const;
1368c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling
1378c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return true if the attribute is a string (target-dependent)
1388c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// attribute.
1398c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  bool isStringAttribute() const;
1408c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling
141eddab1550ee10cce3bb26a26e88529cb19451aa3NAKAMURA Takumi  /// \brief Return true if the attribute is present.
142eddab1550ee10cce3bb26a26e88529cb19451aa3NAKAMURA Takumi  bool hasAttribute(AttrKind Val) const;
143eddab1550ee10cce3bb26a26e88529cb19451aa3NAKAMURA Takumi
14464754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  /// \brief Return true if the target-dependent attribute is present.
14564754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  bool hasAttribute(StringRef Val) const;
14664754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling
1478c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return the attribute's kind as an enum (Attribute::AttrKind). This
1488c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// requires the attribute to be an enum or alignment attribute.
1498c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  Attribute::AttrKind getKindAsEnum() const;
1506dc3781d44e56f0addf28b06232a50f3f9e6b1afBill Wendling
1518c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return the attribute's value as an integer. This requires that the
1528c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// attribute be an alignment attribute.
1538c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  uint64_t getValueAsInt() const;
1548c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling
1558c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return the attribute's kind as a string. This requires the
1568c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// attribute to be a string attribute.
1578c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  StringRef getKindAsString() const;
1588c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling
1598c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Return the attribute's value as a string. This requires the
1608c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// attribute to be a string attribute.
1618c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  StringRef getValueAsString() const;
1626dc3781d44e56f0addf28b06232a50f3f9e6b1afBill Wendling
1631d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling  /// \brief Returns the alignment field of an attribute as a byte alignment
164ef99fe8efaa6cb74c66e570a6ef467debca92911Bill Wendling  /// value.
165e66f3d3ba0ea9f82f65a29c47fc37e997cbf0aceBill Wendling  unsigned getAlignment() const;
166ef99fe8efaa6cb74c66e570a6ef467debca92911Bill Wendling
1671d3dcfe4246b4d45fa78a8dfd0a11c7fff842c15Bill Wendling  /// \brief Returns the stack alignment field of an attribute as a byte
168943c29135e03e55f9a5dab393786171a4a536482Bill Wendling  /// alignment value.
169e66f3d3ba0ea9f82f65a29c47fc37e997cbf0aceBill Wendling  unsigned getStackAlignment() const;
17030b483c94001927b3593ed200e823104bab51660Bill Wendling
171c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  /// \brief The Attribute is converted to a string of equivalent mnemonic. This
172c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  /// is, presumably, for writing out the mnemonics for the assembly writer.
173b29ce26ea60f7516c853318ffbfc107fde9ad897Bill Wendling  std::string getAsString(bool InAttrGrp = false) const;
174c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
1758c74ecfbddabe89e150abff4fdff0a27108874b9Bill Wendling  /// \brief Equality and non-equality operators.
1762d5be6c313c0f9e23e56620fa8f8ae8d9b539bf0Bill Wendling  bool operator==(Attribute A) const { return pImpl == A.pImpl; }
1772d5be6c313c0f9e23e56620fa8f8ae8d9b539bf0Bill Wendling  bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
1782d5be6c313c0f9e23e56620fa8f8ae8d9b539bf0Bill Wendling
179c08a5ef6581f2c7550e92d31f63cd65ec29c39e0Bill Wendling  /// \brief Less-than operator. Useful for sorting the attributes list.
1803467e30edf63b6d8a8d446186674ba9e4b7885a9Bill Wendling  bool operator<(Attribute A) const;
1813467e30edf63b6d8a8d446186674ba9e4b7885a9Bill Wendling
182bb08593980b16fbd9758da6ca4fa9c7964f2f926Bill Wendling  void Profile(FoldingSetNodeID &ID) const {
183bb08593980b16fbd9758da6ca4fa9c7964f2f926Bill Wendling    ID.AddPointer(pImpl);
184bb08593980b16fbd9758da6ca4fa9c7964f2f926Bill Wendling  }
185827cde1c8319e51463007078a7ce3660ebc93036Duncan Sands};
186827cde1c8319e51463007078a7ce3660ebc93036Duncan Sands
187e66f3d3ba0ea9f82f65a29c47fc37e997cbf0aceBill Wendling//===----------------------------------------------------------------------===//
18827107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling/// \class
189c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// \brief This class holds the attributes for a function, its return value, and
190c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// its parameters. You access the attributes for each of them via an index into
191c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// the AttributeSet object. The function attributes are at index
192c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// `AttributeSet::FunctionIndex', the return value is at index
193c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// `AttributeSet::ReturnIndex', and the attributes for the parameters start at
194c3662eeaa4a1a4061fc6d5c81e3eed48c5d9da26Bill Wendling/// index `1'.
19599faa3b4ec6d03ac7808fe4ff3fbf3d04e375502Bill Wendlingclass AttributeSet {
19607aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendlingpublic:
19707aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendling  enum AttrIndex {
19807aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendling    ReturnIndex = 0U,
19907aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendling    FunctionIndex = ~0U
20007aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendling  };
20107aae2e7d58fe23e370e0cbb9e1a3def99434c36Bill Wendlingprivate:
202a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  friend class AttrBuilder;
2037d38c109aab8654e63e9071c7d948661f6b58433Bill Wendling  friend class AttributeSetImpl;
20416274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling  template <typename Ty> friend struct DenseMapInfo;
205a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
20673dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// \brief The attributes that we are managing. This can be null to represent
2070976e00fd1cbf4128daeb72efd8957d00383fda9Bill Wendling  /// the empty attributes list.
208ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling  AttributeSetImpl *pImpl;
2090976e00fd1cbf4128daeb72efd8957d00383fda9Bill Wendling
21073dee180c836270644dfa7d90f9c5ba877567999Bill Wendling  /// \brief The attributes for the specified index are returned.
211606c8e36dfdd28fc589356addd3e2cbb89a32e4dBill Wendling  AttributeSetNode *getAttributes(unsigned Idx) const;
2120976e00fd1cbf4128daeb72efd8957d00383fda9Bill Wendling
21387e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling  /// \brief Create an AttributeSet with the specified parameters in it.
21487e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling  static AttributeSet get(LLVMContext &C,
2156bdbf061c353295669b6bfc271b948158602d1bcBill Wendling                          ArrayRef<std::pair<unsigned, Attribute> > Attrs);
21687e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling  static AttributeSet get(LLVMContext &C,
2176bdbf061c353295669b6bfc271b948158602d1bcBill Wendling                          ArrayRef<std::pair<unsigned,
21887e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling                                             AttributeSetNode*> > Attrs);
21987e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling
22087e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling  static AttributeSet getImpl(LLVMContext &C,
2216bdbf061c353295669b6bfc271b948158602d1bcBill Wendling                              ArrayRef<std::pair<unsigned,
22287e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling                                                 AttributeSetNode*> > Attrs);
22387e10dfefa94f77937c37b0eb51095540d675cbcBill Wendling
2247d38c109aab8654e63e9071c7d948661f6b58433Bill Wendling
225ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling  explicit AttributeSet(AttributeSetImpl *LI) : pImpl(LI) {}
22658d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattnerpublic:
227ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling  AttributeSet() : pImpl(0) {}
228ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling  AttributeSet(const AttributeSet &P) : pImpl(P.pImpl) {}
229d05204aea4977eaec25e96bc7605a7bb9d806fc0Bill Wendling  const AttributeSet &operator=(const AttributeSet &RHS) {
230d05204aea4977eaec25e96bc7605a7bb9d806fc0Bill Wendling    pImpl = RHS.pImpl;
231d05204aea4977eaec25e96bc7605a7bb9d806fc0Bill Wendling    return *this;
232d05204aea4977eaec25e96bc7605a7bb9d806fc0Bill Wendling  }
233710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
23458d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
235c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // AttributeSet Construction and Mutation
23658d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
237710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
23818e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief Return an AttributeSet with the specified parameters in it.
2398e47daf2858e980210f3e1f007036b24da342c29Bill Wendling  static AttributeSet get(LLVMContext &C, ArrayRef<AttributeSet> Attrs);
24028d65722d6f283b327b5815914382077fe9c0ab4Bill Wendling  static AttributeSet get(LLVMContext &C, unsigned Idx,
24132a57958226e369f964a034da2ce7083a1a34297Bill Wendling                          ArrayRef<Attribute::AttrKind> Kind);
2421bbd644301ed4d8a7efd4ceb15f71c56fa914f28Bill Wendling  static AttributeSet get(LLVMContext &C, unsigned Idx, AttrBuilder &B);
24358d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner
244defaca00b8087d452df2b783250a48a32658a910Bill Wendling  /// \brief Add an attribute to the attribute set at the given index. Since
245defaca00b8087d452df2b783250a48a32658a910Bill Wendling  /// attribute sets are immutable, this returns a new set.
246defaca00b8087d452df2b783250a48a32658a910Bill Wendling  AttributeSet addAttribute(LLVMContext &C, unsigned Idx,
247defaca00b8087d452df2b783250a48a32658a910Bill Wendling                            Attribute::AttrKind Attr) const;
248710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
249e4e85f17564c28cd571dda30146c3f310521acf0Bill Wendling  /// \brief Add attributes to the attribute set at the given index. Since
250e4e85f17564c28cd571dda30146c3f310521acf0Bill Wendling  /// attribute sets are immutable, this returns a new set.
251e4e85f17564c28cd571dda30146c3f310521acf0Bill Wendling  AttributeSet addAttributes(LLVMContext &C, unsigned Idx,
252e4e85f17564c28cd571dda30146c3f310521acf0Bill Wendling                             AttributeSet Attrs) const;
253e4e85f17564c28cd571dda30146c3f310521acf0Bill Wendling
25418e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief Remove the specified attribute at the specified index from this
2558246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  /// attribute list. Since attribute lists are immutable, this returns the new
25618e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// list.
2578246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  AttributeSet removeAttribute(LLVMContext &C, unsigned Idx,
2588246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling                               Attribute::AttrKind Attr) const;
2598246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling
2608246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  /// \brief Remove the specified attributes at the specified index from this
2618246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  /// attribute list. Since attribute lists are immutable, this returns the new
2628246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  /// list.
2638246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling  AttributeSet removeAttributes(LLVMContext &C, unsigned Idx,
2648246df61f6de716acf1f8c64fac3c19970a2c174Bill Wendling                                AttributeSet Attrs) const;
265710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
26658d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
267c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // AttributeSet Accessors
26858d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
26918e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling
27085b3fbecdfe934ac7519a8831c4bd262cba99d12Bill Wendling  /// \brief Retrieve the LLVM context.
27185b3fbecdfe934ac7519a8831c4bd262cba99d12Bill Wendling  LLVMContext &getContext() const;
27285b3fbecdfe934ac7519a8831c4bd262cba99d12Bill Wendling
27318e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief The attributes for the specified index are returned.
27428d65722d6f283b327b5815914382077fe9c0ab4Bill Wendling  AttributeSet getParamAttributes(unsigned Idx) const;
27519c874638d9478a5d5028854817a5ee72293bb2bDevang Patel
27618e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief The attributes for the ret value are returned.
2773fc4b96b503fa202411317684a2ba02e41e43072Bill Wendling  AttributeSet getRetAttributes() const;
27819c874638d9478a5d5028854817a5ee72293bb2bDevang Patel
27918e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief The function attributes are returned.
280c5f1bc88a2eb7ad9ff924ca90cf88494e5f947b9Bill Wendling  AttributeSet getFnAttributes() const;
281710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
282831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling  /// \brief Return true if the attribute exists at the given index.
28319d815c04fde6b7b53c2b542813157edfa213842Bill Wendling  bool hasAttribute(unsigned Index, Attribute::AttrKind Kind) const;
284831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling
2850e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  /// \brief Return true if the attribute exists at the given index.
2860e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  bool hasAttribute(unsigned Index, StringRef Kind) const;
2870e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling
288831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling  /// \brief Return true if attribute exists at the given index.
28919d815c04fde6b7b53c2b542813157edfa213842Bill Wendling  bool hasAttributes(unsigned Index) const;
290831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling
291c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  /// \brief Return true if the specified attribute is set for at least one
292c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  /// parameter or for the return value.
293c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  bool hasAttrSomewhere(Attribute::AttrKind Attr) const;
294c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
2950e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  /// \brief Return the attribute object that exists at the given index.
2960e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  Attribute getAttribute(unsigned Index, Attribute::AttrKind Kind) const;
2970e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling
2980e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  /// \brief Return the attribute object that exists at the given index.
2990e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling  Attribute getAttribute(unsigned Index, StringRef Kind) const;
3000e9d5d059c4aa959e9ef4dff011dbd38d45a1016Bill Wendling
30149f6060f16aec4024d644a6ec4ddd3de9b3e8821Bill Wendling  /// \brief Return the alignment for the specified function parameter.
30219d815c04fde6b7b53c2b542813157edfa213842Bill Wendling  unsigned getParamAlignment(unsigned Idx) const;
3038e47daf2858e980210f3e1f007036b24da342c29Bill Wendling
304831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling  /// \brief Get the stack alignment.
30519d815c04fde6b7b53c2b542813157edfa213842Bill Wendling  unsigned getStackAlignment(unsigned Index) const;
306831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling
307831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling  /// \brief Return the attributes at the index as a string.
308b29ce26ea60f7516c853318ffbfc107fde9ad897Bill Wendling  std::string getAsString(unsigned Index, bool InAttrGrp = false) const;
309831737d329a727f53a1fb0572f7b7a8127208881Bill Wendling
31016c4b3cf2943ae2327752cf3de39769d14cfceceBill Wendling  typedef ArrayRef<Attribute>::iterator iterator;
31116c4b3cf2943ae2327752cf3de39769d14cfceceBill Wendling
312f715dbd263149efeb9c684dfdb0637cf84f94399Bill Wendling  iterator begin(unsigned Idx) const;
313f715dbd263149efeb9c684dfdb0637cf84f94399Bill Wendling  iterator end(unsigned Idx) const;
31416c4b3cf2943ae2327752cf3de39769d14cfceceBill Wendling
315041221c0972ff575b07f76808c504833d629ae1fChris Lattner  /// operator==/!= - Provide equality predicates.
31618e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  bool operator==(const AttributeSet &RHS) const {
317ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling    return pImpl == RHS.pImpl;
31818e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  }
31918e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  bool operator!=(const AttributeSet &RHS) const {
320ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling    return pImpl != RHS.pImpl;
32118e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  }
322710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
32358d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
324c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // AttributeSet Introspection
32558d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  //===--------------------------------------------------------------------===//
326710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
327c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  // FIXME: Remove this.
328c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  uint64_t Raw(unsigned Index) const;
329c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
33018e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief Return a raw pointer that uniquely identifies this attribute list.
33158d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  void *getRawPointer() const {
332ec2589863b32da169240c4fa120ef1e3798615d4Bill Wendling    return pImpl;
33358d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  }
334710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
33518e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief Return true if there are no attributes.
33658d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  bool isEmpty() const {
337aa57893e84ba7a35948fcaa99812ba88e58f4797Bill Wendling    return getNumSlots() == 0;
33858d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  }
339710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
34018e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// \brief Return the number of slots used in this attribute list.  This is
34118e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// the number of arguments that have an attribute set on them (including the
34218e7211068c9d2c6204512f9c468ee179818a4b6Bill Wendling  /// function itself).
34358d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner  unsigned getNumSlots() const;
344710632d07b13609444626367bebd34c0af3acb6aMikhail Glushenkov
345e1f95db4803a48a30fc2a1d5868281a87a36fb85Bill Wendling  /// \brief Return the index for the given slot.
3463e3e789aede6ec38d39c95d88ad4e8634d5a259bBill Wendling  uint64_t getSlotIndex(unsigned Slot) const;
347e1f95db4803a48a30fc2a1d5868281a87a36fb85Bill Wendling
3488e47daf2858e980210f3e1f007036b24da342c29Bill Wendling  /// \brief Return the attributes at the given slot.
3498e47daf2858e980210f3e1f007036b24da342c29Bill Wendling  AttributeSet getSlotAttributes(unsigned Slot) const;
3508e47daf2858e980210f3e1f007036b24da342c29Bill Wendling
351f3d1500ab2c7364d3d0fb73a7e1b8c6339ab48b1Bill Wendling  void dump() const;
35258d74910c6b82e622ecbb57d6644d48fec5a5c0fChris Lattner};
3534f859aa532dbf061736f9c23e0d0882b5cdfe566Reid Spencer
354a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling//===----------------------------------------------------------------------===//
355a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling/// \class
35616274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling/// \brief Provide DenseMapInfo for AttributeSet.
35716274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendlingtemplate<> struct DenseMapInfo<AttributeSet> {
35816274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling  static inline AttributeSet getEmptyKey() {
35916274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    uintptr_t Val = static_cast<uintptr_t>(-1);
36016274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
36116274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
362c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  }
36316274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling  static inline AttributeSet getTombstoneKey() {
36416274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    uintptr_t Val = static_cast<uintptr_t>(-2);
36516274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
36616274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
367c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  }
36816274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling  static unsigned getHashValue(AttributeSet AS) {
36916274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling    return (unsigned((uintptr_t)AS.pImpl) >> 4) ^
37016274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling           (unsigned((uintptr_t)AS.pImpl) >> 9);
371c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  }
37216274258d16342a2f91aaa3690b78ce74e4105f1Bill Wendling  static bool isEqual(AttributeSet LHS, AttributeSet RHS) { return LHS == RHS; }
373c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling};
374c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
375c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling//===----------------------------------------------------------------------===//
376c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling/// \class
377a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling/// \brief This class is used in conjunction with the Attribute::get method to
378a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling/// create an Attribute object. The object itself is uniquified. The Builder's
379a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling/// value, however, is not. So this can be used as a quick way to test for
380a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling/// equality, presence of attributes, etc.
381a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendlingclass AttrBuilder {
3823f213e7b3a6829a154d4e8ceb7d8689b389bd5dcBenjamin Kramer  std::bitset<Attribute::EndAttrKinds> Attrs;
383ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling  std::map<std::string, std::string> TargetDepAttrs;
384a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  uint64_t Alignment;
385a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  uint64_t StackAlignment;
386a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendlingpublic:
387c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  AttrBuilder() : Attrs(0), Alignment(0), StackAlignment(0) {}
388c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  explicit AttrBuilder(uint64_t Val)
389c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer    : Attrs(0), Alignment(0), StackAlignment(0) {
390f9271ea159b97e2febedcf095c3c4122cb24d077Bill Wendling    addRawValue(Val);
391a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  }
392c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  AttrBuilder(const Attribute &A) : Attrs(0), Alignment(0), StackAlignment(0) {
39339da078977ae98b6bf1c3c76a472ed24f5f2a2d2Bill Wendling    addAttribute(A);
394a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  }
395a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  AttrBuilder(AttributeSet AS, unsigned Idx);
39685df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling  AttrBuilder(const AttrBuilder &B)
39785df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling    : Attrs(B.Attrs),
39885df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling      TargetDepAttrs(B.TargetDepAttrs.begin(), B.TargetDepAttrs.end()),
39985df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling      Alignment(B.Alignment), StackAlignment(B.StackAlignment) {}
400a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
401a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  void clear();
402a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
403a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Add an attribute to the builder.
404a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  AttrBuilder &addAttribute(Attribute::AttrKind Val);
405a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
40639da078977ae98b6bf1c3c76a472ed24f5f2a2d2Bill Wendling  /// \brief Add the Attribute object to the builder.
40739da078977ae98b6bf1c3c76a472ed24f5f2a2d2Bill Wendling  AttrBuilder &addAttribute(Attribute A);
40839da078977ae98b6bf1c3c76a472ed24f5f2a2d2Bill Wendling
409ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling  /// \brief Add the target-dependent attribute to the builder.
410ad19d9c4228718b0ac167d0dfa013d14c3c9f135Bill Wendling  AttrBuilder &addAttribute(StringRef A, StringRef V = StringRef());
411ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling
412a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Remove an attribute from the builder.
413a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  AttrBuilder &removeAttribute(Attribute::AttrKind Val);
414a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
41549f6060f16aec4024d644a6ec4ddd3de9b3e8821Bill Wendling  /// \brief Remove the attributes from the builder.
416e74365462a39529ae48ef4d34ec76b4543b8ea29Bill Wendling  AttrBuilder &removeAttributes(AttributeSet A, uint64_t Index);
417a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
418ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling  /// \brief Remove the target-dependent attribute to the builder.
419ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling  AttrBuilder &removeAttribute(StringRef A);
420ea59f896a672c2e1ef9f02277bce60257aa60989Bill Wendling
42185df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling  /// \brief Add the attributes from the builder.
42285df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling  AttrBuilder &merge(const AttrBuilder &B);
42385df6b43403d3ebf5d80023a85699c6fb254941aBill Wendling
424a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Return true if the builder has the specified attribute.
425c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  bool contains(Attribute::AttrKind A) const {
4263f213e7b3a6829a154d4e8ceb7d8689b389bd5dcBenjamin Kramer    assert((unsigned)A < Attribute::EndAttrKinds && "Attribute out of range!");
4273f213e7b3a6829a154d4e8ceb7d8689b389bd5dcBenjamin Kramer    return Attrs[A];
428c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  }
429a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
430c342d9d345acdbd95577c7c6e9ce7d3a1bdb57bfBill Wendling  /// \brief Return true if the builder has the specified target-dependent
431c342d9d345acdbd95577c7c6e9ce7d3a1bdb57bfBill Wendling  /// attribute.
432c342d9d345acdbd95577c7c6e9ce7d3a1bdb57bfBill Wendling  bool contains(StringRef A) const;
433c342d9d345acdbd95577c7c6e9ce7d3a1bdb57bfBill Wendling
434a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Return true if the builder has IR-level attributes.
435a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  bool hasAttributes() const;
436a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
437a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Return true if the builder has any attribute that's in the
438a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// specified attribute.
439e74365462a39529ae48ef4d34ec76b4543b8ea29Bill Wendling  bool hasAttributes(AttributeSet A, uint64_t Index) const;
440a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
441a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Return true if the builder has an alignment attribute.
442a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  bool hasAlignmentAttr() const;
443a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
444a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Retrieve the alignment attribute, if it exists.
445a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  uint64_t getAlignment() const { return Alignment; }
446a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
447a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Retrieve the stack alignment attribute, if it exists.
448a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  uint64_t getStackAlignment() const { return StackAlignment; }
449a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
450a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief This turns an int alignment (which must be a power of 2) into the
451a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// form used internally in Attribute.
452a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  AttrBuilder &addAlignmentAttr(unsigned Align);
453a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
454a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief This turns an int stack alignment (which must be a power of 2) into
455a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// the form used internally in Attribute.
456a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  AttrBuilder &addStackAlignmentAttr(unsigned Align);
457a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
458c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  /// \brief Return true if the builder contains no target-independent
459c835b8c30127d15599de2d614434d39a6cc3ae17Benjamin Kramer  /// attributes.
4603f213e7b3a6829a154d4e8ceb7d8689b389bd5dcBenjamin Kramer  bool empty() const { return Attrs.none(); }
46187de71cb9f12d874e88d4f314ab245985c1b36bcBill Wendling
46264754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  // Iterators for target-dependent attributes.
46364754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  typedef std::pair<std::string, std::string>                td_type;
46464754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  typedef std::map<std::string, std::string>::iterator       td_iterator;
46564754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  typedef std::map<std::string, std::string>::const_iterator td_const_iterator;
46664754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling
46764754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  td_iterator td_begin()             { return TargetDepAttrs.begin(); }
46864754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  td_iterator td_end()               { return TargetDepAttrs.end(); }
46964754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling
47064754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  td_const_iterator td_begin() const { return TargetDepAttrs.begin(); }
47164754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling  td_const_iterator td_end() const   { return TargetDepAttrs.end(); }
47264754f499058b5dc748ea6d06a084af0ed539ec4Bill Wendling
47387de71cb9f12d874e88d4f314ab245985c1b36bcBill Wendling  bool td_empty() const              { return TargetDepAttrs.empty(); }
47487de71cb9f12d874e88d4f314ab245985c1b36bcBill Wendling
475a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  /// \brief Remove attributes that are used on functions only.
476a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  void removeFunctionOnlyAttrs() {
477a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling    removeAttribute(Attribute::NoReturn)
478a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NoUnwind)
479a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::ReadNone)
480a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::ReadOnly)
481a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NoInline)
482a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::AlwaysInline)
483a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::OptimizeForSize)
484a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::StackProtect)
485a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::StackProtectReq)
486114baee1fa017daefad2339c77b45b9ca3d79a41Bill Wendling      .removeAttribute(Attribute::StackProtectStrong)
487a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NoRedZone)
488a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NoImplicitFloat)
489a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::Naked)
490a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::InlineHint)
491a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::StackAlignment)
492a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::UWTable)
493a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NonLazyBind)
494a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::ReturnsTwice)
495a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::AddressSafety)
496ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3Kostya Serebryany      .removeAttribute(Attribute::ThreadSafety)
497ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3Kostya Serebryany      .removeAttribute(Attribute::UninitializedChecks)
498a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::MinSize)
499a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling      .removeAttribute(Attribute::NoDuplicate);
500a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  }
501a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
502a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  bool operator==(const AttrBuilder &B);
503a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  bool operator!=(const AttrBuilder &B) {
504a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling    return !(*this == B);
505a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling  }
506c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
507f9271ea159b97e2febedcf095c3c4122cb24d077Bill Wendling  // FIXME: Remove this in 4.0.
508c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling
509c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  /// \brief Add the raw value to the internal representation.
510c22f4aa886443507f8406d30d118fdeeac6a8c6cBill Wendling  AttrBuilder &addRawValue(uint64_t Val);
511a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling};
512a90a99a82b9c5c39fc6dbee9c266dcd7b107fe2fBill Wendling
5138e47daf2858e980210f3e1f007036b24da342c29Bill Wendlingnamespace AttributeFuncs {
5148e47daf2858e980210f3e1f007036b24da342c29Bill Wendling
5158e47daf2858e980210f3e1f007036b24da342c29Bill Wendling/// \brief Which attributes cannot be applied to a type.
516e74365462a39529ae48ef4d34ec76b4543b8ea29Bill WendlingAttributeSet typeIncompatible(Type *Ty, uint64_t Index);
5178e47daf2858e980210f3e1f007036b24da342c29Bill Wendling
5188e47daf2858e980210f3e1f007036b24da342c29Bill Wendling} // end AttributeFuncs namespace
5198e47daf2858e980210f3e1f007036b24da342c29Bill Wendling
52027107f6ab4627fa38bcacad6757ed6d52910f880Bill Wendling} // end llvm namespace
5216091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer
5226091ebd172a16a10f1ea66061a5fa7cbf5139e56Reid Spencer#endif
523