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" 14 #include "clang/AST/DeclTemplate.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/Expr.h" 18 #include "clang/AST/NestedNameSpecifier.h" 19 #include "clang/AST/TemplateBase.h" 20 #include "clang/AST/TemplateName.h" 21 #include "clang/AST/TypeLocVisitor.h" 22 #include "clang/Basic/SourceLocation.h" 23 #include "clang/Basic/Specifiers.h" 24 #include "llvm/Support/ErrorHandling.h" 25 #include "llvm/Support/MathExtras.h" 26 #include <algorithm> 27 #include <cassert> 28 #include <cstdint> 29 #include <cstring> 30 31 using namespace clang; 32 33 static const unsigned TypeLocMaxDataAlign = alignof(void *); 34 35 //===----------------------------------------------------------------------===// 36 // TypeLoc Implementation 37 //===----------------------------------------------------------------------===// 38 39 namespace { 40 41 class TypeLocRanger : public TypeLocVisitor<TypeLocRanger, SourceRange> { 42 public: 43 #define ABSTRACT_TYPELOC(CLASS, PARENT) 44 #define TYPELOC(CLASS, PARENT) \ 45 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 46 return TyLoc.getLocalSourceRange(); \ 47 } 48 #include "clang/AST/TypeLocNodes.def" 49 }; 50 51 } // namespace 52 53 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { 54 if (TL.isNull()) return SourceRange(); 55 return TypeLocRanger().Visit(TL); 56 } 57 58 namespace { 59 60 class TypeAligner : public TypeLocVisitor<TypeAligner, unsigned> { 61 public: 62 #define ABSTRACT_TYPELOC(CLASS, PARENT) 63 #define TYPELOC(CLASS, PARENT) \ 64 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 65 return TyLoc.getLocalDataAlignment(); \ 66 } 67 #include "clang/AST/TypeLocNodes.def" 68 }; 69 70 } // namespace 71 72 /// Returns the alignment of the type source info data block. 73 unsigned TypeLoc::getLocalAlignmentForType(QualType Ty) { 74 if (Ty.isNull()) return 1; 75 return TypeAligner().Visit(TypeLoc(Ty, nullptr)); 76 } 77 78 namespace { 79 80 class TypeSizer : public TypeLocVisitor<TypeSizer, unsigned> { 81 public: 82 #define ABSTRACT_TYPELOC(CLASS, PARENT) 83 #define TYPELOC(CLASS, PARENT) \ 84 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 85 return TyLoc.getLocalDataSize(); \ 86 } 87 #include "clang/AST/TypeLocNodes.def" 88 }; 89 90 } // namespace 91 92 /// Returns the size of the type source info data block. 93 unsigned TypeLoc::getFullDataSizeForType(QualType Ty) { 94 unsigned Total = 0; 95 TypeLoc TyLoc(Ty, nullptr); 96 unsigned MaxAlign = 1; 97 while (!TyLoc.isNull()) { 98 unsigned Align = getLocalAlignmentForType(TyLoc.getType()); 99 MaxAlign = std::max(Align, MaxAlign); 100 Total = llvm::alignTo(Total, Align); 101 Total += TypeSizer().Visit(TyLoc); 102 TyLoc = TyLoc.getNextTypeLoc(); 103 } 104 Total = llvm::alignTo(Total, MaxAlign); 105 return Total; 106 } 107 108 namespace { 109 110 class NextLoc : public TypeLocVisitor<NextLoc, TypeLoc> { 111 public: 112 #define ABSTRACT_TYPELOC(CLASS, PARENT) 113 #define TYPELOC(CLASS, PARENT) \ 114 TypeLoc Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 115 return TyLoc.getNextTypeLoc(); \ 116 } 117 #include "clang/AST/TypeLocNodes.def" 118 }; 119 120 } // namespace 121 122 /// Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the 123 /// TypeLoc is a PointerLoc and next TypeLoc is for "int". 124 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { 125 return NextLoc().Visit(TL); 126 } 127 128 /// Initializes a type location, and all of its children 129 /// recursively, as if the entire tree had been written in the 130 /// given location. 131 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, 132 SourceLocation Loc) { 133 while (true) { 134 switch (TL.getTypeLocClass()) { 135 #define ABSTRACT_TYPELOC(CLASS, PARENT) 136 #define TYPELOC(CLASS, PARENT) \ 137 case CLASS: { \ 138 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \ 139 TLCasted.initializeLocal(Context, Loc); \ 140 TL = TLCasted.getNextTypeLoc(); \ 141 if (!TL) return; \ 142 continue; \ 143 } 144 #include "clang/AST/TypeLocNodes.def" 145 } 146 } 147 } 148 149 namespace { 150 151 class TypeLocCopier : public TypeLocVisitor<TypeLocCopier> { 152 TypeLoc Source; 153 154 public: 155 TypeLocCopier(TypeLoc source) : Source(source) {} 156 157 #define ABSTRACT_TYPELOC(CLASS, PARENT) 158 #define TYPELOC(CLASS, PARENT) \ 159 void Visit##CLASS##TypeLoc(CLASS##TypeLoc dest) { \ 160 dest.copyLocal(Source.castAs<CLASS##TypeLoc>()); \ 161 } 162 #include "clang/AST/TypeLocNodes.def" 163 }; 164 165 } // namespace 166 167 void TypeLoc::copy(TypeLoc other) { 168 assert(getFullDataSize() == other.getFullDataSize()); 169 170 // If both data pointers are aligned to the maximum alignment, we 171 // can memcpy because getFullDataSize() accurately reflects the 172 // layout of the data. 173 if (reinterpret_cast<uintptr_t>(Data) == 174 llvm::alignTo(reinterpret_cast<uintptr_t>(Data), 175 TypeLocMaxDataAlign) && 176 reinterpret_cast<uintptr_t>(other.Data) == 177 llvm::alignTo(reinterpret_cast<uintptr_t>(other.Data), 178 TypeLocMaxDataAlign)) { 179 memcpy(Data, other.Data, getFullDataSize()); 180 return; 181 } 182 183 // Copy each of the pieces. 184 TypeLoc TL(getType(), Data); 185 do { 186 TypeLocCopier(other).Visit(TL); 187 other = other.getNextTypeLoc(); 188 } while ((TL = TL.getNextTypeLoc())); 189 } 190 191 SourceLocation TypeLoc::getBeginLoc() const { 192 TypeLoc Cur = *this; 193 TypeLoc LeftMost = Cur; 194 while (true) { 195 switch (Cur.getTypeLocClass()) { 196 case Elaborated: 197 LeftMost = Cur; 198 break; 199 case FunctionProto: 200 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr() 201 ->hasTrailingReturn()) { 202 LeftMost = Cur; 203 break; 204 } 205 LLVM_FALLTHROUGH; 206 case FunctionNoProto: 207 case ConstantArray: 208 case DependentSizedArray: 209 case IncompleteArray: 210 case VariableArray: 211 // FIXME: Currently QualifiedTypeLoc does not have a source range 212 case Qualified: 213 Cur = Cur.getNextTypeLoc(); 214 continue; 215 default: 216 if (Cur.getLocalSourceRange().getBegin().isValid()) 217 LeftMost = Cur; 218 Cur = Cur.getNextTypeLoc(); 219 if (Cur.isNull()) 220 break; 221 continue; 222 } // switch 223 break; 224 } // while 225 return LeftMost.getLocalSourceRange().getBegin(); 226 } 227 228 SourceLocation TypeLoc::getEndLoc() const { 229 TypeLoc Cur = *this; 230 TypeLoc Last; 231 while (true) { 232 switch (Cur.getTypeLocClass()) { 233 default: 234 if (!Last) 235 Last = Cur; 236 return Last.getLocalSourceRange().getEnd(); 237 case Paren: 238 case ConstantArray: 239 case DependentSizedArray: 240 case IncompleteArray: 241 case VariableArray: 242 case FunctionNoProto: 243 Last = Cur; 244 break; 245 case FunctionProto: 246 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr()->hasTrailingReturn()) 247 Last = TypeLoc(); 248 else 249 Last = Cur; 250 break; 251 case Pointer: 252 case BlockPointer: 253 case MemberPointer: 254 case LValueReference: 255 case RValueReference: 256 case PackExpansion: 257 if (!Last) 258 Last = Cur; 259 break; 260 case Qualified: 261 case Elaborated: 262 break; 263 } 264 Cur = Cur.getNextTypeLoc(); 265 } 266 } 267 268 namespace { 269 270 struct TSTChecker : public TypeLocVisitor<TSTChecker, bool> { 271 // Overload resolution does the real work for us. 272 static bool isTypeSpec(TypeSpecTypeLoc _) { return true; } 273 static bool isTypeSpec(TypeLoc _) { return false; } 274 275 #define ABSTRACT_TYPELOC(CLASS, PARENT) 276 #define TYPELOC(CLASS, PARENT) \ 277 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 278 return isTypeSpec(TyLoc); \ 279 } 280 #include "clang/AST/TypeLocNodes.def" 281 }; 282 283 } // namespace 284 285 /// Determines if the given type loc corresponds to a 286 /// TypeSpecTypeLoc. Since there is not actually a TypeSpecType in 287 /// the type hierarchy, this is made somewhat complicated. 288 /// 289 /// There are a lot of types that currently use TypeSpecTypeLoc 290 /// because it's a convenient base class. Ideally we would not accept 291 /// those here, but ideally we would have better implementations for 292 /// them. 293 bool TypeSpecTypeLoc::isKind(const TypeLoc &TL) { 294 if (TL.getType().hasLocalQualifiers()) return false; 295 return TSTChecker().Visit(TL); 296 } 297 298 bool TagTypeLoc::isDefinition() const { 299 TagDecl *D = getDecl(); 300 return D->isCompleteDefinition() && 301 (D->getIdentifier() == nullptr || D->getLocation() == getNameLoc()); 302 } 303 304 // Reimplemented to account for GNU/C++ extension 305 // typeof unary-expression 306 // where there are no parentheses. 307 SourceRange TypeOfExprTypeLoc::getLocalSourceRange() const { 308 if (getRParenLoc().isValid()) 309 return SourceRange(getTypeofLoc(), getRParenLoc()); 310 else 311 return SourceRange(getTypeofLoc(), 312 getUnderlyingExpr()->getSourceRange().getEnd()); 313 } 314 315 316 TypeSpecifierType BuiltinTypeLoc::getWrittenTypeSpec() const { 317 if (needsExtraLocalData()) 318 return static_cast<TypeSpecifierType>(getWrittenBuiltinSpecs().Type); 319 switch (getTypePtr()->getKind()) { 320 case BuiltinType::Void: 321 return TST_void; 322 case BuiltinType::Bool: 323 return TST_bool; 324 case BuiltinType::Char_U: 325 case BuiltinType::Char_S: 326 return TST_char; 327 case BuiltinType::Char8: 328 return TST_char8; 329 case BuiltinType::Char16: 330 return TST_char16; 331 case BuiltinType::Char32: 332 return TST_char32; 333 case BuiltinType::WChar_S: 334 case BuiltinType::WChar_U: 335 return TST_wchar; 336 case BuiltinType::UChar: 337 case BuiltinType::UShort: 338 case BuiltinType::UInt: 339 case BuiltinType::ULong: 340 case BuiltinType::ULongLong: 341 case BuiltinType::UInt128: 342 case BuiltinType::SChar: 343 case BuiltinType::Short: 344 case BuiltinType::Int: 345 case BuiltinType::Long: 346 case BuiltinType::LongLong: 347 case BuiltinType::Int128: 348 case BuiltinType::Half: 349 case BuiltinType::Float: 350 case BuiltinType::Double: 351 case BuiltinType::LongDouble: 352 case BuiltinType::Float16: 353 case BuiltinType::Float128: 354 case BuiltinType::ShortAccum: 355 case BuiltinType::Accum: 356 case BuiltinType::LongAccum: 357 case BuiltinType::UShortAccum: 358 case BuiltinType::UAccum: 359 case BuiltinType::ULongAccum: 360 case BuiltinType::ShortFract: 361 case BuiltinType::Fract: 362 case BuiltinType::LongFract: 363 case BuiltinType::UShortFract: 364 case BuiltinType::UFract: 365 case BuiltinType::ULongFract: 366 case BuiltinType::SatShortAccum: 367 case BuiltinType::SatAccum: 368 case BuiltinType::SatLongAccum: 369 case BuiltinType::SatUShortAccum: 370 case BuiltinType::SatUAccum: 371 case BuiltinType::SatULongAccum: 372 case BuiltinType::SatShortFract: 373 case BuiltinType::SatFract: 374 case BuiltinType::SatLongFract: 375 case BuiltinType::SatUShortFract: 376 case BuiltinType::SatUFract: 377 case BuiltinType::SatULongFract: 378 llvm_unreachable("Builtin type needs extra local data!"); 379 // Fall through, if the impossible happens. 380 381 case BuiltinType::NullPtr: 382 case BuiltinType::Overload: 383 case BuiltinType::Dependent: 384 case BuiltinType::BoundMember: 385 case BuiltinType::UnknownAny: 386 case BuiltinType::ARCUnbridgedCast: 387 case BuiltinType::PseudoObject: 388 case BuiltinType::ObjCId: 389 case BuiltinType::ObjCClass: 390 case BuiltinType::ObjCSel: 391 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 392 case BuiltinType::Id: 393 #include "clang/Basic/OpenCLImageTypes.def" 394 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 395 case BuiltinType::Id: 396 #include "clang/Basic/OpenCLExtensionTypes.def" 397 case BuiltinType::OCLSampler: 398 case BuiltinType::OCLEvent: 399 case BuiltinType::OCLClkEvent: 400 case BuiltinType::OCLQueue: 401 case BuiltinType::OCLReserveID: 402 #define SVE_TYPE(Name, Id, SingletonId) \ 403 case BuiltinType::Id: 404 #include "clang/Basic/AArch64SVEACLETypes.def" 405 case BuiltinType::BuiltinFn: 406 case BuiltinType::IncompleteMatrixIdx: 407 case BuiltinType::OMPArraySection: 408 case BuiltinType::OMPArrayShaping: 409 case BuiltinType::OMPIterator: 410 return TST_unspecified; 411 } 412 413 llvm_unreachable("Invalid BuiltinType Kind!"); 414 } 415 416 TypeLoc TypeLoc::IgnoreParensImpl(TypeLoc TL) { 417 while (ParenTypeLoc PTL = TL.getAs<ParenTypeLoc>()) 418 TL = PTL.getInnerLoc(); 419 return TL; 420 } 421 422 SourceLocation TypeLoc::findNullabilityLoc() const { 423 if (auto ATL = getAs<AttributedTypeLoc>()) { 424 const Attr *A = ATL.getAttr(); 425 if (A && (isa<TypeNullableAttr>(A) || isa<TypeNonNullAttr>(A) || 426 isa<TypeNullUnspecifiedAttr>(A))) 427 return A->getLocation(); 428 } 429 430 return {}; 431 } 432 433 TypeLoc TypeLoc::findExplicitQualifierLoc() const { 434 // Qualified types. 435 if (auto qual = getAs<QualifiedTypeLoc>()) 436 return qual; 437 438 TypeLoc loc = IgnoreParens(); 439 440 // Attributed types. 441 if (auto attr = loc.getAs<AttributedTypeLoc>()) { 442 if (attr.isQualifier()) return attr; 443 return attr.getModifiedLoc().findExplicitQualifierLoc(); 444 } 445 446 // C11 _Atomic types. 447 if (auto atomic = loc.getAs<AtomicTypeLoc>()) { 448 return atomic; 449 } 450 451 return {}; 452 } 453 454 void ObjCTypeParamTypeLoc::initializeLocal(ASTContext &Context, 455 SourceLocation Loc) { 456 setNameLoc(Loc); 457 if (!getNumProtocols()) return; 458 459 setProtocolLAngleLoc(Loc); 460 setProtocolRAngleLoc(Loc); 461 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) 462 setProtocolLoc(i, Loc); 463 } 464 465 void ObjCObjectTypeLoc::initializeLocal(ASTContext &Context, 466 SourceLocation Loc) { 467 setHasBaseTypeAsWritten(true); 468 setTypeArgsLAngleLoc(Loc); 469 setTypeArgsRAngleLoc(Loc); 470 for (unsigned i = 0, e = getNumTypeArgs(); i != e; ++i) { 471 setTypeArgTInfo(i, 472 Context.getTrivialTypeSourceInfo( 473 getTypePtr()->getTypeArgsAsWritten()[i], Loc)); 474 } 475 setProtocolLAngleLoc(Loc); 476 setProtocolRAngleLoc(Loc); 477 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) 478 setProtocolLoc(i, Loc); 479 } 480 481 SourceRange AttributedTypeLoc::getLocalSourceRange() const { 482 // Note that this does *not* include the range of the attribute 483 // enclosure, e.g.: 484 // __attribute__((foo(bar))) 485 // ^~~~~~~~~~~~~~~ ~~ 486 // or 487 // [[foo(bar)]] 488 // ^~ ~~ 489 // That enclosure doesn't necessarily belong to a single attribute 490 // anyway. 491 return getAttr() ? getAttr()->getRange() : SourceRange(); 492 } 493 494 void TypeOfTypeLoc::initializeLocal(ASTContext &Context, 495 SourceLocation Loc) { 496 TypeofLikeTypeLoc<TypeOfTypeLoc, TypeOfType, TypeOfTypeLocInfo> 497 ::initializeLocal(Context, Loc); 498 this->getLocalData()->UnderlyingTInfo = Context.getTrivialTypeSourceInfo( 499 getUnderlyingType(), Loc); 500 } 501 502 void UnaryTransformTypeLoc::initializeLocal(ASTContext &Context, 503 SourceLocation Loc) { 504 setKWLoc(Loc); 505 setRParenLoc(Loc); 506 setLParenLoc(Loc); 507 this->setUnderlyingTInfo( 508 Context.getTrivialTypeSourceInfo(getTypePtr()->getBaseType(), Loc)); 509 } 510 511 void ElaboratedTypeLoc::initializeLocal(ASTContext &Context, 512 SourceLocation Loc) { 513 setElaboratedKeywordLoc(Loc); 514 NestedNameSpecifierLocBuilder Builder; 515 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 516 setQualifierLoc(Builder.getWithLocInContext(Context)); 517 } 518 519 void DependentNameTypeLoc::initializeLocal(ASTContext &Context, 520 SourceLocation Loc) { 521 setElaboratedKeywordLoc(Loc); 522 NestedNameSpecifierLocBuilder Builder; 523 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 524 setQualifierLoc(Builder.getWithLocInContext(Context)); 525 setNameLoc(Loc); 526 } 527 528 void 529 DependentTemplateSpecializationTypeLoc::initializeLocal(ASTContext &Context, 530 SourceLocation Loc) { 531 setElaboratedKeywordLoc(Loc); 532 if (getTypePtr()->getQualifier()) { 533 NestedNameSpecifierLocBuilder Builder; 534 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 535 setQualifierLoc(Builder.getWithLocInContext(Context)); 536 } else { 537 setQualifierLoc(NestedNameSpecifierLoc()); 538 } 539 setTemplateKeywordLoc(Loc); 540 setTemplateNameLoc(Loc); 541 setLAngleLoc(Loc); 542 setRAngleLoc(Loc); 543 TemplateSpecializationTypeLoc::initializeArgLocs(Context, getNumArgs(), 544 getTypePtr()->getArgs(), 545 getArgInfos(), Loc); 546 } 547 548 void TemplateSpecializationTypeLoc::initializeArgLocs(ASTContext &Context, 549 unsigned NumArgs, 550 const TemplateArgument *Args, 551 TemplateArgumentLocInfo *ArgInfos, 552 SourceLocation Loc) { 553 for (unsigned i = 0, e = NumArgs; i != e; ++i) { 554 switch (Args[i].getKind()) { 555 case TemplateArgument::Null: 556 llvm_unreachable("Impossible TemplateArgument"); 557 558 case TemplateArgument::Integral: 559 case TemplateArgument::Declaration: 560 case TemplateArgument::NullPtr: 561 ArgInfos[i] = TemplateArgumentLocInfo(); 562 break; 563 564 case TemplateArgument::Expression: 565 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr()); 566 break; 567 568 case TemplateArgument::Type: 569 ArgInfos[i] = TemplateArgumentLocInfo( 570 Context.getTrivialTypeSourceInfo(Args[i].getAsType(), 571 Loc)); 572 break; 573 574 case TemplateArgument::Template: 575 case TemplateArgument::TemplateExpansion: { 576 NestedNameSpecifierLocBuilder Builder; 577 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern(); 578 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) 579 Builder.MakeTrivial(Context, DTN->getQualifier(), Loc); 580 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 581 Builder.MakeTrivial(Context, QTN->getQualifier(), Loc); 582 583 ArgInfos[i] = TemplateArgumentLocInfo( 584 Builder.getWithLocInContext(Context), Loc, 585 Args[i].getKind() == TemplateArgument::Template ? SourceLocation() 586 : Loc); 587 break; 588 } 589 590 case TemplateArgument::Pack: 591 ArgInfos[i] = TemplateArgumentLocInfo(); 592 break; 593 } 594 } 595 } 596 597 DeclarationNameInfo AutoTypeLoc::getConceptNameInfo() const { 598 return DeclarationNameInfo(getNamedConcept()->getDeclName(), 599 getLocalData()->ConceptNameLoc); 600 } 601 602 void AutoTypeLoc::initializeLocal(ASTContext &Context, SourceLocation Loc) { 603 setNestedNameSpecifierLoc(NestedNameSpecifierLoc()); 604 setTemplateKWLoc(Loc); 605 setConceptNameLoc(Loc); 606 setFoundDecl(nullptr); 607 setRAngleLoc(Loc); 608 setLAngleLoc(Loc); 609 TemplateSpecializationTypeLoc::initializeArgLocs(Context, getNumArgs(), 610 getTypePtr()->getArgs(), 611 getArgInfos(), Loc); 612 setNameLoc(Loc); 613 } 614 615 616 namespace { 617 618 class GetContainedAutoTypeLocVisitor : 619 public TypeLocVisitor<GetContainedAutoTypeLocVisitor, TypeLoc> { 620 public: 621 using TypeLocVisitor<GetContainedAutoTypeLocVisitor, TypeLoc>::Visit; 622 623 TypeLoc VisitAutoTypeLoc(AutoTypeLoc TL) { 624 return TL; 625 } 626 627 // Only these types can contain the desired 'auto' type. 628 629 TypeLoc VisitElaboratedTypeLoc(ElaboratedTypeLoc T) { 630 return Visit(T.getNamedTypeLoc()); 631 } 632 633 TypeLoc VisitQualifiedTypeLoc(QualifiedTypeLoc T) { 634 return Visit(T.getUnqualifiedLoc()); 635 } 636 637 TypeLoc VisitPointerTypeLoc(PointerTypeLoc T) { 638 return Visit(T.getPointeeLoc()); 639 } 640 641 TypeLoc VisitBlockPointerTypeLoc(BlockPointerTypeLoc T) { 642 return Visit(T.getPointeeLoc()); 643 } 644 645 TypeLoc VisitReferenceTypeLoc(ReferenceTypeLoc T) { 646 return Visit(T.getPointeeLoc()); 647 } 648 649 TypeLoc VisitMemberPointerTypeLoc(MemberPointerTypeLoc T) { 650 return Visit(T.getPointeeLoc()); 651 } 652 653 TypeLoc VisitArrayTypeLoc(ArrayTypeLoc T) { 654 return Visit(T.getElementLoc()); 655 } 656 657 TypeLoc VisitFunctionTypeLoc(FunctionTypeLoc T) { 658 return Visit(T.getReturnLoc()); 659 } 660 661 TypeLoc VisitParenTypeLoc(ParenTypeLoc T) { 662 return Visit(T.getInnerLoc()); 663 } 664 665 TypeLoc VisitAttributedTypeLoc(AttributedTypeLoc T) { 666 return Visit(T.getModifiedLoc()); 667 } 668 669 TypeLoc VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc T) { 670 return Visit(T.getInnerLoc()); 671 } 672 673 TypeLoc VisitAdjustedTypeLoc(AdjustedTypeLoc T) { 674 return Visit(T.getOriginalLoc()); 675 } 676 677 TypeLoc VisitPackExpansionTypeLoc(PackExpansionTypeLoc T) { 678 return Visit(T.getPatternLoc()); 679 } 680 }; 681 682 } // namespace 683 684 AutoTypeLoc TypeLoc::getContainedAutoTypeLoc() const { 685 TypeLoc Res = GetContainedAutoTypeLocVisitor().Visit(*this); 686 if (Res.isNull()) 687 return AutoTypeLoc(); 688 return Res.getAs<AutoTypeLoc>(); 689 } 690