DeclarationName.h revision 3e518bda00d710754ca077cf9be8dd821e16a854
1//===-- DeclarationName.h - Representation of declaration names -*- 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 declares the DeclarationName and DeclarationNameTable classes.
11//
12//===----------------------------------------------------------------------===//
13#ifndef LLVM_CLANG_AST_DECLARATIONNAME_H
14#define LLVM_CLANG_AST_DECLARATIONNAME_H
15
16#include "clang/Basic/IdentifierTable.h"
17#include "clang/AST/Type.h"
18#include "clang/AST/CanonicalType.h"
19#include "clang/Basic/PartialDiagnostic.h"
20
21namespace llvm {
22  template <typename T> struct DenseMapInfo;
23}
24
25namespace clang {
26  class CXXSpecialName;
27  class CXXOperatorIdName;
28  class CXXLiteralOperatorIdName;
29  class DeclarationNameExtra;
30  class IdentifierInfo;
31  class MultiKeywordSelector;
32  class UsingDirectiveDecl;
33
34/// DeclarationName - The name of a declaration. In the common case,
35/// this just stores an IdentifierInfo pointer to a normal
36/// name. However, it also provides encodings for Objective-C
37/// selectors (optimizing zero- and one-argument selectors, which make
38/// up 78% percent of all selectors in Cocoa.h) and special C++ names
39/// for constructors, destructors, and conversion functions.
40class DeclarationName {
41public:
42  /// NameKind - The kind of name this object contains.
43  enum NameKind {
44    Identifier,
45    ObjCZeroArgSelector,
46    ObjCOneArgSelector,
47    ObjCMultiArgSelector,
48    CXXConstructorName,
49    CXXDestructorName,
50    CXXConversionFunctionName,
51    CXXOperatorName,
52    CXXLiteralOperatorName,
53    CXXUsingDirective
54  };
55
56private:
57  /// StoredNameKind - The kind of name that is actually stored in the
58  /// upper bits of the Ptr field. This is only used internally.
59  enum StoredNameKind {
60    StoredIdentifier = 0,
61    StoredObjCZeroArgSelector,
62    StoredObjCOneArgSelector,
63    StoredDeclarationNameExtra,
64    PtrMask = 0x03
65  };
66
67  /// Ptr - The lowest two bits are used to express what kind of name
68  /// we're actually storing, using the values of NameKind. Depending
69  /// on the kind of name this is, the upper bits of Ptr may have one
70  /// of several different meanings:
71  ///
72  ///   StoredIdentifier - The name is a normal identifier, and Ptr is
73  ///   a normal IdentifierInfo pointer.
74  ///
75  ///   StoredObjCZeroArgSelector - The name is an Objective-C
76  ///   selector with zero arguments, and Ptr is an IdentifierInfo
77  ///   pointer pointing to the selector name.
78  ///
79  ///   StoredObjCOneArgSelector - The name is an Objective-C selector
80  ///   with one argument, and Ptr is an IdentifierInfo pointer
81  ///   pointing to the selector name.
82  ///
83  ///   StoredDeclarationNameExtra - Ptr is actually a pointer to a
84  ///   DeclarationNameExtra structure, whose first value will tell us
85  ///   whether this is an Objective-C selector, C++ operator-id name,
86  ///   or special C++ name.
87  uintptr_t Ptr;
88
89  /// getStoredNameKind - Return the kind of object that is stored in
90  /// Ptr.
91  StoredNameKind getStoredNameKind() const {
92    return static_cast<StoredNameKind>(Ptr & PtrMask);
93  }
94
95  /// getExtra - Get the "extra" information associated with this
96  /// multi-argument selector or C++ special name.
97  DeclarationNameExtra *getExtra() const {
98    assert(getStoredNameKind() == StoredDeclarationNameExtra &&
99           "Declaration name does not store an Extra structure");
100    return reinterpret_cast<DeclarationNameExtra *>(Ptr & ~PtrMask);
101  }
102
103  /// getAsCXXSpecialName - If the stored pointer is actually a
104  /// CXXSpecialName, returns a pointer to it. Otherwise, returns
105  /// a NULL pointer.
106  CXXSpecialName *getAsCXXSpecialName() const {
107    if (getNameKind() >= CXXConstructorName &&
108        getNameKind() <= CXXConversionFunctionName)
109      return reinterpret_cast<CXXSpecialName *>(Ptr & ~PtrMask);
110    return 0;
111  }
112
113  /// getAsCXXOperatorIdName
114  CXXOperatorIdName *getAsCXXOperatorIdName() const {
115    if (getNameKind() == CXXOperatorName)
116      return reinterpret_cast<CXXOperatorIdName *>(Ptr & ~PtrMask);
117    return 0;
118  }
119
120  CXXLiteralOperatorIdName *getAsCXXLiteralOperatorIdName() const {
121    if (getNameKind() == CXXLiteralOperatorName)
122      return reinterpret_cast<CXXLiteralOperatorIdName *>(Ptr & ~PtrMask);
123    return 0;
124  }
125
126  // Construct a declaration name from the name of a C++ constructor,
127  // destructor, or conversion function.
128  DeclarationName(CXXSpecialName *Name)
129    : Ptr(reinterpret_cast<uintptr_t>(Name)) {
130    assert((Ptr & PtrMask) == 0 && "Improperly aligned CXXSpecialName");
131    Ptr |= StoredDeclarationNameExtra;
132  }
133
134  // Construct a declaration name from the name of a C++ overloaded
135  // operator.
136  DeclarationName(CXXOperatorIdName *Name)
137    : Ptr(reinterpret_cast<uintptr_t>(Name)) {
138    assert((Ptr & PtrMask) == 0 && "Improperly aligned CXXOperatorId");
139    Ptr |= StoredDeclarationNameExtra;
140  }
141
142  DeclarationName(CXXLiteralOperatorIdName *Name)
143    : Ptr(reinterpret_cast<uintptr_t>(Name)) {
144    assert((Ptr & PtrMask) == 0 && "Improperly aligned CXXLiteralOperatorId");
145    Ptr |= StoredDeclarationNameExtra;
146  }
147
148  /// Construct a declaration name from a raw pointer.
149  DeclarationName(uintptr_t Ptr) : Ptr(Ptr) { }
150
151  friend class DeclarationNameTable;
152  friend class NamedDecl;
153
154  /// getFETokenInfoAsVoid - Retrieves the front end-specified pointer
155  /// for this name as a void pointer.
156  void *getFETokenInfoAsVoid() const;
157
158public:
159  /// DeclarationName - Used to create an empty selector.
160  DeclarationName() : Ptr(0) { }
161
162  // Construct a declaration name from an IdentifierInfo *.
163  DeclarationName(const IdentifierInfo *II)
164    : Ptr(reinterpret_cast<uintptr_t>(II)) {
165    assert((Ptr & PtrMask) == 0 && "Improperly aligned IdentifierInfo");
166  }
167
168  // Construct a declaration name from an Objective-C selector.
169  DeclarationName(Selector Sel);
170
171  /// getUsingDirectiveName - Return name for all using-directives.
172  static DeclarationName getUsingDirectiveName();
173
174  // operator bool() - Evaluates true when this declaration name is
175  // non-empty.
176  operator bool() const {
177    return ((Ptr & PtrMask) != 0) ||
178           (reinterpret_cast<IdentifierInfo *>(Ptr & ~PtrMask));
179  }
180
181  /// Predicate functions for querying what type of name this is.
182  bool isIdentifier() const { return getStoredNameKind() == StoredIdentifier; }
183  bool isObjCZeroArgSelector() const {
184    return getStoredNameKind() == StoredObjCZeroArgSelector;
185  }
186  bool isObjCOneArgSelector() const {
187    return getStoredNameKind() == StoredObjCOneArgSelector;
188  }
189
190  /// getNameKind - Determine what kind of name this is.
191  NameKind getNameKind() const;
192
193  /// getName - Retrieve the human-readable string for this name.
194  std::string getAsString() const;
195
196  /// getAsIdentifierInfo - Retrieve the IdentifierInfo * stored in
197  /// this declaration name, or NULL if this declaration name isn't a
198  /// simple identifier.
199  IdentifierInfo *getAsIdentifierInfo() const {
200    if (isIdentifier())
201      return reinterpret_cast<IdentifierInfo *>(Ptr);
202    return 0;
203  }
204
205  /// getAsOpaqueInteger - Get the representation of this declaration
206  /// name as an opaque integer.
207  uintptr_t getAsOpaqueInteger() const { return Ptr; }
208
209  /// getAsOpaquePtr - Get the representation of this declaration name as
210  /// an opaque pointer.
211  void *getAsOpaquePtr() const { return reinterpret_cast<void*>(Ptr); }
212
213  static DeclarationName getFromOpaquePtr(void *P) {
214    DeclarationName N;
215    N.Ptr = reinterpret_cast<uintptr_t> (P);
216    return N;
217  }
218
219  static DeclarationName getFromOpaqueInteger(uintptr_t P) {
220    DeclarationName N;
221    N.Ptr = P;
222    return N;
223  }
224
225  /// getCXXNameType - If this name is one of the C++ names (of a
226  /// constructor, destructor, or conversion function), return the
227  /// type associated with that name.
228  QualType getCXXNameType() const;
229
230  /// getCXXOverloadedOperator - If this name is the name of an
231  /// overloadable operator in C++ (e.g., @c operator+), retrieve the
232  /// kind of overloaded operator.
233  OverloadedOperatorKind getCXXOverloadedOperator() const;
234
235  /// getCXXLiteralIdentifier - If this name is the name of a literal
236  /// operator, retrieve the identifier associated with it.
237  IdentifierInfo *getCXXLiteralIdentifier() const;
238
239  /// getObjCSelector - Get the Objective-C selector stored in this
240  /// declaration name.
241  Selector getObjCSelector() const;
242
243  /// getFETokenInfo/setFETokenInfo - The language front-end is
244  /// allowed to associate arbitrary metadata with some kinds of
245  /// declaration names, including normal identifiers and C++
246  /// constructors, destructors, and conversion functions.
247  template<typename T>
248  T *getFETokenInfo() const { return static_cast<T*>(getFETokenInfoAsVoid()); }
249
250  void setFETokenInfo(void *T);
251
252  /// operator== - Determine whether the specified names are identical..
253  friend bool operator==(DeclarationName LHS, DeclarationName RHS) {
254    return LHS.Ptr == RHS.Ptr;
255  }
256
257  /// operator!= - Determine whether the specified names are different.
258  friend bool operator!=(DeclarationName LHS, DeclarationName RHS) {
259    return LHS.Ptr != RHS.Ptr;
260  }
261
262  static DeclarationName getEmptyMarker() {
263    return DeclarationName(uintptr_t(-1));
264  }
265
266  static DeclarationName getTombstoneMarker() {
267    return DeclarationName(uintptr_t(-2));
268  }
269
270  void dump() const;
271};
272
273/// Ordering on two declaration names. If both names are identifiers,
274/// this provides a lexicographical ordering.
275bool operator<(DeclarationName LHS, DeclarationName RHS);
276
277/// Ordering on two declaration names. If both names are identifiers,
278/// this provides a lexicographical ordering.
279inline bool operator>(DeclarationName LHS, DeclarationName RHS) {
280  return RHS < LHS;
281}
282
283/// Ordering on two declaration names. If both names are identifiers,
284/// this provides a lexicographical ordering.
285inline bool operator<=(DeclarationName LHS, DeclarationName RHS) {
286  return !(RHS < LHS);
287}
288
289/// Ordering on two declaration names. If both names are identifiers,
290/// this provides a lexicographical ordering.
291inline bool operator>=(DeclarationName LHS, DeclarationName RHS) {
292  return !(LHS < RHS);
293}
294
295/// DeclarationNameTable - Used to store and retrieve DeclarationName
296/// instances for the various kinds of declaration names, e.g., normal
297/// identifiers, C++ constructor names, etc. This class contains
298/// uniqued versions of each of the C++ special names, which can be
299/// retrieved using its member functions (e.g.,
300/// getCXXConstructorName).
301class DeclarationNameTable {
302  void *CXXSpecialNamesImpl; // Actually a FoldingSet<CXXSpecialName> *
303  CXXOperatorIdName *CXXOperatorNames; // Operator names
304
305  DeclarationNameTable(const DeclarationNameTable&);            // NONCOPYABLE
306  DeclarationNameTable& operator=(const DeclarationNameTable&); // NONCOPYABLE
307
308public:
309  DeclarationNameTable();
310  ~DeclarationNameTable();
311
312  /// getIdentifier - Create a declaration name that is a simple
313  /// identifier.
314  DeclarationName getIdentifier(const IdentifierInfo *ID) {
315    return DeclarationName(ID);
316  }
317
318  /// getCXXConstructorName - Returns the name of a C++ constructor
319  /// for the given Type.
320  DeclarationName getCXXConstructorName(CanQualType Ty) {
321    return getCXXSpecialName(DeclarationName::CXXConstructorName, Ty);
322  }
323
324  /// getCXXDestructorName - Returns the name of a C++ destructor
325  /// for the given Type.
326  DeclarationName getCXXDestructorName(CanQualType Ty) {
327    return getCXXSpecialName(DeclarationName::CXXDestructorName, Ty);
328  }
329
330  /// getCXXConversionFunctionName - Returns the name of a C++
331  /// conversion function for the given Type.
332  DeclarationName getCXXConversionFunctionName(CanQualType Ty) {
333    return getCXXSpecialName(DeclarationName::CXXConversionFunctionName, Ty);
334  }
335
336  /// getCXXSpecialName - Returns a declaration name for special kind
337  /// of C++ name, e.g., for a constructor, destructor, or conversion
338  /// function.
339  DeclarationName getCXXSpecialName(DeclarationName::NameKind Kind,
340                                    CanQualType Ty);
341
342  /// getCXXOperatorName - Get the name of the overloadable C++
343  /// operator corresponding to Op.
344  DeclarationName getCXXOperatorName(OverloadedOperatorKind Op);
345
346  /// getCXXLiteralOperatorName - Get the name of the literal operator function
347  /// with II as the identifier.
348  DeclarationName getCXXLiteralOperatorName(IdentifierInfo *II);
349};
350
351/// Insertion operator for diagnostics.  This allows sending DeclarationName's
352/// into a diagnostic with <<.
353inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
354                                           DeclarationName N) {
355  DB.AddTaggedVal(N.getAsOpaqueInteger(),
356                  Diagnostic::ak_declarationname);
357  return DB;
358}
359
360/// Insertion operator for partial diagnostics.  This allows binding
361/// DeclarationName's into a partial diagnostic with <<.
362inline const PartialDiagnostic &operator<<(const PartialDiagnostic &PD,
363                                           DeclarationName N) {
364  PD.AddTaggedVal(N.getAsOpaqueInteger(),
365                  Diagnostic::ak_declarationname);
366  return PD;
367}
368
369}  // end namespace clang
370
371namespace llvm {
372/// Define DenseMapInfo so that DeclarationNames can be used as keys
373/// in DenseMap and DenseSets.
374template<>
375struct DenseMapInfo<clang::DeclarationName> {
376  static inline clang::DeclarationName getEmptyKey() {
377    return clang::DeclarationName::getEmptyMarker();
378  }
379
380  static inline clang::DeclarationName getTombstoneKey() {
381    return clang::DeclarationName::getTombstoneMarker();
382  }
383
384  static unsigned getHashValue(clang::DeclarationName);
385
386  static inline bool
387  isEqual(clang::DeclarationName LHS, clang::DeclarationName RHS) {
388    return LHS == RHS;
389  }
390
391  static inline bool isPod() { return true; }
392};
393
394}  // end namespace llvm
395
396#endif
397