Attr.h revision 4990890fc9428f98bef90ba349203a648c592778
1//===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the Attr interface and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_AST_ATTR_H
15#define LLVM_CLANG_AST_ATTR_H
16
17#include "clang/Basic/LLVM.h"
18#include "clang/Basic/AttrKinds.h"
19#include "clang/AST/Type.h"
20#include "clang/Basic/SourceLocation.h"
21#include "clang/Basic/VersionTuple.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/ADT/StringRef.h"
24#include "llvm/ADT/StringSwitch.h"
25#include "llvm/Support/ErrorHandling.h"
26#include "llvm/Support/raw_ostream.h"
27#include <cassert>
28#include <cstring>
29#include <algorithm>
30
31namespace clang {
32  class ASTContext;
33  class IdentifierInfo;
34  class ObjCInterfaceDecl;
35  class Expr;
36  class QualType;
37  class FunctionDecl;
38  class TypeSourceInfo;
39}
40
41// Defined in ASTContext.h
42void *operator new(size_t Bytes, const clang::ASTContext &C,
43                   size_t Alignment = 16);
44// FIXME: Being forced to not have a default argument here due to redeclaration
45//        rules on default arguments sucks
46void *operator new[](size_t Bytes, const clang::ASTContext &C,
47                     size_t Alignment);
48
49// It is good practice to pair new/delete operators.  Also, MSVC gives many
50// warnings if a matching delete overload is not declared, even though the
51// throw() spec guarantees it will not be implicitly called.
52void operator delete(void *Ptr, const clang::ASTContext &C, size_t);
53void operator delete[](void *Ptr, const clang::ASTContext &C, size_t);
54
55namespace clang {
56
57/// Attr - This represents one attribute.
58class Attr {
59private:
60  SourceRange Range;
61  unsigned AttrKind : 16;
62
63protected:
64  bool Inherited : 1;
65
66  virtual ~Attr();
67
68  void* operator new(size_t bytes) throw() {
69    llvm_unreachable("Attrs cannot be allocated with regular 'new'.");
70  }
71  void operator delete(void* data) throw() {
72    llvm_unreachable("Attrs cannot be released with regular 'delete'.");
73  }
74
75public:
76  // Forward so that the regular new and delete do not hide global ones.
77  void* operator new(size_t Bytes, ASTContext &C,
78                     size_t Alignment = 16) throw() {
79    return ::operator new(Bytes, C, Alignment);
80  }
81  void operator delete(void *Ptr, ASTContext &C,
82                       size_t Alignment) throw() {
83    return ::operator delete(Ptr, C, Alignment);
84  }
85
86protected:
87  Attr(attr::Kind AK, SourceRange R)
88    : Range(R), AttrKind(AK), Inherited(false) {}
89
90public:
91
92  attr::Kind getKind() const {
93    return static_cast<attr::Kind>(AttrKind);
94  }
95
96  SourceLocation getLocation() const { return Range.getBegin(); }
97  SourceRange getRange() const { return Range; }
98  void setRange(SourceRange R) { Range = R; }
99
100  bool isInherited() const { return Inherited; }
101
102  // Clone this attribute.
103  virtual Attr* clone(ASTContext &C) const = 0;
104
105  virtual bool isLateParsed() const { return false; }
106
107  // Pretty print this attribute.
108  virtual void printPretty(llvm::raw_ostream &OS, ASTContext &C) const = 0;
109
110  // Implement isa/cast/dyncast/etc.
111  static bool classof(const Attr *) { return true; }
112};
113
114class InheritableAttr : public Attr {
115  virtual void anchor();
116protected:
117  InheritableAttr(attr::Kind AK, SourceRange R)
118    : Attr(AK, R) {}
119
120public:
121  void setInherited(bool I) { Inherited = I; }
122
123  // Implement isa/cast/dyncast/etc.
124  static bool classof(const Attr *A) {
125    return A->getKind() <= attr::LAST_INHERITABLE;
126  }
127  static bool classof(const InheritableAttr *) { return true; }
128};
129
130class InheritableParamAttr : public InheritableAttr {
131  virtual void anchor();
132protected:
133  InheritableParamAttr(attr::Kind AK, SourceRange R)
134    : InheritableAttr(AK, R) {}
135
136public:
137  // Implement isa/cast/dyncast/etc.
138  static bool classof(const Attr *A) {
139    return A->getKind() <= attr::LAST_INHERITABLE_PARAM;
140  }
141  static bool classof(const InheritableParamAttr *) { return true; }
142};
143
144#include "clang/AST/Attrs.inc"
145
146/// AttrVec - A vector of Attr, which is how they are stored on the AST.
147typedef SmallVector<Attr*, 2> AttrVec;
148typedef SmallVector<const Attr*, 2> ConstAttrVec;
149
150/// specific_attr_iterator - Iterates over a subrange of an AttrVec, only
151/// providing attributes that are of a specifc type.
152template <typename SpecificAttr, typename Container = AttrVec>
153class specific_attr_iterator {
154  typedef typename Container::const_iterator Iterator;
155
156  /// Current - The current, underlying iterator.
157  /// In order to ensure we don't dereference an invalid iterator unless
158  /// specifically requested, we don't necessarily advance this all the
159  /// way. Instead, we advance it when an operation is requested; if the
160  /// operation is acting on what should be a past-the-end iterator,
161  /// then we offer no guarantees, but this way we do not dererence a
162  /// past-the-end iterator when we move to a past-the-end position.
163  mutable Iterator Current;
164
165  void AdvanceToNext() const {
166    while (!isa<SpecificAttr>(*Current))
167      ++Current;
168  }
169
170  void AdvanceToNext(Iterator I) const {
171    while (Current != I && !isa<SpecificAttr>(*Current))
172      ++Current;
173  }
174
175public:
176  typedef SpecificAttr*             value_type;
177  typedef SpecificAttr*             reference;
178  typedef SpecificAttr*             pointer;
179  typedef std::forward_iterator_tag iterator_category;
180  typedef std::ptrdiff_t            difference_type;
181
182  specific_attr_iterator() : Current() { }
183  explicit specific_attr_iterator(Iterator i) : Current(i) { }
184
185  reference operator*() const {
186    AdvanceToNext();
187    return cast<SpecificAttr>(*Current);
188  }
189  pointer operator->() const {
190    AdvanceToNext();
191    return cast<SpecificAttr>(*Current);
192  }
193
194  specific_attr_iterator& operator++() {
195    ++Current;
196    return *this;
197  }
198  specific_attr_iterator operator++(int) {
199    specific_attr_iterator Tmp(*this);
200    ++(*this);
201    return Tmp;
202  }
203
204  friend bool operator==(specific_attr_iterator Left,
205                         specific_attr_iterator Right) {
206    if (Left.Current < Right.Current)
207      Left.AdvanceToNext(Right.Current);
208    else
209      Right.AdvanceToNext(Left.Current);
210    return Left.Current == Right.Current;
211  }
212  friend bool operator!=(specific_attr_iterator Left,
213                         specific_attr_iterator Right) {
214    return !(Left == Right);
215  }
216};
217
218template <typename SpecificAttr, typename Container>
219inline specific_attr_iterator<SpecificAttr, Container>
220          specific_attr_begin(const Container& container) {
221  return specific_attr_iterator<SpecificAttr, Container>(container.begin());
222}
223template <typename SpecificAttr, typename Container>
224inline specific_attr_iterator<SpecificAttr, Container>
225          specific_attr_end(const Container& container) {
226  return specific_attr_iterator<SpecificAttr, Container>(container.end());
227}
228
229template <typename SpecificAttr, typename Container>
230inline bool hasSpecificAttr(const Container& container) {
231  return specific_attr_begin<SpecificAttr>(container) !=
232          specific_attr_end<SpecificAttr>(container);
233}
234template <typename SpecificAttr, typename Container>
235inline SpecificAttr *getSpecificAttr(const Container& container) {
236  specific_attr_iterator<SpecificAttr, Container> i =
237      specific_attr_begin<SpecificAttr>(container);
238  if (i != specific_attr_end<SpecificAttr>(container))
239    return *i;
240  else
241    return 0;
242}
243
244/// getMaxAlignment - Returns the highest alignment value found among
245/// AlignedAttrs in an AttrVec, or 0 if there are none.
246inline unsigned getMaxAttrAlignment(const AttrVec& V, ASTContext &Ctx) {
247  unsigned Align = 0;
248  specific_attr_iterator<AlignedAttr> i(V.begin()), e(V.end());
249  for(; i != e; ++i)
250    Align = std::max(Align, i->getAlignment(Ctx));
251  return Align;
252}
253
254}  // end namespace clang
255
256#endif
257