clang 23.0.0git
TypeLoc.cpp
Go to the documentation of this file.
1//===- TypeLoc.cpp - Type Source Info Wrapper -----------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the TypeLoc subclasses implementations.
10//
11//===----------------------------------------------------------------------===//
12
13#include "clang/AST/TypeLoc.h"
16#include "clang/AST/Attr.h"
18#include "clang/AST/Expr.h"
25#include "llvm/ADT/SmallVector.h"
26#include "llvm/Support/ErrorHandling.h"
27#include "llvm/Support/MathExtras.h"
28#include <algorithm>
29#include <cassert>
30#include <cstdint>
31#include <cstring>
32
33using namespace clang;
34
35static const unsigned TypeLocMaxDataAlign = alignof(void *);
36
37//===----------------------------------------------------------------------===//
38// TypeLoc Implementation
39//===----------------------------------------------------------------------===//
40
41namespace {
42
43class TypeLocRanger : public TypeLocVisitor<TypeLocRanger, SourceRange> {
44public:
45#define ABSTRACT_TYPELOC(CLASS, PARENT)
46#define TYPELOC(CLASS, PARENT) \
47 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
48 return TyLoc.getLocalSourceRange(); \
49 }
50#include "clang/AST/TypeLocNodes.def"
51};
52
53} // namespace
54
55SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) {
56 if (TL.isNull()) return SourceRange();
57 return TypeLocRanger().Visit(TL);
58}
59
60namespace {
61
62class TypeAligner : public TypeLocVisitor<TypeAligner, unsigned> {
63public:
64#define ABSTRACT_TYPELOC(CLASS, PARENT)
65#define TYPELOC(CLASS, PARENT) \
66 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
67 return TyLoc.getLocalDataAlignment(); \
68 }
69#include "clang/AST/TypeLocNodes.def"
70};
71
72} // namespace
73
74/// Returns the alignment of the type source info data block.
76 if (Ty.isNull()) return 1;
77 return TypeAligner().Visit(TypeLoc(Ty, nullptr));
78}
79
80namespace {
81
82class TypeSizer : public TypeLocVisitor<TypeSizer, unsigned> {
83public:
84#define ABSTRACT_TYPELOC(CLASS, PARENT)
85#define TYPELOC(CLASS, PARENT) \
86 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
87 return TyLoc.getLocalDataSize(); \
88 }
89#include "clang/AST/TypeLocNodes.def"
90};
91
92} // namespace
93
94/// Returns the size of the type source info data block.
96 unsigned Total = 0;
97 TypeLoc TyLoc(Ty, nullptr);
98 unsigned MaxAlign = 1;
99 while (!TyLoc.isNull()) {
100 unsigned Align = getLocalAlignmentForType(TyLoc.getType());
101 MaxAlign = std::max(Align, MaxAlign);
102 Total = llvm::alignTo(Total, Align);
103 Total += TypeSizer().Visit(TyLoc);
104 TyLoc = TyLoc.getNextTypeLoc();
105 }
106 Total = llvm::alignTo(Total, MaxAlign);
107 return Total;
108}
109
110namespace {
111
112class NextLoc : public TypeLocVisitor<NextLoc, TypeLoc> {
113public:
114#define ABSTRACT_TYPELOC(CLASS, PARENT)
115#define TYPELOC(CLASS, PARENT) \
116 TypeLoc Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
117 return TyLoc.getNextTypeLoc(); \
118 }
119#include "clang/AST/TypeLocNodes.def"
120};
121
122} // namespace
123
124/// Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the
125/// TypeLoc is a PointerLoc and next TypeLoc is for "int".
126TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) {
127 return NextLoc().Visit(TL);
128}
129
130/// Initializes a type location, and all of its children
131/// recursively, as if the entire tree had been written in the
132/// given location.
133void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL,
134 SourceLocation Loc) {
135 while (true) {
136 switch (TL.getTypeLocClass()) {
137#define ABSTRACT_TYPELOC(CLASS, PARENT)
138#define TYPELOC(CLASS, PARENT) \
139 case CLASS: { \
140 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
141 TLCasted.initializeLocal(Context, Loc); \
142 TL = TLCasted.getNextTypeLoc(); \
143 if (!TL) return; \
144 continue; \
145 }
146#include "clang/AST/TypeLocNodes.def"
147 }
148 }
149}
150
151namespace {
152
153class TypeLocCopier : public TypeLocVisitor<TypeLocCopier> {
154 TypeLoc Source;
155
156public:
157 TypeLocCopier(TypeLoc source) : Source(source) {}
158
159#define ABSTRACT_TYPELOC(CLASS, PARENT)
160#define TYPELOC(CLASS, PARENT) \
161 void Visit##CLASS##TypeLoc(CLASS##TypeLoc dest) { \
162 dest.copyLocal(Source.castAs<CLASS##TypeLoc>()); \
163 }
164#include "clang/AST/TypeLocNodes.def"
165};
166
167} // namespace
168
170 assert(getFullDataSize() == other.getFullDataSize());
171
172 // If both data pointers are aligned to the maximum alignment, we
173 // can memcpy because getFullDataSize() accurately reflects the
174 // layout of the data.
175 if (reinterpret_cast<uintptr_t>(Data) ==
176 llvm::alignTo(reinterpret_cast<uintptr_t>(Data),
178 reinterpret_cast<uintptr_t>(other.Data) ==
179 llvm::alignTo(reinterpret_cast<uintptr_t>(other.Data),
181 memcpy(Data, other.Data, getFullDataSize());
182 return;
183 }
184
185 // Copy each of the pieces.
186 TypeLoc TL(getType(), Data);
187 do {
188 TypeLocCopier(other).Visit(TL);
189 other = other.getNextTypeLoc();
190 } while ((TL = TL.getNextTypeLoc()));
191}
192
194 TypeLoc Cur = *this;
195 TypeLoc LeftMost = Cur;
196 while (true) {
197 switch (Cur.getTypeLocClass()) {
198 case FunctionProto:
200 ->hasTrailingReturn()) {
201 LeftMost = Cur;
202 break;
203 }
204 [[fallthrough]];
205 case FunctionNoProto:
206 case ConstantArray:
207 case DependentSizedArray:
208 case IncompleteArray:
209 case VariableArray:
210 // FIXME: Currently QualifiedTypeLoc does not have a source range
211 case Qualified:
212 Cur = Cur.getNextTypeLoc();
213 continue;
214 default:
216 LeftMost = Cur;
217 Cur = Cur.getNextTypeLoc();
218 if (Cur.isNull())
219 break;
220 continue;
221 } // switch
222 break;
223 } // while
224 return LeftMost.getLocalSourceRange().getBegin();
225}
226
228 TypeLoc Cur = *this;
230 while (true) {
231 switch (Cur.getTypeLocClass()) {
232 default:
233 if (!Last)
234 Last = Cur;
235 return Last.getLocalSourceRange().getEnd();
236 case Paren:
237 case ConstantArray:
238 case DependentSizedArray:
239 case IncompleteArray:
240 case VariableArray:
241 case FunctionNoProto:
242 // The innermost type with suffix syntax always determines the end of the
243 // type.
244 Last = Cur;
245 break;
246 case FunctionProto:
248 Last = TypeLoc();
249 else
250 Last = Cur;
251 break;
252 case ObjCObjectPointer:
253 // `id` and `id<...>` have no star location.
255 break;
256 [[fallthrough]];
257 case Pointer:
258 case BlockPointer:
259 case MemberPointer:
260 case LValueReference:
261 case RValueReference:
262 case PackExpansion:
263 // Types with prefix syntax only determine the end of the type if there
264 // is no suffix type.
265 if (!Last)
266 Last = Cur;
267 break;
268 case Qualified:
269 break;
270 }
271 Cur = Cur.getNextTypeLoc();
272 }
273}
274
275namespace {
276
277struct TSTChecker : public TypeLocVisitor<TSTChecker, bool> {
278 // Overload resolution does the real work for us.
279 static bool isTypeSpec(TypeSpecTypeLoc _) { return true; }
280 static bool isTypeSpec(TypeLoc _) { return false; }
281
282#define ABSTRACT_TYPELOC(CLASS, PARENT)
283#define TYPELOC(CLASS, PARENT) \
284 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
285 return isTypeSpec(TyLoc); \
286 }
287#include "clang/AST/TypeLocNodes.def"
288};
289
290} // namespace
291
292/// Determines if the given type loc corresponds to a
293/// TypeSpecTypeLoc. Since there is not actually a TypeSpecType in
294/// the type hierarchy, this is made somewhat complicated.
295///
296/// There are a lot of types that currently use TypeSpecTypeLoc
297/// because it's a convenient base class. Ideally we would not accept
298/// those here, but ideally we would have better implementations for
299/// them.
300bool TypeSpecTypeLoc::isKind(const TypeLoc &TL) {
301 if (TL.getType().hasLocalQualifiers()) return false;
302 return TSTChecker().Visit(TL);
303}
304
306 return getTypePtr()->isTagOwned() && getDecl()->isCompleteDefinition();
307}
308
309// Reimplemented to account for GNU/C++ extension
310// typeof unary-expression
311// where there are no parentheses.
313 if (getRParenLoc().isValid())
315 else
316 return SourceRange(getTypeofLoc(),
317 getUnderlyingExpr()->getSourceRange().getEnd());
318}
319
320
323 return static_cast<TypeSpecifierType>(getWrittenBuiltinSpecs().Type);
324 switch (getTypePtr()->getKind()) {
325 case BuiltinType::Void:
326 return TST_void;
327 case BuiltinType::Bool:
328 return TST_bool;
329 case BuiltinType::Char_U:
330 case BuiltinType::Char_S:
331 return TST_char;
332 case BuiltinType::Char8:
333 return TST_char8;
334 case BuiltinType::Char16:
335 return TST_char16;
336 case BuiltinType::Char32:
337 return TST_char32;
338 case BuiltinType::WChar_S:
339 case BuiltinType::WChar_U:
340 return TST_wchar;
341 case BuiltinType::UChar:
342 case BuiltinType::UShort:
343 case BuiltinType::UInt:
344 case BuiltinType::ULong:
345 case BuiltinType::ULongLong:
346 case BuiltinType::UInt128:
347 case BuiltinType::SChar:
348 case BuiltinType::Short:
349 case BuiltinType::Int:
350 case BuiltinType::Long:
351 case BuiltinType::LongLong:
352 case BuiltinType::Int128:
353 case BuiltinType::Half:
354 case BuiltinType::Float:
355 case BuiltinType::Double:
356 case BuiltinType::LongDouble:
357 case BuiltinType::Float16:
358 case BuiltinType::Float128:
359 case BuiltinType::Ibm128:
360 case BuiltinType::ShortAccum:
361 case BuiltinType::Accum:
362 case BuiltinType::LongAccum:
363 case BuiltinType::UShortAccum:
364 case BuiltinType::UAccum:
365 case BuiltinType::ULongAccum:
366 case BuiltinType::ShortFract:
367 case BuiltinType::Fract:
368 case BuiltinType::LongFract:
369 case BuiltinType::UShortFract:
370 case BuiltinType::UFract:
371 case BuiltinType::ULongFract:
372 case BuiltinType::SatShortAccum:
373 case BuiltinType::SatAccum:
374 case BuiltinType::SatLongAccum:
375 case BuiltinType::SatUShortAccum:
376 case BuiltinType::SatUAccum:
377 case BuiltinType::SatULongAccum:
378 case BuiltinType::SatShortFract:
379 case BuiltinType::SatFract:
380 case BuiltinType::SatLongFract:
381 case BuiltinType::SatUShortFract:
382 case BuiltinType::SatUFract:
383 case BuiltinType::SatULongFract:
384 case BuiltinType::BFloat16:
385 llvm_unreachable("Builtin type needs extra local data!");
386 // Fall through, if the impossible happens.
387
388 case BuiltinType::NullPtr:
389 case BuiltinType::Overload:
390 case BuiltinType::Dependent:
391 case BuiltinType::UnresolvedTemplate:
392 case BuiltinType::BoundMember:
393 case BuiltinType::UnknownAny:
394 case BuiltinType::ARCUnbridgedCast:
395 case BuiltinType::PseudoObject:
396 case BuiltinType::ObjCId:
397 case BuiltinType::ObjCClass:
398 case BuiltinType::ObjCSel:
399#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
400 case BuiltinType::Id:
401#include "clang/Basic/OpenCLImageTypes.def"
402#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
403 case BuiltinType::Id:
404#include "clang/Basic/OpenCLExtensionTypes.def"
405 case BuiltinType::OCLSampler:
406 case BuiltinType::OCLEvent:
407 case BuiltinType::OCLClkEvent:
408 case BuiltinType::OCLQueue:
409 case BuiltinType::OCLReserveID:
410#define SVE_TYPE(Name, Id, SingletonId) \
411 case BuiltinType::Id:
412#include "clang/Basic/AArch64ACLETypes.def"
413#define PPC_VECTOR_TYPE(Name, Id, Size) \
414 case BuiltinType::Id:
415#include "clang/Basic/PPCTypes.def"
416#define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
417#include "clang/Basic/RISCVVTypes.def"
418#define WASM_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
419#include "clang/Basic/WebAssemblyReferenceTypes.def"
420#define AMDGPU_TYPE(Name, Id, SingletonId, Width, Align) case BuiltinType::Id:
421#include "clang/Basic/AMDGPUTypes.def"
422#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
423#include "clang/Basic/HLSLIntangibleTypes.def"
424 case BuiltinType::BuiltinFn:
425 case BuiltinType::IncompleteMatrixIdx:
426 case BuiltinType::ArraySection:
427 case BuiltinType::OMPArrayShaping:
428 case BuiltinType::OMPIterator:
429 return TST_unspecified;
430 }
431
432 llvm_unreachable("Invalid BuiltinType Kind!");
433}
434
435TypeLoc TypeLoc::IgnoreParensImpl(TypeLoc TL) {
436 while (ParenTypeLoc PTL = TL.getAs<ParenTypeLoc>())
437 TL = PTL.getInnerLoc();
438 return TL;
439}
440
442 if (auto ATL = getAs<AttributedTypeLoc>()) {
443 const Attr *A = ATL.getAttr();
444 if (A && (isa<TypeNullableAttr>(A) || isa<TypeNonNullAttr>(A) ||
446 return A->getLocation();
447 }
448
449 return {};
450}
451
453 // Qualified types.
454 if (auto qual = getAs<QualifiedTypeLoc>())
455 return qual;
456
457 TypeLoc loc = IgnoreParens();
458
459 // Attributed types.
460 if (auto attr = loc.getAs<AttributedTypeLoc>()) {
461 if (attr.isQualifier()) return attr;
462 return attr.getModifiedLoc().findExplicitQualifierLoc();
463 }
464
465 // C11 _Atomic types.
466 if (auto atomic = loc.getAs<AtomicTypeLoc>()) {
467 return atomic;
468 }
469
470 return {};
471}
472
474 switch (getTypeLocClass()) {
475 case TypeLoc::DependentName:
476 return castAs<DependentNameTypeLoc>().getQualifierLoc();
477 case TypeLoc::TemplateSpecialization:
478 return castAs<TemplateSpecializationTypeLoc>().getQualifierLoc();
479 case TypeLoc::DeducedTemplateSpecialization:
480 return castAs<DeducedTemplateSpecializationTypeLoc>().getQualifierLoc();
481 case TypeLoc::Enum:
482 case TypeLoc::Record:
483 case TypeLoc::InjectedClassName:
484 return castAs<TagTypeLoc>().getQualifierLoc();
485 case TypeLoc::Typedef:
486 return castAs<TypedefTypeLoc>().getQualifierLoc();
487 case TypeLoc::UnresolvedUsing:
488 return castAs<UnresolvedUsingTypeLoc>().getQualifierLoc();
489 case TypeLoc::Using:
490 return castAs<UsingTypeLoc>().getQualifierLoc();
491 default:
492 return NestedNameSpecifierLoc();
493 }
494}
495
497 // For elaborated types (e.g. `struct a::A`) we want the portion after the
498 // `struct` but including the namespace qualifier, `a::`.
499 switch (getTypeLocClass()) {
502 .getUnqualifiedLoc()
503 .getNonElaboratedBeginLoc();
504 case TypeLoc::TemplateSpecialization: {
506 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
507 return QualifierLoc.getBeginLoc();
508 return T.getTemplateNameLoc();
509 }
510 case TypeLoc::DeducedTemplateSpecialization: {
512 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
513 return QualifierLoc.getBeginLoc();
514 return T.getTemplateNameLoc();
515 }
516 case TypeLoc::DependentName: {
518 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
519 return QualifierLoc.getBeginLoc();
520 return T.getNameLoc();
521 }
522 case TypeLoc::Enum:
523 case TypeLoc::Record:
524 case TypeLoc::InjectedClassName: {
525 auto T = castAs<TagTypeLoc>();
526 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
527 return QualifierLoc.getBeginLoc();
528 return T.getNameLoc();
529 }
530 case TypeLoc::Typedef: {
531 auto T = castAs<TypedefTypeLoc>();
532 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
533 return QualifierLoc.getBeginLoc();
534 return T.getNameLoc();
535 }
536 case TypeLoc::UnresolvedUsing: {
538 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
539 return QualifierLoc.getBeginLoc();
540 return T.getNameLoc();
541 }
542 case TypeLoc::Using: {
543 auto T = castAs<UsingTypeLoc>();
544 if (NestedNameSpecifierLoc QualifierLoc = T.getQualifierLoc())
545 return QualifierLoc.getBeginLoc();
546 return T.getNameLoc();
547 }
548 default:
549 return getBeginLoc();
550 }
551}
552
554 SourceLocation Loc) {
555 setNameLoc(Loc);
556 if (!getNumProtocols()) return;
557
560 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
561 setProtocolLoc(i, Loc);
562}
563
565 SourceLocation Loc) {
569 for (unsigned i = 0, e = getNumTypeArgs(); i != e; ++i) {
571 Context.getTrivialTypeSourceInfo(
572 getTypePtr()->getTypeArgsAsWritten()[i], Loc));
573 }
576 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i)
577 setProtocolLoc(i, Loc);
578}
579
581 // Note that this does *not* include the range of the attribute
582 // enclosure, e.g.:
583 // __attribute__((foo(bar)))
584 // ^~~~~~~~~~~~~~~ ~~
585 // or
586 // [[foo(bar)]]
587 // ^~ ~~
588 // That enclosure doesn't necessarily belong to a single attribute
589 // anyway.
590 return getAttr() ? getAttr()->getRange() : SourceRange();
591}
592
596
600
604
612
614 SourceLocation Loc) {
615 setKWLoc(Loc);
616 setRParenLoc(Loc);
617 setLParenLoc(Loc);
618 this->setUnderlyingTInfo(
619 Context.getTrivialTypeSourceInfo(getTypePtr()->getBaseType(), Loc));
620}
621
622template <class TL>
624 T.setElaboratedKeywordLoc(T.getTypePtr()->getKeyword() !=
626 ? Loc
627 : SourceLocation());
628}
629
631 NestedNameSpecifier Qualifier,
632 SourceLocation Loc) {
633 if (!Qualifier)
634 return NestedNameSpecifierLoc();
636 Builder.MakeTrivial(Context, Qualifier, Loc);
637 return Builder.getWithLocInContext(Context);
638}
639
641 SourceLocation Loc) {
642 initializeElaboratedKeyword(*this, Loc);
644 initializeQualifier(Context, getTypePtr()->getQualifier(), Loc));
645 setNameLoc(Loc);
646}
647
649 NestedNameSpecifierLoc QualifierLoc,
650 SourceLocation TemplateKeywordLoc,
651 SourceLocation NameLoc,
652 SourceLocation LAngleLoc,
653 SourceLocation RAngleLoc) {
655
656 Data.ElaboratedKWLoc = ElaboratedKeywordLoc;
657 SourceLocation BeginLoc = ElaboratedKeywordLoc;
658
659 getLocalData()->QualifierData = QualifierLoc.getOpaqueData();
660
661 assert(QualifierLoc.getNestedNameSpecifier() ==
662 getTypePtr()->getTemplateName().getQualifier());
663 Data.QualifierData = QualifierLoc ? QualifierLoc.getOpaqueData() : nullptr;
664 if (QualifierLoc && !BeginLoc.isValid())
665 BeginLoc = QualifierLoc.getBeginLoc();
666
667 Data.TemplateKWLoc = TemplateKeywordLoc;
668 if (!BeginLoc.isValid())
669 BeginLoc = TemplateKeywordLoc;
670
671 Data.NameLoc = NameLoc;
672 if (!BeginLoc.isValid())
673 BeginLoc = NameLoc;
674
675 Data.LAngleLoc = LAngleLoc;
676 Data.SR = SourceRange(BeginLoc, RAngleLoc);
677}
678
680 NestedNameSpecifierLoc QualifierLoc,
681 SourceLocation TemplateKeywordLoc,
682 SourceLocation NameLoc,
683 const TemplateArgumentListInfo &TAL) {
684 set(ElaboratedKeywordLoc, QualifierLoc, TemplateKeywordLoc, NameLoc,
685 TAL.getLAngleLoc(), TAL.getRAngleLoc());
687 assert(TAL.size() == ArgInfos.size());
688 for (unsigned I = 0, N = TAL.size(); I != N; ++I)
689 ArgInfos[I] = TAL[I].getLocInfo();
690}
691
693 SourceLocation Loc) {
694
695 auto [Qualifier, HasTemplateKeyword] =
696 getTypePtr()->getTemplateName().getQualifierAndTemplateKeyword();
697
698 SourceLocation ElaboratedKeywordLoc =
699 getTypePtr()->getKeyword() != ElaboratedTypeKeyword::None
700 ? Loc
701 : SourceLocation();
702
703 NestedNameSpecifierLoc QualifierLoc;
704 if (Qualifier) {
706 Builder.MakeTrivial(Context, Qualifier, Loc);
707 QualifierLoc = Builder.getWithLocInContext(Context);
708 }
709
710 TemplateArgumentListInfo TAL(Loc, Loc);
711 set(ElaboratedKeywordLoc, QualifierLoc,
712 /*TemplateKeywordLoc=*/HasTemplateKeyword ? Loc : SourceLocation(),
713 /*NameLoc=*/Loc, /*LAngleLoc=*/Loc, /*RAngleLoc=*/Loc);
714 initializeArgLocs(Context, getTypePtr()->template_arguments(), getArgInfos(),
715 Loc);
716}
717
721 for (unsigned i = 0, e = Args.size(); i != e; ++i) {
722 switch (Args[i].getKind()) {
724 llvm_unreachable("Impossible TemplateArgument");
725
730 ArgInfos[i] = TemplateArgumentLocInfo();
731 break;
732
734 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr());
735 break;
736
738 ArgInfos[i] = TemplateArgumentLocInfo(
739 Context.getTrivialTypeSourceInfo(Args[i].getAsType(),
740 Loc));
741 break;
742
746 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern();
747 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName())
748 Builder.MakeTrivial(Context, DTN->getQualifier(), Loc);
749 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
750 Builder.MakeTrivial(Context, QTN->getQualifier(), Loc);
751
752 ArgInfos[i] = TemplateArgumentLocInfo(
753 Context, Loc, Builder.getWithLocInContext(Context), Loc,
754 Args[i].getKind() == TemplateArgument::Template ? SourceLocation()
755 : Loc);
756 break;
757 }
758
760 ArgInfos[i] = TemplateArgumentLocInfo();
761 break;
762 }
763 }
764}
765
766// Builds a ConceptReference where all locations point at the same token,
767// for use in trivial TypeSourceInfo for constrained AutoType
769 SourceLocation Loc,
770 const AutoType *AT) {
772 DeclarationNameInfo(AT->getTypeConstraintConcept()->getDeclName(), Loc,
773 AT->getTypeConstraintConcept()->getDeclName());
774 unsigned size = AT->getTypeConstraintArguments().size();
777 Context, AT->getTypeConstraintArguments(), TALI.data(), Loc);
779 for (unsigned i = 0; i < size; ++i) {
780 TAListI.addArgument(
781 TemplateArgumentLoc(AT->getTypeConstraintArguments()[i],
782 TALI[i])); // TemplateArgumentLocInfo()
783 }
784
785 auto *ConceptRef = ConceptReference::Create(
786 Context, NestedNameSpecifierLoc{}, Loc, DNI, nullptr,
787 AT->getTypeConstraintConcept(),
788 ASTTemplateArgumentListInfo::Create(Context, TAListI));
789 return ConceptRef;
790}
791
793 setRParenLoc(Loc);
794 setNameLoc(Loc);
795 setConceptReference(nullptr);
796 if (getTypePtr()->isConstrained()) {
799 }
800}
801
803 SourceLocation Loc) {
804 initializeElaboratedKeyword(*this, Loc);
806 Context, getTypePtr()->getTemplateName().getQualifier(), Loc));
808}
809
810namespace {
811
812 class GetContainedAutoTypeLocVisitor :
813 public TypeLocVisitor<GetContainedAutoTypeLocVisitor, TypeLoc> {
814 public:
815 using TypeLocVisitor<GetContainedAutoTypeLocVisitor, TypeLoc>::Visit;
816
817 TypeLoc VisitAutoTypeLoc(AutoTypeLoc TL) {
818 return TL;
819 }
820
821 // Only these types can contain the desired 'auto' type.
822
823 TypeLoc VisitQualifiedTypeLoc(QualifiedTypeLoc T) {
824 return Visit(T.getUnqualifiedLoc());
825 }
826
827 TypeLoc VisitPointerTypeLoc(PointerTypeLoc T) {
828 return Visit(T.getPointeeLoc());
829 }
830
831 TypeLoc VisitBlockPointerTypeLoc(BlockPointerTypeLoc T) {
832 return Visit(T.getPointeeLoc());
833 }
834
835 TypeLoc VisitReferenceTypeLoc(ReferenceTypeLoc T) {
836 return Visit(T.getPointeeLoc());
837 }
838
839 TypeLoc VisitMemberPointerTypeLoc(MemberPointerTypeLoc T) {
840 return Visit(T.getPointeeLoc());
841 }
842
843 TypeLoc VisitArrayTypeLoc(ArrayTypeLoc T) {
844 return Visit(T.getElementLoc());
845 }
846
847 TypeLoc VisitFunctionTypeLoc(FunctionTypeLoc T) {
848 return Visit(T.getReturnLoc());
849 }
850
851 TypeLoc VisitParenTypeLoc(ParenTypeLoc T) {
852 return Visit(T.getInnerLoc());
853 }
854
855 TypeLoc VisitAttributedTypeLoc(AttributedTypeLoc T) {
856 return Visit(T.getModifiedLoc());
857 }
858
859 TypeLoc VisitBTFTagAttributedTypeLoc(BTFTagAttributedTypeLoc T) {
860 return Visit(T.getWrappedLoc());
861 }
862
863 TypeLoc VisitOverflowBehaviorTypeLoc(OverflowBehaviorTypeLoc T) {
864 return Visit(T.getWrappedLoc());
865 }
866
867 TypeLoc
868 VisitHLSLAttributedResourceTypeLoc(HLSLAttributedResourceTypeLoc T) {
869 return Visit(T.getWrappedLoc());
870 }
871
872 TypeLoc VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc T) {
873 return Visit(T.getInnerLoc());
874 }
875
876 TypeLoc VisitAdjustedTypeLoc(AdjustedTypeLoc T) {
877 return Visit(T.getOriginalLoc());
878 }
879
880 TypeLoc VisitPackExpansionTypeLoc(PackExpansionTypeLoc T) {
881 return Visit(T.getPatternLoc());
882 }
883 };
884
885} // namespace
886
888 TypeLoc Res = GetContainedAutoTypeLocVisitor().Visit(*this);
889 if (Res.isNull())
890 return AutoTypeLoc();
891 return Res.getAs<AutoTypeLoc>();
892}
893
895 if (const auto TSTL = getAsAdjusted<TemplateSpecializationTypeLoc>())
896 return TSTL.getTemplateKeywordLoc();
897 return SourceLocation();
898}
This file provides AST data structures related to concepts.
Defines the clang::ASTContext interface.
static Decl::Kind getKind(const Decl *D)
Defines the C++ template declaration subclasses.
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static ConceptReference * createTrivialConceptReference(ASTContext &Context, SourceLocation Loc, const AutoType *AT)
Definition TypeLoc.cpp:768
static const unsigned TypeLocMaxDataAlign
Definition TypeLoc.cpp:35
static NestedNameSpecifierLoc initializeQualifier(ASTContext &Context, NestedNameSpecifier Qualifier, SourceLocation Loc)
Definition TypeLoc.cpp:630
static void initializeElaboratedKeyword(TL T, SourceLocation Loc)
Definition TypeLoc.cpp:623
Defines the clang::TypeLoc interface and its subclasses.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:226
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
TypeLoc getOriginalLoc() const
Definition TypeLoc.h:1448
TypeLoc getElementLoc() const
Definition TypeLoc.h:1807
Attr - This represents one attribute.
Definition Attr.h:46
SourceLocation getLocation() const
Definition Attr.h:99
Type source information for an attributed type.
Definition TypeLoc.h:1008
const Attr * getAttr() const
The type attribute.
Definition TypeLoc.h:1031
TypeLoc getModifiedLoc() const
The modified type, which is generally canonically different from the attribute type.
Definition TypeLoc.h:1022
SourceRange getLocalSourceRange() const
Definition TypeLoc.cpp:580
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:792
void setConceptReference(ConceptReference *CR)
Definition TypeLoc.h:2405
bool isConstrained() const
Definition TypeLoc.h:2401
void setRParenLoc(SourceLocation Loc)
Definition TypeLoc.h:2399
TypeLoc getWrappedLoc() const
Definition TypeLoc.h:1060
const BTFTypeTagAttr * getAttr() const
The btf_type_tag attribute.
Definition TypeLoc.h:1063
SourceRange getLocalSourceRange() const
Definition TypeLoc.cpp:597
TypeSpecifierType getWrittenTypeSpec() const
Definition TypeLoc.cpp:321
bool needsExtraLocalData() const
Definition TypeLoc.h:606
WrittenBuiltinSpecs & getWrittenBuiltinSpecs()
Definition TypeLoc.h:599
A reference to a concept and its template args, as it appears in the code.
Definition ASTConcept.h:130
static ConceptReference * Create(const ASTContext &C, NestedNameSpecifierLoc NNS, SourceLocation TemplateKWLoc, DeclarationNameInfo ConceptNameInfo, NamedDecl *FoundDecl, TemplateDecl *NamedConcept, const ASTTemplateArgumentListInfo *ArgsAsWritten)
Expr * getCountExpr() const
Definition TypeLoc.h:1354
SourceRange getLocalSourceRange() const
Definition TypeLoc.cpp:593
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
Definition TypeLoc.h:2531
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:802
void setTemplateNameLoc(SourceLocation Loc)
Definition TypeLoc.h:2519
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:640
void setNameLoc(SourceLocation Loc)
Definition TypeLoc.h:2601
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
Definition TypeLoc.h:2590
bool hasTrailingReturn() const
Whether this function prototype has a trailing return type.
Definition TypeBase.h:5696
TypeLoc getReturnLoc() const
Definition TypeLoc.h:1725
const TypeClass * getTypePtr() const
Definition TypeLoc.h:526
TypeLoc getInnerLoc() const
Definition TypeLoc.h:1373
Class that aids in the construction of nested-name-specifiers along with source-location information ...
void MakeTrivial(ASTContext &Context, NestedNameSpecifier Qualifier, SourceRange R)
Make a new nested-name-specifier from incomplete source-location information.
A C++ nested-name-specifier augmented with source location information.
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
SourceLocation getBeginLoc() const
Retrieve the location of the beginning of this nested-name-specifier.
void * getOpaqueData() const
Retrieve the opaque pointer that refers to source-location data.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
Wraps an ObjCPointerType with source location information.
Definition TypeLoc.h:1586
SourceLocation getStarLoc() const
Definition TypeLoc.h:1588
void setTypeArgsRAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:1196
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:564
unsigned getNumTypeArgs() const
Definition TypeLoc.h:1200
unsigned getNumProtocols() const
Definition TypeLoc.h:1230
void setTypeArgsLAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:1188
void setTypeArgTInfo(unsigned i, TypeSourceInfo *TInfo)
Definition TypeLoc.h:1209
void setProtocolLAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:1218
void setProtocolRAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:1226
void setHasBaseTypeAsWritten(bool HasBaseType)
Definition TypeLoc.h:1258
void setProtocolLoc(unsigned i, SourceLocation Loc)
Definition TypeLoc.h:1239
unsigned getNumProtocols() const
Definition TypeLoc.h:932
void setProtocolLoc(unsigned i, SourceLocation Loc)
Definition TypeLoc.h:941
void setProtocolLAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:918
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:553
void setProtocolRAngleLoc(SourceLocation Loc)
Definition TypeLoc.h:928
void setNameLoc(SourceLocation Loc)
Definition TypeLoc.h:908
TypeLoc getWrappedLoc() const
Definition TypeLoc.h:1084
SourceRange getLocalSourceRange() const
Definition TypeLoc.cpp:601
TypeLoc getPatternLoc() const
Definition TypeLoc.h:2645
TypeLoc getInnerLoc() const
Definition TypeLoc.h:1428
TypeLoc getPointeeLoc() const
Definition TypeLoc.h:1494
A (possibly-)qualified type.
Definition TypeBase.h:937
bool hasLocalQualifiers() const
Determine whether this particular QualType instance has any qualifiers, without looking through any t...
Definition TypeBase.h:1064
Represents a template name as written in source code.
Wrapper of type source information for a type with non-trivial direct qualifiers.
Definition TypeLoc.h:300
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
Definition Stmt.cpp:343
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
Definition Decl.h:3818
TagDecl * getDecl() const
Definition TypeLoc.h:796
bool isDefinition() const
True if the tag was defined in this type specifier.
Definition TypeLoc.cpp:305
A convenient class for passing around template argument information.
SourceLocation getRAngleLoc() const
void addArgument(const TemplateArgumentLoc &Loc)
SourceLocation getLAngleLoc() const
Location wrapper for a TemplateArgument.
@ Declaration
The template argument is a declaration that was provided for a pointer, reference,...
@ Template
The template argument is a template name that was provided for a template template parameter.
@ StructuralValue
The template argument is a non-type template argument that can't be represented by the special-case D...
@ Pack
The template argument is actually a parameter pack.
@ TemplateExpansion
The template argument is a pack expansion of a template name that was provided for a template templat...
@ NullPtr
The template argument is a null pointer or null pointer to member that was provided for a non-type te...
@ Type
The template argument is a type.
@ Null
Represents an empty template argument, e.g., one that has not been deduced.
@ Integral
The template argument is an integral value stored in an llvm::APSInt that was provided for an integra...
@ Expression
The template argument is an expression, and we've not resolved it to one of the other forms yet,...
Represents a C++ template name within the type system.
static void initializeArgLocs(ASTContext &Context, ArrayRef< TemplateArgument > Args, TemplateArgumentLocInfo *ArgInfos, SourceLocation Loc)
Definition TypeLoc.cpp:718
MutableArrayRef< TemplateArgumentLocInfo > getArgLocInfos()
Definition TypeLoc.h:1913
void set(SourceLocation ElaboratedKeywordLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKeywordLoc, SourceLocation NameLoc, SourceLocation LAngleLoc, SourceLocation RAngleLoc)
Definition TypeLoc.cpp:648
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:692
RetTy Visit(TypeLoc TyLoc)
Base wrapper for a particular "section" of type source info.
Definition TypeLoc.h:59
SourceLocation findNullabilityLoc() const
Find the location of the nullability specifier (__nonnull, __nullable, or __null_unspecifier),...
Definition TypeLoc.cpp:441
TypeLoc()=default
static unsigned getLocalAlignmentForType(QualType Ty)
Returns the alignment of type source info data block for the given type.
Definition TypeLoc.cpp:75
TypeLoc findExplicitQualifierLoc() const
Find a type with the location of an explicit type qualifier.
Definition TypeLoc.cpp:452
QualType getType() const
Get the type for which this source info wrapper provides information.
Definition TypeLoc.h:133
TypeLoc getNextTypeLoc() const
Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the TypeLoc is a PointerLoc and next Typ...
Definition TypeLoc.h:171
T getAs() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
Definition TypeLoc.h:89
NestedNameSpecifierLoc getPrefix() const
If this type represents a qualified-id, this returns it's nested name specifier.
Definition TypeLoc.cpp:473
TypeLoc IgnoreParens() const
Definition TypeLoc.h:1437
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
Definition TypeLoc.h:78
void * Data
Definition TypeLoc.h:64
SourceLocation getNonElaboratedBeginLoc() const
This returns the position of the type after any elaboration, such as the 'struct' keyword.
Definition TypeLoc.cpp:496
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
Definition TypeLoc.h:154
SourceRange getLocalSourceRange() const
Get the local source range.
Definition TypeLoc.h:160
unsigned getFullDataSize() const
Returns the size of the type source info data block.
Definition TypeLoc.h:165
AutoTypeLoc getContainedAutoTypeLoc() const
Get the typeloc of an AutoType whose type will be deduced for a variable with an initializer of this ...
Definition TypeLoc.cpp:887
const void * Ty
Definition TypeLoc.h:63
SourceLocation getTemplateKeywordLoc() const
Get the SourceLocation of the template keyword (if any).
Definition TypeLoc.cpp:894
void copy(TypeLoc other)
Copies the other type loc into this one.
Definition TypeLoc.cpp:169
TypeLocClass getTypeLocClass() const
Definition TypeLoc.h:116
static unsigned getFullDataSizeForType(QualType Ty)
Returns the size of type source info data block for the given type.
Definition TypeLoc.cpp:95
bool isNull() const
Definition TypeLoc.h:121
SourceLocation getEndLoc() const
Get the end source location.
Definition TypeLoc.cpp:227
T getAsAdjusted() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
Definition TypeLoc.h:2735
SourceLocation getBeginLoc() const
Get the begin source location.
Definition TypeLoc.cpp:193
SourceRange getLocalSourceRange() const
Definition TypeLoc.cpp:312
Expr * getUnderlyingExpr() const
Definition TypeLoc.h:2244
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:605
QualType getUnmodifiedType() const
Definition TypeLoc.h:2257
A reasonable base class for TypeLocs that correspond to types that are written as a type-specifier.
Definition TypeLoc.h:540
void setNameLoc(SourceLocation Loc)
Definition TypeLoc.h:551
void setRParenLoc(SourceLocation Loc)
Definition TypeLoc.h:2350
void initializeLocal(ASTContext &Context, SourceLocation Loc)
Definition TypeLoc.cpp:613
void setKWLoc(SourceLocation Loc)
Definition TypeLoc.h:2344
void setUnderlyingTInfo(TypeSourceInfo *TInfo)
Definition TypeLoc.h:2356
void setLParenLoc(SourceLocation Loc)
Definition TypeLoc.h:2347
The JSON file list parser is used to communicate input to InstallAPI.
TypeSpecifierType
Specifies the kind of type.
Definition Specifiers.h:55
@ TST_char32
Definition Specifiers.h:62
@ TST_wchar
Definition Specifiers.h:59
@ TST_char16
Definition Specifiers.h:61
@ TST_char
Definition Specifiers.h:58
@ TST_unspecified
Definition Specifiers.h:56
@ TST_bool
Definition Specifiers.h:75
@ TST_void
Definition Specifiers.h:57
@ TST_char8
Definition Specifiers.h:60
bool isa(CodeGen::Address addr)
Definition Address.h:330
@ Template
We are parsing a template declaration.
Definition Parser.h:81
@ None
No keyword precedes the qualified type name.
Definition TypeBase.h:5896
__UINTPTR_TYPE__ uintptr_t
An unsigned integer type with the property that any valid pointer to void can be converted to this ty...
static const ASTTemplateArgumentListInfo * Create(const ASTContext &C, const TemplateArgumentListInfo &List)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
Location information for a TemplateArgument.
TypeSourceInfo * UnmodifiedTInfo
Definition TypeLoc.h:2189