clang 20.0.0git
DeclCXX.cpp
Go to the documentation of this file.
1//===- DeclCXX.cpp - C++ Declaration AST Node Implementation --------------===//
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 implements the C++ related Decl classes.
10//
11//===----------------------------------------------------------------------===//
12
13#include "clang/AST/DeclCXX.h"
15#include "clang/AST/ASTLambda.h"
18#include "clang/AST/Attr.h"
20#include "clang/AST/DeclBase.h"
23#include "clang/AST/Expr.h"
24#include "clang/AST/ExprCXX.h"
27#include "clang/AST/ODRHash.h"
28#include "clang/AST/Type.h"
29#include "clang/AST/TypeLoc.h"
34#include "clang/Basic/LLVM.h"
40#include "llvm/ADT/SmallPtrSet.h"
41#include "llvm/ADT/SmallVector.h"
42#include "llvm/ADT/iterator_range.h"
43#include "llvm/Support/Casting.h"
44#include "llvm/Support/ErrorHandling.h"
45#include "llvm/Support/Format.h"
46#include "llvm/Support/raw_ostream.h"
47#include <algorithm>
48#include <cassert>
49#include <cstddef>
50#include <cstdint>
51
52using namespace clang;
53
54//===----------------------------------------------------------------------===//
55// Decl Allocation/Deallocation Method Implementations
56//===----------------------------------------------------------------------===//
57
58void AccessSpecDecl::anchor() {}
59
61 GlobalDeclID ID) {
62 return new (C, ID) AccessSpecDecl(EmptyShell());
63}
64
65void LazyASTUnresolvedSet::getFromExternalSource(ASTContext &C) const {
66 ExternalASTSource *Source = C.getExternalSource();
67 assert(Impl.Decls.isLazy() && "getFromExternalSource for non-lazy set");
68 assert(Source && "getFromExternalSource with no external source");
69
70 for (ASTUnresolvedSet::iterator I = Impl.begin(); I != Impl.end(); ++I)
71 I.setDecl(
72 cast<NamedDecl>(Source->GetExternalDecl(GlobalDeclID(I.getDeclID()))));
73 Impl.Decls.setLazy(false);
74}
75
76CXXRecordDecl::DefinitionData::DefinitionData(CXXRecordDecl *D)
77 : UserDeclaredConstructor(false), UserDeclaredSpecialMembers(0),
78 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false),
79 Abstract(false), IsStandardLayout(true), IsCXX11StandardLayout(true),
80 HasBasesWithFields(false), HasBasesWithNonStaticDataMembers(false),
81 HasPrivateFields(false), HasProtectedFields(false),
82 HasPublicFields(false), HasMutableFields(false), HasVariantMembers(false),
83 HasOnlyCMembers(true), HasInitMethod(false), HasInClassInitializer(false),
84 HasUninitializedReferenceMember(false), HasUninitializedFields(false),
85 HasInheritedConstructor(false), HasInheritedDefaultConstructor(false),
86 HasInheritedAssignment(false),
87 NeedOverloadResolutionForCopyConstructor(false),
88 NeedOverloadResolutionForMoveConstructor(false),
89 NeedOverloadResolutionForCopyAssignment(false),
90 NeedOverloadResolutionForMoveAssignment(false),
91 NeedOverloadResolutionForDestructor(false),
92 DefaultedCopyConstructorIsDeleted(false),
93 DefaultedMoveConstructorIsDeleted(false),
94 DefaultedCopyAssignmentIsDeleted(false),
95 DefaultedMoveAssignmentIsDeleted(false),
96 DefaultedDestructorIsDeleted(false), HasTrivialSpecialMembers(SMF_All),
97 HasTrivialSpecialMembersForCall(SMF_All),
98 DeclaredNonTrivialSpecialMembers(0),
99 DeclaredNonTrivialSpecialMembersForCall(0), HasIrrelevantDestructor(true),
100 HasConstexprNonCopyMoveConstructor(false),
101 HasDefaultedDefaultConstructor(false),
102 DefaultedDefaultConstructorIsConstexpr(true),
103 HasConstexprDefaultConstructor(false),
104 DefaultedDestructorIsConstexpr(true),
105 HasNonLiteralTypeFieldsOrBases(false), StructuralIfLiteral(true),
106 UserProvidedDefaultConstructor(false), DeclaredSpecialMembers(0),
107 ImplicitCopyConstructorCanHaveConstParamForVBase(true),
108 ImplicitCopyConstructorCanHaveConstParamForNonVBase(true),
109 ImplicitCopyAssignmentHasConstParam(true),
110 HasDeclaredCopyConstructorWithConstParam(false),
111 HasDeclaredCopyAssignmentWithConstParam(false),
112 IsAnyDestructorNoReturn(false), IsHLSLIntangible(false), IsLambda(false),
113 IsParsingBaseSpecifiers(false), ComputedVisibleConversions(false),
114 HasODRHash(false), Definition(D) {}
115
116CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getBasesSlowCase() const {
117 return Bases.get(Definition->getASTContext().getExternalSource());
118}
119
120CXXBaseSpecifier *CXXRecordDecl::DefinitionData::getVBasesSlowCase() const {
121 return VBases.get(Definition->getASTContext().getExternalSource());
122}
123
125 DeclContext *DC, SourceLocation StartLoc,
127 CXXRecordDecl *PrevDecl)
128 : RecordDecl(K, TK, C, DC, StartLoc, IdLoc, Id, PrevDecl),
129 DefinitionData(PrevDecl ? PrevDecl->DefinitionData
130 : nullptr) {}
131
133 DeclContext *DC, SourceLocation StartLoc,
135 CXXRecordDecl *PrevDecl,
136 bool DelayTypeCreation) {
137 auto *R = new (C, DC) CXXRecordDecl(CXXRecord, TK, C, DC, StartLoc, IdLoc, Id,
138 PrevDecl);
139 R->setMayHaveOutOfDateDef(C.getLangOpts().Modules);
140
141 // FIXME: DelayTypeCreation seems like such a hack
142 if (!DelayTypeCreation)
143 C.getTypeDeclType(R, PrevDecl);
144 return R;
145}
146
150 unsigned DependencyKind, bool IsGeneric,
151 LambdaCaptureDefault CaptureDefault) {
152 auto *R = new (C, DC) CXXRecordDecl(CXXRecord, TagTypeKind::Class, C, DC, Loc,
153 Loc, nullptr, nullptr);
154 R->setBeingDefined(true);
155 R->DefinitionData = new (C) struct LambdaDefinitionData(
156 R, Info, DependencyKind, IsGeneric, CaptureDefault);
157 R->setMayHaveOutOfDateDef(false);
158 R->setImplicit(true);
159
160 C.getTypeDeclType(R, /*PrevDecl=*/nullptr);
161 return R;
162}
163
165 GlobalDeclID ID) {
166 auto *R = new (C, ID)
167 CXXRecordDecl(CXXRecord, TagTypeKind::Struct, C, nullptr,
168 SourceLocation(), SourceLocation(), nullptr, nullptr);
169 R->setMayHaveOutOfDateDef(false);
170 return R;
171}
172
173/// Determine whether a class has a repeated base class. This is intended for
174/// use when determining if a class is standard-layout, so makes no attempt to
175/// handle virtual bases.
176static bool hasRepeatedBaseClass(const CXXRecordDecl *StartRD) {
178 SmallVector<const CXXRecordDecl*, 8> WorkList = {StartRD};
179 while (!WorkList.empty()) {
180 const CXXRecordDecl *RD = WorkList.pop_back_val();
181 if (RD->getTypeForDecl()->isDependentType())
182 continue;
183 for (const CXXBaseSpecifier &BaseSpec : RD->bases()) {
184 if (const CXXRecordDecl *B = BaseSpec.getType()->getAsCXXRecordDecl()) {
185 if (!SeenBaseTypes.insert(B).second)
186 return true;
187 WorkList.push_back(B);
188 }
189 }
190 }
191 return false;
192}
193
194void
196 unsigned NumBases) {
198
199 if (!data().Bases.isOffset() && data().NumBases > 0)
200 C.Deallocate(data().getBases());
201
202 if (NumBases) {
203 if (!C.getLangOpts().CPlusPlus17) {
204 // C++ [dcl.init.aggr]p1:
205 // An aggregate is [...] a class with [...] no base classes [...].
206 data().Aggregate = false;
207 }
208
209 // C++ [class]p4:
210 // A POD-struct is an aggregate class...
211 data().PlainOldData = false;
212 }
213
214 // The set of seen virtual base types.
216
217 // The virtual bases of this class.
219
220 data().Bases = new(C) CXXBaseSpecifier [NumBases];
221 data().NumBases = NumBases;
222 for (unsigned i = 0; i < NumBases; ++i) {
223 data().getBases()[i] = *Bases[i];
224 // Keep track of inherited vbases for this base class.
225 const CXXBaseSpecifier *Base = Bases[i];
226 QualType BaseType = Base->getType();
227 // Skip dependent types; we can't do any checking on them now.
228 if (BaseType->isDependentType())
229 continue;
230 auto *BaseClassDecl =
231 cast<CXXRecordDecl>(BaseType->castAs<RecordType>()->getDecl());
232
233 // C++2a [class]p7:
234 // A standard-layout class is a class that:
235 // [...]
236 // -- has all non-static data members and bit-fields in the class and
237 // its base classes first declared in the same class
238 if (BaseClassDecl->data().HasBasesWithFields ||
239 !BaseClassDecl->field_empty()) {
240 if (data().HasBasesWithFields)
241 // Two bases have members or bit-fields: not standard-layout.
242 data().IsStandardLayout = false;
243 data().HasBasesWithFields = true;
244 }
245
246 // C++11 [class]p7:
247 // A standard-layout class is a class that:
248 // -- [...] has [...] at most one base class with non-static data
249 // members
250 if (BaseClassDecl->data().HasBasesWithNonStaticDataMembers ||
251 BaseClassDecl->hasDirectFields()) {
252 if (data().HasBasesWithNonStaticDataMembers)
253 data().IsCXX11StandardLayout = false;
254 data().HasBasesWithNonStaticDataMembers = true;
255 }
256
257 if (!BaseClassDecl->isEmpty()) {
258 // C++14 [meta.unary.prop]p4:
259 // T is a class type [...] with [...] no base class B for which
260 // is_empty<B>::value is false.
261 data().Empty = false;
262 }
263
264 // C++1z [dcl.init.agg]p1:
265 // An aggregate is a class with [...] no private or protected base classes
266 if (Base->getAccessSpecifier() != AS_public) {
267 data().Aggregate = false;
268
269 // C++20 [temp.param]p7:
270 // A structural type is [...] a literal class type with [...] all base
271 // classes [...] public
272 data().StructuralIfLiteral = false;
273 }
274
275 // C++ [class.virtual]p1:
276 // A class that declares or inherits a virtual function is called a
277 // polymorphic class.
278 if (BaseClassDecl->isPolymorphic()) {
279 data().Polymorphic = true;
280
281 // An aggregate is a class with [...] no virtual functions.
282 data().Aggregate = false;
283 }
284
285 // C++0x [class]p7:
286 // A standard-layout class is a class that: [...]
287 // -- has no non-standard-layout base classes
288 if (!BaseClassDecl->isStandardLayout())
289 data().IsStandardLayout = false;
290 if (!BaseClassDecl->isCXX11StandardLayout())
291 data().IsCXX11StandardLayout = false;
292
293 // Record if this base is the first non-literal field or base.
294 if (!hasNonLiteralTypeFieldsOrBases() && !BaseType->isLiteralType(C))
295 data().HasNonLiteralTypeFieldsOrBases = true;
296
297 // Now go through all virtual bases of this base and add them.
298 for (const auto &VBase : BaseClassDecl->vbases()) {
299 // Add this base if it's not already in the list.
300 if (SeenVBaseTypes.insert(C.getCanonicalType(VBase.getType())).second) {
301 VBases.push_back(&VBase);
302
303 // C++11 [class.copy]p8:
304 // The implicitly-declared copy constructor for a class X will have
305 // the form 'X::X(const X&)' if each [...] virtual base class B of X
306 // has a copy constructor whose first parameter is of type
307 // 'const B&' or 'const volatile B&' [...]
308 if (CXXRecordDecl *VBaseDecl = VBase.getType()->getAsCXXRecordDecl())
309 if (!VBaseDecl->hasCopyConstructorWithConstParam())
310 data().ImplicitCopyConstructorCanHaveConstParamForVBase = false;
311
312 // C++1z [dcl.init.agg]p1:
313 // An aggregate is a class with [...] no virtual base classes
314 data().Aggregate = false;
315 }
316 }
317
318 if (Base->isVirtual()) {
319 // Add this base if it's not already in the list.
320 if (SeenVBaseTypes.insert(C.getCanonicalType(BaseType)).second)
321 VBases.push_back(Base);
322
323 // C++14 [meta.unary.prop] is_empty:
324 // T is a class type, but not a union type, with ... no virtual base
325 // classes
326 data().Empty = false;
327
328 // C++1z [dcl.init.agg]p1:
329 // An aggregate is a class with [...] no virtual base classes
330 data().Aggregate = false;
331
332 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
333 // A [default constructor, copy/move constructor, or copy/move assignment
334 // operator for a class X] is trivial [...] if:
335 // -- class X has [...] no virtual base classes
336 data().HasTrivialSpecialMembers &= SMF_Destructor;
337 data().HasTrivialSpecialMembersForCall &= SMF_Destructor;
338
339 // C++0x [class]p7:
340 // A standard-layout class is a class that: [...]
341 // -- has [...] no virtual base classes
342 data().IsStandardLayout = false;
343 data().IsCXX11StandardLayout = false;
344
345 // C++20 [dcl.constexpr]p3:
346 // In the definition of a constexpr function [...]
347 // -- if the function is a constructor or destructor,
348 // its class shall not have any virtual base classes
349 data().DefaultedDefaultConstructorIsConstexpr = false;
350 data().DefaultedDestructorIsConstexpr = false;
351
352 // C++1z [class.copy]p8:
353 // The implicitly-declared copy constructor for a class X will have
354 // the form 'X::X(const X&)' if each potentially constructed subobject
355 // has a copy constructor whose first parameter is of type
356 // 'const B&' or 'const volatile B&' [...]
357 if (!BaseClassDecl->hasCopyConstructorWithConstParam())
358 data().ImplicitCopyConstructorCanHaveConstParamForVBase = false;
359 } else {
360 // C++ [class.ctor]p5:
361 // A default constructor is trivial [...] if:
362 // -- all the direct base classes of its class have trivial default
363 // constructors.
364 if (!BaseClassDecl->hasTrivialDefaultConstructor())
365 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
366
367 // C++0x [class.copy]p13:
368 // A copy/move constructor for class X is trivial if [...]
369 // [...]
370 // -- the constructor selected to copy/move each direct base class
371 // subobject is trivial, and
372 if (!BaseClassDecl->hasTrivialCopyConstructor())
373 data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor;
374
375 if (!BaseClassDecl->hasTrivialCopyConstructorForCall())
376 data().HasTrivialSpecialMembersForCall &= ~SMF_CopyConstructor;
377
378 // If the base class doesn't have a simple move constructor, we'll eagerly
379 // declare it and perform overload resolution to determine which function
380 // it actually calls. If it does have a simple move constructor, this
381 // check is correct.
382 if (!BaseClassDecl->hasTrivialMoveConstructor())
383 data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor;
384
385 if (!BaseClassDecl->hasTrivialMoveConstructorForCall())
386 data().HasTrivialSpecialMembersForCall &= ~SMF_MoveConstructor;
387
388 // C++0x [class.copy]p27:
389 // A copy/move assignment operator for class X is trivial if [...]
390 // [...]
391 // -- the assignment operator selected to copy/move each direct base
392 // class subobject is trivial, and
393 if (!BaseClassDecl->hasTrivialCopyAssignment())
394 data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment;
395 // If the base class doesn't have a simple move assignment, we'll eagerly
396 // declare it and perform overload resolution to determine which function
397 // it actually calls. If it does have a simple move assignment, this
398 // check is correct.
399 if (!BaseClassDecl->hasTrivialMoveAssignment())
400 data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment;
401
402 // C++11 [class.ctor]p6:
403 // If that user-written default constructor would satisfy the
404 // requirements of a constexpr constructor/function(C++23), the
405 // implicitly-defined default constructor is constexpr.
406 if (!BaseClassDecl->hasConstexprDefaultConstructor())
407 data().DefaultedDefaultConstructorIsConstexpr =
408 C.getLangOpts().CPlusPlus23;
409
410 // C++1z [class.copy]p8:
411 // The implicitly-declared copy constructor for a class X will have
412 // the form 'X::X(const X&)' if each potentially constructed subobject
413 // has a copy constructor whose first parameter is of type
414 // 'const B&' or 'const volatile B&' [...]
415 if (!BaseClassDecl->hasCopyConstructorWithConstParam())
416 data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false;
417 }
418
419 // C++ [class.ctor]p3:
420 // A destructor is trivial if all the direct base classes of its class
421 // have trivial destructors.
422 if (!BaseClassDecl->hasTrivialDestructor())
423 data().HasTrivialSpecialMembers &= ~SMF_Destructor;
424
425 if (!BaseClassDecl->hasTrivialDestructorForCall())
426 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor;
427
428 if (!BaseClassDecl->hasIrrelevantDestructor())
429 data().HasIrrelevantDestructor = false;
430
431 if (BaseClassDecl->isAnyDestructorNoReturn())
432 data().IsAnyDestructorNoReturn = true;
433
434 if (BaseClassDecl->isHLSLIntangible())
435 data().IsHLSLIntangible = true;
436
437 // C++11 [class.copy]p18:
438 // The implicitly-declared copy assignment operator for a class X will
439 // have the form 'X& X::operator=(const X&)' if each direct base class B
440 // of X has a copy assignment operator whose parameter is of type 'const
441 // B&', 'const volatile B&', or 'B' [...]
442 if (!BaseClassDecl->hasCopyAssignmentWithConstParam())
443 data().ImplicitCopyAssignmentHasConstParam = false;
444
445 // A class has an Objective-C object member if... or any of its bases
446 // has an Objective-C object member.
447 if (BaseClassDecl->hasObjectMember())
448 setHasObjectMember(true);
449
450 if (BaseClassDecl->hasVolatileMember())
452
453 if (BaseClassDecl->getArgPassingRestrictions() ==
456
457 // Keep track of the presence of mutable fields.
458 if (BaseClassDecl->hasMutableFields())
459 data().HasMutableFields = true;
460
461 if (BaseClassDecl->hasUninitializedExplicitInitFields() &&
462 BaseClassDecl->isAggregate())
464
465 if (BaseClassDecl->hasUninitializedReferenceMember())
466 data().HasUninitializedReferenceMember = true;
467
468 if (!BaseClassDecl->allowConstDefaultInit())
469 data().HasUninitializedFields = true;
470
471 addedClassSubobject(BaseClassDecl);
472 }
473
474 // C++2a [class]p7:
475 // A class S is a standard-layout class if it:
476 // -- has at most one base class subobject of any given type
477 //
478 // Note that we only need to check this for classes with more than one base
479 // class. If there's only one base class, and it's standard layout, then
480 // we know there are no repeated base classes.
481 if (data().IsStandardLayout && NumBases > 1 && hasRepeatedBaseClass(this))
482 data().IsStandardLayout = false;
483
484 if (VBases.empty()) {
485 data().IsParsingBaseSpecifiers = false;
486 return;
487 }
488
489 // Create base specifier for any direct or indirect virtual bases.
490 data().VBases = new (C) CXXBaseSpecifier[VBases.size()];
491 data().NumVBases = VBases.size();
492 for (int I = 0, E = VBases.size(); I != E; ++I) {
493 QualType Type = VBases[I]->getType();
494 if (!Type->isDependentType())
495 addedClassSubobject(Type->getAsCXXRecordDecl());
496 data().getVBases()[I] = *VBases[I];
497 }
498
499 data().IsParsingBaseSpecifiers = false;
500}
501
503 assert(hasDefinition() && "ODRHash only for records with definitions");
504
505 // Previously calculated hash is stored in DefinitionData.
506 if (DefinitionData->HasODRHash)
507 return DefinitionData->ODRHash;
508
509 // Only calculate hash on first call of getODRHash per record.
510 ODRHash Hash;
512 DefinitionData->HasODRHash = true;
513 DefinitionData->ODRHash = Hash.CalculateHash();
514
515 return DefinitionData->ODRHash;
516}
517
518void CXXRecordDecl::addedClassSubobject(CXXRecordDecl *Subobj) {
519 // C++11 [class.copy]p11:
520 // A defaulted copy/move constructor for a class X is defined as
521 // deleted if X has:
522 // -- a direct or virtual base class B that cannot be copied/moved [...]
523 // -- a non-static data member of class type M (or array thereof)
524 // that cannot be copied or moved [...]
525 if (!Subobj->hasSimpleCopyConstructor())
526 data().NeedOverloadResolutionForCopyConstructor = true;
527 if (!Subobj->hasSimpleMoveConstructor())
528 data().NeedOverloadResolutionForMoveConstructor = true;
529
530 // C++11 [class.copy]p23:
531 // A defaulted copy/move assignment operator for a class X is defined as
532 // deleted if X has:
533 // -- a direct or virtual base class B that cannot be copied/moved [...]
534 // -- a non-static data member of class type M (or array thereof)
535 // that cannot be copied or moved [...]
536 if (!Subobj->hasSimpleCopyAssignment())
537 data().NeedOverloadResolutionForCopyAssignment = true;
538 if (!Subobj->hasSimpleMoveAssignment())
539 data().NeedOverloadResolutionForMoveAssignment = true;
540
541 // C++11 [class.ctor]p5, C++11 [class.copy]p11, C++11 [class.dtor]p5:
542 // A defaulted [ctor or dtor] for a class X is defined as
543 // deleted if X has:
544 // -- any direct or virtual base class [...] has a type with a destructor
545 // that is deleted or inaccessible from the defaulted [ctor or dtor].
546 // -- any non-static data member has a type with a destructor
547 // that is deleted or inaccessible from the defaulted [ctor or dtor].
548 if (!Subobj->hasSimpleDestructor()) {
549 data().NeedOverloadResolutionForCopyConstructor = true;
550 data().NeedOverloadResolutionForMoveConstructor = true;
551 data().NeedOverloadResolutionForDestructor = true;
552 }
553
554 // C++20 [dcl.constexpr]p5:
555 // The definition of a constexpr destructor whose function-body is not
556 // = delete shall additionally satisfy the following requirement:
557 // -- for every subobject of class type or (possibly multi-dimensional)
558 // array thereof, that class type shall have a constexpr destructor
559 if (!Subobj->hasConstexprDestructor())
560 data().DefaultedDestructorIsConstexpr =
561 getASTContext().getLangOpts().CPlusPlus23;
562
563 // C++20 [temp.param]p7:
564 // A structural type is [...] a literal class type [for which] the types
565 // of all base classes and non-static data members are structural types or
566 // (possibly multi-dimensional) array thereof
567 if (!Subobj->data().StructuralIfLiteral)
568 data().StructuralIfLiteral = false;
569}
570
572 assert(
574 "getStandardLayoutBaseWithFields called on a non-standard-layout type");
575#ifdef EXPENSIVE_CHECKS
576 {
577 unsigned NumberOfBasesWithFields = 0;
578 if (!field_empty())
579 ++NumberOfBasesWithFields;
581 forallBases([&](const CXXRecordDecl *Base) -> bool {
582 if (!Base->field_empty())
583 ++NumberOfBasesWithFields;
584 assert(
585 UniqueBases.insert(Base->getCanonicalDecl()).second &&
586 "Standard layout struct has multiple base classes of the same type");
587 return true;
588 });
589 assert(NumberOfBasesWithFields <= 1 &&
590 "Standard layout struct has fields declared in more than one class");
591 }
592#endif
593 if (!field_empty())
594 return this;
595 const CXXRecordDecl *Result = this;
596 forallBases([&](const CXXRecordDecl *Base) -> bool {
597 if (!Base->field_empty()) {
598 // This is the base where the fields are declared; return early
599 Result = Base;
600 return false;
601 }
602 return true;
603 });
604 return Result;
605}
606
608 auto *Dtor = getDestructor();
609 return Dtor ? Dtor->isConstexpr() : defaultedDestructorIsConstexpr();
610}
611
613 if (!isDependentContext())
614 return false;
615
616 return !forallBases([](const CXXRecordDecl *) { return true; });
617}
618
620 // C++0x [class]p5:
621 // A trivially copyable class is a class that:
622 // -- has no non-trivial copy constructors,
623 if (hasNonTrivialCopyConstructor()) return false;
624 // -- has no non-trivial move constructors,
625 if (hasNonTrivialMoveConstructor()) return false;
626 // -- has no non-trivial copy assignment operators,
627 if (hasNonTrivialCopyAssignment()) return false;
628 // -- has no non-trivial move assignment operators, and
629 if (hasNonTrivialMoveAssignment()) return false;
630 // -- has a trivial destructor.
631 if (!hasTrivialDestructor()) return false;
632
633 return true;
634}
635
637
638 // A trivially copy constructible class is a class that:
639 // -- has no non-trivial copy constructors,
641 return false;
642 // -- has a trivial destructor.
644 return false;
645
646 return true;
647}
648
649void CXXRecordDecl::markedVirtualFunctionPure() {
650 // C++ [class.abstract]p2:
651 // A class is abstract if it has at least one pure virtual function.
652 data().Abstract = true;
653}
654
655bool CXXRecordDecl::hasSubobjectAtOffsetZeroOfEmptyBaseType(
656 ASTContext &Ctx, const CXXRecordDecl *XFirst) {
657 if (!getNumBases())
658 return false;
659
663
664 // Visit a type that we have determined is an element of M(S).
665 auto Visit = [&](const CXXRecordDecl *RD) -> bool {
666 RD = RD->getCanonicalDecl();
667
668 // C++2a [class]p8:
669 // A class S is a standard-layout class if it [...] has no element of the
670 // set M(S) of types as a base class.
671 //
672 // If we find a subobject of an empty type, it might also be a base class,
673 // so we'll need to walk the base classes to check.
674 if (!RD->data().HasBasesWithFields) {
675 // Walk the bases the first time, stopping if we find the type. Build a
676 // set of them so we don't need to walk them again.
677 if (Bases.empty()) {
678 bool RDIsBase = !forallBases([&](const CXXRecordDecl *Base) -> bool {
679 Base = Base->getCanonicalDecl();
680 if (RD == Base)
681 return false;
682 Bases.insert(Base);
683 return true;
684 });
685 if (RDIsBase)
686 return true;
687 } else {
688 if (Bases.count(RD))
689 return true;
690 }
691 }
692
693 if (M.insert(RD).second)
694 WorkList.push_back(RD);
695 return false;
696 };
697
698 if (Visit(XFirst))
699 return true;
700
701 while (!WorkList.empty()) {
702 const CXXRecordDecl *X = WorkList.pop_back_val();
703
704 // FIXME: We don't check the bases of X. That matches the standard, but
705 // that sure looks like a wording bug.
706
707 // -- If X is a non-union class type with a non-static data member
708 // [recurse to each field] that is either of zero size or is the
709 // first non-static data member of X
710 // -- If X is a union type, [recurse to union members]
711 bool IsFirstField = true;
712 for (auto *FD : X->fields()) {
713 // FIXME: Should we really care about the type of the first non-static
714 // data member of a non-union if there are preceding unnamed bit-fields?
715 if (FD->isUnnamedBitField())
716 continue;
717
718 if (!IsFirstField && !FD->isZeroSize(Ctx))
719 continue;
720
721 if (FD->isInvalidDecl())
722 continue;
723
724 // -- If X is n array type, [visit the element type]
725 QualType T = Ctx.getBaseElementType(FD->getType());
726 if (auto *RD = T->getAsCXXRecordDecl())
727 if (Visit(RD))
728 return true;
729
730 if (!X->isUnion())
731 IsFirstField = false;
732 }
733 }
734
735 return false;
736}
737
739 assert(isLambda() && "not a lambda");
740
741 // C++2a [expr.prim.lambda.capture]p11:
742 // The closure type associated with a lambda-expression has no default
743 // constructor if the lambda-expression has a lambda-capture and a
744 // defaulted default constructor otherwise. It has a deleted copy
745 // assignment operator if the lambda-expression has a lambda-capture and
746 // defaulted copy and move assignment operators otherwise.
747 //
748 // C++17 [expr.prim.lambda]p21:
749 // The closure type associated with a lambda-expression has no default
750 // constructor and a deleted copy assignment operator.
751 if (!isCapturelessLambda())
752 return false;
753 return getASTContext().getLangOpts().CPlusPlus20;
754}
755
756void CXXRecordDecl::addedMember(Decl *D) {
757 if (!D->isImplicit() && !isa<FieldDecl>(D) && !isa<IndirectFieldDecl>(D) &&
758 (!isa<TagDecl>(D) ||
759 cast<TagDecl>(D)->getTagKind() == TagTypeKind::Class ||
760 cast<TagDecl>(D)->getTagKind() == TagTypeKind::Interface))
761 data().HasOnlyCMembers = false;
762
763 // Ignore friends and invalid declarations.
765 return;
766
767 auto *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
768 if (FunTmpl)
769 D = FunTmpl->getTemplatedDecl();
770
771 // FIXME: Pass NamedDecl* to addedMember?
772 Decl *DUnderlying = D;
773 if (auto *ND = dyn_cast<NamedDecl>(DUnderlying)) {
774 DUnderlying = ND->getUnderlyingDecl();
775 if (auto *UnderlyingFunTmpl = dyn_cast<FunctionTemplateDecl>(DUnderlying))
776 DUnderlying = UnderlyingFunTmpl->getTemplatedDecl();
777 }
778
779 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) {
780 if (Method->isVirtual()) {
781 // C++ [dcl.init.aggr]p1:
782 // An aggregate is an array or a class with [...] no virtual functions.
783 data().Aggregate = false;
784
785 // C++ [class]p4:
786 // A POD-struct is an aggregate class...
787 data().PlainOldData = false;
788
789 // C++14 [meta.unary.prop]p4:
790 // T is a class type [...] with [...] no virtual member functions...
791 data().Empty = false;
792
793 // C++ [class.virtual]p1:
794 // A class that declares or inherits a virtual function is called a
795 // polymorphic class.
796 data().Polymorphic = true;
797
798 // C++11 [class.ctor]p5, C++11 [class.copy]p12, C++11 [class.copy]p25:
799 // A [default constructor, copy/move constructor, or copy/move
800 // assignment operator for a class X] is trivial [...] if:
801 // -- class X has no virtual functions [...]
802 data().HasTrivialSpecialMembers &= SMF_Destructor;
803 data().HasTrivialSpecialMembersForCall &= SMF_Destructor;
804
805 // C++0x [class]p7:
806 // A standard-layout class is a class that: [...]
807 // -- has no virtual functions
808 data().IsStandardLayout = false;
809 data().IsCXX11StandardLayout = false;
810 }
811 }
812
813 // Notify the listener if an implicit member was added after the definition
814 // was completed.
815 if (!isBeingDefined() && D->isImplicit())
817 L->AddedCXXImplicitMember(data().Definition, D);
818
819 // The kind of special member this declaration is, if any.
820 unsigned SMKind = 0;
821
822 // Handle constructors.
823 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
824 if (Constructor->isInheritingConstructor()) {
825 // Ignore constructor shadow declarations. They are lazily created and
826 // so shouldn't affect any properties of the class.
827 } else {
828 if (!Constructor->isImplicit()) {
829 // Note that we have a user-declared constructor.
830 data().UserDeclaredConstructor = true;
831
832 const TargetInfo &TI = getASTContext().getTargetInfo();
833 if ((!Constructor->isDeleted() && !Constructor->isDefaulted()) ||
835 // C++ [class]p4:
836 // A POD-struct is an aggregate class [...]
837 // Since the POD bit is meant to be C++03 POD-ness, clear it even if
838 // the type is technically an aggregate in C++0x since it wouldn't be
839 // in 03.
840 data().PlainOldData = false;
841 }
842 }
843
844 if (Constructor->isDefaultConstructor()) {
845 SMKind |= SMF_DefaultConstructor;
846
847 if (Constructor->isUserProvided())
848 data().UserProvidedDefaultConstructor = true;
849 if (Constructor->isConstexpr())
850 data().HasConstexprDefaultConstructor = true;
851 if (Constructor->isDefaulted())
852 data().HasDefaultedDefaultConstructor = true;
853 }
854
855 if (!FunTmpl) {
856 unsigned Quals;
857 if (Constructor->isCopyConstructor(Quals)) {
858 SMKind |= SMF_CopyConstructor;
859
860 if (Quals & Qualifiers::Const)
861 data().HasDeclaredCopyConstructorWithConstParam = true;
862 } else if (Constructor->isMoveConstructor())
863 SMKind |= SMF_MoveConstructor;
864 }
865
866 // C++11 [dcl.init.aggr]p1: DR1518
867 // An aggregate is an array or a class with no user-provided [or]
868 // explicit [...] constructors
869 // C++20 [dcl.init.aggr]p1:
870 // An aggregate is an array or a class with no user-declared [...]
871 // constructors
873 ? !Constructor->isImplicit()
874 : (Constructor->isUserProvided() || Constructor->isExplicit()))
875 data().Aggregate = false;
876 }
877 }
878
879 // Handle constructors, including those inherited from base classes.
880 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(DUnderlying)) {
881 // Record if we see any constexpr constructors which are neither copy
882 // nor move constructors.
883 // C++1z [basic.types]p10:
884 // [...] has at least one constexpr constructor or constructor template
885 // (possibly inherited from a base class) that is not a copy or move
886 // constructor [...]
887 if (Constructor->isConstexpr() && !Constructor->isCopyOrMoveConstructor())
888 data().HasConstexprNonCopyMoveConstructor = true;
889 if (!isa<CXXConstructorDecl>(D) && Constructor->isDefaultConstructor())
890 data().HasInheritedDefaultConstructor = true;
891 }
892
893 // Handle member functions.
894 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) {
895 if (isa<CXXDestructorDecl>(D))
896 SMKind |= SMF_Destructor;
897
898 if (Method->isCopyAssignmentOperator()) {
899 SMKind |= SMF_CopyAssignment;
900
901 const auto *ParamTy =
902 Method->getNonObjectParameter(0)->getType()->getAs<ReferenceType>();
903 if (!ParamTy || ParamTy->getPointeeType().isConstQualified())
904 data().HasDeclaredCopyAssignmentWithConstParam = true;
905 }
906
907 if (Method->isMoveAssignmentOperator())
908 SMKind |= SMF_MoveAssignment;
909
910 // Keep the list of conversion functions up-to-date.
911 if (auto *Conversion = dyn_cast<CXXConversionDecl>(D)) {
912 // FIXME: We use the 'unsafe' accessor for the access specifier here,
913 // because Sema may not have set it yet. That's really just a misdesign
914 // in Sema. However, LLDB *will* have set the access specifier correctly,
915 // and adds declarations after the class is technically completed,
916 // so completeDefinition()'s overriding of the access specifiers doesn't
917 // work.
918 AccessSpecifier AS = Conversion->getAccessUnsafe();
919
920 if (Conversion->getPrimaryTemplate()) {
921 // We don't record specializations.
922 } else {
923 ASTContext &Ctx = getASTContext();
924 ASTUnresolvedSet &Conversions = data().Conversions.get(Ctx);
925 NamedDecl *Primary =
926 FunTmpl ? cast<NamedDecl>(FunTmpl) : cast<NamedDecl>(Conversion);
927 if (Primary->getPreviousDecl())
928 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()),
929 Primary, AS);
930 else
931 Conversions.addDecl(Ctx, Primary, AS);
932 }
933 }
934
935 if (SMKind) {
936 // If this is the first declaration of a special member, we no longer have
937 // an implicit trivial special member.
938 data().HasTrivialSpecialMembers &=
939 data().DeclaredSpecialMembers | ~SMKind;
940 data().HasTrivialSpecialMembersForCall &=
941 data().DeclaredSpecialMembers | ~SMKind;
942
943 // Note when we have declared a declared special member, and suppress the
944 // implicit declaration of this special member.
945 data().DeclaredSpecialMembers |= SMKind;
946 if (!Method->isImplicit()) {
947 data().UserDeclaredSpecialMembers |= SMKind;
948
949 const TargetInfo &TI = getASTContext().getTargetInfo();
950 if ((!Method->isDeleted() && !Method->isDefaulted() &&
951 SMKind != SMF_MoveAssignment) ||
953 // C++03 [class]p4:
954 // A POD-struct is an aggregate class that has [...] no user-defined
955 // copy assignment operator and no user-defined destructor.
956 //
957 // Since the POD bit is meant to be C++03 POD-ness, and in C++03,
958 // aggregates could not have any constructors, clear it even for an
959 // explicitly defaulted or deleted constructor.
960 // type is technically an aggregate in C++0x since it wouldn't be in
961 // 03.
962 //
963 // Also, a user-declared move assignment operator makes a class
964 // non-POD. This is an extension in C++03.
965 data().PlainOldData = false;
966 }
967 }
968 // When instantiating a class, we delay updating the destructor and
969 // triviality properties of the class until selecting a destructor and
970 // computing the eligibility of its special member functions. This is
971 // because there might be function constraints that we need to evaluate
972 // and compare later in the instantiation.
973 if (!Method->isIneligibleOrNotSelected()) {
975 }
976 }
977
978 return;
979 }
980
981 // Handle non-static data members.
982 if (const auto *Field = dyn_cast<FieldDecl>(D)) {
983 ASTContext &Context = getASTContext();
984
985 // C++2a [class]p7:
986 // A standard-layout class is a class that:
987 // [...]
988 // -- has all non-static data members and bit-fields in the class and
989 // its base classes first declared in the same class
990 if (data().HasBasesWithFields)
991 data().IsStandardLayout = false;
992
993 // C++ [class.bit]p2:
994 // A declaration for a bit-field that omits the identifier declares an
995 // unnamed bit-field. Unnamed bit-fields are not members and cannot be
996 // initialized.
997 if (Field->isUnnamedBitField()) {
998 // C++ [meta.unary.prop]p4: [LWG2358]
999 // T is a class type [...] with [...] no unnamed bit-fields of non-zero
1000 // length
1001 if (data().Empty && !Field->isZeroLengthBitField() &&
1002 Context.getLangOpts().getClangABICompat() >
1004 data().Empty = false;
1005 return;
1006 }
1007
1008 // C++11 [class]p7:
1009 // A standard-layout class is a class that:
1010 // -- either has no non-static data members in the most derived class
1011 // [...] or has no base classes with non-static data members
1012 if (data().HasBasesWithNonStaticDataMembers)
1013 data().IsCXX11StandardLayout = false;
1014
1015 // C++ [dcl.init.aggr]p1:
1016 // An aggregate is an array or a class (clause 9) with [...] no
1017 // private or protected non-static data members (clause 11).
1018 //
1019 // A POD must be an aggregate.
1020 if (D->getAccess() == AS_private || D->getAccess() == AS_protected) {
1021 data().Aggregate = false;
1022 data().PlainOldData = false;
1023
1024 // C++20 [temp.param]p7:
1025 // A structural type is [...] a literal class type [for which] all
1026 // non-static data members are public
1027 data().StructuralIfLiteral = false;
1028 }
1029
1030 // Track whether this is the first field. We use this when checking
1031 // whether the class is standard-layout below.
1032 bool IsFirstField = !data().HasPrivateFields &&
1033 !data().HasProtectedFields && !data().HasPublicFields;
1034
1035 // C++0x [class]p7:
1036 // A standard-layout class is a class that:
1037 // [...]
1038 // -- has the same access control for all non-static data members,
1039 switch (D->getAccess()) {
1040 case AS_private: data().HasPrivateFields = true; break;
1041 case AS_protected: data().HasProtectedFields = true; break;
1042 case AS_public: data().HasPublicFields = true; break;
1043 case AS_none: llvm_unreachable("Invalid access specifier");
1044 };
1045 if ((data().HasPrivateFields + data().HasProtectedFields +
1046 data().HasPublicFields) > 1) {
1047 data().IsStandardLayout = false;
1048 data().IsCXX11StandardLayout = false;
1049 }
1050
1051 // Keep track of the presence of mutable fields.
1052 if (Field->isMutable()) {
1053 data().HasMutableFields = true;
1054
1055 // C++20 [temp.param]p7:
1056 // A structural type is [...] a literal class type [for which] all
1057 // non-static data members are public
1058 data().StructuralIfLiteral = false;
1059 }
1060
1061 // C++11 [class.union]p8, DR1460:
1062 // If X is a union, a non-static data member of X that is not an anonymous
1063 // union is a variant member of X.
1064 if (isUnion() && !Field->isAnonymousStructOrUnion())
1065 data().HasVariantMembers = true;
1066
1067 if (isUnion() && IsFirstField)
1068 data().HasUninitializedFields = true;
1069
1070 // C++0x [class]p9:
1071 // A POD struct is a class that is both a trivial class and a
1072 // standard-layout class, and has no non-static data members of type
1073 // non-POD struct, non-POD union (or array of such types).
1074 //
1075 // Automatic Reference Counting: the presence of a member of Objective-C pointer type
1076 // that does not explicitly have no lifetime makes the class a non-POD.
1077 QualType T = Context.getBaseElementType(Field->getType());
1078 if (T->isObjCRetainableType() || T.isObjCGCStrong()) {
1079 if (T.hasNonTrivialObjCLifetime()) {
1080 // Objective-C Automatic Reference Counting:
1081 // If a class has a non-static data member of Objective-C pointer
1082 // type (or array thereof), it is a non-POD type and its
1083 // default constructor (if any), copy constructor, move constructor,
1084 // copy assignment operator, move assignment operator, and destructor are
1085 // non-trivial.
1086 setHasObjectMember(true);
1087 struct DefinitionData &Data = data();
1088 Data.PlainOldData = false;
1089 Data.HasTrivialSpecialMembers = 0;
1090
1091 // __strong or __weak fields do not make special functions non-trivial
1092 // for the purpose of calls.
1093 Qualifiers::ObjCLifetime LT = T.getQualifiers().getObjCLifetime();
1095 data().HasTrivialSpecialMembersForCall = 0;
1096
1097 // Structs with __weak fields should never be passed directly.
1098 if (LT == Qualifiers::OCL_Weak)
1100
1101 Data.HasIrrelevantDestructor = false;
1102
1103 if (isUnion()) {
1104 data().DefaultedCopyConstructorIsDeleted = true;
1105 data().DefaultedMoveConstructorIsDeleted = true;
1106 data().DefaultedCopyAssignmentIsDeleted = true;
1107 data().DefaultedMoveAssignmentIsDeleted = true;
1108 data().DefaultedDestructorIsDeleted = true;
1109 data().NeedOverloadResolutionForCopyConstructor = true;
1110 data().NeedOverloadResolutionForMoveConstructor = true;
1111 data().NeedOverloadResolutionForCopyAssignment = true;
1112 data().NeedOverloadResolutionForMoveAssignment = true;
1113 data().NeedOverloadResolutionForDestructor = true;
1114 }
1115 } else if (!Context.getLangOpts().ObjCAutoRefCount) {
1116 setHasObjectMember(true);
1117 }
1118 } else if (!T.isCXX98PODType(Context))
1119 data().PlainOldData = false;
1120
1121 if (Field->hasAttr<ExplicitInitAttr>())
1123
1124 if (T->isReferenceType()) {
1125 if (!Field->hasInClassInitializer())
1126 data().HasUninitializedReferenceMember = true;
1127
1128 // C++0x [class]p7:
1129 // A standard-layout class is a class that:
1130 // -- has no non-static data members of type [...] reference,
1131 data().IsStandardLayout = false;
1132 data().IsCXX11StandardLayout = false;
1133
1134 // C++1z [class.copy.ctor]p10:
1135 // A defaulted copy constructor for a class X is defined as deleted if X has:
1136 // -- a non-static data member of rvalue reference type
1137 if (T->isRValueReferenceType())
1138 data().DefaultedCopyConstructorIsDeleted = true;
1139 }
1140
1141 if (isUnion() && !Field->isMutable()) {
1142 if (Field->hasInClassInitializer())
1143 data().HasUninitializedFields = false;
1144 } else if (!Field->hasInClassInitializer() && !Field->isMutable()) {
1145 if (CXXRecordDecl *FieldType = T->getAsCXXRecordDecl()) {
1146 if (FieldType->hasDefinition() && !FieldType->allowConstDefaultInit())
1147 data().HasUninitializedFields = true;
1148 } else {
1149 data().HasUninitializedFields = true;
1150 }
1151 }
1152
1153 // Record if this field is the first non-literal or volatile field or base.
1154 if (!T->isLiteralType(Context) || T.isVolatileQualified())
1155 data().HasNonLiteralTypeFieldsOrBases = true;
1156
1157 if (Field->hasInClassInitializer() ||
1158 (Field->isAnonymousStructOrUnion() &&
1159 Field->getType()->getAsCXXRecordDecl()->hasInClassInitializer())) {
1160 data().HasInClassInitializer = true;
1161
1162 // C++11 [class]p5:
1163 // A default constructor is trivial if [...] no non-static data member
1164 // of its class has a brace-or-equal-initializer.
1165 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
1166
1167 // C++11 [dcl.init.aggr]p1:
1168 // An aggregate is a [...] class with [...] no
1169 // brace-or-equal-initializers for non-static data members.
1170 //
1171 // This rule was removed in C++14.
1173 data().Aggregate = false;
1174
1175 // C++11 [class]p10:
1176 // A POD struct is [...] a trivial class.
1177 data().PlainOldData = false;
1178 }
1179
1180 // C++11 [class.copy]p23:
1181 // A defaulted copy/move assignment operator for a class X is defined
1182 // as deleted if X has:
1183 // -- a non-static data member of reference type
1184 if (T->isReferenceType()) {
1185 data().DefaultedCopyAssignmentIsDeleted = true;
1186 data().DefaultedMoveAssignmentIsDeleted = true;
1187 }
1188
1189 // Bitfields of length 0 are also zero-sized, but we already bailed out for
1190 // those because they are always unnamed.
1191 bool IsZeroSize = Field->isZeroSize(Context);
1192
1193 if (const auto *RecordTy = T->getAs<RecordType>()) {
1194 auto *FieldRec = cast<CXXRecordDecl>(RecordTy->getDecl());
1195 if (FieldRec->getDefinition()) {
1196 addedClassSubobject(FieldRec);
1197
1198 // We may need to perform overload resolution to determine whether a
1199 // field can be moved if it's const or volatile qualified.
1200 if (T.getCVRQualifiers() & (Qualifiers::Const | Qualifiers::Volatile)) {
1201 // We need to care about 'const' for the copy constructor because an
1202 // implicit copy constructor might be declared with a non-const
1203 // parameter.
1204 data().NeedOverloadResolutionForCopyConstructor = true;
1205 data().NeedOverloadResolutionForMoveConstructor = true;
1206 data().NeedOverloadResolutionForCopyAssignment = true;
1207 data().NeedOverloadResolutionForMoveAssignment = true;
1208 }
1209
1210 // C++11 [class.ctor]p5, C++11 [class.copy]p11:
1211 // A defaulted [special member] for a class X is defined as
1212 // deleted if:
1213 // -- X is a union-like class that has a variant member with a
1214 // non-trivial [corresponding special member]
1215 if (isUnion()) {
1216 if (FieldRec->hasNonTrivialCopyConstructor())
1217 data().DefaultedCopyConstructorIsDeleted = true;
1218 if (FieldRec->hasNonTrivialMoveConstructor())
1219 data().DefaultedMoveConstructorIsDeleted = true;
1220 if (FieldRec->hasNonTrivialCopyAssignment())
1221 data().DefaultedCopyAssignmentIsDeleted = true;
1222 if (FieldRec->hasNonTrivialMoveAssignment())
1223 data().DefaultedMoveAssignmentIsDeleted = true;
1224 if (FieldRec->hasNonTrivialDestructor()) {
1225 data().DefaultedDestructorIsDeleted = true;
1226 // C++20 [dcl.constexpr]p5:
1227 // The definition of a constexpr destructor whose function-body is
1228 // not = delete shall additionally satisfy...
1229 data().DefaultedDestructorIsConstexpr = true;
1230 }
1231 }
1232
1233 // For an anonymous union member, our overload resolution will perform
1234 // overload resolution for its members.
1235 if (Field->isAnonymousStructOrUnion()) {
1236 data().NeedOverloadResolutionForCopyConstructor |=
1237 FieldRec->data().NeedOverloadResolutionForCopyConstructor;
1238 data().NeedOverloadResolutionForMoveConstructor |=
1239 FieldRec->data().NeedOverloadResolutionForMoveConstructor;
1240 data().NeedOverloadResolutionForCopyAssignment |=
1241 FieldRec->data().NeedOverloadResolutionForCopyAssignment;
1242 data().NeedOverloadResolutionForMoveAssignment |=
1243 FieldRec->data().NeedOverloadResolutionForMoveAssignment;
1244 data().NeedOverloadResolutionForDestructor |=
1245 FieldRec->data().NeedOverloadResolutionForDestructor;
1246 }
1247
1248 // C++0x [class.ctor]p5:
1249 // A default constructor is trivial [...] if:
1250 // -- for all the non-static data members of its class that are of
1251 // class type (or array thereof), each such class has a trivial
1252 // default constructor.
1253 if (!FieldRec->hasTrivialDefaultConstructor())
1254 data().HasTrivialSpecialMembers &= ~SMF_DefaultConstructor;
1255
1256 // C++0x [class.copy]p13:
1257 // A copy/move constructor for class X is trivial if [...]
1258 // [...]
1259 // -- for each non-static data member of X that is of class type (or
1260 // an array thereof), the constructor selected to copy/move that
1261 // member is trivial;
1262 if (!FieldRec->hasTrivialCopyConstructor())
1263 data().HasTrivialSpecialMembers &= ~SMF_CopyConstructor;
1264
1265 if (!FieldRec->hasTrivialCopyConstructorForCall())
1266 data().HasTrivialSpecialMembersForCall &= ~SMF_CopyConstructor;
1267
1268 // If the field doesn't have a simple move constructor, we'll eagerly
1269 // declare the move constructor for this class and we'll decide whether
1270 // it's trivial then.
1271 if (!FieldRec->hasTrivialMoveConstructor())
1272 data().HasTrivialSpecialMembers &= ~SMF_MoveConstructor;
1273
1274 if (!FieldRec->hasTrivialMoveConstructorForCall())
1275 data().HasTrivialSpecialMembersForCall &= ~SMF_MoveConstructor;
1276
1277 // C++0x [class.copy]p27:
1278 // A copy/move assignment operator for class X is trivial if [...]
1279 // [...]
1280 // -- for each non-static data member of X that is of class type (or
1281 // an array thereof), the assignment operator selected to
1282 // copy/move that member is trivial;
1283 if (!FieldRec->hasTrivialCopyAssignment())
1284 data().HasTrivialSpecialMembers &= ~SMF_CopyAssignment;
1285 // If the field doesn't have a simple move assignment, we'll eagerly
1286 // declare the move assignment for this class and we'll decide whether
1287 // it's trivial then.
1288 if (!FieldRec->hasTrivialMoveAssignment())
1289 data().HasTrivialSpecialMembers &= ~SMF_MoveAssignment;
1290
1291 if (!FieldRec->hasTrivialDestructor())
1292 data().HasTrivialSpecialMembers &= ~SMF_Destructor;
1293 if (!FieldRec->hasTrivialDestructorForCall())
1294 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor;
1295 if (!FieldRec->hasIrrelevantDestructor())
1296 data().HasIrrelevantDestructor = false;
1297 if (FieldRec->isAnyDestructorNoReturn())
1298 data().IsAnyDestructorNoReturn = true;
1299 if (FieldRec->hasObjectMember())
1300 setHasObjectMember(true);
1301 if (FieldRec->hasVolatileMember())
1303 if (FieldRec->getArgPassingRestrictions() ==
1306
1307 // C++0x [class]p7:
1308 // A standard-layout class is a class that:
1309 // -- has no non-static data members of type non-standard-layout
1310 // class (or array of such types) [...]
1311 if (!FieldRec->isStandardLayout())
1312 data().IsStandardLayout = false;
1313 if (!FieldRec->isCXX11StandardLayout())
1314 data().IsCXX11StandardLayout = false;
1315
1316 // C++2a [class]p7:
1317 // A standard-layout class is a class that:
1318 // [...]
1319 // -- has no element of the set M(S) of types as a base class.
1320 if (data().IsStandardLayout &&
1321 (isUnion() || IsFirstField || IsZeroSize) &&
1322 hasSubobjectAtOffsetZeroOfEmptyBaseType(Context, FieldRec))
1323 data().IsStandardLayout = false;
1324
1325 // C++11 [class]p7:
1326 // A standard-layout class is a class that:
1327 // -- has no base classes of the same type as the first non-static
1328 // data member
1329 if (data().IsCXX11StandardLayout && IsFirstField) {
1330 // FIXME: We should check all base classes here, not just direct
1331 // base classes.
1332 for (const auto &BI : bases()) {
1333 if (Context.hasSameUnqualifiedType(BI.getType(), T)) {
1334 data().IsCXX11StandardLayout = false;
1335 break;
1336 }
1337 }
1338 }
1339
1340 // Keep track of the presence of mutable fields.
1341 if (FieldRec->hasMutableFields())
1342 data().HasMutableFields = true;
1343
1344 if (Field->isMutable()) {
1345 // Our copy constructor/assignment might call something other than
1346 // the subobject's copy constructor/assignment if it's mutable and of
1347 // class type.
1348 data().NeedOverloadResolutionForCopyConstructor = true;
1349 data().NeedOverloadResolutionForCopyAssignment = true;
1350 }
1351
1352 // C++11 [class.copy]p13:
1353 // If the implicitly-defined constructor would satisfy the
1354 // requirements of a constexpr constructor, the implicitly-defined
1355 // constructor is constexpr.
1356 // C++11 [dcl.constexpr]p4:
1357 // -- every constructor involved in initializing non-static data
1358 // members [...] shall be a constexpr constructor
1359 if (!Field->hasInClassInitializer() &&
1360 !FieldRec->hasConstexprDefaultConstructor() && !isUnion())
1361 // The standard requires any in-class initializer to be a constant
1362 // expression. We consider this to be a defect.
1363 data().DefaultedDefaultConstructorIsConstexpr =
1364 Context.getLangOpts().CPlusPlus23;
1365
1366 // C++11 [class.copy]p8:
1367 // The implicitly-declared copy constructor for a class X will have
1368 // the form 'X::X(const X&)' if each potentially constructed subobject
1369 // of a class type M (or array thereof) has a copy constructor whose
1370 // first parameter is of type 'const M&' or 'const volatile M&'.
1371 if (!FieldRec->hasCopyConstructorWithConstParam())
1372 data().ImplicitCopyConstructorCanHaveConstParamForNonVBase = false;
1373
1374 // C++11 [class.copy]p18:
1375 // The implicitly-declared copy assignment oeprator for a class X will
1376 // have the form 'X& X::operator=(const X&)' if [...] for all the
1377 // non-static data members of X that are of a class type M (or array
1378 // thereof), each such class type has a copy assignment operator whose
1379 // parameter is of type 'const M&', 'const volatile M&' or 'M'.
1380 if (!FieldRec->hasCopyAssignmentWithConstParam())
1381 data().ImplicitCopyAssignmentHasConstParam = false;
1382
1383 if (FieldRec->hasUninitializedExplicitInitFields() &&
1384 FieldRec->isAggregate())
1386
1387 if (FieldRec->hasUninitializedReferenceMember() &&
1388 !Field->hasInClassInitializer())
1389 data().HasUninitializedReferenceMember = true;
1390
1391 // C++11 [class.union]p8, DR1460:
1392 // a non-static data member of an anonymous union that is a member of
1393 // X is also a variant member of X.
1394 if (FieldRec->hasVariantMembers() &&
1395 Field->isAnonymousStructOrUnion())
1396 data().HasVariantMembers = true;
1397 }
1398 } else {
1399 // Base element type of field is a non-class type.
1400 if (!T->isLiteralType(Context) ||
1401 (!Field->hasInClassInitializer() && !isUnion() &&
1402 !Context.getLangOpts().CPlusPlus20))
1403 data().DefaultedDefaultConstructorIsConstexpr = false;
1404
1405 // C++11 [class.copy]p23:
1406 // A defaulted copy/move assignment operator for a class X is defined
1407 // as deleted if X has:
1408 // -- a non-static data member of const non-class type (or array
1409 // thereof)
1410 if (T.isConstQualified()) {
1411 data().DefaultedCopyAssignmentIsDeleted = true;
1412 data().DefaultedMoveAssignmentIsDeleted = true;
1413 }
1414
1415 // C++20 [temp.param]p7:
1416 // A structural type is [...] a literal class type [for which] the
1417 // types of all non-static data members are structural types or
1418 // (possibly multidimensional) array thereof
1419 // We deal with class types elsewhere.
1420 if (!T->isStructuralType())
1421 data().StructuralIfLiteral = false;
1422 }
1423
1424 // C++14 [meta.unary.prop]p4:
1425 // T is a class type [...] with [...] no non-static data members other
1426 // than subobjects of zero size
1427 if (data().Empty && !IsZeroSize)
1428 data().Empty = false;
1429
1430 if (getLangOpts().HLSL) {
1431 const Type *Ty = Field->getType()->getUnqualifiedDesugaredType();
1432 while (isa<ConstantArrayType>(Ty))
1434
1435 Ty = Ty->getUnqualifiedDesugaredType();
1436 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
1437 data().IsHLSLIntangible |= RT->getAsCXXRecordDecl()->isHLSLIntangible();
1438 else
1439 data().IsHLSLIntangible |= (Ty->isHLSLAttributedResourceType() ||
1441 }
1442 }
1443
1444 // Handle using declarations of conversion functions.
1445 if (auto *Shadow = dyn_cast<UsingShadowDecl>(D)) {
1446 if (Shadow->getDeclName().getNameKind()
1448 ASTContext &Ctx = getASTContext();
1449 data().Conversions.get(Ctx).addDecl(Ctx, Shadow, Shadow->getAccess());
1450 }
1451 }
1452
1453 if (const auto *Using = dyn_cast<UsingDecl>(D)) {
1454 if (Using->getDeclName().getNameKind() ==
1456 data().HasInheritedConstructor = true;
1457 // C++1z [dcl.init.aggr]p1:
1458 // An aggregate is [...] a class [...] with no inherited constructors
1459 data().Aggregate = false;
1460 }
1461
1462 if (Using->getDeclName().getCXXOverloadedOperator() == OO_Equal)
1463 data().HasInheritedAssignment = true;
1464 }
1465}
1466
1468 const LangOptions &LangOpts = getLangOpts();
1469 if (!(LangOpts.CPlusPlus20 ? hasConstexprDestructor()
1471 return false;
1472
1474 // CWG2598
1475 // is an aggregate union type that has either no variant
1476 // members or at least one variant member of non-volatile literal type,
1477 if (!isUnion())
1478 return false;
1479 bool HasAtLeastOneLiteralMember =
1480 fields().empty() || any_of(fields(), [this](const FieldDecl *D) {
1481 return !D->getType().isVolatileQualified() &&
1482 D->getType()->isLiteralType(getASTContext());
1483 });
1484 if (!HasAtLeastOneLiteralMember)
1485 return false;
1486 }
1487
1488 return isAggregate() || (isLambda() && LangOpts.CPlusPlus17) ||
1490}
1491
1493 DD->setIneligibleOrNotSelected(false);
1494 addedEligibleSpecialMemberFunction(DD, SMF_Destructor);
1495}
1496
1498 unsigned SMKind) {
1499 // FIXME: We shouldn't change DeclaredNonTrivialSpecialMembers if `MD` is
1500 // a function template, but this needs CWG attention before we break ABI.
1501 // See https://github.com/llvm/llvm-project/issues/59206
1502
1503 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1504 if (DD->isUserProvided())
1505 data().HasIrrelevantDestructor = false;
1506 // If the destructor is explicitly defaulted and not trivial or not public
1507 // or if the destructor is deleted, we clear HasIrrelevantDestructor in
1508 // finishedDefaultedOrDeletedMember.
1509
1510 // C++11 [class.dtor]p5:
1511 // A destructor is trivial if [...] the destructor is not virtual.
1512 if (DD->isVirtual()) {
1513 data().HasTrivialSpecialMembers &= ~SMF_Destructor;
1514 data().HasTrivialSpecialMembersForCall &= ~SMF_Destructor;
1515 }
1516
1517 if (DD->isNoReturn())
1518 data().IsAnyDestructorNoReturn = true;
1519 }
1520
1521 if (!MD->isImplicit() && !MD->isUserProvided()) {
1522 // This method is user-declared but not user-provided. We can't work
1523 // out whether it's trivial yet (not until we get to the end of the
1524 // class). We'll handle this method in
1525 // finishedDefaultedOrDeletedMember.
1526 } else if (MD->isTrivial()) {
1527 data().HasTrivialSpecialMembers |= SMKind;
1528 data().HasTrivialSpecialMembersForCall |= SMKind;
1529 } else if (MD->isTrivialForCall()) {
1530 data().HasTrivialSpecialMembersForCall |= SMKind;
1531 data().DeclaredNonTrivialSpecialMembers |= SMKind;
1532 } else {
1533 data().DeclaredNonTrivialSpecialMembers |= SMKind;
1534 // If this is a user-provided function, do not set
1535 // DeclaredNonTrivialSpecialMembersForCall here since we don't know
1536 // yet whether the method would be considered non-trivial for the
1537 // purpose of calls (attribute "trivial_abi" can be dropped from the
1538 // class later, which can change the special method's triviality).
1539 if (!MD->isUserProvided())
1540 data().DeclaredNonTrivialSpecialMembersForCall |= SMKind;
1541 }
1542}
1543
1545 assert(!D->isImplicit() && !D->isUserProvided());
1546
1547 // The kind of special member this declaration is, if any.
1548 unsigned SMKind = 0;
1549
1550 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1551 if (Constructor->isDefaultConstructor()) {
1552 SMKind |= SMF_DefaultConstructor;
1553 if (Constructor->isConstexpr())
1554 data().HasConstexprDefaultConstructor = true;
1555 }
1556 if (Constructor->isCopyConstructor())
1557 SMKind |= SMF_CopyConstructor;
1558 else if (Constructor->isMoveConstructor())
1559 SMKind |= SMF_MoveConstructor;
1560 else if (Constructor->isConstexpr())
1561 // We may now know that the constructor is constexpr.
1562 data().HasConstexprNonCopyMoveConstructor = true;
1563 } else if (isa<CXXDestructorDecl>(D)) {
1564 SMKind |= SMF_Destructor;
1565 if (!D->isTrivial() || D->getAccess() != AS_public || D->isDeleted())
1566 data().HasIrrelevantDestructor = false;
1567 } else if (D->isCopyAssignmentOperator())
1568 SMKind |= SMF_CopyAssignment;
1569 else if (D->isMoveAssignmentOperator())
1570 SMKind |= SMF_MoveAssignment;
1571
1572 // Update which trivial / non-trivial special members we have.
1573 // addedMember will have skipped this step for this member.
1574 if (!D->isIneligibleOrNotSelected()) {
1575 if (D->isTrivial())
1576 data().HasTrivialSpecialMembers |= SMKind;
1577 else
1578 data().DeclaredNonTrivialSpecialMembers |= SMKind;
1579 }
1580}
1581
1582void CXXRecordDecl::LambdaDefinitionData::AddCaptureList(ASTContext &Ctx,
1583 Capture *CaptureList) {
1584 Captures.push_back(CaptureList);
1585 if (Captures.size() == 2) {
1586 // The TinyPtrVector member now needs destruction.
1587 Ctx.addDestruction(&Captures);
1588 }
1589}
1590
1592 ArrayRef<LambdaCapture> Captures) {
1593 CXXRecordDecl::LambdaDefinitionData &Data = getLambdaData();
1594
1595 // Copy captures.
1596 Data.NumCaptures = Captures.size();
1597 Data.NumExplicitCaptures = 0;
1598 auto *ToCapture = (LambdaCapture *)Context.Allocate(sizeof(LambdaCapture) *
1599 Captures.size());
1600 Data.AddCaptureList(Context, ToCapture);
1601 for (const LambdaCapture &C : Captures) {
1602 if (C.isExplicit())
1603 ++Data.NumExplicitCaptures;
1604
1605 new (ToCapture) LambdaCapture(C);
1606 ToCapture++;
1607 }
1608
1610 Data.DefaultedCopyAssignmentIsDeleted = true;
1611}
1612
1614 unsigned SMKind = 0;
1615
1616 if (const auto *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1617 if (Constructor->isCopyConstructor())
1618 SMKind = SMF_CopyConstructor;
1619 else if (Constructor->isMoveConstructor())
1620 SMKind = SMF_MoveConstructor;
1621 } else if (isa<CXXDestructorDecl>(D))
1622 SMKind = SMF_Destructor;
1623
1624 if (D->isTrivialForCall())
1625 data().HasTrivialSpecialMembersForCall |= SMKind;
1626 else
1627 data().DeclaredNonTrivialSpecialMembersForCall |= SMKind;
1628}
1629
1631 if (getTagKind() == TagTypeKind::Class ||
1633 !TemplateOrInstantiation.isNull())
1634 return false;
1635 if (!hasDefinition())
1636 return true;
1637
1638 return isPOD() && data().HasOnlyCMembers;
1639}
1640
1642 if (!isLambda()) return false;
1643 return getLambdaData().IsGenericLambda;
1644}
1645
1646#ifndef NDEBUG
1648 return llvm::all_of(R, [&](NamedDecl *D) {
1649 return D->isInvalidDecl() || declaresSameEntity(D, R.front());
1650 });
1651}
1652#endif
1653
1655 if (!RD.isLambda()) return nullptr;
1656 DeclarationName Name =
1658
1659 DeclContext::lookup_result Calls = RD.lookup(Name);
1660 assert(!Calls.empty() && "Missing lambda call operator!");
1661 assert(allLookupResultsAreTheSame(Calls) &&
1662 "More than one lambda call operator!");
1663
1664 // FIXME: If we have multiple call operators, we might be in a situation
1665 // where we merged this lambda with one from another module; in that
1666 // case, return our method (instead of that of the other lambda).
1667 //
1668 // This avoids situations where, given two modules A and B, if we
1669 // try to instantiate A's call operator in a function in B, anything
1670 // in the call operator that relies on local decls in the surrounding
1671 // function will crash because it tries to find A's decls, but we only
1672 // instantiated B's:
1673 //
1674 // template <typename>
1675 // void f() {
1676 // using T = int; // We only instantiate B's version of this.
1677 // auto L = [](T) { }; // But A's call operator would want A's here.
1678 // }
1679 //
1680 // Walk the call operator’s redecl chain to find the one that belongs
1681 // to this module.
1682 //
1683 // TODO: We need to fix this properly (see
1684 // https://github.com/llvm/llvm-project/issues/90154).
1685 Module *M = RD.getOwningModule();
1686 for (Decl *D : Calls.front()->redecls()) {
1687 auto *MD = cast<NamedDecl>(D);
1688 if (MD->getOwningModule() == M)
1689 return MD;
1690 }
1691
1692 llvm_unreachable("Couldn't find our call operator!");
1693}
1694
1696 NamedDecl *CallOp = getLambdaCallOperatorHelper(*this);
1697 return dyn_cast_or_null<FunctionTemplateDecl>(CallOp);
1698}
1699
1701 NamedDecl *CallOp = getLambdaCallOperatorHelper(*this);
1702
1703 if (CallOp == nullptr)
1704 return nullptr;
1705
1706 if (const auto *CallOpTmpl = dyn_cast<FunctionTemplateDecl>(CallOp))
1707 return cast<CXXMethodDecl>(CallOpTmpl->getTemplatedDecl());
1708
1709 return cast<CXXMethodDecl>(CallOp);
1710}
1711
1714 CallingConv CC = CallOp->getType()->castAs<FunctionType>()->getCallConv();
1715 return getLambdaStaticInvoker(CC);
1716}
1717
1720 assert(RD.isLambda() && "Must be a lambda");
1721 DeclarationName Name =
1723 return RD.lookup(Name);
1724}
1725
1727 if (const auto *InvokerTemplate = dyn_cast<FunctionTemplateDecl>(ND))
1728 return cast<CXXMethodDecl>(InvokerTemplate->getTemplatedDecl());
1729 return cast<CXXMethodDecl>(ND);
1730}
1731
1733 if (!isLambda())
1734 return nullptr;
1736
1737 for (NamedDecl *ND : Invoker) {
1738 const auto *FTy =
1739 cast<ValueDecl>(ND->getAsFunction())->getType()->castAs<FunctionType>();
1740 if (FTy->getCallConv() == CC)
1741 return getInvokerAsMethod(ND);
1742 }
1743
1744 return nullptr;
1745}
1746
1748 llvm::DenseMap<const ValueDecl *, FieldDecl *> &Captures,
1749 FieldDecl *&ThisCapture) const {
1750 Captures.clear();
1751 ThisCapture = nullptr;
1752
1753 LambdaDefinitionData &Lambda = getLambdaData();
1754 for (const LambdaCapture *List : Lambda.Captures) {
1756 for (const LambdaCapture *C = List, *CEnd = C + Lambda.NumCaptures;
1757 C != CEnd; ++C, ++Field) {
1758 if (C->capturesThis())
1759 ThisCapture = *Field;
1760 else if (C->capturesVariable())
1761 Captures[C->getCapturedVar()] = *Field;
1762 }
1763 assert(Field == field_end());
1764 }
1765}
1766
1769 if (!isGenericLambda()) return nullptr;
1772 return Tmpl->getTemplateParameters();
1773 return nullptr;
1774}
1775
1779 if (!List)
1780 return {};
1781
1782 assert(std::is_partitioned(List->begin(), List->end(),
1783 [](const NamedDecl *D) { return !D->isImplicit(); })
1784 && "Explicit template params should be ordered before implicit ones");
1785
1786 const auto ExplicitEnd = llvm::partition_point(
1787 *List, [](const NamedDecl *D) { return !D->isImplicit(); });
1788 return llvm::ArrayRef(List->begin(), ExplicitEnd);
1789}
1790
1792 assert(isLambda() && "Not a lambda closure type!");
1794 return getLambdaData().ContextDecl.get(Source);
1795}
1796
1798 assert(isLambda() && "Not a lambda closure type!");
1799 getLambdaData().ManglingNumber = Numbering.ManglingNumber;
1800 if (Numbering.DeviceManglingNumber)
1801 getASTContext().DeviceLambdaManglingNumbers[this] =
1802 Numbering.DeviceManglingNumber;
1803 getLambdaData().IndexInContext = Numbering.IndexInContext;
1804 getLambdaData().ContextDecl = Numbering.ContextDecl;
1805 getLambdaData().HasKnownInternalLinkage = Numbering.HasKnownInternalLinkage;
1806}
1807
1809 assert(isLambda() && "Not a lambda closure type!");
1810 return getASTContext().DeviceLambdaManglingNumbers.lookup(this);
1811}
1812
1814 QualType T =
1815 cast<CXXConversionDecl>(Conv->getUnderlyingDecl()->getAsFunction())
1816 ->getConversionType();
1817 return Context.getCanonicalType(T);
1818}
1819
1820/// Collect the visible conversions of a base class.
1821///
1822/// \param Record a base class of the class we're considering
1823/// \param InVirtual whether this base class is a virtual base (or a base
1824/// of a virtual base)
1825/// \param Access the access along the inheritance path to this base
1826/// \param ParentHiddenTypes the conversions provided by the inheritors
1827/// of this base
1828/// \param Output the set to which to add conversions from non-virtual bases
1829/// \param VOutput the set to which to add conversions from virtual bases
1830/// \param HiddenVBaseCs the set of conversions which were hidden in a
1831/// virtual base along some inheritance path
1833 ASTContext &Context, const CXXRecordDecl *Record, bool InVirtual,
1834 AccessSpecifier Access,
1835 const llvm::SmallPtrSet<CanQualType, 8> &ParentHiddenTypes,
1836 ASTUnresolvedSet &Output, UnresolvedSetImpl &VOutput,
1837 llvm::SmallPtrSet<NamedDecl *, 8> &HiddenVBaseCs) {
1838 // The set of types which have conversions in this class or its
1839 // subclasses. As an optimization, we don't copy the derived set
1840 // unless it might change.
1841 const llvm::SmallPtrSet<CanQualType, 8> *HiddenTypes = &ParentHiddenTypes;
1842 llvm::SmallPtrSet<CanQualType, 8> HiddenTypesBuffer;
1843
1844 // Collect the direct conversions and figure out which conversions
1845 // will be hidden in the subclasses.
1846 CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin();
1847 CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end();
1848 if (ConvI != ConvE) {
1849 HiddenTypesBuffer = ParentHiddenTypes;
1850 HiddenTypes = &HiddenTypesBuffer;
1851
1852 for (CXXRecordDecl::conversion_iterator I = ConvI; I != ConvE; ++I) {
1853 CanQualType ConvType(GetConversionType(Context, I.getDecl()));
1854 bool Hidden = ParentHiddenTypes.count(ConvType);
1855 if (!Hidden)
1856 HiddenTypesBuffer.insert(ConvType);
1857
1858 // If this conversion is hidden and we're in a virtual base,
1859 // remember that it's hidden along some inheritance path.
1860 if (Hidden && InVirtual)
1861 HiddenVBaseCs.insert(cast<NamedDecl>(I.getDecl()->getCanonicalDecl()));
1862
1863 // If this conversion isn't hidden, add it to the appropriate output.
1864 else if (!Hidden) {
1865 AccessSpecifier IAccess
1866 = CXXRecordDecl::MergeAccess(Access, I.getAccess());
1867
1868 if (InVirtual)
1869 VOutput.addDecl(I.getDecl(), IAccess);
1870 else
1871 Output.addDecl(Context, I.getDecl(), IAccess);
1872 }
1873 }
1874 }
1875
1876 // Collect information recursively from any base classes.
1877 for (const auto &I : Record->bases()) {
1878 const auto *RT = I.getType()->getAs<RecordType>();
1879 if (!RT) continue;
1880
1881 AccessSpecifier BaseAccess
1882 = CXXRecordDecl::MergeAccess(Access, I.getAccessSpecifier());
1883 bool BaseInVirtual = InVirtual || I.isVirtual();
1884
1885 auto *Base = cast<CXXRecordDecl>(RT->getDecl());
1886 CollectVisibleConversions(Context, Base, BaseInVirtual, BaseAccess,
1887 *HiddenTypes, Output, VOutput, HiddenVBaseCs);
1888 }
1889}
1890
1891/// Collect the visible conversions of a class.
1892///
1893/// This would be extremely straightforward if it weren't for virtual
1894/// bases. It might be worth special-casing that, really.
1896 const CXXRecordDecl *Record,
1897 ASTUnresolvedSet &Output) {
1898 // The collection of all conversions in virtual bases that we've
1899 // found. These will be added to the output as long as they don't
1900 // appear in the hidden-conversions set.
1901 UnresolvedSet<8> VBaseCs;
1902
1903 // The set of conversions in virtual bases that we've determined to
1904 // be hidden.
1906
1907 // The set of types hidden by classes derived from this one.
1909
1910 // Go ahead and collect the direct conversions and add them to the
1911 // hidden-types set.
1912 CXXRecordDecl::conversion_iterator ConvI = Record->conversion_begin();
1913 CXXRecordDecl::conversion_iterator ConvE = Record->conversion_end();
1914 Output.append(Context, ConvI, ConvE);
1915 for (; ConvI != ConvE; ++ConvI)
1916 HiddenTypes.insert(GetConversionType(Context, ConvI.getDecl()));
1917
1918 // Recursively collect conversions from base classes.
1919 for (const auto &I : Record->bases()) {
1920 const auto *RT = I.getType()->getAs<RecordType>();
1921 if (!RT) continue;
1922
1923 CollectVisibleConversions(Context, cast<CXXRecordDecl>(RT->getDecl()),
1924 I.isVirtual(), I.getAccessSpecifier(),
1925 HiddenTypes, Output, VBaseCs, HiddenVBaseCs);
1926 }
1927
1928 // Add any unhidden conversions provided by virtual bases.
1929 for (UnresolvedSetIterator I = VBaseCs.begin(), E = VBaseCs.end();
1930 I != E; ++I) {
1931 if (!HiddenVBaseCs.count(cast<NamedDecl>(I.getDecl()->getCanonicalDecl())))
1932 Output.addDecl(Context, I.getDecl(), I.getAccess());
1933 }
1934}
1935
1936/// getVisibleConversionFunctions - get all conversion functions visible
1937/// in current class; including conversion function templates.
1938llvm::iterator_range<CXXRecordDecl::conversion_iterator>
1940 ASTContext &Ctx = getASTContext();
1941
1943 if (bases_begin() == bases_end()) {
1944 // If root class, all conversions are visible.
1945 Set = &data().Conversions.get(Ctx);
1946 } else {
1947 Set = &data().VisibleConversions.get(Ctx);
1948 // If visible conversion list is not evaluated, evaluate it.
1949 if (!data().ComputedVisibleConversions) {
1950 CollectVisibleConversions(Ctx, this, *Set);
1951 data().ComputedVisibleConversions = true;
1952 }
1953 }
1954 return llvm::make_range(Set->begin(), Set->end());
1955}
1956
1958 // This operation is O(N) but extremely rare. Sema only uses it to
1959 // remove UsingShadowDecls in a class that were followed by a direct
1960 // declaration, e.g.:
1961 // class A : B {
1962 // using B::operator int;
1963 // operator int();
1964 // };
1965 // This is uncommon by itself and even more uncommon in conjunction
1966 // with sufficiently large numbers of directly-declared conversions
1967 // that asymptotic behavior matters.
1968
1969 ASTUnresolvedSet &Convs = data().Conversions.get(getASTContext());
1970 for (unsigned I = 0, E = Convs.size(); I != E; ++I) {
1971 if (Convs[I].getDecl() == ConvDecl) {
1972 Convs.erase(I);
1973 assert(!llvm::is_contained(Convs, ConvDecl) &&
1974 "conversion was found multiple times in unresolved set");
1975 return;
1976 }
1977 }
1978
1979 llvm_unreachable("conversion not found in set!");
1980}
1981
1984 return cast<CXXRecordDecl>(MSInfo->getInstantiatedFrom());
1985
1986 return nullptr;
1987}
1988
1990 return TemplateOrInstantiation.dyn_cast<MemberSpecializationInfo *>();
1991}
1992
1993void
1996 assert(TemplateOrInstantiation.isNull() &&
1997 "Previous template or instantiation?");
1998 assert(!isa<ClassTemplatePartialSpecializationDecl>(this));
1999 TemplateOrInstantiation
2000 = new (getASTContext()) MemberSpecializationInfo(RD, TSK);
2001}
2002
2004 return TemplateOrInstantiation.dyn_cast<ClassTemplateDecl *>();
2005}
2006
2008 TemplateOrInstantiation = Template;
2009}
2010
2012 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(this))
2013 return Spec->getSpecializationKind();
2014
2016 return MSInfo->getTemplateSpecializationKind();
2017
2018 return TSK_Undeclared;
2019}
2020
2021void
2023 if (auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
2024 Spec->setSpecializationKind(TSK);
2025 return;
2026 }
2027
2029 MSInfo->setTemplateSpecializationKind(TSK);
2030 return;
2031 }
2032
2033 llvm_unreachable("Not a class template or member class specialization");
2034}
2035
2037 auto GetDefinitionOrSelf =
2038 [](const CXXRecordDecl *D) -> const CXXRecordDecl * {
2039 if (auto *Def = D->getDefinition())
2040 return Def;
2041 return D;
2042 };
2043
2044 // If it's a class template specialization, find the template or partial
2045 // specialization from which it was instantiated.
2046 if (auto *TD = dyn_cast<ClassTemplateSpecializationDecl>(this)) {
2047 auto From = TD->getInstantiatedFrom();
2048 if (auto *CTD = From.dyn_cast<ClassTemplateDecl *>()) {
2049 while (auto *NewCTD = CTD->getInstantiatedFromMemberTemplate()) {
2050 if (NewCTD->isMemberSpecialization())
2051 break;
2052 CTD = NewCTD;
2053 }
2054 return GetDefinitionOrSelf(CTD->getTemplatedDecl());
2055 }
2056 if (auto *CTPSD =
2057 From.dyn_cast<ClassTemplatePartialSpecializationDecl *>()) {
2058 while (auto *NewCTPSD = CTPSD->getInstantiatedFromMember()) {
2059 if (NewCTPSD->isMemberSpecialization())
2060 break;
2061 CTPSD = NewCTPSD;
2062 }
2063 return GetDefinitionOrSelf(CTPSD);
2064 }
2065 }
2066
2068 if (isTemplateInstantiation(MSInfo->getTemplateSpecializationKind())) {
2069 const CXXRecordDecl *RD = this;
2070 while (auto *NewRD = RD->getInstantiatedFromMemberClass())
2071 RD = NewRD;
2072 return GetDefinitionOrSelf(RD);
2073 }
2074 }
2075
2077 "couldn't find pattern for class template instantiation");
2078 return nullptr;
2079}
2080
2082 ASTContext &Context = getASTContext();
2083 QualType ClassType = Context.getTypeDeclType(this);
2084
2085 DeclarationName Name
2087 Context.getCanonicalType(ClassType));
2088
2090
2091 // If a destructor was marked as not selected, we skip it. We don't always
2092 // have a selected destructor: dependent types, unnamed structs.
2093 for (auto *Decl : R) {
2094 auto* DD = dyn_cast<CXXDestructorDecl>(Decl);
2095 if (DD && !DD->isIneligibleOrNotSelected())
2096 return DD;
2097 }
2098 return nullptr;
2099}
2100
2102 while (!DC->isTranslationUnit()) {
2103 if (DC->isNamespace())
2104 return true;
2105 DC = DC->getParent();
2106 }
2107 return false;
2108}
2109
2111 assert(hasDefinition() && "checking for interface-like without a definition");
2112 // All __interfaces are inheritently interface-like.
2113 if (isInterface())
2114 return true;
2115
2116 // Interface-like types cannot have a user declared constructor, destructor,
2117 // friends, VBases, conversion functions, or fields. Additionally, lambdas
2118 // cannot be interface types.
2121 getNumVBases() > 0 || conversion_end() - conversion_begin() > 0)
2122 return false;
2123
2124 // No interface-like type can have a method with a definition.
2125 for (const auto *const Method : methods())
2126 if (Method->isDefined() && !Method->isImplicit())
2127 return false;
2128
2129 // Check "Special" types.
2130 const auto *Uuid = getAttr<UuidAttr>();
2131 // MS SDK declares IUnknown/IDispatch both in the root of a TU, or in an
2132 // extern C++ block directly in the TU. These are only valid if in one
2133 // of these two situations.
2134 if (Uuid && isStruct() && !getDeclContext()->isExternCContext() &&
2136 ((getName() == "IUnknown" &&
2137 Uuid->getGuid() == "00000000-0000-0000-C000-000000000046") ||
2138 (getName() == "IDispatch" &&
2139 Uuid->getGuid() == "00020400-0000-0000-C000-000000000046"))) {
2140 if (getNumBases() > 0)
2141 return false;
2142 return true;
2143 }
2144
2145 // FIXME: Any access specifiers is supposed to make this no longer interface
2146 // like.
2147
2148 // If this isn't a 'special' type, it must have a single interface-like base.
2149 if (getNumBases() != 1)
2150 return false;
2151
2152 const auto BaseSpec = *bases_begin();
2153 if (BaseSpec.isVirtual() || BaseSpec.getAccessSpecifier() != AS_public)
2154 return false;
2155 const auto *Base = BaseSpec.getType()->getAsCXXRecordDecl();
2156 if (Base->isInterface() || !Base->isInterfaceLike())
2157 return false;
2158 return true;
2159}
2160
2162 completeDefinition(nullptr);
2163}
2164
2166 const CXXRecordDecl &RD, const CXXFinalOverriderMap *FinalOverriders) {
2167 if (!FinalOverriders) {
2168 CXXFinalOverriderMap MyFinalOverriders;
2169 RD.getFinalOverriders(MyFinalOverriders);
2170 return hasPureVirtualFinalOverrider(RD, &MyFinalOverriders);
2171 }
2172
2173 for (const CXXFinalOverriderMap::value_type &
2174 OverridingMethodsEntry : *FinalOverriders) {
2175 for (const auto &[_, SubobjOverrides] : OverridingMethodsEntry.second) {
2176 assert(SubobjOverrides.size() > 0 &&
2177 "All virtual functions have overriding virtual functions");
2178
2179 if (SubobjOverrides.front().Method->isPureVirtual())
2180 return true;
2181 }
2182 }
2183 return false;
2184}
2185
2188
2189 // If the class may be abstract (but hasn't been marked as such), check for
2190 // any pure final overriders.
2191 //
2192 // C++ [class.abstract]p4:
2193 // A class is abstract if it contains or inherits at least one
2194 // pure virtual function for which the final overrider is pure
2195 // virtual.
2196 if (mayBeAbstract() && hasPureVirtualFinalOverrider(*this, FinalOverriders))
2197 markAbstract();
2198
2199 // Set access bits correctly on the directly-declared conversions.
2201 I != E; ++I)
2202 I.setAccess((*I)->getAccess());
2203
2204 ASTContext &Context = getASTContext();
2205
2207 !Context.getLangOpts().CPlusPlus20) {
2208 // Diagnose any aggregate behavior changes in C++20
2209 for (const FieldDecl *FD : fields()) {
2210 if (const auto *AT = FD->getAttr<ExplicitInitAttr>())
2211 Context.getDiagnostics().Report(
2212 AT->getLocation(),
2213 diag::warn_cxx20_compat_requires_explicit_init_non_aggregate)
2214 << AT << FD << Context.getRecordType(this);
2215 }
2216 }
2217
2219 // Diagnose any fields that required explicit initialization in a
2220 // non-aggregate type. (Note that the fields may not be directly in this
2221 // type, but in a subobject. In such cases we don't emit diagnoses here.)
2222 for (const FieldDecl *FD : fields()) {
2223 if (const auto *AT = FD->getAttr<ExplicitInitAttr>())
2224 Context.getDiagnostics().Report(AT->getLocation(),
2225 diag::warn_attribute_needs_aggregate)
2226 << AT << Context.getRecordType(this);
2227 }
2229 }
2230}
2231
2233 if (data().Abstract || isInvalidDecl() || !data().Polymorphic ||
2235 return false;
2236
2237 for (const auto &B : bases()) {
2238 const auto *BaseDecl =
2239 cast<CXXRecordDecl>(B.getType()->castAs<RecordType>()->getDecl());
2240 if (BaseDecl->isAbstract())
2241 return true;
2242 }
2243
2244 return false;
2245}
2246
2248 auto *Def = getDefinition();
2249 if (!Def)
2250 return false;
2251 if (Def->hasAttr<FinalAttr>())
2252 return true;
2253 if (const auto *Dtor = Def->getDestructor())
2254 if (Dtor->hasAttr<FinalAttr>())
2255 return true;
2256 return false;
2257}
2258
2259void CXXDeductionGuideDecl::anchor() {}
2260
2262 if ((getKind() != Other.getKind() ||
2265 Other.getKind() == ExplicitSpecKind::Unresolved) {
2266 ODRHash SelfHash, OtherHash;
2267 SelfHash.AddStmt(getExpr());
2268 OtherHash.AddStmt(Other.getExpr());
2269 return SelfHash.CalculateHash() == OtherHash.CalculateHash();
2270 } else
2271 return false;
2272 }
2273 return true;
2274}
2275
2277 switch (Function->getDeclKind()) {
2278 case Decl::Kind::CXXConstructor:
2279 return cast<CXXConstructorDecl>(Function)->getExplicitSpecifier();
2280 case Decl::Kind::CXXConversion:
2281 return cast<CXXConversionDecl>(Function)->getExplicitSpecifier();
2282 case Decl::Kind::CXXDeductionGuide:
2283 return cast<CXXDeductionGuideDecl>(Function)->getExplicitSpecifier();
2284 default:
2285 return {};
2286 }
2287}
2288
2290 ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
2291 ExplicitSpecifier ES, const DeclarationNameInfo &NameInfo, QualType T,
2292 TypeSourceInfo *TInfo, SourceLocation EndLocation, CXXConstructorDecl *Ctor,
2293 DeductionCandidate Kind, Expr *TrailingRequiresClause) {
2294 return new (C, DC)
2295 CXXDeductionGuideDecl(C, DC, StartLoc, ES, NameInfo, T, TInfo,
2296 EndLocation, Ctor, Kind, TrailingRequiresClause);
2297}
2298
2301 return new (C, ID) CXXDeductionGuideDecl(
2303 QualType(), nullptr, SourceLocation(), nullptr,
2305}
2306
2308 ASTContext &C, DeclContext *DC, SourceLocation StartLoc) {
2309 return new (C, DC) RequiresExprBodyDecl(C, DC, StartLoc);
2310}
2311
2314 return new (C, ID) RequiresExprBodyDecl(C, nullptr, SourceLocation());
2315}
2316
2317void CXXMethodDecl::anchor() {}
2318
2320 const CXXMethodDecl *MD = getCanonicalDecl();
2321
2322 if (MD->getStorageClass() == SC_Static)
2323 return true;
2324
2326 return isStaticOverloadedOperator(OOK);
2327}
2328
2329static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD,
2330 const CXXMethodDecl *BaseMD) {
2331 for (const CXXMethodDecl *MD : DerivedMD->overridden_methods()) {
2332 if (MD->getCanonicalDecl() == BaseMD->getCanonicalDecl())
2333 return true;
2334 if (recursivelyOverrides(MD, BaseMD))
2335 return true;
2336 }
2337 return false;
2338}
2339
2342 bool MayBeBase) {
2343 if (this->getParent()->getCanonicalDecl() == RD->getCanonicalDecl())
2344 return this;
2345
2346 // Lookup doesn't work for destructors, so handle them separately.
2347 if (isa<CXXDestructorDecl>(this)) {
2348 CXXMethodDecl *MD = RD->getDestructor();
2349 if (MD) {
2350 if (recursivelyOverrides(MD, this))
2351 return MD;
2352 if (MayBeBase && recursivelyOverrides(this, MD))
2353 return MD;
2354 }
2355 return nullptr;
2356 }
2357
2358 for (auto *ND : RD->lookup(getDeclName())) {
2359 auto *MD = dyn_cast<CXXMethodDecl>(ND);
2360 if (!MD)
2361 continue;
2362 if (recursivelyOverrides(MD, this))
2363 return MD;
2364 if (MayBeBase && recursivelyOverrides(this, MD))
2365 return MD;
2366 }
2367
2368 return nullptr;
2369}
2370
2373 bool MayBeBase) {
2374 if (auto *MD = getCorrespondingMethodDeclaredInClass(RD, MayBeBase))
2375 return MD;
2376
2378 auto AddFinalOverrider = [&](CXXMethodDecl *D) {
2379 // If this function is overridden by a candidate final overrider, it is not
2380 // a final overrider.
2381 for (CXXMethodDecl *OtherD : FinalOverriders) {
2382 if (declaresSameEntity(D, OtherD) || recursivelyOverrides(OtherD, D))
2383 return;
2384 }
2385
2386 // Other candidate final overriders might be overridden by this function.
2387 llvm::erase_if(FinalOverriders, [&](CXXMethodDecl *OtherD) {
2388 return recursivelyOverrides(D, OtherD);
2389 });
2390
2391 FinalOverriders.push_back(D);
2392 };
2393
2394 for (const auto &I : RD->bases()) {
2395 const RecordType *RT = I.getType()->getAs<RecordType>();
2396 if (!RT)
2397 continue;
2398 const auto *Base = cast<CXXRecordDecl>(RT->getDecl());
2400 AddFinalOverrider(D);
2401 }
2402
2403 return FinalOverriders.size() == 1 ? FinalOverriders.front() : nullptr;
2404}
2405
2408 const DeclarationNameInfo &NameInfo, QualType T,
2409 TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin,
2410 bool isInline, ConstexprSpecKind ConstexprKind,
2411 SourceLocation EndLocation,
2412 Expr *TrailingRequiresClause) {
2413 return new (C, RD) CXXMethodDecl(
2414 CXXMethod, C, RD, StartLoc, NameInfo, T, TInfo, SC, UsesFPIntrin,
2415 isInline, ConstexprKind, EndLocation, TrailingRequiresClause);
2416}
2417
2419 GlobalDeclID ID) {
2420 return new (C, ID) CXXMethodDecl(
2421 CXXMethod, C, nullptr, SourceLocation(), DeclarationNameInfo(),
2422 QualType(), nullptr, SC_None, false, false,
2424}
2425
2427 bool IsAppleKext) {
2428 assert(isVirtual() && "this method is expected to be virtual");
2429
2430 // When building with -fapple-kext, all calls must go through the vtable since
2431 // the kernel linker can do runtime patching of vtables.
2432 if (IsAppleKext)
2433 return nullptr;
2434
2435 // If the member function is marked 'final', we know that it can't be
2436 // overridden and can therefore devirtualize it unless it's pure virtual.
2437 if (hasAttr<FinalAttr>())
2438 return isPureVirtual() ? nullptr : this;
2439
2440 // If Base is unknown, we cannot devirtualize.
2441 if (!Base)
2442 return nullptr;
2443
2444 // If the base expression (after skipping derived-to-base conversions) is a
2445 // class prvalue, then we can devirtualize.
2446 Base = Base->getBestDynamicClassTypeExpr();
2447 if (Base->isPRValue() && Base->getType()->isRecordType())
2448 return this;
2449
2450 // If we don't even know what we would call, we can't devirtualize.
2451 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
2452 if (!BestDynamicDecl)
2453 return nullptr;
2454
2455 // There may be a method corresponding to MD in a derived class.
2456 CXXMethodDecl *DevirtualizedMethod =
2457 getCorrespondingMethodInClass(BestDynamicDecl);
2458
2459 // If there final overrider in the dynamic type is ambiguous, we can't
2460 // devirtualize this call.
2461 if (!DevirtualizedMethod)
2462 return nullptr;
2463
2464 // If that method is pure virtual, we can't devirtualize. If this code is
2465 // reached, the result would be UB, not a direct call to the derived class
2466 // function, and we can't assume the derived class function is defined.
2467 if (DevirtualizedMethod->isPureVirtual())
2468 return nullptr;
2469
2470 // If that method is marked final, we can devirtualize it.
2471 if (DevirtualizedMethod->hasAttr<FinalAttr>())
2472 return DevirtualizedMethod;
2473
2474 // Similarly, if the class itself or its destructor is marked 'final',
2475 // the class can't be derived from and we can therefore devirtualize the
2476 // member function call.
2477 if (BestDynamicDecl->isEffectivelyFinal())
2478 return DevirtualizedMethod;
2479
2480 if (const auto *DRE = dyn_cast<DeclRefExpr>(Base)) {
2481 if (const auto *VD = dyn_cast<VarDecl>(DRE->getDecl()))
2482 if (VD->getType()->isRecordType())
2483 // This is a record decl. We know the type and can devirtualize it.
2484 return DevirtualizedMethod;
2485
2486 return nullptr;
2487 }
2488
2489 // We can devirtualize calls on an object accessed by a class member access
2490 // expression, since by C++11 [basic.life]p6 we know that it can't refer to
2491 // a derived class object constructed in the same location.
2492 if (const auto *ME = dyn_cast<MemberExpr>(Base)) {
2493 const ValueDecl *VD = ME->getMemberDecl();
2494 return VD->getType()->isRecordType() ? DevirtualizedMethod : nullptr;
2495 }
2496
2497 // Likewise for calls on an object accessed by a (non-reference) pointer to
2498 // member access.
2499 if (auto *BO = dyn_cast<BinaryOperator>(Base)) {
2500 if (BO->isPtrMemOp()) {
2501 auto *MPT = BO->getRHS()->getType()->castAs<MemberPointerType>();
2502 if (MPT->getPointeeType()->isRecordType())
2503 return DevirtualizedMethod;
2504 }
2505 }
2506
2507 // We can't devirtualize the call.
2508 return nullptr;
2509}
2510
2512 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const {
2513 assert(PreventedBy.empty() && "PreventedBy is expected to be empty");
2514 if (getOverloadedOperator() != OO_Delete &&
2515 getOverloadedOperator() != OO_Array_Delete)
2516 return false;
2517
2518 // C++ [basic.stc.dynamic.deallocation]p2:
2519 // A template instance is never a usual deallocation function,
2520 // regardless of its signature.
2521 if (getPrimaryTemplate())
2522 return false;
2523
2524 // C++ [basic.stc.dynamic.deallocation]p2:
2525 // If a class T has a member deallocation function named operator delete
2526 // with exactly one parameter, then that function is a usual (non-placement)
2527 // deallocation function. [...]
2528 if (getNumParams() == 1)
2529 return true;
2530 unsigned UsualParams = 1;
2531
2532 // C++ P0722:
2533 // A destroying operator delete is a usual deallocation function if
2534 // removing the std::destroying_delete_t parameter and changing the
2535 // first parameter type from T* to void* results in the signature of
2536 // a usual deallocation function.
2538 ++UsualParams;
2539
2540 // C++ <=14 [basic.stc.dynamic.deallocation]p2:
2541 // [...] If class T does not declare such an operator delete but does
2542 // declare a member deallocation function named operator delete with
2543 // exactly two parameters, the second of which has type std::size_t (18.1),
2544 // then this function is a usual deallocation function.
2545 //
2546 // C++17 says a usual deallocation function is one with the signature
2547 // (void* [, size_t] [, std::align_val_t] [, ...])
2548 // and all such functions are usual deallocation functions. It's not clear
2549 // that allowing varargs functions was intentional.
2550 ASTContext &Context = getASTContext();
2551 if (UsualParams < getNumParams() &&
2552 Context.hasSameUnqualifiedType(getParamDecl(UsualParams)->getType(),
2553 Context.getSizeType()))
2554 ++UsualParams;
2555
2556 if (UsualParams < getNumParams() &&
2557 getParamDecl(UsualParams)->getType()->isAlignValT())
2558 ++UsualParams;
2559
2560 if (UsualParams != getNumParams())
2561 return false;
2562
2563 // In C++17 onwards, all potential usual deallocation functions are actual
2564 // usual deallocation functions. Honor this behavior when post-C++14
2565 // deallocation functions are offered as extensions too.
2566 // FIXME(EricWF): Destroying Delete should be a language option. How do we
2567 // handle when destroying delete is used prior to C++17?
2568 if (Context.getLangOpts().CPlusPlus17 ||
2569 Context.getLangOpts().AlignedAllocation ||
2571 return true;
2572
2573 // This function is a usual deallocation function if there are no
2574 // single-parameter deallocation functions of the same kind.
2576 bool Result = true;
2577 for (const auto *D : R) {
2578 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2579 if (FD->getNumParams() == 1) {
2580 PreventedBy.push_back(FD);
2581 Result = false;
2582 }
2583 }
2584 }
2585 return Result;
2586}
2587
2589 // C++2b [dcl.fct]p6:
2590 // An explicit object member function is a non-static member
2591 // function with an explicit object parameter
2593}
2594
2597}
2598
2600 // C++0x [class.copy]p17:
2601 // A user-declared copy assignment operator X::operator= is a non-static
2602 // non-template member function of class X with exactly one parameter of
2603 // type X, X&, const X&, volatile X& or const volatile X&.
2604 if (/*operator=*/getOverloadedOperator() != OO_Equal ||
2605 /*non-static*/ isStatic() ||
2606
2607 /*non-template*/ getPrimaryTemplate() || getDescribedFunctionTemplate() ||
2608 getNumExplicitParams() != 1)
2609 return false;
2610
2611 QualType ParamType = getNonObjectParameter(0)->getType();
2612 if (const auto *Ref = ParamType->getAs<LValueReferenceType>())
2613 ParamType = Ref->getPointeeType();
2614
2615 ASTContext &Context = getASTContext();
2616 QualType ClassType
2617 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
2618 return Context.hasSameUnqualifiedType(ClassType, ParamType);
2619}
2620
2622 // C++0x [class.copy]p19:
2623 // A user-declared move assignment operator X::operator= is a non-static
2624 // non-template member function of class X with exactly one parameter of type
2625 // X&&, const X&&, volatile X&&, or const volatile X&&.
2626 if (getOverloadedOperator() != OO_Equal || isStatic() ||
2628 getNumExplicitParams() != 1)
2629 return false;
2630
2631 QualType ParamType = getNonObjectParameter(0)->getType();
2632 if (!ParamType->isRValueReferenceType())
2633 return false;
2634 ParamType = ParamType->getPointeeType();
2635
2636 ASTContext &Context = getASTContext();
2637 QualType ClassType
2638 = Context.getCanonicalType(Context.getTypeDeclType(getParent()));
2639 return Context.hasSameUnqualifiedType(ClassType, ParamType);
2640}
2641
2643 assert(MD->isCanonicalDecl() && "Method is not canonical!");
2644 assert(MD->isVirtual() && "Method is not virtual!");
2645
2647}
2648
2650 if (isa<CXXConstructorDecl>(this)) return nullptr;
2652}
2653
2655 if (isa<CXXConstructorDecl>(this)) return nullptr;
2657}
2658
2660 if (isa<CXXConstructorDecl>(this)) return 0;
2662}
2663
2666 if (isa<CXXConstructorDecl>(this))
2667 return overridden_method_range(nullptr, nullptr);
2668 return getASTContext().overridden_methods(this);
2669}
2670
2672 const CXXRecordDecl *Decl) {
2673 QualType ClassTy = C.getTypeDeclType(Decl);
2674 return C.getQualifiedType(ClassTy, FPT->getMethodQuals());
2675}
2676
2678 const CXXRecordDecl *Decl) {
2680 QualType ObjectTy = ::getThisObjectType(C, FPT, Decl);
2681
2682 // Unlike 'const' and 'volatile', a '__restrict' qualifier must be
2683 // attached to the pointer type, not the pointee.
2684 bool Restrict = FPT->getMethodQuals().hasRestrict();
2685 if (Restrict)
2686 ObjectTy.removeLocalRestrict();
2687
2688 ObjectTy = C.getLangOpts().HLSL ? C.getLValueReferenceType(ObjectTy)
2689 : C.getPointerType(ObjectTy);
2690
2691 if (Restrict)
2692 ObjectTy.addRestrict();
2693 return ObjectTy;
2694}
2695
2697 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
2698 // If the member function is declared const, the type of this is const X*,
2699 // if the member function is declared volatile, the type of this is
2700 // volatile X*, and if the member function is declared const volatile,
2701 // the type of this is const volatile X*.
2702 assert(isInstance() && "No 'this' for static methods!");
2703 return CXXMethodDecl::getThisType(getType()->castAs<FunctionProtoType>(),
2704 getParent());
2705}
2706
2709 return parameters()[0]->getType();
2710
2716 return C.getRValueReferenceType(Type);
2717 return C.getLValueReferenceType(Type);
2718}
2719
2721 // If this function is a template instantiation, look at the template from
2722 // which it was instantiated.
2724 if (!CheckFn)
2725 CheckFn = this;
2726
2727 const FunctionDecl *fn;
2728 return CheckFn->isDefined(fn) && !fn->isOutOfLine() &&
2730}
2731
2733 const CXXRecordDecl *P = getParent();
2734 return P->isLambda() && getDeclName().isIdentifier() &&
2736}
2737
2739 TypeSourceInfo *TInfo, bool IsVirtual,
2742 SourceLocation EllipsisLoc)
2743 : Initializee(TInfo), Init(Init), MemberOrEllipsisLocation(EllipsisLoc),
2744 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(IsVirtual),
2745 IsWritten(false), SourceOrder(0) {}
2746
2748 SourceLocation MemberLoc,
2751 : Initializee(Member), Init(Init), MemberOrEllipsisLocation(MemberLoc),
2752 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
2753 IsWritten(false), SourceOrder(0) {}
2754
2757 SourceLocation MemberLoc,
2760 : Initializee(Member), Init(Init), MemberOrEllipsisLocation(MemberLoc),
2761 LParenLoc(L), RParenLoc(R), IsDelegating(false), IsVirtual(false),
2762 IsWritten(false), SourceOrder(0) {}
2763
2765 TypeSourceInfo *TInfo,
2768 : Initializee(TInfo), Init(Init), LParenLoc(L), RParenLoc(R),
2769 IsDelegating(true), IsVirtual(false), IsWritten(false), SourceOrder(0) {}
2770
2771int64_t CXXCtorInitializer::getID(const ASTContext &Context) const {
2772 return Context.getAllocator()
2773 .identifyKnownAlignedObject<CXXCtorInitializer>(this);
2774}
2775
2777 if (isBaseInitializer())
2778 return cast<TypeSourceInfo *>(Initializee)->getTypeLoc();
2779 else
2780 return {};
2781}
2782
2784 if (isBaseInitializer())
2785 return cast<TypeSourceInfo *>(Initializee)->getType().getTypePtr();
2786 else
2787 return nullptr;
2788}
2789
2792 return getAnyMember()->getLocation();
2793
2795 return getMemberLocation();
2796
2797 if (const auto *TSInfo = cast<TypeSourceInfo *>(Initializee))
2798 return TSInfo->getTypeLoc().getBeginLoc();
2799
2800 return {};
2801}
2802
2806 if (Expr *I = D->getInClassInitializer())
2807 return I->getSourceRange();
2808 return {};
2809 }
2810
2812}
2813
2814CXXConstructorDecl::CXXConstructorDecl(
2815 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
2816 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo,
2817 ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline,
2818 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2819 InheritedConstructor Inherited, Expr *TrailingRequiresClause)
2820 : CXXMethodDecl(CXXConstructor, C, RD, StartLoc, NameInfo, T, TInfo,
2821 SC_None, UsesFPIntrin, isInline, ConstexprKind,
2822 SourceLocation(), TrailingRequiresClause) {
2823 setNumCtorInitializers(0);
2824 setInheritingConstructor(static_cast<bool>(Inherited));
2825 setImplicit(isImplicitlyDeclared);
2826 CXXConstructorDeclBits.HasTrailingExplicitSpecifier = ES.getExpr() ? 1 : 0;
2827 if (Inherited)
2828 *getTrailingObjects<InheritedConstructor>() = Inherited;
2829 setExplicitSpecifier(ES);
2830}
2831
2832void CXXConstructorDecl::anchor() {}
2833
2836 uint64_t AllocKind) {
2837 bool hasTrailingExplicit = static_cast<bool>(AllocKind & TAKHasTailExplicit);
2839 static_cast<bool>(AllocKind & TAKInheritsConstructor);
2840 unsigned Extra =
2841 additionalSizeToAlloc<InheritedConstructor, ExplicitSpecifier>(
2842 isInheritingConstructor, hasTrailingExplicit);
2843 auto *Result = new (C, ID, Extra) CXXConstructorDecl(
2844 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr,
2845 ExplicitSpecifier(), false, false, false, ConstexprSpecKind::Unspecified,
2846 InheritedConstructor(), nullptr);
2847 Result->setInheritingConstructor(isInheritingConstructor);
2848 Result->CXXConstructorDeclBits.HasTrailingExplicitSpecifier =
2849 hasTrailingExplicit;
2850 Result->setExplicitSpecifier(ExplicitSpecifier());
2851 return Result;
2852}
2853
2855 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
2856 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo,
2857 ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline,
2858 bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind,
2859 InheritedConstructor Inherited, Expr *TrailingRequiresClause) {
2860 assert(NameInfo.getName().getNameKind()
2862 "Name must refer to a constructor");
2863 unsigned Extra =
2864 additionalSizeToAlloc<InheritedConstructor, ExplicitSpecifier>(
2865 Inherited ? 1 : 0, ES.getExpr() ? 1 : 0);
2866 return new (C, RD, Extra) CXXConstructorDecl(
2867 C, RD, StartLoc, NameInfo, T, TInfo, ES, UsesFPIntrin, isInline,
2868 isImplicitlyDeclared, ConstexprKind, Inherited, TrailingRequiresClause);
2869}
2870
2872 return CtorInitializers.get(getASTContext().getExternalSource());
2873}
2874
2876 assert(isDelegatingConstructor() && "Not a delegating constructor!");
2877 Expr *E = (*init_begin())->getInit()->IgnoreImplicit();
2878 if (const auto *Construct = dyn_cast<CXXConstructExpr>(E))
2879 return Construct->getConstructor();
2880
2881 return nullptr;
2882}
2883
2885 // C++ [class.default.ctor]p1:
2886 // A default constructor for a class X is a constructor of class X for
2887 // which each parameter that is not a function parameter pack has a default
2888 // argument (including the case of a constructor with no parameters)
2889 return getMinRequiredArguments() == 0;
2890}
2891
2892bool
2893CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const {
2894 return isCopyOrMoveConstructor(TypeQuals) &&
2896}
2897
2898bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const {
2899 return isCopyOrMoveConstructor(TypeQuals) &&
2901}
2902
2903/// Determine whether this is a copy or move constructor.
2904bool CXXConstructorDecl::isCopyOrMoveConstructor(unsigned &TypeQuals) const {
2905 // C++ [class.copy]p2:
2906 // A non-template constructor for class X is a copy constructor
2907 // if its first parameter is of type X&, const X&, volatile X& or
2908 // const volatile X&, and either there are no other parameters
2909 // or else all other parameters have default arguments (8.3.6).
2910 // C++0x [class.copy]p3:
2911 // A non-template constructor for class X is a move constructor if its
2912 // first parameter is of type X&&, const X&&, volatile X&&, or
2913 // const volatile X&&, and either there are no other parameters or else
2914 // all other parameters have default arguments.
2915 if (!hasOneParamOrDefaultArgs() || getPrimaryTemplate() != nullptr ||
2916 getDescribedFunctionTemplate() != nullptr)
2917 return false;
2918
2919 const ParmVarDecl *Param = getParamDecl(0);
2920
2921 // Do we have a reference type?
2922 const auto *ParamRefType = Param->getType()->getAs<ReferenceType>();
2923 if (!ParamRefType)
2924 return false;
2925
2926 // Is it a reference to our class type?
2927 ASTContext &Context = getASTContext();
2928
2929 CanQualType PointeeType
2930 = Context.getCanonicalType(ParamRefType->getPointeeType());
2931 CanQualType ClassTy
2932 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
2933 if (PointeeType.getUnqualifiedType() != ClassTy)
2934 return false;
2935
2936 // FIXME: other qualifiers?
2937
2938 // We have a copy or move constructor.
2939 TypeQuals = PointeeType.getCVRQualifiers();
2940 return true;
2941}
2942
2943bool CXXConstructorDecl::isConvertingConstructor(bool AllowExplicit) const {
2944 // C++ [class.conv.ctor]p1:
2945 // A constructor declared without the function-specifier explicit
2946 // that can be called with a single parameter specifies a
2947 // conversion from the type of its first parameter to the type of
2948 // its class. Such a constructor is called a converting
2949 // constructor.
2950 if (isExplicit() && !AllowExplicit)
2951 return false;
2952
2953 // FIXME: This has nothing to do with the definition of converting
2954 // constructor, but is convenient for how we use this function in overload
2955 // resolution.
2956 return getNumParams() == 0
2958 : getMinRequiredArguments() <= 1;
2959}
2960
2963 return false;
2964
2965 const ParmVarDecl *Param = getParamDecl(0);
2966
2967 ASTContext &Context = getASTContext();
2968 CanQualType ParamType = Context.getCanonicalType(Param->getType());
2969
2970 // Is it the same as our class type?
2971 CanQualType ClassTy
2972 = Context.getCanonicalType(Context.getTagDeclType(getParent()));
2973 if (ParamType.getUnqualifiedType() != ClassTy)
2974 return false;
2975
2976 return true;
2977}
2978
2979void CXXDestructorDecl::anchor() {}
2980
2982 GlobalDeclID ID) {
2983 return new (C, ID) CXXDestructorDecl(
2984 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr,
2985 false, false, false, ConstexprSpecKind::Unspecified, nullptr);
2986}
2987
2989 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
2990 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo,
2991 bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared,
2992 ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause) {
2993 assert(NameInfo.getName().getNameKind()
2995 "Name must refer to a destructor");
2996 return new (C, RD) CXXDestructorDecl(
2997 C, RD, StartLoc, NameInfo, T, TInfo, UsesFPIntrin, isInline,
2998 isImplicitlyDeclared, ConstexprKind, TrailingRequiresClause);
2999}
3000
3002 auto *First = cast<CXXDestructorDecl>(getFirstDecl());
3003 if (OD && !First->OperatorDelete) {
3004 First->OperatorDelete = OD;
3005 First->OperatorDeleteThisArg = ThisArg;
3006 if (auto *L = getASTMutationListener())
3007 L->ResolvedOperatorDelete(First, OD, ThisArg);
3008 }
3009}
3010
3012 // C++20 [expr.delete]p6: If the value of the operand of the delete-
3013 // expression is not a null pointer value and the selected deallocation
3014 // function (see below) is not a destroying operator delete, the delete-
3015 // expression will invoke the destructor (if any) for the object or the
3016 // elements of the array being deleted.
3017 //
3018 // This means we should not look at the destructor for a destroying
3019 // delete operator, as that destructor is never called, unless the
3020 // destructor is virtual (see [expr.delete]p8.1) because then the
3021 // selected operator depends on the dynamic type of the pointer.
3022 const FunctionDecl *SelectedOperatorDelete = OpDel ? OpDel : OperatorDelete;
3023 if (!SelectedOperatorDelete)
3024 return true;
3025
3026 if (!SelectedOperatorDelete->isDestroyingOperatorDelete())
3027 return true;
3028
3029 // We have a destroying operator delete, so it depends on the dtor.
3030 return isVirtual();
3031}
3032
3033void CXXConversionDecl::anchor() {}
3034
3036 GlobalDeclID ID) {
3037 return new (C, ID) CXXConversionDecl(
3038 C, nullptr, SourceLocation(), DeclarationNameInfo(), QualType(), nullptr,
3040 SourceLocation(), nullptr);
3041}
3042
3044 ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
3045 const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo,
3046 bool UsesFPIntrin, bool isInline, ExplicitSpecifier ES,
3047 ConstexprSpecKind ConstexprKind, SourceLocation EndLocation,
3048 Expr *TrailingRequiresClause) {
3049 assert(NameInfo.getName().getNameKind()
3051 "Name must refer to a conversion function");
3052 return new (C, RD) CXXConversionDecl(
3053 C, RD, StartLoc, NameInfo, T, TInfo, UsesFPIntrin, isInline, ES,
3054 ConstexprKind, EndLocation, TrailingRequiresClause);
3055}
3056
3058 return isImplicit() && getParent()->isLambda() &&
3060}
3061
3062LinkageSpecDecl::LinkageSpecDecl(DeclContext *DC, SourceLocation ExternLoc,
3063 SourceLocation LangLoc,
3064 LinkageSpecLanguageIDs lang, bool HasBraces)
3065 : Decl(LinkageSpec, DC, LangLoc), DeclContext(LinkageSpec),
3066 ExternLoc(ExternLoc), RBraceLoc(SourceLocation()) {
3067 setLanguage(lang);
3068 LinkageSpecDeclBits.HasBraces = HasBraces;
3069}
3070
3071void LinkageSpecDecl::anchor() {}
3072
3074 SourceLocation ExternLoc,
3075 SourceLocation LangLoc,
3077 bool HasBraces) {
3078 return new (C, DC) LinkageSpecDecl(DC, ExternLoc, LangLoc, Lang, HasBraces);
3079}
3080
3082 GlobalDeclID ID) {
3083 return new (C, ID)
3086}
3087
3088void UsingDirectiveDecl::anchor() {}
3089
3092 SourceLocation NamespaceLoc,
3093 NestedNameSpecifierLoc QualifierLoc,
3094 SourceLocation IdentLoc,
3095 NamedDecl *Used,
3096 DeclContext *CommonAncestor) {
3097 if (auto *NS = dyn_cast_or_null<NamespaceDecl>(Used))
3098 Used = NS->getFirstDecl();
3099 return new (C, DC) UsingDirectiveDecl(DC, L, NamespaceLoc, QualifierLoc,
3100 IdentLoc, Used, CommonAncestor);
3101}
3102
3104 GlobalDeclID ID) {
3105 return new (C, ID) UsingDirectiveDecl(nullptr, SourceLocation(),
3108 SourceLocation(), nullptr, nullptr);
3109}
3110
3112 if (auto *NA = dyn_cast_or_null<NamespaceAliasDecl>(NominatedNamespace))
3113 return NA->getNamespace();
3114 return cast_or_null<NamespaceDecl>(NominatedNamespace);
3115}
3116
3117NamespaceDecl::NamespaceDecl(ASTContext &C, DeclContext *DC, bool Inline,
3118 SourceLocation StartLoc, SourceLocation IdLoc,
3119 IdentifierInfo *Id, NamespaceDecl *PrevDecl,
3120 bool Nested)
3121 : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace),
3122 redeclarable_base(C), LocStart(StartLoc) {
3123 setInline(Inline);
3124 setNested(Nested);
3125 setPreviousDecl(PrevDecl);
3126}
3127
3129 bool Inline, SourceLocation StartLoc,
3131 NamespaceDecl *PrevDecl, bool Nested) {
3132 return new (C, DC)
3133 NamespaceDecl(C, DC, Inline, StartLoc, IdLoc, Id, PrevDecl, Nested);
3134}
3135
3137 GlobalDeclID ID) {
3138 return new (C, ID) NamespaceDecl(C, nullptr, false, SourceLocation(),
3139 SourceLocation(), nullptr, nullptr, false);
3140}
3141
3142NamespaceDecl *NamespaceDecl::getNextRedeclarationImpl() {
3143 return getNextRedeclaration();
3144}
3145
3146NamespaceDecl *NamespaceDecl::getPreviousDeclImpl() {
3147 return getPreviousDecl();
3148}
3149
3150NamespaceDecl *NamespaceDecl::getMostRecentDeclImpl() {
3151 return getMostRecentDecl();
3152}
3153
3154void NamespaceAliasDecl::anchor() {}
3155
3156NamespaceAliasDecl *NamespaceAliasDecl::getNextRedeclarationImpl() {
3157 return getNextRedeclaration();
3158}
3159
3160NamespaceAliasDecl *NamespaceAliasDecl::getPreviousDeclImpl() {
3161 return getPreviousDecl();
3162}
3163
3164NamespaceAliasDecl *NamespaceAliasDecl::getMostRecentDeclImpl() {
3165 return getMostRecentDecl();
3166}
3167
3169 SourceLocation UsingLoc,
3170 SourceLocation AliasLoc,
3171 IdentifierInfo *Alias,
3172 NestedNameSpecifierLoc QualifierLoc,
3173 SourceLocation IdentLoc,
3174 NamedDecl *Namespace) {
3175 // FIXME: Preserve the aliased namespace as written.
3176 if (auto *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
3177 Namespace = NS->getFirstDecl();
3178 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias,
3179 QualifierLoc, IdentLoc, Namespace);
3180}
3181
3183 GlobalDeclID ID) {
3184 return new (C, ID) NamespaceAliasDecl(C, nullptr, SourceLocation(),
3185 SourceLocation(), nullptr,
3187 SourceLocation(), nullptr);
3188}
3189
3190void LifetimeExtendedTemporaryDecl::anchor() {}
3191
3192/// Retrieve the storage duration for the materialized temporary.
3194 const ValueDecl *ExtendingDecl = getExtendingDecl();
3195 if (!ExtendingDecl)
3196 return SD_FullExpression;
3197 // FIXME: This is not necessarily correct for a temporary materialized
3198 // within a default initializer.
3199 if (isa<FieldDecl>(ExtendingDecl))
3200 return SD_Automatic;
3201 // FIXME: This only works because storage class specifiers are not allowed
3202 // on decomposition declarations.
3203 if (isa<BindingDecl>(ExtendingDecl))
3204 return ExtendingDecl->getDeclContext()->isFunctionOrMethod() ? SD_Automatic
3205 : SD_Static;
3206 return cast<VarDecl>(ExtendingDecl)->getStorageDuration();
3207}
3208
3210 assert(getStorageDuration() == SD_Static &&
3211 "don't need to cache the computed value for this temporary");
3212 if (MayCreate && !Value) {
3213 Value = (new (getASTContext()) APValue);
3215 }
3216 assert(Value && "may not be null");
3217 return Value;
3218}
3219
3220void UsingShadowDecl::anchor() {}
3221
3224 BaseUsingDecl *Introducer, NamedDecl *Target)
3225 : NamedDecl(K, DC, Loc, Name), redeclarable_base(C),
3226 UsingOrNextShadow(Introducer) {
3227 if (Target) {
3228 assert(!isa<UsingShadowDecl>(Target));
3230 }
3231 setImplicit();
3232}
3233
3235 : NamedDecl(K, nullptr, SourceLocation(), DeclarationName()),
3237
3239 GlobalDeclID ID) {
3240 return new (C, ID) UsingShadowDecl(UsingShadow, C, EmptyShell());
3241}
3242
3244 const UsingShadowDecl *Shadow = this;
3245 while (const auto *NextShadow =
3246 dyn_cast<UsingShadowDecl>(Shadow->UsingOrNextShadow))
3247 Shadow = NextShadow;
3248 return cast<BaseUsingDecl>(Shadow->UsingOrNextShadow);
3249}
3250
3251void ConstructorUsingShadowDecl::anchor() {}
3252
3256 NamedDecl *Target, bool IsVirtual) {
3257 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target,
3258 IsVirtual);
3259}
3260
3263 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell());
3264}
3265
3268}
3269
3270void BaseUsingDecl::anchor() {}
3271
3273 assert(!llvm::is_contained(shadows(), S) && "declaration already in set");
3274 assert(S->getIntroducer() == this);
3275
3276 if (FirstUsingShadow.getPointer())
3277 S->UsingOrNextShadow = FirstUsingShadow.getPointer();
3278 FirstUsingShadow.setPointer(S);
3279}
3280
3282 assert(llvm::is_contained(shadows(), S) && "declaration not in set");
3283 assert(S->getIntroducer() == this);
3284
3285 // Remove S from the shadow decl chain. This is O(n) but hopefully rare.
3286
3287 if (FirstUsingShadow.getPointer() == S) {
3288 FirstUsingShadow.setPointer(
3289 dyn_cast<UsingShadowDecl>(S->UsingOrNextShadow));
3290 S->UsingOrNextShadow = this;
3291 return;
3292 }
3293
3294 UsingShadowDecl *Prev = FirstUsingShadow.getPointer();
3295 while (Prev->UsingOrNextShadow != S)
3296 Prev = cast<UsingShadowDecl>(Prev->UsingOrNextShadow);
3297 Prev->UsingOrNextShadow = S->UsingOrNextShadow;
3298 S->UsingOrNextShadow = this;
3299}
3300
3301void UsingDecl::anchor() {}
3302
3304 NestedNameSpecifierLoc QualifierLoc,
3305 const DeclarationNameInfo &NameInfo,
3306 bool HasTypename) {
3307 return new (C, DC) UsingDecl(DC, UL, QualifierLoc, NameInfo, HasTypename);
3308}
3309
3311 return new (C, ID) UsingDecl(nullptr, SourceLocation(),
3313 false);
3314}
3315
3318 ? getQualifierLoc().getBeginLoc() : UsingLocation;
3320}
3321
3322void UsingEnumDecl::anchor() {}
3323
3325 SourceLocation UL,
3326 SourceLocation EL,
3327 SourceLocation NL,
3329 assert(isa<EnumDecl>(EnumType->getType()->getAsTagDecl()));
3330 return new (C, DC)
3331 UsingEnumDecl(DC, EnumType->getType()->getAsTagDecl()->getDeclName(), UL, EL, NL, EnumType);
3332}
3333
3335 GlobalDeclID ID) {
3336 return new (C, ID)
3338 SourceLocation(), SourceLocation(), nullptr);
3339}
3340
3342 return SourceRange(UsingLocation, EnumType->getTypeLoc().getEndLoc());
3343}
3344
3345void UsingPackDecl::anchor() {}
3346
3348 NamedDecl *InstantiatedFrom,
3349 ArrayRef<NamedDecl *> UsingDecls) {
3350 size_t Extra = additionalSizeToAlloc<NamedDecl *>(UsingDecls.size());
3351 return new (C, DC, Extra) UsingPackDecl(DC, InstantiatedFrom, UsingDecls);
3352}
3353
3355 unsigned NumExpansions) {
3356 size_t Extra = additionalSizeToAlloc<NamedDecl *>(NumExpansions);
3357 auto *Result = new (C, ID, Extra) UsingPackDecl(nullptr, nullptr, {});
3358 Result->NumExpansions = NumExpansions;
3359 auto *Trail = Result->getTrailingObjects<NamedDecl *>();
3360 for (unsigned I = 0; I != NumExpansions; ++I)
3361 new (Trail + I) NamedDecl*(nullptr);
3362 return Result;
3363}
3364
3365void UnresolvedUsingValueDecl::anchor() {}
3366
3369 SourceLocation UsingLoc,
3370 NestedNameSpecifierLoc QualifierLoc,
3371 const DeclarationNameInfo &NameInfo,
3372 SourceLocation EllipsisLoc) {
3373 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc,
3374 QualifierLoc, NameInfo,
3375 EllipsisLoc);
3376}
3377
3380 return new (C, ID) UnresolvedUsingValueDecl(nullptr, QualType(),
3384 SourceLocation());
3385}
3386
3389 ? getQualifierLoc().getBeginLoc() : UsingLocation;
3391}
3392
3393void UnresolvedUsingTypenameDecl::anchor() {}
3394
3397 SourceLocation UsingLoc,
3398 SourceLocation TypenameLoc,
3399 NestedNameSpecifierLoc QualifierLoc,
3400 SourceLocation TargetNameLoc,
3401 DeclarationName TargetName,
3402 SourceLocation EllipsisLoc) {
3403 return new (C, DC) UnresolvedUsingTypenameDecl(
3404 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc,
3405 TargetName.getAsIdentifierInfo(), EllipsisLoc);
3406}
3407
3410 GlobalDeclID ID) {
3411 return new (C, ID) UnresolvedUsingTypenameDecl(
3413 SourceLocation(), nullptr, SourceLocation());
3414}
3415
3419 return new (Ctx, DC) UnresolvedUsingIfExistsDecl(DC, Loc, Name);
3420}
3421
3424 GlobalDeclID ID) {
3425 return new (Ctx, ID)
3427}
3428
3429UnresolvedUsingIfExistsDecl::UnresolvedUsingIfExistsDecl(DeclContext *DC,
3431 DeclarationName Name)
3432 : NamedDecl(Decl::UnresolvedUsingIfExists, DC, Loc, Name) {}
3433
3434void UnresolvedUsingIfExistsDecl::anchor() {}
3435
3436void StaticAssertDecl::anchor() {}
3437
3439 SourceLocation StaticAssertLoc,
3440 Expr *AssertExpr, Expr *Message,
3441 SourceLocation RParenLoc,
3442 bool Failed) {
3443 return new (C, DC) StaticAssertDecl(DC, StaticAssertLoc, AssertExpr, Message,
3444 RParenLoc, Failed);
3445}
3446
3448 GlobalDeclID ID) {
3449 return new (C, ID) StaticAssertDecl(nullptr, SourceLocation(), nullptr,
3450 nullptr, SourceLocation(), false);
3451}
3452
3454 assert((isa<VarDecl, BindingDecl>(this)) &&
3455 "expected a VarDecl or a BindingDecl");
3456 if (auto *Var = llvm::dyn_cast<VarDecl>(this))
3457 return Var;
3458 if (auto *BD = llvm::dyn_cast<BindingDecl>(this))
3459 return llvm::dyn_cast<VarDecl>(BD->getDecomposedDecl());
3460 return nullptr;
3461}
3462
3463void BindingDecl::anchor() {}
3464
3467 return new (C, DC) BindingDecl(DC, IdLoc, Id);
3468}
3469
3471 return new (C, ID) BindingDecl(nullptr, SourceLocation(), nullptr);
3472}
3473
3475 Expr *B = getBinding();
3476 if (!B)
3477 return nullptr;
3478 auto *DRE = dyn_cast<DeclRefExpr>(B->IgnoreImplicit());
3479 if (!DRE)
3480 return nullptr;
3481
3482 auto *VD = cast<VarDecl>(DRE->getDecl());
3483 assert(VD->isImplicit() && "holding var for binding decl not implicit");
3484 return VD;
3485}
3486
3487void DecompositionDecl::anchor() {}
3488
3490 SourceLocation StartLoc,
3491 SourceLocation LSquareLoc,
3492 QualType T, TypeSourceInfo *TInfo,
3493 StorageClass SC,
3495 size_t Extra = additionalSizeToAlloc<BindingDecl *>(Bindings.size());
3496 return new (C, DC, Extra)
3497 DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings);
3498}
3499
3502 unsigned NumBindings) {
3503 size_t Extra = additionalSizeToAlloc<BindingDecl *>(NumBindings);
3504 auto *Result = new (C, ID, Extra)
3506 QualType(), nullptr, StorageClass(), {});
3507 // Set up and clean out the bindings array.
3508 Result->NumBindings = NumBindings;
3509 auto *Trail = Result->getTrailingObjects<BindingDecl *>();
3510 for (unsigned I = 0; I != NumBindings; ++I)
3511 new (Trail + I) BindingDecl*(nullptr);
3512 return Result;
3513}
3514
3515void DecompositionDecl::printName(llvm::raw_ostream &OS,
3516 const PrintingPolicy &Policy) const {
3517 OS << '[';
3518 bool Comma = false;
3519 for (const auto *B : bindings()) {
3520 if (Comma)
3521 OS << ", ";
3522 B->printName(OS, Policy);
3523 Comma = true;
3524 }
3525 OS << ']';
3526}
3527
3528void MSPropertyDecl::anchor() {}
3529
3532 QualType T, TypeSourceInfo *TInfo,
3533 SourceLocation StartL,
3534 IdentifierInfo *Getter,
3535 IdentifierInfo *Setter) {
3536 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
3537}
3538
3540 GlobalDeclID ID) {
3541 return new (C, ID) MSPropertyDecl(nullptr, SourceLocation(),
3542 DeclarationName(), QualType(), nullptr,
3543 SourceLocation(), nullptr, nullptr);
3544}
3545
3546void MSGuidDecl::anchor() {}
3547
3548MSGuidDecl::MSGuidDecl(DeclContext *DC, QualType T, Parts P)
3549 : ValueDecl(Decl::MSGuid, DC, SourceLocation(), DeclarationName(), T),
3550 PartVal(P) {}
3551
3552MSGuidDecl *MSGuidDecl::Create(const ASTContext &C, QualType T, Parts P) {
3553 DeclContext *DC = C.getTranslationUnitDecl();
3554 return new (C, DC) MSGuidDecl(DC, T, P);
3555}
3556
3557MSGuidDecl *MSGuidDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) {
3558 return new (C, ID) MSGuidDecl(nullptr, QualType(), Parts());
3559}
3560
3561void MSGuidDecl::printName(llvm::raw_ostream &OS,
3562 const PrintingPolicy &) const {
3563 OS << llvm::format("GUID{%08" PRIx32 "-%04" PRIx16 "-%04" PRIx16 "-",
3564 PartVal.Part1, PartVal.Part2, PartVal.Part3);
3565 unsigned I = 0;
3566 for (uint8_t Byte : PartVal.Part4And5) {
3567 OS << llvm::format("%02" PRIx8, Byte);
3568 if (++I == 2)
3569 OS << '-';
3570 }
3571 OS << '}';
3572}
3573
3574/// Determine if T is a valid 'struct _GUID' of the shape that we expect.
3576 // FIXME: We only need to check this once, not once each time we compute a
3577 // GUID APValue.
3578 using MatcherRef = llvm::function_ref<bool(QualType)>;
3579
3580 auto IsInt = [&Ctx](unsigned N) {
3581 return [&Ctx, N](QualType T) {
3583 Ctx.getIntWidth(T) == N;
3584 };
3585 };
3586
3587 auto IsArray = [&Ctx](MatcherRef Elem, unsigned N) {
3588 return [&Ctx, Elem, N](QualType T) {
3589 const ConstantArrayType *CAT = Ctx.getAsConstantArrayType(T);
3590 return CAT && CAT->getSize() == N && Elem(CAT->getElementType());
3591 };
3592 };
3593
3594 auto IsStruct = [](std::initializer_list<MatcherRef> Fields) {
3595 return [Fields](QualType T) {
3596 const RecordDecl *RD = T->getAsRecordDecl();
3597 if (!RD || RD->isUnion())
3598 return false;
3599 RD = RD->getDefinition();
3600 if (!RD)
3601 return false;
3602 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD))
3603 if (CXXRD->getNumBases())
3604 return false;
3605 auto MatcherIt = Fields.begin();
3606 for (const FieldDecl *FD : RD->fields()) {
3607 if (FD->isUnnamedBitField())
3608 continue;
3609 if (FD->isBitField() || MatcherIt == Fields.end() ||
3610 !(*MatcherIt)(FD->getType()))
3611 return false;
3612 ++MatcherIt;
3613 }
3614 return MatcherIt == Fields.end();
3615 };
3616 };
3617
3618 // We expect an {i32, i16, i16, [8 x i8]}.
3619 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T);
3620}
3621
3623 if (APVal.isAbsent() && isValidStructGUID(getASTContext(), getType())) {
3624 using llvm::APInt;
3625 using llvm::APSInt;
3626 APVal = APValue(APValue::UninitStruct(), 0, 4);
3627 APVal.getStructField(0) = APValue(APSInt(APInt(32, PartVal.Part1), true));
3628 APVal.getStructField(1) = APValue(APSInt(APInt(16, PartVal.Part2), true));
3629 APVal.getStructField(2) = APValue(APSInt(APInt(16, PartVal.Part3), true));
3630 APValue &Arr = APVal.getStructField(3) =
3632 for (unsigned I = 0; I != 8; ++I) {
3633 Arr.getArrayInitializedElt(I) =
3634 APValue(APSInt(APInt(8, PartVal.Part4And5[I]), true));
3635 }
3636 // Register this APValue to be destroyed if necessary. (Note that the
3637 // MSGuidDecl destructor is never run.)
3638 getASTContext().addDestruction(&APVal);
3639 }
3640
3641 return APVal;
3642}
3643
3644void UnnamedGlobalConstantDecl::anchor() {}
3645
3646UnnamedGlobalConstantDecl::UnnamedGlobalConstantDecl(const ASTContext &C,
3647 DeclContext *DC,
3648 QualType Ty,
3649 const APValue &Val)
3650 : ValueDecl(Decl::UnnamedGlobalConstant, DC, SourceLocation(),
3651 DeclarationName(), Ty),
3652 Value(Val) {
3653 // Cleanup the embedded APValue if required (note that our destructor is never
3654 // run)
3655 if (Value.needsCleanup())
3656 C.addDestruction(&Value);
3657}
3658
3660UnnamedGlobalConstantDecl::Create(const ASTContext &C, QualType T,
3661 const APValue &Value) {
3662 DeclContext *DC = C.getTranslationUnitDecl();
3663 return new (C, DC) UnnamedGlobalConstantDecl(C, DC, T, Value);
3664}
3665
3667UnnamedGlobalConstantDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) {
3668 return new (C, ID)
3670}
3671
3672void UnnamedGlobalConstantDecl::printName(llvm::raw_ostream &OS,
3673 const PrintingPolicy &) const {
3674 OS << "unnamed-global-constant";
3675}
3676
3677static const char *getAccessName(AccessSpecifier AS) {
3678 switch (AS) {
3679 case AS_none:
3680 llvm_unreachable("Invalid access specifier!");
3681 case AS_public:
3682 return "public";
3683 case AS_private:
3684 return "private";
3685 case AS_protected:
3686 return "protected";
3687 }
3688 llvm_unreachable("Invalid access specifier!");
3689}
3690
3692 AccessSpecifier AS) {
3693 return DB << getAccessName(AS);
3694}
Defines the clang::ASTContext interface.
ASTImporterLookupTable & LT
This file provides some common utility functions for processing Lambda related AST Constructs.
StringRef P
static char ID
Definition: Arena.cpp:183
Defines the Diagnostic-related interfaces.
const Decl * D
enum clang::sema::@1724::IndirectLocalPathEntry::EntryKind Kind
Expr * E
llvm::APSInt APSInt
Definition: Compiler.cpp:23
static void CollectVisibleConversions(ASTContext &Context, const CXXRecordDecl *Record, bool InVirtual, AccessSpecifier Access, const llvm::SmallPtrSet< CanQualType, 8 > &ParentHiddenTypes, ASTUnresolvedSet &Output, UnresolvedSetImpl &VOutput, llvm::SmallPtrSet< NamedDecl *, 8 > &HiddenVBaseCs)
Collect the visible conversions of a base class.
Definition: DeclCXX.cpp:1832
static const char * getAccessName(AccessSpecifier AS)
Definition: DeclCXX.cpp:3677
static bool recursivelyOverrides(const CXXMethodDecl *DerivedMD, const CXXMethodDecl *BaseMD)
Definition: DeclCXX.cpp:2329
static bool isValidStructGUID(ASTContext &Ctx, QualType T)
Determine if T is a valid 'struct _GUID' of the shape that we expect.
Definition: DeclCXX.cpp:3575
static DeclContext::lookup_result getLambdaStaticInvokers(const CXXRecordDecl &RD)
Definition: DeclCXX.cpp:1719
static NamedDecl * getLambdaCallOperatorHelper(const CXXRecordDecl &RD)
Definition: DeclCXX.cpp:1654
static QualType getThisObjectType(ASTContext &C, const FunctionProtoType *FPT, const CXXRecordDecl *Decl)
Definition: DeclCXX.cpp:2671
static bool hasPureVirtualFinalOverrider(const CXXRecordDecl &RD, const CXXFinalOverriderMap *FinalOverriders)
Definition: DeclCXX.cpp:2165
static bool allLookupResultsAreTheSame(const DeclContext::lookup_result &R)
Definition: DeclCXX.cpp:1647
static bool isDeclContextInNamespace(const DeclContext *DC)
Definition: DeclCXX.cpp:2101
static bool hasRepeatedBaseClass(const CXXRecordDecl *StartRD)
Determine whether a class has a repeated base class.
Definition: DeclCXX.cpp:176
static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv)
Definition: DeclCXX.cpp:1813
static CXXMethodDecl * getInvokerAsMethod(NamedDecl *ND)
Definition: DeclCXX.cpp:1726
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
#define X(type, name)
Definition: Value.h:144
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the LambdaCapture class.
Defines the clang::LangOptions interface.
llvm::MachO::Target Target
Definition: MachO.h:51
llvm::MachO::Record Record
Definition: MachO.h:31
This file contains the declaration of the ODRHash class, which calculates a hash based on AST nodes,...
Defines an enumeration for C++ overloaded operators.
uint32_t Id
Definition: SemaARM.cpp:1134
SourceLocation Loc
Definition: SemaObjC.cpp:759
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
Defines the clang::TypeLoc interface and its subclasses.
C Language Family Type Representation.
SourceLocation Begin
#define bool
Definition: amdgpuintrin.h:20
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
Definition: APValue.h:122
APValue & getArrayInitializedElt(unsigned I)
Definition: APValue.h:552
APValue & getStructField(unsigned i)
Definition: APValue.h:593
bool isAbsent() const
Definition: APValue.h:439
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:188
const ConstantArrayType * getAsConstantArrayType(QualType T) const
Definition: ASTContext.h:2915
unsigned getIntWidth(QualType T) const
QualType getTagDeclType(const TagDecl *Decl) const
Return the unique reference to the type for the specified TagDecl (struct/union/class/enum) decl.
DeclarationNameTable DeclarationNames
Definition: ASTContext.h:684
QualType getRecordType(const RecordDecl *Decl) const
CanQualType getCanonicalType(QualType T) const
Return the canonical (structural) type corresponding to the specified potentially non-canonical type ...
Definition: ASTContext.h:2716
overridden_method_range overridden_methods(const CXXMethodDecl *Method) const
QualType getTypeDeclType(const TypeDecl *Decl, const TypeDecl *PrevDecl=nullptr) const
Return the unique reference to the type for the specified type declaration.
Definition: ASTContext.h:1703
IdentifierTable & Idents
Definition: ASTContext.h:680
const LangOptions & getLangOpts() const
Definition: ASTContext.h:834
QualType getBaseElementType(const ArrayType *VAT) const
Return the innermost element type of an array type.
overridden_cxx_method_iterator overridden_methods_end(const CXXMethodDecl *Method) const
llvm::BumpPtrAllocator & getAllocator() const
Definition: ASTContext.h:750
void addOverriddenMethod(const CXXMethodDecl *Method, const CXXMethodDecl *Overridden)
Note that the given C++ Method overrides the given Overridden method.
CanQualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
bool hasSameUnqualifiedType(QualType T1, QualType T2) const
Determine whether the given types are equivalent after cvr-qualifiers have been removed.
Definition: ASTContext.h:2763
void * Allocate(size_t Size, unsigned Align=8) const
Definition: ASTContext.h:754
unsigned overridden_methods_size(const CXXMethodDecl *Method) const
overridden_cxx_method_iterator overridden_methods_begin(const CXXMethodDecl *Method) const
DiagnosticsEngine & getDiagnostics() const
const TargetInfo & getTargetInfo() const
Definition: ASTContext.h:799
void addDestruction(T *Ptr) const
If T isn't trivially destructible, calls AddDeallocation to register it for destruction.
Definition: ASTContext.h:3261
ExternalASTSource * getExternalSource() const
Retrieve a pointer to the external AST source associated with this AST context, if any.
Definition: ASTContext.h:1274
An abstract interface that should be implemented by listeners that want to be notified when an AST en...
An UnresolvedSet-like class which uses the ASTContext's allocator.
void append(ASTContext &C, iterator I, iterator E)
bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS)
Replaces the given declaration with the new one, once.
void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS)
void erase(unsigned I)
Represents an access specifier followed by colon ':'.
Definition: DeclCXX.h:86
static AccessSpecDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:60
QualType getElementType() const
Definition: Type.h:3589
Represents a C++ declaration that introduces decls from somewhere else.
Definition: DeclCXX.h:3440
void addShadowDecl(UsingShadowDecl *S)
Definition: DeclCXX.cpp:3272
shadow_range shadows() const
Definition: DeclCXX.h:3506
void removeShadowDecl(UsingShadowDecl *S)
Definition: DeclCXX.cpp:3281
A binding in a decomposition declaration.
Definition: DeclCXX.h:4130
VarDecl * getHoldingVar() const
Get the variable (if any) that holds the value of evaluating the binding.
Definition: DeclCXX.cpp:3474
Expr * getBinding() const
Get the expression to which this declaration is bound.
Definition: DeclCXX.h:4154
static BindingDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3470
static BindingDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id)
Definition: DeclCXX.cpp:3465
Represents a base class of a C++ class.
Definition: DeclCXX.h:146
Represents a C++ constructor within a class.
Definition: DeclCXX.h:2553
bool isExplicit() const
Return true if the declaration is already resolved to be explicit.
Definition: DeclCXX.h:2632
init_iterator init_begin()
Retrieve an iterator to the first initializer.
Definition: DeclCXX.h:2649
CXXConstructorDecl * getTargetConstructor() const
When this constructor delegates to another, retrieve the target.
Definition: DeclCXX.cpp:2875
static CXXConstructorDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, uint64_t AllocKind)
Definition: DeclCXX.cpp:2834
bool isDefaultConstructor() const
Whether this constructor is a default constructor (C++ [class.ctor]p5), which can be used to default-...
Definition: DeclCXX.cpp:2884
bool isDelegatingConstructor() const
Determine whether this constructor is a delegating constructor.
Definition: DeclCXX.h:2705
bool isSpecializationCopyingObject() const
Determine whether this is a member template specialization that would copy the object to itself.
Definition: DeclCXX.cpp:2961
bool isMoveConstructor() const
Determine whether this constructor is a move constructor (C++11 [class.copy]p3), which can be used to...
Definition: DeclCXX.h:2750
bool isCopyOrMoveConstructor() const
Determine whether this a copy or move constructor.
Definition: DeclCXX.h:2762
static CXXConstructorDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, ExplicitSpecifier ES, bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, InheritedConstructor Inherited=InheritedConstructor(), Expr *TrailingRequiresClause=nullptr)
Definition: DeclCXX.cpp:2854
bool isInheritingConstructor() const
Determine whether this is an implicit constructor synthesized to model a call to a constructor inheri...
Definition: DeclCXX.h:2779
CXXCtorInitializer *const * init_const_iterator
Iterates through the member/base initializer list.
Definition: DeclCXX.h:2638
bool isConvertingConstructor(bool AllowExplicit) const
Whether this constructor is a converting constructor (C++ [class.conv.ctor]), which can be used for u...
Definition: DeclCXX.cpp:2943
bool isCopyConstructor() const
Whether this constructor is a copy constructor (C++ [class.copy]p2, which can be used to copy the cla...
Definition: DeclCXX.h:2736
Represents a C++ conversion function within a class.
Definition: DeclCXX.h:2885
bool isLambdaToBlockPointerConversion() const
Determine whether this conversion function is a conversion from a lambda closure type to a block poin...
Definition: DeclCXX.cpp:3057
static CXXConversionDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool UsesFPIntrin, bool isInline, ExplicitSpecifier ES, ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, Expr *TrailingRequiresClause=nullptr)
Definition: DeclCXX.cpp:3043
QualType getConversionType() const
Returns the type that this conversion function is converting to.
Definition: DeclCXX.h:2925
static CXXConversionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3035
Represents a C++ base or member initializer.
Definition: DeclCXX.h:2318
SourceLocation getRParenLoc() const
Definition: DeclCXX.h:2517
SourceRange getSourceRange() const LLVM_READONLY
Determine the source range covering the entire initializer.
Definition: DeclCXX.cpp:2803
SourceLocation getSourceLocation() const
Determine the source location of the initializer.
Definition: DeclCXX.cpp:2790
bool isAnyMemberInitializer() const
Definition: DeclCXX.h:2398
bool isBaseInitializer() const
Determine whether this initializer is initializing a base class.
Definition: DeclCXX.h:2390
int64_t getID(const ASTContext &Context) const
Definition: DeclCXX.cpp:2771
bool isInClassMemberInitializer() const
Determine whether this initializer is an implicit initializer generated for a field with an initializ...
Definition: DeclCXX.h:2412
const Type * getBaseClass() const
If this is a base class initializer, returns the type of the base class.
Definition: DeclCXX.cpp:2783
SourceLocation getMemberLocation() const
Definition: DeclCXX.h:2478
FieldDecl * getAnyMember() const
Definition: DeclCXX.h:2464
TypeLoc getBaseClassLoc() const
If this is a base class initializer, returns the type of the base class with location information.
Definition: DeclCXX.cpp:2776
CXXCtorInitializer(ASTContext &Context, TypeSourceInfo *TInfo, bool IsVirtual, SourceLocation L, Expr *Init, SourceLocation R, SourceLocation EllipsisLoc)
Creates a new base-class initializer.
Definition: DeclCXX.cpp:2738
Represents a C++ deduction guide declaration.
Definition: DeclCXX.h:1967
static CXXDeductionGuideDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:2300
static CXXDeductionGuideDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, ExplicitSpecifier ES, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, SourceLocation EndLocation, CXXConstructorDecl *Ctor=nullptr, DeductionCandidate Kind=DeductionCandidate::Normal, Expr *TrailingRequiresClause=nullptr)
Definition: DeclCXX.cpp:2289
Represents a C++ destructor within a class.
Definition: DeclCXX.h:2817
static CXXDestructorDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, bool UsesFPIntrin, bool isInline, bool isImplicitlyDeclared, ConstexprSpecKind ConstexprKind, Expr *TrailingRequiresClause=nullptr)
Definition: DeclCXX.cpp:2988
static CXXDestructorDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:2981
void setOperatorDelete(FunctionDecl *OD, Expr *ThisArg)
Definition: DeclCXX.cpp:3001
bool isCalledByDelete(const FunctionDecl *OpDel=nullptr) const
Will this destructor ever be called when considering which deallocation function is associated with t...
Definition: DeclCXX.cpp:3011
A mapping from each virtual member function to its set of final overriders.
Represents a static or instance method of a struct/union/class.
Definition: DeclCXX.h:2078
bool isExplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An explicit object member function is a non-static member function with an explic...
Definition: DeclCXX.cpp:2588
CXXMethodDecl * getCorrespondingMethodDeclaredInClass(const CXXRecordDecl *RD, bool MayBeBase=false)
Find if RD declares a function that overrides this function, and if so, return it.
Definition: DeclCXX.cpp:2341
bool isImplicitObjectMemberFunction() const
[C++2b][dcl.fct]/p7 An implicit object member function is a non-static member function without an exp...
Definition: DeclCXX.cpp:2595
void addOverriddenMethod(const CXXMethodDecl *MD)
Definition: DeclCXX.cpp:2642
bool hasInlineBody() const
Definition: DeclCXX.cpp:2720
bool isVirtual() const
Definition: DeclCXX.h:2133
bool isUsualDeallocationFunction(SmallVectorImpl< const FunctionDecl * > &PreventedBy) const
Determine whether this is a usual deallocation function (C++ [basic.stc.dynamic.deallocation]p2),...
Definition: DeclCXX.cpp:2511
unsigned getNumExplicitParams() const
Definition: DeclCXX.h:2232
overridden_method_range overridden_methods() const
Definition: DeclCXX.cpp:2665
unsigned size_overridden_methods() const
Definition: DeclCXX.cpp:2659
const CXXMethodDecl *const * method_iterator
Definition: DeclCXX.h:2191
QualType getFunctionObjectParameterReferenceType() const
Return the type of the object pointed by this.
Definition: DeclCXX.cpp:2707
method_iterator begin_overridden_methods() const
Definition: DeclCXX.cpp:2649
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
Definition: DeclCXX.h:2204
QualType getThisType() const
Return the type of the this pointer.
Definition: DeclCXX.cpp:2696
bool isInstance() const
Definition: DeclCXX.h:2105
bool isMoveAssignmentOperator() const
Determine whether this is a move assignment operator.
Definition: DeclCXX.cpp:2621
static CXXMethodDecl * Create(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc, const DeclarationNameInfo &NameInfo, QualType T, TypeSourceInfo *TInfo, StorageClass SC, bool UsesFPIntrin, bool isInline, ConstexprSpecKind ConstexprKind, SourceLocation EndLocation, Expr *TrailingRequiresClause=nullptr)
Definition: DeclCXX.cpp:2407
CXXMethodDecl * getDevirtualizedMethod(const Expr *Base, bool IsAppleKext)
If it's possible to devirtualize a call to this method, return the called function.
Definition: DeclCXX.cpp:2426
static bool isStaticOverloadedOperator(OverloadedOperatorKind OOK)
Returns true if the given operator is implicitly static in a record context.
Definition: DeclCXX.h:2120
CXXMethodDecl * getCorrespondingMethodInClass(const CXXRecordDecl *RD, bool MayBeBase=false)
Find the method in RD that corresponds to this one.
Definition: DeclCXX.cpp:2372
llvm::iterator_range< llvm::TinyPtrVector< const CXXMethodDecl * >::const_iterator > overridden_method_range
Definition: DeclCXX.h:2198
bool isStatic() const
Definition: DeclCXX.cpp:2319
bool isCopyAssignmentOperator() const
Determine whether this is a copy-assignment operator, regardless of whether it was declared implicitl...
Definition: DeclCXX.cpp:2599
static CXXMethodDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:2418
method_iterator end_overridden_methods() const
Definition: DeclCXX.cpp:2654
CXXMethodDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition: DeclCXX.h:2174
bool isLambdaStaticInvoker() const
Determine whether this is a lambda closure type's static member function that is used for the result ...
Definition: DeclCXX.cpp:2732
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
Decl * getLambdaContextDecl() const
Retrieve the declaration that provides additional context for a lambda, when the normal declaration c...
Definition: DeclCXX.cpp:1791
bool mayBeAbstract() const
Determine whether this class may end up being abstract, even though it is not yet known to be abstrac...
Definition: DeclCXX.cpp:2232
bool isTriviallyCopyable() const
Determine whether this class is considered trivially copyable per (C++11 [class]p6).
Definition: DeclCXX.cpp:619
bool hasNonTrivialCopyAssignment() const
Determine whether this class has a non-trivial copy assignment operator (C++ [class....
Definition: DeclCXX.h:1346
TemplateParameterList * getGenericLambdaTemplateParameterList() const
Retrieve the generic lambda's template parameter list.
Definition: DeclCXX.cpp:1768
bool isEffectivelyFinal() const
Determine whether it's impossible for a class to be derived from this class.
Definition: DeclCXX.cpp:2247
bool hasSimpleMoveConstructor() const
true if we know for sure that this class has a single, accessible, unambiguous move constructor that ...
Definition: DeclCXX.h:742
bool isAggregate() const
Determine whether this class is an aggregate (C++ [dcl.init.aggr]), which is a class with no user-dec...
Definition: DeclCXX.h:1155
bool hasTrivialDefaultConstructor() const
Determine whether this class has a trivial default constructor (C++11 [class.ctor]p5).
Definition: DeclCXX.h:1252
void setBases(CXXBaseSpecifier const *const *Bases, unsigned NumBases)
Sets the base classes of this struct or class.
Definition: DeclCXX.cpp:195
bool isGenericLambda() const
Determine whether this class describes a generic lambda function object (i.e.
Definition: DeclCXX.cpp:1641
base_class_iterator bases_end()
Definition: DeclCXX.h:629
bool hasTrivialDestructor() const
Determine whether this class has a trivial destructor (C++ [class.dtor]p3)
Definition: DeclCXX.h:1378
bool hasUserDeclaredDestructor() const
Determine whether this class has a user-declared destructor.
Definition: DeclCXX.h:1013
CXXRecordDecl * getInstantiatedFromMemberClass() const
If this record is an instantiation of a member class, retrieves the member class from which it was in...
Definition: DeclCXX.cpp:1982
void completeDefinition() override
Indicates that the definition of this class is now complete.
Definition: DeclCXX.cpp:2161
bool isLiteral() const
Determine whether this class is a literal type.
Definition: DeclCXX.cpp:1467
bool defaultedDestructorIsConstexpr() const
Determine whether a defaulted default constructor for this class would be constexpr.
Definition: DeclCXX.h:1368
bool isStandardLayout() const
Determine whether this class is standard-layout per C++ [class]p7.
Definition: DeclCXX.h:1237
void setCaptures(ASTContext &Context, ArrayRef< LambdaCapture > Captures)
Set the captures for this lambda closure type.
Definition: DeclCXX.cpp:1591
unsigned getDeviceLambdaManglingNumber() const
Retrieve the device side mangling number.
Definition: DeclCXX.cpp:1808
base_class_range bases()
Definition: DeclCXX.h:620
bool hasAnyDependentBases() const
Determine whether this class has any dependent base classes which are not the current instantiation.
Definition: DeclCXX.cpp:612
void setTrivialForCallFlags(CXXMethodDecl *MD)
Definition: DeclCXX.cpp:1613
bool isLambda() const
Determine whether this class describes a lambda function object.
Definition: DeclCXX.h:1030
void addedSelectedDestructor(CXXDestructorDecl *DD)
Notify the class that this destructor is now selected.
Definition: DeclCXX.cpp:1492
bool hasFriends() const
Determines whether this record has any friends.
Definition: DeclCXX.h:703
method_range methods() const
Definition: DeclCXX.h:662
CXXRecordDecl * getDefinition() const
Definition: DeclCXX.h:565
static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, AccessSpecifier DeclAccess)
Calculates the access of a decl that is reached along a path.
Definition: DeclCXX.h:1738
void getCaptureFields(llvm::DenseMap< const ValueDecl *, FieldDecl * > &Captures, FieldDecl *&ThisCapture) const
For a closure type, retrieve the mapping from captured variables and this to the non-static data memb...
Definition: DeclCXX.cpp:1747
bool hasConstexprNonCopyMoveConstructor() const
Determine whether this class has at least one constexpr constructor other than the copy or move const...
Definition: DeclCXX.h:1267
static CXXRecordDecl * CreateLambda(const ASTContext &C, DeclContext *DC, TypeSourceInfo *Info, SourceLocation Loc, unsigned DependencyKind, bool IsGeneric, LambdaCaptureDefault CaptureDefault)
Definition: DeclCXX.cpp:148
llvm::iterator_range< conversion_iterator > getVisibleConversionFunctions() const
Get all conversion functions visible in current class, including conversion function templates.
Definition: DeclCXX.cpp:1939
bool hasConstexprDestructor() const
Determine whether this class has a constexpr destructor.
Definition: DeclCXX.cpp:607
unsigned getNumBases() const
Retrieves the number of base classes of this class.
Definition: DeclCXX.h:614
bool hasNonLiteralTypeFieldsOrBases() const
Determine whether this class has a non-literal or/ volatile type non-static data member or base class...
Definition: DeclCXX.h:1420
static CXXRecordDecl * Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl=nullptr, bool DelayTypeCreation=false)
Definition: DeclCXX.cpp:132
bool isTriviallyCopyConstructible() const
Determine whether this class is considered trivially copyable per.
Definition: DeclCXX.cpp:636
bool isCapturelessLambda() const
Definition: DeclCXX.h:1076
const CXXRecordDecl * getTemplateInstantiationPattern() const
Retrieve the record declaration from which this record could be instantiated.
Definition: DeclCXX.cpp:2036
bool lambdaIsDefaultConstructibleAndAssignable() const
Determine whether this lambda should have an implicit default constructor and copy and move assignmen...
Definition: DeclCXX.cpp:738
TemplateSpecializationKind getTemplateSpecializationKind() const
Determine whether this particular class is a specialization or instantiation of a class template or m...
Definition: DeclCXX.cpp:2011
base_class_iterator bases_begin()
Definition: DeclCXX.h:627
FunctionTemplateDecl * getDependentLambdaCallOperator() const
Retrieve the dependent lambda call operator of the closure type if this is a templated closure type.
Definition: DeclCXX.cpp:1695
void addedEligibleSpecialMemberFunction(const CXXMethodDecl *MD, unsigned SMKind)
Notify the class that an eligible SMF has been added.
Definition: DeclCXX.cpp:1497
conversion_iterator conversion_end() const
Definition: DeclCXX.h:1137
void finishedDefaultedOrDeletedMember(CXXMethodDecl *MD)
Indicates that the declaration of a defaulted or deleted special member function is now complete.
Definition: DeclCXX.cpp:1544
CXXRecordDecl(Kind K, TagKind TK, const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
Definition: DeclCXX.cpp:124
bool isCLike() const
True if this class is C-like, without C++-specific features, e.g.
Definition: DeclCXX.cpp:1630
void setInstantiationOfMemberClass(CXXRecordDecl *RD, TemplateSpecializationKind TSK)
Specify that this record is an instantiation of the member class RD.
Definition: DeclCXX.cpp:1994
static CXXRecordDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:164
bool hasSimpleMoveAssignment() const
true if we know for sure that this class has a single, accessible, unambiguous move assignment operat...
Definition: DeclCXX.h:756
bool hasNonTrivialMoveConstructor() const
Determine whether this class has a non-trivial move constructor (C++11 [class.copy]p12)
Definition: DeclCXX.h:1325
bool hasUserDeclaredConstructor() const
Determine whether this class has any user-declared constructors.
Definition: DeclCXX.h:792
unsigned getODRHash() const
Definition: DeclCXX.cpp:502
bool hasDefinition() const
Definition: DeclCXX.h:572
ArrayRef< NamedDecl * > getLambdaExplicitTemplateParameters() const
Retrieve the lambda template parameters that were specified explicitly.
Definition: DeclCXX.cpp:1777
ClassTemplateDecl * getDescribedClassTemplate() const
Retrieves the class template that is described by this class declaration.
Definition: DeclCXX.cpp:2003
bool isPOD() const
Whether this class is a POD-type (C++ [class]p4)
Definition: DeclCXX.h:1183
void getFinalOverriders(CXXFinalOverriderMap &FinaOverriders) const
Retrieve the final overriders for each virtual member function in the class hierarchy where this clas...
void removeConversion(const NamedDecl *Old)
Removes a conversion function from this class.
Definition: DeclCXX.cpp:1957
bool hasSimpleCopyConstructor() const
true if we know for sure that this class has a single, accessible, unambiguous copy constructor that ...
Definition: DeclCXX.h:735
CXXDestructorDecl * getDestructor() const
Returns the destructor decl for this class.
Definition: DeclCXX.cpp:2081
bool hasNonTrivialMoveAssignment() const
Determine whether this class has a non-trivial move assignment operator (C++11 [class....
Definition: DeclCXX.h:1360
CXXMethodDecl * getLambdaStaticInvoker() const
Retrieve the lambda static invoker, the address of which is returned by the conversion operator,...
Definition: DeclCXX.cpp:1712
bool hasSimpleDestructor() const
true if we know for sure that this class has an accessible destructor that is not deleted.
Definition: DeclCXX.h:763
void setDescribedClassTemplate(ClassTemplateDecl *Template)
Definition: DeclCXX.cpp:2007
bool isInterfaceLike() const
Definition: DeclCXX.cpp:2110
void setLambdaNumbering(LambdaNumbering Numbering)
Set the mangling numbers and context declaration for a lambda class.
Definition: DeclCXX.cpp:1797
bool forallBases(ForallBasesCallback BaseMatches) const
Determines if the given callback holds for all the direct or indirect base classes of this type.
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this class is an instantiation of a member class of a class template specialization,...
Definition: DeclCXX.cpp:1989
bool hasNonTrivialCopyConstructor() const
Determine whether this class has a non-trivial copy constructor (C++ [class.copy]p6,...
Definition: DeclCXX.h:1300
CXXMethodDecl * getLambdaCallOperator() const
Retrieve the lambda call operator of the closure type if this is a closure type.
Definition: DeclCXX.cpp:1700
const CXXRecordDecl * getStandardLayoutBaseWithFields() const
If this is a standard-layout class or union, any and all data members will be declared in the same ty...
Definition: DeclCXX.cpp:571
bool hasSimpleCopyAssignment() const
true if we know for sure that this class has a single, accessible, unambiguous copy assignment operat...
Definition: DeclCXX.h:749
CXXRecordDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition: DeclCXX.h:524
void setTemplateSpecializationKind(TemplateSpecializationKind TSK)
Set the kind of specialization or template instantiation this is.
Definition: DeclCXX.cpp:2022
unsigned getNumVBases() const
Retrieves the number of virtual base classes of this class.
Definition: DeclCXX.h:635
conversion_iterator conversion_begin() const
Definition: DeclCXX.h:1133
unsigned getCVRQualifiers() const
Retrieve the const/volatile/restrict qualifiers.
CanQual< T > getUnqualifiedType() const
Retrieve the unqualified form of this type.
Declaration of a class template.
Represents the canonical version of C arrays with a specified constant size.
Definition: Type.h:3615
llvm::APInt getSize() const
Return the constant array size as an APInt.
Definition: Type.h:3671
Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that...
Definition: DeclCXX.h:3621
static ConstructorUsingShadowDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3262
UsingDecl * getIntroducer() const
Override the UsingShadowDecl's getIntroducer, returning the UsingDecl that introduced this.
Definition: DeclCXX.h:3678
static ConstructorUsingShadowDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target, bool IsVirtual)
Definition: DeclCXX.cpp:3254
CXXRecordDecl * getNominatedBaseClass() const
Get the base class that was named in the using declaration.
Definition: DeclCXX.cpp:3266
The results of name lookup within a DeclContext.
Definition: DeclBase.h:1368
reference front() const
Definition: DeclBase.h:1391
specific_decl_iterator - Iterates over a subrange of declarations stored in a DeclContext,...
Definition: DeclBase.h:2380
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition: DeclBase.h:1435
DeclContext * getParent()
getParent - Returns the containing DeclContext.
Definition: DeclBase.h:2100
ASTContext & getParentASTContext() const
Definition: DeclBase.h:2129
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
Definition: DeclBase.cpp:1334
bool isNamespace() const
Definition: DeclBase.h:2189
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
Definition: DeclBase.cpp:1854
bool isTranslationUnit() const
Definition: DeclBase.h:2176
bool isFunctionOrMethod() const
Definition: DeclBase.h:2152
bool isExternCContext() const
Determines whether this context or some of its ancestors is a linkage specification context that spec...
Definition: DeclBase.cpp:1385
LinkageSpecDeclBitfields LinkageSpecDeclBits
Definition: DeclBase.h:2039
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
Decl * getPreviousDecl()
Retrieve the previous declaration that declares the same entity as this declaration,...
Definition: DeclBase.h:1050
SourceLocation getEndLoc() const LLVM_READONLY
Definition: DeclBase.h:438
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
Definition: DeclBase.h:1215
ASTContext & getASTContext() const LLVM_READONLY
Definition: DeclBase.cpp:520
bool isImplicit() const
isImplicit - Indicates whether the declaration was implicitly generated by the implementation.
Definition: DeclBase.h:596
ASTMutationListener * getASTMutationListener() const
Definition: DeclBase.cpp:530
Kind
Lists the kind of concrete classes of Decl.
Definition: DeclBase.h:89
bool isCanonicalDecl() const
Whether this particular Decl is a canonical one.
Definition: DeclBase.h:973
Module * getOwningModule() const
Get the module that owns this declaration (for visibility purposes).
Definition: DeclBase.h:835
FunctionDecl * getAsFunction() LLVM_READONLY
Returns the function itself, or the templated function if this is a function template.
Definition: DeclBase.cpp:246
bool isInvalidDecl() const
Definition: DeclBase.h:591
SourceLocation getLocation() const
Definition: DeclBase.h:442
void setImplicit(bool I=true)
Definition: DeclBase.h:597
redecl_range redecls() const
Returns an iterator range for all the redeclarations of the same decl.
Definition: DeclBase.h:1038
DeclContext * getDeclContext()
Definition: DeclBase.h:451
AccessSpecifier getAccess() const
Definition: DeclBase.h:510
bool hasAttr() const
Definition: DeclBase.h:580
const LangOptions & getLangOpts() const LLVM_READONLY
Helper to get the language options from the ASTContext.
Definition: DeclBase.cpp:526
DeclarationName getCXXDestructorName(CanQualType Ty)
Returns the name of a C++ destructor for the given Type.
DeclarationName getCXXOperatorName(OverloadedOperatorKind Op)
Get the name of the overloadable C++ operator corresponding to Op.
The name of a declaration.
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
OverloadedOperatorKind getCXXOverloadedOperator() const
If this name is the name of an overloadable operator in C++ (e.g., operator+), retrieve the kind of o...
NameKind getNameKind() const
Determine what kind of name this is.
bool isIdentifier() const
Predicate functions for querying what type of name this is.
A decomposition declaration.
Definition: DeclCXX.h:4189
void printName(raw_ostream &OS, const PrintingPolicy &Policy) const override
Pretty-print the unqualified name of this declaration.
Definition: DeclCXX.cpp:3515
ArrayRef< BindingDecl * > bindings() const
Definition: DeclCXX.h:4221
static DecompositionDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation LSquareLoc, QualType T, TypeSourceInfo *TInfo, StorageClass S, ArrayRef< BindingDecl * > Bindings)
Definition: DeclCXX.cpp:3489
static DecompositionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumBindings)
Definition: DeclCXX.cpp:3500
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
Definition: Diagnostic.h:1493
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of enums.
Definition: Type.h:6103
Store information needed for an explicit specifier.
Definition: DeclCXX.h:1912
ExplicitSpecKind getKind() const
Definition: DeclCXX.h:1920
const Expr * getExpr() const
Definition: DeclCXX.h:1921
static ExplicitSpecifier getFromDecl(FunctionDecl *Function)
Definition: DeclCXX.cpp:2276
bool isEquivalent(const ExplicitSpecifier Other) const
Check for equivalence of explicit specifiers.
Definition: DeclCXX.cpp:2261
This represents one expression.
Definition: Expr.h:110
Expr * IgnoreImplicit() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
Definition: Expr.cpp:3085
Abstract interface for external sources of AST nodes.
virtual Decl * GetExternalDecl(GlobalDeclID ID)
Resolve a declaration ID into a declaration, potentially building a new declaration.
Represents a member of a struct/union/class.
Definition: Decl.h:3033
Represents a function declaration or definition.
Definition: Decl.h:1935
const ParmVarDecl * getParamDecl(unsigned i) const
Definition: Decl.h:2672
bool isTrivialForCall() const
Definition: Decl.h:2308
unsigned getMinRequiredArguments() const
Returns the minimum number of arguments needed to call this function.
Definition: Decl.cpp:3723
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
Definition: Decl.cpp:4052
bool isDestroyingOperatorDelete() const
Determine whether this is a destroying operator delete.
Definition: Decl.cpp:3480
bool hasCXXExplicitFunctionObjectParameter() const
Definition: Decl.cpp:3741
bool UsesFPIntrin() const
Determine whether the function was declared in source context that requires constrained FP intrinsics...
Definition: Decl.h:2784
ArrayRef< ParmVarDecl * > parameters() const
Definition: Decl.h:2649
FunctionDecl * getTemplateInstantiationPattern(bool ForDefinition=true) const
Retrieve the function declaration from which this function could be instantiated, if it is an instant...
Definition: Decl.cpp:4123
bool isTrivial() const
Whether this function is "trivial" in some specialized C++ senses.
Definition: Decl.h:2305
FunctionTemplateDecl * getPrimaryTemplate() const
Retrieve the primary template that this function template specialization either specializes or was in...
Definition: Decl.cpp:4172
const ParmVarDecl * getNonObjectParameter(unsigned I) const
Definition: Decl.h:2698
bool isVariadic() const
Whether this function is variadic.
Definition: Decl.cpp:3096
bool doesThisDeclarationHaveABody() const
Returns whether this specific declaration of the function has a body.
Definition: Decl.h:2261
StorageClass getStorageClass() const
Returns the storage class as written in the source.
Definition: Decl.h:2763
bool isOutOfLine() const override
Determine whether this is or was instantiated from an out-of-line definition of a member function.
Definition: Decl.cpp:4382
bool isPureVirtual() const
Whether this virtual function is pure, i.e.
Definition: Decl.h:2288
void setIneligibleOrNotSelected(bool II)
Definition: Decl.h:2349
OverloadedOperatorKind getOverloadedOperator() const
getOverloadedOperator - Which C++ overloaded operator this function represents, if any.
Definition: Decl.cpp:3989
bool isUserProvided() const
True if this method is user-declared and was not deleted or defaulted on its first declaration.
Definition: Decl.h:2338
bool hasOneParamOrDefaultArgs() const
Determine whether this function has a single parameter, or multiple parameters where all but the firs...
Definition: Decl.cpp:3755
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
Definition: Decl.cpp:3702
bool isDefined(const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const
Returns true if the function has a definition that does not need to be instantiated.
Definition: Decl.cpp:3210
bool willHaveBody() const
True if this function will eventually have a body, once it's fully parsed.
Definition: Decl.h:2561
Represents a prototype with parameter type info, e.g.
Definition: Type.h:5107
Qualifiers getMethodQuals() const
Definition: Type.h:5502
RefQualifierKind getRefQualifier() const
Retrieve the ref-qualifier associated with this function type.
Definition: Type.h:5510
Declaration of a template function.
Definition: DeclTemplate.h:959
FunctionType - C99 6.7.5.3 - Function Declarators.
Definition: Type.h:4321
One of these records is kept for each identifier that is lexed.
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
Represents a field injected from an anonymous union/struct into the parent scope.
Definition: Decl.h:3335
Description of a constructor that was inherited from a base class.
Definition: DeclCXX.h:2524
An lvalue reference type, per C++11 [dcl.ref].
Definition: Type.h:3483
Describes the capture of a variable or of this, or of a C++1y init-capture.
Definition: LambdaCapture.h:25
@ Ver6
Attempt to be ABI-compatible with code generated by Clang 6.0.x (SVN r321711).
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:499
APValue * getOrCreateValue(bool MayCreate) const
Get the storage for the constant value of a materialized temporary of static storage duration.
Definition: DeclCXX.cpp:3209
StorageDuration getStorageDuration() const
Retrieve the storage duration for the materialized temporary.
Definition: DeclCXX.cpp:3193
Represents a linkage specification.
Definition: DeclCXX.h:2957
static LinkageSpecDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation ExternLoc, SourceLocation LangLoc, LinkageSpecLanguageIDs Lang, bool HasBraces)
Definition: DeclCXX.cpp:3073
static LinkageSpecDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3081
A global _GUID constant.
Definition: DeclCXX.h:4312
APValue & getAsAPValue() const
Get the value of this MSGuidDecl as an APValue.
Definition: DeclCXX.cpp:3622
MSGuidDeclParts Parts
Definition: DeclCXX.h:4314
void printName(llvm::raw_ostream &OS, const PrintingPolicy &Policy) const override
Print this UUID in a human-readable format.
Definition: DeclCXX.cpp:3561
An instance of this class represents the declaration of a property member.
Definition: DeclCXX.h:4258
static MSPropertyDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter)
Definition: DeclCXX.cpp:3530
static MSPropertyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3539
A pointer to member type per C++ 8.3.3 - Pointers to members.
Definition: Type.h:3519
Provides information a specialization of a member of a class template, which may be a member function...
Definition: DeclTemplate.h:620
Describes a module or submodule.
Definition: Module.h:115
This represents a decl that may have a name.
Definition: Decl.h:253
NamedDecl * getUnderlyingDecl()
Looks through UsingDecls and ObjCCompatibleAliasDecls for the underlying named decl.
Definition: Decl.h:466
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
Definition: Decl.h:280
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Definition: Decl.h:319
NamedDecl * getMostRecentDecl()
Definition: Decl.h:480
Represents a C++ namespace alias.
Definition: DeclCXX.h:3143
static NamespaceAliasDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3182
static NamespaceAliasDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace)
Definition: DeclCXX.cpp:3168
Represent a C++ namespace.
Definition: Decl.h:551
static NamespaceDecl * Create(ASTContext &C, DeclContext *DC, bool Inline, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, NamespaceDecl *PrevDecl, bool Nested)
Definition: DeclCXX.cpp:3128
static NamespaceDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3136
A C++ nested-name-specifier augmented with source location information.
SourceLocation getBeginLoc() const
Retrieve the location of the beginning of this nested-name-specifier.
CXXRecordDecl * getAsRecordDecl() const
Retrieve the record declaration stored in this nested name specifier.
void AddStmt(const Stmt *S)
Definition: ODRHash.cpp:23
void AddCXXRecordDecl(const CXXRecordDecl *Record)
Definition: ODRHash.cpp:570
unsigned CalculateHash()
Definition: ODRHash.cpp:226
Represents a parameter to a function.
Definition: Decl.h:1725
A (possibly-)qualified type.
Definition: Type.h:929
void addRestrict()
Add the restrict qualifier to this QualType.
Definition: Type.h:1167
void removeLocalRestrict()
Definition: Type.h:8048
@ OCL_Strong
Assigning into this object requires the old value to be released and the new value to be retained.
Definition: Type.h:354
@ OCL_Weak
Reading or writing from this object requires a barrier call.
Definition: Type.h:357
bool hasRestrict() const
Definition: Type.h:470
Represents a struct/union/class.
Definition: Decl.h:4162
void setArgPassingRestrictions(RecordArgPassingKind Kind)
Definition: Decl.h:4308
field_iterator field_end() const
Definition: Decl.h:4379
field_range fields() const
Definition: Decl.h:4376
void setHasObjectMember(bool val)
Definition: Decl.h:4223
void setHasVolatileMember(bool val)
Definition: Decl.h:4227
virtual void completeDefinition()
Note that the definition of this type is now complete.
Definition: Decl.cpp:5107
RecordDecl * getDefinition() const
Returns the RecordDecl that actually defines this struct/union/class.
Definition: Decl.h:4361
bool hasUninitializedExplicitInitFields() const
Definition: Decl.h:4288
void setHasUninitializedExplicitInitFields(bool V)
Definition: Decl.h:4292
bool field_empty() const
Definition: Decl.h:4384
field_iterator field_begin() const
Definition: Decl.cpp:5095
A helper class that allows the use of isa/cast/dyncast to detect TagType objects of structs/unions/cl...
Definition: Type.h:6077
RecordDecl * getDecl() const
Definition: Type.h:6087
FunctionDecl * getFirstDecl()
Return the first declaration of this declaration or itself if this is the only declaration.
Definition: Redeclarable.h:215
NamespaceDecl * getNextRedeclaration() const
Definition: Redeclarable.h:187
NamespaceDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
Definition: Redeclarable.h:203
Base for LValueReferenceType and RValueReferenceType.
Definition: Type.h:3439
Represents the body of a requires-expression.
Definition: DeclCXX.h:2047
static RequiresExprBodyDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc)
Definition: DeclCXX.cpp:2307
static RequiresExprBodyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:2313
Encodes a location in the source.
A trivial tuple used to represent a source range.
Represents a C++11 static_assert declaration.
Definition: DeclCXX.h:4081
static StaticAssertDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StaticAssertLoc, Expr *AssertExpr, Expr *Message, SourceLocation RParenLoc, bool Failed)
Definition: DeclCXX.cpp:3438
static StaticAssertDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3447
The streaming interface shared between DiagnosticBuilder and PartialDiagnostic.
Definition: Diagnostic.h:1102
bool isBeingDefined() const
Return true if this decl is currently being defined.
Definition: Decl.h:3701
void setMayHaveOutOfDateDef(bool V=true)
Indicates whether it is possible for declarations of this kind to have an out-of-date definition.
Definition: Decl.h:3639
bool isStruct() const
Definition: Decl.h:3781
bool isUnion() const
Definition: Decl.h:3784
void setBeingDefined(bool V=true)
True if this decl is currently being defined.
Definition: Decl.h:3633
bool isInterface() const
Definition: Decl.h:3782
TagKind getTagKind() const
Definition: Decl.h:3773
Exposes information about the current target.
Definition: TargetInfo.h:220
virtual bool areDefaultedSMFStillPOD(const LangOptions &) const
Controls whether explicitly defaulted (= default) special member functions disqualify something from ...
Definition: TargetInfo.cpp:617
Stores a list of template parameters for a TemplateDecl and its derived classes.
Definition: DeclTemplate.h:73
const Type * getTypeForDecl() const
Definition: Decl.h:3409
Base wrapper for a particular "section" of type source info.
Definition: TypeLoc.h:59
A container of type source information.
Definition: Type.h:7907
The base class of the type hierarchy.
Definition: Type.h:1828
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
Definition: Type.cpp:1916
bool isBlockPointerType() const
Definition: Type.h:8205
bool isLiteralType(const ASTContext &Ctx) const
Return true if this is a literal type (C++11 [basic.types]p10)
Definition: Type.cpp:2937
bool isUnsignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is unsigned or an enumeration types whose underlying ...
Definition: Type.cpp:2251
bool isRValueReferenceType() const
Definition: Type.h:8217
bool isHLSLBuiltinIntangibleType() const
Definition: Type.h:8465
const T * castAs() const
Member-template castAs<specific type>.
Definition: Type.h:8805
bool isReferenceType() const
Definition: Type.h:8209
const Type * getArrayElementTypeNoTypeQual() const
If this is an array type, return the element type of the array, potentially with type qualifiers miss...
Definition: Type.cpp:460
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
Definition: Type.cpp:738
bool isLValueReferenceType() const
Definition: Type.h:8213
bool isStructuralType() const
Determine if this type is a structural type, per C++20 [temp.param]p7.
Definition: Type.cpp:3002
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
Definition: Type.h:2706
bool isHLSLAttributedResourceType() const
Definition: Type.h:8476
const T * getAs() const
Member-template getAs<specific type>'.
Definition: Type.h:8736
const Type * getUnqualifiedDesugaredType() const
Return the specified type with any "sugar" removed from the type, removing any typedefs,...
Definition: Type.cpp:638
bool isRecordType() const
Definition: Type.h:8291
bool isObjCRetainableType() const
Definition: Type.cpp:5028
TagDecl * getAsTagDecl() const
Retrieves the TagDecl that this type refers to, either because the type is a TagType or because it is...
Definition: Type.cpp:1924
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
Definition: Type.cpp:1920
An artificial decl, representing a global anonymous constant value which is uniquified by value withi...
Definition: DeclCXX.h:4369
void printName(llvm::raw_ostream &OS, const PrintingPolicy &Policy) const override
Print this in a human-readable format.
Definition: DeclCXX.cpp:3672
A set of unresolved declarations.
Definition: UnresolvedSet.h:62
void addDecl(NamedDecl *D)
Definition: UnresolvedSet.h:92
The iterator over UnresolvedSets.
Definition: UnresolvedSet.h:35
NamedDecl * getDecl() const
Definition: UnresolvedSet.h:51
A set of unresolved declarations.
This node is generated when a using-declaration that was annotated with attribute((using_if_exists)) ...
Definition: DeclCXX.h:4063
static UnresolvedUsingIfExistsDecl * CreateDeserialized(ASTContext &Ctx, GlobalDeclID ID)
Definition: DeclCXX.cpp:3423
static UnresolvedUsingIfExistsDecl * Create(ASTContext &Ctx, DeclContext *DC, SourceLocation Loc, DeclarationName Name)
Definition: DeclCXX.cpp:3417
Represents a dependent using declaration which was marked with typename.
Definition: DeclCXX.h:3982
static UnresolvedUsingTypenameDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation TypenameLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TargetNameLoc, DeclarationName TargetName, SourceLocation EllipsisLoc)
Definition: DeclCXX.cpp:3396
static UnresolvedUsingTypenameDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3409
Represents a dependent using declaration which was not marked with typename.
Definition: DeclCXX.h:3885
bool isAccessDeclaration() const
Return true if it is a C++03 access declaration (no 'using').
Definition: DeclCXX.h:3922
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
Definition: DeclCXX.h:3926
DeclarationNameInfo getNameInfo() const
Definition: DeclCXX.h:3933
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Definition: DeclCXX.cpp:3387
static UnresolvedUsingValueDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, SourceLocation EllipsisLoc)
Definition: DeclCXX.cpp:3368
static UnresolvedUsingValueDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3379
Represents a C++ using-declaration.
Definition: DeclCXX.h:3535
bool isAccessDeclaration() const
Return true if it is a C++03 access declaration (no 'using').
Definition: DeclCXX.h:3581
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Definition: DeclCXX.cpp:3316
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source-location information.
Definition: DeclCXX.h:3569
static UsingDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3310
DeclarationNameInfo getNameInfo() const
Definition: DeclCXX.h:3576
static UsingDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingL, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool HasTypenameKeyword)
Definition: DeclCXX.cpp:3303
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies the name.
Definition: DeclCXX.h:3572
Represents C++ using-directive.
Definition: DeclCXX.h:3038
static UsingDirectiveDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3103
static UsingDirectiveDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation NamespaceLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Nominated, DeclContext *CommonAncestor)
Definition: DeclCXX.cpp:3090
NamespaceDecl * getNominatedNamespace()
Returns the namespace nominated by this using-directive.
Definition: DeclCXX.cpp:3111
Represents a C++ using-enum-declaration.
Definition: DeclCXX.h:3736
SourceRange getSourceRange() const override LLVM_READONLY
Source range that this declaration covers.
Definition: DeclCXX.cpp:3341
static UsingEnumDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3334
static UsingEnumDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation UsingL, SourceLocation EnumL, SourceLocation NameL, TypeSourceInfo *EnumType)
Definition: DeclCXX.cpp:3324
Represents a pack of using declarations that a single using-declarator pack-expanded into.
Definition: DeclCXX.h:3817
static UsingPackDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumExpansions)
Definition: DeclCXX.cpp:3354
static UsingPackDecl * Create(ASTContext &C, DeclContext *DC, NamedDecl *InstantiatedFrom, ArrayRef< NamedDecl * > UsingDecls)
Definition: DeclCXX.cpp:3347
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
Definition: DeclCXX.h:3343
void setTargetDecl(NamedDecl *ND)
Sets the underlying declaration which has been brought into the local scope.
Definition: DeclCXX.h:3411
UsingShadowDecl(Kind K, ASTContext &C, DeclContext *DC, SourceLocation Loc, DeclarationName Name, BaseUsingDecl *Introducer, NamedDecl *Target)
Definition: DeclCXX.cpp:3222
static UsingShadowDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition: DeclCXX.cpp:3238
BaseUsingDecl * getIntroducer() const
Gets the (written or instantiated) using declaration that introduced this declaration.
Definition: DeclCXX.cpp:3243
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition: Decl.h:671
QualType getType() const
Definition: Decl.h:682
VarDecl * getPotentiallyDecomposedVarDecl()
Definition: DeclCXX.cpp:3453
Represents a variable declaration or definition.
Definition: Decl.h:882
Defines the clang::TargetInfo interface.
The JSON file list parser is used to communicate input to InstallAPI.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
Definition: OperatorKinds.h:21
bool isTemplateInstantiation(TemplateSpecializationKind Kind)
Determine whether this template specialization kind refers to an instantiation of an entity (as oppos...
Definition: Specifiers.h:212
@ CPlusPlus20
Definition: LangStandard.h:59
@ CPlusPlus14
Definition: LangStandard.h:57
ConstexprSpecKind
Define the kind of constexpr specifier.
Definition: Specifiers.h:35
LinkageSpecLanguageIDs
Represents the language in a linkage specification.
Definition: DeclCXX.h:2949
RefQualifierKind
The kind of C++11 ref-qualifier associated with a function type.
Definition: Type.h:1766
@ RQ_RValue
An rvalue ref-qualifier was provided (&&).
Definition: Type.h:1774
StorageClass
Storage classes.
Definition: Specifiers.h:248
@ SC_Static
Definition: Specifiers.h:252
@ SC_None
Definition: Specifiers.h:250
const StreamingDiagnostic & operator<<(const StreamingDiagnostic &DB, const ASTContext::SectionInfo &Section)
Insertion operator for diagnostics.
StorageDuration
The storage duration for an object (per C++ [basic.stc]).
Definition: Specifiers.h:327
@ SD_Static
Static storage duration.
Definition: Specifiers.h:331
@ SD_FullExpression
Full-expression storage duration (for temporaries).
Definition: Specifiers.h:328
@ SD_Automatic
Automatic storage duration (most local variables).
Definition: Specifiers.h:329
@ Result
The result type of a method or function.
TagTypeKind
The kind of a tag type.
Definition: Type.h:6876
@ Interface
The "__interface" keyword.
@ Struct
The "struct" keyword.
@ Class
The "class" keyword.
@ CanNeverPassInRegs
The argument of this type cannot be passed directly in registers.
LambdaCaptureDefault
The default, if any, capture method for a lambda expression.
Definition: Lambda.h:22
StringRef getLambdaStaticInvokerName()
Definition: ASTLambda.h:22
const FunctionProtoType * T
DeductionCandidate
Only used by CXXDeductionGuideDecl.
Definition: DeclBase.h:1407
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
Definition: DeclBase.h:1274
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
Definition: Specifiers.h:188
@ TSK_Undeclared
This template specialization was formed from a template-id but has not yet been declared,...
Definition: Specifiers.h:191
CallingConv
CallingConv - Specifies the calling convention that a function uses.
Definition: Specifiers.h:278
U cast(CodeGen::Address addr)
Definition: Address.h:325
@ Other
Other implicit parameter.
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
Definition: Specifiers.h:123
@ AS_public
Definition: Specifiers.h:124
@ AS_protected
Definition: Specifiers.h:125
@ AS_none
Definition: Specifiers.h:127
@ AS_private
Definition: Specifiers.h:126
#define true
Definition: stdbool.h:25
#define false
Definition: stdbool.h:26
Information about how a lambda is numbered within its context.
Definition: DeclCXX.h:1813
A placeholder type used to construct an empty shell of a decl-derived type that will be filled in lat...
Definition: DeclBase.h:102
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
DeclarationName getName() const
getName - Returns the embedded declaration name.
T * get(ExternalASTSource *Source) const
Retrieve the pointer to the AST node that this lazy pointer points to.
uint16_t Part2
...-89ab-...
Definition: DeclCXX.h:4291
uint32_t Part1
{01234567-...
Definition: DeclCXX.h:4289
uint16_t Part3
...-cdef-...
Definition: DeclCXX.h:4293
uint8_t Part4And5[8]
...-0123-456789abcdef}
Definition: DeclCXX.h:4295
Describes how types, statements, expressions, and declarations should be printed.
Definition: PrettyPrinter.h:57