clang 20.0.0git
Redeclarable.h
Go to the documentation of this file.
1//===- Redeclarable.h - Base for Decls that can be redeclared --*- 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 Redeclarable interface.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_AST_REDECLARABLE_H
14#define LLVM_CLANG_AST_REDECLARABLE_H
15
17#include "llvm/ADT/DenseMapInfo.h"
18#include "llvm/ADT/PointerUnion.h"
19#include "llvm/ADT/iterator_range.h"
20#include "llvm/Support/Casting.h"
21#include <cassert>
22#include <cstddef>
23#include <iterator>
24
25namespace clang {
26
27class ASTContext;
28class Decl;
29
30// Some notes on redeclarables:
31//
32// - Every redeclarable is on a circular linked list.
33//
34// - Every decl has a pointer to the first element of the chain _and_ a
35// DeclLink that may point to one of 3 possible states:
36// - the "previous" (temporal) element in the chain
37// - the "latest" (temporal) element in the chain
38// - the "uninitialized-latest" value (when newly-constructed)
39//
40// - The first element is also often called the canonical element. Every
41// element has a pointer to it so that "getCanonical" can be fast.
42//
43// - Most links in the chain point to previous, except the link out of
44// the first; it points to latest.
45//
46// - Elements are called "first", "previous", "latest" or
47// "most-recent" when referring to temporal order: order of addition
48// to the chain.
49//
50// - It's easiest to just ignore the implementation of DeclLink when making
51// sense of the redeclaration chain.
52//
53// - There's also a "definition" link for several types of
54// redeclarable, where only one definition should exist at any given
55// time (and the defn pointer is stored in the decl's "data" which
56// is copied to every element on the chain when it's changed).
57//
58// Here is some ASCII art:
59//
60// "first" "latest"
61// "canonical" "most recent"
62// +------------+ first +--------------+
63// | | <--------------------------- | |
64// | | | |
65// | | | |
66// | | +--------------+ | |
67// | | first | | | |
68// | | <---- | | | |
69// | | | | | |
70// | @class A | link | @interface A | link | @class A |
71// | seen first | <---- | seen second | <---- | seen third |
72// | | | | | |
73// +------------+ +--------------+ +--------------+
74// | data | defn | data | defn | data |
75// | | ----> | | <---- | |
76// +------------+ +--------------+ +--------------+
77// | | ^ ^
78// | |defn | |
79// | link +-----+ |
80// +-->-------------------------------------------+
81
82/// Provides common interface for the Decls that can be redeclared.
83template<typename decl_type>
85protected:
86 class DeclLink {
87 /// A pointer to a known latest declaration, either statically known or
88 /// generationally updated as decls are added by an external source.
89 using KnownLatest =
92
93 /// We store a pointer to the ASTContext in the UninitializedLatest
94 /// pointer, but to avoid circular type dependencies when we steal the low
95 /// bits of this pointer, we use a raw void* here.
96 using UninitializedLatest = const void *;
97
98 using Previous = Decl *;
99
100 /// A pointer to either an uninitialized latest declaration (where either
101 /// we've not yet set the previous decl or there isn't one), or to a known
102 /// previous declaration.
103 using NotKnownLatest = llvm::PointerUnion<Previous, UninitializedLatest>;
104
105 mutable llvm::PointerUnion<NotKnownLatest, KnownLatest> Link;
106
107 public:
110
112 : Link(NotKnownLatest(reinterpret_cast<UninitializedLatest>(&Ctx))) {}
113 DeclLink(PreviousTag, decl_type *D) : Link(NotKnownLatest(Previous(D))) {}
114
115 bool isFirst() const {
116 return isa<KnownLatest>(Link) ||
117 // FIXME: 'template' is required on the next line due to an
118 // apparent clang bug.
119 isa<UninitializedLatest>(cast<NotKnownLatest>(Link));
120 }
121
122 decl_type *getPrevious(const decl_type *D) const {
123 if (NotKnownLatest NKL = dyn_cast<NotKnownLatest>(Link)) {
124 if (auto *Prev = dyn_cast<Previous>(NKL))
125 return static_cast<decl_type *>(Prev);
126
127 // Allocate the generational 'most recent' cache now, if needed.
128 Link = KnownLatest(*reinterpret_cast<const ASTContext *>(
129 cast<UninitializedLatest>(NKL)),
130 const_cast<decl_type *>(D));
131 }
132
133 return static_cast<decl_type *>(cast<KnownLatest>(Link).get(D));
134 }
135
136 void setPrevious(decl_type *D) {
137 assert(!isFirst() && "decl became non-canonical unexpectedly");
138 Link = Previous(D);
139 }
140
141 void setLatest(decl_type *D) {
142 assert(isFirst() && "decl became canonical unexpectedly");
143 if (NotKnownLatest NKL = dyn_cast<NotKnownLatest>(Link)) {
144 Link = KnownLatest(*reinterpret_cast<const ASTContext *>(
145 cast<UninitializedLatest>(NKL)),
146 D);
147 } else {
148 auto Latest = cast<KnownLatest>(Link);
149 Latest.set(D);
150 Link = Latest;
151 }
152 }
153
154 void markIncomplete() { cast<KnownLatest>(Link).markIncomplete(); }
155
157 assert(isFirst() && "expected a canonical decl");
158 if (isa<NotKnownLatest>(Link))
159 return nullptr;
160 return cast<KnownLatest>(Link).getNotUpdated();
161 }
162 };
163
164 static DeclLink PreviousDeclLink(decl_type *D) {
166 }
167
168 static DeclLink LatestDeclLink(const ASTContext &Ctx) {
169 return DeclLink(DeclLink::LatestLink, Ctx);
170 }
171
172 /// Points to the next redeclaration in the chain.
173 ///
174 /// If isFirst() is false, this is a link to the previous declaration
175 /// of this same Decl. If isFirst() is true, this is the first
176 /// declaration and Link points to the latest declaration. For example:
177 ///
178 /// #1 int f(int x, int y = 1); // <pointer to #3, true>
179 /// #2 int f(int x = 0, int y); // <pointer to #1, false>
180 /// #3 int f(int x, int y) { return x + y; } // <pointer to #2, false>
181 ///
182 /// If there is only one declaration, it is <pointer to self, true>
184
185 decl_type *First;
186
187 decl_type *getNextRedeclaration() const {
188 return RedeclLink.getPrevious(static_cast<const decl_type *>(this));
189 }
190
191public:
192 friend class ASTDeclMerger;
193 friend class ASTDeclReader;
194 friend class ASTDeclWriter;
195 friend class IncrementalParser;
196
199 First(static_cast<decl_type *>(this)) {}
200
201 /// Return the previous declaration of this declaration or NULL if this
202 /// is the first declaration.
203 decl_type *getPreviousDecl() {
204 if (!RedeclLink.isFirst())
205 return getNextRedeclaration();
206 return nullptr;
207 }
208 const decl_type *getPreviousDecl() const {
209 return const_cast<decl_type *>(
210 static_cast<const decl_type*>(this))->getPreviousDecl();
211 }
212
213 /// Return the first declaration of this declaration or itself if this
214 /// is the only declaration.
215 decl_type *getFirstDecl() { return First; }
216
217 /// Return the first declaration of this declaration or itself if this
218 /// is the only declaration.
219 const decl_type *getFirstDecl() const { return First; }
220
221 /// True if this is the first declaration in its redeclaration chain.
222 bool isFirstDecl() const { return RedeclLink.isFirst(); }
223
224 /// Returns the most recent (re)declaration of this declaration.
225 decl_type *getMostRecentDecl() {
226 return getFirstDecl()->getNextRedeclaration();
227 }
228
229 /// Returns the most recent (re)declaration of this declaration.
230 const decl_type *getMostRecentDecl() const {
231 return getFirstDecl()->getNextRedeclaration();
232 }
233
234 /// Set the previous declaration. If PrevDecl is NULL, set this as the
235 /// first and only declaration.
236 void setPreviousDecl(decl_type *PrevDecl);
237
238 /// Iterates through all the redeclarations of the same decl.
240 /// Current - The current declaration.
241 decl_type *Current = nullptr;
242 decl_type *Starter = nullptr;
243 bool PassedFirst = false;
244
245 public:
246 using value_type = decl_type *;
247 using reference = decl_type *;
248 using pointer = decl_type *;
249 using iterator_category = std::forward_iterator_tag;
250 using difference_type = std::ptrdiff_t;
251
252 redecl_iterator() = default;
253 explicit redecl_iterator(decl_type *C) : Current(C), Starter(C) {}
254
255 reference operator*() const { return Current; }
256 pointer operator->() const { return Current; }
257
259 assert(Current && "Advancing while iterator has reached end");
260 // Make sure we don't infinitely loop on an invalid redecl chain. This
261 // should never happen.
262 if (Current->isFirstDecl()) {
263 if (PassedFirst) {
264 assert(0 && "Passed first decl twice, invalid redecl chain!");
265 Current = nullptr;
266 return *this;
267 }
268 PassedFirst = true;
269 }
270
271 // Get either previous decl or latest decl.
272 decl_type *Next = Current->getNextRedeclaration();
273 Current = (Next != Starter) ? Next : nullptr;
274 return *this;
275 }
276
278 redecl_iterator tmp(*this);
279 ++(*this);
280 return tmp;
281 }
282
283 friend bool operator==(const redecl_iterator &x, const redecl_iterator &y) {
284 return x.Current == y.Current;
285 }
286 friend bool operator!=(const redecl_iterator &x, const redecl_iterator &y) {
287 return x.Current != y.Current;
288 }
289 };
290
291 using redecl_range = llvm::iterator_range<redecl_iterator>;
292
293 /// Returns an iterator range for all the redeclarations of the same
294 /// decl. It will iterate at least once (when this decl is the only one).
296 return redecl_range(redecl_iterator(const_cast<decl_type *>(
297 static_cast<const decl_type *>(this))),
299 }
300
301 redecl_iterator redecls_begin() const { return redecls().begin(); }
302 redecl_iterator redecls_end() const { return redecls().end(); }
303};
304
305/// Get the primary declaration for a declaration from an AST file. That
306/// will be the first-loaded declaration.
307Decl *getPrimaryMergedDecl(Decl *D);
308
309/// Provides common interface for the Decls that cannot be redeclared,
310/// but can be merged if the same declaration is brought in from multiple
311/// modules.
312template<typename decl_type>
314public:
315 Mergeable() = default;
316
317 /// Return the first declaration of this declaration or itself if this
318 /// is the only declaration.
319 decl_type *getFirstDecl() {
320 auto *D = static_cast<decl_type *>(this);
321 if (!D->isFromASTFile())
322 return D;
323 return cast<decl_type>(getPrimaryMergedDecl(const_cast<decl_type*>(D)));
324 }
325
326 /// Return the first declaration of this declaration or itself if this
327 /// is the only declaration.
328 const decl_type *getFirstDecl() const {
329 const auto *D = static_cast<const decl_type *>(this);
330 if (!D->isFromASTFile())
331 return D;
332 return cast<decl_type>(getPrimaryMergedDecl(const_cast<decl_type*>(D)));
333 }
334
335 /// Returns true if this is the first declaration.
336 bool isFirstDecl() const { return getFirstDecl() == this; }
337};
338
339/// A wrapper class around a pointer that always points to its canonical
340/// declaration.
341///
342/// CanonicalDeclPtr<decl_type> behaves just like decl_type*, except we call
343/// decl_type::getCanonicalDecl() on construction.
344///
345/// This is useful for hashtables that you want to be keyed on a declaration's
346/// canonical decl -- if you use CanonicalDeclPtr as the key, you don't need to
347/// remember to call getCanonicalDecl() everywhere.
348template <typename decl_type> class CanonicalDeclPtr {
349public:
350 CanonicalDeclPtr() = default;
351 CanonicalDeclPtr(decl_type *Ptr)
352 : Ptr(Ptr ? Ptr->getCanonicalDecl() : nullptr) {}
355
356 operator decl_type *() { return Ptr; }
357 operator const decl_type *() const { return Ptr; }
358
359 decl_type *operator->() { return Ptr; }
360 const decl_type *operator->() const { return Ptr; }
361
362 decl_type &operator*() { return *Ptr; }
363 const decl_type &operator*() const { return *Ptr; }
364
366 return LHS.Ptr == RHS.Ptr;
367 }
369 return LHS.Ptr != RHS.Ptr;
370 }
371
372private:
373 friend struct llvm::DenseMapInfo<CanonicalDeclPtr<decl_type>>;
374 friend struct llvm::PointerLikeTypeTraits<CanonicalDeclPtr<decl_type>>;
375
376 decl_type *Ptr = nullptr;
377};
378
379} // namespace clang
380
381namespace llvm {
382
383template <typename decl_type>
384struct DenseMapInfo<clang::CanonicalDeclPtr<decl_type>> {
386 using BaseInfo = DenseMapInfo<decl_type *>;
387
389 // Construct our CanonicalDeclPtr this way because the regular constructor
390 // would dereference P.Ptr, which is not allowed.
392 P.Ptr = BaseInfo::getEmptyKey();
393 return P;
394 }
395
398 P.Ptr = BaseInfo::getTombstoneKey();
399 return P;
400 }
401
402 static unsigned getHashValue(const CanonicalDeclPtr &P) {
403 return BaseInfo::getHashValue(P);
404 }
405
406 static bool isEqual(const CanonicalDeclPtr &LHS,
407 const CanonicalDeclPtr &RHS) {
408 return BaseInfo::isEqual(LHS, RHS);
409 }
410};
411
412template <typename decl_type>
413struct PointerLikeTypeTraits<clang::CanonicalDeclPtr<decl_type>> {
415 return P.Ptr;
416 }
420 return C;
421 }
422 static constexpr int NumLowBitsAvailable =
424};
425
426} // namespace llvm
427
428#endif // LLVM_CLANG_AST_REDECLARABLE_H
StringRef P
const Decl * D
static const Decl * getCanonicalDecl(const Decl *D)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:188
A wrapper class around a pointer that always points to its canonical declaration.
Definition: Redeclarable.h:348
CanonicalDeclPtr(const CanonicalDeclPtr &)=default
const decl_type * operator->() const
Definition: Redeclarable.h:360
CanonicalDeclPtr & operator=(const CanonicalDeclPtr &)=default
const decl_type & operator*() const
Definition: Redeclarable.h:363
decl_type & operator*()
Definition: Redeclarable.h:362
CanonicalDeclPtr(decl_type *Ptr)
Definition: Redeclarable.h:351
decl_type * operator->()
Definition: Redeclarable.h:359
friend bool operator==(CanonicalDeclPtr LHS, CanonicalDeclPtr RHS)
Definition: Redeclarable.h:365
friend bool operator!=(CanonicalDeclPtr LHS, CanonicalDeclPtr RHS)
Definition: Redeclarable.h:368
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
virtual void CompleteRedeclChain(const Decl *D)
Gives the external AST source an opportunity to complete the redeclaration chain for a declaration.
Provides support for incremental compilation.
Provides common interface for the Decls that cannot be redeclared, but can be merged if the same decl...
Definition: Redeclarable.h:313
bool isFirstDecl() const
Returns true if this is the first declaration.
Definition: Redeclarable.h:336
const decl_type * getFirstDecl() const
Return the first declaration of this declaration or itself if this is the only declaration.
Definition: Redeclarable.h:328
Mergeable()=default
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
Definition: Redeclarable.h:319
Iterates through all the redeclarations of the same decl.
Definition: Redeclarable.h:239
friend bool operator!=(const redecl_iterator &x, const redecl_iterator &y)
Definition: Redeclarable.h:286
friend bool operator==(const redecl_iterator &x, const redecl_iterator &y)
Definition: Redeclarable.h:283
std::forward_iterator_tag iterator_category
Definition: Redeclarable.h:249
Provides common interface for the Decls that can be redeclared.
Definition: Redeclarable.h:84
decl_type * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
Definition: Redeclarable.h:215
const decl_type * getMostRecentDecl() const
Returns the most recent (re)declaration of this declaration.
Definition: Redeclarable.h:230
const decl_type * getFirstDecl() const
Return the first declaration of this declaration or itself if this is the only declaration.
Definition: Redeclarable.h:219
decl_type * getNextRedeclaration() const
Definition: Redeclarable.h:187
Redeclarable(const ASTContext &Ctx)
Definition: Redeclarable.h:197
decl_type * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
Definition: Redeclarable.h:203
redecl_iterator redecls_end() const
Definition: Redeclarable.h:302
const decl_type * getPreviousDecl() const
Definition: Redeclarable.h:208
DeclLink RedeclLink
Points to the next redeclaration in the chain.
Definition: Redeclarable.h:183
llvm::iterator_range< redecl_iterator > redecl_range
Definition: Redeclarable.h:291
decl_type * getMostRecentDecl()
Returns the most recent (re)declaration of this declaration.
Definition: Redeclarable.h:225
void setPreviousDecl(decl_type *PrevDecl)
Set the previous declaration.
Definition: Decl.h:4981
static DeclLink LatestDeclLink(const ASTContext &Ctx)
Definition: Redeclarable.h:168
bool isFirstDecl() const
True if this is the first declaration in its redeclaration chain.
Definition: Redeclarable.h:222
redecl_iterator redecls_begin() const
Definition: Redeclarable.h:301
redecl_range redecls() const
Returns an iterator range for all the redeclarations of the same decl.
Definition: Redeclarable.h:295
static DeclLink PreviousDeclLink(decl_type *D)
Definition: Redeclarable.h:164
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
The JSON file list parser is used to communicate input to InstallAPI.
Decl * getPrimaryMergedDecl(Decl *D)
Get the primary declaration for a declaration from an AST file.
Definition: Decl.cpp:76
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
A lazy value (of type T) that is within an AST node of type Owner, where the value might change in la...
static unsigned getHashValue(const CanonicalDeclPtr &P)
Definition: Redeclarable.h:402
static bool isEqual(const CanonicalDeclPtr &LHS, const CanonicalDeclPtr &RHS)
Definition: Redeclarable.h:406
static void * getAsVoidPointer(clang::CanonicalDeclPtr< decl_type > P)
Definition: Redeclarable.h:414
static clang::CanonicalDeclPtr< decl_type > getFromVoidPointer(void *P)
Definition: Redeclarable.h:417