clang  19.0.0git
UnresolvedSet.h
Go to the documentation of this file.
1 //===- UnresolvedSet.h - Unresolved sets of declarations --------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines the UnresolvedSet class, which is used to store
10 // collections of declarations in the AST.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_CLANG_AST_UNRESOLVEDSET_H
15 #define LLVM_CLANG_AST_UNRESOLVEDSET_H
16 
18 #include "clang/Basic/LLVM.h"
19 #include "clang/Basic/Specifiers.h"
20 #include "llvm/ADT/ArrayRef.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/iterator.h"
23 #include <cstddef>
24 #include <iterator>
25 
26 namespace clang {
27 
28 class NamedDecl;
29 
30 /// The iterator over UnresolvedSets. Serves as both the const and
31 /// non-const iterator.
32 class UnresolvedSetIterator : public llvm::iterator_adaptor_base<
33  UnresolvedSetIterator, DeclAccessPair *,
34  std::random_access_iterator_tag, NamedDecl *,
35  std::ptrdiff_t, NamedDecl *, NamedDecl *> {
36  friend class ASTUnresolvedSet;
37  friend class OverloadExpr;
38  friend class UnresolvedSetImpl;
39 
41  : iterator_adaptor_base(Iter) {}
43  : iterator_adaptor_base(const_cast<DeclAccessPair *>(Iter)) {}
44 
45 public:
46  // Work around a bug in MSVC 2013 where explicitly default constructed
47  // temporaries with defaulted ctors are not zero initialized.
48  UnresolvedSetIterator() : iterator_adaptor_base(nullptr) {}
49 
50  NamedDecl *getDecl() const { return I->getDecl(); }
51  void setDecl(NamedDecl *ND) const { return I->setDecl(ND); }
52  AccessSpecifier getAccess() const { return I->getAccess(); }
53  void setAccess(AccessSpecifier AS) { I->setAccess(AS); }
54  const DeclAccessPair &getPair() const { return *I; }
55 
56  NamedDecl *operator*() const { return getDecl(); }
57  NamedDecl *operator->() const { return **this; }
58 };
59 
60 /// A set of unresolved declarations.
63 
64  // Don't allow direct construction, and only permit subclassing by
65  // UnresolvedSet.
66 private:
67  template <unsigned N> friend class UnresolvedSet;
68 
69  UnresolvedSetImpl() = default;
70  UnresolvedSetImpl(const UnresolvedSetImpl &) = default;
71  UnresolvedSetImpl &operator=(const UnresolvedSetImpl &) = default;
72 
73  // FIXME: Switch these to "= default" once MSVC supports generating move ops
75  UnresolvedSetImpl &operator=(UnresolvedSetImpl &&) { return *this; }
76 
77 public:
78  // We don't currently support assignment through this iterator, so we might
79  // as well use the same implementation twice.
82 
83  iterator begin() { return iterator(decls().begin()); }
84  iterator end() { return iterator(decls().end()); }
85 
86  const_iterator begin() const { return const_iterator(decls().begin()); }
87  const_iterator end() const { return const_iterator(decls().end()); }
88 
89  ArrayRef<DeclAccessPair> pairs() const { return decls(); }
90 
91  void addDecl(NamedDecl *D) {
92  addDecl(D, AS_none);
93  }
94 
96  decls().push_back(DeclAccessPair::make(D, AS));
97  }
98 
99  /// Replaces the given declaration with the new one, once.
100  ///
101  /// \return true if the set changed
102  bool replace(const NamedDecl* Old, NamedDecl *New) {
103  for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
104  if (I->getDecl() == Old)
105  return (I->setDecl(New), true);
106  return false;
107  }
108 
109  /// Replaces the declaration at the given iterator with the new one,
110  /// preserving the original access bits.
111  void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); }
112 
114  I.I->set(New, AS);
115  }
116 
117  void erase(unsigned I) {
118  auto val = decls().pop_back_val();
119  if (I < size())
120  decls()[I] = val;
121  }
122 
123  void erase(iterator I) {
124  auto val = decls().pop_back_val();
125  if (I != end())
126  *I.I = val;
127  }
128 
129  void setAccess(iterator I, AccessSpecifier AS) { I.I->setAccess(AS); }
130 
131  void clear() { decls().clear(); }
132  void truncate(unsigned N) { decls().truncate(N); }
133 
134  bool empty() const { return decls().empty(); }
135  unsigned size() const { return decls().size(); }
136 
137  void append(iterator I, iterator E) { decls().append(I.I, E.I); }
138 
139  template<typename Iter> void assign(Iter I, Iter E) { decls().assign(I, E); }
140 
141  DeclAccessPair &operator[](unsigned I) { return decls()[I]; }
142  const DeclAccessPair &operator[](unsigned I) const { return decls()[I]; }
143 
144 private:
145  // These work because the only permitted subclass is UnresolvedSetImpl
146 
147  DeclsTy &decls() {
148  return *reinterpret_cast<DeclsTy*>(this);
149  }
150  const DeclsTy &decls() const {
151  return *reinterpret_cast<const DeclsTy*>(this);
152  }
153 };
154 
155 /// A set of unresolved declarations.
156 template <unsigned InlineCapacity> class UnresolvedSet :
157  public UnresolvedSetImpl {
159 };
160 
161 
162 } // namespace clang
163 
164 #endif // LLVM_CLANG_AST_UNRESOLVEDSET_H
unsigned Iter
Definition: HTMLLogger.cpp:154
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines various enumerations that describe declaration and type specifiers.
An UnresolvedSet-like class which uses the ASTContext's allocator.
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
void setAccess(AccessSpecifier AS)
Definition: DeclBase.h:508
This represents a decl that may have a name.
Definition: Decl.h:249
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
Definition: ExprCXX.h:2978
A set of unresolved declarations.
Definition: UnresolvedSet.h:61
bool replace(const NamedDecl *Old, NamedDecl *New)
Replaces the given declaration with the new one, once.
const_iterator end() const
Definition: UnresolvedSet.h:87
void addDecl(NamedDecl *D, AccessSpecifier AS)
Definition: UnresolvedSet.h:95
void replace(iterator I, NamedDecl *New, AccessSpecifier AS)
void setAccess(iterator I, AccessSpecifier AS)
const DeclAccessPair & operator[](unsigned I) const
ArrayRef< DeclAccessPair > pairs() const
Definition: UnresolvedSet.h:89
void replace(iterator I, NamedDecl *New)
Replaces the declaration at the given iterator with the new one, preserving the original access bits.
const_iterator begin() const
Definition: UnresolvedSet.h:86
void erase(iterator I)
void erase(unsigned I)
unsigned size() const
void assign(Iter I, Iter E)
UnresolvedSetIterator iterator
Definition: UnresolvedSet.h:80
DeclAccessPair & operator[](unsigned I)
void append(iterator I, iterator E)
void truncate(unsigned N)
void addDecl(NamedDecl *D)
Definition: UnresolvedSet.h:91
UnresolvedSetIterator const_iterator
Definition: UnresolvedSet.h:81
The iterator over UnresolvedSets.
Definition: UnresolvedSet.h:35
const DeclAccessPair & getPair() const
Definition: UnresolvedSet.h:54
AccessSpecifier getAccess() const
Definition: UnresolvedSet.h:52
void setDecl(NamedDecl *ND) const
Definition: UnresolvedSet.h:51
NamedDecl * operator->() const
Definition: UnresolvedSet.h:57
NamedDecl * operator*() const
Definition: UnresolvedSet.h:56
void setAccess(AccessSpecifier AS)
Definition: UnresolvedSet.h:53
NamedDecl * getDecl() const
Definition: UnresolvedSet.h:50
A set of unresolved declarations.
The JSON file list parser is used to communicate input to InstallAPI.
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
Definition: Specifiers.h:120
@ AS_none
Definition: Specifiers.h:124