1 //===- ASTContext.cpp - Context to hold long-lived AST nodes --------------===// 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 ASTContext interface. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "clang/AST/ASTContext.h" 14 #include "CXXABI.h" 15 #include "Interp/Context.h" 16 #include "clang/AST/APValue.h" 17 #include "clang/AST/ASTConcept.h" 18 #include "clang/AST/ASTMutationListener.h" 19 #include "clang/AST/ASTTypeTraits.h" 20 #include "clang/AST/Attr.h" 21 #include "clang/AST/AttrIterator.h" 22 #include "clang/AST/CharUnits.h" 23 #include "clang/AST/Comment.h" 24 #include "clang/AST/Decl.h" 25 #include "clang/AST/DeclBase.h" 26 #include "clang/AST/DeclCXX.h" 27 #include "clang/AST/DeclContextInternals.h" 28 #include "clang/AST/DeclObjC.h" 29 #include "clang/AST/DeclOpenMP.h" 30 #include "clang/AST/DeclTemplate.h" 31 #include "clang/AST/DeclarationName.h" 32 #include "clang/AST/DependenceFlags.h" 33 #include "clang/AST/Expr.h" 34 #include "clang/AST/ExprCXX.h" 35 #include "clang/AST/ExprConcepts.h" 36 #include "clang/AST/ExternalASTSource.h" 37 #include "clang/AST/Mangle.h" 38 #include "clang/AST/MangleNumberingContext.h" 39 #include "clang/AST/NestedNameSpecifier.h" 40 #include "clang/AST/ParentMapContext.h" 41 #include "clang/AST/RawCommentList.h" 42 #include "clang/AST/RecordLayout.h" 43 #include "clang/AST/Stmt.h" 44 #include "clang/AST/TemplateBase.h" 45 #include "clang/AST/TemplateName.h" 46 #include "clang/AST/Type.h" 47 #include "clang/AST/TypeLoc.h" 48 #include "clang/AST/UnresolvedSet.h" 49 #include "clang/AST/VTableBuilder.h" 50 #include "clang/Basic/AddressSpaces.h" 51 #include "clang/Basic/Builtins.h" 52 #include "clang/Basic/CommentOptions.h" 53 #include "clang/Basic/ExceptionSpecificationType.h" 54 #include "clang/Basic/IdentifierTable.h" 55 #include "clang/Basic/LLVM.h" 56 #include "clang/Basic/LangOptions.h" 57 #include "clang/Basic/Linkage.h" 58 #include "clang/Basic/Module.h" 59 #include "clang/Basic/NoSanitizeList.h" 60 #include "clang/Basic/ObjCRuntime.h" 61 #include "clang/Basic/SourceLocation.h" 62 #include "clang/Basic/SourceManager.h" 63 #include "clang/Basic/Specifiers.h" 64 #include "clang/Basic/TargetCXXABI.h" 65 #include "clang/Basic/TargetInfo.h" 66 #include "clang/Basic/XRayLists.h" 67 #include "llvm/ADT/APFixedPoint.h" 68 #include "llvm/ADT/APInt.h" 69 #include "llvm/ADT/APSInt.h" 70 #include "llvm/ADT/ArrayRef.h" 71 #include "llvm/ADT/DenseMap.h" 72 #include "llvm/ADT/DenseSet.h" 73 #include "llvm/ADT/FoldingSet.h" 74 #include "llvm/ADT/None.h" 75 #include "llvm/ADT/Optional.h" 76 #include "llvm/ADT/PointerUnion.h" 77 #include "llvm/ADT/STLExtras.h" 78 #include "llvm/ADT/SmallPtrSet.h" 79 #include "llvm/ADT/SmallVector.h" 80 #include "llvm/ADT/StringExtras.h" 81 #include "llvm/ADT/StringRef.h" 82 #include "llvm/ADT/Triple.h" 83 #include "llvm/Support/Capacity.h" 84 #include "llvm/Support/Casting.h" 85 #include "llvm/Support/Compiler.h" 86 #include "llvm/Support/ErrorHandling.h" 87 #include "llvm/Support/MD5.h" 88 #include "llvm/Support/MathExtras.h" 89 #include "llvm/Support/raw_ostream.h" 90 #include <algorithm> 91 #include <cassert> 92 #include <cstddef> 93 #include <cstdint> 94 #include <cstdlib> 95 #include <map> 96 #include <memory> 97 #include <string> 98 #include <tuple> 99 #include <utility> 100 101 using namespace clang; 102 103 enum FloatingRank { 104 BFloat16Rank, 105 Float16Rank, 106 HalfRank, 107 FloatRank, 108 DoubleRank, 109 LongDoubleRank, 110 Float128Rank, 111 Ibm128Rank 112 }; 113 114 /// \returns location that is relevant when searching for Doc comments related 115 /// to \p D. 116 static SourceLocation getDeclLocForCommentSearch(const Decl *D, 117 SourceManager &SourceMgr) { 118 assert(D); 119 120 // User can not attach documentation to implicit declarations. 121 if (D->isImplicit()) 122 return {}; 123 124 // User can not attach documentation to implicit instantiations. 125 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 126 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 127 return {}; 128 } 129 130 if (const auto *VD = dyn_cast<VarDecl>(D)) { 131 if (VD->isStaticDataMember() && 132 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 133 return {}; 134 } 135 136 if (const auto *CRD = dyn_cast<CXXRecordDecl>(D)) { 137 if (CRD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 138 return {}; 139 } 140 141 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D)) { 142 TemplateSpecializationKind TSK = CTSD->getSpecializationKind(); 143 if (TSK == TSK_ImplicitInstantiation || 144 TSK == TSK_Undeclared) 145 return {}; 146 } 147 148 if (const auto *ED = dyn_cast<EnumDecl>(D)) { 149 if (ED->getTemplateSpecializationKind() == TSK_ImplicitInstantiation) 150 return {}; 151 } 152 if (const auto *TD = dyn_cast<TagDecl>(D)) { 153 // When tag declaration (but not definition!) is part of the 154 // decl-specifier-seq of some other declaration, it doesn't get comment 155 if (TD->isEmbeddedInDeclarator() && !TD->isCompleteDefinition()) 156 return {}; 157 } 158 // TODO: handle comments for function parameters properly. 159 if (isa<ParmVarDecl>(D)) 160 return {}; 161 162 // TODO: we could look up template parameter documentation in the template 163 // documentation. 164 if (isa<TemplateTypeParmDecl>(D) || 165 isa<NonTypeTemplateParmDecl>(D) || 166 isa<TemplateTemplateParmDecl>(D)) 167 return {}; 168 169 // Find declaration location. 170 // For Objective-C declarations we generally don't expect to have multiple 171 // declarators, thus use declaration starting location as the "declaration 172 // location". 173 // For all other declarations multiple declarators are used quite frequently, 174 // so we use the location of the identifier as the "declaration location". 175 if (isa<ObjCMethodDecl>(D) || isa<ObjCContainerDecl>(D) || 176 isa<ObjCPropertyDecl>(D) || 177 isa<RedeclarableTemplateDecl>(D) || 178 isa<ClassTemplateSpecializationDecl>(D) || 179 // Allow association with Y across {} in `typedef struct X {} Y`. 180 isa<TypedefDecl>(D)) 181 return D->getBeginLoc(); 182 183 const SourceLocation DeclLoc = D->getLocation(); 184 if (DeclLoc.isMacroID()) { 185 if (isa<TypedefDecl>(D)) { 186 // If location of the typedef name is in a macro, it is because being 187 // declared via a macro. Try using declaration's starting location as 188 // the "declaration location". 189 return D->getBeginLoc(); 190 } 191 192 if (const auto *TD = dyn_cast<TagDecl>(D)) { 193 // If location of the tag decl is inside a macro, but the spelling of 194 // the tag name comes from a macro argument, it looks like a special 195 // macro like NS_ENUM is being used to define the tag decl. In that 196 // case, adjust the source location to the expansion loc so that we can 197 // attach the comment to the tag decl. 198 if (SourceMgr.isMacroArgExpansion(DeclLoc) && TD->isCompleteDefinition()) 199 return SourceMgr.getExpansionLoc(DeclLoc); 200 } 201 } 202 203 return DeclLoc; 204 } 205 206 RawComment *ASTContext::getRawCommentForDeclNoCacheImpl( 207 const Decl *D, const SourceLocation RepresentativeLocForDecl, 208 const std::map<unsigned, RawComment *> &CommentsInTheFile) const { 209 // If the declaration doesn't map directly to a location in a file, we 210 // can't find the comment. 211 if (RepresentativeLocForDecl.isInvalid() || 212 !RepresentativeLocForDecl.isFileID()) 213 return nullptr; 214 215 // If there are no comments anywhere, we won't find anything. 216 if (CommentsInTheFile.empty()) 217 return nullptr; 218 219 // Decompose the location for the declaration and find the beginning of the 220 // file buffer. 221 const std::pair<FileID, unsigned> DeclLocDecomp = 222 SourceMgr.getDecomposedLoc(RepresentativeLocForDecl); 223 224 // Slow path. 225 auto OffsetCommentBehindDecl = 226 CommentsInTheFile.lower_bound(DeclLocDecomp.second); 227 228 // First check whether we have a trailing comment. 229 if (OffsetCommentBehindDecl != CommentsInTheFile.end()) { 230 RawComment *CommentBehindDecl = OffsetCommentBehindDecl->second; 231 if ((CommentBehindDecl->isDocumentation() || 232 LangOpts.CommentOpts.ParseAllComments) && 233 CommentBehindDecl->isTrailingComment() && 234 (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D) || 235 isa<ObjCMethodDecl>(D) || isa<ObjCPropertyDecl>(D))) { 236 237 // Check that Doxygen trailing comment comes after the declaration, starts 238 // on the same line and in the same file as the declaration. 239 if (SourceMgr.getLineNumber(DeclLocDecomp.first, DeclLocDecomp.second) == 240 Comments.getCommentBeginLine(CommentBehindDecl, DeclLocDecomp.first, 241 OffsetCommentBehindDecl->first)) { 242 return CommentBehindDecl; 243 } 244 } 245 } 246 247 // The comment just after the declaration was not a trailing comment. 248 // Let's look at the previous comment. 249 if (OffsetCommentBehindDecl == CommentsInTheFile.begin()) 250 return nullptr; 251 252 auto OffsetCommentBeforeDecl = --OffsetCommentBehindDecl; 253 RawComment *CommentBeforeDecl = OffsetCommentBeforeDecl->second; 254 255 // Check that we actually have a non-member Doxygen comment. 256 if (!(CommentBeforeDecl->isDocumentation() || 257 LangOpts.CommentOpts.ParseAllComments) || 258 CommentBeforeDecl->isTrailingComment()) 259 return nullptr; 260 261 // Decompose the end of the comment. 262 const unsigned CommentEndOffset = 263 Comments.getCommentEndOffset(CommentBeforeDecl); 264 265 // Get the corresponding buffer. 266 bool Invalid = false; 267 const char *Buffer = SourceMgr.getBufferData(DeclLocDecomp.first, 268 &Invalid).data(); 269 if (Invalid) 270 return nullptr; 271 272 // Extract text between the comment and declaration. 273 StringRef Text(Buffer + CommentEndOffset, 274 DeclLocDecomp.second - CommentEndOffset); 275 276 // There should be no other declarations or preprocessor directives between 277 // comment and declaration. 278 if (Text.find_first_of(";{}#@") != StringRef::npos) 279 return nullptr; 280 281 return CommentBeforeDecl; 282 } 283 284 RawComment *ASTContext::getRawCommentForDeclNoCache(const Decl *D) const { 285 const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr); 286 287 // If the declaration doesn't map directly to a location in a file, we 288 // can't find the comment. 289 if (DeclLoc.isInvalid() || !DeclLoc.isFileID()) 290 return nullptr; 291 292 if (ExternalSource && !CommentsLoaded) { 293 ExternalSource->ReadComments(); 294 CommentsLoaded = true; 295 } 296 297 if (Comments.empty()) 298 return nullptr; 299 300 const FileID File = SourceMgr.getDecomposedLoc(DeclLoc).first; 301 const auto CommentsInThisFile = Comments.getCommentsInFile(File); 302 if (!CommentsInThisFile || CommentsInThisFile->empty()) 303 return nullptr; 304 305 return getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile); 306 } 307 308 void ASTContext::addComment(const RawComment &RC) { 309 assert(LangOpts.RetainCommentsFromSystemHeaders || 310 !SourceMgr.isInSystemHeader(RC.getSourceRange().getBegin())); 311 Comments.addComment(RC, LangOpts.CommentOpts, BumpAlloc); 312 } 313 314 /// If we have a 'templated' declaration for a template, adjust 'D' to 315 /// refer to the actual template. 316 /// If we have an implicit instantiation, adjust 'D' to refer to template. 317 static const Decl &adjustDeclToTemplate(const Decl &D) { 318 if (const auto *FD = dyn_cast<FunctionDecl>(&D)) { 319 // Is this function declaration part of a function template? 320 if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate()) 321 return *FTD; 322 323 // Nothing to do if function is not an implicit instantiation. 324 if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation) 325 return D; 326 327 // Function is an implicit instantiation of a function template? 328 if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate()) 329 return *FTD; 330 331 // Function is instantiated from a member definition of a class template? 332 if (const FunctionDecl *MemberDecl = 333 FD->getInstantiatedFromMemberFunction()) 334 return *MemberDecl; 335 336 return D; 337 } 338 if (const auto *VD = dyn_cast<VarDecl>(&D)) { 339 // Static data member is instantiated from a member definition of a class 340 // template? 341 if (VD->isStaticDataMember()) 342 if (const VarDecl *MemberDecl = VD->getInstantiatedFromStaticDataMember()) 343 return *MemberDecl; 344 345 return D; 346 } 347 if (const auto *CRD = dyn_cast<CXXRecordDecl>(&D)) { 348 // Is this class declaration part of a class template? 349 if (const ClassTemplateDecl *CTD = CRD->getDescribedClassTemplate()) 350 return *CTD; 351 352 // Class is an implicit instantiation of a class template or partial 353 // specialization? 354 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(CRD)) { 355 if (CTSD->getSpecializationKind() != TSK_ImplicitInstantiation) 356 return D; 357 llvm::PointerUnion<ClassTemplateDecl *, 358 ClassTemplatePartialSpecializationDecl *> 359 PU = CTSD->getSpecializedTemplateOrPartial(); 360 return PU.is<ClassTemplateDecl *>() 361 ? *static_cast<const Decl *>(PU.get<ClassTemplateDecl *>()) 362 : *static_cast<const Decl *>( 363 PU.get<ClassTemplatePartialSpecializationDecl *>()); 364 } 365 366 // Class is instantiated from a member definition of a class template? 367 if (const MemberSpecializationInfo *Info = 368 CRD->getMemberSpecializationInfo()) 369 return *Info->getInstantiatedFrom(); 370 371 return D; 372 } 373 if (const auto *ED = dyn_cast<EnumDecl>(&D)) { 374 // Enum is instantiated from a member definition of a class template? 375 if (const EnumDecl *MemberDecl = ED->getInstantiatedFromMemberEnum()) 376 return *MemberDecl; 377 378 return D; 379 } 380 // FIXME: Adjust alias templates? 381 return D; 382 } 383 384 const RawComment *ASTContext::getRawCommentForAnyRedecl( 385 const Decl *D, 386 const Decl **OriginalDecl) const { 387 if (!D) { 388 if (OriginalDecl) 389 OriginalDecl = nullptr; 390 return nullptr; 391 } 392 393 D = &adjustDeclToTemplate(*D); 394 395 // Any comment directly attached to D? 396 { 397 auto DeclComment = DeclRawComments.find(D); 398 if (DeclComment != DeclRawComments.end()) { 399 if (OriginalDecl) 400 *OriginalDecl = D; 401 return DeclComment->second; 402 } 403 } 404 405 // Any comment attached to any redeclaration of D? 406 const Decl *CanonicalD = D->getCanonicalDecl(); 407 if (!CanonicalD) 408 return nullptr; 409 410 { 411 auto RedeclComment = RedeclChainComments.find(CanonicalD); 412 if (RedeclComment != RedeclChainComments.end()) { 413 if (OriginalDecl) 414 *OriginalDecl = RedeclComment->second; 415 auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second); 416 assert(CommentAtRedecl != DeclRawComments.end() && 417 "This decl is supposed to have comment attached."); 418 return CommentAtRedecl->second; 419 } 420 } 421 422 // Any redeclarations of D that we haven't checked for comments yet? 423 // We can't use DenseMap::iterator directly since it'd get invalid. 424 auto LastCheckedRedecl = [this, CanonicalD]() -> const Decl * { 425 auto LookupRes = CommentlessRedeclChains.find(CanonicalD); 426 if (LookupRes != CommentlessRedeclChains.end()) 427 return LookupRes->second; 428 return nullptr; 429 }(); 430 431 for (const auto Redecl : D->redecls()) { 432 assert(Redecl); 433 // Skip all redeclarations that have been checked previously. 434 if (LastCheckedRedecl) { 435 if (LastCheckedRedecl == Redecl) { 436 LastCheckedRedecl = nullptr; 437 } 438 continue; 439 } 440 const RawComment *RedeclComment = getRawCommentForDeclNoCache(Redecl); 441 if (RedeclComment) { 442 cacheRawCommentForDecl(*Redecl, *RedeclComment); 443 if (OriginalDecl) 444 *OriginalDecl = Redecl; 445 return RedeclComment; 446 } 447 CommentlessRedeclChains[CanonicalD] = Redecl; 448 } 449 450 if (OriginalDecl) 451 *OriginalDecl = nullptr; 452 return nullptr; 453 } 454 455 void ASTContext::cacheRawCommentForDecl(const Decl &OriginalD, 456 const RawComment &Comment) const { 457 assert(Comment.isDocumentation() || LangOpts.CommentOpts.ParseAllComments); 458 DeclRawComments.try_emplace(&OriginalD, &Comment); 459 const Decl *const CanonicalDecl = OriginalD.getCanonicalDecl(); 460 RedeclChainComments.try_emplace(CanonicalDecl, &OriginalD); 461 CommentlessRedeclChains.erase(CanonicalDecl); 462 } 463 464 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, 465 SmallVectorImpl<const NamedDecl *> &Redeclared) { 466 const DeclContext *DC = ObjCMethod->getDeclContext(); 467 if (const auto *IMD = dyn_cast<ObjCImplDecl>(DC)) { 468 const ObjCInterfaceDecl *ID = IMD->getClassInterface(); 469 if (!ID) 470 return; 471 // Add redeclared method here. 472 for (const auto *Ext : ID->known_extensions()) { 473 if (ObjCMethodDecl *RedeclaredMethod = 474 Ext->getMethod(ObjCMethod->getSelector(), 475 ObjCMethod->isInstanceMethod())) 476 Redeclared.push_back(RedeclaredMethod); 477 } 478 } 479 } 480 481 void ASTContext::attachCommentsToJustParsedDecls(ArrayRef<Decl *> Decls, 482 const Preprocessor *PP) { 483 if (Comments.empty() || Decls.empty()) 484 return; 485 486 FileID File; 487 for (Decl *D : Decls) { 488 SourceLocation Loc = D->getLocation(); 489 if (Loc.isValid()) { 490 // See if there are any new comments that are not attached to a decl. 491 // The location doesn't have to be precise - we care only about the file. 492 File = SourceMgr.getDecomposedLoc(Loc).first; 493 break; 494 } 495 } 496 497 if (File.isInvalid()) 498 return; 499 500 auto CommentsInThisFile = Comments.getCommentsInFile(File); 501 if (!CommentsInThisFile || CommentsInThisFile->empty() || 502 CommentsInThisFile->rbegin()->second->isAttached()) 503 return; 504 505 // There is at least one comment not attached to a decl. 506 // Maybe it should be attached to one of Decls? 507 // 508 // Note that this way we pick up not only comments that precede the 509 // declaration, but also comments that *follow* the declaration -- thanks to 510 // the lookahead in the lexer: we've consumed the semicolon and looked 511 // ahead through comments. 512 513 for (const Decl *D : Decls) { 514 assert(D); 515 if (D->isInvalidDecl()) 516 continue; 517 518 D = &adjustDeclToTemplate(*D); 519 520 const SourceLocation DeclLoc = getDeclLocForCommentSearch(D, SourceMgr); 521 522 if (DeclLoc.isInvalid() || !DeclLoc.isFileID()) 523 continue; 524 525 if (DeclRawComments.count(D) > 0) 526 continue; 527 528 if (RawComment *const DocComment = 529 getRawCommentForDeclNoCacheImpl(D, DeclLoc, *CommentsInThisFile)) { 530 cacheRawCommentForDecl(*D, *DocComment); 531 comments::FullComment *FC = DocComment->parse(*this, PP, D); 532 ParsedComments[D->getCanonicalDecl()] = FC; 533 } 534 } 535 } 536 537 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC, 538 const Decl *D) const { 539 auto *ThisDeclInfo = new (*this) comments::DeclInfo; 540 ThisDeclInfo->CommentDecl = D; 541 ThisDeclInfo->IsFilled = false; 542 ThisDeclInfo->fill(); 543 ThisDeclInfo->CommentDecl = FC->getDecl(); 544 if (!ThisDeclInfo->TemplateParameters) 545 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters; 546 comments::FullComment *CFC = 547 new (*this) comments::FullComment(FC->getBlocks(), 548 ThisDeclInfo); 549 return CFC; 550 } 551 552 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const { 553 const RawComment *RC = getRawCommentForDeclNoCache(D); 554 return RC ? RC->parse(*this, nullptr, D) : nullptr; 555 } 556 557 comments::FullComment *ASTContext::getCommentForDecl( 558 const Decl *D, 559 const Preprocessor *PP) const { 560 if (!D || D->isInvalidDecl()) 561 return nullptr; 562 D = &adjustDeclToTemplate(*D); 563 564 const Decl *Canonical = D->getCanonicalDecl(); 565 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos = 566 ParsedComments.find(Canonical); 567 568 if (Pos != ParsedComments.end()) { 569 if (Canonical != D) { 570 comments::FullComment *FC = Pos->second; 571 comments::FullComment *CFC = cloneFullComment(FC, D); 572 return CFC; 573 } 574 return Pos->second; 575 } 576 577 const Decl *OriginalDecl = nullptr; 578 579 const RawComment *RC = getRawCommentForAnyRedecl(D, &OriginalDecl); 580 if (!RC) { 581 if (isa<ObjCMethodDecl>(D) || isa<FunctionDecl>(D)) { 582 SmallVector<const NamedDecl*, 8> Overridden; 583 const auto *OMD = dyn_cast<ObjCMethodDecl>(D); 584 if (OMD && OMD->isPropertyAccessor()) 585 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl()) 586 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP)) 587 return cloneFullComment(FC, D); 588 if (OMD) 589 addRedeclaredMethods(OMD, Overridden); 590 getOverriddenMethods(dyn_cast<NamedDecl>(D), Overridden); 591 for (unsigned i = 0, e = Overridden.size(); i < e; i++) 592 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP)) 593 return cloneFullComment(FC, D); 594 } 595 else if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { 596 // Attach any tag type's documentation to its typedef if latter 597 // does not have one of its own. 598 QualType QT = TD->getUnderlyingType(); 599 if (const auto *TT = QT->getAs<TagType>()) 600 if (const Decl *TD = TT->getDecl()) 601 if (comments::FullComment *FC = getCommentForDecl(TD, PP)) 602 return cloneFullComment(FC, D); 603 } 604 else if (const auto *IC = dyn_cast<ObjCInterfaceDecl>(D)) { 605 while (IC->getSuperClass()) { 606 IC = IC->getSuperClass(); 607 if (comments::FullComment *FC = getCommentForDecl(IC, PP)) 608 return cloneFullComment(FC, D); 609 } 610 } 611 else if (const auto *CD = dyn_cast<ObjCCategoryDecl>(D)) { 612 if (const ObjCInterfaceDecl *IC = CD->getClassInterface()) 613 if (comments::FullComment *FC = getCommentForDecl(IC, PP)) 614 return cloneFullComment(FC, D); 615 } 616 else if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) { 617 if (!(RD = RD->getDefinition())) 618 return nullptr; 619 // Check non-virtual bases. 620 for (const auto &I : RD->bases()) { 621 if (I.isVirtual() || (I.getAccessSpecifier() != AS_public)) 622 continue; 623 QualType Ty = I.getType(); 624 if (Ty.isNull()) 625 continue; 626 if (const CXXRecordDecl *NonVirtualBase = Ty->getAsCXXRecordDecl()) { 627 if (!(NonVirtualBase= NonVirtualBase->getDefinition())) 628 continue; 629 630 if (comments::FullComment *FC = getCommentForDecl((NonVirtualBase), PP)) 631 return cloneFullComment(FC, D); 632 } 633 } 634 // Check virtual bases. 635 for (const auto &I : RD->vbases()) { 636 if (I.getAccessSpecifier() != AS_public) 637 continue; 638 QualType Ty = I.getType(); 639 if (Ty.isNull()) 640 continue; 641 if (const CXXRecordDecl *VirtualBase = Ty->getAsCXXRecordDecl()) { 642 if (!(VirtualBase= VirtualBase->getDefinition())) 643 continue; 644 if (comments::FullComment *FC = getCommentForDecl((VirtualBase), PP)) 645 return cloneFullComment(FC, D); 646 } 647 } 648 } 649 return nullptr; 650 } 651 652 // If the RawComment was attached to other redeclaration of this Decl, we 653 // should parse the comment in context of that other Decl. This is important 654 // because comments can contain references to parameter names which can be 655 // different across redeclarations. 656 if (D != OriginalDecl && OriginalDecl) 657 return getCommentForDecl(OriginalDecl, PP); 658 659 comments::FullComment *FC = RC->parse(*this, PP, D); 660 ParsedComments[Canonical] = FC; 661 return FC; 662 } 663 664 void 665 ASTContext::CanonicalTemplateTemplateParm::Profile(llvm::FoldingSetNodeID &ID, 666 const ASTContext &C, 667 TemplateTemplateParmDecl *Parm) { 668 ID.AddInteger(Parm->getDepth()); 669 ID.AddInteger(Parm->getPosition()); 670 ID.AddBoolean(Parm->isParameterPack()); 671 672 TemplateParameterList *Params = Parm->getTemplateParameters(); 673 ID.AddInteger(Params->size()); 674 for (TemplateParameterList::const_iterator P = Params->begin(), 675 PEnd = Params->end(); 676 P != PEnd; ++P) { 677 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { 678 ID.AddInteger(0); 679 ID.AddBoolean(TTP->isParameterPack()); 680 const TypeConstraint *TC = TTP->getTypeConstraint(); 681 ID.AddBoolean(TC != nullptr); 682 if (TC) 683 TC->getImmediatelyDeclaredConstraint()->Profile(ID, C, 684 /*Canonical=*/true); 685 if (TTP->isExpandedParameterPack()) { 686 ID.AddBoolean(true); 687 ID.AddInteger(TTP->getNumExpansionParameters()); 688 } else 689 ID.AddBoolean(false); 690 continue; 691 } 692 693 if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) { 694 ID.AddInteger(1); 695 ID.AddBoolean(NTTP->isParameterPack()); 696 ID.AddPointer(NTTP->getType().getCanonicalType().getAsOpaquePtr()); 697 if (NTTP->isExpandedParameterPack()) { 698 ID.AddBoolean(true); 699 ID.AddInteger(NTTP->getNumExpansionTypes()); 700 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) { 701 QualType T = NTTP->getExpansionType(I); 702 ID.AddPointer(T.getCanonicalType().getAsOpaquePtr()); 703 } 704 } else 705 ID.AddBoolean(false); 706 continue; 707 } 708 709 auto *TTP = cast<TemplateTemplateParmDecl>(*P); 710 ID.AddInteger(2); 711 Profile(ID, C, TTP); 712 } 713 Expr *RequiresClause = Parm->getTemplateParameters()->getRequiresClause(); 714 ID.AddBoolean(RequiresClause != nullptr); 715 if (RequiresClause) 716 RequiresClause->Profile(ID, C, /*Canonical=*/true); 717 } 718 719 static Expr * 720 canonicalizeImmediatelyDeclaredConstraint(const ASTContext &C, Expr *IDC, 721 QualType ConstrainedType) { 722 // This is a bit ugly - we need to form a new immediately-declared 723 // constraint that references the new parameter; this would ideally 724 // require semantic analysis (e.g. template<C T> struct S {}; - the 725 // converted arguments of C<T> could be an argument pack if C is 726 // declared as template<typename... T> concept C = ...). 727 // We don't have semantic analysis here so we dig deep into the 728 // ready-made constraint expr and change the thing manually. 729 ConceptSpecializationExpr *CSE; 730 if (const auto *Fold = dyn_cast<CXXFoldExpr>(IDC)) 731 CSE = cast<ConceptSpecializationExpr>(Fold->getLHS()); 732 else 733 CSE = cast<ConceptSpecializationExpr>(IDC); 734 ArrayRef<TemplateArgument> OldConverted = CSE->getTemplateArguments(); 735 SmallVector<TemplateArgument, 3> NewConverted; 736 NewConverted.reserve(OldConverted.size()); 737 if (OldConverted.front().getKind() == TemplateArgument::Pack) { 738 // The case: 739 // template<typename... T> concept C = true; 740 // template<C<int> T> struct S; -> constraint is C<{T, int}> 741 NewConverted.push_back(ConstrainedType); 742 for (auto &Arg : OldConverted.front().pack_elements().drop_front(1)) 743 NewConverted.push_back(Arg); 744 TemplateArgument NewPack(NewConverted); 745 746 NewConverted.clear(); 747 NewConverted.push_back(NewPack); 748 assert(OldConverted.size() == 1 && 749 "Template parameter pack should be the last parameter"); 750 } else { 751 assert(OldConverted.front().getKind() == TemplateArgument::Type && 752 "Unexpected first argument kind for immediately-declared " 753 "constraint"); 754 NewConverted.push_back(ConstrainedType); 755 for (auto &Arg : OldConverted.drop_front(1)) 756 NewConverted.push_back(Arg); 757 } 758 Expr *NewIDC = ConceptSpecializationExpr::Create( 759 C, CSE->getNamedConcept(), NewConverted, nullptr, 760 CSE->isInstantiationDependent(), CSE->containsUnexpandedParameterPack()); 761 762 if (auto *OrigFold = dyn_cast<CXXFoldExpr>(IDC)) 763 NewIDC = new (C) CXXFoldExpr( 764 OrigFold->getType(), /*Callee*/nullptr, SourceLocation(), NewIDC, 765 BinaryOperatorKind::BO_LAnd, SourceLocation(), /*RHS=*/nullptr, 766 SourceLocation(), /*NumExpansions=*/None); 767 return NewIDC; 768 } 769 770 TemplateTemplateParmDecl * 771 ASTContext::getCanonicalTemplateTemplateParmDecl( 772 TemplateTemplateParmDecl *TTP) const { 773 // Check if we already have a canonical template template parameter. 774 llvm::FoldingSetNodeID ID; 775 CanonicalTemplateTemplateParm::Profile(ID, *this, TTP); 776 void *InsertPos = nullptr; 777 CanonicalTemplateTemplateParm *Canonical 778 = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); 779 if (Canonical) 780 return Canonical->getParam(); 781 782 // Build a canonical template parameter list. 783 TemplateParameterList *Params = TTP->getTemplateParameters(); 784 SmallVector<NamedDecl *, 4> CanonParams; 785 CanonParams.reserve(Params->size()); 786 for (TemplateParameterList::const_iterator P = Params->begin(), 787 PEnd = Params->end(); 788 P != PEnd; ++P) { 789 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { 790 TemplateTypeParmDecl *NewTTP = TemplateTypeParmDecl::Create(*this, 791 getTranslationUnitDecl(), SourceLocation(), SourceLocation(), 792 TTP->getDepth(), TTP->getIndex(), nullptr, false, 793 TTP->isParameterPack(), TTP->hasTypeConstraint(), 794 TTP->isExpandedParameterPack() ? 795 llvm::Optional<unsigned>(TTP->getNumExpansionParameters()) : None); 796 if (const auto *TC = TTP->getTypeConstraint()) { 797 QualType ParamAsArgument(NewTTP->getTypeForDecl(), 0); 798 Expr *NewIDC = canonicalizeImmediatelyDeclaredConstraint( 799 *this, TC->getImmediatelyDeclaredConstraint(), 800 ParamAsArgument); 801 TemplateArgumentListInfo CanonArgsAsWritten; 802 if (auto *Args = TC->getTemplateArgsAsWritten()) 803 for (const auto &ArgLoc : Args->arguments()) 804 CanonArgsAsWritten.addArgument( 805 TemplateArgumentLoc(ArgLoc.getArgument(), 806 TemplateArgumentLocInfo())); 807 NewTTP->setTypeConstraint( 808 NestedNameSpecifierLoc(), 809 DeclarationNameInfo(TC->getNamedConcept()->getDeclName(), 810 SourceLocation()), /*FoundDecl=*/nullptr, 811 // Actually canonicalizing a TemplateArgumentLoc is difficult so we 812 // simply omit the ArgsAsWritten 813 TC->getNamedConcept(), /*ArgsAsWritten=*/nullptr, NewIDC); 814 } 815 CanonParams.push_back(NewTTP); 816 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) { 817 QualType T = getCanonicalType(NTTP->getType()); 818 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T); 819 NonTypeTemplateParmDecl *Param; 820 if (NTTP->isExpandedParameterPack()) { 821 SmallVector<QualType, 2> ExpandedTypes; 822 SmallVector<TypeSourceInfo *, 2> ExpandedTInfos; 823 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) { 824 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I))); 825 ExpandedTInfos.push_back( 826 getTrivialTypeSourceInfo(ExpandedTypes.back())); 827 } 828 829 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 830 SourceLocation(), 831 SourceLocation(), 832 NTTP->getDepth(), 833 NTTP->getPosition(), nullptr, 834 T, 835 TInfo, 836 ExpandedTypes, 837 ExpandedTInfos); 838 } else { 839 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 840 SourceLocation(), 841 SourceLocation(), 842 NTTP->getDepth(), 843 NTTP->getPosition(), nullptr, 844 T, 845 NTTP->isParameterPack(), 846 TInfo); 847 } 848 if (AutoType *AT = T->getContainedAutoType()) { 849 if (AT->isConstrained()) { 850 Param->setPlaceholderTypeConstraint( 851 canonicalizeImmediatelyDeclaredConstraint( 852 *this, NTTP->getPlaceholderTypeConstraint(), T)); 853 } 854 } 855 CanonParams.push_back(Param); 856 857 } else 858 CanonParams.push_back(getCanonicalTemplateTemplateParmDecl( 859 cast<TemplateTemplateParmDecl>(*P))); 860 } 861 862 Expr *CanonRequiresClause = nullptr; 863 if (Expr *RequiresClause = TTP->getTemplateParameters()->getRequiresClause()) 864 CanonRequiresClause = RequiresClause; 865 866 TemplateTemplateParmDecl *CanonTTP 867 = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 868 SourceLocation(), TTP->getDepth(), 869 TTP->getPosition(), 870 TTP->isParameterPack(), 871 nullptr, 872 TemplateParameterList::Create(*this, SourceLocation(), 873 SourceLocation(), 874 CanonParams, 875 SourceLocation(), 876 CanonRequiresClause)); 877 878 // Get the new insert position for the node we care about. 879 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); 880 assert(!Canonical && "Shouldn't be in the map!"); 881 (void)Canonical; 882 883 // Create the canonical template template parameter entry. 884 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP); 885 CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos); 886 return CanonTTP; 887 } 888 889 TargetCXXABI::Kind ASTContext::getCXXABIKind() const { 890 auto Kind = getTargetInfo().getCXXABI().getKind(); 891 return getLangOpts().CXXABI.getValueOr(Kind); 892 } 893 894 CXXABI *ASTContext::createCXXABI(const TargetInfo &T) { 895 if (!LangOpts.CPlusPlus) return nullptr; 896 897 switch (getCXXABIKind()) { 898 case TargetCXXABI::AppleARM64: 899 case TargetCXXABI::Fuchsia: 900 case TargetCXXABI::GenericARM: // Same as Itanium at this level 901 case TargetCXXABI::iOS: 902 case TargetCXXABI::WatchOS: 903 case TargetCXXABI::GenericAArch64: 904 case TargetCXXABI::GenericMIPS: 905 case TargetCXXABI::GenericItanium: 906 case TargetCXXABI::WebAssembly: 907 case TargetCXXABI::XL: 908 return CreateItaniumCXXABI(*this); 909 case TargetCXXABI::Microsoft: 910 return CreateMicrosoftCXXABI(*this); 911 } 912 llvm_unreachable("Invalid CXXABI type!"); 913 } 914 915 interp::Context &ASTContext::getInterpContext() { 916 if (!InterpContext) { 917 InterpContext.reset(new interp::Context(*this)); 918 } 919 return *InterpContext.get(); 920 } 921 922 ParentMapContext &ASTContext::getParentMapContext() { 923 if (!ParentMapCtx) 924 ParentMapCtx.reset(new ParentMapContext(*this)); 925 return *ParentMapCtx.get(); 926 } 927 928 static const LangASMap *getAddressSpaceMap(const TargetInfo &T, 929 const LangOptions &LOpts) { 930 if (LOpts.FakeAddressSpaceMap) { 931 // The fake address space map must have a distinct entry for each 932 // language-specific address space. 933 static const unsigned FakeAddrSpaceMap[] = { 934 0, // Default 935 1, // opencl_global 936 3, // opencl_local 937 2, // opencl_constant 938 0, // opencl_private 939 4, // opencl_generic 940 5, // opencl_global_device 941 6, // opencl_global_host 942 7, // cuda_device 943 8, // cuda_constant 944 9, // cuda_shared 945 1, // sycl_global 946 5, // sycl_global_device 947 6, // sycl_global_host 948 3, // sycl_local 949 0, // sycl_private 950 10, // ptr32_sptr 951 11, // ptr32_uptr 952 12 // ptr64 953 }; 954 return &FakeAddrSpaceMap; 955 } else { 956 return &T.getAddressSpaceMap(); 957 } 958 } 959 960 static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI, 961 const LangOptions &LangOpts) { 962 switch (LangOpts.getAddressSpaceMapMangling()) { 963 case LangOptions::ASMM_Target: 964 return TI.useAddressSpaceMapMangling(); 965 case LangOptions::ASMM_On: 966 return true; 967 case LangOptions::ASMM_Off: 968 return false; 969 } 970 llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything."); 971 } 972 973 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM, 974 IdentifierTable &idents, SelectorTable &sels, 975 Builtin::Context &builtins, TranslationUnitKind TUKind) 976 : ConstantArrayTypes(this_()), FunctionProtoTypes(this_()), 977 TemplateSpecializationTypes(this_()), 978 DependentTemplateSpecializationTypes(this_()), AutoTypes(this_()), 979 SubstTemplateTemplateParmPacks(this_()), 980 CanonTemplateTemplateParms(this_()), SourceMgr(SM), LangOpts(LOpts), 981 NoSanitizeL(new NoSanitizeList(LangOpts.NoSanitizeFiles, SM)), 982 XRayFilter(new XRayFunctionFilter(LangOpts.XRayAlwaysInstrumentFiles, 983 LangOpts.XRayNeverInstrumentFiles, 984 LangOpts.XRayAttrListFiles, SM)), 985 ProfList(new ProfileList(LangOpts.ProfileListFiles, SM)), 986 PrintingPolicy(LOpts), Idents(idents), Selectors(sels), 987 BuiltinInfo(builtins), TUKind(TUKind), DeclarationNames(*this), 988 Comments(SM), CommentCommandTraits(BumpAlloc, LOpts.CommentOpts), 989 CompCategories(this_()), LastSDM(nullptr, 0) { 990 addTranslationUnitDecl(); 991 } 992 993 void ASTContext::cleanup() { 994 // Release the DenseMaps associated with DeclContext objects. 995 // FIXME: Is this the ideal solution? 996 ReleaseDeclContextMaps(); 997 998 // Call all of the deallocation functions on all of their targets. 999 for (auto &Pair : Deallocations) 1000 (Pair.first)(Pair.second); 1001 Deallocations.clear(); 1002 1003 // ASTRecordLayout objects in ASTRecordLayouts must always be destroyed 1004 // because they can contain DenseMaps. 1005 for (llvm::DenseMap<const ObjCContainerDecl*, 1006 const ASTRecordLayout*>::iterator 1007 I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; ) 1008 // Increment in loop to prevent using deallocated memory. 1009 if (auto *R = const_cast<ASTRecordLayout *>((I++)->second)) 1010 R->Destroy(*this); 1011 ObjCLayouts.clear(); 1012 1013 for (llvm::DenseMap<const RecordDecl*, const ASTRecordLayout*>::iterator 1014 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) { 1015 // Increment in loop to prevent using deallocated memory. 1016 if (auto *R = const_cast<ASTRecordLayout *>((I++)->second)) 1017 R->Destroy(*this); 1018 } 1019 ASTRecordLayouts.clear(); 1020 1021 for (llvm::DenseMap<const Decl*, AttrVec*>::iterator A = DeclAttrs.begin(), 1022 AEnd = DeclAttrs.end(); 1023 A != AEnd; ++A) 1024 A->second->~AttrVec(); 1025 DeclAttrs.clear(); 1026 1027 for (const auto &Value : ModuleInitializers) 1028 Value.second->~PerModuleInitializers(); 1029 ModuleInitializers.clear(); 1030 } 1031 1032 ASTContext::~ASTContext() { cleanup(); } 1033 1034 void ASTContext::setTraversalScope(const std::vector<Decl *> &TopLevelDecls) { 1035 TraversalScope = TopLevelDecls; 1036 getParentMapContext().clear(); 1037 } 1038 1039 void ASTContext::AddDeallocation(void (*Callback)(void *), void *Data) const { 1040 Deallocations.push_back({Callback, Data}); 1041 } 1042 1043 void 1044 ASTContext::setExternalSource(IntrusiveRefCntPtr<ExternalASTSource> Source) { 1045 ExternalSource = std::move(Source); 1046 } 1047 1048 void ASTContext::PrintStats() const { 1049 llvm::errs() << "\n*** AST Context Stats:\n"; 1050 llvm::errs() << " " << Types.size() << " types total.\n"; 1051 1052 unsigned counts[] = { 1053 #define TYPE(Name, Parent) 0, 1054 #define ABSTRACT_TYPE(Name, Parent) 1055 #include "clang/AST/TypeNodes.inc" 1056 0 // Extra 1057 }; 1058 1059 for (unsigned i = 0, e = Types.size(); i != e; ++i) { 1060 Type *T = Types[i]; 1061 counts[(unsigned)T->getTypeClass()]++; 1062 } 1063 1064 unsigned Idx = 0; 1065 unsigned TotalBytes = 0; 1066 #define TYPE(Name, Parent) \ 1067 if (counts[Idx]) \ 1068 llvm::errs() << " " << counts[Idx] << " " << #Name \ 1069 << " types, " << sizeof(Name##Type) << " each " \ 1070 << "(" << counts[Idx] * sizeof(Name##Type) \ 1071 << " bytes)\n"; \ 1072 TotalBytes += counts[Idx] * sizeof(Name##Type); \ 1073 ++Idx; 1074 #define ABSTRACT_TYPE(Name, Parent) 1075 #include "clang/AST/TypeNodes.inc" 1076 1077 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; 1078 1079 // Implicit special member functions. 1080 llvm::errs() << NumImplicitDefaultConstructorsDeclared << "/" 1081 << NumImplicitDefaultConstructors 1082 << " implicit default constructors created\n"; 1083 llvm::errs() << NumImplicitCopyConstructorsDeclared << "/" 1084 << NumImplicitCopyConstructors 1085 << " implicit copy constructors created\n"; 1086 if (getLangOpts().CPlusPlus) 1087 llvm::errs() << NumImplicitMoveConstructorsDeclared << "/" 1088 << NumImplicitMoveConstructors 1089 << " implicit move constructors created\n"; 1090 llvm::errs() << NumImplicitCopyAssignmentOperatorsDeclared << "/" 1091 << NumImplicitCopyAssignmentOperators 1092 << " implicit copy assignment operators created\n"; 1093 if (getLangOpts().CPlusPlus) 1094 llvm::errs() << NumImplicitMoveAssignmentOperatorsDeclared << "/" 1095 << NumImplicitMoveAssignmentOperators 1096 << " implicit move assignment operators created\n"; 1097 llvm::errs() << NumImplicitDestructorsDeclared << "/" 1098 << NumImplicitDestructors 1099 << " implicit destructors created\n"; 1100 1101 if (ExternalSource) { 1102 llvm::errs() << "\n"; 1103 ExternalSource->PrintStats(); 1104 } 1105 1106 BumpAlloc.PrintStats(); 1107 } 1108 1109 void ASTContext::mergeDefinitionIntoModule(NamedDecl *ND, Module *M, 1110 bool NotifyListeners) { 1111 if (NotifyListeners) 1112 if (auto *Listener = getASTMutationListener()) 1113 Listener->RedefinedHiddenDefinition(ND, M); 1114 1115 MergedDefModules[cast<NamedDecl>(ND->getCanonicalDecl())].push_back(M); 1116 } 1117 1118 void ASTContext::deduplicateMergedDefinitonsFor(NamedDecl *ND) { 1119 auto It = MergedDefModules.find(cast<NamedDecl>(ND->getCanonicalDecl())); 1120 if (It == MergedDefModules.end()) 1121 return; 1122 1123 auto &Merged = It->second; 1124 llvm::DenseSet<Module*> Found; 1125 for (Module *&M : Merged) 1126 if (!Found.insert(M).second) 1127 M = nullptr; 1128 llvm::erase_value(Merged, nullptr); 1129 } 1130 1131 ArrayRef<Module *> 1132 ASTContext::getModulesWithMergedDefinition(const NamedDecl *Def) { 1133 auto MergedIt = 1134 MergedDefModules.find(cast<NamedDecl>(Def->getCanonicalDecl())); 1135 if (MergedIt == MergedDefModules.end()) 1136 return None; 1137 return MergedIt->second; 1138 } 1139 1140 void ASTContext::PerModuleInitializers::resolve(ASTContext &Ctx) { 1141 if (LazyInitializers.empty()) 1142 return; 1143 1144 auto *Source = Ctx.getExternalSource(); 1145 assert(Source && "lazy initializers but no external source"); 1146 1147 auto LazyInits = std::move(LazyInitializers); 1148 LazyInitializers.clear(); 1149 1150 for (auto ID : LazyInits) 1151 Initializers.push_back(Source->GetExternalDecl(ID)); 1152 1153 assert(LazyInitializers.empty() && 1154 "GetExternalDecl for lazy module initializer added more inits"); 1155 } 1156 1157 void ASTContext::addModuleInitializer(Module *M, Decl *D) { 1158 // One special case: if we add a module initializer that imports another 1159 // module, and that module's only initializer is an ImportDecl, simplify. 1160 if (const auto *ID = dyn_cast<ImportDecl>(D)) { 1161 auto It = ModuleInitializers.find(ID->getImportedModule()); 1162 1163 // Maybe the ImportDecl does nothing at all. (Common case.) 1164 if (It == ModuleInitializers.end()) 1165 return; 1166 1167 // Maybe the ImportDecl only imports another ImportDecl. 1168 auto &Imported = *It->second; 1169 if (Imported.Initializers.size() + Imported.LazyInitializers.size() == 1) { 1170 Imported.resolve(*this); 1171 auto *OnlyDecl = Imported.Initializers.front(); 1172 if (isa<ImportDecl>(OnlyDecl)) 1173 D = OnlyDecl; 1174 } 1175 } 1176 1177 auto *&Inits = ModuleInitializers[M]; 1178 if (!Inits) 1179 Inits = new (*this) PerModuleInitializers; 1180 Inits->Initializers.push_back(D); 1181 } 1182 1183 void ASTContext::addLazyModuleInitializers(Module *M, ArrayRef<uint32_t> IDs) { 1184 auto *&Inits = ModuleInitializers[M]; 1185 if (!Inits) 1186 Inits = new (*this) PerModuleInitializers; 1187 Inits->LazyInitializers.insert(Inits->LazyInitializers.end(), 1188 IDs.begin(), IDs.end()); 1189 } 1190 1191 ArrayRef<Decl *> ASTContext::getModuleInitializers(Module *M) { 1192 auto It = ModuleInitializers.find(M); 1193 if (It == ModuleInitializers.end()) 1194 return None; 1195 1196 auto *Inits = It->second; 1197 Inits->resolve(*this); 1198 return Inits->Initializers; 1199 } 1200 1201 ExternCContextDecl *ASTContext::getExternCContextDecl() const { 1202 if (!ExternCContext) 1203 ExternCContext = ExternCContextDecl::Create(*this, getTranslationUnitDecl()); 1204 1205 return ExternCContext; 1206 } 1207 1208 BuiltinTemplateDecl * 1209 ASTContext::buildBuiltinTemplateDecl(BuiltinTemplateKind BTK, 1210 const IdentifierInfo *II) const { 1211 auto *BuiltinTemplate = 1212 BuiltinTemplateDecl::Create(*this, getTranslationUnitDecl(), II, BTK); 1213 BuiltinTemplate->setImplicit(); 1214 getTranslationUnitDecl()->addDecl(BuiltinTemplate); 1215 1216 return BuiltinTemplate; 1217 } 1218 1219 BuiltinTemplateDecl * 1220 ASTContext::getMakeIntegerSeqDecl() const { 1221 if (!MakeIntegerSeqDecl) 1222 MakeIntegerSeqDecl = buildBuiltinTemplateDecl(BTK__make_integer_seq, 1223 getMakeIntegerSeqName()); 1224 return MakeIntegerSeqDecl; 1225 } 1226 1227 BuiltinTemplateDecl * 1228 ASTContext::getTypePackElementDecl() const { 1229 if (!TypePackElementDecl) 1230 TypePackElementDecl = buildBuiltinTemplateDecl(BTK__type_pack_element, 1231 getTypePackElementName()); 1232 return TypePackElementDecl; 1233 } 1234 1235 RecordDecl *ASTContext::buildImplicitRecord(StringRef Name, 1236 RecordDecl::TagKind TK) const { 1237 SourceLocation Loc; 1238 RecordDecl *NewDecl; 1239 if (getLangOpts().CPlusPlus) 1240 NewDecl = CXXRecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, 1241 Loc, &Idents.get(Name)); 1242 else 1243 NewDecl = RecordDecl::Create(*this, TK, getTranslationUnitDecl(), Loc, Loc, 1244 &Idents.get(Name)); 1245 NewDecl->setImplicit(); 1246 NewDecl->addAttr(TypeVisibilityAttr::CreateImplicit( 1247 const_cast<ASTContext &>(*this), TypeVisibilityAttr::Default)); 1248 return NewDecl; 1249 } 1250 1251 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T, 1252 StringRef Name) const { 1253 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T); 1254 TypedefDecl *NewDecl = TypedefDecl::Create( 1255 const_cast<ASTContext &>(*this), getTranslationUnitDecl(), 1256 SourceLocation(), SourceLocation(), &Idents.get(Name), TInfo); 1257 NewDecl->setImplicit(); 1258 return NewDecl; 1259 } 1260 1261 TypedefDecl *ASTContext::getInt128Decl() const { 1262 if (!Int128Decl) 1263 Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t"); 1264 return Int128Decl; 1265 } 1266 1267 TypedefDecl *ASTContext::getUInt128Decl() const { 1268 if (!UInt128Decl) 1269 UInt128Decl = buildImplicitTypedef(UnsignedInt128Ty, "__uint128_t"); 1270 return UInt128Decl; 1271 } 1272 1273 void ASTContext::InitBuiltinType(CanQualType &R, BuiltinType::Kind K) { 1274 auto *Ty = new (*this, TypeAlignment) BuiltinType(K); 1275 R = CanQualType::CreateUnsafe(QualType(Ty, 0)); 1276 Types.push_back(Ty); 1277 } 1278 1279 void ASTContext::InitBuiltinTypes(const TargetInfo &Target, 1280 const TargetInfo *AuxTarget) { 1281 assert((!this->Target || this->Target == &Target) && 1282 "Incorrect target reinitialization"); 1283 assert(VoidTy.isNull() && "Context reinitialized?"); 1284 1285 this->Target = &Target; 1286 this->AuxTarget = AuxTarget; 1287 1288 ABI.reset(createCXXABI(Target)); 1289 AddrSpaceMap = getAddressSpaceMap(Target, LangOpts); 1290 AddrSpaceMapMangling = isAddrSpaceMapManglingEnabled(Target, LangOpts); 1291 1292 // C99 6.2.5p19. 1293 InitBuiltinType(VoidTy, BuiltinType::Void); 1294 1295 // C99 6.2.5p2. 1296 InitBuiltinType(BoolTy, BuiltinType::Bool); 1297 // C99 6.2.5p3. 1298 if (LangOpts.CharIsSigned) 1299 InitBuiltinType(CharTy, BuiltinType::Char_S); 1300 else 1301 InitBuiltinType(CharTy, BuiltinType::Char_U); 1302 // C99 6.2.5p4. 1303 InitBuiltinType(SignedCharTy, BuiltinType::SChar); 1304 InitBuiltinType(ShortTy, BuiltinType::Short); 1305 InitBuiltinType(IntTy, BuiltinType::Int); 1306 InitBuiltinType(LongTy, BuiltinType::Long); 1307 InitBuiltinType(LongLongTy, BuiltinType::LongLong); 1308 1309 // C99 6.2.5p6. 1310 InitBuiltinType(UnsignedCharTy, BuiltinType::UChar); 1311 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort); 1312 InitBuiltinType(UnsignedIntTy, BuiltinType::UInt); 1313 InitBuiltinType(UnsignedLongTy, BuiltinType::ULong); 1314 InitBuiltinType(UnsignedLongLongTy, BuiltinType::ULongLong); 1315 1316 // C99 6.2.5p10. 1317 InitBuiltinType(FloatTy, BuiltinType::Float); 1318 InitBuiltinType(DoubleTy, BuiltinType::Double); 1319 InitBuiltinType(LongDoubleTy, BuiltinType::LongDouble); 1320 1321 // GNU extension, __float128 for IEEE quadruple precision 1322 InitBuiltinType(Float128Ty, BuiltinType::Float128); 1323 1324 // __ibm128 for IBM extended precision 1325 InitBuiltinType(Ibm128Ty, BuiltinType::Ibm128); 1326 1327 // C11 extension ISO/IEC TS 18661-3 1328 InitBuiltinType(Float16Ty, BuiltinType::Float16); 1329 1330 // ISO/IEC JTC1 SC22 WG14 N1169 Extension 1331 InitBuiltinType(ShortAccumTy, BuiltinType::ShortAccum); 1332 InitBuiltinType(AccumTy, BuiltinType::Accum); 1333 InitBuiltinType(LongAccumTy, BuiltinType::LongAccum); 1334 InitBuiltinType(UnsignedShortAccumTy, BuiltinType::UShortAccum); 1335 InitBuiltinType(UnsignedAccumTy, BuiltinType::UAccum); 1336 InitBuiltinType(UnsignedLongAccumTy, BuiltinType::ULongAccum); 1337 InitBuiltinType(ShortFractTy, BuiltinType::ShortFract); 1338 InitBuiltinType(FractTy, BuiltinType::Fract); 1339 InitBuiltinType(LongFractTy, BuiltinType::LongFract); 1340 InitBuiltinType(UnsignedShortFractTy, BuiltinType::UShortFract); 1341 InitBuiltinType(UnsignedFractTy, BuiltinType::UFract); 1342 InitBuiltinType(UnsignedLongFractTy, BuiltinType::ULongFract); 1343 InitBuiltinType(SatShortAccumTy, BuiltinType::SatShortAccum); 1344 InitBuiltinType(SatAccumTy, BuiltinType::SatAccum); 1345 InitBuiltinType(SatLongAccumTy, BuiltinType::SatLongAccum); 1346 InitBuiltinType(SatUnsignedShortAccumTy, BuiltinType::SatUShortAccum); 1347 InitBuiltinType(SatUnsignedAccumTy, BuiltinType::SatUAccum); 1348 InitBuiltinType(SatUnsignedLongAccumTy, BuiltinType::SatULongAccum); 1349 InitBuiltinType(SatShortFractTy, BuiltinType::SatShortFract); 1350 InitBuiltinType(SatFractTy, BuiltinType::SatFract); 1351 InitBuiltinType(SatLongFractTy, BuiltinType::SatLongFract); 1352 InitBuiltinType(SatUnsignedShortFractTy, BuiltinType::SatUShortFract); 1353 InitBuiltinType(SatUnsignedFractTy, BuiltinType::SatUFract); 1354 InitBuiltinType(SatUnsignedLongFractTy, BuiltinType::SatULongFract); 1355 1356 // GNU extension, 128-bit integers. 1357 InitBuiltinType(Int128Ty, BuiltinType::Int128); 1358 InitBuiltinType(UnsignedInt128Ty, BuiltinType::UInt128); 1359 1360 // C++ 3.9.1p5 1361 if (TargetInfo::isTypeSigned(Target.getWCharType())) 1362 InitBuiltinType(WCharTy, BuiltinType::WChar_S); 1363 else // -fshort-wchar makes wchar_t be unsigned. 1364 InitBuiltinType(WCharTy, BuiltinType::WChar_U); 1365 if (LangOpts.CPlusPlus && LangOpts.WChar) 1366 WideCharTy = WCharTy; 1367 else { 1368 // C99 (or C++ using -fno-wchar). 1369 WideCharTy = getFromTargetType(Target.getWCharType()); 1370 } 1371 1372 WIntTy = getFromTargetType(Target.getWIntType()); 1373 1374 // C++20 (proposed) 1375 InitBuiltinType(Char8Ty, BuiltinType::Char8); 1376 1377 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++ 1378 InitBuiltinType(Char16Ty, BuiltinType::Char16); 1379 else // C99 1380 Char16Ty = getFromTargetType(Target.getChar16Type()); 1381 1382 if (LangOpts.CPlusPlus) // C++0x 3.9.1p5, extension for C++ 1383 InitBuiltinType(Char32Ty, BuiltinType::Char32); 1384 else // C99 1385 Char32Ty = getFromTargetType(Target.getChar32Type()); 1386 1387 // Placeholder type for type-dependent expressions whose type is 1388 // completely unknown. No code should ever check a type against 1389 // DependentTy and users should never see it; however, it is here to 1390 // help diagnose failures to properly check for type-dependent 1391 // expressions. 1392 InitBuiltinType(DependentTy, BuiltinType::Dependent); 1393 1394 // Placeholder type for functions. 1395 InitBuiltinType(OverloadTy, BuiltinType::Overload); 1396 1397 // Placeholder type for bound members. 1398 InitBuiltinType(BoundMemberTy, BuiltinType::BoundMember); 1399 1400 // Placeholder type for pseudo-objects. 1401 InitBuiltinType(PseudoObjectTy, BuiltinType::PseudoObject); 1402 1403 // "any" type; useful for debugger-like clients. 1404 InitBuiltinType(UnknownAnyTy, BuiltinType::UnknownAny); 1405 1406 // Placeholder type for unbridged ARC casts. 1407 InitBuiltinType(ARCUnbridgedCastTy, BuiltinType::ARCUnbridgedCast); 1408 1409 // Placeholder type for builtin functions. 1410 InitBuiltinType(BuiltinFnTy, BuiltinType::BuiltinFn); 1411 1412 // Placeholder type for OMP array sections. 1413 if (LangOpts.OpenMP) { 1414 InitBuiltinType(OMPArraySectionTy, BuiltinType::OMPArraySection); 1415 InitBuiltinType(OMPArrayShapingTy, BuiltinType::OMPArrayShaping); 1416 InitBuiltinType(OMPIteratorTy, BuiltinType::OMPIterator); 1417 } 1418 if (LangOpts.MatrixTypes) 1419 InitBuiltinType(IncompleteMatrixIdxTy, BuiltinType::IncompleteMatrixIdx); 1420 1421 // Builtin types for 'id', 'Class', and 'SEL'. 1422 InitBuiltinType(ObjCBuiltinIdTy, BuiltinType::ObjCId); 1423 InitBuiltinType(ObjCBuiltinClassTy, BuiltinType::ObjCClass); 1424 InitBuiltinType(ObjCBuiltinSelTy, BuiltinType::ObjCSel); 1425 1426 if (LangOpts.OpenCL) { 1427 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 1428 InitBuiltinType(SingletonId, BuiltinType::Id); 1429 #include "clang/Basic/OpenCLImageTypes.def" 1430 1431 InitBuiltinType(OCLSamplerTy, BuiltinType::OCLSampler); 1432 InitBuiltinType(OCLEventTy, BuiltinType::OCLEvent); 1433 InitBuiltinType(OCLClkEventTy, BuiltinType::OCLClkEvent); 1434 InitBuiltinType(OCLQueueTy, BuiltinType::OCLQueue); 1435 InitBuiltinType(OCLReserveIDTy, BuiltinType::OCLReserveID); 1436 1437 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 1438 InitBuiltinType(Id##Ty, BuiltinType::Id); 1439 #include "clang/Basic/OpenCLExtensionTypes.def" 1440 } 1441 1442 if (Target.hasAArch64SVETypes()) { 1443 #define SVE_TYPE(Name, Id, SingletonId) \ 1444 InitBuiltinType(SingletonId, BuiltinType::Id); 1445 #include "clang/Basic/AArch64SVEACLETypes.def" 1446 } 1447 1448 if (Target.getTriple().isPPC64()) { 1449 #define PPC_VECTOR_MMA_TYPE(Name, Id, Size) \ 1450 InitBuiltinType(Id##Ty, BuiltinType::Id); 1451 #include "clang/Basic/PPCTypes.def" 1452 #define PPC_VECTOR_VSX_TYPE(Name, Id, Size) \ 1453 InitBuiltinType(Id##Ty, BuiltinType::Id); 1454 #include "clang/Basic/PPCTypes.def" 1455 } 1456 1457 if (Target.hasRISCVVTypes()) { 1458 #define RVV_TYPE(Name, Id, SingletonId) \ 1459 InitBuiltinType(SingletonId, BuiltinType::Id); 1460 #include "clang/Basic/RISCVVTypes.def" 1461 } 1462 1463 // Builtin type for __objc_yes and __objc_no 1464 ObjCBuiltinBoolTy = (Target.useSignedCharForObjCBool() ? 1465 SignedCharTy : BoolTy); 1466 1467 ObjCConstantStringType = QualType(); 1468 1469 ObjCSuperType = QualType(); 1470 1471 // void * type 1472 if (LangOpts.OpenCLGenericAddressSpace) { 1473 auto Q = VoidTy.getQualifiers(); 1474 Q.setAddressSpace(LangAS::opencl_generic); 1475 VoidPtrTy = getPointerType(getCanonicalType( 1476 getQualifiedType(VoidTy.getUnqualifiedType(), Q))); 1477 } else { 1478 VoidPtrTy = getPointerType(VoidTy); 1479 } 1480 1481 // nullptr type (C++0x 2.14.7) 1482 InitBuiltinType(NullPtrTy, BuiltinType::NullPtr); 1483 1484 // half type (OpenCL 6.1.1.1) / ARM NEON __fp16 1485 InitBuiltinType(HalfTy, BuiltinType::Half); 1486 1487 InitBuiltinType(BFloat16Ty, BuiltinType::BFloat16); 1488 1489 // Builtin type used to help define __builtin_va_list. 1490 VaListTagDecl = nullptr; 1491 1492 // MSVC predeclares struct _GUID, and we need it to create MSGuidDecls. 1493 if (LangOpts.MicrosoftExt || LangOpts.Borland) { 1494 MSGuidTagDecl = buildImplicitRecord("_GUID"); 1495 getTranslationUnitDecl()->addDecl(MSGuidTagDecl); 1496 } 1497 } 1498 1499 DiagnosticsEngine &ASTContext::getDiagnostics() const { 1500 return SourceMgr.getDiagnostics(); 1501 } 1502 1503 AttrVec& ASTContext::getDeclAttrs(const Decl *D) { 1504 AttrVec *&Result = DeclAttrs[D]; 1505 if (!Result) { 1506 void *Mem = Allocate(sizeof(AttrVec)); 1507 Result = new (Mem) AttrVec; 1508 } 1509 1510 return *Result; 1511 } 1512 1513 /// Erase the attributes corresponding to the given declaration. 1514 void ASTContext::eraseDeclAttrs(const Decl *D) { 1515 llvm::DenseMap<const Decl*, AttrVec*>::iterator Pos = DeclAttrs.find(D); 1516 if (Pos != DeclAttrs.end()) { 1517 Pos->second->~AttrVec(); 1518 DeclAttrs.erase(Pos); 1519 } 1520 } 1521 1522 // FIXME: Remove ? 1523 MemberSpecializationInfo * 1524 ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) { 1525 assert(Var->isStaticDataMember() && "Not a static data member"); 1526 return getTemplateOrSpecializationInfo(Var) 1527 .dyn_cast<MemberSpecializationInfo *>(); 1528 } 1529 1530 ASTContext::TemplateOrSpecializationInfo 1531 ASTContext::getTemplateOrSpecializationInfo(const VarDecl *Var) { 1532 llvm::DenseMap<const VarDecl *, TemplateOrSpecializationInfo>::iterator Pos = 1533 TemplateOrInstantiation.find(Var); 1534 if (Pos == TemplateOrInstantiation.end()) 1535 return {}; 1536 1537 return Pos->second; 1538 } 1539 1540 void 1541 ASTContext::setInstantiatedFromStaticDataMember(VarDecl *Inst, VarDecl *Tmpl, 1542 TemplateSpecializationKind TSK, 1543 SourceLocation PointOfInstantiation) { 1544 assert(Inst->isStaticDataMember() && "Not a static data member"); 1545 assert(Tmpl->isStaticDataMember() && "Not a static data member"); 1546 setTemplateOrSpecializationInfo(Inst, new (*this) MemberSpecializationInfo( 1547 Tmpl, TSK, PointOfInstantiation)); 1548 } 1549 1550 void 1551 ASTContext::setTemplateOrSpecializationInfo(VarDecl *Inst, 1552 TemplateOrSpecializationInfo TSI) { 1553 assert(!TemplateOrInstantiation[Inst] && 1554 "Already noted what the variable was instantiated from"); 1555 TemplateOrInstantiation[Inst] = TSI; 1556 } 1557 1558 NamedDecl * 1559 ASTContext::getInstantiatedFromUsingDecl(NamedDecl *UUD) { 1560 auto Pos = InstantiatedFromUsingDecl.find(UUD); 1561 if (Pos == InstantiatedFromUsingDecl.end()) 1562 return nullptr; 1563 1564 return Pos->second; 1565 } 1566 1567 void 1568 ASTContext::setInstantiatedFromUsingDecl(NamedDecl *Inst, NamedDecl *Pattern) { 1569 assert((isa<UsingDecl>(Pattern) || 1570 isa<UnresolvedUsingValueDecl>(Pattern) || 1571 isa<UnresolvedUsingTypenameDecl>(Pattern)) && 1572 "pattern decl is not a using decl"); 1573 assert((isa<UsingDecl>(Inst) || 1574 isa<UnresolvedUsingValueDecl>(Inst) || 1575 isa<UnresolvedUsingTypenameDecl>(Inst)) && 1576 "instantiation did not produce a using decl"); 1577 assert(!InstantiatedFromUsingDecl[Inst] && "pattern already exists"); 1578 InstantiatedFromUsingDecl[Inst] = Pattern; 1579 } 1580 1581 UsingEnumDecl * 1582 ASTContext::getInstantiatedFromUsingEnumDecl(UsingEnumDecl *UUD) { 1583 auto Pos = InstantiatedFromUsingEnumDecl.find(UUD); 1584 if (Pos == InstantiatedFromUsingEnumDecl.end()) 1585 return nullptr; 1586 1587 return Pos->second; 1588 } 1589 1590 void ASTContext::setInstantiatedFromUsingEnumDecl(UsingEnumDecl *Inst, 1591 UsingEnumDecl *Pattern) { 1592 assert(!InstantiatedFromUsingEnumDecl[Inst] && "pattern already exists"); 1593 InstantiatedFromUsingEnumDecl[Inst] = Pattern; 1594 } 1595 1596 UsingShadowDecl * 1597 ASTContext::getInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst) { 1598 llvm::DenseMap<UsingShadowDecl*, UsingShadowDecl*>::const_iterator Pos 1599 = InstantiatedFromUsingShadowDecl.find(Inst); 1600 if (Pos == InstantiatedFromUsingShadowDecl.end()) 1601 return nullptr; 1602 1603 return Pos->second; 1604 } 1605 1606 void 1607 ASTContext::setInstantiatedFromUsingShadowDecl(UsingShadowDecl *Inst, 1608 UsingShadowDecl *Pattern) { 1609 assert(!InstantiatedFromUsingShadowDecl[Inst] && "pattern already exists"); 1610 InstantiatedFromUsingShadowDecl[Inst] = Pattern; 1611 } 1612 1613 FieldDecl *ASTContext::getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field) { 1614 llvm::DenseMap<FieldDecl *, FieldDecl *>::iterator Pos 1615 = InstantiatedFromUnnamedFieldDecl.find(Field); 1616 if (Pos == InstantiatedFromUnnamedFieldDecl.end()) 1617 return nullptr; 1618 1619 return Pos->second; 1620 } 1621 1622 void ASTContext::setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst, 1623 FieldDecl *Tmpl) { 1624 assert(!Inst->getDeclName() && "Instantiated field decl is not unnamed"); 1625 assert(!Tmpl->getDeclName() && "Template field decl is not unnamed"); 1626 assert(!InstantiatedFromUnnamedFieldDecl[Inst] && 1627 "Already noted what unnamed field was instantiated from"); 1628 1629 InstantiatedFromUnnamedFieldDecl[Inst] = Tmpl; 1630 } 1631 1632 ASTContext::overridden_cxx_method_iterator 1633 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const { 1634 return overridden_methods(Method).begin(); 1635 } 1636 1637 ASTContext::overridden_cxx_method_iterator 1638 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const { 1639 return overridden_methods(Method).end(); 1640 } 1641 1642 unsigned 1643 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const { 1644 auto Range = overridden_methods(Method); 1645 return Range.end() - Range.begin(); 1646 } 1647 1648 ASTContext::overridden_method_range 1649 ASTContext::overridden_methods(const CXXMethodDecl *Method) const { 1650 llvm::DenseMap<const CXXMethodDecl *, CXXMethodVector>::const_iterator Pos = 1651 OverriddenMethods.find(Method->getCanonicalDecl()); 1652 if (Pos == OverriddenMethods.end()) 1653 return overridden_method_range(nullptr, nullptr); 1654 return overridden_method_range(Pos->second.begin(), Pos->second.end()); 1655 } 1656 1657 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method, 1658 const CXXMethodDecl *Overridden) { 1659 assert(Method->isCanonicalDecl() && Overridden->isCanonicalDecl()); 1660 OverriddenMethods[Method].push_back(Overridden); 1661 } 1662 1663 void ASTContext::getOverriddenMethods( 1664 const NamedDecl *D, 1665 SmallVectorImpl<const NamedDecl *> &Overridden) const { 1666 assert(D); 1667 1668 if (const auto *CXXMethod = dyn_cast<CXXMethodDecl>(D)) { 1669 Overridden.append(overridden_methods_begin(CXXMethod), 1670 overridden_methods_end(CXXMethod)); 1671 return; 1672 } 1673 1674 const auto *Method = dyn_cast<ObjCMethodDecl>(D); 1675 if (!Method) 1676 return; 1677 1678 SmallVector<const ObjCMethodDecl *, 8> OverDecls; 1679 Method->getOverriddenMethods(OverDecls); 1680 Overridden.append(OverDecls.begin(), OverDecls.end()); 1681 } 1682 1683 void ASTContext::addedLocalImportDecl(ImportDecl *Import) { 1684 assert(!Import->getNextLocalImport() && 1685 "Import declaration already in the chain"); 1686 assert(!Import->isFromASTFile() && "Non-local import declaration"); 1687 if (!FirstLocalImport) { 1688 FirstLocalImport = Import; 1689 LastLocalImport = Import; 1690 return; 1691 } 1692 1693 LastLocalImport->setNextLocalImport(Import); 1694 LastLocalImport = Import; 1695 } 1696 1697 //===----------------------------------------------------------------------===// 1698 // Type Sizing and Analysis 1699 //===----------------------------------------------------------------------===// 1700 1701 /// getFloatTypeSemantics - Return the APFloat 'semantics' for the specified 1702 /// scalar floating point type. 1703 const llvm::fltSemantics &ASTContext::getFloatTypeSemantics(QualType T) const { 1704 switch (T->castAs<BuiltinType>()->getKind()) { 1705 default: 1706 llvm_unreachable("Not a floating point type!"); 1707 case BuiltinType::BFloat16: 1708 return Target->getBFloat16Format(); 1709 case BuiltinType::Float16: 1710 case BuiltinType::Half: 1711 return Target->getHalfFormat(); 1712 case BuiltinType::Float: return Target->getFloatFormat(); 1713 case BuiltinType::Double: return Target->getDoubleFormat(); 1714 case BuiltinType::Ibm128: 1715 return Target->getIbm128Format(); 1716 case BuiltinType::LongDouble: 1717 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice) 1718 return AuxTarget->getLongDoubleFormat(); 1719 return Target->getLongDoubleFormat(); 1720 case BuiltinType::Float128: 1721 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice) 1722 return AuxTarget->getFloat128Format(); 1723 return Target->getFloat128Format(); 1724 } 1725 } 1726 1727 CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const { 1728 unsigned Align = Target->getCharWidth(); 1729 1730 bool UseAlignAttrOnly = false; 1731 if (unsigned AlignFromAttr = D->getMaxAlignment()) { 1732 Align = AlignFromAttr; 1733 1734 // __attribute__((aligned)) can increase or decrease alignment 1735 // *except* on a struct or struct member, where it only increases 1736 // alignment unless 'packed' is also specified. 1737 // 1738 // It is an error for alignas to decrease alignment, so we can 1739 // ignore that possibility; Sema should diagnose it. 1740 if (isa<FieldDecl>(D)) { 1741 UseAlignAttrOnly = D->hasAttr<PackedAttr>() || 1742 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>(); 1743 } else { 1744 UseAlignAttrOnly = true; 1745 } 1746 } 1747 else if (isa<FieldDecl>(D)) 1748 UseAlignAttrOnly = 1749 D->hasAttr<PackedAttr>() || 1750 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>(); 1751 1752 // If we're using the align attribute only, just ignore everything 1753 // else about the declaration and its type. 1754 if (UseAlignAttrOnly) { 1755 // do nothing 1756 } else if (const auto *VD = dyn_cast<ValueDecl>(D)) { 1757 QualType T = VD->getType(); 1758 if (const auto *RT = T->getAs<ReferenceType>()) { 1759 if (ForAlignof) 1760 T = RT->getPointeeType(); 1761 else 1762 T = getPointerType(RT->getPointeeType()); 1763 } 1764 QualType BaseT = getBaseElementType(T); 1765 if (T->isFunctionType()) 1766 Align = getTypeInfoImpl(T.getTypePtr()).Align; 1767 else if (!BaseT->isIncompleteType()) { 1768 // Adjust alignments of declarations with array type by the 1769 // large-array alignment on the target. 1770 if (const ArrayType *arrayType = getAsArrayType(T)) { 1771 unsigned MinWidth = Target->getLargeArrayMinWidth(); 1772 if (!ForAlignof && MinWidth) { 1773 if (isa<VariableArrayType>(arrayType)) 1774 Align = std::max(Align, Target->getLargeArrayAlign()); 1775 else if (isa<ConstantArrayType>(arrayType) && 1776 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType))) 1777 Align = std::max(Align, Target->getLargeArrayAlign()); 1778 } 1779 } 1780 Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr())); 1781 if (BaseT.getQualifiers().hasUnaligned()) 1782 Align = Target->getCharWidth(); 1783 if (const auto *VD = dyn_cast<VarDecl>(D)) { 1784 if (VD->hasGlobalStorage() && !ForAlignof) { 1785 uint64_t TypeSize = getTypeSize(T.getTypePtr()); 1786 Align = std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize)); 1787 } 1788 } 1789 } 1790 1791 // Fields can be subject to extra alignment constraints, like if 1792 // the field is packed, the struct is packed, or the struct has a 1793 // a max-field-alignment constraint (#pragma pack). So calculate 1794 // the actual alignment of the field within the struct, and then 1795 // (as we're expected to) constrain that by the alignment of the type. 1796 if (const auto *Field = dyn_cast<FieldDecl>(VD)) { 1797 const RecordDecl *Parent = Field->getParent(); 1798 // We can only produce a sensible answer if the record is valid. 1799 if (!Parent->isInvalidDecl()) { 1800 const ASTRecordLayout &Layout = getASTRecordLayout(Parent); 1801 1802 // Start with the record's overall alignment. 1803 unsigned FieldAlign = toBits(Layout.getAlignment()); 1804 1805 // Use the GCD of that and the offset within the record. 1806 uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex()); 1807 if (Offset > 0) { 1808 // Alignment is always a power of 2, so the GCD will be a power of 2, 1809 // which means we get to do this crazy thing instead of Euclid's. 1810 uint64_t LowBitOfOffset = Offset & (~Offset + 1); 1811 if (LowBitOfOffset < FieldAlign) 1812 FieldAlign = static_cast<unsigned>(LowBitOfOffset); 1813 } 1814 1815 Align = std::min(Align, FieldAlign); 1816 } 1817 } 1818 } 1819 1820 // Some targets have hard limitation on the maximum requestable alignment in 1821 // aligned attribute for static variables. 1822 const unsigned MaxAlignedAttr = getTargetInfo().getMaxAlignedAttribute(); 1823 const auto *VD = dyn_cast<VarDecl>(D); 1824 if (MaxAlignedAttr && VD && VD->getStorageClass() == SC_Static) 1825 Align = std::min(Align, MaxAlignedAttr); 1826 1827 return toCharUnitsFromBits(Align); 1828 } 1829 1830 CharUnits ASTContext::getExnObjectAlignment() const { 1831 return toCharUnitsFromBits(Target->getExnObjectAlignment()); 1832 } 1833 1834 // getTypeInfoDataSizeInChars - Return the size of a type, in 1835 // chars. If the type is a record, its data size is returned. This is 1836 // the size of the memcpy that's performed when assigning this type 1837 // using a trivial copy/move assignment operator. 1838 TypeInfoChars ASTContext::getTypeInfoDataSizeInChars(QualType T) const { 1839 TypeInfoChars Info = getTypeInfoInChars(T); 1840 1841 // In C++, objects can sometimes be allocated into the tail padding 1842 // of a base-class subobject. We decide whether that's possible 1843 // during class layout, so here we can just trust the layout results. 1844 if (getLangOpts().CPlusPlus) { 1845 if (const auto *RT = T->getAs<RecordType>()) { 1846 const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl()); 1847 Info.Width = layout.getDataSize(); 1848 } 1849 } 1850 1851 return Info; 1852 } 1853 1854 /// getConstantArrayInfoInChars - Performing the computation in CharUnits 1855 /// instead of in bits prevents overflowing the uint64_t for some large arrays. 1856 TypeInfoChars 1857 static getConstantArrayInfoInChars(const ASTContext &Context, 1858 const ConstantArrayType *CAT) { 1859 TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType()); 1860 uint64_t Size = CAT->getSize().getZExtValue(); 1861 assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <= 1862 (uint64_t)(-1)/Size) && 1863 "Overflow in array type char size evaluation"); 1864 uint64_t Width = EltInfo.Width.getQuantity() * Size; 1865 unsigned Align = EltInfo.Align.getQuantity(); 1866 if (!Context.getTargetInfo().getCXXABI().isMicrosoft() || 1867 Context.getTargetInfo().getPointerWidth(0) == 64) 1868 Width = llvm::alignTo(Width, Align); 1869 return TypeInfoChars(CharUnits::fromQuantity(Width), 1870 CharUnits::fromQuantity(Align), 1871 EltInfo.AlignRequirement); 1872 } 1873 1874 TypeInfoChars ASTContext::getTypeInfoInChars(const Type *T) const { 1875 if (const auto *CAT = dyn_cast<ConstantArrayType>(T)) 1876 return getConstantArrayInfoInChars(*this, CAT); 1877 TypeInfo Info = getTypeInfo(T); 1878 return TypeInfoChars(toCharUnitsFromBits(Info.Width), 1879 toCharUnitsFromBits(Info.Align), Info.AlignRequirement); 1880 } 1881 1882 TypeInfoChars ASTContext::getTypeInfoInChars(QualType T) const { 1883 return getTypeInfoInChars(T.getTypePtr()); 1884 } 1885 1886 bool ASTContext::isAlignmentRequired(const Type *T) const { 1887 return getTypeInfo(T).AlignRequirement != AlignRequirementKind::None; 1888 } 1889 1890 bool ASTContext::isAlignmentRequired(QualType T) const { 1891 return isAlignmentRequired(T.getTypePtr()); 1892 } 1893 1894 unsigned ASTContext::getTypeAlignIfKnown(QualType T, 1895 bool NeedsPreferredAlignment) const { 1896 // An alignment on a typedef overrides anything else. 1897 if (const auto *TT = T->getAs<TypedefType>()) 1898 if (unsigned Align = TT->getDecl()->getMaxAlignment()) 1899 return Align; 1900 1901 // If we have an (array of) complete type, we're done. 1902 T = getBaseElementType(T); 1903 if (!T->isIncompleteType()) 1904 return NeedsPreferredAlignment ? getPreferredTypeAlign(T) : getTypeAlign(T); 1905 1906 // If we had an array type, its element type might be a typedef 1907 // type with an alignment attribute. 1908 if (const auto *TT = T->getAs<TypedefType>()) 1909 if (unsigned Align = TT->getDecl()->getMaxAlignment()) 1910 return Align; 1911 1912 // Otherwise, see if the declaration of the type had an attribute. 1913 if (const auto *TT = T->getAs<TagType>()) 1914 return TT->getDecl()->getMaxAlignment(); 1915 1916 return 0; 1917 } 1918 1919 TypeInfo ASTContext::getTypeInfo(const Type *T) const { 1920 TypeInfoMap::iterator I = MemoizedTypeInfo.find(T); 1921 if (I != MemoizedTypeInfo.end()) 1922 return I->second; 1923 1924 // This call can invalidate MemoizedTypeInfo[T], so we need a second lookup. 1925 TypeInfo TI = getTypeInfoImpl(T); 1926 MemoizedTypeInfo[T] = TI; 1927 return TI; 1928 } 1929 1930 /// getTypeInfoImpl - Return the size of the specified type, in bits. This 1931 /// method does not work on incomplete types. 1932 /// 1933 /// FIXME: Pointers into different addr spaces could have different sizes and 1934 /// alignment requirements: getPointerInfo should take an AddrSpace, this 1935 /// should take a QualType, &c. 1936 TypeInfo ASTContext::getTypeInfoImpl(const Type *T) const { 1937 uint64_t Width = 0; 1938 unsigned Align = 8; 1939 AlignRequirementKind AlignRequirement = AlignRequirementKind::None; 1940 unsigned AS = 0; 1941 switch (T->getTypeClass()) { 1942 #define TYPE(Class, Base) 1943 #define ABSTRACT_TYPE(Class, Base) 1944 #define NON_CANONICAL_TYPE(Class, Base) 1945 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 1946 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) \ 1947 case Type::Class: \ 1948 assert(!T->isDependentType() && "should not see dependent types here"); \ 1949 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr()); 1950 #include "clang/AST/TypeNodes.inc" 1951 llvm_unreachable("Should not see dependent types"); 1952 1953 case Type::FunctionNoProto: 1954 case Type::FunctionProto: 1955 // GCC extension: alignof(function) = 32 bits 1956 Width = 0; 1957 Align = 32; 1958 break; 1959 1960 case Type::IncompleteArray: 1961 case Type::VariableArray: 1962 case Type::ConstantArray: { 1963 // Model non-constant sized arrays as size zero, but track the alignment. 1964 uint64_t Size = 0; 1965 if (const auto *CAT = dyn_cast<ConstantArrayType>(T)) 1966 Size = CAT->getSize().getZExtValue(); 1967 1968 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); 1969 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && 1970 "Overflow in array type bit size evaluation"); 1971 Width = EltInfo.Width * Size; 1972 Align = EltInfo.Align; 1973 AlignRequirement = EltInfo.AlignRequirement; 1974 if (!getTargetInfo().getCXXABI().isMicrosoft() || 1975 getTargetInfo().getPointerWidth(0) == 64) 1976 Width = llvm::alignTo(Width, Align); 1977 break; 1978 } 1979 1980 case Type::ExtVector: 1981 case Type::Vector: { 1982 const auto *VT = cast<VectorType>(T); 1983 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); 1984 Width = EltInfo.Width * VT->getNumElements(); 1985 Align = Width; 1986 // If the alignment is not a power of 2, round up to the next power of 2. 1987 // This happens for non-power-of-2 length vectors. 1988 if (Align & (Align-1)) { 1989 Align = llvm::NextPowerOf2(Align); 1990 Width = llvm::alignTo(Width, Align); 1991 } 1992 // Adjust the alignment based on the target max. 1993 uint64_t TargetVectorAlign = Target->getMaxVectorAlign(); 1994 if (TargetVectorAlign && TargetVectorAlign < Align) 1995 Align = TargetVectorAlign; 1996 if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector) 1997 // Adjust the alignment for fixed-length SVE vectors. This is important 1998 // for non-power-of-2 vector lengths. 1999 Align = 128; 2000 else if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector) 2001 // Adjust the alignment for fixed-length SVE predicates. 2002 Align = 16; 2003 break; 2004 } 2005 2006 case Type::ConstantMatrix: { 2007 const auto *MT = cast<ConstantMatrixType>(T); 2008 TypeInfo ElementInfo = getTypeInfo(MT->getElementType()); 2009 // The internal layout of a matrix value is implementation defined. 2010 // Initially be ABI compatible with arrays with respect to alignment and 2011 // size. 2012 Width = ElementInfo.Width * MT->getNumRows() * MT->getNumColumns(); 2013 Align = ElementInfo.Align; 2014 break; 2015 } 2016 2017 case Type::Builtin: 2018 switch (cast<BuiltinType>(T)->getKind()) { 2019 default: llvm_unreachable("Unknown builtin type!"); 2020 case BuiltinType::Void: 2021 // GCC extension: alignof(void) = 8 bits. 2022 Width = 0; 2023 Align = 8; 2024 break; 2025 case BuiltinType::Bool: 2026 Width = Target->getBoolWidth(); 2027 Align = Target->getBoolAlign(); 2028 break; 2029 case BuiltinType::Char_S: 2030 case BuiltinType::Char_U: 2031 case BuiltinType::UChar: 2032 case BuiltinType::SChar: 2033 case BuiltinType::Char8: 2034 Width = Target->getCharWidth(); 2035 Align = Target->getCharAlign(); 2036 break; 2037 case BuiltinType::WChar_S: 2038 case BuiltinType::WChar_U: 2039 Width = Target->getWCharWidth(); 2040 Align = Target->getWCharAlign(); 2041 break; 2042 case BuiltinType::Char16: 2043 Width = Target->getChar16Width(); 2044 Align = Target->getChar16Align(); 2045 break; 2046 case BuiltinType::Char32: 2047 Width = Target->getChar32Width(); 2048 Align = Target->getChar32Align(); 2049 break; 2050 case BuiltinType::UShort: 2051 case BuiltinType::Short: 2052 Width = Target->getShortWidth(); 2053 Align = Target->getShortAlign(); 2054 break; 2055 case BuiltinType::UInt: 2056 case BuiltinType::Int: 2057 Width = Target->getIntWidth(); 2058 Align = Target->getIntAlign(); 2059 break; 2060 case BuiltinType::ULong: 2061 case BuiltinType::Long: 2062 Width = Target->getLongWidth(); 2063 Align = Target->getLongAlign(); 2064 break; 2065 case BuiltinType::ULongLong: 2066 case BuiltinType::LongLong: 2067 Width = Target->getLongLongWidth(); 2068 Align = Target->getLongLongAlign(); 2069 break; 2070 case BuiltinType::Int128: 2071 case BuiltinType::UInt128: 2072 Width = 128; 2073 Align = 128; // int128_t is 128-bit aligned on all targets. 2074 break; 2075 case BuiltinType::ShortAccum: 2076 case BuiltinType::UShortAccum: 2077 case BuiltinType::SatShortAccum: 2078 case BuiltinType::SatUShortAccum: 2079 Width = Target->getShortAccumWidth(); 2080 Align = Target->getShortAccumAlign(); 2081 break; 2082 case BuiltinType::Accum: 2083 case BuiltinType::UAccum: 2084 case BuiltinType::SatAccum: 2085 case BuiltinType::SatUAccum: 2086 Width = Target->getAccumWidth(); 2087 Align = Target->getAccumAlign(); 2088 break; 2089 case BuiltinType::LongAccum: 2090 case BuiltinType::ULongAccum: 2091 case BuiltinType::SatLongAccum: 2092 case BuiltinType::SatULongAccum: 2093 Width = Target->getLongAccumWidth(); 2094 Align = Target->getLongAccumAlign(); 2095 break; 2096 case BuiltinType::ShortFract: 2097 case BuiltinType::UShortFract: 2098 case BuiltinType::SatShortFract: 2099 case BuiltinType::SatUShortFract: 2100 Width = Target->getShortFractWidth(); 2101 Align = Target->getShortFractAlign(); 2102 break; 2103 case BuiltinType::Fract: 2104 case BuiltinType::UFract: 2105 case BuiltinType::SatFract: 2106 case BuiltinType::SatUFract: 2107 Width = Target->getFractWidth(); 2108 Align = Target->getFractAlign(); 2109 break; 2110 case BuiltinType::LongFract: 2111 case BuiltinType::ULongFract: 2112 case BuiltinType::SatLongFract: 2113 case BuiltinType::SatULongFract: 2114 Width = Target->getLongFractWidth(); 2115 Align = Target->getLongFractAlign(); 2116 break; 2117 case BuiltinType::BFloat16: 2118 Width = Target->getBFloat16Width(); 2119 Align = Target->getBFloat16Align(); 2120 break; 2121 case BuiltinType::Float16: 2122 case BuiltinType::Half: 2123 if (Target->hasFloat16Type() || !getLangOpts().OpenMP || 2124 !getLangOpts().OpenMPIsDevice) { 2125 Width = Target->getHalfWidth(); 2126 Align = Target->getHalfAlign(); 2127 } else { 2128 assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2129 "Expected OpenMP device compilation."); 2130 Width = AuxTarget->getHalfWidth(); 2131 Align = AuxTarget->getHalfAlign(); 2132 } 2133 break; 2134 case BuiltinType::Float: 2135 Width = Target->getFloatWidth(); 2136 Align = Target->getFloatAlign(); 2137 break; 2138 case BuiltinType::Double: 2139 Width = Target->getDoubleWidth(); 2140 Align = Target->getDoubleAlign(); 2141 break; 2142 case BuiltinType::Ibm128: 2143 Width = Target->getIbm128Width(); 2144 Align = Target->getIbm128Align(); 2145 break; 2146 case BuiltinType::LongDouble: 2147 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2148 (Target->getLongDoubleWidth() != AuxTarget->getLongDoubleWidth() || 2149 Target->getLongDoubleAlign() != AuxTarget->getLongDoubleAlign())) { 2150 Width = AuxTarget->getLongDoubleWidth(); 2151 Align = AuxTarget->getLongDoubleAlign(); 2152 } else { 2153 Width = Target->getLongDoubleWidth(); 2154 Align = Target->getLongDoubleAlign(); 2155 } 2156 break; 2157 case BuiltinType::Float128: 2158 if (Target->hasFloat128Type() || !getLangOpts().OpenMP || 2159 !getLangOpts().OpenMPIsDevice) { 2160 Width = Target->getFloat128Width(); 2161 Align = Target->getFloat128Align(); 2162 } else { 2163 assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2164 "Expected OpenMP device compilation."); 2165 Width = AuxTarget->getFloat128Width(); 2166 Align = AuxTarget->getFloat128Align(); 2167 } 2168 break; 2169 case BuiltinType::NullPtr: 2170 Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t) 2171 Align = Target->getPointerAlign(0); // == sizeof(void*) 2172 break; 2173 case BuiltinType::ObjCId: 2174 case BuiltinType::ObjCClass: 2175 case BuiltinType::ObjCSel: 2176 Width = Target->getPointerWidth(0); 2177 Align = Target->getPointerAlign(0); 2178 break; 2179 case BuiltinType::OCLSampler: 2180 case BuiltinType::OCLEvent: 2181 case BuiltinType::OCLClkEvent: 2182 case BuiltinType::OCLQueue: 2183 case BuiltinType::OCLReserveID: 2184 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 2185 case BuiltinType::Id: 2186 #include "clang/Basic/OpenCLImageTypes.def" 2187 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 2188 case BuiltinType::Id: 2189 #include "clang/Basic/OpenCLExtensionTypes.def" 2190 AS = getTargetAddressSpace( 2191 Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T))); 2192 Width = Target->getPointerWidth(AS); 2193 Align = Target->getPointerAlign(AS); 2194 break; 2195 // The SVE types are effectively target-specific. The length of an 2196 // SVE_VECTOR_TYPE is only known at runtime, but it is always a multiple 2197 // of 128 bits. There is one predicate bit for each vector byte, so the 2198 // length of an SVE_PREDICATE_TYPE is always a multiple of 16 bits. 2199 // 2200 // Because the length is only known at runtime, we use a dummy value 2201 // of 0 for the static length. The alignment values are those defined 2202 // by the Procedure Call Standard for the Arm Architecture. 2203 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits, \ 2204 IsSigned, IsFP, IsBF) \ 2205 case BuiltinType::Id: \ 2206 Width = 0; \ 2207 Align = 128; \ 2208 break; 2209 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls) \ 2210 case BuiltinType::Id: \ 2211 Width = 0; \ 2212 Align = 16; \ 2213 break; 2214 #include "clang/Basic/AArch64SVEACLETypes.def" 2215 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 2216 case BuiltinType::Id: \ 2217 Width = Size; \ 2218 Align = Size; \ 2219 break; 2220 #include "clang/Basic/PPCTypes.def" 2221 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, ElKind, ElBits, NF, IsSigned, \ 2222 IsFP) \ 2223 case BuiltinType::Id: \ 2224 Width = 0; \ 2225 Align = ElBits; \ 2226 break; 2227 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, ElKind) \ 2228 case BuiltinType::Id: \ 2229 Width = 0; \ 2230 Align = 8; \ 2231 break; 2232 #include "clang/Basic/RISCVVTypes.def" 2233 } 2234 break; 2235 case Type::ObjCObjectPointer: 2236 Width = Target->getPointerWidth(0); 2237 Align = Target->getPointerAlign(0); 2238 break; 2239 case Type::BlockPointer: 2240 AS = getTargetAddressSpace(cast<BlockPointerType>(T)->getPointeeType()); 2241 Width = Target->getPointerWidth(AS); 2242 Align = Target->getPointerAlign(AS); 2243 break; 2244 case Type::LValueReference: 2245 case Type::RValueReference: 2246 // alignof and sizeof should never enter this code path here, so we go 2247 // the pointer route. 2248 AS = getTargetAddressSpace(cast<ReferenceType>(T)->getPointeeType()); 2249 Width = Target->getPointerWidth(AS); 2250 Align = Target->getPointerAlign(AS); 2251 break; 2252 case Type::Pointer: 2253 AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType()); 2254 Width = Target->getPointerWidth(AS); 2255 Align = Target->getPointerAlign(AS); 2256 break; 2257 case Type::MemberPointer: { 2258 const auto *MPT = cast<MemberPointerType>(T); 2259 CXXABI::MemberPointerInfo MPI = ABI->getMemberPointerInfo(MPT); 2260 Width = MPI.Width; 2261 Align = MPI.Align; 2262 break; 2263 } 2264 case Type::Complex: { 2265 // Complex types have the same alignment as their elements, but twice the 2266 // size. 2267 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); 2268 Width = EltInfo.Width * 2; 2269 Align = EltInfo.Align; 2270 break; 2271 } 2272 case Type::ObjCObject: 2273 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr()); 2274 case Type::Adjusted: 2275 case Type::Decayed: 2276 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); 2277 case Type::ObjCInterface: { 2278 const auto *ObjCI = cast<ObjCInterfaceType>(T); 2279 if (ObjCI->getDecl()->isInvalidDecl()) { 2280 Width = 8; 2281 Align = 8; 2282 break; 2283 } 2284 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl()); 2285 Width = toBits(Layout.getSize()); 2286 Align = toBits(Layout.getAlignment()); 2287 break; 2288 } 2289 case Type::BitInt: { 2290 const auto *EIT = cast<BitIntType>(T); 2291 Align = 2292 std::min(static_cast<unsigned>(std::max( 2293 getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))), 2294 Target->getLongLongAlign()); 2295 Width = llvm::alignTo(EIT->getNumBits(), Align); 2296 break; 2297 } 2298 case Type::Record: 2299 case Type::Enum: { 2300 const auto *TT = cast<TagType>(T); 2301 2302 if (TT->getDecl()->isInvalidDecl()) { 2303 Width = 8; 2304 Align = 8; 2305 break; 2306 } 2307 2308 if (const auto *ET = dyn_cast<EnumType>(TT)) { 2309 const EnumDecl *ED = ET->getDecl(); 2310 TypeInfo Info = 2311 getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType()); 2312 if (unsigned AttrAlign = ED->getMaxAlignment()) { 2313 Info.Align = AttrAlign; 2314 Info.AlignRequirement = AlignRequirementKind::RequiredByEnum; 2315 } 2316 return Info; 2317 } 2318 2319 const auto *RT = cast<RecordType>(TT); 2320 const RecordDecl *RD = RT->getDecl(); 2321 const ASTRecordLayout &Layout = getASTRecordLayout(RD); 2322 Width = toBits(Layout.getSize()); 2323 Align = toBits(Layout.getAlignment()); 2324 AlignRequirement = RD->hasAttr<AlignedAttr>() 2325 ? AlignRequirementKind::RequiredByRecord 2326 : AlignRequirementKind::None; 2327 break; 2328 } 2329 2330 case Type::SubstTemplateTypeParm: 2331 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)-> 2332 getReplacementType().getTypePtr()); 2333 2334 case Type::Auto: 2335 case Type::DeducedTemplateSpecialization: { 2336 const auto *A = cast<DeducedType>(T); 2337 assert(!A->getDeducedType().isNull() && 2338 "cannot request the size of an undeduced or dependent auto type"); 2339 return getTypeInfo(A->getDeducedType().getTypePtr()); 2340 } 2341 2342 case Type::Paren: 2343 return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr()); 2344 2345 case Type::MacroQualified: 2346 return getTypeInfo( 2347 cast<MacroQualifiedType>(T)->getUnderlyingType().getTypePtr()); 2348 2349 case Type::ObjCTypeParam: 2350 return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr()); 2351 2352 case Type::Using: 2353 return getTypeInfo(cast<UsingType>(T)->desugar().getTypePtr()); 2354 2355 case Type::Typedef: { 2356 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl(); 2357 TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr()); 2358 // If the typedef has an aligned attribute on it, it overrides any computed 2359 // alignment we have. This violates the GCC documentation (which says that 2360 // attribute(aligned) can only round up) but matches its implementation. 2361 if (unsigned AttrAlign = Typedef->getMaxAlignment()) { 2362 Align = AttrAlign; 2363 AlignRequirement = AlignRequirementKind::RequiredByTypedef; 2364 } else { 2365 Align = Info.Align; 2366 AlignRequirement = Info.AlignRequirement; 2367 } 2368 Width = Info.Width; 2369 break; 2370 } 2371 2372 case Type::Elaborated: 2373 return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr()); 2374 2375 case Type::Attributed: 2376 return getTypeInfo( 2377 cast<AttributedType>(T)->getEquivalentType().getTypePtr()); 2378 2379 case Type::Atomic: { 2380 // Start with the base type information. 2381 TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType()); 2382 Width = Info.Width; 2383 Align = Info.Align; 2384 2385 if (!Width) { 2386 // An otherwise zero-sized type should still generate an 2387 // atomic operation. 2388 Width = Target->getCharWidth(); 2389 assert(Align); 2390 } else if (Width <= Target->getMaxAtomicPromoteWidth()) { 2391 // If the size of the type doesn't exceed the platform's max 2392 // atomic promotion width, make the size and alignment more 2393 // favorable to atomic operations: 2394 2395 // Round the size up to a power of 2. 2396 if (!llvm::isPowerOf2_64(Width)) 2397 Width = llvm::NextPowerOf2(Width); 2398 2399 // Set the alignment equal to the size. 2400 Align = static_cast<unsigned>(Width); 2401 } 2402 } 2403 break; 2404 2405 case Type::Pipe: 2406 Width = Target->getPointerWidth(getTargetAddressSpace(LangAS::opencl_global)); 2407 Align = Target->getPointerAlign(getTargetAddressSpace(LangAS::opencl_global)); 2408 break; 2409 } 2410 2411 assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2"); 2412 return TypeInfo(Width, Align, AlignRequirement); 2413 } 2414 2415 unsigned ASTContext::getTypeUnadjustedAlign(const Type *T) const { 2416 UnadjustedAlignMap::iterator I = MemoizedUnadjustedAlign.find(T); 2417 if (I != MemoizedUnadjustedAlign.end()) 2418 return I->second; 2419 2420 unsigned UnadjustedAlign; 2421 if (const auto *RT = T->getAs<RecordType>()) { 2422 const RecordDecl *RD = RT->getDecl(); 2423 const ASTRecordLayout &Layout = getASTRecordLayout(RD); 2424 UnadjustedAlign = toBits(Layout.getUnadjustedAlignment()); 2425 } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) { 2426 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl()); 2427 UnadjustedAlign = toBits(Layout.getUnadjustedAlignment()); 2428 } else { 2429 UnadjustedAlign = getTypeAlign(T->getUnqualifiedDesugaredType()); 2430 } 2431 2432 MemoizedUnadjustedAlign[T] = UnadjustedAlign; 2433 return UnadjustedAlign; 2434 } 2435 2436 unsigned ASTContext::getOpenMPDefaultSimdAlign(QualType T) const { 2437 unsigned SimdAlign = getTargetInfo().getSimdDefaultAlign(); 2438 return SimdAlign; 2439 } 2440 2441 /// toCharUnitsFromBits - Convert a size in bits to a size in characters. 2442 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const { 2443 return CharUnits::fromQuantity(BitSize / getCharWidth()); 2444 } 2445 2446 /// toBits - Convert a size in characters to a size in characters. 2447 int64_t ASTContext::toBits(CharUnits CharSize) const { 2448 return CharSize.getQuantity() * getCharWidth(); 2449 } 2450 2451 /// getTypeSizeInChars - Return the size of the specified type, in characters. 2452 /// This method does not work on incomplete types. 2453 CharUnits ASTContext::getTypeSizeInChars(QualType T) const { 2454 return getTypeInfoInChars(T).Width; 2455 } 2456 CharUnits ASTContext::getTypeSizeInChars(const Type *T) const { 2457 return getTypeInfoInChars(T).Width; 2458 } 2459 2460 /// getTypeAlignInChars - Return the ABI-specified alignment of a type, in 2461 /// characters. This method does not work on incomplete types. 2462 CharUnits ASTContext::getTypeAlignInChars(QualType T) const { 2463 return toCharUnitsFromBits(getTypeAlign(T)); 2464 } 2465 CharUnits ASTContext::getTypeAlignInChars(const Type *T) const { 2466 return toCharUnitsFromBits(getTypeAlign(T)); 2467 } 2468 2469 /// getTypeUnadjustedAlignInChars - Return the ABI-specified alignment of a 2470 /// type, in characters, before alignment adustments. This method does 2471 /// not work on incomplete types. 2472 CharUnits ASTContext::getTypeUnadjustedAlignInChars(QualType T) const { 2473 return toCharUnitsFromBits(getTypeUnadjustedAlign(T)); 2474 } 2475 CharUnits ASTContext::getTypeUnadjustedAlignInChars(const Type *T) const { 2476 return toCharUnitsFromBits(getTypeUnadjustedAlign(T)); 2477 } 2478 2479 /// getPreferredTypeAlign - Return the "preferred" alignment of the specified 2480 /// type for the current target in bits. This can be different than the ABI 2481 /// alignment in cases where it is beneficial for performance or backwards 2482 /// compatibility preserving to overalign a data type. (Note: despite the name, 2483 /// the preferred alignment is ABI-impacting, and not an optimization.) 2484 unsigned ASTContext::getPreferredTypeAlign(const Type *T) const { 2485 TypeInfo TI = getTypeInfo(T); 2486 unsigned ABIAlign = TI.Align; 2487 2488 T = T->getBaseElementTypeUnsafe(); 2489 2490 // The preferred alignment of member pointers is that of a pointer. 2491 if (T->isMemberPointerType()) 2492 return getPreferredTypeAlign(getPointerDiffType().getTypePtr()); 2493 2494 if (!Target->allowsLargerPreferedTypeAlignment()) 2495 return ABIAlign; 2496 2497 if (const auto *RT = T->getAs<RecordType>()) { 2498 const RecordDecl *RD = RT->getDecl(); 2499 2500 // When used as part of a typedef, or together with a 'packed' attribute, 2501 // the 'aligned' attribute can be used to decrease alignment. Note that the 2502 // 'packed' case is already taken into consideration when computing the 2503 // alignment, we only need to handle the typedef case here. 2504 if (TI.AlignRequirement == AlignRequirementKind::RequiredByTypedef || 2505 RD->isInvalidDecl()) 2506 return ABIAlign; 2507 2508 unsigned PreferredAlign = static_cast<unsigned>( 2509 toBits(getASTRecordLayout(RD).PreferredAlignment)); 2510 assert(PreferredAlign >= ABIAlign && 2511 "PreferredAlign should be at least as large as ABIAlign."); 2512 return PreferredAlign; 2513 } 2514 2515 // Double (and, for targets supporting AIX `power` alignment, long double) and 2516 // long long should be naturally aligned (despite requiring less alignment) if 2517 // possible. 2518 if (const auto *CT = T->getAs<ComplexType>()) 2519 T = CT->getElementType().getTypePtr(); 2520 if (const auto *ET = T->getAs<EnumType>()) 2521 T = ET->getDecl()->getIntegerType().getTypePtr(); 2522 if (T->isSpecificBuiltinType(BuiltinType::Double) || 2523 T->isSpecificBuiltinType(BuiltinType::LongLong) || 2524 T->isSpecificBuiltinType(BuiltinType::ULongLong) || 2525 (T->isSpecificBuiltinType(BuiltinType::LongDouble) && 2526 Target->defaultsToAIXPowerAlignment())) 2527 // Don't increase the alignment if an alignment attribute was specified on a 2528 // typedef declaration. 2529 if (!TI.isAlignRequired()) 2530 return std::max(ABIAlign, (unsigned)getTypeSize(T)); 2531 2532 return ABIAlign; 2533 } 2534 2535 /// getTargetDefaultAlignForAttributeAligned - Return the default alignment 2536 /// for __attribute__((aligned)) on this target, to be used if no alignment 2537 /// value is specified. 2538 unsigned ASTContext::getTargetDefaultAlignForAttributeAligned() const { 2539 return getTargetInfo().getDefaultAlignForAttributeAligned(); 2540 } 2541 2542 /// getAlignOfGlobalVar - Return the alignment in bits that should be given 2543 /// to a global variable of the specified type. 2544 unsigned ASTContext::getAlignOfGlobalVar(QualType T) const { 2545 uint64_t TypeSize = getTypeSize(T.getTypePtr()); 2546 return std::max(getPreferredTypeAlign(T), 2547 getTargetInfo().getMinGlobalAlign(TypeSize)); 2548 } 2549 2550 /// getAlignOfGlobalVarInChars - Return the alignment in characters that 2551 /// should be given to a global variable of the specified type. 2552 CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const { 2553 return toCharUnitsFromBits(getAlignOfGlobalVar(T)); 2554 } 2555 2556 CharUnits ASTContext::getOffsetOfBaseWithVBPtr(const CXXRecordDecl *RD) const { 2557 CharUnits Offset = CharUnits::Zero(); 2558 const ASTRecordLayout *Layout = &getASTRecordLayout(RD); 2559 while (const CXXRecordDecl *Base = Layout->getBaseSharingVBPtr()) { 2560 Offset += Layout->getBaseClassOffset(Base); 2561 Layout = &getASTRecordLayout(Base); 2562 } 2563 return Offset; 2564 } 2565 2566 CharUnits ASTContext::getMemberPointerPathAdjustment(const APValue &MP) const { 2567 const ValueDecl *MPD = MP.getMemberPointerDecl(); 2568 CharUnits ThisAdjustment = CharUnits::Zero(); 2569 ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath(); 2570 bool DerivedMember = MP.isMemberPointerToDerivedMember(); 2571 const CXXRecordDecl *RD = cast<CXXRecordDecl>(MPD->getDeclContext()); 2572 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 2573 const CXXRecordDecl *Base = RD; 2574 const CXXRecordDecl *Derived = Path[I]; 2575 if (DerivedMember) 2576 std::swap(Base, Derived); 2577 ThisAdjustment += getASTRecordLayout(Derived).getBaseClassOffset(Base); 2578 RD = Path[I]; 2579 } 2580 if (DerivedMember) 2581 ThisAdjustment = -ThisAdjustment; 2582 return ThisAdjustment; 2583 } 2584 2585 /// DeepCollectObjCIvars - 2586 /// This routine first collects all declared, but not synthesized, ivars in 2587 /// super class and then collects all ivars, including those synthesized for 2588 /// current class. This routine is used for implementation of current class 2589 /// when all ivars, declared and synthesized are known. 2590 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI, 2591 bool leafClass, 2592 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const { 2593 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass()) 2594 DeepCollectObjCIvars(SuperClass, false, Ivars); 2595 if (!leafClass) { 2596 for (const auto *I : OI->ivars()) 2597 Ivars.push_back(I); 2598 } else { 2599 auto *IDecl = const_cast<ObjCInterfaceDecl *>(OI); 2600 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv; 2601 Iv= Iv->getNextIvar()) 2602 Ivars.push_back(Iv); 2603 } 2604 } 2605 2606 /// CollectInheritedProtocols - Collect all protocols in current class and 2607 /// those inherited by it. 2608 void ASTContext::CollectInheritedProtocols(const Decl *CDecl, 2609 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) { 2610 if (const auto *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) { 2611 // We can use protocol_iterator here instead of 2612 // all_referenced_protocol_iterator since we are walking all categories. 2613 for (auto *Proto : OI->all_referenced_protocols()) { 2614 CollectInheritedProtocols(Proto, Protocols); 2615 } 2616 2617 // Categories of this Interface. 2618 for (const auto *Cat : OI->visible_categories()) 2619 CollectInheritedProtocols(Cat, Protocols); 2620 2621 if (ObjCInterfaceDecl *SD = OI->getSuperClass()) 2622 while (SD) { 2623 CollectInheritedProtocols(SD, Protocols); 2624 SD = SD->getSuperClass(); 2625 } 2626 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) { 2627 for (auto *Proto : OC->protocols()) { 2628 CollectInheritedProtocols(Proto, Protocols); 2629 } 2630 } else if (const auto *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) { 2631 // Insert the protocol. 2632 if (!Protocols.insert( 2633 const_cast<ObjCProtocolDecl *>(OP->getCanonicalDecl())).second) 2634 return; 2635 2636 for (auto *Proto : OP->protocols()) 2637 CollectInheritedProtocols(Proto, Protocols); 2638 } 2639 } 2640 2641 static bool unionHasUniqueObjectRepresentations(const ASTContext &Context, 2642 const RecordDecl *RD) { 2643 assert(RD->isUnion() && "Must be union type"); 2644 CharUnits UnionSize = Context.getTypeSizeInChars(RD->getTypeForDecl()); 2645 2646 for (const auto *Field : RD->fields()) { 2647 if (!Context.hasUniqueObjectRepresentations(Field->getType())) 2648 return false; 2649 CharUnits FieldSize = Context.getTypeSizeInChars(Field->getType()); 2650 if (FieldSize != UnionSize) 2651 return false; 2652 } 2653 return !RD->field_empty(); 2654 } 2655 2656 static int64_t getSubobjectOffset(const FieldDecl *Field, 2657 const ASTContext &Context, 2658 const clang::ASTRecordLayout & /*Layout*/) { 2659 return Context.getFieldOffset(Field); 2660 } 2661 2662 static int64_t getSubobjectOffset(const CXXRecordDecl *RD, 2663 const ASTContext &Context, 2664 const clang::ASTRecordLayout &Layout) { 2665 return Context.toBits(Layout.getBaseClassOffset(RD)); 2666 } 2667 2668 static llvm::Optional<int64_t> 2669 structHasUniqueObjectRepresentations(const ASTContext &Context, 2670 const RecordDecl *RD); 2671 2672 static llvm::Optional<int64_t> 2673 getSubobjectSizeInBits(const FieldDecl *Field, const ASTContext &Context) { 2674 if (Field->getType()->isRecordType()) { 2675 const RecordDecl *RD = Field->getType()->getAsRecordDecl(); 2676 if (!RD->isUnion()) 2677 return structHasUniqueObjectRepresentations(Context, RD); 2678 } 2679 if (!Field->getType()->isReferenceType() && 2680 !Context.hasUniqueObjectRepresentations(Field->getType())) 2681 return llvm::None; 2682 2683 int64_t FieldSizeInBits = 2684 Context.toBits(Context.getTypeSizeInChars(Field->getType())); 2685 if (Field->isBitField()) { 2686 int64_t BitfieldSize = Field->getBitWidthValue(Context); 2687 if (BitfieldSize > FieldSizeInBits) 2688 return llvm::None; 2689 FieldSizeInBits = BitfieldSize; 2690 } 2691 return FieldSizeInBits; 2692 } 2693 2694 static llvm::Optional<int64_t> 2695 getSubobjectSizeInBits(const CXXRecordDecl *RD, const ASTContext &Context) { 2696 return structHasUniqueObjectRepresentations(Context, RD); 2697 } 2698 2699 template <typename RangeT> 2700 static llvm::Optional<int64_t> structSubobjectsHaveUniqueObjectRepresentations( 2701 const RangeT &Subobjects, int64_t CurOffsetInBits, 2702 const ASTContext &Context, const clang::ASTRecordLayout &Layout) { 2703 for (const auto *Subobject : Subobjects) { 2704 llvm::Optional<int64_t> SizeInBits = 2705 getSubobjectSizeInBits(Subobject, Context); 2706 if (!SizeInBits) 2707 return llvm::None; 2708 if (*SizeInBits != 0) { 2709 int64_t Offset = getSubobjectOffset(Subobject, Context, Layout); 2710 if (Offset != CurOffsetInBits) 2711 return llvm::None; 2712 CurOffsetInBits += *SizeInBits; 2713 } 2714 } 2715 return CurOffsetInBits; 2716 } 2717 2718 static llvm::Optional<int64_t> 2719 structHasUniqueObjectRepresentations(const ASTContext &Context, 2720 const RecordDecl *RD) { 2721 assert(!RD->isUnion() && "Must be struct/class type"); 2722 const auto &Layout = Context.getASTRecordLayout(RD); 2723 2724 int64_t CurOffsetInBits = 0; 2725 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD)) { 2726 if (ClassDecl->isDynamicClass()) 2727 return llvm::None; 2728 2729 SmallVector<CXXRecordDecl *, 4> Bases; 2730 for (const auto &Base : ClassDecl->bases()) { 2731 // Empty types can be inherited from, and non-empty types can potentially 2732 // have tail padding, so just make sure there isn't an error. 2733 Bases.emplace_back(Base.getType()->getAsCXXRecordDecl()); 2734 } 2735 2736 llvm::sort(Bases, [&](const CXXRecordDecl *L, const CXXRecordDecl *R) { 2737 return Layout.getBaseClassOffset(L) < Layout.getBaseClassOffset(R); 2738 }); 2739 2740 llvm::Optional<int64_t> OffsetAfterBases = 2741 structSubobjectsHaveUniqueObjectRepresentations(Bases, CurOffsetInBits, 2742 Context, Layout); 2743 if (!OffsetAfterBases) 2744 return llvm::None; 2745 CurOffsetInBits = *OffsetAfterBases; 2746 } 2747 2748 llvm::Optional<int64_t> OffsetAfterFields = 2749 structSubobjectsHaveUniqueObjectRepresentations( 2750 RD->fields(), CurOffsetInBits, Context, Layout); 2751 if (!OffsetAfterFields) 2752 return llvm::None; 2753 CurOffsetInBits = *OffsetAfterFields; 2754 2755 return CurOffsetInBits; 2756 } 2757 2758 bool ASTContext::hasUniqueObjectRepresentations(QualType Ty) const { 2759 // C++17 [meta.unary.prop]: 2760 // The predicate condition for a template specialization 2761 // has_unique_object_representations<T> shall be 2762 // satisfied if and only if: 2763 // (9.1) - T is trivially copyable, and 2764 // (9.2) - any two objects of type T with the same value have the same 2765 // object representation, where two objects 2766 // of array or non-union class type are considered to have the same value 2767 // if their respective sequences of 2768 // direct subobjects have the same values, and two objects of union type 2769 // are considered to have the same 2770 // value if they have the same active member and the corresponding members 2771 // have the same value. 2772 // The set of scalar types for which this condition holds is 2773 // implementation-defined. [ Note: If a type has padding 2774 // bits, the condition does not hold; otherwise, the condition holds true 2775 // for unsigned integral types. -- end note ] 2776 assert(!Ty.isNull() && "Null QualType sent to unique object rep check"); 2777 2778 // Arrays are unique only if their element type is unique. 2779 if (Ty->isArrayType()) 2780 return hasUniqueObjectRepresentations(getBaseElementType(Ty)); 2781 2782 // (9.1) - T is trivially copyable... 2783 if (!Ty.isTriviallyCopyableType(*this)) 2784 return false; 2785 2786 // All integrals and enums are unique. 2787 if (Ty->isIntegralOrEnumerationType()) 2788 return true; 2789 2790 // All other pointers are unique. 2791 if (Ty->isPointerType()) 2792 return true; 2793 2794 if (Ty->isMemberPointerType()) { 2795 const auto *MPT = Ty->getAs<MemberPointerType>(); 2796 return !ABI->getMemberPointerInfo(MPT).HasPadding; 2797 } 2798 2799 if (Ty->isRecordType()) { 2800 const RecordDecl *Record = Ty->castAs<RecordType>()->getDecl(); 2801 2802 if (Record->isInvalidDecl()) 2803 return false; 2804 2805 if (Record->isUnion()) 2806 return unionHasUniqueObjectRepresentations(*this, Record); 2807 2808 Optional<int64_t> StructSize = 2809 structHasUniqueObjectRepresentations(*this, Record); 2810 2811 return StructSize && 2812 StructSize.getValue() == static_cast<int64_t>(getTypeSize(Ty)); 2813 } 2814 2815 // FIXME: More cases to handle here (list by rsmith): 2816 // vectors (careful about, eg, vector of 3 foo) 2817 // _Complex int and friends 2818 // _Atomic T 2819 // Obj-C block pointers 2820 // Obj-C object pointers 2821 // and perhaps OpenCL's various builtin types (pipe, sampler_t, event_t, 2822 // clk_event_t, queue_t, reserve_id_t) 2823 // There're also Obj-C class types and the Obj-C selector type, but I think it 2824 // makes sense for those to return false here. 2825 2826 return false; 2827 } 2828 2829 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const { 2830 unsigned count = 0; 2831 // Count ivars declared in class extension. 2832 for (const auto *Ext : OI->known_extensions()) 2833 count += Ext->ivar_size(); 2834 2835 // Count ivar defined in this class's implementation. This 2836 // includes synthesized ivars. 2837 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) 2838 count += ImplDecl->ivar_size(); 2839 2840 return count; 2841 } 2842 2843 bool ASTContext::isSentinelNullExpr(const Expr *E) { 2844 if (!E) 2845 return false; 2846 2847 // nullptr_t is always treated as null. 2848 if (E->getType()->isNullPtrType()) return true; 2849 2850 if (E->getType()->isAnyPointerType() && 2851 E->IgnoreParenCasts()->isNullPointerConstant(*this, 2852 Expr::NPC_ValueDependentIsNull)) 2853 return true; 2854 2855 // Unfortunately, __null has type 'int'. 2856 if (isa<GNUNullExpr>(E)) return true; 2857 2858 return false; 2859 } 2860 2861 /// Get the implementation of ObjCInterfaceDecl, or nullptr if none 2862 /// exists. 2863 ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) { 2864 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator 2865 I = ObjCImpls.find(D); 2866 if (I != ObjCImpls.end()) 2867 return cast<ObjCImplementationDecl>(I->second); 2868 return nullptr; 2869 } 2870 2871 /// Get the implementation of ObjCCategoryDecl, or nullptr if none 2872 /// exists. 2873 ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) { 2874 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator 2875 I = ObjCImpls.find(D); 2876 if (I != ObjCImpls.end()) 2877 return cast<ObjCCategoryImplDecl>(I->second); 2878 return nullptr; 2879 } 2880 2881 /// Set the implementation of ObjCInterfaceDecl. 2882 void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD, 2883 ObjCImplementationDecl *ImplD) { 2884 assert(IFaceD && ImplD && "Passed null params"); 2885 ObjCImpls[IFaceD] = ImplD; 2886 } 2887 2888 /// Set the implementation of ObjCCategoryDecl. 2889 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD, 2890 ObjCCategoryImplDecl *ImplD) { 2891 assert(CatD && ImplD && "Passed null params"); 2892 ObjCImpls[CatD] = ImplD; 2893 } 2894 2895 const ObjCMethodDecl * 2896 ASTContext::getObjCMethodRedeclaration(const ObjCMethodDecl *MD) const { 2897 return ObjCMethodRedecls.lookup(MD); 2898 } 2899 2900 void ASTContext::setObjCMethodRedeclaration(const ObjCMethodDecl *MD, 2901 const ObjCMethodDecl *Redecl) { 2902 assert(!getObjCMethodRedeclaration(MD) && "MD already has a redeclaration"); 2903 ObjCMethodRedecls[MD] = Redecl; 2904 } 2905 2906 const ObjCInterfaceDecl *ASTContext::getObjContainingInterface( 2907 const NamedDecl *ND) const { 2908 if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext())) 2909 return ID; 2910 if (const auto *CD = dyn_cast<ObjCCategoryDecl>(ND->getDeclContext())) 2911 return CD->getClassInterface(); 2912 if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext())) 2913 return IMD->getClassInterface(); 2914 2915 return nullptr; 2916 } 2917 2918 /// Get the copy initialization expression of VarDecl, or nullptr if 2919 /// none exists. 2920 BlockVarCopyInit ASTContext::getBlockVarCopyInit(const VarDecl *VD) const { 2921 assert(VD && "Passed null params"); 2922 assert(VD->hasAttr<BlocksAttr>() && 2923 "getBlockVarCopyInits - not __block var"); 2924 auto I = BlockVarCopyInits.find(VD); 2925 if (I != BlockVarCopyInits.end()) 2926 return I->second; 2927 return {nullptr, false}; 2928 } 2929 2930 /// Set the copy initialization expression of a block var decl. 2931 void ASTContext::setBlockVarCopyInit(const VarDecl*VD, Expr *CopyExpr, 2932 bool CanThrow) { 2933 assert(VD && CopyExpr && "Passed null params"); 2934 assert(VD->hasAttr<BlocksAttr>() && 2935 "setBlockVarCopyInits - not __block var"); 2936 BlockVarCopyInits[VD].setExprAndFlag(CopyExpr, CanThrow); 2937 } 2938 2939 TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T, 2940 unsigned DataSize) const { 2941 if (!DataSize) 2942 DataSize = TypeLoc::getFullDataSizeForType(T); 2943 else 2944 assert(DataSize == TypeLoc::getFullDataSizeForType(T) && 2945 "incorrect data size provided to CreateTypeSourceInfo!"); 2946 2947 auto *TInfo = 2948 (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8); 2949 new (TInfo) TypeSourceInfo(T); 2950 return TInfo; 2951 } 2952 2953 TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T, 2954 SourceLocation L) const { 2955 TypeSourceInfo *DI = CreateTypeSourceInfo(T); 2956 DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L); 2957 return DI; 2958 } 2959 2960 const ASTRecordLayout & 2961 ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const { 2962 return getObjCLayout(D, nullptr); 2963 } 2964 2965 const ASTRecordLayout & 2966 ASTContext::getASTObjCImplementationLayout( 2967 const ObjCImplementationDecl *D) const { 2968 return getObjCLayout(D->getClassInterface(), D); 2969 } 2970 2971 //===----------------------------------------------------------------------===// 2972 // Type creation/memoization methods 2973 //===----------------------------------------------------------------------===// 2974 2975 QualType 2976 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { 2977 unsigned fastQuals = quals.getFastQualifiers(); 2978 quals.removeFastQualifiers(); 2979 2980 // Check if we've already instantiated this type. 2981 llvm::FoldingSetNodeID ID; 2982 ExtQuals::Profile(ID, baseType, quals); 2983 void *insertPos = nullptr; 2984 if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) { 2985 assert(eq->getQualifiers() == quals); 2986 return QualType(eq, fastQuals); 2987 } 2988 2989 // If the base type is not canonical, make the appropriate canonical type. 2990 QualType canon; 2991 if (!baseType->isCanonicalUnqualified()) { 2992 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); 2993 canonSplit.Quals.addConsistentQualifiers(quals); 2994 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals); 2995 2996 // Re-find the insert position. 2997 (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos); 2998 } 2999 3000 auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); 3001 ExtQualNodes.InsertNode(eq, insertPos); 3002 return QualType(eq, fastQuals); 3003 } 3004 3005 QualType ASTContext::getAddrSpaceQualType(QualType T, 3006 LangAS AddressSpace) const { 3007 QualType CanT = getCanonicalType(T); 3008 if (CanT.getAddressSpace() == AddressSpace) 3009 return T; 3010 3011 // If we are composing extended qualifiers together, merge together 3012 // into one ExtQuals node. 3013 QualifierCollector Quals; 3014 const Type *TypeNode = Quals.strip(T); 3015 3016 // If this type already has an address space specified, it cannot get 3017 // another one. 3018 assert(!Quals.hasAddressSpace() && 3019 "Type cannot be in multiple addr spaces!"); 3020 Quals.addAddressSpace(AddressSpace); 3021 3022 return getExtQualType(TypeNode, Quals); 3023 } 3024 3025 QualType ASTContext::removeAddrSpaceQualType(QualType T) const { 3026 // If the type is not qualified with an address space, just return it 3027 // immediately. 3028 if (!T.hasAddressSpace()) 3029 return T; 3030 3031 // If we are composing extended qualifiers together, merge together 3032 // into one ExtQuals node. 3033 QualifierCollector Quals; 3034 const Type *TypeNode; 3035 3036 while (T.hasAddressSpace()) { 3037 TypeNode = Quals.strip(T); 3038 3039 // If the type no longer has an address space after stripping qualifiers, 3040 // jump out. 3041 if (!QualType(TypeNode, 0).hasAddressSpace()) 3042 break; 3043 3044 // There might be sugar in the way. Strip it and try again. 3045 T = T.getSingleStepDesugaredType(*this); 3046 } 3047 3048 Quals.removeAddressSpace(); 3049 3050 // Removal of the address space can mean there are no longer any 3051 // non-fast qualifiers, so creating an ExtQualType isn't possible (asserts) 3052 // or required. 3053 if (Quals.hasNonFastQualifiers()) 3054 return getExtQualType(TypeNode, Quals); 3055 else 3056 return QualType(TypeNode, Quals.getFastQualifiers()); 3057 } 3058 3059 QualType ASTContext::getObjCGCQualType(QualType T, 3060 Qualifiers::GC GCAttr) const { 3061 QualType CanT = getCanonicalType(T); 3062 if (CanT.getObjCGCAttr() == GCAttr) 3063 return T; 3064 3065 if (const auto *ptr = T->getAs<PointerType>()) { 3066 QualType Pointee = ptr->getPointeeType(); 3067 if (Pointee->isAnyPointerType()) { 3068 QualType ResultType = getObjCGCQualType(Pointee, GCAttr); 3069 return getPointerType(ResultType); 3070 } 3071 } 3072 3073 // If we are composing extended qualifiers together, merge together 3074 // into one ExtQuals node. 3075 QualifierCollector Quals; 3076 const Type *TypeNode = Quals.strip(T); 3077 3078 // If this type already has an ObjCGC specified, it cannot get 3079 // another one. 3080 assert(!Quals.hasObjCGCAttr() && 3081 "Type cannot have multiple ObjCGCs!"); 3082 Quals.addObjCGCAttr(GCAttr); 3083 3084 return getExtQualType(TypeNode, Quals); 3085 } 3086 3087 QualType ASTContext::removePtrSizeAddrSpace(QualType T) const { 3088 if (const PointerType *Ptr = T->getAs<PointerType>()) { 3089 QualType Pointee = Ptr->getPointeeType(); 3090 if (isPtrSizeAddressSpace(Pointee.getAddressSpace())) { 3091 return getPointerType(removeAddrSpaceQualType(Pointee)); 3092 } 3093 } 3094 return T; 3095 } 3096 3097 const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T, 3098 FunctionType::ExtInfo Info) { 3099 if (T->getExtInfo() == Info) 3100 return T; 3101 3102 QualType Result; 3103 if (const auto *FNPT = dyn_cast<FunctionNoProtoType>(T)) { 3104 Result = getFunctionNoProtoType(FNPT->getReturnType(), Info); 3105 } else { 3106 const auto *FPT = cast<FunctionProtoType>(T); 3107 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 3108 EPI.ExtInfo = Info; 3109 Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI); 3110 } 3111 3112 return cast<FunctionType>(Result.getTypePtr()); 3113 } 3114 3115 void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD, 3116 QualType ResultType) { 3117 FD = FD->getMostRecentDecl(); 3118 while (true) { 3119 const auto *FPT = FD->getType()->castAs<FunctionProtoType>(); 3120 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 3121 FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI)); 3122 if (FunctionDecl *Next = FD->getPreviousDecl()) 3123 FD = Next; 3124 else 3125 break; 3126 } 3127 if (ASTMutationListener *L = getASTMutationListener()) 3128 L->DeducedReturnType(FD, ResultType); 3129 } 3130 3131 /// Get a function type and produce the equivalent function type with the 3132 /// specified exception specification. Type sugar that can be present on a 3133 /// declaration of a function with an exception specification is permitted 3134 /// and preserved. Other type sugar (for instance, typedefs) is not. 3135 QualType ASTContext::getFunctionTypeWithExceptionSpec( 3136 QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) { 3137 // Might have some parens. 3138 if (const auto *PT = dyn_cast<ParenType>(Orig)) 3139 return getParenType( 3140 getFunctionTypeWithExceptionSpec(PT->getInnerType(), ESI)); 3141 3142 // Might be wrapped in a macro qualified type. 3143 if (const auto *MQT = dyn_cast<MacroQualifiedType>(Orig)) 3144 return getMacroQualifiedType( 3145 getFunctionTypeWithExceptionSpec(MQT->getUnderlyingType(), ESI), 3146 MQT->getMacroIdentifier()); 3147 3148 // Might have a calling-convention attribute. 3149 if (const auto *AT = dyn_cast<AttributedType>(Orig)) 3150 return getAttributedType( 3151 AT->getAttrKind(), 3152 getFunctionTypeWithExceptionSpec(AT->getModifiedType(), ESI), 3153 getFunctionTypeWithExceptionSpec(AT->getEquivalentType(), ESI)); 3154 3155 // Anything else must be a function type. Rebuild it with the new exception 3156 // specification. 3157 const auto *Proto = Orig->castAs<FunctionProtoType>(); 3158 return getFunctionType( 3159 Proto->getReturnType(), Proto->getParamTypes(), 3160 Proto->getExtProtoInfo().withExceptionSpec(ESI)); 3161 } 3162 3163 bool ASTContext::hasSameFunctionTypeIgnoringExceptionSpec(QualType T, 3164 QualType U) { 3165 return hasSameType(T, U) || 3166 (getLangOpts().CPlusPlus17 && 3167 hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None), 3168 getFunctionTypeWithExceptionSpec(U, EST_None))); 3169 } 3170 3171 QualType ASTContext::getFunctionTypeWithoutPtrSizes(QualType T) { 3172 if (const auto *Proto = T->getAs<FunctionProtoType>()) { 3173 QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType()); 3174 SmallVector<QualType, 16> Args(Proto->param_types()); 3175 for (unsigned i = 0, n = Args.size(); i != n; ++i) 3176 Args[i] = removePtrSizeAddrSpace(Args[i]); 3177 return getFunctionType(RetTy, Args, Proto->getExtProtoInfo()); 3178 } 3179 3180 if (const FunctionNoProtoType *Proto = T->getAs<FunctionNoProtoType>()) { 3181 QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType()); 3182 return getFunctionNoProtoType(RetTy, Proto->getExtInfo()); 3183 } 3184 3185 return T; 3186 } 3187 3188 bool ASTContext::hasSameFunctionTypeIgnoringPtrSizes(QualType T, QualType U) { 3189 return hasSameType(T, U) || 3190 hasSameType(getFunctionTypeWithoutPtrSizes(T), 3191 getFunctionTypeWithoutPtrSizes(U)); 3192 } 3193 3194 void ASTContext::adjustExceptionSpec( 3195 FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI, 3196 bool AsWritten) { 3197 // Update the type. 3198 QualType Updated = 3199 getFunctionTypeWithExceptionSpec(FD->getType(), ESI); 3200 FD->setType(Updated); 3201 3202 if (!AsWritten) 3203 return; 3204 3205 // Update the type in the type source information too. 3206 if (TypeSourceInfo *TSInfo = FD->getTypeSourceInfo()) { 3207 // If the type and the type-as-written differ, we may need to update 3208 // the type-as-written too. 3209 if (TSInfo->getType() != FD->getType()) 3210 Updated = getFunctionTypeWithExceptionSpec(TSInfo->getType(), ESI); 3211 3212 // FIXME: When we get proper type location information for exceptions, 3213 // we'll also have to rebuild the TypeSourceInfo. For now, we just patch 3214 // up the TypeSourceInfo; 3215 assert(TypeLoc::getFullDataSizeForType(Updated) == 3216 TypeLoc::getFullDataSizeForType(TSInfo->getType()) && 3217 "TypeLoc size mismatch from updating exception specification"); 3218 TSInfo->overrideType(Updated); 3219 } 3220 } 3221 3222 /// getComplexType - Return the uniqued reference to the type for a complex 3223 /// number with the specified element type. 3224 QualType ASTContext::getComplexType(QualType T) const { 3225 // Unique pointers, to guarantee there is only one pointer of a particular 3226 // structure. 3227 llvm::FoldingSetNodeID ID; 3228 ComplexType::Profile(ID, T); 3229 3230 void *InsertPos = nullptr; 3231 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos)) 3232 return QualType(CT, 0); 3233 3234 // If the pointee type isn't canonical, this won't be a canonical type either, 3235 // so fill in the canonical type field. 3236 QualType Canonical; 3237 if (!T.isCanonical()) { 3238 Canonical = getComplexType(getCanonicalType(T)); 3239 3240 // Get the new insert position for the node we care about. 3241 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos); 3242 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3243 } 3244 auto *New = new (*this, TypeAlignment) ComplexType(T, Canonical); 3245 Types.push_back(New); 3246 ComplexTypes.InsertNode(New, InsertPos); 3247 return QualType(New, 0); 3248 } 3249 3250 /// getPointerType - Return the uniqued reference to the type for a pointer to 3251 /// the specified type. 3252 QualType ASTContext::getPointerType(QualType T) const { 3253 // Unique pointers, to guarantee there is only one pointer of a particular 3254 // structure. 3255 llvm::FoldingSetNodeID ID; 3256 PointerType::Profile(ID, T); 3257 3258 void *InsertPos = nullptr; 3259 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3260 return QualType(PT, 0); 3261 3262 // If the pointee type isn't canonical, this won't be a canonical type either, 3263 // so fill in the canonical type field. 3264 QualType Canonical; 3265 if (!T.isCanonical()) { 3266 Canonical = getPointerType(getCanonicalType(T)); 3267 3268 // Get the new insert position for the node we care about. 3269 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3270 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3271 } 3272 auto *New = new (*this, TypeAlignment) PointerType(T, Canonical); 3273 Types.push_back(New); 3274 PointerTypes.InsertNode(New, InsertPos); 3275 return QualType(New, 0); 3276 } 3277 3278 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const { 3279 llvm::FoldingSetNodeID ID; 3280 AdjustedType::Profile(ID, Orig, New); 3281 void *InsertPos = nullptr; 3282 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3283 if (AT) 3284 return QualType(AT, 0); 3285 3286 QualType Canonical = getCanonicalType(New); 3287 3288 // Get the new insert position for the node we care about. 3289 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3290 assert(!AT && "Shouldn't be in the map!"); 3291 3292 AT = new (*this, TypeAlignment) 3293 AdjustedType(Type::Adjusted, Orig, New, Canonical); 3294 Types.push_back(AT); 3295 AdjustedTypes.InsertNode(AT, InsertPos); 3296 return QualType(AT, 0); 3297 } 3298 3299 QualType ASTContext::getDecayedType(QualType T) const { 3300 assert((T->isArrayType() || T->isFunctionType()) && "T does not decay"); 3301 3302 QualType Decayed; 3303 3304 // C99 6.7.5.3p7: 3305 // A declaration of a parameter as "array of type" shall be 3306 // adjusted to "qualified pointer to type", where the type 3307 // qualifiers (if any) are those specified within the [ and ] of 3308 // the array type derivation. 3309 if (T->isArrayType()) 3310 Decayed = getArrayDecayedType(T); 3311 3312 // C99 6.7.5.3p8: 3313 // A declaration of a parameter as "function returning type" 3314 // shall be adjusted to "pointer to function returning type", as 3315 // in 6.3.2.1. 3316 if (T->isFunctionType()) 3317 Decayed = getPointerType(T); 3318 3319 llvm::FoldingSetNodeID ID; 3320 AdjustedType::Profile(ID, T, Decayed); 3321 void *InsertPos = nullptr; 3322 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3323 if (AT) 3324 return QualType(AT, 0); 3325 3326 QualType Canonical = getCanonicalType(Decayed); 3327 3328 // Get the new insert position for the node we care about. 3329 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3330 assert(!AT && "Shouldn't be in the map!"); 3331 3332 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); 3333 Types.push_back(AT); 3334 AdjustedTypes.InsertNode(AT, InsertPos); 3335 return QualType(AT, 0); 3336 } 3337 3338 /// getBlockPointerType - Return the uniqued reference to the type for 3339 /// a pointer to the specified block. 3340 QualType ASTContext::getBlockPointerType(QualType T) const { 3341 assert(T->isFunctionType() && "block of function types only"); 3342 // Unique pointers, to guarantee there is only one block of a particular 3343 // structure. 3344 llvm::FoldingSetNodeID ID; 3345 BlockPointerType::Profile(ID, T); 3346 3347 void *InsertPos = nullptr; 3348 if (BlockPointerType *PT = 3349 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3350 return QualType(PT, 0); 3351 3352 // If the block pointee type isn't canonical, this won't be a canonical 3353 // type either so fill in the canonical type field. 3354 QualType Canonical; 3355 if (!T.isCanonical()) { 3356 Canonical = getBlockPointerType(getCanonicalType(T)); 3357 3358 // Get the new insert position for the node we care about. 3359 BlockPointerType *NewIP = 3360 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3361 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3362 } 3363 auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical); 3364 Types.push_back(New); 3365 BlockPointerTypes.InsertNode(New, InsertPos); 3366 return QualType(New, 0); 3367 } 3368 3369 /// getLValueReferenceType - Return the uniqued reference to the type for an 3370 /// lvalue reference to the specified type. 3371 QualType 3372 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { 3373 assert(getCanonicalType(T) != OverloadTy && 3374 "Unresolved overloaded function type"); 3375 3376 // Unique pointers, to guarantee there is only one pointer of a particular 3377 // structure. 3378 llvm::FoldingSetNodeID ID; 3379 ReferenceType::Profile(ID, T, SpelledAsLValue); 3380 3381 void *InsertPos = nullptr; 3382 if (LValueReferenceType *RT = 3383 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos)) 3384 return QualType(RT, 0); 3385 3386 const auto *InnerRef = T->getAs<ReferenceType>(); 3387 3388 // If the referencee type isn't canonical, this won't be a canonical type 3389 // either, so fill in the canonical type field. 3390 QualType Canonical; 3391 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { 3392 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3393 Canonical = getLValueReferenceType(getCanonicalType(PointeeType)); 3394 3395 // Get the new insert position for the node we care about. 3396 LValueReferenceType *NewIP = 3397 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos); 3398 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3399 } 3400 3401 auto *New = new (*this, TypeAlignment) LValueReferenceType(T, Canonical, 3402 SpelledAsLValue); 3403 Types.push_back(New); 3404 LValueReferenceTypes.InsertNode(New, InsertPos); 3405 3406 return QualType(New, 0); 3407 } 3408 3409 /// getRValueReferenceType - Return the uniqued reference to the type for an 3410 /// rvalue reference to the specified type. 3411 QualType ASTContext::getRValueReferenceType(QualType T) const { 3412 // Unique pointers, to guarantee there is only one pointer of a particular 3413 // structure. 3414 llvm::FoldingSetNodeID ID; 3415 ReferenceType::Profile(ID, T, false); 3416 3417 void *InsertPos = nullptr; 3418 if (RValueReferenceType *RT = 3419 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos)) 3420 return QualType(RT, 0); 3421 3422 const auto *InnerRef = T->getAs<ReferenceType>(); 3423 3424 // If the referencee type isn't canonical, this won't be a canonical type 3425 // either, so fill in the canonical type field. 3426 QualType Canonical; 3427 if (InnerRef || !T.isCanonical()) { 3428 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3429 Canonical = getRValueReferenceType(getCanonicalType(PointeeType)); 3430 3431 // Get the new insert position for the node we care about. 3432 RValueReferenceType *NewIP = 3433 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos); 3434 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3435 } 3436 3437 auto *New = new (*this, TypeAlignment) RValueReferenceType(T, Canonical); 3438 Types.push_back(New); 3439 RValueReferenceTypes.InsertNode(New, InsertPos); 3440 return QualType(New, 0); 3441 } 3442 3443 /// getMemberPointerType - Return the uniqued reference to the type for a 3444 /// member pointer to the specified type, in the specified class. 3445 QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const { 3446 // Unique pointers, to guarantee there is only one pointer of a particular 3447 // structure. 3448 llvm::FoldingSetNodeID ID; 3449 MemberPointerType::Profile(ID, T, Cls); 3450 3451 void *InsertPos = nullptr; 3452 if (MemberPointerType *PT = 3453 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3454 return QualType(PT, 0); 3455 3456 // If the pointee or class type isn't canonical, this won't be a canonical 3457 // type either, so fill in the canonical type field. 3458 QualType Canonical; 3459 if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) { 3460 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls)); 3461 3462 // Get the new insert position for the node we care about. 3463 MemberPointerType *NewIP = 3464 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3465 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3466 } 3467 auto *New = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical); 3468 Types.push_back(New); 3469 MemberPointerTypes.InsertNode(New, InsertPos); 3470 return QualType(New, 0); 3471 } 3472 3473 /// getConstantArrayType - Return the unique reference to the type for an 3474 /// array of the specified element type. 3475 QualType ASTContext::getConstantArrayType(QualType EltTy, 3476 const llvm::APInt &ArySizeIn, 3477 const Expr *SizeExpr, 3478 ArrayType::ArraySizeModifier ASM, 3479 unsigned IndexTypeQuals) const { 3480 assert((EltTy->isDependentType() || 3481 EltTy->isIncompleteType() || EltTy->isConstantSizeType()) && 3482 "Constant array of VLAs is illegal!"); 3483 3484 // We only need the size as part of the type if it's instantiation-dependent. 3485 if (SizeExpr && !SizeExpr->isInstantiationDependent()) 3486 SizeExpr = nullptr; 3487 3488 // Convert the array size into a canonical width matching the pointer size for 3489 // the target. 3490 llvm::APInt ArySize(ArySizeIn); 3491 ArySize = ArySize.zextOrTrunc(Target->getMaxPointerWidth()); 3492 3493 llvm::FoldingSetNodeID ID; 3494 ConstantArrayType::Profile(ID, *this, EltTy, ArySize, SizeExpr, ASM, 3495 IndexTypeQuals); 3496 3497 void *InsertPos = nullptr; 3498 if (ConstantArrayType *ATP = 3499 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos)) 3500 return QualType(ATP, 0); 3501 3502 // If the element type isn't canonical or has qualifiers, or the array bound 3503 // is instantiation-dependent, this won't be a canonical type either, so fill 3504 // in the canonical type field. 3505 QualType Canon; 3506 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers() || SizeExpr) { 3507 SplitQualType canonSplit = getCanonicalType(EltTy).split(); 3508 Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize, nullptr, 3509 ASM, IndexTypeQuals); 3510 Canon = getQualifiedType(Canon, canonSplit.Quals); 3511 3512 // Get the new insert position for the node we care about. 3513 ConstantArrayType *NewIP = 3514 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos); 3515 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3516 } 3517 3518 void *Mem = Allocate( 3519 ConstantArrayType::totalSizeToAlloc<const Expr *>(SizeExpr ? 1 : 0), 3520 TypeAlignment); 3521 auto *New = new (Mem) 3522 ConstantArrayType(EltTy, Canon, ArySize, SizeExpr, ASM, IndexTypeQuals); 3523 ConstantArrayTypes.InsertNode(New, InsertPos); 3524 Types.push_back(New); 3525 return QualType(New, 0); 3526 } 3527 3528 /// getVariableArrayDecayedType - Turns the given type, which may be 3529 /// variably-modified, into the corresponding type with all the known 3530 /// sizes replaced with [*]. 3531 QualType ASTContext::getVariableArrayDecayedType(QualType type) const { 3532 // Vastly most common case. 3533 if (!type->isVariablyModifiedType()) return type; 3534 3535 QualType result; 3536 3537 SplitQualType split = type.getSplitDesugaredType(); 3538 const Type *ty = split.Ty; 3539 switch (ty->getTypeClass()) { 3540 #define TYPE(Class, Base) 3541 #define ABSTRACT_TYPE(Class, Base) 3542 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: 3543 #include "clang/AST/TypeNodes.inc" 3544 llvm_unreachable("didn't desugar past all non-canonical types?"); 3545 3546 // These types should never be variably-modified. 3547 case Type::Builtin: 3548 case Type::Complex: 3549 case Type::Vector: 3550 case Type::DependentVector: 3551 case Type::ExtVector: 3552 case Type::DependentSizedExtVector: 3553 case Type::ConstantMatrix: 3554 case Type::DependentSizedMatrix: 3555 case Type::DependentAddressSpace: 3556 case Type::ObjCObject: 3557 case Type::ObjCInterface: 3558 case Type::ObjCObjectPointer: 3559 case Type::Record: 3560 case Type::Enum: 3561 case Type::UnresolvedUsing: 3562 case Type::TypeOfExpr: 3563 case Type::TypeOf: 3564 case Type::Decltype: 3565 case Type::UnaryTransform: 3566 case Type::DependentName: 3567 case Type::InjectedClassName: 3568 case Type::TemplateSpecialization: 3569 case Type::DependentTemplateSpecialization: 3570 case Type::TemplateTypeParm: 3571 case Type::SubstTemplateTypeParmPack: 3572 case Type::Auto: 3573 case Type::DeducedTemplateSpecialization: 3574 case Type::PackExpansion: 3575 case Type::BitInt: 3576 case Type::DependentBitInt: 3577 llvm_unreachable("type should never be variably-modified"); 3578 3579 // These types can be variably-modified but should never need to 3580 // further decay. 3581 case Type::FunctionNoProto: 3582 case Type::FunctionProto: 3583 case Type::BlockPointer: 3584 case Type::MemberPointer: 3585 case Type::Pipe: 3586 return type; 3587 3588 // These types can be variably-modified. All these modifications 3589 // preserve structure except as noted by comments. 3590 // TODO: if we ever care about optimizing VLAs, there are no-op 3591 // optimizations available here. 3592 case Type::Pointer: 3593 result = getPointerType(getVariableArrayDecayedType( 3594 cast<PointerType>(ty)->getPointeeType())); 3595 break; 3596 3597 case Type::LValueReference: { 3598 const auto *lv = cast<LValueReferenceType>(ty); 3599 result = getLValueReferenceType( 3600 getVariableArrayDecayedType(lv->getPointeeType()), 3601 lv->isSpelledAsLValue()); 3602 break; 3603 } 3604 3605 case Type::RValueReference: { 3606 const auto *lv = cast<RValueReferenceType>(ty); 3607 result = getRValueReferenceType( 3608 getVariableArrayDecayedType(lv->getPointeeType())); 3609 break; 3610 } 3611 3612 case Type::Atomic: { 3613 const auto *at = cast<AtomicType>(ty); 3614 result = getAtomicType(getVariableArrayDecayedType(at->getValueType())); 3615 break; 3616 } 3617 3618 case Type::ConstantArray: { 3619 const auto *cat = cast<ConstantArrayType>(ty); 3620 result = getConstantArrayType( 3621 getVariableArrayDecayedType(cat->getElementType()), 3622 cat->getSize(), 3623 cat->getSizeExpr(), 3624 cat->getSizeModifier(), 3625 cat->getIndexTypeCVRQualifiers()); 3626 break; 3627 } 3628 3629 case Type::DependentSizedArray: { 3630 const auto *dat = cast<DependentSizedArrayType>(ty); 3631 result = getDependentSizedArrayType( 3632 getVariableArrayDecayedType(dat->getElementType()), 3633 dat->getSizeExpr(), 3634 dat->getSizeModifier(), 3635 dat->getIndexTypeCVRQualifiers(), 3636 dat->getBracketsRange()); 3637 break; 3638 } 3639 3640 // Turn incomplete types into [*] types. 3641 case Type::IncompleteArray: { 3642 const auto *iat = cast<IncompleteArrayType>(ty); 3643 result = getVariableArrayType( 3644 getVariableArrayDecayedType(iat->getElementType()), 3645 /*size*/ nullptr, 3646 ArrayType::Normal, 3647 iat->getIndexTypeCVRQualifiers(), 3648 SourceRange()); 3649 break; 3650 } 3651 3652 // Turn VLA types into [*] types. 3653 case Type::VariableArray: { 3654 const auto *vat = cast<VariableArrayType>(ty); 3655 result = getVariableArrayType( 3656 getVariableArrayDecayedType(vat->getElementType()), 3657 /*size*/ nullptr, 3658 ArrayType::Star, 3659 vat->getIndexTypeCVRQualifiers(), 3660 vat->getBracketsRange()); 3661 break; 3662 } 3663 } 3664 3665 // Apply the top-level qualifiers from the original. 3666 return getQualifiedType(result, split.Quals); 3667 } 3668 3669 /// getVariableArrayType - Returns a non-unique reference to the type for a 3670 /// variable array of the specified element type. 3671 QualType ASTContext::getVariableArrayType(QualType EltTy, 3672 Expr *NumElts, 3673 ArrayType::ArraySizeModifier ASM, 3674 unsigned IndexTypeQuals, 3675 SourceRange Brackets) const { 3676 // Since we don't unique expressions, it isn't possible to unique VLA's 3677 // that have an expression provided for their size. 3678 QualType Canon; 3679 3680 // Be sure to pull qualifiers off the element type. 3681 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) { 3682 SplitQualType canonSplit = getCanonicalType(EltTy).split(); 3683 Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM, 3684 IndexTypeQuals, Brackets); 3685 Canon = getQualifiedType(Canon, canonSplit.Quals); 3686 } 3687 3688 auto *New = new (*this, TypeAlignment) 3689 VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets); 3690 3691 VariableArrayTypes.push_back(New); 3692 Types.push_back(New); 3693 return QualType(New, 0); 3694 } 3695 3696 /// getDependentSizedArrayType - Returns a non-unique reference to 3697 /// the type for a dependently-sized array of the specified element 3698 /// type. 3699 QualType ASTContext::getDependentSizedArrayType(QualType elementType, 3700 Expr *numElements, 3701 ArrayType::ArraySizeModifier ASM, 3702 unsigned elementTypeQuals, 3703 SourceRange brackets) const { 3704 assert((!numElements || numElements->isTypeDependent() || 3705 numElements->isValueDependent()) && 3706 "Size must be type- or value-dependent!"); 3707 3708 // Dependently-sized array types that do not have a specified number 3709 // of elements will have their sizes deduced from a dependent 3710 // initializer. We do no canonicalization here at all, which is okay 3711 // because they can't be used in most locations. 3712 if (!numElements) { 3713 auto *newType 3714 = new (*this, TypeAlignment) 3715 DependentSizedArrayType(*this, elementType, QualType(), 3716 numElements, ASM, elementTypeQuals, 3717 brackets); 3718 Types.push_back(newType); 3719 return QualType(newType, 0); 3720 } 3721 3722 // Otherwise, we actually build a new type every time, but we 3723 // also build a canonical type. 3724 3725 SplitQualType canonElementType = getCanonicalType(elementType).split(); 3726 3727 void *insertPos = nullptr; 3728 llvm::FoldingSetNodeID ID; 3729 DependentSizedArrayType::Profile(ID, *this, 3730 QualType(canonElementType.Ty, 0), 3731 ASM, elementTypeQuals, numElements); 3732 3733 // Look for an existing type with these properties. 3734 DependentSizedArrayType *canonTy = 3735 DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos); 3736 3737 // If we don't have one, build one. 3738 if (!canonTy) { 3739 canonTy = new (*this, TypeAlignment) 3740 DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0), 3741 QualType(), numElements, ASM, elementTypeQuals, 3742 brackets); 3743 DependentSizedArrayTypes.InsertNode(canonTy, insertPos); 3744 Types.push_back(canonTy); 3745 } 3746 3747 // Apply qualifiers from the element type to the array. 3748 QualType canon = getQualifiedType(QualType(canonTy,0), 3749 canonElementType.Quals); 3750 3751 // If we didn't need extra canonicalization for the element type or the size 3752 // expression, then just use that as our result. 3753 if (QualType(canonElementType.Ty, 0) == elementType && 3754 canonTy->getSizeExpr() == numElements) 3755 return canon; 3756 3757 // Otherwise, we need to build a type which follows the spelling 3758 // of the element type. 3759 auto *sugaredType 3760 = new (*this, TypeAlignment) 3761 DependentSizedArrayType(*this, elementType, canon, numElements, 3762 ASM, elementTypeQuals, brackets); 3763 Types.push_back(sugaredType); 3764 return QualType(sugaredType, 0); 3765 } 3766 3767 QualType ASTContext::getIncompleteArrayType(QualType elementType, 3768 ArrayType::ArraySizeModifier ASM, 3769 unsigned elementTypeQuals) const { 3770 llvm::FoldingSetNodeID ID; 3771 IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals); 3772 3773 void *insertPos = nullptr; 3774 if (IncompleteArrayType *iat = 3775 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos)) 3776 return QualType(iat, 0); 3777 3778 // If the element type isn't canonical, this won't be a canonical type 3779 // either, so fill in the canonical type field. We also have to pull 3780 // qualifiers off the element type. 3781 QualType canon; 3782 3783 if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) { 3784 SplitQualType canonSplit = getCanonicalType(elementType).split(); 3785 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0), 3786 ASM, elementTypeQuals); 3787 canon = getQualifiedType(canon, canonSplit.Quals); 3788 3789 // Get the new insert position for the node we care about. 3790 IncompleteArrayType *existing = 3791 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos); 3792 assert(!existing && "Shouldn't be in the map!"); (void) existing; 3793 } 3794 3795 auto *newType = new (*this, TypeAlignment) 3796 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals); 3797 3798 IncompleteArrayTypes.InsertNode(newType, insertPos); 3799 Types.push_back(newType); 3800 return QualType(newType, 0); 3801 } 3802 3803 ASTContext::BuiltinVectorTypeInfo 3804 ASTContext::getBuiltinVectorTypeInfo(const BuiltinType *Ty) const { 3805 #define SVE_INT_ELTTY(BITS, ELTS, SIGNED, NUMVECTORS) \ 3806 {getIntTypeForBitwidth(BITS, SIGNED), llvm::ElementCount::getScalable(ELTS), \ 3807 NUMVECTORS}; 3808 3809 #define SVE_ELTTY(ELTTY, ELTS, NUMVECTORS) \ 3810 {ELTTY, llvm::ElementCount::getScalable(ELTS), NUMVECTORS}; 3811 3812 switch (Ty->getKind()) { 3813 default: 3814 llvm_unreachable("Unsupported builtin vector type"); 3815 case BuiltinType::SveInt8: 3816 return SVE_INT_ELTTY(8, 16, true, 1); 3817 case BuiltinType::SveUint8: 3818 return SVE_INT_ELTTY(8, 16, false, 1); 3819 case BuiltinType::SveInt8x2: 3820 return SVE_INT_ELTTY(8, 16, true, 2); 3821 case BuiltinType::SveUint8x2: 3822 return SVE_INT_ELTTY(8, 16, false, 2); 3823 case BuiltinType::SveInt8x3: 3824 return SVE_INT_ELTTY(8, 16, true, 3); 3825 case BuiltinType::SveUint8x3: 3826 return SVE_INT_ELTTY(8, 16, false, 3); 3827 case BuiltinType::SveInt8x4: 3828 return SVE_INT_ELTTY(8, 16, true, 4); 3829 case BuiltinType::SveUint8x4: 3830 return SVE_INT_ELTTY(8, 16, false, 4); 3831 case BuiltinType::SveInt16: 3832 return SVE_INT_ELTTY(16, 8, true, 1); 3833 case BuiltinType::SveUint16: 3834 return SVE_INT_ELTTY(16, 8, false, 1); 3835 case BuiltinType::SveInt16x2: 3836 return SVE_INT_ELTTY(16, 8, true, 2); 3837 case BuiltinType::SveUint16x2: 3838 return SVE_INT_ELTTY(16, 8, false, 2); 3839 case BuiltinType::SveInt16x3: 3840 return SVE_INT_ELTTY(16, 8, true, 3); 3841 case BuiltinType::SveUint16x3: 3842 return SVE_INT_ELTTY(16, 8, false, 3); 3843 case BuiltinType::SveInt16x4: 3844 return SVE_INT_ELTTY(16, 8, true, 4); 3845 case BuiltinType::SveUint16x4: 3846 return SVE_INT_ELTTY(16, 8, false, 4); 3847 case BuiltinType::SveInt32: 3848 return SVE_INT_ELTTY(32, 4, true, 1); 3849 case BuiltinType::SveUint32: 3850 return SVE_INT_ELTTY(32, 4, false, 1); 3851 case BuiltinType::SveInt32x2: 3852 return SVE_INT_ELTTY(32, 4, true, 2); 3853 case BuiltinType::SveUint32x2: 3854 return SVE_INT_ELTTY(32, 4, false, 2); 3855 case BuiltinType::SveInt32x3: 3856 return SVE_INT_ELTTY(32, 4, true, 3); 3857 case BuiltinType::SveUint32x3: 3858 return SVE_INT_ELTTY(32, 4, false, 3); 3859 case BuiltinType::SveInt32x4: 3860 return SVE_INT_ELTTY(32, 4, true, 4); 3861 case BuiltinType::SveUint32x4: 3862 return SVE_INT_ELTTY(32, 4, false, 4); 3863 case BuiltinType::SveInt64: 3864 return SVE_INT_ELTTY(64, 2, true, 1); 3865 case BuiltinType::SveUint64: 3866 return SVE_INT_ELTTY(64, 2, false, 1); 3867 case BuiltinType::SveInt64x2: 3868 return SVE_INT_ELTTY(64, 2, true, 2); 3869 case BuiltinType::SveUint64x2: 3870 return SVE_INT_ELTTY(64, 2, false, 2); 3871 case BuiltinType::SveInt64x3: 3872 return SVE_INT_ELTTY(64, 2, true, 3); 3873 case BuiltinType::SveUint64x3: 3874 return SVE_INT_ELTTY(64, 2, false, 3); 3875 case BuiltinType::SveInt64x4: 3876 return SVE_INT_ELTTY(64, 2, true, 4); 3877 case BuiltinType::SveUint64x4: 3878 return SVE_INT_ELTTY(64, 2, false, 4); 3879 case BuiltinType::SveBool: 3880 return SVE_ELTTY(BoolTy, 16, 1); 3881 case BuiltinType::SveFloat16: 3882 return SVE_ELTTY(HalfTy, 8, 1); 3883 case BuiltinType::SveFloat16x2: 3884 return SVE_ELTTY(HalfTy, 8, 2); 3885 case BuiltinType::SveFloat16x3: 3886 return SVE_ELTTY(HalfTy, 8, 3); 3887 case BuiltinType::SveFloat16x4: 3888 return SVE_ELTTY(HalfTy, 8, 4); 3889 case BuiltinType::SveFloat32: 3890 return SVE_ELTTY(FloatTy, 4, 1); 3891 case BuiltinType::SveFloat32x2: 3892 return SVE_ELTTY(FloatTy, 4, 2); 3893 case BuiltinType::SveFloat32x3: 3894 return SVE_ELTTY(FloatTy, 4, 3); 3895 case BuiltinType::SveFloat32x4: 3896 return SVE_ELTTY(FloatTy, 4, 4); 3897 case BuiltinType::SveFloat64: 3898 return SVE_ELTTY(DoubleTy, 2, 1); 3899 case BuiltinType::SveFloat64x2: 3900 return SVE_ELTTY(DoubleTy, 2, 2); 3901 case BuiltinType::SveFloat64x3: 3902 return SVE_ELTTY(DoubleTy, 2, 3); 3903 case BuiltinType::SveFloat64x4: 3904 return SVE_ELTTY(DoubleTy, 2, 4); 3905 case BuiltinType::SveBFloat16: 3906 return SVE_ELTTY(BFloat16Ty, 8, 1); 3907 case BuiltinType::SveBFloat16x2: 3908 return SVE_ELTTY(BFloat16Ty, 8, 2); 3909 case BuiltinType::SveBFloat16x3: 3910 return SVE_ELTTY(BFloat16Ty, 8, 3); 3911 case BuiltinType::SveBFloat16x4: 3912 return SVE_ELTTY(BFloat16Ty, 8, 4); 3913 #define RVV_VECTOR_TYPE_INT(Name, Id, SingletonId, NumEls, ElBits, NF, \ 3914 IsSigned) \ 3915 case BuiltinType::Id: \ 3916 return {getIntTypeForBitwidth(ElBits, IsSigned), \ 3917 llvm::ElementCount::getScalable(NumEls), NF}; 3918 #define RVV_VECTOR_TYPE_FLOAT(Name, Id, SingletonId, NumEls, ElBits, NF) \ 3919 case BuiltinType::Id: \ 3920 return {ElBits == 16 ? Float16Ty : (ElBits == 32 ? FloatTy : DoubleTy), \ 3921 llvm::ElementCount::getScalable(NumEls), NF}; 3922 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls) \ 3923 case BuiltinType::Id: \ 3924 return {BoolTy, llvm::ElementCount::getScalable(NumEls), 1}; 3925 #include "clang/Basic/RISCVVTypes.def" 3926 } 3927 } 3928 3929 /// getScalableVectorType - Return the unique reference to a scalable vector 3930 /// type of the specified element type and size. VectorType must be a built-in 3931 /// type. 3932 QualType ASTContext::getScalableVectorType(QualType EltTy, 3933 unsigned NumElts) const { 3934 if (Target->hasAArch64SVETypes()) { 3935 uint64_t EltTySize = getTypeSize(EltTy); 3936 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits, \ 3937 IsSigned, IsFP, IsBF) \ 3938 if (!EltTy->isBooleanType() && \ 3939 ((EltTy->hasIntegerRepresentation() && \ 3940 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ 3941 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ 3942 IsFP && !IsBF) || \ 3943 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ 3944 IsBF && !IsFP)) && \ 3945 EltTySize == ElBits && NumElts == NumEls) { \ 3946 return SingletonId; \ 3947 } 3948 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls) \ 3949 if (EltTy->isBooleanType() && NumElts == NumEls) \ 3950 return SingletonId; 3951 #include "clang/Basic/AArch64SVEACLETypes.def" 3952 } else if (Target->hasRISCVVTypes()) { 3953 uint64_t EltTySize = getTypeSize(EltTy); 3954 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, NumEls, ElBits, NF, IsSigned, \ 3955 IsFP) \ 3956 if (!EltTy->isBooleanType() && \ 3957 ((EltTy->hasIntegerRepresentation() && \ 3958 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ 3959 (EltTy->hasFloatingRepresentation() && IsFP)) && \ 3960 EltTySize == ElBits && NumElts == NumEls) \ 3961 return SingletonId; 3962 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls) \ 3963 if (EltTy->isBooleanType() && NumElts == NumEls) \ 3964 return SingletonId; 3965 #include "clang/Basic/RISCVVTypes.def" 3966 } 3967 return QualType(); 3968 } 3969 3970 /// getVectorType - Return the unique reference to a vector type of 3971 /// the specified element type and size. VectorType must be a built-in type. 3972 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, 3973 VectorType::VectorKind VecKind) const { 3974 assert(vecType->isBuiltinType()); 3975 3976 // Check if we've already instantiated a vector of this type. 3977 llvm::FoldingSetNodeID ID; 3978 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); 3979 3980 void *InsertPos = nullptr; 3981 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos)) 3982 return QualType(VTP, 0); 3983 3984 // If the element type isn't canonical, this won't be a canonical type either, 3985 // so fill in the canonical type field. 3986 QualType Canonical; 3987 if (!vecType.isCanonical()) { 3988 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); 3989 3990 // Get the new insert position for the node we care about. 3991 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); 3992 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3993 } 3994 auto *New = new (*this, TypeAlignment) 3995 VectorType(vecType, NumElts, Canonical, VecKind); 3996 VectorTypes.InsertNode(New, InsertPos); 3997 Types.push_back(New); 3998 return QualType(New, 0); 3999 } 4000 4001 QualType 4002 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr, 4003 SourceLocation AttrLoc, 4004 VectorType::VectorKind VecKind) const { 4005 llvm::FoldingSetNodeID ID; 4006 DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr, 4007 VecKind); 4008 void *InsertPos = nullptr; 4009 DependentVectorType *Canon = 4010 DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4011 DependentVectorType *New; 4012 4013 if (Canon) { 4014 New = new (*this, TypeAlignment) DependentVectorType( 4015 *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind); 4016 } else { 4017 QualType CanonVecTy = getCanonicalType(VecType); 4018 if (CanonVecTy == VecType) { 4019 New = new (*this, TypeAlignment) DependentVectorType( 4020 *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind); 4021 4022 DependentVectorType *CanonCheck = 4023 DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4024 assert(!CanonCheck && 4025 "Dependent-sized vector_size canonical type broken"); 4026 (void)CanonCheck; 4027 DependentVectorTypes.InsertNode(New, InsertPos); 4028 } else { 4029 QualType CanonTy = getDependentVectorType(CanonVecTy, SizeExpr, 4030 SourceLocation(), VecKind); 4031 New = new (*this, TypeAlignment) DependentVectorType( 4032 *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind); 4033 } 4034 } 4035 4036 Types.push_back(New); 4037 return QualType(New, 0); 4038 } 4039 4040 /// getExtVectorType - Return the unique reference to an extended vector type of 4041 /// the specified element type and size. VectorType must be a built-in type. 4042 QualType 4043 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { 4044 assert(vecType->isBuiltinType() || vecType->isDependentType()); 4045 4046 // Check if we've already instantiated a vector of this type. 4047 llvm::FoldingSetNodeID ID; 4048 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector, 4049 VectorType::GenericVector); 4050 void *InsertPos = nullptr; 4051 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos)) 4052 return QualType(VTP, 0); 4053 4054 // If the element type isn't canonical, this won't be a canonical type either, 4055 // so fill in the canonical type field. 4056 QualType Canonical; 4057 if (!vecType.isCanonical()) { 4058 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts); 4059 4060 // Get the new insert position for the node we care about. 4061 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4062 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4063 } 4064 auto *New = new (*this, TypeAlignment) 4065 ExtVectorType(vecType, NumElts, Canonical); 4066 VectorTypes.InsertNode(New, InsertPos); 4067 Types.push_back(New); 4068 return QualType(New, 0); 4069 } 4070 4071 QualType 4072 ASTContext::getDependentSizedExtVectorType(QualType vecType, 4073 Expr *SizeExpr, 4074 SourceLocation AttrLoc) const { 4075 llvm::FoldingSetNodeID ID; 4076 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType), 4077 SizeExpr); 4078 4079 void *InsertPos = nullptr; 4080 DependentSizedExtVectorType *Canon 4081 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4082 DependentSizedExtVectorType *New; 4083 if (Canon) { 4084 // We already have a canonical version of this array type; use it as 4085 // the canonical type for a newly-built type. 4086 New = new (*this, TypeAlignment) 4087 DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0), 4088 SizeExpr, AttrLoc); 4089 } else { 4090 QualType CanonVecTy = getCanonicalType(vecType); 4091 if (CanonVecTy == vecType) { 4092 New = new (*this, TypeAlignment) 4093 DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr, 4094 AttrLoc); 4095 4096 DependentSizedExtVectorType *CanonCheck 4097 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4098 assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken"); 4099 (void)CanonCheck; 4100 DependentSizedExtVectorTypes.InsertNode(New, InsertPos); 4101 } else { 4102 QualType CanonExtTy = getDependentSizedExtVectorType(CanonVecTy, SizeExpr, 4103 SourceLocation()); 4104 New = new (*this, TypeAlignment) DependentSizedExtVectorType( 4105 *this, vecType, CanonExtTy, SizeExpr, AttrLoc); 4106 } 4107 } 4108 4109 Types.push_back(New); 4110 return QualType(New, 0); 4111 } 4112 4113 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, 4114 unsigned NumColumns) const { 4115 llvm::FoldingSetNodeID ID; 4116 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, 4117 Type::ConstantMatrix); 4118 4119 assert(MatrixType::isValidElementType(ElementTy) && 4120 "need a valid element type"); 4121 assert(ConstantMatrixType::isDimensionValid(NumRows) && 4122 ConstantMatrixType::isDimensionValid(NumColumns) && 4123 "need valid matrix dimensions"); 4124 void *InsertPos = nullptr; 4125 if (ConstantMatrixType *MTP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos)) 4126 return QualType(MTP, 0); 4127 4128 QualType Canonical; 4129 if (!ElementTy.isCanonical()) { 4130 Canonical = 4131 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); 4132 4133 ConstantMatrixType *NewIP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4134 assert(!NewIP && "Matrix type shouldn't already exist in the map"); 4135 (void)NewIP; 4136 } 4137 4138 auto *New = new (*this, TypeAlignment) 4139 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); 4140 MatrixTypes.InsertNode(New, InsertPos); 4141 Types.push_back(New); 4142 return QualType(New, 0); 4143 } 4144 4145 QualType ASTContext::getDependentSizedMatrixType(QualType ElementTy, 4146 Expr *RowExpr, 4147 Expr *ColumnExpr, 4148 SourceLocation AttrLoc) const { 4149 QualType CanonElementTy = getCanonicalType(ElementTy); 4150 llvm::FoldingSetNodeID ID; 4151 DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr, 4152 ColumnExpr); 4153 4154 void *InsertPos = nullptr; 4155 DependentSizedMatrixType *Canon = 4156 DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4157 4158 if (!Canon) { 4159 Canon = new (*this, TypeAlignment) DependentSizedMatrixType( 4160 *this, CanonElementTy, QualType(), RowExpr, ColumnExpr, AttrLoc); 4161 #ifndef NDEBUG 4162 DependentSizedMatrixType *CanonCheck = 4163 DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4164 assert(!CanonCheck && "Dependent-sized matrix canonical type broken"); 4165 #endif 4166 DependentSizedMatrixTypes.InsertNode(Canon, InsertPos); 4167 Types.push_back(Canon); 4168 } 4169 4170 // Already have a canonical version of the matrix type 4171 // 4172 // If it exactly matches the requested type, use it directly. 4173 if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr && 4174 Canon->getRowExpr() == ColumnExpr) 4175 return QualType(Canon, 0); 4176 4177 // Use Canon as the canonical type for newly-built type. 4178 DependentSizedMatrixType *New = new (*this, TypeAlignment) 4179 DependentSizedMatrixType(*this, ElementTy, QualType(Canon, 0), RowExpr, 4180 ColumnExpr, AttrLoc); 4181 Types.push_back(New); 4182 return QualType(New, 0); 4183 } 4184 4185 QualType ASTContext::getDependentAddressSpaceType(QualType PointeeType, 4186 Expr *AddrSpaceExpr, 4187 SourceLocation AttrLoc) const { 4188 assert(AddrSpaceExpr->isInstantiationDependent()); 4189 4190 QualType canonPointeeType = getCanonicalType(PointeeType); 4191 4192 void *insertPos = nullptr; 4193 llvm::FoldingSetNodeID ID; 4194 DependentAddressSpaceType::Profile(ID, *this, canonPointeeType, 4195 AddrSpaceExpr); 4196 4197 DependentAddressSpaceType *canonTy = 4198 DependentAddressSpaceTypes.FindNodeOrInsertPos(ID, insertPos); 4199 4200 if (!canonTy) { 4201 canonTy = new (*this, TypeAlignment) 4202 DependentAddressSpaceType(*this, canonPointeeType, 4203 QualType(), AddrSpaceExpr, AttrLoc); 4204 DependentAddressSpaceTypes.InsertNode(canonTy, insertPos); 4205 Types.push_back(canonTy); 4206 } 4207 4208 if (canonPointeeType == PointeeType && 4209 canonTy->getAddrSpaceExpr() == AddrSpaceExpr) 4210 return QualType(canonTy, 0); 4211 4212 auto *sugaredType 4213 = new (*this, TypeAlignment) 4214 DependentAddressSpaceType(*this, PointeeType, QualType(canonTy, 0), 4215 AddrSpaceExpr, AttrLoc); 4216 Types.push_back(sugaredType); 4217 return QualType(sugaredType, 0); 4218 } 4219 4220 /// Determine whether \p T is canonical as the result type of a function. 4221 static bool isCanonicalResultType(QualType T) { 4222 return T.isCanonical() && 4223 (T.getObjCLifetime() == Qualifiers::OCL_None || 4224 T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone); 4225 } 4226 4227 /// getFunctionNoProtoType - Return a K&R style C function type like 'int()'. 4228 QualType 4229 ASTContext::getFunctionNoProtoType(QualType ResultTy, 4230 const FunctionType::ExtInfo &Info) const { 4231 // Unique functions, to guarantee there is only one function of a particular 4232 // structure. 4233 llvm::FoldingSetNodeID ID; 4234 FunctionNoProtoType::Profile(ID, ResultTy, Info); 4235 4236 void *InsertPos = nullptr; 4237 if (FunctionNoProtoType *FT = 4238 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) 4239 return QualType(FT, 0); 4240 4241 QualType Canonical; 4242 if (!isCanonicalResultType(ResultTy)) { 4243 Canonical = 4244 getFunctionNoProtoType(getCanonicalFunctionResultType(ResultTy), Info); 4245 4246 // Get the new insert position for the node we care about. 4247 FunctionNoProtoType *NewIP = 4248 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos); 4249 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4250 } 4251 4252 auto *New = new (*this, TypeAlignment) 4253 FunctionNoProtoType(ResultTy, Canonical, Info); 4254 Types.push_back(New); 4255 FunctionNoProtoTypes.InsertNode(New, InsertPos); 4256 return QualType(New, 0); 4257 } 4258 4259 CanQualType 4260 ASTContext::getCanonicalFunctionResultType(QualType ResultType) const { 4261 CanQualType CanResultType = getCanonicalType(ResultType); 4262 4263 // Canonical result types do not have ARC lifetime qualifiers. 4264 if (CanResultType.getQualifiers().hasObjCLifetime()) { 4265 Qualifiers Qs = CanResultType.getQualifiers(); 4266 Qs.removeObjCLifetime(); 4267 return CanQualType::CreateUnsafe( 4268 getQualifiedType(CanResultType.getUnqualifiedType(), Qs)); 4269 } 4270 4271 return CanResultType; 4272 } 4273 4274 static bool isCanonicalExceptionSpecification( 4275 const FunctionProtoType::ExceptionSpecInfo &ESI, bool NoexceptInType) { 4276 if (ESI.Type == EST_None) 4277 return true; 4278 if (!NoexceptInType) 4279 return false; 4280 4281 // C++17 onwards: exception specification is part of the type, as a simple 4282 // boolean "can this function type throw". 4283 if (ESI.Type == EST_BasicNoexcept) 4284 return true; 4285 4286 // A noexcept(expr) specification is (possibly) canonical if expr is 4287 // value-dependent. 4288 if (ESI.Type == EST_DependentNoexcept) 4289 return true; 4290 4291 // A dynamic exception specification is canonical if it only contains pack 4292 // expansions (so we can't tell whether it's non-throwing) and all its 4293 // contained types are canonical. 4294 if (ESI.Type == EST_Dynamic) { 4295 bool AnyPackExpansions = false; 4296 for (QualType ET : ESI.Exceptions) { 4297 if (!ET.isCanonical()) 4298 return false; 4299 if (ET->getAs<PackExpansionType>()) 4300 AnyPackExpansions = true; 4301 } 4302 return AnyPackExpansions; 4303 } 4304 4305 return false; 4306 } 4307 4308 QualType ASTContext::getFunctionTypeInternal( 4309 QualType ResultTy, ArrayRef<QualType> ArgArray, 4310 const FunctionProtoType::ExtProtoInfo &EPI, bool OnlyWantCanonical) const { 4311 size_t NumArgs = ArgArray.size(); 4312 4313 // Unique functions, to guarantee there is only one function of a particular 4314 // structure. 4315 llvm::FoldingSetNodeID ID; 4316 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI, 4317 *this, true); 4318 4319 QualType Canonical; 4320 bool Unique = false; 4321 4322 void *InsertPos = nullptr; 4323 if (FunctionProtoType *FPT = 4324 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) { 4325 QualType Existing = QualType(FPT, 0); 4326 4327 // If we find a pre-existing equivalent FunctionProtoType, we can just reuse 4328 // it so long as our exception specification doesn't contain a dependent 4329 // noexcept expression, or we're just looking for a canonical type. 4330 // Otherwise, we're going to need to create a type 4331 // sugar node to hold the concrete expression. 4332 if (OnlyWantCanonical || !isComputedNoexcept(EPI.ExceptionSpec.Type) || 4333 EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr()) 4334 return Existing; 4335 4336 // We need a new type sugar node for this one, to hold the new noexcept 4337 // expression. We do no canonicalization here, but that's OK since we don't 4338 // expect to see the same noexcept expression much more than once. 4339 Canonical = getCanonicalType(Existing); 4340 Unique = true; 4341 } 4342 4343 bool NoexceptInType = getLangOpts().CPlusPlus17; 4344 bool IsCanonicalExceptionSpec = 4345 isCanonicalExceptionSpecification(EPI.ExceptionSpec, NoexceptInType); 4346 4347 // Determine whether the type being created is already canonical or not. 4348 bool isCanonical = !Unique && IsCanonicalExceptionSpec && 4349 isCanonicalResultType(ResultTy) && !EPI.HasTrailingReturn; 4350 for (unsigned i = 0; i != NumArgs && isCanonical; ++i) 4351 if (!ArgArray[i].isCanonicalAsParam()) 4352 isCanonical = false; 4353 4354 if (OnlyWantCanonical) 4355 assert(isCanonical && 4356 "given non-canonical parameters constructing canonical type"); 4357 4358 // If this type isn't canonical, get the canonical version of it if we don't 4359 // already have it. The exception spec is only partially part of the 4360 // canonical type, and only in C++17 onwards. 4361 if (!isCanonical && Canonical.isNull()) { 4362 SmallVector<QualType, 16> CanonicalArgs; 4363 CanonicalArgs.reserve(NumArgs); 4364 for (unsigned i = 0; i != NumArgs; ++i) 4365 CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i])); 4366 4367 llvm::SmallVector<QualType, 8> ExceptionTypeStorage; 4368 FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI; 4369 CanonicalEPI.HasTrailingReturn = false; 4370 4371 if (IsCanonicalExceptionSpec) { 4372 // Exception spec is already OK. 4373 } else if (NoexceptInType) { 4374 switch (EPI.ExceptionSpec.Type) { 4375 case EST_Unparsed: case EST_Unevaluated: case EST_Uninstantiated: 4376 // We don't know yet. It shouldn't matter what we pick here; no-one 4377 // should ever look at this. 4378 LLVM_FALLTHROUGH; 4379 case EST_None: case EST_MSAny: case EST_NoexceptFalse: 4380 CanonicalEPI.ExceptionSpec.Type = EST_None; 4381 break; 4382 4383 // A dynamic exception specification is almost always "not noexcept", 4384 // with the exception that a pack expansion might expand to no types. 4385 case EST_Dynamic: { 4386 bool AnyPacks = false; 4387 for (QualType ET : EPI.ExceptionSpec.Exceptions) { 4388 if (ET->getAs<PackExpansionType>()) 4389 AnyPacks = true; 4390 ExceptionTypeStorage.push_back(getCanonicalType(ET)); 4391 } 4392 if (!AnyPacks) 4393 CanonicalEPI.ExceptionSpec.Type = EST_None; 4394 else { 4395 CanonicalEPI.ExceptionSpec.Type = EST_Dynamic; 4396 CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage; 4397 } 4398 break; 4399 } 4400 4401 case EST_DynamicNone: 4402 case EST_BasicNoexcept: 4403 case EST_NoexceptTrue: 4404 case EST_NoThrow: 4405 CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept; 4406 break; 4407 4408 case EST_DependentNoexcept: 4409 llvm_unreachable("dependent noexcept is already canonical"); 4410 } 4411 } else { 4412 CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo(); 4413 } 4414 4415 // Adjust the canonical function result type. 4416 CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy); 4417 Canonical = 4418 getFunctionTypeInternal(CanResultTy, CanonicalArgs, CanonicalEPI, true); 4419 4420 // Get the new insert position for the node we care about. 4421 FunctionProtoType *NewIP = 4422 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos); 4423 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4424 } 4425 4426 // Compute the needed size to hold this FunctionProtoType and the 4427 // various trailing objects. 4428 auto ESH = FunctionProtoType::getExceptionSpecSize( 4429 EPI.ExceptionSpec.Type, EPI.ExceptionSpec.Exceptions.size()); 4430 size_t Size = FunctionProtoType::totalSizeToAlloc< 4431 QualType, SourceLocation, FunctionType::FunctionTypeExtraBitfields, 4432 FunctionType::ExceptionType, Expr *, FunctionDecl *, 4433 FunctionProtoType::ExtParameterInfo, Qualifiers>( 4434 NumArgs, EPI.Variadic, 4435 FunctionProtoType::hasExtraBitfields(EPI.ExceptionSpec.Type), 4436 ESH.NumExceptionType, ESH.NumExprPtr, ESH.NumFunctionDeclPtr, 4437 EPI.ExtParameterInfos ? NumArgs : 0, 4438 EPI.TypeQuals.hasNonFastQualifiers() ? 1 : 0); 4439 4440 auto *FTP = (FunctionProtoType *)Allocate(Size, TypeAlignment); 4441 FunctionProtoType::ExtProtoInfo newEPI = EPI; 4442 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI); 4443 Types.push_back(FTP); 4444 if (!Unique) 4445 FunctionProtoTypes.InsertNode(FTP, InsertPos); 4446 return QualType(FTP, 0); 4447 } 4448 4449 QualType ASTContext::getPipeType(QualType T, bool ReadOnly) const { 4450 llvm::FoldingSetNodeID ID; 4451 PipeType::Profile(ID, T, ReadOnly); 4452 4453 void *InsertPos = nullptr; 4454 if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos)) 4455 return QualType(PT, 0); 4456 4457 // If the pipe element type isn't canonical, this won't be a canonical type 4458 // either, so fill in the canonical type field. 4459 QualType Canonical; 4460 if (!T.isCanonical()) { 4461 Canonical = getPipeType(getCanonicalType(T), ReadOnly); 4462 4463 // Get the new insert position for the node we care about. 4464 PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos); 4465 assert(!NewIP && "Shouldn't be in the map!"); 4466 (void)NewIP; 4467 } 4468 auto *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly); 4469 Types.push_back(New); 4470 PipeTypes.InsertNode(New, InsertPos); 4471 return QualType(New, 0); 4472 } 4473 4474 QualType ASTContext::adjustStringLiteralBaseType(QualType Ty) const { 4475 // OpenCL v1.1 s6.5.3: a string literal is in the constant address space. 4476 return LangOpts.OpenCL ? getAddrSpaceQualType(Ty, LangAS::opencl_constant) 4477 : Ty; 4478 } 4479 4480 QualType ASTContext::getReadPipeType(QualType T) const { 4481 return getPipeType(T, true); 4482 } 4483 4484 QualType ASTContext::getWritePipeType(QualType T) const { 4485 return getPipeType(T, false); 4486 } 4487 4488 QualType ASTContext::getBitIntType(bool IsUnsigned, unsigned NumBits) const { 4489 llvm::FoldingSetNodeID ID; 4490 BitIntType::Profile(ID, IsUnsigned, NumBits); 4491 4492 void *InsertPos = nullptr; 4493 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) 4494 return QualType(EIT, 0); 4495 4496 auto *New = new (*this, TypeAlignment) BitIntType(IsUnsigned, NumBits); 4497 BitIntTypes.InsertNode(New, InsertPos); 4498 Types.push_back(New); 4499 return QualType(New, 0); 4500 } 4501 4502 QualType ASTContext::getDependentBitIntType(bool IsUnsigned, 4503 Expr *NumBitsExpr) const { 4504 assert(NumBitsExpr->isInstantiationDependent() && "Only good for dependent"); 4505 llvm::FoldingSetNodeID ID; 4506 DependentBitIntType::Profile(ID, *this, IsUnsigned, NumBitsExpr); 4507 4508 void *InsertPos = nullptr; 4509 if (DependentBitIntType *Existing = 4510 DependentBitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) 4511 return QualType(Existing, 0); 4512 4513 auto *New = new (*this, TypeAlignment) 4514 DependentBitIntType(*this, IsUnsigned, NumBitsExpr); 4515 DependentBitIntTypes.InsertNode(New, InsertPos); 4516 4517 Types.push_back(New); 4518 return QualType(New, 0); 4519 } 4520 4521 #ifndef NDEBUG 4522 static bool NeedsInjectedClassNameType(const RecordDecl *D) { 4523 if (!isa<CXXRecordDecl>(D)) return false; 4524 const auto *RD = cast<CXXRecordDecl>(D); 4525 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) 4526 return true; 4527 if (RD->getDescribedClassTemplate() && 4528 !isa<ClassTemplateSpecializationDecl>(RD)) 4529 return true; 4530 return false; 4531 } 4532 #endif 4533 4534 /// getInjectedClassNameType - Return the unique reference to the 4535 /// injected class name type for the specified templated declaration. 4536 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl, 4537 QualType TST) const { 4538 assert(NeedsInjectedClassNameType(Decl)); 4539 if (Decl->TypeForDecl) { 4540 assert(isa<InjectedClassNameType>(Decl->TypeForDecl)); 4541 } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) { 4542 assert(PrevDecl->TypeForDecl && "previous declaration has no type"); 4543 Decl->TypeForDecl = PrevDecl->TypeForDecl; 4544 assert(isa<InjectedClassNameType>(Decl->TypeForDecl)); 4545 } else { 4546 Type *newType = 4547 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST); 4548 Decl->TypeForDecl = newType; 4549 Types.push_back(newType); 4550 } 4551 return QualType(Decl->TypeForDecl, 0); 4552 } 4553 4554 /// getTypeDeclType - Return the unique reference to the type for the 4555 /// specified type declaration. 4556 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const { 4557 assert(Decl && "Passed null for Decl param"); 4558 assert(!Decl->TypeForDecl && "TypeForDecl present in slow case"); 4559 4560 if (const auto *Typedef = dyn_cast<TypedefNameDecl>(Decl)) 4561 return getTypedefType(Typedef); 4562 4563 assert(!isa<TemplateTypeParmDecl>(Decl) && 4564 "Template type parameter types are always available."); 4565 4566 if (const auto *Record = dyn_cast<RecordDecl>(Decl)) { 4567 assert(Record->isFirstDecl() && "struct/union has previous declaration"); 4568 assert(!NeedsInjectedClassNameType(Record)); 4569 return getRecordType(Record); 4570 } else if (const auto *Enum = dyn_cast<EnumDecl>(Decl)) { 4571 assert(Enum->isFirstDecl() && "enum has previous declaration"); 4572 return getEnumType(Enum); 4573 } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { 4574 return getUnresolvedUsingType(Using); 4575 } else 4576 llvm_unreachable("TypeDecl without a type?"); 4577 4578 return QualType(Decl->TypeForDecl, 0); 4579 } 4580 4581 /// getTypedefType - Return the unique reference to the type for the 4582 /// specified typedef name decl. 4583 QualType ASTContext::getTypedefType(const TypedefNameDecl *Decl, 4584 QualType Underlying) const { 4585 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4586 4587 if (Underlying.isNull()) 4588 Underlying = Decl->getUnderlyingType(); 4589 QualType Canonical = getCanonicalType(Underlying); 4590 auto *newType = new (*this, TypeAlignment) 4591 TypedefType(Type::Typedef, Decl, Underlying, Canonical); 4592 Decl->TypeForDecl = newType; 4593 Types.push_back(newType); 4594 return QualType(newType, 0); 4595 } 4596 4597 QualType ASTContext::getUsingType(const UsingShadowDecl *Found, 4598 QualType Underlying) const { 4599 llvm::FoldingSetNodeID ID; 4600 UsingType::Profile(ID, Found); 4601 4602 void *InsertPos = nullptr; 4603 UsingType *T = UsingTypes.FindNodeOrInsertPos(ID, InsertPos); 4604 if (T) 4605 return QualType(T, 0); 4606 4607 assert(!Underlying.hasLocalQualifiers()); 4608 assert(Underlying == getTypeDeclType(cast<TypeDecl>(Found->getTargetDecl()))); 4609 QualType Canon = Underlying.getCanonicalType(); 4610 4611 UsingType *NewType = 4612 new (*this, TypeAlignment) UsingType(Found, Underlying, Canon); 4613 Types.push_back(NewType); 4614 UsingTypes.InsertNode(NewType, InsertPos); 4615 return QualType(NewType, 0); 4616 } 4617 4618 QualType ASTContext::getRecordType(const RecordDecl *Decl) const { 4619 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4620 4621 if (const RecordDecl *PrevDecl = Decl->getPreviousDecl()) 4622 if (PrevDecl->TypeForDecl) 4623 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0); 4624 4625 auto *newType = new (*this, TypeAlignment) RecordType(Decl); 4626 Decl->TypeForDecl = newType; 4627 Types.push_back(newType); 4628 return QualType(newType, 0); 4629 } 4630 4631 QualType ASTContext::getEnumType(const EnumDecl *Decl) const { 4632 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4633 4634 if (const EnumDecl *PrevDecl = Decl->getPreviousDecl()) 4635 if (PrevDecl->TypeForDecl) 4636 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0); 4637 4638 auto *newType = new (*this, TypeAlignment) EnumType(Decl); 4639 Decl->TypeForDecl = newType; 4640 Types.push_back(newType); 4641 return QualType(newType, 0); 4642 } 4643 4644 QualType ASTContext::getUnresolvedUsingType( 4645 const UnresolvedUsingTypenameDecl *Decl) const { 4646 if (Decl->TypeForDecl) 4647 return QualType(Decl->TypeForDecl, 0); 4648 4649 if (const UnresolvedUsingTypenameDecl *CanonicalDecl = 4650 Decl->getCanonicalDecl()) 4651 if (CanonicalDecl->TypeForDecl) 4652 return QualType(Decl->TypeForDecl = CanonicalDecl->TypeForDecl, 0); 4653 4654 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Decl); 4655 Decl->TypeForDecl = newType; 4656 Types.push_back(newType); 4657 return QualType(newType, 0); 4658 } 4659 4660 QualType ASTContext::getAttributedType(attr::Kind attrKind, 4661 QualType modifiedType, 4662 QualType equivalentType) { 4663 llvm::FoldingSetNodeID id; 4664 AttributedType::Profile(id, attrKind, modifiedType, equivalentType); 4665 4666 void *insertPos = nullptr; 4667 AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos); 4668 if (type) return QualType(type, 0); 4669 4670 QualType canon = getCanonicalType(equivalentType); 4671 type = new (*this, TypeAlignment) 4672 AttributedType(canon, attrKind, modifiedType, equivalentType); 4673 4674 Types.push_back(type); 4675 AttributedTypes.InsertNode(type, insertPos); 4676 4677 return QualType(type, 0); 4678 } 4679 4680 /// Retrieve a substitution-result type. 4681 QualType 4682 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm, 4683 QualType Replacement) const { 4684 assert(Replacement.isCanonical() 4685 && "replacement types must always be canonical"); 4686 4687 llvm::FoldingSetNodeID ID; 4688 SubstTemplateTypeParmType::Profile(ID, Parm, Replacement); 4689 void *InsertPos = nullptr; 4690 SubstTemplateTypeParmType *SubstParm 4691 = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4692 4693 if (!SubstParm) { 4694 SubstParm = new (*this, TypeAlignment) 4695 SubstTemplateTypeParmType(Parm, Replacement); 4696 Types.push_back(SubstParm); 4697 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos); 4698 } 4699 4700 return QualType(SubstParm, 0); 4701 } 4702 4703 /// Retrieve a 4704 QualType ASTContext::getSubstTemplateTypeParmPackType( 4705 const TemplateTypeParmType *Parm, 4706 const TemplateArgument &ArgPack) { 4707 #ifndef NDEBUG 4708 for (const auto &P : ArgPack.pack_elements()) { 4709 assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type"); 4710 assert(P.getAsType().isCanonical() && "Pack contains non-canonical type"); 4711 } 4712 #endif 4713 4714 llvm::FoldingSetNodeID ID; 4715 SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack); 4716 void *InsertPos = nullptr; 4717 if (SubstTemplateTypeParmPackType *SubstParm 4718 = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos)) 4719 return QualType(SubstParm, 0); 4720 4721 QualType Canon; 4722 if (!Parm->isCanonicalUnqualified()) { 4723 Canon = getCanonicalType(QualType(Parm, 0)); 4724 Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon), 4725 ArgPack); 4726 SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos); 4727 } 4728 4729 auto *SubstParm 4730 = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon, 4731 ArgPack); 4732 Types.push_back(SubstParm); 4733 SubstTemplateTypeParmPackTypes.InsertNode(SubstParm, InsertPos); 4734 return QualType(SubstParm, 0); 4735 } 4736 4737 /// Retrieve the template type parameter type for a template 4738 /// parameter or parameter pack with the given depth, index, and (optionally) 4739 /// name. 4740 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index, 4741 bool ParameterPack, 4742 TemplateTypeParmDecl *TTPDecl) const { 4743 llvm::FoldingSetNodeID ID; 4744 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl); 4745 void *InsertPos = nullptr; 4746 TemplateTypeParmType *TypeParm 4747 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4748 4749 if (TypeParm) 4750 return QualType(TypeParm, 0); 4751 4752 if (TTPDecl) { 4753 QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack); 4754 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon); 4755 4756 TemplateTypeParmType *TypeCheck 4757 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4758 assert(!TypeCheck && "Template type parameter canonical type broken"); 4759 (void)TypeCheck; 4760 } else 4761 TypeParm = new (*this, TypeAlignment) 4762 TemplateTypeParmType(Depth, Index, ParameterPack); 4763 4764 Types.push_back(TypeParm); 4765 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos); 4766 4767 return QualType(TypeParm, 0); 4768 } 4769 4770 TypeSourceInfo * 4771 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name, 4772 SourceLocation NameLoc, 4773 const TemplateArgumentListInfo &Args, 4774 QualType Underlying) const { 4775 assert(!Name.getAsDependentTemplateName() && 4776 "No dependent template names here!"); 4777 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); 4778 4779 TypeSourceInfo *DI = CreateTypeSourceInfo(TST); 4780 TemplateSpecializationTypeLoc TL = 4781 DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>(); 4782 TL.setTemplateKeywordLoc(SourceLocation()); 4783 TL.setTemplateNameLoc(NameLoc); 4784 TL.setLAngleLoc(Args.getLAngleLoc()); 4785 TL.setRAngleLoc(Args.getRAngleLoc()); 4786 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) 4787 TL.setArgLocInfo(i, Args[i].getLocInfo()); 4788 return DI; 4789 } 4790 4791 QualType 4792 ASTContext::getTemplateSpecializationType(TemplateName Template, 4793 const TemplateArgumentListInfo &Args, 4794 QualType Underlying) const { 4795 assert(!Template.getAsDependentTemplateName() && 4796 "No dependent template names here!"); 4797 4798 SmallVector<TemplateArgument, 4> ArgVec; 4799 ArgVec.reserve(Args.size()); 4800 for (const TemplateArgumentLoc &Arg : Args.arguments()) 4801 ArgVec.push_back(Arg.getArgument()); 4802 4803 return getTemplateSpecializationType(Template, ArgVec, Underlying); 4804 } 4805 4806 #ifndef NDEBUG 4807 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) { 4808 for (const TemplateArgument &Arg : Args) 4809 if (Arg.isPackExpansion()) 4810 return true; 4811 4812 return true; 4813 } 4814 #endif 4815 4816 QualType 4817 ASTContext::getTemplateSpecializationType(TemplateName Template, 4818 ArrayRef<TemplateArgument> Args, 4819 QualType Underlying) const { 4820 assert(!Template.getAsDependentTemplateName() && 4821 "No dependent template names here!"); 4822 // Look through qualified template names. 4823 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 4824 Template = TemplateName(QTN->getTemplateDecl()); 4825 4826 bool IsTypeAlias = 4827 Template.getAsTemplateDecl() && 4828 isa<TypeAliasTemplateDecl>(Template.getAsTemplateDecl()); 4829 QualType CanonType; 4830 if (!Underlying.isNull()) 4831 CanonType = getCanonicalType(Underlying); 4832 else { 4833 // We can get here with an alias template when the specialization contains 4834 // a pack expansion that does not match up with a parameter pack. 4835 assert((!IsTypeAlias || hasAnyPackExpansions(Args)) && 4836 "Caller must compute aliased type"); 4837 IsTypeAlias = false; 4838 CanonType = getCanonicalTemplateSpecializationType(Template, Args); 4839 } 4840 4841 // Allocate the (non-canonical) template specialization type, but don't 4842 // try to unique it: these types typically have location information that 4843 // we don't unique and don't want to lose. 4844 void *Mem = Allocate(sizeof(TemplateSpecializationType) + 4845 sizeof(TemplateArgument) * Args.size() + 4846 (IsTypeAlias? sizeof(QualType) : 0), 4847 TypeAlignment); 4848 auto *Spec 4849 = new (Mem) TemplateSpecializationType(Template, Args, CanonType, 4850 IsTypeAlias ? Underlying : QualType()); 4851 4852 Types.push_back(Spec); 4853 return QualType(Spec, 0); 4854 } 4855 4856 static bool 4857 getCanonicalTemplateArguments(const ASTContext &C, 4858 ArrayRef<TemplateArgument> OrigArgs, 4859 SmallVectorImpl<TemplateArgument> &CanonArgs) { 4860 bool AnyNonCanonArgs = false; 4861 unsigned NumArgs = OrigArgs.size(); 4862 CanonArgs.resize(NumArgs); 4863 for (unsigned I = 0; I != NumArgs; ++I) { 4864 const TemplateArgument &OrigArg = OrigArgs[I]; 4865 TemplateArgument &CanonArg = CanonArgs[I]; 4866 CanonArg = C.getCanonicalTemplateArgument(OrigArg); 4867 if (!CanonArg.structurallyEquals(OrigArg)) 4868 AnyNonCanonArgs = true; 4869 } 4870 return AnyNonCanonArgs; 4871 } 4872 4873 QualType ASTContext::getCanonicalTemplateSpecializationType( 4874 TemplateName Template, ArrayRef<TemplateArgument> Args) const { 4875 assert(!Template.getAsDependentTemplateName() && 4876 "No dependent template names here!"); 4877 4878 // Look through qualified template names. 4879 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 4880 Template = TemplateName(QTN->getTemplateDecl()); 4881 4882 // Build the canonical template specialization type. 4883 TemplateName CanonTemplate = getCanonicalTemplateName(Template); 4884 SmallVector<TemplateArgument, 4> CanonArgs; 4885 ::getCanonicalTemplateArguments(*this, Args, CanonArgs); 4886 4887 // Determine whether this canonical template specialization type already 4888 // exists. 4889 llvm::FoldingSetNodeID ID; 4890 TemplateSpecializationType::Profile(ID, CanonTemplate, 4891 CanonArgs, *this); 4892 4893 void *InsertPos = nullptr; 4894 TemplateSpecializationType *Spec 4895 = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 4896 4897 if (!Spec) { 4898 // Allocate a new canonical template specialization type. 4899 void *Mem = Allocate((sizeof(TemplateSpecializationType) + 4900 sizeof(TemplateArgument) * CanonArgs.size()), 4901 TypeAlignment); 4902 Spec = new (Mem) TemplateSpecializationType(CanonTemplate, 4903 CanonArgs, 4904 QualType(), QualType()); 4905 Types.push_back(Spec); 4906 TemplateSpecializationTypes.InsertNode(Spec, InsertPos); 4907 } 4908 4909 assert(Spec->isDependentType() && 4910 "Non-dependent template-id type must have a canonical type"); 4911 return QualType(Spec, 0); 4912 } 4913 4914 QualType ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, 4915 NestedNameSpecifier *NNS, 4916 QualType NamedType, 4917 TagDecl *OwnedTagDecl) const { 4918 llvm::FoldingSetNodeID ID; 4919 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); 4920 4921 void *InsertPos = nullptr; 4922 ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); 4923 if (T) 4924 return QualType(T, 0); 4925 4926 QualType Canon = NamedType; 4927 if (!Canon.isCanonical()) { 4928 Canon = getCanonicalType(NamedType); 4929 ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); 4930 assert(!CheckT && "Elaborated canonical type broken"); 4931 (void)CheckT; 4932 } 4933 4934 void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), 4935 TypeAlignment); 4936 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); 4937 4938 Types.push_back(T); 4939 ElaboratedTypes.InsertNode(T, InsertPos); 4940 return QualType(T, 0); 4941 } 4942 4943 QualType 4944 ASTContext::getParenType(QualType InnerType) const { 4945 llvm::FoldingSetNodeID ID; 4946 ParenType::Profile(ID, InnerType); 4947 4948 void *InsertPos = nullptr; 4949 ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos); 4950 if (T) 4951 return QualType(T, 0); 4952 4953 QualType Canon = InnerType; 4954 if (!Canon.isCanonical()) { 4955 Canon = getCanonicalType(InnerType); 4956 ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos); 4957 assert(!CheckT && "Paren canonical type broken"); 4958 (void)CheckT; 4959 } 4960 4961 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); 4962 Types.push_back(T); 4963 ParenTypes.InsertNode(T, InsertPos); 4964 return QualType(T, 0); 4965 } 4966 4967 QualType 4968 ASTContext::getMacroQualifiedType(QualType UnderlyingTy, 4969 const IdentifierInfo *MacroII) const { 4970 QualType Canon = UnderlyingTy; 4971 if (!Canon.isCanonical()) 4972 Canon = getCanonicalType(UnderlyingTy); 4973 4974 auto *newType = new (*this, TypeAlignment) 4975 MacroQualifiedType(UnderlyingTy, Canon, MacroII); 4976 Types.push_back(newType); 4977 return QualType(newType, 0); 4978 } 4979 4980 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, 4981 NestedNameSpecifier *NNS, 4982 const IdentifierInfo *Name, 4983 QualType Canon) const { 4984 if (Canon.isNull()) { 4985 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 4986 if (CanonNNS != NNS) 4987 Canon = getDependentNameType(Keyword, CanonNNS, Name); 4988 } 4989 4990 llvm::FoldingSetNodeID ID; 4991 DependentNameType::Profile(ID, Keyword, NNS, Name); 4992 4993 void *InsertPos = nullptr; 4994 DependentNameType *T 4995 = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos); 4996 if (T) 4997 return QualType(T, 0); 4998 4999 T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon); 5000 Types.push_back(T); 5001 DependentNameTypes.InsertNode(T, InsertPos); 5002 return QualType(T, 0); 5003 } 5004 5005 QualType 5006 ASTContext::getDependentTemplateSpecializationType( 5007 ElaboratedTypeKeyword Keyword, 5008 NestedNameSpecifier *NNS, 5009 const IdentifierInfo *Name, 5010 const TemplateArgumentListInfo &Args) const { 5011 // TODO: avoid this copy 5012 SmallVector<TemplateArgument, 16> ArgCopy; 5013 for (unsigned I = 0, E = Args.size(); I != E; ++I) 5014 ArgCopy.push_back(Args[I].getArgument()); 5015 return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy); 5016 } 5017 5018 QualType 5019 ASTContext::getDependentTemplateSpecializationType( 5020 ElaboratedTypeKeyword Keyword, 5021 NestedNameSpecifier *NNS, 5022 const IdentifierInfo *Name, 5023 ArrayRef<TemplateArgument> Args) const { 5024 assert((!NNS || NNS->isDependent()) && 5025 "nested-name-specifier must be dependent"); 5026 5027 llvm::FoldingSetNodeID ID; 5028 DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS, 5029 Name, Args); 5030 5031 void *InsertPos = nullptr; 5032 DependentTemplateSpecializationType *T 5033 = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 5034 if (T) 5035 return QualType(T, 0); 5036 5037 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 5038 5039 ElaboratedTypeKeyword CanonKeyword = Keyword; 5040 if (Keyword == ETK_None) CanonKeyword = ETK_Typename; 5041 5042 SmallVector<TemplateArgument, 16> CanonArgs; 5043 bool AnyNonCanonArgs = 5044 ::getCanonicalTemplateArguments(*this, Args, CanonArgs); 5045 5046 QualType Canon; 5047 if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) { 5048 Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS, 5049 Name, 5050 CanonArgs); 5051 5052 // Find the insert position again. 5053 DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 5054 } 5055 5056 void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) + 5057 sizeof(TemplateArgument) * Args.size()), 5058 TypeAlignment); 5059 T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS, 5060 Name, Args, Canon); 5061 Types.push_back(T); 5062 DependentTemplateSpecializationTypes.InsertNode(T, InsertPos); 5063 return QualType(T, 0); 5064 } 5065 5066 TemplateArgument ASTContext::getInjectedTemplateArg(NamedDecl *Param) { 5067 TemplateArgument Arg; 5068 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) { 5069 QualType ArgType = getTypeDeclType(TTP); 5070 if (TTP->isParameterPack()) 5071 ArgType = getPackExpansionType(ArgType, None); 5072 5073 Arg = TemplateArgument(ArgType); 5074 } else if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) { 5075 QualType T = 5076 NTTP->getType().getNonPackExpansionType().getNonLValueExprType(*this); 5077 // For class NTTPs, ensure we include the 'const' so the type matches that 5078 // of a real template argument. 5079 // FIXME: It would be more faithful to model this as something like an 5080 // lvalue-to-rvalue conversion applied to a const-qualified lvalue. 5081 if (T->isRecordType()) 5082 T.addConst(); 5083 Expr *E = new (*this) DeclRefExpr( 5084 *this, NTTP, /*enclosing*/ false, T, 5085 Expr::getValueKindForType(NTTP->getType()), NTTP->getLocation()); 5086 5087 if (NTTP->isParameterPack()) 5088 E = new (*this) PackExpansionExpr(DependentTy, E, NTTP->getLocation(), 5089 None); 5090 Arg = TemplateArgument(E); 5091 } else { 5092 auto *TTP = cast<TemplateTemplateParmDecl>(Param); 5093 if (TTP->isParameterPack()) 5094 Arg = TemplateArgument(TemplateName(TTP), Optional<unsigned>()); 5095 else 5096 Arg = TemplateArgument(TemplateName(TTP)); 5097 } 5098 5099 if (Param->isTemplateParameterPack()) 5100 Arg = TemplateArgument::CreatePackCopy(*this, Arg); 5101 5102 return Arg; 5103 } 5104 5105 void 5106 ASTContext::getInjectedTemplateArgs(const TemplateParameterList *Params, 5107 SmallVectorImpl<TemplateArgument> &Args) { 5108 Args.reserve(Args.size() + Params->size()); 5109 5110 for (NamedDecl *Param : *Params) 5111 Args.push_back(getInjectedTemplateArg(Param)); 5112 } 5113 5114 QualType ASTContext::getPackExpansionType(QualType Pattern, 5115 Optional<unsigned> NumExpansions, 5116 bool ExpectPackInType) { 5117 assert((!ExpectPackInType || Pattern->containsUnexpandedParameterPack()) && 5118 "Pack expansions must expand one or more parameter packs"); 5119 5120 llvm::FoldingSetNodeID ID; 5121 PackExpansionType::Profile(ID, Pattern, NumExpansions); 5122 5123 void *InsertPos = nullptr; 5124 PackExpansionType *T = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos); 5125 if (T) 5126 return QualType(T, 0); 5127 5128 QualType Canon; 5129 if (!Pattern.isCanonical()) { 5130 Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions, 5131 /*ExpectPackInType=*/false); 5132 5133 // Find the insert position again, in case we inserted an element into 5134 // PackExpansionTypes and invalidated our insert position. 5135 PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos); 5136 } 5137 5138 T = new (*this, TypeAlignment) 5139 PackExpansionType(Pattern, Canon, NumExpansions); 5140 Types.push_back(T); 5141 PackExpansionTypes.InsertNode(T, InsertPos); 5142 return QualType(T, 0); 5143 } 5144 5145 /// CmpProtocolNames - Comparison predicate for sorting protocols 5146 /// alphabetically. 5147 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS, 5148 ObjCProtocolDecl *const *RHS) { 5149 return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName()); 5150 } 5151 5152 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) { 5153 if (Protocols.empty()) return true; 5154 5155 if (Protocols[0]->getCanonicalDecl() != Protocols[0]) 5156 return false; 5157 5158 for (unsigned i = 1; i != Protocols.size(); ++i) 5159 if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 || 5160 Protocols[i]->getCanonicalDecl() != Protocols[i]) 5161 return false; 5162 return true; 5163 } 5164 5165 static void 5166 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) { 5167 // Sort protocols, keyed by name. 5168 llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames); 5169 5170 // Canonicalize. 5171 for (ObjCProtocolDecl *&P : Protocols) 5172 P = P->getCanonicalDecl(); 5173 5174 // Remove duplicates. 5175 auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end()); 5176 Protocols.erase(ProtocolsEnd, Protocols.end()); 5177 } 5178 5179 QualType ASTContext::getObjCObjectType(QualType BaseType, 5180 ObjCProtocolDecl * const *Protocols, 5181 unsigned NumProtocols) const { 5182 return getObjCObjectType(BaseType, {}, 5183 llvm::makeArrayRef(Protocols, NumProtocols), 5184 /*isKindOf=*/false); 5185 } 5186 5187 QualType ASTContext::getObjCObjectType( 5188 QualType baseType, 5189 ArrayRef<QualType> typeArgs, 5190 ArrayRef<ObjCProtocolDecl *> protocols, 5191 bool isKindOf) const { 5192 // If the base type is an interface and there aren't any protocols or 5193 // type arguments to add, then the interface type will do just fine. 5194 if (typeArgs.empty() && protocols.empty() && !isKindOf && 5195 isa<ObjCInterfaceType>(baseType)) 5196 return baseType; 5197 5198 // Look in the folding set for an existing type. 5199 llvm::FoldingSetNodeID ID; 5200 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); 5201 void *InsertPos = nullptr; 5202 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos)) 5203 return QualType(QT, 0); 5204 5205 // Determine the type arguments to be used for canonicalization, 5206 // which may be explicitly specified here or written on the base 5207 // type. 5208 ArrayRef<QualType> effectiveTypeArgs = typeArgs; 5209 if (effectiveTypeArgs.empty()) { 5210 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) 5211 effectiveTypeArgs = baseObject->getTypeArgs(); 5212 } 5213 5214 // Build the canonical type, which has the canonical base type and a 5215 // sorted-and-uniqued list of protocols and the type arguments 5216 // canonicalized. 5217 QualType canonical; 5218 bool typeArgsAreCanonical = llvm::all_of( 5219 effectiveTypeArgs, [&](QualType type) { return type.isCanonical(); }); 5220 bool protocolsSorted = areSortedAndUniqued(protocols); 5221 if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) { 5222 // Determine the canonical type arguments. 5223 ArrayRef<QualType> canonTypeArgs; 5224 SmallVector<QualType, 4> canonTypeArgsVec; 5225 if (!typeArgsAreCanonical) { 5226 canonTypeArgsVec.reserve(effectiveTypeArgs.size()); 5227 for (auto typeArg : effectiveTypeArgs) 5228 canonTypeArgsVec.push_back(getCanonicalType(typeArg)); 5229 canonTypeArgs = canonTypeArgsVec; 5230 } else { 5231 canonTypeArgs = effectiveTypeArgs; 5232 } 5233 5234 ArrayRef<ObjCProtocolDecl *> canonProtocols; 5235 SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec; 5236 if (!protocolsSorted) { 5237 canonProtocolsVec.append(protocols.begin(), protocols.end()); 5238 SortAndUniqueProtocols(canonProtocolsVec); 5239 canonProtocols = canonProtocolsVec; 5240 } else { 5241 canonProtocols = protocols; 5242 } 5243 5244 canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs, 5245 canonProtocols, isKindOf); 5246 5247 // Regenerate InsertPos. 5248 ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos); 5249 } 5250 5251 unsigned size = sizeof(ObjCObjectTypeImpl); 5252 size += typeArgs.size() * sizeof(QualType); 5253 size += protocols.size() * sizeof(ObjCProtocolDecl *); 5254 void *mem = Allocate(size, TypeAlignment); 5255 auto *T = 5256 new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols, 5257 isKindOf); 5258 5259 Types.push_back(T); 5260 ObjCObjectTypes.InsertNode(T, InsertPos); 5261 return QualType(T, 0); 5262 } 5263 5264 /// Apply Objective-C protocol qualifiers to the given type. 5265 /// If this is for the canonical type of a type parameter, we can apply 5266 /// protocol qualifiers on the ObjCObjectPointerType. 5267 QualType 5268 ASTContext::applyObjCProtocolQualifiers(QualType type, 5269 ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError, 5270 bool allowOnPointerType) const { 5271 hasError = false; 5272 5273 if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) { 5274 return getObjCTypeParamType(objT->getDecl(), protocols); 5275 } 5276 5277 // Apply protocol qualifiers to ObjCObjectPointerType. 5278 if (allowOnPointerType) { 5279 if (const auto *objPtr = 5280 dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) { 5281 const ObjCObjectType *objT = objPtr->getObjectType(); 5282 // Merge protocol lists and construct ObjCObjectType. 5283 SmallVector<ObjCProtocolDecl*, 8> protocolsVec; 5284 protocolsVec.append(objT->qual_begin(), 5285 objT->qual_end()); 5286 protocolsVec.append(protocols.begin(), protocols.end()); 5287 ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec; 5288 type = getObjCObjectType( 5289 objT->getBaseType(), 5290 objT->getTypeArgsAsWritten(), 5291 protocols, 5292 objT->isKindOfTypeAsWritten()); 5293 return getObjCObjectPointerType(type); 5294 } 5295 } 5296 5297 // Apply protocol qualifiers to ObjCObjectType. 5298 if (const auto *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){ 5299 // FIXME: Check for protocols to which the class type is already 5300 // known to conform. 5301 5302 return getObjCObjectType(objT->getBaseType(), 5303 objT->getTypeArgsAsWritten(), 5304 protocols, 5305 objT->isKindOfTypeAsWritten()); 5306 } 5307 5308 // If the canonical type is ObjCObjectType, ... 5309 if (type->isObjCObjectType()) { 5310 // Silently overwrite any existing protocol qualifiers. 5311 // TODO: determine whether that's the right thing to do. 5312 5313 // FIXME: Check for protocols to which the class type is already 5314 // known to conform. 5315 return getObjCObjectType(type, {}, protocols, false); 5316 } 5317 5318 // id<protocol-list> 5319 if (type->isObjCIdType()) { 5320 const auto *objPtr = type->castAs<ObjCObjectPointerType>(); 5321 type = getObjCObjectType(ObjCBuiltinIdTy, {}, protocols, 5322 objPtr->isKindOfType()); 5323 return getObjCObjectPointerType(type); 5324 } 5325 5326 // Class<protocol-list> 5327 if (type->isObjCClassType()) { 5328 const auto *objPtr = type->castAs<ObjCObjectPointerType>(); 5329 type = getObjCObjectType(ObjCBuiltinClassTy, {}, protocols, 5330 objPtr->isKindOfType()); 5331 return getObjCObjectPointerType(type); 5332 } 5333 5334 hasError = true; 5335 return type; 5336 } 5337 5338 QualType 5339 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, 5340 ArrayRef<ObjCProtocolDecl *> protocols) const { 5341 // Look in the folding set for an existing type. 5342 llvm::FoldingSetNodeID ID; 5343 ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols); 5344 void *InsertPos = nullptr; 5345 if (ObjCTypeParamType *TypeParam = 5346 ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos)) 5347 return QualType(TypeParam, 0); 5348 5349 // We canonicalize to the underlying type. 5350 QualType Canonical = getCanonicalType(Decl->getUnderlyingType()); 5351 if (!protocols.empty()) { 5352 // Apply the protocol qualifers. 5353 bool hasError; 5354 Canonical = getCanonicalType(applyObjCProtocolQualifiers( 5355 Canonical, protocols, hasError, true /*allowOnPointerType*/)); 5356 assert(!hasError && "Error when apply protocol qualifier to bound type"); 5357 } 5358 5359 unsigned size = sizeof(ObjCTypeParamType); 5360 size += protocols.size() * sizeof(ObjCProtocolDecl *); 5361 void *mem = Allocate(size, TypeAlignment); 5362 auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols); 5363 5364 Types.push_back(newType); 5365 ObjCTypeParamTypes.InsertNode(newType, InsertPos); 5366 return QualType(newType, 0); 5367 } 5368 5369 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, 5370 ObjCTypeParamDecl *New) const { 5371 New->setTypeSourceInfo(getTrivialTypeSourceInfo(Orig->getUnderlyingType())); 5372 // Update TypeForDecl after updating TypeSourceInfo. 5373 auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl()); 5374 SmallVector<ObjCProtocolDecl *, 8> protocols; 5375 protocols.append(NewTypeParamTy->qual_begin(), NewTypeParamTy->qual_end()); 5376 QualType UpdatedTy = getObjCTypeParamType(New, protocols); 5377 New->setTypeForDecl(UpdatedTy.getTypePtr()); 5378 } 5379 5380 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's 5381 /// protocol list adopt all protocols in QT's qualified-id protocol 5382 /// list. 5383 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT, 5384 ObjCInterfaceDecl *IC) { 5385 if (!QT->isObjCQualifiedIdType()) 5386 return false; 5387 5388 if (const auto *OPT = QT->getAs<ObjCObjectPointerType>()) { 5389 // If both the right and left sides have qualifiers. 5390 for (auto *Proto : OPT->quals()) { 5391 if (!IC->ClassImplementsProtocol(Proto, false)) 5392 return false; 5393 } 5394 return true; 5395 } 5396 return false; 5397 } 5398 5399 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in 5400 /// QT's qualified-id protocol list adopt all protocols in IDecl's list 5401 /// of protocols. 5402 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT, 5403 ObjCInterfaceDecl *IDecl) { 5404 if (!QT->isObjCQualifiedIdType()) 5405 return false; 5406 const auto *OPT = QT->getAs<ObjCObjectPointerType>(); 5407 if (!OPT) 5408 return false; 5409 if (!IDecl->hasDefinition()) 5410 return false; 5411 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols; 5412 CollectInheritedProtocols(IDecl, InheritedProtocols); 5413 if (InheritedProtocols.empty()) 5414 return false; 5415 // Check that if every protocol in list of id<plist> conforms to a protocol 5416 // of IDecl's, then bridge casting is ok. 5417 bool Conforms = false; 5418 for (auto *Proto : OPT->quals()) { 5419 Conforms = false; 5420 for (auto *PI : InheritedProtocols) { 5421 if (ProtocolCompatibleWithProtocol(Proto, PI)) { 5422 Conforms = true; 5423 break; 5424 } 5425 } 5426 if (!Conforms) 5427 break; 5428 } 5429 if (Conforms) 5430 return true; 5431 5432 for (auto *PI : InheritedProtocols) { 5433 // If both the right and left sides have qualifiers. 5434 bool Adopts = false; 5435 for (auto *Proto : OPT->quals()) { 5436 // return 'true' if 'PI' is in the inheritance hierarchy of Proto 5437 if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto))) 5438 break; 5439 } 5440 if (!Adopts) 5441 return false; 5442 } 5443 return true; 5444 } 5445 5446 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for 5447 /// the given object type. 5448 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const { 5449 llvm::FoldingSetNodeID ID; 5450 ObjCObjectPointerType::Profile(ID, ObjectT); 5451 5452 void *InsertPos = nullptr; 5453 if (ObjCObjectPointerType *QT = 5454 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 5455 return QualType(QT, 0); 5456 5457 // Find the canonical object type. 5458 QualType Canonical; 5459 if (!ObjectT.isCanonical()) { 5460 Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT)); 5461 5462 // Regenerate InsertPos. 5463 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 5464 } 5465 5466 // No match. 5467 void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment); 5468 auto *QType = 5469 new (Mem) ObjCObjectPointerType(Canonical, ObjectT); 5470 5471 Types.push_back(QType); 5472 ObjCObjectPointerTypes.InsertNode(QType, InsertPos); 5473 return QualType(QType, 0); 5474 } 5475 5476 /// getObjCInterfaceType - Return the unique reference to the type for the 5477 /// specified ObjC interface decl. The list of protocols is optional. 5478 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl, 5479 ObjCInterfaceDecl *PrevDecl) const { 5480 if (Decl->TypeForDecl) 5481 return QualType(Decl->TypeForDecl, 0); 5482 5483 if (PrevDecl) { 5484 assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl"); 5485 Decl->TypeForDecl = PrevDecl->TypeForDecl; 5486 return QualType(PrevDecl->TypeForDecl, 0); 5487 } 5488 5489 // Prefer the definition, if there is one. 5490 if (const ObjCInterfaceDecl *Def = Decl->getDefinition()) 5491 Decl = Def; 5492 5493 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment); 5494 auto *T = new (Mem) ObjCInterfaceType(Decl); 5495 Decl->TypeForDecl = T; 5496 Types.push_back(T); 5497 return QualType(T, 0); 5498 } 5499 5500 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique 5501 /// TypeOfExprType AST's (since expression's are never shared). For example, 5502 /// multiple declarations that refer to "typeof(x)" all contain different 5503 /// DeclRefExpr's. This doesn't effect the type checker, since it operates 5504 /// on canonical type's (which are always unique). 5505 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const { 5506 TypeOfExprType *toe; 5507 if (tofExpr->isTypeDependent()) { 5508 llvm::FoldingSetNodeID ID; 5509 DependentTypeOfExprType::Profile(ID, *this, tofExpr); 5510 5511 void *InsertPos = nullptr; 5512 DependentTypeOfExprType *Canon 5513 = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos); 5514 if (Canon) { 5515 // We already have a "canonical" version of an identical, dependent 5516 // typeof(expr) type. Use that as our canonical type. 5517 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, 5518 QualType((TypeOfExprType*)Canon, 0)); 5519 } else { 5520 // Build a new, canonical typeof(expr) type. 5521 Canon 5522 = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr); 5523 DependentTypeOfExprTypes.InsertNode(Canon, InsertPos); 5524 toe = Canon; 5525 } 5526 } else { 5527 QualType Canonical = getCanonicalType(tofExpr->getType()); 5528 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical); 5529 } 5530 Types.push_back(toe); 5531 return QualType(toe, 0); 5532 } 5533 5534 /// getTypeOfType - Unlike many "get<Type>" functions, we don't unique 5535 /// TypeOfType nodes. The only motivation to unique these nodes would be 5536 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be 5537 /// an issue. This doesn't affect the type checker, since it operates 5538 /// on canonical types (which are always unique). 5539 QualType ASTContext::getTypeOfType(QualType tofType) const { 5540 QualType Canonical = getCanonicalType(tofType); 5541 auto *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical); 5542 Types.push_back(tot); 5543 return QualType(tot, 0); 5544 } 5545 5546 /// getReferenceQualifiedType - Given an expr, will return the type for 5547 /// that expression, as in [dcl.type.simple]p4 but without taking id-expressions 5548 /// and class member access into account. 5549 QualType ASTContext::getReferenceQualifiedType(const Expr *E) const { 5550 // C++11 [dcl.type.simple]p4: 5551 // [...] 5552 QualType T = E->getType(); 5553 switch (E->getValueKind()) { 5554 // - otherwise, if e is an xvalue, decltype(e) is T&&, where T is the 5555 // type of e; 5556 case VK_XValue: 5557 return getRValueReferenceType(T); 5558 // - otherwise, if e is an lvalue, decltype(e) is T&, where T is the 5559 // type of e; 5560 case VK_LValue: 5561 return getLValueReferenceType(T); 5562 // - otherwise, decltype(e) is the type of e. 5563 case VK_PRValue: 5564 return T; 5565 } 5566 llvm_unreachable("Unknown value kind"); 5567 } 5568 5569 /// Unlike many "get<Type>" functions, we don't unique DecltypeType 5570 /// nodes. This would never be helpful, since each such type has its own 5571 /// expression, and would not give a significant memory saving, since there 5572 /// is an Expr tree under each such type. 5573 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { 5574 DecltypeType *dt; 5575 5576 // C++11 [temp.type]p2: 5577 // If an expression e involves a template parameter, decltype(e) denotes a 5578 // unique dependent type. Two such decltype-specifiers refer to the same 5579 // type only if their expressions are equivalent (14.5.6.1). 5580 if (e->isInstantiationDependent()) { 5581 llvm::FoldingSetNodeID ID; 5582 DependentDecltypeType::Profile(ID, *this, e); 5583 5584 void *InsertPos = nullptr; 5585 DependentDecltypeType *Canon 5586 = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos); 5587 if (!Canon) { 5588 // Build a new, canonical decltype(expr) type. 5589 Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e); 5590 DependentDecltypeTypes.InsertNode(Canon, InsertPos); 5591 } 5592 dt = new (*this, TypeAlignment) 5593 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); 5594 } else { 5595 dt = new (*this, TypeAlignment) 5596 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); 5597 } 5598 Types.push_back(dt); 5599 return QualType(dt, 0); 5600 } 5601 5602 /// getUnaryTransformationType - We don't unique these, since the memory 5603 /// savings are minimal and these are rare. 5604 QualType ASTContext::getUnaryTransformType(QualType BaseType, 5605 QualType UnderlyingType, 5606 UnaryTransformType::UTTKind Kind) 5607 const { 5608 UnaryTransformType *ut = nullptr; 5609 5610 if (BaseType->isDependentType()) { 5611 // Look in the folding set for an existing type. 5612 llvm::FoldingSetNodeID ID; 5613 DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind); 5614 5615 void *InsertPos = nullptr; 5616 DependentUnaryTransformType *Canon 5617 = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos); 5618 5619 if (!Canon) { 5620 // Build a new, canonical __underlying_type(type) type. 5621 Canon = new (*this, TypeAlignment) 5622 DependentUnaryTransformType(*this, getCanonicalType(BaseType), 5623 Kind); 5624 DependentUnaryTransformTypes.InsertNode(Canon, InsertPos); 5625 } 5626 ut = new (*this, TypeAlignment) UnaryTransformType (BaseType, 5627 QualType(), Kind, 5628 QualType(Canon, 0)); 5629 } else { 5630 QualType CanonType = getCanonicalType(UnderlyingType); 5631 ut = new (*this, TypeAlignment) UnaryTransformType (BaseType, 5632 UnderlyingType, Kind, 5633 CanonType); 5634 } 5635 Types.push_back(ut); 5636 return QualType(ut, 0); 5637 } 5638 5639 QualType ASTContext::getAutoTypeInternal( 5640 QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent, 5641 bool IsPack, ConceptDecl *TypeConstraintConcept, 5642 ArrayRef<TemplateArgument> TypeConstraintArgs, bool IsCanon) const { 5643 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && 5644 !TypeConstraintConcept && !IsDependent) 5645 return getAutoDeductType(); 5646 5647 // Look in the folding set for an existing type. 5648 void *InsertPos = nullptr; 5649 llvm::FoldingSetNodeID ID; 5650 AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent, 5651 TypeConstraintConcept, TypeConstraintArgs); 5652 if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos)) 5653 return QualType(AT, 0); 5654 5655 QualType Canon; 5656 if (!IsCanon) { 5657 if (DeducedType.isNull()) { 5658 SmallVector<TemplateArgument, 4> CanonArgs; 5659 bool AnyNonCanonArgs = 5660 ::getCanonicalTemplateArguments(*this, TypeConstraintArgs, CanonArgs); 5661 if (AnyNonCanonArgs) { 5662 Canon = getAutoTypeInternal(QualType(), Keyword, IsDependent, IsPack, 5663 TypeConstraintConcept, CanonArgs, true); 5664 // Find the insert position again. 5665 AutoTypes.FindNodeOrInsertPos(ID, InsertPos); 5666 } 5667 } else { 5668 Canon = DeducedType.getCanonicalType(); 5669 } 5670 } 5671 5672 void *Mem = Allocate(sizeof(AutoType) + 5673 sizeof(TemplateArgument) * TypeConstraintArgs.size(), 5674 TypeAlignment); 5675 auto *AT = new (Mem) AutoType( 5676 DeducedType, Keyword, 5677 (IsDependent ? TypeDependence::DependentInstantiation 5678 : TypeDependence::None) | 5679 (IsPack ? TypeDependence::UnexpandedPack : TypeDependence::None), 5680 Canon, TypeConstraintConcept, TypeConstraintArgs); 5681 Types.push_back(AT); 5682 AutoTypes.InsertNode(AT, InsertPos); 5683 return QualType(AT, 0); 5684 } 5685 5686 /// getAutoType - Return the uniqued reference to the 'auto' type which has been 5687 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the 5688 /// canonical deduced-but-dependent 'auto' type. 5689 QualType 5690 ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword, 5691 bool IsDependent, bool IsPack, 5692 ConceptDecl *TypeConstraintConcept, 5693 ArrayRef<TemplateArgument> TypeConstraintArgs) const { 5694 assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack"); 5695 assert((!IsDependent || DeducedType.isNull()) && 5696 "A dependent auto should be undeduced"); 5697 return getAutoTypeInternal(DeducedType, Keyword, IsDependent, IsPack, 5698 TypeConstraintConcept, TypeConstraintArgs); 5699 } 5700 5701 /// Return the uniqued reference to the deduced template specialization type 5702 /// which has been deduced to the given type, or to the canonical undeduced 5703 /// such type, or the canonical deduced-but-dependent such type. 5704 QualType ASTContext::getDeducedTemplateSpecializationType( 5705 TemplateName Template, QualType DeducedType, bool IsDependent) const { 5706 // Look in the folding set for an existing type. 5707 void *InsertPos = nullptr; 5708 llvm::FoldingSetNodeID ID; 5709 DeducedTemplateSpecializationType::Profile(ID, Template, DeducedType, 5710 IsDependent); 5711 if (DeducedTemplateSpecializationType *DTST = 5712 DeducedTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos)) 5713 return QualType(DTST, 0); 5714 5715 auto *DTST = new (*this, TypeAlignment) 5716 DeducedTemplateSpecializationType(Template, DeducedType, IsDependent); 5717 llvm::FoldingSetNodeID TempID; 5718 DTST->Profile(TempID); 5719 assert(ID == TempID && "ID does not match"); 5720 Types.push_back(DTST); 5721 DeducedTemplateSpecializationTypes.InsertNode(DTST, InsertPos); 5722 return QualType(DTST, 0); 5723 } 5724 5725 /// getAtomicType - Return the uniqued reference to the atomic type for 5726 /// the given value type. 5727 QualType ASTContext::getAtomicType(QualType T) const { 5728 // Unique pointers, to guarantee there is only one pointer of a particular 5729 // structure. 5730 llvm::FoldingSetNodeID ID; 5731 AtomicType::Profile(ID, T); 5732 5733 void *InsertPos = nullptr; 5734 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos)) 5735 return QualType(AT, 0); 5736 5737 // If the atomic value type isn't canonical, this won't be a canonical type 5738 // either, so fill in the canonical type field. 5739 QualType Canonical; 5740 if (!T.isCanonical()) { 5741 Canonical = getAtomicType(getCanonicalType(T)); 5742 5743 // Get the new insert position for the node we care about. 5744 AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos); 5745 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 5746 } 5747 auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical); 5748 Types.push_back(New); 5749 AtomicTypes.InsertNode(New, InsertPos); 5750 return QualType(New, 0); 5751 } 5752 5753 /// getAutoDeductType - Get type pattern for deducing against 'auto'. 5754 QualType ASTContext::getAutoDeductType() const { 5755 if (AutoDeductTy.isNull()) 5756 AutoDeductTy = QualType(new (*this, TypeAlignment) 5757 AutoType(QualType(), AutoTypeKeyword::Auto, 5758 TypeDependence::None, QualType(), 5759 /*concept*/ nullptr, /*args*/ {}), 5760 0); 5761 return AutoDeductTy; 5762 } 5763 5764 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'. 5765 QualType ASTContext::getAutoRRefDeductType() const { 5766 if (AutoRRefDeductTy.isNull()) 5767 AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType()); 5768 assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern"); 5769 return AutoRRefDeductTy; 5770 } 5771 5772 /// getTagDeclType - Return the unique reference to the type for the 5773 /// specified TagDecl (struct/union/class/enum) decl. 5774 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const { 5775 assert(Decl); 5776 // FIXME: What is the design on getTagDeclType when it requires casting 5777 // away const? mutable? 5778 return getTypeDeclType(const_cast<TagDecl*>(Decl)); 5779 } 5780 5781 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result 5782 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and 5783 /// needs to agree with the definition in <stddef.h>. 5784 CanQualType ASTContext::getSizeType() const { 5785 return getFromTargetType(Target->getSizeType()); 5786 } 5787 5788 /// Return the unique signed counterpart of the integer type 5789 /// corresponding to size_t. 5790 CanQualType ASTContext::getSignedSizeType() const { 5791 return getFromTargetType(Target->getSignedSizeType()); 5792 } 5793 5794 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5). 5795 CanQualType ASTContext::getIntMaxType() const { 5796 return getFromTargetType(Target->getIntMaxType()); 5797 } 5798 5799 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5). 5800 CanQualType ASTContext::getUIntMaxType() const { 5801 return getFromTargetType(Target->getUIntMaxType()); 5802 } 5803 5804 /// getSignedWCharType - Return the type of "signed wchar_t". 5805 /// Used when in C++, as a GCC extension. 5806 QualType ASTContext::getSignedWCharType() const { 5807 // FIXME: derive from "Target" ? 5808 return WCharTy; 5809 } 5810 5811 /// getUnsignedWCharType - Return the type of "unsigned wchar_t". 5812 /// Used when in C++, as a GCC extension. 5813 QualType ASTContext::getUnsignedWCharType() const { 5814 // FIXME: derive from "Target" ? 5815 return UnsignedIntTy; 5816 } 5817 5818 QualType ASTContext::getIntPtrType() const { 5819 return getFromTargetType(Target->getIntPtrType()); 5820 } 5821 5822 QualType ASTContext::getUIntPtrType() const { 5823 return getCorrespondingUnsignedType(getIntPtrType()); 5824 } 5825 5826 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17) 5827 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9). 5828 QualType ASTContext::getPointerDiffType() const { 5829 return getFromTargetType(Target->getPtrDiffType(0)); 5830 } 5831 5832 /// Return the unique unsigned counterpart of "ptrdiff_t" 5833 /// integer type. The standard (C11 7.21.6.1p7) refers to this type 5834 /// in the definition of %tu format specifier. 5835 QualType ASTContext::getUnsignedPointerDiffType() const { 5836 return getFromTargetType(Target->getUnsignedPtrDiffType(0)); 5837 } 5838 5839 /// Return the unique type for "pid_t" defined in 5840 /// <sys/types.h>. We need this to compute the correct type for vfork(). 5841 QualType ASTContext::getProcessIDType() const { 5842 return getFromTargetType(Target->getProcessIDType()); 5843 } 5844 5845 //===----------------------------------------------------------------------===// 5846 // Type Operators 5847 //===----------------------------------------------------------------------===// 5848 5849 CanQualType ASTContext::getCanonicalParamType(QualType T) const { 5850 // Push qualifiers into arrays, and then discard any remaining 5851 // qualifiers. 5852 T = getCanonicalType(T); 5853 T = getVariableArrayDecayedType(T); 5854 const Type *Ty = T.getTypePtr(); 5855 QualType Result; 5856 if (isa<ArrayType>(Ty)) { 5857 Result = getArrayDecayedType(QualType(Ty,0)); 5858 } else if (isa<FunctionType>(Ty)) { 5859 Result = getPointerType(QualType(Ty, 0)); 5860 } else { 5861 Result = QualType(Ty, 0); 5862 } 5863 5864 return CanQualType::CreateUnsafe(Result); 5865 } 5866 5867 QualType ASTContext::getUnqualifiedArrayType(QualType type, 5868 Qualifiers &quals) { 5869 SplitQualType splitType = type.getSplitUnqualifiedType(); 5870 5871 // FIXME: getSplitUnqualifiedType() actually walks all the way to 5872 // the unqualified desugared type and then drops it on the floor. 5873 // We then have to strip that sugar back off with 5874 // getUnqualifiedDesugaredType(), which is silly. 5875 const auto *AT = 5876 dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType()); 5877 5878 // If we don't have an array, just use the results in splitType. 5879 if (!AT) { 5880 quals = splitType.Quals; 5881 return QualType(splitType.Ty, 0); 5882 } 5883 5884 // Otherwise, recurse on the array's element type. 5885 QualType elementType = AT->getElementType(); 5886 QualType unqualElementType = getUnqualifiedArrayType(elementType, quals); 5887 5888 // If that didn't change the element type, AT has no qualifiers, so we 5889 // can just use the results in splitType. 5890 if (elementType == unqualElementType) { 5891 assert(quals.empty()); // from the recursive call 5892 quals = splitType.Quals; 5893 return QualType(splitType.Ty, 0); 5894 } 5895 5896 // Otherwise, add in the qualifiers from the outermost type, then 5897 // build the type back up. 5898 quals.addConsistentQualifiers(splitType.Quals); 5899 5900 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) { 5901 return getConstantArrayType(unqualElementType, CAT->getSize(), 5902 CAT->getSizeExpr(), CAT->getSizeModifier(), 0); 5903 } 5904 5905 if (const auto *IAT = dyn_cast<IncompleteArrayType>(AT)) { 5906 return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0); 5907 } 5908 5909 if (const auto *VAT = dyn_cast<VariableArrayType>(AT)) { 5910 return getVariableArrayType(unqualElementType, 5911 VAT->getSizeExpr(), 5912 VAT->getSizeModifier(), 5913 VAT->getIndexTypeCVRQualifiers(), 5914 VAT->getBracketsRange()); 5915 } 5916 5917 const auto *DSAT = cast<DependentSizedArrayType>(AT); 5918 return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(), 5919 DSAT->getSizeModifier(), 0, 5920 SourceRange()); 5921 } 5922 5923 /// Attempt to unwrap two types that may both be array types with the same bound 5924 /// (or both be array types of unknown bound) for the purpose of comparing the 5925 /// cv-decomposition of two types per C++ [conv.qual]. 5926 /// 5927 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in 5928 /// C++20 [conv.qual], if permitted by the current language mode. 5929 void ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2, 5930 bool AllowPiMismatch) { 5931 while (true) { 5932 auto *AT1 = getAsArrayType(T1); 5933 if (!AT1) 5934 return; 5935 5936 auto *AT2 = getAsArrayType(T2); 5937 if (!AT2) 5938 return; 5939 5940 // If we don't have two array types with the same constant bound nor two 5941 // incomplete array types, we've unwrapped everything we can. 5942 // C++20 also permits one type to be a constant array type and the other 5943 // to be an incomplete array type. 5944 // FIXME: Consider also unwrapping array of unknown bound and VLA. 5945 if (auto *CAT1 = dyn_cast<ConstantArrayType>(AT1)) { 5946 auto *CAT2 = dyn_cast<ConstantArrayType>(AT2); 5947 if (!((CAT2 && CAT1->getSize() == CAT2->getSize()) || 5948 (AllowPiMismatch && getLangOpts().CPlusPlus20 && 5949 isa<IncompleteArrayType>(AT2)))) 5950 return; 5951 } else if (isa<IncompleteArrayType>(AT1)) { 5952 if (!(isa<IncompleteArrayType>(AT2) || 5953 (AllowPiMismatch && getLangOpts().CPlusPlus20 && 5954 isa<ConstantArrayType>(AT2)))) 5955 return; 5956 } else { 5957 return; 5958 } 5959 5960 T1 = AT1->getElementType(); 5961 T2 = AT2->getElementType(); 5962 } 5963 } 5964 5965 /// Attempt to unwrap two types that may be similar (C++ [conv.qual]). 5966 /// 5967 /// If T1 and T2 are both pointer types of the same kind, or both array types 5968 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is 5969 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored. 5970 /// 5971 /// This function will typically be called in a loop that successively 5972 /// "unwraps" pointer and pointer-to-member types to compare them at each 5973 /// level. 5974 /// 5975 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in 5976 /// C++20 [conv.qual], if permitted by the current language mode. 5977 /// 5978 /// \return \c true if a pointer type was unwrapped, \c false if we reached a 5979 /// pair of types that can't be unwrapped further. 5980 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2, 5981 bool AllowPiMismatch) { 5982 UnwrapSimilarArrayTypes(T1, T2, AllowPiMismatch); 5983 5984 const auto *T1PtrType = T1->getAs<PointerType>(); 5985 const auto *T2PtrType = T2->getAs<PointerType>(); 5986 if (T1PtrType && T2PtrType) { 5987 T1 = T1PtrType->getPointeeType(); 5988 T2 = T2PtrType->getPointeeType(); 5989 return true; 5990 } 5991 5992 const auto *T1MPType = T1->getAs<MemberPointerType>(); 5993 const auto *T2MPType = T2->getAs<MemberPointerType>(); 5994 if (T1MPType && T2MPType && 5995 hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0), 5996 QualType(T2MPType->getClass(), 0))) { 5997 T1 = T1MPType->getPointeeType(); 5998 T2 = T2MPType->getPointeeType(); 5999 return true; 6000 } 6001 6002 if (getLangOpts().ObjC) { 6003 const auto *T1OPType = T1->getAs<ObjCObjectPointerType>(); 6004 const auto *T2OPType = T2->getAs<ObjCObjectPointerType>(); 6005 if (T1OPType && T2OPType) { 6006 T1 = T1OPType->getPointeeType(); 6007 T2 = T2OPType->getPointeeType(); 6008 return true; 6009 } 6010 } 6011 6012 // FIXME: Block pointers, too? 6013 6014 return false; 6015 } 6016 6017 bool ASTContext::hasSimilarType(QualType T1, QualType T2) { 6018 while (true) { 6019 Qualifiers Quals; 6020 T1 = getUnqualifiedArrayType(T1, Quals); 6021 T2 = getUnqualifiedArrayType(T2, Quals); 6022 if (hasSameType(T1, T2)) 6023 return true; 6024 if (!UnwrapSimilarTypes(T1, T2)) 6025 return false; 6026 } 6027 } 6028 6029 bool ASTContext::hasCvrSimilarType(QualType T1, QualType T2) { 6030 while (true) { 6031 Qualifiers Quals1, Quals2; 6032 T1 = getUnqualifiedArrayType(T1, Quals1); 6033 T2 = getUnqualifiedArrayType(T2, Quals2); 6034 6035 Quals1.removeCVRQualifiers(); 6036 Quals2.removeCVRQualifiers(); 6037 if (Quals1 != Quals2) 6038 return false; 6039 6040 if (hasSameType(T1, T2)) 6041 return true; 6042 6043 if (!UnwrapSimilarTypes(T1, T2, /*AllowPiMismatch*/ false)) 6044 return false; 6045 } 6046 } 6047 6048 DeclarationNameInfo 6049 ASTContext::getNameForTemplate(TemplateName Name, 6050 SourceLocation NameLoc) const { 6051 switch (Name.getKind()) { 6052 case TemplateName::QualifiedTemplate: 6053 case TemplateName::Template: 6054 // DNInfo work in progress: CHECKME: what about DNLoc? 6055 return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(), 6056 NameLoc); 6057 6058 case TemplateName::OverloadedTemplate: { 6059 OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate(); 6060 // DNInfo work in progress: CHECKME: what about DNLoc? 6061 return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc); 6062 } 6063 6064 case TemplateName::AssumedTemplate: { 6065 AssumedTemplateStorage *Storage = Name.getAsAssumedTemplateName(); 6066 return DeclarationNameInfo(Storage->getDeclName(), NameLoc); 6067 } 6068 6069 case TemplateName::DependentTemplate: { 6070 DependentTemplateName *DTN = Name.getAsDependentTemplateName(); 6071 DeclarationName DName; 6072 if (DTN->isIdentifier()) { 6073 DName = DeclarationNames.getIdentifier(DTN->getIdentifier()); 6074 return DeclarationNameInfo(DName, NameLoc); 6075 } else { 6076 DName = DeclarationNames.getCXXOperatorName(DTN->getOperator()); 6077 // DNInfo work in progress: FIXME: source locations? 6078 DeclarationNameLoc DNLoc = 6079 DeclarationNameLoc::makeCXXOperatorNameLoc(SourceRange()); 6080 return DeclarationNameInfo(DName, NameLoc, DNLoc); 6081 } 6082 } 6083 6084 case TemplateName::SubstTemplateTemplateParm: { 6085 SubstTemplateTemplateParmStorage *subst 6086 = Name.getAsSubstTemplateTemplateParm(); 6087 return DeclarationNameInfo(subst->getParameter()->getDeclName(), 6088 NameLoc); 6089 } 6090 6091 case TemplateName::SubstTemplateTemplateParmPack: { 6092 SubstTemplateTemplateParmPackStorage *subst 6093 = Name.getAsSubstTemplateTemplateParmPack(); 6094 return DeclarationNameInfo(subst->getParameterPack()->getDeclName(), 6095 NameLoc); 6096 } 6097 } 6098 6099 llvm_unreachable("bad template name kind!"); 6100 } 6101 6102 TemplateName ASTContext::getCanonicalTemplateName(TemplateName Name) const { 6103 switch (Name.getKind()) { 6104 case TemplateName::QualifiedTemplate: 6105 case TemplateName::Template: { 6106 TemplateDecl *Template = Name.getAsTemplateDecl(); 6107 if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Template)) 6108 Template = getCanonicalTemplateTemplateParmDecl(TTP); 6109 6110 // The canonical template name is the canonical template declaration. 6111 return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl())); 6112 } 6113 6114 case TemplateName::OverloadedTemplate: 6115 case TemplateName::AssumedTemplate: 6116 llvm_unreachable("cannot canonicalize unresolved template"); 6117 6118 case TemplateName::DependentTemplate: { 6119 DependentTemplateName *DTN = Name.getAsDependentTemplateName(); 6120 assert(DTN && "Non-dependent template names must refer to template decls."); 6121 return DTN->CanonicalTemplateName; 6122 } 6123 6124 case TemplateName::SubstTemplateTemplateParm: { 6125 SubstTemplateTemplateParmStorage *subst 6126 = Name.getAsSubstTemplateTemplateParm(); 6127 return getCanonicalTemplateName(subst->getReplacement()); 6128 } 6129 6130 case TemplateName::SubstTemplateTemplateParmPack: { 6131 SubstTemplateTemplateParmPackStorage *subst 6132 = Name.getAsSubstTemplateTemplateParmPack(); 6133 TemplateTemplateParmDecl *canonParameter 6134 = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack()); 6135 TemplateArgument canonArgPack 6136 = getCanonicalTemplateArgument(subst->getArgumentPack()); 6137 return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack); 6138 } 6139 } 6140 6141 llvm_unreachable("bad template name!"); 6142 } 6143 6144 bool ASTContext::hasSameTemplateName(TemplateName X, TemplateName Y) { 6145 X = getCanonicalTemplateName(X); 6146 Y = getCanonicalTemplateName(Y); 6147 return X.getAsVoidPointer() == Y.getAsVoidPointer(); 6148 } 6149 6150 bool ASTContext::isSameTemplateParameter(NamedDecl *X, NamedDecl *Y) { 6151 if (X->getKind() != Y->getKind()) 6152 return false; 6153 6154 if (auto *TX = dyn_cast<TemplateTypeParmDecl>(X)) { 6155 auto *TY = cast<TemplateTypeParmDecl>(Y); 6156 if (TX->isParameterPack() != TY->isParameterPack()) 6157 return false; 6158 if (TX->hasTypeConstraint() != TY->hasTypeConstraint()) 6159 return false; 6160 const TypeConstraint *TXTC = TX->getTypeConstraint(); 6161 const TypeConstraint *TYTC = TY->getTypeConstraint(); 6162 if (!TXTC != !TYTC) 6163 return false; 6164 if (TXTC && TYTC) { 6165 auto *NCX = TXTC->getNamedConcept(); 6166 auto *NCY = TYTC->getNamedConcept(); 6167 if (!NCX || !NCY || !isSameEntity(NCX, NCY)) 6168 return false; 6169 if (TXTC->hasExplicitTemplateArgs() != TYTC->hasExplicitTemplateArgs()) 6170 return false; 6171 if (TXTC->hasExplicitTemplateArgs()) { 6172 auto *TXTCArgs = TXTC->getTemplateArgsAsWritten(); 6173 auto *TYTCArgs = TYTC->getTemplateArgsAsWritten(); 6174 if (TXTCArgs->NumTemplateArgs != TYTCArgs->NumTemplateArgs) 6175 return false; 6176 llvm::FoldingSetNodeID XID, YID; 6177 for (auto &ArgLoc : TXTCArgs->arguments()) 6178 ArgLoc.getArgument().Profile(XID, X->getASTContext()); 6179 for (auto &ArgLoc : TYTCArgs->arguments()) 6180 ArgLoc.getArgument().Profile(YID, Y->getASTContext()); 6181 if (XID != YID) 6182 return false; 6183 } 6184 } 6185 return true; 6186 } 6187 6188 if (auto *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) { 6189 auto *TY = cast<NonTypeTemplateParmDecl>(Y); 6190 return TX->isParameterPack() == TY->isParameterPack() && 6191 TX->getASTContext().hasSameType(TX->getType(), TY->getType()); 6192 } 6193 6194 auto *TX = cast<TemplateTemplateParmDecl>(X); 6195 auto *TY = cast<TemplateTemplateParmDecl>(Y); 6196 return TX->isParameterPack() == TY->isParameterPack() && 6197 isSameTemplateParameterList(TX->getTemplateParameters(), 6198 TY->getTemplateParameters()); 6199 } 6200 6201 bool ASTContext::isSameTemplateParameterList(TemplateParameterList *X, 6202 TemplateParameterList *Y) { 6203 if (X->size() != Y->size()) 6204 return false; 6205 6206 for (unsigned I = 0, N = X->size(); I != N; ++I) 6207 if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I))) 6208 return false; 6209 6210 const Expr *XRC = X->getRequiresClause(); 6211 const Expr *YRC = Y->getRequiresClause(); 6212 if (!XRC != !YRC) 6213 return false; 6214 if (XRC) { 6215 llvm::FoldingSetNodeID XRCID, YRCID; 6216 XRC->Profile(XRCID, *this, /*Canonical=*/true); 6217 YRC->Profile(YRCID, *this, /*Canonical=*/true); 6218 if (XRCID != YRCID) 6219 return false; 6220 } 6221 6222 return true; 6223 } 6224 6225 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) { 6226 if (auto *NS = X->getAsNamespace()) 6227 return NS; 6228 if (auto *NAS = X->getAsNamespaceAlias()) 6229 return NAS->getNamespace(); 6230 return nullptr; 6231 } 6232 6233 static bool isSameQualifier(const NestedNameSpecifier *X, 6234 const NestedNameSpecifier *Y) { 6235 if (auto *NSX = getNamespace(X)) { 6236 auto *NSY = getNamespace(Y); 6237 if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl()) 6238 return false; 6239 } else if (X->getKind() != Y->getKind()) 6240 return false; 6241 6242 // FIXME: For namespaces and types, we're permitted to check that the entity 6243 // is named via the same tokens. We should probably do so. 6244 switch (X->getKind()) { 6245 case NestedNameSpecifier::Identifier: 6246 if (X->getAsIdentifier() != Y->getAsIdentifier()) 6247 return false; 6248 break; 6249 case NestedNameSpecifier::Namespace: 6250 case NestedNameSpecifier::NamespaceAlias: 6251 // We've already checked that we named the same namespace. 6252 break; 6253 case NestedNameSpecifier::TypeSpec: 6254 case NestedNameSpecifier::TypeSpecWithTemplate: 6255 if (X->getAsType()->getCanonicalTypeInternal() != 6256 Y->getAsType()->getCanonicalTypeInternal()) 6257 return false; 6258 break; 6259 case NestedNameSpecifier::Global: 6260 case NestedNameSpecifier::Super: 6261 return true; 6262 } 6263 6264 // Recurse into earlier portion of NNS, if any. 6265 auto *PX = X->getPrefix(); 6266 auto *PY = Y->getPrefix(); 6267 if (PX && PY) 6268 return isSameQualifier(PX, PY); 6269 return !PX && !PY; 6270 } 6271 6272 /// Determine whether the attributes we can overload on are identical for A and 6273 /// B. Will ignore any overloadable attrs represented in the type of A and B. 6274 static bool hasSameOverloadableAttrs(const FunctionDecl *A, 6275 const FunctionDecl *B) { 6276 // Note that pass_object_size attributes are represented in the function's 6277 // ExtParameterInfo, so we don't need to check them here. 6278 6279 llvm::FoldingSetNodeID Cand1ID, Cand2ID; 6280 auto AEnableIfAttrs = A->specific_attrs<EnableIfAttr>(); 6281 auto BEnableIfAttrs = B->specific_attrs<EnableIfAttr>(); 6282 6283 for (auto Pair : zip_longest(AEnableIfAttrs, BEnableIfAttrs)) { 6284 Optional<EnableIfAttr *> Cand1A = std::get<0>(Pair); 6285 Optional<EnableIfAttr *> Cand2A = std::get<1>(Pair); 6286 6287 // Return false if the number of enable_if attributes is different. 6288 if (!Cand1A || !Cand2A) 6289 return false; 6290 6291 Cand1ID.clear(); 6292 Cand2ID.clear(); 6293 6294 (*Cand1A)->getCond()->Profile(Cand1ID, A->getASTContext(), true); 6295 (*Cand2A)->getCond()->Profile(Cand2ID, B->getASTContext(), true); 6296 6297 // Return false if any of the enable_if expressions of A and B are 6298 // different. 6299 if (Cand1ID != Cand2ID) 6300 return false; 6301 } 6302 return true; 6303 } 6304 6305 bool ASTContext::isSameEntity(NamedDecl *X, NamedDecl *Y) { 6306 if (X == Y) 6307 return true; 6308 6309 if (X->getDeclName() != Y->getDeclName()) 6310 return false; 6311 6312 // Must be in the same context. 6313 // 6314 // Note that we can't use DeclContext::Equals here, because the DeclContexts 6315 // could be two different declarations of the same function. (We will fix the 6316 // semantic DC to refer to the primary definition after merging.) 6317 if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()), 6318 cast<Decl>(Y->getDeclContext()->getRedeclContext()))) 6319 return false; 6320 6321 // Two typedefs refer to the same entity if they have the same underlying 6322 // type. 6323 if (const auto *TypedefX = dyn_cast<TypedefNameDecl>(X)) 6324 if (const auto *TypedefY = dyn_cast<TypedefNameDecl>(Y)) 6325 return hasSameType(TypedefX->getUnderlyingType(), 6326 TypedefY->getUnderlyingType()); 6327 6328 // Must have the same kind. 6329 if (X->getKind() != Y->getKind()) 6330 return false; 6331 6332 // Objective-C classes and protocols with the same name always match. 6333 if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X)) 6334 return true; 6335 6336 if (isa<ClassTemplateSpecializationDecl>(X)) { 6337 // No need to handle these here: we merge them when adding them to the 6338 // template. 6339 return false; 6340 } 6341 6342 // Compatible tags match. 6343 if (const auto *TagX = dyn_cast<TagDecl>(X)) { 6344 const auto *TagY = cast<TagDecl>(Y); 6345 return (TagX->getTagKind() == TagY->getTagKind()) || 6346 ((TagX->getTagKind() == TTK_Struct || 6347 TagX->getTagKind() == TTK_Class || 6348 TagX->getTagKind() == TTK_Interface) && 6349 (TagY->getTagKind() == TTK_Struct || 6350 TagY->getTagKind() == TTK_Class || 6351 TagY->getTagKind() == TTK_Interface)); 6352 } 6353 6354 // Functions with the same type and linkage match. 6355 // FIXME: This needs to cope with merging of prototyped/non-prototyped 6356 // functions, etc. 6357 if (const auto *FuncX = dyn_cast<FunctionDecl>(X)) { 6358 const auto *FuncY = cast<FunctionDecl>(Y); 6359 if (const auto *CtorX = dyn_cast<CXXConstructorDecl>(X)) { 6360 const auto *CtorY = cast<CXXConstructorDecl>(Y); 6361 if (CtorX->getInheritedConstructor() && 6362 !isSameEntity(CtorX->getInheritedConstructor().getConstructor(), 6363 CtorY->getInheritedConstructor().getConstructor())) 6364 return false; 6365 } 6366 6367 if (FuncX->isMultiVersion() != FuncY->isMultiVersion()) 6368 return false; 6369 6370 // Multiversioned functions with different feature strings are represented 6371 // as separate declarations. 6372 if (FuncX->isMultiVersion()) { 6373 const auto *TAX = FuncX->getAttr<TargetAttr>(); 6374 const auto *TAY = FuncY->getAttr<TargetAttr>(); 6375 assert(TAX && TAY && "Multiversion Function without target attribute"); 6376 6377 if (TAX->getFeaturesStr() != TAY->getFeaturesStr()) 6378 return false; 6379 } 6380 6381 const Expr *XRC = FuncX->getTrailingRequiresClause(); 6382 const Expr *YRC = FuncY->getTrailingRequiresClause(); 6383 if (!XRC != !YRC) 6384 return false; 6385 if (XRC) { 6386 llvm::FoldingSetNodeID XRCID, YRCID; 6387 XRC->Profile(XRCID, *this, /*Canonical=*/true); 6388 YRC->Profile(YRCID, *this, /*Canonical=*/true); 6389 if (XRCID != YRCID) 6390 return false; 6391 } 6392 6393 auto GetTypeAsWritten = [](const FunctionDecl *FD) { 6394 // Map to the first declaration that we've already merged into this one. 6395 // The TSI of redeclarations might not match (due to calling conventions 6396 // being inherited onto the type but not the TSI), but the TSI type of 6397 // the first declaration of the function should match across modules. 6398 FD = FD->getCanonicalDecl(); 6399 return FD->getTypeSourceInfo() ? FD->getTypeSourceInfo()->getType() 6400 : FD->getType(); 6401 }; 6402 QualType XT = GetTypeAsWritten(FuncX), YT = GetTypeAsWritten(FuncY); 6403 if (!hasSameType(XT, YT)) { 6404 // We can get functions with different types on the redecl chain in C++17 6405 // if they have differing exception specifications and at least one of 6406 // the excpetion specs is unresolved. 6407 auto *XFPT = XT->getAs<FunctionProtoType>(); 6408 auto *YFPT = YT->getAs<FunctionProtoType>(); 6409 if (getLangOpts().CPlusPlus17 && XFPT && YFPT && 6410 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) || 6411 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) && 6412 hasSameFunctionTypeIgnoringExceptionSpec(XT, YT)) 6413 return true; 6414 return false; 6415 } 6416 6417 return FuncX->getLinkageInternal() == FuncY->getLinkageInternal() && 6418 hasSameOverloadableAttrs(FuncX, FuncY); 6419 } 6420 6421 // Variables with the same type and linkage match. 6422 if (const auto *VarX = dyn_cast<VarDecl>(X)) { 6423 const auto *VarY = cast<VarDecl>(Y); 6424 if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) { 6425 if (hasSameType(VarX->getType(), VarY->getType())) 6426 return true; 6427 6428 // We can get decls with different types on the redecl chain. Eg. 6429 // template <typename T> struct S { static T Var[]; }; // #1 6430 // template <typename T> T S<T>::Var[sizeof(T)]; // #2 6431 // Only? happens when completing an incomplete array type. In this case 6432 // when comparing #1 and #2 we should go through their element type. 6433 const ArrayType *VarXTy = getAsArrayType(VarX->getType()); 6434 const ArrayType *VarYTy = getAsArrayType(VarY->getType()); 6435 if (!VarXTy || !VarYTy) 6436 return false; 6437 if (VarXTy->isIncompleteArrayType() || VarYTy->isIncompleteArrayType()) 6438 return hasSameType(VarXTy->getElementType(), VarYTy->getElementType()); 6439 } 6440 return false; 6441 } 6442 6443 // Namespaces with the same name and inlinedness match. 6444 if (const auto *NamespaceX = dyn_cast<NamespaceDecl>(X)) { 6445 const auto *NamespaceY = cast<NamespaceDecl>(Y); 6446 return NamespaceX->isInline() == NamespaceY->isInline(); 6447 } 6448 6449 // Identical template names and kinds match if their template parameter lists 6450 // and patterns match. 6451 if (const auto *TemplateX = dyn_cast<TemplateDecl>(X)) { 6452 const auto *TemplateY = cast<TemplateDecl>(Y); 6453 return isSameEntity(TemplateX->getTemplatedDecl(), 6454 TemplateY->getTemplatedDecl()) && 6455 isSameTemplateParameterList(TemplateX->getTemplateParameters(), 6456 TemplateY->getTemplateParameters()); 6457 } 6458 6459 // Fields with the same name and the same type match. 6460 if (const auto *FDX = dyn_cast<FieldDecl>(X)) { 6461 const auto *FDY = cast<FieldDecl>(Y); 6462 // FIXME: Also check the bitwidth is odr-equivalent, if any. 6463 return hasSameType(FDX->getType(), FDY->getType()); 6464 } 6465 6466 // Indirect fields with the same target field match. 6467 if (const auto *IFDX = dyn_cast<IndirectFieldDecl>(X)) { 6468 const auto *IFDY = cast<IndirectFieldDecl>(Y); 6469 return IFDX->getAnonField()->getCanonicalDecl() == 6470 IFDY->getAnonField()->getCanonicalDecl(); 6471 } 6472 6473 // Enumerators with the same name match. 6474 if (isa<EnumConstantDecl>(X)) 6475 // FIXME: Also check the value is odr-equivalent. 6476 return true; 6477 6478 // Using shadow declarations with the same target match. 6479 if (const auto *USX = dyn_cast<UsingShadowDecl>(X)) { 6480 const auto *USY = cast<UsingShadowDecl>(Y); 6481 return USX->getTargetDecl() == USY->getTargetDecl(); 6482 } 6483 6484 // Using declarations with the same qualifier match. (We already know that 6485 // the name matches.) 6486 if (const auto *UX = dyn_cast<UsingDecl>(X)) { 6487 const auto *UY = cast<UsingDecl>(Y); 6488 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 6489 UX->hasTypename() == UY->hasTypename() && 6490 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 6491 } 6492 if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) { 6493 const auto *UY = cast<UnresolvedUsingValueDecl>(Y); 6494 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 6495 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 6496 } 6497 if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) { 6498 return isSameQualifier( 6499 UX->getQualifier(), 6500 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); 6501 } 6502 6503 // Using-pack declarations are only created by instantiation, and match if 6504 // they're instantiated from matching UnresolvedUsing...Decls. 6505 if (const auto *UX = dyn_cast<UsingPackDecl>(X)) { 6506 return declaresSameEntity( 6507 UX->getInstantiatedFromUsingDecl(), 6508 cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl()); 6509 } 6510 6511 // Namespace alias definitions with the same target match. 6512 if (const auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) { 6513 const auto *NAY = cast<NamespaceAliasDecl>(Y); 6514 return NAX->getNamespace()->Equals(NAY->getNamespace()); 6515 } 6516 6517 return false; 6518 } 6519 6520 TemplateArgument 6521 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const { 6522 switch (Arg.getKind()) { 6523 case TemplateArgument::Null: 6524 return Arg; 6525 6526 case TemplateArgument::Expression: 6527 return Arg; 6528 6529 case TemplateArgument::Declaration: { 6530 auto *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl()); 6531 return TemplateArgument(D, Arg.getParamTypeForDecl()); 6532 } 6533 6534 case TemplateArgument::NullPtr: 6535 return TemplateArgument(getCanonicalType(Arg.getNullPtrType()), 6536 /*isNullPtr*/true); 6537 6538 case TemplateArgument::Template: 6539 return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate())); 6540 6541 case TemplateArgument::TemplateExpansion: 6542 return TemplateArgument(getCanonicalTemplateName( 6543 Arg.getAsTemplateOrTemplatePattern()), 6544 Arg.getNumTemplateExpansions()); 6545 6546 case TemplateArgument::Integral: 6547 return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType())); 6548 6549 case TemplateArgument::Type: 6550 return TemplateArgument(getCanonicalType(Arg.getAsType())); 6551 6552 case TemplateArgument::Pack: { 6553 if (Arg.pack_size() == 0) 6554 return Arg; 6555 6556 auto *CanonArgs = new (*this) TemplateArgument[Arg.pack_size()]; 6557 unsigned Idx = 0; 6558 for (TemplateArgument::pack_iterator A = Arg.pack_begin(), 6559 AEnd = Arg.pack_end(); 6560 A != AEnd; (void)++A, ++Idx) 6561 CanonArgs[Idx] = getCanonicalTemplateArgument(*A); 6562 6563 return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size())); 6564 } 6565 } 6566 6567 // Silence GCC warning 6568 llvm_unreachable("Unhandled template argument kind"); 6569 } 6570 6571 NestedNameSpecifier * 6572 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const { 6573 if (!NNS) 6574 return nullptr; 6575 6576 switch (NNS->getKind()) { 6577 case NestedNameSpecifier::Identifier: 6578 // Canonicalize the prefix but keep the identifier the same. 6579 return NestedNameSpecifier::Create(*this, 6580 getCanonicalNestedNameSpecifier(NNS->getPrefix()), 6581 NNS->getAsIdentifier()); 6582 6583 case NestedNameSpecifier::Namespace: 6584 // A namespace is canonical; build a nested-name-specifier with 6585 // this namespace and no prefix. 6586 return NestedNameSpecifier::Create(*this, nullptr, 6587 NNS->getAsNamespace()->getOriginalNamespace()); 6588 6589 case NestedNameSpecifier::NamespaceAlias: 6590 // A namespace is canonical; build a nested-name-specifier with 6591 // this namespace and no prefix. 6592 return NestedNameSpecifier::Create(*this, nullptr, 6593 NNS->getAsNamespaceAlias()->getNamespace() 6594 ->getOriginalNamespace()); 6595 6596 // The difference between TypeSpec and TypeSpecWithTemplate is that the 6597 // latter will have the 'template' keyword when printed. 6598 case NestedNameSpecifier::TypeSpec: 6599 case NestedNameSpecifier::TypeSpecWithTemplate: { 6600 const Type *T = getCanonicalType(NNS->getAsType()); 6601 6602 // If we have some kind of dependent-named type (e.g., "typename T::type"), 6603 // break it apart into its prefix and identifier, then reconsititute those 6604 // as the canonical nested-name-specifier. This is required to canonicalize 6605 // a dependent nested-name-specifier involving typedefs of dependent-name 6606 // types, e.g., 6607 // typedef typename T::type T1; 6608 // typedef typename T1::type T2; 6609 if (const auto *DNT = T->getAs<DependentNameType>()) 6610 return NestedNameSpecifier::Create( 6611 *this, DNT->getQualifier(), 6612 const_cast<IdentifierInfo *>(DNT->getIdentifier())); 6613 if (const auto *DTST = T->getAs<DependentTemplateSpecializationType>()) 6614 return NestedNameSpecifier::Create(*this, DTST->getQualifier(), true, 6615 const_cast<Type *>(T)); 6616 6617 // TODO: Set 'Template' parameter to true for other template types. 6618 return NestedNameSpecifier::Create(*this, nullptr, false, 6619 const_cast<Type *>(T)); 6620 } 6621 6622 case NestedNameSpecifier::Global: 6623 case NestedNameSpecifier::Super: 6624 // The global specifier and __super specifer are canonical and unique. 6625 return NNS; 6626 } 6627 6628 llvm_unreachable("Invalid NestedNameSpecifier::Kind!"); 6629 } 6630 6631 const ArrayType *ASTContext::getAsArrayType(QualType T) const { 6632 // Handle the non-qualified case efficiently. 6633 if (!T.hasLocalQualifiers()) { 6634 // Handle the common positive case fast. 6635 if (const auto *AT = dyn_cast<ArrayType>(T)) 6636 return AT; 6637 } 6638 6639 // Handle the common negative case fast. 6640 if (!isa<ArrayType>(T.getCanonicalType())) 6641 return nullptr; 6642 6643 // Apply any qualifiers from the array type to the element type. This 6644 // implements C99 6.7.3p8: "If the specification of an array type includes 6645 // any type qualifiers, the element type is so qualified, not the array type." 6646 6647 // If we get here, we either have type qualifiers on the type, or we have 6648 // sugar such as a typedef in the way. If we have type qualifiers on the type 6649 // we must propagate them down into the element type. 6650 6651 SplitQualType split = T.getSplitDesugaredType(); 6652 Qualifiers qs = split.Quals; 6653 6654 // If we have a simple case, just return now. 6655 const auto *ATy = dyn_cast<ArrayType>(split.Ty); 6656 if (!ATy || qs.empty()) 6657 return ATy; 6658 6659 // Otherwise, we have an array and we have qualifiers on it. Push the 6660 // qualifiers into the array element type and return a new array type. 6661 QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs); 6662 6663 if (const auto *CAT = dyn_cast<ConstantArrayType>(ATy)) 6664 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(), 6665 CAT->getSizeExpr(), 6666 CAT->getSizeModifier(), 6667 CAT->getIndexTypeCVRQualifiers())); 6668 if (const auto *IAT = dyn_cast<IncompleteArrayType>(ATy)) 6669 return cast<ArrayType>(getIncompleteArrayType(NewEltTy, 6670 IAT->getSizeModifier(), 6671 IAT->getIndexTypeCVRQualifiers())); 6672 6673 if (const auto *DSAT = dyn_cast<DependentSizedArrayType>(ATy)) 6674 return cast<ArrayType>( 6675 getDependentSizedArrayType(NewEltTy, 6676 DSAT->getSizeExpr(), 6677 DSAT->getSizeModifier(), 6678 DSAT->getIndexTypeCVRQualifiers(), 6679 DSAT->getBracketsRange())); 6680 6681 const auto *VAT = cast<VariableArrayType>(ATy); 6682 return cast<ArrayType>(getVariableArrayType(NewEltTy, 6683 VAT->getSizeExpr(), 6684 VAT->getSizeModifier(), 6685 VAT->getIndexTypeCVRQualifiers(), 6686 VAT->getBracketsRange())); 6687 } 6688 6689 QualType ASTContext::getAdjustedParameterType(QualType T) const { 6690 if (T->isArrayType() || T->isFunctionType()) 6691 return getDecayedType(T); 6692 return T; 6693 } 6694 6695 QualType ASTContext::getSignatureParameterType(QualType T) const { 6696 T = getVariableArrayDecayedType(T); 6697 T = getAdjustedParameterType(T); 6698 return T.getUnqualifiedType(); 6699 } 6700 6701 QualType ASTContext::getExceptionObjectType(QualType T) const { 6702 // C++ [except.throw]p3: 6703 // A throw-expression initializes a temporary object, called the exception 6704 // object, the type of which is determined by removing any top-level 6705 // cv-qualifiers from the static type of the operand of throw and adjusting 6706 // the type from "array of T" or "function returning T" to "pointer to T" 6707 // or "pointer to function returning T", [...] 6708 T = getVariableArrayDecayedType(T); 6709 if (T->isArrayType() || T->isFunctionType()) 6710 T = getDecayedType(T); 6711 return T.getUnqualifiedType(); 6712 } 6713 6714 /// getArrayDecayedType - Return the properly qualified result of decaying the 6715 /// specified array type to a pointer. This operation is non-trivial when 6716 /// handling typedefs etc. The canonical type of "T" must be an array type, 6717 /// this returns a pointer to a properly qualified element of the array. 6718 /// 6719 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3. 6720 QualType ASTContext::getArrayDecayedType(QualType Ty) const { 6721 // Get the element type with 'getAsArrayType' so that we don't lose any 6722 // typedefs in the element type of the array. This also handles propagation 6723 // of type qualifiers from the array type into the element type if present 6724 // (C99 6.7.3p8). 6725 const ArrayType *PrettyArrayType = getAsArrayType(Ty); 6726 assert(PrettyArrayType && "Not an array type!"); 6727 6728 QualType PtrTy = getPointerType(PrettyArrayType->getElementType()); 6729 6730 // int x[restrict 4] -> int *restrict 6731 QualType Result = getQualifiedType(PtrTy, 6732 PrettyArrayType->getIndexTypeQualifiers()); 6733 6734 // int x[_Nullable] -> int * _Nullable 6735 if (auto Nullability = Ty->getNullability(*this)) { 6736 Result = const_cast<ASTContext *>(this)->getAttributedType( 6737 AttributedType::getNullabilityAttrKind(*Nullability), Result, Result); 6738 } 6739 return Result; 6740 } 6741 6742 QualType ASTContext::getBaseElementType(const ArrayType *array) const { 6743 return getBaseElementType(array->getElementType()); 6744 } 6745 6746 QualType ASTContext::getBaseElementType(QualType type) const { 6747 Qualifiers qs; 6748 while (true) { 6749 SplitQualType split = type.getSplitDesugaredType(); 6750 const ArrayType *array = split.Ty->getAsArrayTypeUnsafe(); 6751 if (!array) break; 6752 6753 type = array->getElementType(); 6754 qs.addConsistentQualifiers(split.Quals); 6755 } 6756 6757 return getQualifiedType(type, qs); 6758 } 6759 6760 /// getConstantArrayElementCount - Returns number of constant array elements. 6761 uint64_t 6762 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA) const { 6763 uint64_t ElementCount = 1; 6764 do { 6765 ElementCount *= CA->getSize().getZExtValue(); 6766 CA = dyn_cast_or_null<ConstantArrayType>( 6767 CA->getElementType()->getAsArrayTypeUnsafe()); 6768 } while (CA); 6769 return ElementCount; 6770 } 6771 6772 /// getFloatingRank - Return a relative rank for floating point types. 6773 /// This routine will assert if passed a built-in type that isn't a float. 6774 static FloatingRank getFloatingRank(QualType T) { 6775 if (const auto *CT = T->getAs<ComplexType>()) 6776 return getFloatingRank(CT->getElementType()); 6777 6778 switch (T->castAs<BuiltinType>()->getKind()) { 6779 default: llvm_unreachable("getFloatingRank(): not a floating type"); 6780 case BuiltinType::Float16: return Float16Rank; 6781 case BuiltinType::Half: return HalfRank; 6782 case BuiltinType::Float: return FloatRank; 6783 case BuiltinType::Double: return DoubleRank; 6784 case BuiltinType::LongDouble: return LongDoubleRank; 6785 case BuiltinType::Float128: return Float128Rank; 6786 case BuiltinType::BFloat16: return BFloat16Rank; 6787 case BuiltinType::Ibm128: return Ibm128Rank; 6788 } 6789 } 6790 6791 /// getFloatingTypeOfSizeWithinDomain - Returns a real floating 6792 /// point or a complex type (based on typeDomain/typeSize). 6793 /// 'typeDomain' is a real floating point or complex type. 6794 /// 'typeSize' is a real floating point or complex type. 6795 QualType ASTContext::getFloatingTypeOfSizeWithinDomain(QualType Size, 6796 QualType Domain) const { 6797 FloatingRank EltRank = getFloatingRank(Size); 6798 if (Domain->isComplexType()) { 6799 switch (EltRank) { 6800 case BFloat16Rank: llvm_unreachable("Complex bfloat16 is not supported"); 6801 case Float16Rank: 6802 case HalfRank: llvm_unreachable("Complex half is not supported"); 6803 case Ibm128Rank: return getComplexType(Ibm128Ty); 6804 case FloatRank: return getComplexType(FloatTy); 6805 case DoubleRank: return getComplexType(DoubleTy); 6806 case LongDoubleRank: return getComplexType(LongDoubleTy); 6807 case Float128Rank: return getComplexType(Float128Ty); 6808 } 6809 } 6810 6811 assert(Domain->isRealFloatingType() && "Unknown domain!"); 6812 switch (EltRank) { 6813 case Float16Rank: return HalfTy; 6814 case BFloat16Rank: return BFloat16Ty; 6815 case HalfRank: return HalfTy; 6816 case FloatRank: return FloatTy; 6817 case DoubleRank: return DoubleTy; 6818 case LongDoubleRank: return LongDoubleTy; 6819 case Float128Rank: return Float128Ty; 6820 case Ibm128Rank: 6821 return Ibm128Ty; 6822 } 6823 llvm_unreachable("getFloatingRank(): illegal value for rank"); 6824 } 6825 6826 /// getFloatingTypeOrder - Compare the rank of the two specified floating 6827 /// point types, ignoring the domain of the type (i.e. 'double' == 6828 /// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If 6829 /// LHS < RHS, return -1. 6830 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const { 6831 FloatingRank LHSR = getFloatingRank(LHS); 6832 FloatingRank RHSR = getFloatingRank(RHS); 6833 6834 if (LHSR == RHSR) 6835 return 0; 6836 if (LHSR > RHSR) 6837 return 1; 6838 return -1; 6839 } 6840 6841 int ASTContext::getFloatingTypeSemanticOrder(QualType LHS, QualType RHS) const { 6842 if (&getFloatTypeSemantics(LHS) == &getFloatTypeSemantics(RHS)) 6843 return 0; 6844 return getFloatingTypeOrder(LHS, RHS); 6845 } 6846 6847 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This 6848 /// routine will assert if passed a built-in type that isn't an integer or enum, 6849 /// or if it is not canonicalized. 6850 unsigned ASTContext::getIntegerRank(const Type *T) const { 6851 assert(T->isCanonicalUnqualified() && "T should be canonicalized"); 6852 6853 // Results in this 'losing' to any type of the same size, but winning if 6854 // larger. 6855 if (const auto *EIT = dyn_cast<BitIntType>(T)) 6856 return 0 + (EIT->getNumBits() << 3); 6857 6858 switch (cast<BuiltinType>(T)->getKind()) { 6859 default: llvm_unreachable("getIntegerRank(): not a built-in integer"); 6860 case BuiltinType::Bool: 6861 return 1 + (getIntWidth(BoolTy) << 3); 6862 case BuiltinType::Char_S: 6863 case BuiltinType::Char_U: 6864 case BuiltinType::SChar: 6865 case BuiltinType::UChar: 6866 return 2 + (getIntWidth(CharTy) << 3); 6867 case BuiltinType::Short: 6868 case BuiltinType::UShort: 6869 return 3 + (getIntWidth(ShortTy) << 3); 6870 case BuiltinType::Int: 6871 case BuiltinType::UInt: 6872 return 4 + (getIntWidth(IntTy) << 3); 6873 case BuiltinType::Long: 6874 case BuiltinType::ULong: 6875 return 5 + (getIntWidth(LongTy) << 3); 6876 case BuiltinType::LongLong: 6877 case BuiltinType::ULongLong: 6878 return 6 + (getIntWidth(LongLongTy) << 3); 6879 case BuiltinType::Int128: 6880 case BuiltinType::UInt128: 6881 return 7 + (getIntWidth(Int128Ty) << 3); 6882 } 6883 } 6884 6885 /// Whether this is a promotable bitfield reference according 6886 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions). 6887 /// 6888 /// \returns the type this bit-field will promote to, or NULL if no 6889 /// promotion occurs. 6890 QualType ASTContext::isPromotableBitField(Expr *E) const { 6891 if (E->isTypeDependent() || E->isValueDependent()) 6892 return {}; 6893 6894 // C++ [conv.prom]p5: 6895 // If the bit-field has an enumerated type, it is treated as any other 6896 // value of that type for promotion purposes. 6897 if (getLangOpts().CPlusPlus && E->getType()->isEnumeralType()) 6898 return {}; 6899 6900 // FIXME: We should not do this unless E->refersToBitField() is true. This 6901 // matters in C where getSourceBitField() will find bit-fields for various 6902 // cases where the source expression is not a bit-field designator. 6903 6904 FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields? 6905 if (!Field) 6906 return {}; 6907 6908 QualType FT = Field->getType(); 6909 6910 uint64_t BitWidth = Field->getBitWidthValue(*this); 6911 uint64_t IntSize = getTypeSize(IntTy); 6912 // C++ [conv.prom]p5: 6913 // A prvalue for an integral bit-field can be converted to a prvalue of type 6914 // int if int can represent all the values of the bit-field; otherwise, it 6915 // can be converted to unsigned int if unsigned int can represent all the 6916 // values of the bit-field. If the bit-field is larger yet, no integral 6917 // promotion applies to it. 6918 // C11 6.3.1.1/2: 6919 // [For a bit-field of type _Bool, int, signed int, or unsigned int:] 6920 // If an int can represent all values of the original type (as restricted by 6921 // the width, for a bit-field), the value is converted to an int; otherwise, 6922 // it is converted to an unsigned int. 6923 // 6924 // FIXME: C does not permit promotion of a 'long : 3' bitfield to int. 6925 // We perform that promotion here to match GCC and C++. 6926 // FIXME: C does not permit promotion of an enum bit-field whose rank is 6927 // greater than that of 'int'. We perform that promotion to match GCC. 6928 if (BitWidth < IntSize) 6929 return IntTy; 6930 6931 if (BitWidth == IntSize) 6932 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; 6933 6934 // Bit-fields wider than int are not subject to promotions, and therefore act 6935 // like the base type. GCC has some weird bugs in this area that we 6936 // deliberately do not follow (GCC follows a pre-standard resolution to 6937 // C's DR315 which treats bit-width as being part of the type, and this leaks 6938 // into their semantics in some cases). 6939 return {}; 6940 } 6941 6942 /// getPromotedIntegerType - Returns the type that Promotable will 6943 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable 6944 /// integer type. 6945 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { 6946 assert(!Promotable.isNull()); 6947 assert(Promotable->isPromotableIntegerType()); 6948 if (const auto *ET = Promotable->getAs<EnumType>()) 6949 return ET->getDecl()->getPromotionType(); 6950 6951 if (const auto *BT = Promotable->getAs<BuiltinType>()) { 6952 // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t 6953 // (3.9.1) can be converted to a prvalue of the first of the following 6954 // types that can represent all the values of its underlying type: 6955 // int, unsigned int, long int, unsigned long int, long long int, or 6956 // unsigned long long int [...] 6957 // FIXME: Is there some better way to compute this? 6958 if (BT->getKind() == BuiltinType::WChar_S || 6959 BT->getKind() == BuiltinType::WChar_U || 6960 BT->getKind() == BuiltinType::Char8 || 6961 BT->getKind() == BuiltinType::Char16 || 6962 BT->getKind() == BuiltinType::Char32) { 6963 bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S; 6964 uint64_t FromSize = getTypeSize(BT); 6965 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, 6966 LongLongTy, UnsignedLongLongTy }; 6967 for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) { 6968 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); 6969 if (FromSize < ToSize || 6970 (FromSize == ToSize && 6971 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) 6972 return PromoteTypes[Idx]; 6973 } 6974 llvm_unreachable("char type should fit into long long"); 6975 } 6976 } 6977 6978 // At this point, we should have a signed or unsigned integer type. 6979 if (Promotable->isSignedIntegerType()) 6980 return IntTy; 6981 uint64_t PromotableSize = getIntWidth(Promotable); 6982 uint64_t IntSize = getIntWidth(IntTy); 6983 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); 6984 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; 6985 } 6986 6987 /// Recurses in pointer/array types until it finds an objc retainable 6988 /// type and returns its ownership. 6989 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const { 6990 while (!T.isNull()) { 6991 if (T.getObjCLifetime() != Qualifiers::OCL_None) 6992 return T.getObjCLifetime(); 6993 if (T->isArrayType()) 6994 T = getBaseElementType(T); 6995 else if (const auto *PT = T->getAs<PointerType>()) 6996 T = PT->getPointeeType(); 6997 else if (const auto *RT = T->getAs<ReferenceType>()) 6998 T = RT->getPointeeType(); 6999 else 7000 break; 7001 } 7002 7003 return Qualifiers::OCL_None; 7004 } 7005 7006 static const Type *getIntegerTypeForEnum(const EnumType *ET) { 7007 // Incomplete enum types are not treated as integer types. 7008 // FIXME: In C++, enum types are never integer types. 7009 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 7010 return ET->getDecl()->getIntegerType().getTypePtr(); 7011 return nullptr; 7012 } 7013 7014 /// getIntegerTypeOrder - Returns the highest ranked integer type: 7015 /// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If 7016 /// LHS < RHS, return -1. 7017 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const { 7018 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); 7019 const Type *RHSC = getCanonicalType(RHS).getTypePtr(); 7020 7021 // Unwrap enums to their underlying type. 7022 if (const auto *ET = dyn_cast<EnumType>(LHSC)) 7023 LHSC = getIntegerTypeForEnum(ET); 7024 if (const auto *ET = dyn_cast<EnumType>(RHSC)) 7025 RHSC = getIntegerTypeForEnum(ET); 7026 7027 if (LHSC == RHSC) return 0; 7028 7029 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); 7030 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); 7031 7032 unsigned LHSRank = getIntegerRank(LHSC); 7033 unsigned RHSRank = getIntegerRank(RHSC); 7034 7035 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned. 7036 if (LHSRank == RHSRank) return 0; 7037 return LHSRank > RHSRank ? 1 : -1; 7038 } 7039 7040 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa. 7041 if (LHSUnsigned) { 7042 // If the unsigned [LHS] type is larger, return it. 7043 if (LHSRank >= RHSRank) 7044 return 1; 7045 7046 // If the signed type can represent all values of the unsigned type, it 7047 // wins. Because we are dealing with 2's complement and types that are 7048 // powers of two larger than each other, this is always safe. 7049 return -1; 7050 } 7051 7052 // If the unsigned [RHS] type is larger, return it. 7053 if (RHSRank >= LHSRank) 7054 return -1; 7055 7056 // If the signed type can represent all values of the unsigned type, it 7057 // wins. Because we are dealing with 2's complement and types that are 7058 // powers of two larger than each other, this is always safe. 7059 return 1; 7060 } 7061 7062 TypedefDecl *ASTContext::getCFConstantStringDecl() const { 7063 if (CFConstantStringTypeDecl) 7064 return CFConstantStringTypeDecl; 7065 7066 assert(!CFConstantStringTagDecl && 7067 "tag and typedef should be initialized together"); 7068 CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag"); 7069 CFConstantStringTagDecl->startDefinition(); 7070 7071 struct { 7072 QualType Type; 7073 const char *Name; 7074 } Fields[5]; 7075 unsigned Count = 0; 7076 7077 /// Objective-C ABI 7078 /// 7079 /// typedef struct __NSConstantString_tag { 7080 /// const int *isa; 7081 /// int flags; 7082 /// const char *str; 7083 /// long length; 7084 /// } __NSConstantString; 7085 /// 7086 /// Swift ABI (4.1, 4.2) 7087 /// 7088 /// typedef struct __NSConstantString_tag { 7089 /// uintptr_t _cfisa; 7090 /// uintptr_t _swift_rc; 7091 /// _Atomic(uint64_t) _cfinfoa; 7092 /// const char *_ptr; 7093 /// uint32_t _length; 7094 /// } __NSConstantString; 7095 /// 7096 /// Swift ABI (5.0) 7097 /// 7098 /// typedef struct __NSConstantString_tag { 7099 /// uintptr_t _cfisa; 7100 /// uintptr_t _swift_rc; 7101 /// _Atomic(uint64_t) _cfinfoa; 7102 /// const char *_ptr; 7103 /// uintptr_t _length; 7104 /// } __NSConstantString; 7105 7106 const auto CFRuntime = getLangOpts().CFRuntime; 7107 if (static_cast<unsigned>(CFRuntime) < 7108 static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift)) { 7109 Fields[Count++] = { getPointerType(IntTy.withConst()), "isa" }; 7110 Fields[Count++] = { IntTy, "flags" }; 7111 Fields[Count++] = { getPointerType(CharTy.withConst()), "str" }; 7112 Fields[Count++] = { LongTy, "length" }; 7113 } else { 7114 Fields[Count++] = { getUIntPtrType(), "_cfisa" }; 7115 Fields[Count++] = { getUIntPtrType(), "_swift_rc" }; 7116 Fields[Count++] = { getFromTargetType(Target->getUInt64Type()), "_swift_rc" }; 7117 Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" }; 7118 if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 || 7119 CFRuntime == LangOptions::CoreFoundationABI::Swift4_2) 7120 Fields[Count++] = { IntTy, "_ptr" }; 7121 else 7122 Fields[Count++] = { getUIntPtrType(), "_ptr" }; 7123 } 7124 7125 // Create fields 7126 for (unsigned i = 0; i < Count; ++i) { 7127 FieldDecl *Field = 7128 FieldDecl::Create(*this, CFConstantStringTagDecl, SourceLocation(), 7129 SourceLocation(), &Idents.get(Fields[i].Name), 7130 Fields[i].Type, /*TInfo=*/nullptr, 7131 /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit); 7132 Field->setAccess(AS_public); 7133 CFConstantStringTagDecl->addDecl(Field); 7134 } 7135 7136 CFConstantStringTagDecl->completeDefinition(); 7137 // This type is designed to be compatible with NSConstantString, but cannot 7138 // use the same name, since NSConstantString is an interface. 7139 auto tagType = getTagDeclType(CFConstantStringTagDecl); 7140 CFConstantStringTypeDecl = 7141 buildImplicitTypedef(tagType, "__NSConstantString"); 7142 7143 return CFConstantStringTypeDecl; 7144 } 7145 7146 RecordDecl *ASTContext::getCFConstantStringTagDecl() const { 7147 if (!CFConstantStringTagDecl) 7148 getCFConstantStringDecl(); // Build the tag and the typedef. 7149 return CFConstantStringTagDecl; 7150 } 7151 7152 // getCFConstantStringType - Return the type used for constant CFStrings. 7153 QualType ASTContext::getCFConstantStringType() const { 7154 return getTypedefType(getCFConstantStringDecl()); 7155 } 7156 7157 QualType ASTContext::getObjCSuperType() const { 7158 if (ObjCSuperType.isNull()) { 7159 RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super"); 7160 getTranslationUnitDecl()->addDecl(ObjCSuperTypeDecl); 7161 ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl); 7162 } 7163 return ObjCSuperType; 7164 } 7165 7166 void ASTContext::setCFConstantStringType(QualType T) { 7167 const auto *TD = T->castAs<TypedefType>(); 7168 CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl()); 7169 const auto *TagType = 7170 CFConstantStringTypeDecl->getUnderlyingType()->castAs<RecordType>(); 7171 CFConstantStringTagDecl = TagType->getDecl(); 7172 } 7173 7174 QualType ASTContext::getBlockDescriptorType() const { 7175 if (BlockDescriptorType) 7176 return getTagDeclType(BlockDescriptorType); 7177 7178 RecordDecl *RD; 7179 // FIXME: Needs the FlagAppleBlock bit. 7180 RD = buildImplicitRecord("__block_descriptor"); 7181 RD->startDefinition(); 7182 7183 QualType FieldTypes[] = { 7184 UnsignedLongTy, 7185 UnsignedLongTy, 7186 }; 7187 7188 static const char *const FieldNames[] = { 7189 "reserved", 7190 "Size" 7191 }; 7192 7193 for (size_t i = 0; i < 2; ++i) { 7194 FieldDecl *Field = FieldDecl::Create( 7195 *this, RD, SourceLocation(), SourceLocation(), 7196 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, 7197 /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit); 7198 Field->setAccess(AS_public); 7199 RD->addDecl(Field); 7200 } 7201 7202 RD->completeDefinition(); 7203 7204 BlockDescriptorType = RD; 7205 7206 return getTagDeclType(BlockDescriptorType); 7207 } 7208 7209 QualType ASTContext::getBlockDescriptorExtendedType() const { 7210 if (BlockDescriptorExtendedType) 7211 return getTagDeclType(BlockDescriptorExtendedType); 7212 7213 RecordDecl *RD; 7214 // FIXME: Needs the FlagAppleBlock bit. 7215 RD = buildImplicitRecord("__block_descriptor_withcopydispose"); 7216 RD->startDefinition(); 7217 7218 QualType FieldTypes[] = { 7219 UnsignedLongTy, 7220 UnsignedLongTy, 7221 getPointerType(VoidPtrTy), 7222 getPointerType(VoidPtrTy) 7223 }; 7224 7225 static const char *const FieldNames[] = { 7226 "reserved", 7227 "Size", 7228 "CopyFuncPtr", 7229 "DestroyFuncPtr" 7230 }; 7231 7232 for (size_t i = 0; i < 4; ++i) { 7233 FieldDecl *Field = FieldDecl::Create( 7234 *this, RD, SourceLocation(), SourceLocation(), 7235 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, 7236 /*BitWidth=*/nullptr, 7237 /*Mutable=*/false, ICIS_NoInit); 7238 Field->setAccess(AS_public); 7239 RD->addDecl(Field); 7240 } 7241 7242 RD->completeDefinition(); 7243 7244 BlockDescriptorExtendedType = RD; 7245 return getTagDeclType(BlockDescriptorExtendedType); 7246 } 7247 7248 OpenCLTypeKind ASTContext::getOpenCLTypeKind(const Type *T) const { 7249 const auto *BT = dyn_cast<BuiltinType>(T); 7250 7251 if (!BT) { 7252 if (isa<PipeType>(T)) 7253 return OCLTK_Pipe; 7254 7255 return OCLTK_Default; 7256 } 7257 7258 switch (BT->getKind()) { 7259 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 7260 case BuiltinType::Id: \ 7261 return OCLTK_Image; 7262 #include "clang/Basic/OpenCLImageTypes.def" 7263 7264 case BuiltinType::OCLClkEvent: 7265 return OCLTK_ClkEvent; 7266 7267 case BuiltinType::OCLEvent: 7268 return OCLTK_Event; 7269 7270 case BuiltinType::OCLQueue: 7271 return OCLTK_Queue; 7272 7273 case BuiltinType::OCLReserveID: 7274 return OCLTK_ReserveID; 7275 7276 case BuiltinType::OCLSampler: 7277 return OCLTK_Sampler; 7278 7279 default: 7280 return OCLTK_Default; 7281 } 7282 } 7283 7284 LangAS ASTContext::getOpenCLTypeAddrSpace(const Type *T) const { 7285 return Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T)); 7286 } 7287 7288 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty" 7289 /// requires copy/dispose. Note that this must match the logic 7290 /// in buildByrefHelpers. 7291 bool ASTContext::BlockRequiresCopying(QualType Ty, 7292 const VarDecl *D) { 7293 if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) { 7294 const Expr *copyExpr = getBlockVarCopyInit(D).getCopyExpr(); 7295 if (!copyExpr && record->hasTrivialDestructor()) return false; 7296 7297 return true; 7298 } 7299 7300 // The block needs copy/destroy helpers if Ty is non-trivial to destructively 7301 // move or destroy. 7302 if (Ty.isNonTrivialToPrimitiveDestructiveMove() || Ty.isDestructedType()) 7303 return true; 7304 7305 if (!Ty->isObjCRetainableType()) return false; 7306 7307 Qualifiers qs = Ty.getQualifiers(); 7308 7309 // If we have lifetime, that dominates. 7310 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { 7311 switch (lifetime) { 7312 case Qualifiers::OCL_None: llvm_unreachable("impossible"); 7313 7314 // These are just bits as far as the runtime is concerned. 7315 case Qualifiers::OCL_ExplicitNone: 7316 case Qualifiers::OCL_Autoreleasing: 7317 return false; 7318 7319 // These cases should have been taken care of when checking the type's 7320 // non-triviality. 7321 case Qualifiers::OCL_Weak: 7322 case Qualifiers::OCL_Strong: 7323 llvm_unreachable("impossible"); 7324 } 7325 llvm_unreachable("fell out of lifetime switch!"); 7326 } 7327 return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) || 7328 Ty->isObjCObjectPointerType()); 7329 } 7330 7331 bool ASTContext::getByrefLifetime(QualType Ty, 7332 Qualifiers::ObjCLifetime &LifeTime, 7333 bool &HasByrefExtendedLayout) const { 7334 if (!getLangOpts().ObjC || 7335 getLangOpts().getGC() != LangOptions::NonGC) 7336 return false; 7337 7338 HasByrefExtendedLayout = false; 7339 if (Ty->isRecordType()) { 7340 HasByrefExtendedLayout = true; 7341 LifeTime = Qualifiers::OCL_None; 7342 } else if ((LifeTime = Ty.getObjCLifetime())) { 7343 // Honor the ARC qualifiers. 7344 } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) { 7345 // The MRR rule. 7346 LifeTime = Qualifiers::OCL_ExplicitNone; 7347 } else { 7348 LifeTime = Qualifiers::OCL_None; 7349 } 7350 return true; 7351 } 7352 7353 CanQualType ASTContext::getNSUIntegerType() const { 7354 assert(Target && "Expected target to be initialized"); 7355 const llvm::Triple &T = Target->getTriple(); 7356 // Windows is LLP64 rather than LP64 7357 if (T.isOSWindows() && T.isArch64Bit()) 7358 return UnsignedLongLongTy; 7359 return UnsignedLongTy; 7360 } 7361 7362 CanQualType ASTContext::getNSIntegerType() const { 7363 assert(Target && "Expected target to be initialized"); 7364 const llvm::Triple &T = Target->getTriple(); 7365 // Windows is LLP64 rather than LP64 7366 if (T.isOSWindows() && T.isArch64Bit()) 7367 return LongLongTy; 7368 return LongTy; 7369 } 7370 7371 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { 7372 if (!ObjCInstanceTypeDecl) 7373 ObjCInstanceTypeDecl = 7374 buildImplicitTypedef(getObjCIdType(), "instancetype"); 7375 return ObjCInstanceTypeDecl; 7376 } 7377 7378 // This returns true if a type has been typedefed to BOOL: 7379 // typedef <type> BOOL; 7380 static bool isTypeTypedefedAsBOOL(QualType T) { 7381 if (const auto *TT = dyn_cast<TypedefType>(T)) 7382 if (IdentifierInfo *II = TT->getDecl()->getIdentifier()) 7383 return II->isStr("BOOL"); 7384 7385 return false; 7386 } 7387 7388 /// getObjCEncodingTypeSize returns size of type for objective-c encoding 7389 /// purpose. 7390 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const { 7391 if (!type->isIncompleteArrayType() && type->isIncompleteType()) 7392 return CharUnits::Zero(); 7393 7394 CharUnits sz = getTypeSizeInChars(type); 7395 7396 // Make all integer and enum types at least as large as an int 7397 if (sz.isPositive() && type->isIntegralOrEnumerationType()) 7398 sz = std::max(sz, getTypeSizeInChars(IntTy)); 7399 // Treat arrays as pointers, since that's how they're passed in. 7400 else if (type->isArrayType()) 7401 sz = getTypeSizeInChars(VoidPtrTy); 7402 return sz; 7403 } 7404 7405 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const { 7406 return getTargetInfo().getCXXABI().isMicrosoft() && 7407 VD->isStaticDataMember() && 7408 VD->getType()->isIntegralOrEnumerationType() && 7409 !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit(); 7410 } 7411 7412 ASTContext::InlineVariableDefinitionKind 7413 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const { 7414 if (!VD->isInline()) 7415 return InlineVariableDefinitionKind::None; 7416 7417 // In almost all cases, it's a weak definition. 7418 auto *First = VD->getFirstDecl(); 7419 if (First->isInlineSpecified() || !First->isStaticDataMember()) 7420 return InlineVariableDefinitionKind::Weak; 7421 7422 // If there's a file-context declaration in this translation unit, it's a 7423 // non-discardable definition. 7424 for (auto *D : VD->redecls()) 7425 if (D->getLexicalDeclContext()->isFileContext() && 7426 !D->isInlineSpecified() && (D->isConstexpr() || First->isConstexpr())) 7427 return InlineVariableDefinitionKind::Strong; 7428 7429 // If we've not seen one yet, we don't know. 7430 return InlineVariableDefinitionKind::WeakUnknown; 7431 } 7432 7433 static std::string charUnitsToString(const CharUnits &CU) { 7434 return llvm::itostr(CU.getQuantity()); 7435 } 7436 7437 /// getObjCEncodingForBlock - Return the encoded type for this block 7438 /// declaration. 7439 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const { 7440 std::string S; 7441 7442 const BlockDecl *Decl = Expr->getBlockDecl(); 7443 QualType BlockTy = 7444 Expr->getType()->castAs<BlockPointerType>()->getPointeeType(); 7445 QualType BlockReturnTy = BlockTy->castAs<FunctionType>()->getReturnType(); 7446 // Encode result type. 7447 if (getLangOpts().EncodeExtendedBlockSig) 7448 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, BlockReturnTy, S, 7449 true /*Extended*/); 7450 else 7451 getObjCEncodingForType(BlockReturnTy, S); 7452 // Compute size of all parameters. 7453 // Start with computing size of a pointer in number of bytes. 7454 // FIXME: There might(should) be a better way of doing this computation! 7455 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy); 7456 CharUnits ParmOffset = PtrSize; 7457 for (auto PI : Decl->parameters()) { 7458 QualType PType = PI->getType(); 7459 CharUnits sz = getObjCEncodingTypeSize(PType); 7460 if (sz.isZero()) 7461 continue; 7462 assert(sz.isPositive() && "BlockExpr - Incomplete param type"); 7463 ParmOffset += sz; 7464 } 7465 // Size of the argument frame 7466 S += charUnitsToString(ParmOffset); 7467 // Block pointer and offset. 7468 S += "@?0"; 7469 7470 // Argument types. 7471 ParmOffset = PtrSize; 7472 for (auto PVDecl : Decl->parameters()) { 7473 QualType PType = PVDecl->getOriginalType(); 7474 if (const auto *AT = 7475 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7476 // Use array's original type only if it has known number of 7477 // elements. 7478 if (!isa<ConstantArrayType>(AT)) 7479 PType = PVDecl->getType(); 7480 } else if (PType->isFunctionType()) 7481 PType = PVDecl->getType(); 7482 if (getLangOpts().EncodeExtendedBlockSig) 7483 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType, 7484 S, true /*Extended*/); 7485 else 7486 getObjCEncodingForType(PType, S); 7487 S += charUnitsToString(ParmOffset); 7488 ParmOffset += getObjCEncodingTypeSize(PType); 7489 } 7490 7491 return S; 7492 } 7493 7494 std::string 7495 ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl) const { 7496 std::string S; 7497 // Encode result type. 7498 getObjCEncodingForType(Decl->getReturnType(), S); 7499 CharUnits ParmOffset; 7500 // Compute size of all parameters. 7501 for (auto PI : Decl->parameters()) { 7502 QualType PType = PI->getType(); 7503 CharUnits sz = getObjCEncodingTypeSize(PType); 7504 if (sz.isZero()) 7505 continue; 7506 7507 assert(sz.isPositive() && 7508 "getObjCEncodingForFunctionDecl - Incomplete param type"); 7509 ParmOffset += sz; 7510 } 7511 S += charUnitsToString(ParmOffset); 7512 ParmOffset = CharUnits::Zero(); 7513 7514 // Argument types. 7515 for (auto PVDecl : Decl->parameters()) { 7516 QualType PType = PVDecl->getOriginalType(); 7517 if (const auto *AT = 7518 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7519 // Use array's original type only if it has known number of 7520 // elements. 7521 if (!isa<ConstantArrayType>(AT)) 7522 PType = PVDecl->getType(); 7523 } else if (PType->isFunctionType()) 7524 PType = PVDecl->getType(); 7525 getObjCEncodingForType(PType, S); 7526 S += charUnitsToString(ParmOffset); 7527 ParmOffset += getObjCEncodingTypeSize(PType); 7528 } 7529 7530 return S; 7531 } 7532 7533 /// getObjCEncodingForMethodParameter - Return the encoded type for a single 7534 /// method parameter or return type. If Extended, include class names and 7535 /// block object types. 7536 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT, 7537 QualType T, std::string& S, 7538 bool Extended) const { 7539 // Encode type qualifier, 'in', 'inout', etc. for the parameter. 7540 getObjCEncodingForTypeQualifier(QT, S); 7541 // Encode parameter type. 7542 ObjCEncOptions Options = ObjCEncOptions() 7543 .setExpandPointedToStructures() 7544 .setExpandStructures() 7545 .setIsOutermostType(); 7546 if (Extended) 7547 Options.setEncodeBlockParameters().setEncodeClassNames(); 7548 getObjCEncodingForTypeImpl(T, S, Options, /*Field=*/nullptr); 7549 } 7550 7551 /// getObjCEncodingForMethodDecl - Return the encoded type for this method 7552 /// declaration. 7553 std::string ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl, 7554 bool Extended) const { 7555 // FIXME: This is not very efficient. 7556 // Encode return type. 7557 std::string S; 7558 getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(), 7559 Decl->getReturnType(), S, Extended); 7560 // Compute size of all parameters. 7561 // Start with computing size of a pointer in number of bytes. 7562 // FIXME: There might(should) be a better way of doing this computation! 7563 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy); 7564 // The first two arguments (self and _cmd) are pointers; account for 7565 // their size. 7566 CharUnits ParmOffset = 2 * PtrSize; 7567 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(), 7568 E = Decl->sel_param_end(); PI != E; ++PI) { 7569 QualType PType = (*PI)->getType(); 7570 CharUnits sz = getObjCEncodingTypeSize(PType); 7571 if (sz.isZero()) 7572 continue; 7573 7574 assert(sz.isPositive() && 7575 "getObjCEncodingForMethodDecl - Incomplete param type"); 7576 ParmOffset += sz; 7577 } 7578 S += charUnitsToString(ParmOffset); 7579 S += "@0:"; 7580 S += charUnitsToString(PtrSize); 7581 7582 // Argument types. 7583 ParmOffset = 2 * PtrSize; 7584 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(), 7585 E = Decl->sel_param_end(); PI != E; ++PI) { 7586 const ParmVarDecl *PVDecl = *PI; 7587 QualType PType = PVDecl->getOriginalType(); 7588 if (const auto *AT = 7589 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7590 // Use array's original type only if it has known number of 7591 // elements. 7592 if (!isa<ConstantArrayType>(AT)) 7593 PType = PVDecl->getType(); 7594 } else if (PType->isFunctionType()) 7595 PType = PVDecl->getType(); 7596 getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(), 7597 PType, S, Extended); 7598 S += charUnitsToString(ParmOffset); 7599 ParmOffset += getObjCEncodingTypeSize(PType); 7600 } 7601 7602 return S; 7603 } 7604 7605 ObjCPropertyImplDecl * 7606 ASTContext::getObjCPropertyImplDeclForPropertyDecl( 7607 const ObjCPropertyDecl *PD, 7608 const Decl *Container) const { 7609 if (!Container) 7610 return nullptr; 7611 if (const auto *CID = dyn_cast<ObjCCategoryImplDecl>(Container)) { 7612 for (auto *PID : CID->property_impls()) 7613 if (PID->getPropertyDecl() == PD) 7614 return PID; 7615 } else { 7616 const auto *OID = cast<ObjCImplementationDecl>(Container); 7617 for (auto *PID : OID->property_impls()) 7618 if (PID->getPropertyDecl() == PD) 7619 return PID; 7620 } 7621 return nullptr; 7622 } 7623 7624 /// getObjCEncodingForPropertyDecl - Return the encoded type for this 7625 /// property declaration. If non-NULL, Container must be either an 7626 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be 7627 /// NULL when getting encodings for protocol properties. 7628 /// Property attributes are stored as a comma-delimited C string. The simple 7629 /// attributes readonly and bycopy are encoded as single characters. The 7630 /// parametrized attributes, getter=name, setter=name, and ivar=name, are 7631 /// encoded as single characters, followed by an identifier. Property types 7632 /// are also encoded as a parametrized attribute. The characters used to encode 7633 /// these attributes are defined by the following enumeration: 7634 /// @code 7635 /// enum PropertyAttributes { 7636 /// kPropertyReadOnly = 'R', // property is read-only. 7637 /// kPropertyBycopy = 'C', // property is a copy of the value last assigned 7638 /// kPropertyByref = '&', // property is a reference to the value last assigned 7639 /// kPropertyDynamic = 'D', // property is dynamic 7640 /// kPropertyGetter = 'G', // followed by getter selector name 7641 /// kPropertySetter = 'S', // followed by setter selector name 7642 /// kPropertyInstanceVariable = 'V' // followed by instance variable name 7643 /// kPropertyType = 'T' // followed by old-style type encoding. 7644 /// kPropertyWeak = 'W' // 'weak' property 7645 /// kPropertyStrong = 'P' // property GC'able 7646 /// kPropertyNonAtomic = 'N' // property non-atomic 7647 /// }; 7648 /// @endcode 7649 std::string 7650 ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD, 7651 const Decl *Container) const { 7652 // Collect information from the property implementation decl(s). 7653 bool Dynamic = false; 7654 ObjCPropertyImplDecl *SynthesizePID = nullptr; 7655 7656 if (ObjCPropertyImplDecl *PropertyImpDecl = 7657 getObjCPropertyImplDeclForPropertyDecl(PD, Container)) { 7658 if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) 7659 Dynamic = true; 7660 else 7661 SynthesizePID = PropertyImpDecl; 7662 } 7663 7664 // FIXME: This is not very efficient. 7665 std::string S = "T"; 7666 7667 // Encode result type. 7668 // GCC has some special rules regarding encoding of properties which 7669 // closely resembles encoding of ivars. 7670 getObjCEncodingForPropertyType(PD->getType(), S); 7671 7672 if (PD->isReadOnly()) { 7673 S += ",R"; 7674 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) 7675 S += ",C"; 7676 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) 7677 S += ",&"; 7678 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) 7679 S += ",W"; 7680 } else { 7681 switch (PD->getSetterKind()) { 7682 case ObjCPropertyDecl::Assign: break; 7683 case ObjCPropertyDecl::Copy: S += ",C"; break; 7684 case ObjCPropertyDecl::Retain: S += ",&"; break; 7685 case ObjCPropertyDecl::Weak: S += ",W"; break; 7686 } 7687 } 7688 7689 // It really isn't clear at all what this means, since properties 7690 // are "dynamic by default". 7691 if (Dynamic) 7692 S += ",D"; 7693 7694 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic) 7695 S += ",N"; 7696 7697 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { 7698 S += ",G"; 7699 S += PD->getGetterName().getAsString(); 7700 } 7701 7702 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { 7703 S += ",S"; 7704 S += PD->getSetterName().getAsString(); 7705 } 7706 7707 if (SynthesizePID) { 7708 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); 7709 S += ",V"; 7710 S += OID->getNameAsString(); 7711 } 7712 7713 // FIXME: OBJCGC: weak & strong 7714 return S; 7715 } 7716 7717 /// getLegacyIntegralTypeEncoding - 7718 /// Another legacy compatibility encoding: 32-bit longs are encoded as 7719 /// 'l' or 'L' , but not always. For typedefs, we need to use 7720 /// 'i' or 'I' instead if encoding a struct field, or a pointer! 7721 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const { 7722 if (isa<TypedefType>(PointeeTy.getTypePtr())) { 7723 if (const auto *BT = PointeeTy->getAs<BuiltinType>()) { 7724 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32) 7725 PointeeTy = UnsignedIntTy; 7726 else 7727 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32) 7728 PointeeTy = IntTy; 7729 } 7730 } 7731 } 7732 7733 void ASTContext::getObjCEncodingForType(QualType T, std::string& S, 7734 const FieldDecl *Field, 7735 QualType *NotEncodedT) const { 7736 // We follow the behavior of gcc, expanding structures which are 7737 // directly pointed to, and expanding embedded structures. Note that 7738 // these rules are sufficient to prevent recursive encoding of the 7739 // same type. 7740 getObjCEncodingForTypeImpl(T, S, 7741 ObjCEncOptions() 7742 .setExpandPointedToStructures() 7743 .setExpandStructures() 7744 .setIsOutermostType(), 7745 Field, NotEncodedT); 7746 } 7747 7748 void ASTContext::getObjCEncodingForPropertyType(QualType T, 7749 std::string& S) const { 7750 // Encode result type. 7751 // GCC has some special rules regarding encoding of properties which 7752 // closely resembles encoding of ivars. 7753 getObjCEncodingForTypeImpl(T, S, 7754 ObjCEncOptions() 7755 .setExpandPointedToStructures() 7756 .setExpandStructures() 7757 .setIsOutermostType() 7758 .setEncodingProperty(), 7759 /*Field=*/nullptr); 7760 } 7761 7762 static char getObjCEncodingForPrimitiveType(const ASTContext *C, 7763 const BuiltinType *BT) { 7764 BuiltinType::Kind kind = BT->getKind(); 7765 switch (kind) { 7766 case BuiltinType::Void: return 'v'; 7767 case BuiltinType::Bool: return 'B'; 7768 case BuiltinType::Char8: 7769 case BuiltinType::Char_U: 7770 case BuiltinType::UChar: return 'C'; 7771 case BuiltinType::Char16: 7772 case BuiltinType::UShort: return 'S'; 7773 case BuiltinType::Char32: 7774 case BuiltinType::UInt: return 'I'; 7775 case BuiltinType::ULong: 7776 return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q'; 7777 case BuiltinType::UInt128: return 'T'; 7778 case BuiltinType::ULongLong: return 'Q'; 7779 case BuiltinType::Char_S: 7780 case BuiltinType::SChar: return 'c'; 7781 case BuiltinType::Short: return 's'; 7782 case BuiltinType::WChar_S: 7783 case BuiltinType::WChar_U: 7784 case BuiltinType::Int: return 'i'; 7785 case BuiltinType::Long: 7786 return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q'; 7787 case BuiltinType::LongLong: return 'q'; 7788 case BuiltinType::Int128: return 't'; 7789 case BuiltinType::Float: return 'f'; 7790 case BuiltinType::Double: return 'd'; 7791 case BuiltinType::LongDouble: return 'D'; 7792 case BuiltinType::NullPtr: return '*'; // like char* 7793 7794 case BuiltinType::BFloat16: 7795 case BuiltinType::Float16: 7796 case BuiltinType::Float128: 7797 case BuiltinType::Ibm128: 7798 case BuiltinType::Half: 7799 case BuiltinType::ShortAccum: 7800 case BuiltinType::Accum: 7801 case BuiltinType::LongAccum: 7802 case BuiltinType::UShortAccum: 7803 case BuiltinType::UAccum: 7804 case BuiltinType::ULongAccum: 7805 case BuiltinType::ShortFract: 7806 case BuiltinType::Fract: 7807 case BuiltinType::LongFract: 7808 case BuiltinType::UShortFract: 7809 case BuiltinType::UFract: 7810 case BuiltinType::ULongFract: 7811 case BuiltinType::SatShortAccum: 7812 case BuiltinType::SatAccum: 7813 case BuiltinType::SatLongAccum: 7814 case BuiltinType::SatUShortAccum: 7815 case BuiltinType::SatUAccum: 7816 case BuiltinType::SatULongAccum: 7817 case BuiltinType::SatShortFract: 7818 case BuiltinType::SatFract: 7819 case BuiltinType::SatLongFract: 7820 case BuiltinType::SatUShortFract: 7821 case BuiltinType::SatUFract: 7822 case BuiltinType::SatULongFract: 7823 // FIXME: potentially need @encodes for these! 7824 return ' '; 7825 7826 #define SVE_TYPE(Name, Id, SingletonId) \ 7827 case BuiltinType::Id: 7828 #include "clang/Basic/AArch64SVEACLETypes.def" 7829 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 7830 #include "clang/Basic/RISCVVTypes.def" 7831 { 7832 DiagnosticsEngine &Diags = C->getDiagnostics(); 7833 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 7834 "cannot yet @encode type %0"); 7835 Diags.Report(DiagID) << BT->getName(C->getPrintingPolicy()); 7836 return ' '; 7837 } 7838 7839 case BuiltinType::ObjCId: 7840 case BuiltinType::ObjCClass: 7841 case BuiltinType::ObjCSel: 7842 llvm_unreachable("@encoding ObjC primitive type"); 7843 7844 // OpenCL and placeholder types don't need @encodings. 7845 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 7846 case BuiltinType::Id: 7847 #include "clang/Basic/OpenCLImageTypes.def" 7848 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 7849 case BuiltinType::Id: 7850 #include "clang/Basic/OpenCLExtensionTypes.def" 7851 case BuiltinType::OCLEvent: 7852 case BuiltinType::OCLClkEvent: 7853 case BuiltinType::OCLQueue: 7854 case BuiltinType::OCLReserveID: 7855 case BuiltinType::OCLSampler: 7856 case BuiltinType::Dependent: 7857 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 7858 case BuiltinType::Id: 7859 #include "clang/Basic/PPCTypes.def" 7860 #define BUILTIN_TYPE(KIND, ID) 7861 #define PLACEHOLDER_TYPE(KIND, ID) \ 7862 case BuiltinType::KIND: 7863 #include "clang/AST/BuiltinTypes.def" 7864 llvm_unreachable("invalid builtin type for @encode"); 7865 } 7866 llvm_unreachable("invalid BuiltinType::Kind value"); 7867 } 7868 7869 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) { 7870 EnumDecl *Enum = ET->getDecl(); 7871 7872 // The encoding of an non-fixed enum type is always 'i', regardless of size. 7873 if (!Enum->isFixed()) 7874 return 'i'; 7875 7876 // The encoding of a fixed enum type matches its fixed underlying type. 7877 const auto *BT = Enum->getIntegerType()->castAs<BuiltinType>(); 7878 return getObjCEncodingForPrimitiveType(C, BT); 7879 } 7880 7881 static void EncodeBitField(const ASTContext *Ctx, std::string& S, 7882 QualType T, const FieldDecl *FD) { 7883 assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl"); 7884 S += 'b'; 7885 // The NeXT runtime encodes bit fields as b followed by the number of bits. 7886 // The GNU runtime requires more information; bitfields are encoded as b, 7887 // then the offset (in bits) of the first element, then the type of the 7888 // bitfield, then the size in bits. For example, in this structure: 7889 // 7890 // struct 7891 // { 7892 // int integer; 7893 // int flags:2; 7894 // }; 7895 // On a 32-bit system, the encoding for flags would be b2 for the NeXT 7896 // runtime, but b32i2 for the GNU runtime. The reason for this extra 7897 // information is not especially sensible, but we're stuck with it for 7898 // compatibility with GCC, although providing it breaks anything that 7899 // actually uses runtime introspection and wants to work on both runtimes... 7900 if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) { 7901 uint64_t Offset; 7902 7903 if (const auto *IVD = dyn_cast<ObjCIvarDecl>(FD)) { 7904 Offset = Ctx->lookupFieldBitOffset(IVD->getContainingInterface(), nullptr, 7905 IVD); 7906 } else { 7907 const RecordDecl *RD = FD->getParent(); 7908 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); 7909 Offset = RL.getFieldOffset(FD->getFieldIndex()); 7910 } 7911 7912 S += llvm::utostr(Offset); 7913 7914 if (const auto *ET = T->getAs<EnumType>()) 7915 S += ObjCEncodingForEnumType(Ctx, ET); 7916 else { 7917 const auto *BT = T->castAs<BuiltinType>(); 7918 S += getObjCEncodingForPrimitiveType(Ctx, BT); 7919 } 7920 } 7921 S += llvm::utostr(FD->getBitWidthValue(*Ctx)); 7922 } 7923 7924 // Helper function for determining whether the encoded type string would include 7925 // a template specialization type. 7926 static bool hasTemplateSpecializationInEncodedString(const Type *T, 7927 bool VisitBasesAndFields) { 7928 T = T->getBaseElementTypeUnsafe(); 7929 7930 if (auto *PT = T->getAs<PointerType>()) 7931 return hasTemplateSpecializationInEncodedString( 7932 PT->getPointeeType().getTypePtr(), false); 7933 7934 auto *CXXRD = T->getAsCXXRecordDecl(); 7935 7936 if (!CXXRD) 7937 return false; 7938 7939 if (isa<ClassTemplateSpecializationDecl>(CXXRD)) 7940 return true; 7941 7942 if (!CXXRD->hasDefinition() || !VisitBasesAndFields) 7943 return false; 7944 7945 for (auto B : CXXRD->bases()) 7946 if (hasTemplateSpecializationInEncodedString(B.getType().getTypePtr(), 7947 true)) 7948 return true; 7949 7950 for (auto *FD : CXXRD->fields()) 7951 if (hasTemplateSpecializationInEncodedString(FD->getType().getTypePtr(), 7952 true)) 7953 return true; 7954 7955 return false; 7956 } 7957 7958 // FIXME: Use SmallString for accumulating string. 7959 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string &S, 7960 const ObjCEncOptions Options, 7961 const FieldDecl *FD, 7962 QualType *NotEncodedT) const { 7963 CanQualType CT = getCanonicalType(T); 7964 switch (CT->getTypeClass()) { 7965 case Type::Builtin: 7966 case Type::Enum: 7967 if (FD && FD->isBitField()) 7968 return EncodeBitField(this, S, T, FD); 7969 if (const auto *BT = dyn_cast<BuiltinType>(CT)) 7970 S += getObjCEncodingForPrimitiveType(this, BT); 7971 else 7972 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT)); 7973 return; 7974 7975 case Type::Complex: 7976 S += 'j'; 7977 getObjCEncodingForTypeImpl(T->castAs<ComplexType>()->getElementType(), S, 7978 ObjCEncOptions(), 7979 /*Field=*/nullptr); 7980 return; 7981 7982 case Type::Atomic: 7983 S += 'A'; 7984 getObjCEncodingForTypeImpl(T->castAs<AtomicType>()->getValueType(), S, 7985 ObjCEncOptions(), 7986 /*Field=*/nullptr); 7987 return; 7988 7989 // encoding for pointer or reference types. 7990 case Type::Pointer: 7991 case Type::LValueReference: 7992 case Type::RValueReference: { 7993 QualType PointeeTy; 7994 if (isa<PointerType>(CT)) { 7995 const auto *PT = T->castAs<PointerType>(); 7996 if (PT->isObjCSelType()) { 7997 S += ':'; 7998 return; 7999 } 8000 PointeeTy = PT->getPointeeType(); 8001 } else { 8002 PointeeTy = T->castAs<ReferenceType>()->getPointeeType(); 8003 } 8004 8005 bool isReadOnly = false; 8006 // For historical/compatibility reasons, the read-only qualifier of the 8007 // pointee gets emitted _before_ the '^'. The read-only qualifier of 8008 // the pointer itself gets ignored, _unless_ we are looking at a typedef! 8009 // Also, do not emit the 'r' for anything but the outermost type! 8010 if (isa<TypedefType>(T.getTypePtr())) { 8011 if (Options.IsOutermostType() && T.isConstQualified()) { 8012 isReadOnly = true; 8013 S += 'r'; 8014 } 8015 } else if (Options.IsOutermostType()) { 8016 QualType P = PointeeTy; 8017 while (auto PT = P->getAs<PointerType>()) 8018 P = PT->getPointeeType(); 8019 if (P.isConstQualified()) { 8020 isReadOnly = true; 8021 S += 'r'; 8022 } 8023 } 8024 if (isReadOnly) { 8025 // Another legacy compatibility encoding. Some ObjC qualifier and type 8026 // combinations need to be rearranged. 8027 // Rewrite "in const" from "nr" to "rn" 8028 if (StringRef(S).endswith("nr")) 8029 S.replace(S.end()-2, S.end(), "rn"); 8030 } 8031 8032 if (PointeeTy->isCharType()) { 8033 // char pointer types should be encoded as '*' unless it is a 8034 // type that has been typedef'd to 'BOOL'. 8035 if (!isTypeTypedefedAsBOOL(PointeeTy)) { 8036 S += '*'; 8037 return; 8038 } 8039 } else if (const auto *RTy = PointeeTy->getAs<RecordType>()) { 8040 // GCC binary compat: Need to convert "struct objc_class *" to "#". 8041 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) { 8042 S += '#'; 8043 return; 8044 } 8045 // GCC binary compat: Need to convert "struct objc_object *" to "@". 8046 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) { 8047 S += '@'; 8048 return; 8049 } 8050 // If the encoded string for the class includes template names, just emit 8051 // "^v" for pointers to the class. 8052 if (getLangOpts().CPlusPlus && 8053 (!getLangOpts().EncodeCXXClassTemplateSpec && 8054 hasTemplateSpecializationInEncodedString( 8055 RTy, Options.ExpandPointedToStructures()))) { 8056 S += "^v"; 8057 return; 8058 } 8059 // fall through... 8060 } 8061 S += '^'; 8062 getLegacyIntegralTypeEncoding(PointeeTy); 8063 8064 ObjCEncOptions NewOptions; 8065 if (Options.ExpandPointedToStructures()) 8066 NewOptions.setExpandStructures(); 8067 getObjCEncodingForTypeImpl(PointeeTy, S, NewOptions, 8068 /*Field=*/nullptr, NotEncodedT); 8069 return; 8070 } 8071 8072 case Type::ConstantArray: 8073 case Type::IncompleteArray: 8074 case Type::VariableArray: { 8075 const auto *AT = cast<ArrayType>(CT); 8076 8077 if (isa<IncompleteArrayType>(AT) && !Options.IsStructField()) { 8078 // Incomplete arrays are encoded as a pointer to the array element. 8079 S += '^'; 8080 8081 getObjCEncodingForTypeImpl( 8082 AT->getElementType(), S, 8083 Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD); 8084 } else { 8085 S += '['; 8086 8087 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) 8088 S += llvm::utostr(CAT->getSize().getZExtValue()); 8089 else { 8090 //Variable length arrays are encoded as a regular array with 0 elements. 8091 assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) && 8092 "Unknown array type!"); 8093 S += '0'; 8094 } 8095 8096 getObjCEncodingForTypeImpl( 8097 AT->getElementType(), S, 8098 Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD, 8099 NotEncodedT); 8100 S += ']'; 8101 } 8102 return; 8103 } 8104 8105 case Type::FunctionNoProto: 8106 case Type::FunctionProto: 8107 S += '?'; 8108 return; 8109 8110 case Type::Record: { 8111 RecordDecl *RDecl = cast<RecordType>(CT)->getDecl(); 8112 S += RDecl->isUnion() ? '(' : '{'; 8113 // Anonymous structures print as '?' 8114 if (const IdentifierInfo *II = RDecl->getIdentifier()) { 8115 S += II->getName(); 8116 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) { 8117 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs(); 8118 llvm::raw_string_ostream OS(S); 8119 printTemplateArgumentList(OS, TemplateArgs.asArray(), 8120 getPrintingPolicy()); 8121 } 8122 } else { 8123 S += '?'; 8124 } 8125 if (Options.ExpandStructures()) { 8126 S += '='; 8127 if (!RDecl->isUnion()) { 8128 getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT); 8129 } else { 8130 for (const auto *Field : RDecl->fields()) { 8131 if (FD) { 8132 S += '"'; 8133 S += Field->getNameAsString(); 8134 S += '"'; 8135 } 8136 8137 // Special case bit-fields. 8138 if (Field->isBitField()) { 8139 getObjCEncodingForTypeImpl(Field->getType(), S, 8140 ObjCEncOptions().setExpandStructures(), 8141 Field); 8142 } else { 8143 QualType qt = Field->getType(); 8144 getLegacyIntegralTypeEncoding(qt); 8145 getObjCEncodingForTypeImpl( 8146 qt, S, 8147 ObjCEncOptions().setExpandStructures().setIsStructField(), FD, 8148 NotEncodedT); 8149 } 8150 } 8151 } 8152 } 8153 S += RDecl->isUnion() ? ')' : '}'; 8154 return; 8155 } 8156 8157 case Type::BlockPointer: { 8158 const auto *BT = T->castAs<BlockPointerType>(); 8159 S += "@?"; // Unlike a pointer-to-function, which is "^?". 8160 if (Options.EncodeBlockParameters()) { 8161 const auto *FT = BT->getPointeeType()->castAs<FunctionType>(); 8162 8163 S += '<'; 8164 // Block return type 8165 getObjCEncodingForTypeImpl(FT->getReturnType(), S, 8166 Options.forComponentType(), FD, NotEncodedT); 8167 // Block self 8168 S += "@?"; 8169 // Block parameters 8170 if (const auto *FPT = dyn_cast<FunctionProtoType>(FT)) { 8171 for (const auto &I : FPT->param_types()) 8172 getObjCEncodingForTypeImpl(I, S, Options.forComponentType(), FD, 8173 NotEncodedT); 8174 } 8175 S += '>'; 8176 } 8177 return; 8178 } 8179 8180 case Type::ObjCObject: { 8181 // hack to match legacy encoding of *id and *Class 8182 QualType Ty = getObjCObjectPointerType(CT); 8183 if (Ty->isObjCIdType()) { 8184 S += "{objc_object=}"; 8185 return; 8186 } 8187 else if (Ty->isObjCClassType()) { 8188 S += "{objc_class=}"; 8189 return; 8190 } 8191 // TODO: Double check to make sure this intentionally falls through. 8192 LLVM_FALLTHROUGH; 8193 } 8194 8195 case Type::ObjCInterface: { 8196 // Ignore protocol qualifiers when mangling at this level. 8197 // @encode(class_name) 8198 ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface(); 8199 S += '{'; 8200 S += OI->getObjCRuntimeNameAsString(); 8201 if (Options.ExpandStructures()) { 8202 S += '='; 8203 SmallVector<const ObjCIvarDecl*, 32> Ivars; 8204 DeepCollectObjCIvars(OI, true, Ivars); 8205 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) { 8206 const FieldDecl *Field = Ivars[i]; 8207 if (Field->isBitField()) 8208 getObjCEncodingForTypeImpl(Field->getType(), S, 8209 ObjCEncOptions().setExpandStructures(), 8210 Field); 8211 else 8212 getObjCEncodingForTypeImpl(Field->getType(), S, 8213 ObjCEncOptions().setExpandStructures(), FD, 8214 NotEncodedT); 8215 } 8216 } 8217 S += '}'; 8218 return; 8219 } 8220 8221 case Type::ObjCObjectPointer: { 8222 const auto *OPT = T->castAs<ObjCObjectPointerType>(); 8223 if (OPT->isObjCIdType()) { 8224 S += '@'; 8225 return; 8226 } 8227 8228 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) { 8229 // FIXME: Consider if we need to output qualifiers for 'Class<p>'. 8230 // Since this is a binary compatibility issue, need to consult with 8231 // runtime folks. Fortunately, this is a *very* obscure construct. 8232 S += '#'; 8233 return; 8234 } 8235 8236 if (OPT->isObjCQualifiedIdType()) { 8237 getObjCEncodingForTypeImpl( 8238 getObjCIdType(), S, 8239 Options.keepingOnly(ObjCEncOptions() 8240 .setExpandPointedToStructures() 8241 .setExpandStructures()), 8242 FD); 8243 if (FD || Options.EncodingProperty() || Options.EncodeClassNames()) { 8244 // Note that we do extended encoding of protocol qualifier list 8245 // Only when doing ivar or property encoding. 8246 S += '"'; 8247 for (const auto *I : OPT->quals()) { 8248 S += '<'; 8249 S += I->getObjCRuntimeNameAsString(); 8250 S += '>'; 8251 } 8252 S += '"'; 8253 } 8254 return; 8255 } 8256 8257 S += '@'; 8258 if (OPT->getInterfaceDecl() && 8259 (FD || Options.EncodingProperty() || Options.EncodeClassNames())) { 8260 S += '"'; 8261 S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString(); 8262 for (const auto *I : OPT->quals()) { 8263 S += '<'; 8264 S += I->getObjCRuntimeNameAsString(); 8265 S += '>'; 8266 } 8267 S += '"'; 8268 } 8269 return; 8270 } 8271 8272 // gcc just blithely ignores member pointers. 8273 // FIXME: we should do better than that. 'M' is available. 8274 case Type::MemberPointer: 8275 // This matches gcc's encoding, even though technically it is insufficient. 8276 //FIXME. We should do a better job than gcc. 8277 case Type::Vector: 8278 case Type::ExtVector: 8279 // Until we have a coherent encoding of these three types, issue warning. 8280 if (NotEncodedT) 8281 *NotEncodedT = T; 8282 return; 8283 8284 case Type::ConstantMatrix: 8285 if (NotEncodedT) 8286 *NotEncodedT = T; 8287 return; 8288 8289 // We could see an undeduced auto type here during error recovery. 8290 // Just ignore it. 8291 case Type::Auto: 8292 case Type::DeducedTemplateSpecialization: 8293 return; 8294 8295 case Type::Pipe: 8296 case Type::BitInt: 8297 #define ABSTRACT_TYPE(KIND, BASE) 8298 #define TYPE(KIND, BASE) 8299 #define DEPENDENT_TYPE(KIND, BASE) \ 8300 case Type::KIND: 8301 #define NON_CANONICAL_TYPE(KIND, BASE) \ 8302 case Type::KIND: 8303 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \ 8304 case Type::KIND: 8305 #include "clang/AST/TypeNodes.inc" 8306 llvm_unreachable("@encode for dependent type!"); 8307 } 8308 llvm_unreachable("bad type kind!"); 8309 } 8310 8311 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl, 8312 std::string &S, 8313 const FieldDecl *FD, 8314 bool includeVBases, 8315 QualType *NotEncodedT) const { 8316 assert(RDecl && "Expected non-null RecordDecl"); 8317 assert(!RDecl->isUnion() && "Should not be called for unions"); 8318 if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl()) 8319 return; 8320 8321 const auto *CXXRec = dyn_cast<CXXRecordDecl>(RDecl); 8322 std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets; 8323 const ASTRecordLayout &layout = getASTRecordLayout(RDecl); 8324 8325 if (CXXRec) { 8326 for (const auto &BI : CXXRec->bases()) { 8327 if (!BI.isVirtual()) { 8328 CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl(); 8329 if (base->isEmpty()) 8330 continue; 8331 uint64_t offs = toBits(layout.getBaseClassOffset(base)); 8332 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8333 std::make_pair(offs, base)); 8334 } 8335 } 8336 } 8337 8338 unsigned i = 0; 8339 for (FieldDecl *Field : RDecl->fields()) { 8340 if (!Field->isZeroLengthBitField(*this) && Field->isZeroSize(*this)) 8341 continue; 8342 uint64_t offs = layout.getFieldOffset(i); 8343 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8344 std::make_pair(offs, Field)); 8345 ++i; 8346 } 8347 8348 if (CXXRec && includeVBases) { 8349 for (const auto &BI : CXXRec->vbases()) { 8350 CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl(); 8351 if (base->isEmpty()) 8352 continue; 8353 uint64_t offs = toBits(layout.getVBaseClassOffset(base)); 8354 if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) && 8355 FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end()) 8356 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(), 8357 std::make_pair(offs, base)); 8358 } 8359 } 8360 8361 CharUnits size; 8362 if (CXXRec) { 8363 size = includeVBases ? layout.getSize() : layout.getNonVirtualSize(); 8364 } else { 8365 size = layout.getSize(); 8366 } 8367 8368 #ifndef NDEBUG 8369 uint64_t CurOffs = 0; 8370 #endif 8371 std::multimap<uint64_t, NamedDecl *>::iterator 8372 CurLayObj = FieldOrBaseOffsets.begin(); 8373 8374 if (CXXRec && CXXRec->isDynamicClass() && 8375 (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) { 8376 if (FD) { 8377 S += "\"_vptr$"; 8378 std::string recname = CXXRec->getNameAsString(); 8379 if (recname.empty()) recname = "?"; 8380 S += recname; 8381 S += '"'; 8382 } 8383 S += "^^?"; 8384 #ifndef NDEBUG 8385 CurOffs += getTypeSize(VoidPtrTy); 8386 #endif 8387 } 8388 8389 if (!RDecl->hasFlexibleArrayMember()) { 8390 // Mark the end of the structure. 8391 uint64_t offs = toBits(size); 8392 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8393 std::make_pair(offs, nullptr)); 8394 } 8395 8396 for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) { 8397 #ifndef NDEBUG 8398 assert(CurOffs <= CurLayObj->first); 8399 if (CurOffs < CurLayObj->first) { 8400 uint64_t padding = CurLayObj->first - CurOffs; 8401 // FIXME: There doesn't seem to be a way to indicate in the encoding that 8402 // packing/alignment of members is different that normal, in which case 8403 // the encoding will be out-of-sync with the real layout. 8404 // If the runtime switches to just consider the size of types without 8405 // taking into account alignment, we could make padding explicit in the 8406 // encoding (e.g. using arrays of chars). The encoding strings would be 8407 // longer then though. 8408 CurOffs += padding; 8409 } 8410 #endif 8411 8412 NamedDecl *dcl = CurLayObj->second; 8413 if (!dcl) 8414 break; // reached end of structure. 8415 8416 if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) { 8417 // We expand the bases without their virtual bases since those are going 8418 // in the initial structure. Note that this differs from gcc which 8419 // expands virtual bases each time one is encountered in the hierarchy, 8420 // making the encoding type bigger than it really is. 8421 getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false, 8422 NotEncodedT); 8423 assert(!base->isEmpty()); 8424 #ifndef NDEBUG 8425 CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize()); 8426 #endif 8427 } else { 8428 const auto *field = cast<FieldDecl>(dcl); 8429 if (FD) { 8430 S += '"'; 8431 S += field->getNameAsString(); 8432 S += '"'; 8433 } 8434 8435 if (field->isBitField()) { 8436 EncodeBitField(this, S, field->getType(), field); 8437 #ifndef NDEBUG 8438 CurOffs += field->getBitWidthValue(*this); 8439 #endif 8440 } else { 8441 QualType qt = field->getType(); 8442 getLegacyIntegralTypeEncoding(qt); 8443 getObjCEncodingForTypeImpl( 8444 qt, S, ObjCEncOptions().setExpandStructures().setIsStructField(), 8445 FD, NotEncodedT); 8446 #ifndef NDEBUG 8447 CurOffs += getTypeSize(field->getType()); 8448 #endif 8449 } 8450 } 8451 } 8452 } 8453 8454 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, 8455 std::string& S) const { 8456 if (QT & Decl::OBJC_TQ_In) 8457 S += 'n'; 8458 if (QT & Decl::OBJC_TQ_Inout) 8459 S += 'N'; 8460 if (QT & Decl::OBJC_TQ_Out) 8461 S += 'o'; 8462 if (QT & Decl::OBJC_TQ_Bycopy) 8463 S += 'O'; 8464 if (QT & Decl::OBJC_TQ_Byref) 8465 S += 'R'; 8466 if (QT & Decl::OBJC_TQ_Oneway) 8467 S += 'V'; 8468 } 8469 8470 TypedefDecl *ASTContext::getObjCIdDecl() const { 8471 if (!ObjCIdDecl) { 8472 QualType T = getObjCObjectType(ObjCBuiltinIdTy, {}, {}); 8473 T = getObjCObjectPointerType(T); 8474 ObjCIdDecl = buildImplicitTypedef(T, "id"); 8475 } 8476 return ObjCIdDecl; 8477 } 8478 8479 TypedefDecl *ASTContext::getObjCSelDecl() const { 8480 if (!ObjCSelDecl) { 8481 QualType T = getPointerType(ObjCBuiltinSelTy); 8482 ObjCSelDecl = buildImplicitTypedef(T, "SEL"); 8483 } 8484 return ObjCSelDecl; 8485 } 8486 8487 TypedefDecl *ASTContext::getObjCClassDecl() const { 8488 if (!ObjCClassDecl) { 8489 QualType T = getObjCObjectType(ObjCBuiltinClassTy, {}, {}); 8490 T = getObjCObjectPointerType(T); 8491 ObjCClassDecl = buildImplicitTypedef(T, "Class"); 8492 } 8493 return ObjCClassDecl; 8494 } 8495 8496 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const { 8497 if (!ObjCProtocolClassDecl) { 8498 ObjCProtocolClassDecl 8499 = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(), 8500 SourceLocation(), 8501 &Idents.get("Protocol"), 8502 /*typeParamList=*/nullptr, 8503 /*PrevDecl=*/nullptr, 8504 SourceLocation(), true); 8505 } 8506 8507 return ObjCProtocolClassDecl; 8508 } 8509 8510 //===----------------------------------------------------------------------===// 8511 // __builtin_va_list Construction Functions 8512 //===----------------------------------------------------------------------===// 8513 8514 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context, 8515 StringRef Name) { 8516 // typedef char* __builtin[_ms]_va_list; 8517 QualType T = Context->getPointerType(Context->CharTy); 8518 return Context->buildImplicitTypedef(T, Name); 8519 } 8520 8521 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) { 8522 return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list"); 8523 } 8524 8525 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) { 8526 return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list"); 8527 } 8528 8529 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) { 8530 // typedef void* __builtin_va_list; 8531 QualType T = Context->getPointerType(Context->VoidTy); 8532 return Context->buildImplicitTypedef(T, "__builtin_va_list"); 8533 } 8534 8535 static TypedefDecl * 8536 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) { 8537 RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list"); 8538 // namespace std { struct __va_list { 8539 // Note that we create the namespace even in C. This is intentional so that 8540 // the type is consistent between C and C++, which is important in cases where 8541 // the types need to match between translation units (e.g. with 8542 // -fsanitize=cfi-icall). Ideally we wouldn't have created this namespace at 8543 // all, but it's now part of the ABI (e.g. in mangled names), so we can't 8544 // change it. 8545 auto *NS = NamespaceDecl::Create( 8546 const_cast<ASTContext &>(*Context), Context->getTranslationUnitDecl(), 8547 /*Inline*/ false, SourceLocation(), SourceLocation(), 8548 &Context->Idents.get("std"), 8549 /*PrevDecl*/ nullptr); 8550 NS->setImplicit(); 8551 VaListTagDecl->setDeclContext(NS); 8552 8553 VaListTagDecl->startDefinition(); 8554 8555 const size_t NumFields = 5; 8556 QualType FieldTypes[NumFields]; 8557 const char *FieldNames[NumFields]; 8558 8559 // void *__stack; 8560 FieldTypes[0] = Context->getPointerType(Context->VoidTy); 8561 FieldNames[0] = "__stack"; 8562 8563 // void *__gr_top; 8564 FieldTypes[1] = Context->getPointerType(Context->VoidTy); 8565 FieldNames[1] = "__gr_top"; 8566 8567 // void *__vr_top; 8568 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8569 FieldNames[2] = "__vr_top"; 8570 8571 // int __gr_offs; 8572 FieldTypes[3] = Context->IntTy; 8573 FieldNames[3] = "__gr_offs"; 8574 8575 // int __vr_offs; 8576 FieldTypes[4] = Context->IntTy; 8577 FieldNames[4] = "__vr_offs"; 8578 8579 // Create fields 8580 for (unsigned i = 0; i < NumFields; ++i) { 8581 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8582 VaListTagDecl, 8583 SourceLocation(), 8584 SourceLocation(), 8585 &Context->Idents.get(FieldNames[i]), 8586 FieldTypes[i], /*TInfo=*/nullptr, 8587 /*BitWidth=*/nullptr, 8588 /*Mutable=*/false, 8589 ICIS_NoInit); 8590 Field->setAccess(AS_public); 8591 VaListTagDecl->addDecl(Field); 8592 } 8593 VaListTagDecl->completeDefinition(); 8594 Context->VaListTagDecl = VaListTagDecl; 8595 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8596 8597 // } __builtin_va_list; 8598 return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list"); 8599 } 8600 8601 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) { 8602 // typedef struct __va_list_tag { 8603 RecordDecl *VaListTagDecl; 8604 8605 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8606 VaListTagDecl->startDefinition(); 8607 8608 const size_t NumFields = 5; 8609 QualType FieldTypes[NumFields]; 8610 const char *FieldNames[NumFields]; 8611 8612 // unsigned char gpr; 8613 FieldTypes[0] = Context->UnsignedCharTy; 8614 FieldNames[0] = "gpr"; 8615 8616 // unsigned char fpr; 8617 FieldTypes[1] = Context->UnsignedCharTy; 8618 FieldNames[1] = "fpr"; 8619 8620 // unsigned short reserved; 8621 FieldTypes[2] = Context->UnsignedShortTy; 8622 FieldNames[2] = "reserved"; 8623 8624 // void* overflow_arg_area; 8625 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8626 FieldNames[3] = "overflow_arg_area"; 8627 8628 // void* reg_save_area; 8629 FieldTypes[4] = Context->getPointerType(Context->VoidTy); 8630 FieldNames[4] = "reg_save_area"; 8631 8632 // Create fields 8633 for (unsigned i = 0; i < NumFields; ++i) { 8634 FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl, 8635 SourceLocation(), 8636 SourceLocation(), 8637 &Context->Idents.get(FieldNames[i]), 8638 FieldTypes[i], /*TInfo=*/nullptr, 8639 /*BitWidth=*/nullptr, 8640 /*Mutable=*/false, 8641 ICIS_NoInit); 8642 Field->setAccess(AS_public); 8643 VaListTagDecl->addDecl(Field); 8644 } 8645 VaListTagDecl->completeDefinition(); 8646 Context->VaListTagDecl = VaListTagDecl; 8647 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8648 8649 // } __va_list_tag; 8650 TypedefDecl *VaListTagTypedefDecl = 8651 Context->buildImplicitTypedef(VaListTagType, "__va_list_tag"); 8652 8653 QualType VaListTagTypedefType = 8654 Context->getTypedefType(VaListTagTypedefDecl); 8655 8656 // typedef __va_list_tag __builtin_va_list[1]; 8657 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8658 QualType VaListTagArrayType 8659 = Context->getConstantArrayType(VaListTagTypedefType, 8660 Size, nullptr, ArrayType::Normal, 0); 8661 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8662 } 8663 8664 static TypedefDecl * 8665 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) { 8666 // struct __va_list_tag { 8667 RecordDecl *VaListTagDecl; 8668 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8669 VaListTagDecl->startDefinition(); 8670 8671 const size_t NumFields = 4; 8672 QualType FieldTypes[NumFields]; 8673 const char *FieldNames[NumFields]; 8674 8675 // unsigned gp_offset; 8676 FieldTypes[0] = Context->UnsignedIntTy; 8677 FieldNames[0] = "gp_offset"; 8678 8679 // unsigned fp_offset; 8680 FieldTypes[1] = Context->UnsignedIntTy; 8681 FieldNames[1] = "fp_offset"; 8682 8683 // void* overflow_arg_area; 8684 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8685 FieldNames[2] = "overflow_arg_area"; 8686 8687 // void* reg_save_area; 8688 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8689 FieldNames[3] = "reg_save_area"; 8690 8691 // Create fields 8692 for (unsigned i = 0; i < NumFields; ++i) { 8693 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8694 VaListTagDecl, 8695 SourceLocation(), 8696 SourceLocation(), 8697 &Context->Idents.get(FieldNames[i]), 8698 FieldTypes[i], /*TInfo=*/nullptr, 8699 /*BitWidth=*/nullptr, 8700 /*Mutable=*/false, 8701 ICIS_NoInit); 8702 Field->setAccess(AS_public); 8703 VaListTagDecl->addDecl(Field); 8704 } 8705 VaListTagDecl->completeDefinition(); 8706 Context->VaListTagDecl = VaListTagDecl; 8707 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8708 8709 // }; 8710 8711 // typedef struct __va_list_tag __builtin_va_list[1]; 8712 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8713 QualType VaListTagArrayType = Context->getConstantArrayType( 8714 VaListTagType, Size, nullptr, ArrayType::Normal, 0); 8715 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8716 } 8717 8718 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) { 8719 // typedef int __builtin_va_list[4]; 8720 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4); 8721 QualType IntArrayType = Context->getConstantArrayType( 8722 Context->IntTy, Size, nullptr, ArrayType::Normal, 0); 8723 return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list"); 8724 } 8725 8726 static TypedefDecl * 8727 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) { 8728 // struct __va_list 8729 RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list"); 8730 if (Context->getLangOpts().CPlusPlus) { 8731 // namespace std { struct __va_list { 8732 NamespaceDecl *NS; 8733 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context), 8734 Context->getTranslationUnitDecl(), 8735 /*Inline*/false, SourceLocation(), 8736 SourceLocation(), &Context->Idents.get("std"), 8737 /*PrevDecl*/ nullptr); 8738 NS->setImplicit(); 8739 VaListDecl->setDeclContext(NS); 8740 } 8741 8742 VaListDecl->startDefinition(); 8743 8744 // void * __ap; 8745 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8746 VaListDecl, 8747 SourceLocation(), 8748 SourceLocation(), 8749 &Context->Idents.get("__ap"), 8750 Context->getPointerType(Context->VoidTy), 8751 /*TInfo=*/nullptr, 8752 /*BitWidth=*/nullptr, 8753 /*Mutable=*/false, 8754 ICIS_NoInit); 8755 Field->setAccess(AS_public); 8756 VaListDecl->addDecl(Field); 8757 8758 // }; 8759 VaListDecl->completeDefinition(); 8760 Context->VaListTagDecl = VaListDecl; 8761 8762 // typedef struct __va_list __builtin_va_list; 8763 QualType T = Context->getRecordType(VaListDecl); 8764 return Context->buildImplicitTypedef(T, "__builtin_va_list"); 8765 } 8766 8767 static TypedefDecl * 8768 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) { 8769 // struct __va_list_tag { 8770 RecordDecl *VaListTagDecl; 8771 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8772 VaListTagDecl->startDefinition(); 8773 8774 const size_t NumFields = 4; 8775 QualType FieldTypes[NumFields]; 8776 const char *FieldNames[NumFields]; 8777 8778 // long __gpr; 8779 FieldTypes[0] = Context->LongTy; 8780 FieldNames[0] = "__gpr"; 8781 8782 // long __fpr; 8783 FieldTypes[1] = Context->LongTy; 8784 FieldNames[1] = "__fpr"; 8785 8786 // void *__overflow_arg_area; 8787 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8788 FieldNames[2] = "__overflow_arg_area"; 8789 8790 // void *__reg_save_area; 8791 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8792 FieldNames[3] = "__reg_save_area"; 8793 8794 // Create fields 8795 for (unsigned i = 0; i < NumFields; ++i) { 8796 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8797 VaListTagDecl, 8798 SourceLocation(), 8799 SourceLocation(), 8800 &Context->Idents.get(FieldNames[i]), 8801 FieldTypes[i], /*TInfo=*/nullptr, 8802 /*BitWidth=*/nullptr, 8803 /*Mutable=*/false, 8804 ICIS_NoInit); 8805 Field->setAccess(AS_public); 8806 VaListTagDecl->addDecl(Field); 8807 } 8808 VaListTagDecl->completeDefinition(); 8809 Context->VaListTagDecl = VaListTagDecl; 8810 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8811 8812 // }; 8813 8814 // typedef __va_list_tag __builtin_va_list[1]; 8815 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8816 QualType VaListTagArrayType = Context->getConstantArrayType( 8817 VaListTagType, Size, nullptr, ArrayType::Normal, 0); 8818 8819 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8820 } 8821 8822 static TypedefDecl *CreateHexagonBuiltinVaListDecl(const ASTContext *Context) { 8823 // typedef struct __va_list_tag { 8824 RecordDecl *VaListTagDecl; 8825 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8826 VaListTagDecl->startDefinition(); 8827 8828 const size_t NumFields = 3; 8829 QualType FieldTypes[NumFields]; 8830 const char *FieldNames[NumFields]; 8831 8832 // void *CurrentSavedRegisterArea; 8833 FieldTypes[0] = Context->getPointerType(Context->VoidTy); 8834 FieldNames[0] = "__current_saved_reg_area_pointer"; 8835 8836 // void *SavedRegAreaEnd; 8837 FieldTypes[1] = Context->getPointerType(Context->VoidTy); 8838 FieldNames[1] = "__saved_reg_area_end_pointer"; 8839 8840 // void *OverflowArea; 8841 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8842 FieldNames[2] = "__overflow_area_pointer"; 8843 8844 // Create fields 8845 for (unsigned i = 0; i < NumFields; ++i) { 8846 FieldDecl *Field = FieldDecl::Create( 8847 const_cast<ASTContext &>(*Context), VaListTagDecl, SourceLocation(), 8848 SourceLocation(), &Context->Idents.get(FieldNames[i]), FieldTypes[i], 8849 /*TInfo=*/nullptr, 8850 /*BitWidth=*/nullptr, 8851 /*Mutable=*/false, ICIS_NoInit); 8852 Field->setAccess(AS_public); 8853 VaListTagDecl->addDecl(Field); 8854 } 8855 VaListTagDecl->completeDefinition(); 8856 Context->VaListTagDecl = VaListTagDecl; 8857 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8858 8859 // } __va_list_tag; 8860 TypedefDecl *VaListTagTypedefDecl = 8861 Context->buildImplicitTypedef(VaListTagType, "__va_list_tag"); 8862 8863 QualType VaListTagTypedefType = Context->getTypedefType(VaListTagTypedefDecl); 8864 8865 // typedef __va_list_tag __builtin_va_list[1]; 8866 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8867 QualType VaListTagArrayType = Context->getConstantArrayType( 8868 VaListTagTypedefType, Size, nullptr, ArrayType::Normal, 0); 8869 8870 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8871 } 8872 8873 static TypedefDecl *CreateVaListDecl(const ASTContext *Context, 8874 TargetInfo::BuiltinVaListKind Kind) { 8875 switch (Kind) { 8876 case TargetInfo::CharPtrBuiltinVaList: 8877 return CreateCharPtrBuiltinVaListDecl(Context); 8878 case TargetInfo::VoidPtrBuiltinVaList: 8879 return CreateVoidPtrBuiltinVaListDecl(Context); 8880 case TargetInfo::AArch64ABIBuiltinVaList: 8881 return CreateAArch64ABIBuiltinVaListDecl(Context); 8882 case TargetInfo::PowerABIBuiltinVaList: 8883 return CreatePowerABIBuiltinVaListDecl(Context); 8884 case TargetInfo::X86_64ABIBuiltinVaList: 8885 return CreateX86_64ABIBuiltinVaListDecl(Context); 8886 case TargetInfo::PNaClABIBuiltinVaList: 8887 return CreatePNaClABIBuiltinVaListDecl(Context); 8888 case TargetInfo::AAPCSABIBuiltinVaList: 8889 return CreateAAPCSABIBuiltinVaListDecl(Context); 8890 case TargetInfo::SystemZBuiltinVaList: 8891 return CreateSystemZBuiltinVaListDecl(Context); 8892 case TargetInfo::HexagonBuiltinVaList: 8893 return CreateHexagonBuiltinVaListDecl(Context); 8894 } 8895 8896 llvm_unreachable("Unhandled __builtin_va_list type kind"); 8897 } 8898 8899 TypedefDecl *ASTContext::getBuiltinVaListDecl() const { 8900 if (!BuiltinVaListDecl) { 8901 BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind()); 8902 assert(BuiltinVaListDecl->isImplicit()); 8903 } 8904 8905 return BuiltinVaListDecl; 8906 } 8907 8908 Decl *ASTContext::getVaListTagDecl() const { 8909 // Force the creation of VaListTagDecl by building the __builtin_va_list 8910 // declaration. 8911 if (!VaListTagDecl) 8912 (void)getBuiltinVaListDecl(); 8913 8914 return VaListTagDecl; 8915 } 8916 8917 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const { 8918 if (!BuiltinMSVaListDecl) 8919 BuiltinMSVaListDecl = CreateMSVaListDecl(this); 8920 8921 return BuiltinMSVaListDecl; 8922 } 8923 8924 bool ASTContext::canBuiltinBeRedeclared(const FunctionDecl *FD) const { 8925 return BuiltinInfo.canBeRedeclared(FD->getBuiltinID()); 8926 } 8927 8928 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) { 8929 assert(ObjCConstantStringType.isNull() && 8930 "'NSConstantString' type already set!"); 8931 8932 ObjCConstantStringType = getObjCInterfaceType(Decl); 8933 } 8934 8935 /// Retrieve the template name that corresponds to a non-empty 8936 /// lookup. 8937 TemplateName 8938 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin, 8939 UnresolvedSetIterator End) const { 8940 unsigned size = End - Begin; 8941 assert(size > 1 && "set is not overloaded!"); 8942 8943 void *memory = Allocate(sizeof(OverloadedTemplateStorage) + 8944 size * sizeof(FunctionTemplateDecl*)); 8945 auto *OT = new (memory) OverloadedTemplateStorage(size); 8946 8947 NamedDecl **Storage = OT->getStorage(); 8948 for (UnresolvedSetIterator I = Begin; I != End; ++I) { 8949 NamedDecl *D = *I; 8950 assert(isa<FunctionTemplateDecl>(D) || 8951 isa<UnresolvedUsingValueDecl>(D) || 8952 (isa<UsingShadowDecl>(D) && 8953 isa<FunctionTemplateDecl>(D->getUnderlyingDecl()))); 8954 *Storage++ = D; 8955 } 8956 8957 return TemplateName(OT); 8958 } 8959 8960 /// Retrieve a template name representing an unqualified-id that has been 8961 /// assumed to name a template for ADL purposes. 8962 TemplateName ASTContext::getAssumedTemplateName(DeclarationName Name) const { 8963 auto *OT = new (*this) AssumedTemplateStorage(Name); 8964 return TemplateName(OT); 8965 } 8966 8967 /// Retrieve the template name that represents a qualified 8968 /// template name such as \c std::vector. 8969 TemplateName 8970 ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS, 8971 bool TemplateKeyword, 8972 TemplateDecl *Template) const { 8973 assert(NNS && "Missing nested-name-specifier in qualified template name"); 8974 8975 // FIXME: Canonicalization? 8976 llvm::FoldingSetNodeID ID; 8977 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template); 8978 8979 void *InsertPos = nullptr; 8980 QualifiedTemplateName *QTN = 8981 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 8982 if (!QTN) { 8983 QTN = new (*this, alignof(QualifiedTemplateName)) 8984 QualifiedTemplateName(NNS, TemplateKeyword, Template); 8985 QualifiedTemplateNames.InsertNode(QTN, InsertPos); 8986 } 8987 8988 return TemplateName(QTN); 8989 } 8990 8991 /// Retrieve the template name that represents a dependent 8992 /// template name such as \c MetaFun::template apply. 8993 TemplateName 8994 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS, 8995 const IdentifierInfo *Name) const { 8996 assert((!NNS || NNS->isDependent()) && 8997 "Nested name specifier must be dependent"); 8998 8999 llvm::FoldingSetNodeID ID; 9000 DependentTemplateName::Profile(ID, NNS, Name); 9001 9002 void *InsertPos = nullptr; 9003 DependentTemplateName *QTN = 9004 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9005 9006 if (QTN) 9007 return TemplateName(QTN); 9008 9009 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 9010 if (CanonNNS == NNS) { 9011 QTN = new (*this, alignof(DependentTemplateName)) 9012 DependentTemplateName(NNS, Name); 9013 } else { 9014 TemplateName Canon = getDependentTemplateName(CanonNNS, Name); 9015 QTN = new (*this, alignof(DependentTemplateName)) 9016 DependentTemplateName(NNS, Name, Canon); 9017 DependentTemplateName *CheckQTN = 9018 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9019 assert(!CheckQTN && "Dependent type name canonicalization broken"); 9020 (void)CheckQTN; 9021 } 9022 9023 DependentTemplateNames.InsertNode(QTN, InsertPos); 9024 return TemplateName(QTN); 9025 } 9026 9027 /// Retrieve the template name that represents a dependent 9028 /// template name such as \c MetaFun::template operator+. 9029 TemplateName 9030 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS, 9031 OverloadedOperatorKind Operator) const { 9032 assert((!NNS || NNS->isDependent()) && 9033 "Nested name specifier must be dependent"); 9034 9035 llvm::FoldingSetNodeID ID; 9036 DependentTemplateName::Profile(ID, NNS, Operator); 9037 9038 void *InsertPos = nullptr; 9039 DependentTemplateName *QTN 9040 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9041 9042 if (QTN) 9043 return TemplateName(QTN); 9044 9045 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 9046 if (CanonNNS == NNS) { 9047 QTN = new (*this, alignof(DependentTemplateName)) 9048 DependentTemplateName(NNS, Operator); 9049 } else { 9050 TemplateName Canon = getDependentTemplateName(CanonNNS, Operator); 9051 QTN = new (*this, alignof(DependentTemplateName)) 9052 DependentTemplateName(NNS, Operator, Canon); 9053 9054 DependentTemplateName *CheckQTN 9055 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9056 assert(!CheckQTN && "Dependent template name canonicalization broken"); 9057 (void)CheckQTN; 9058 } 9059 9060 DependentTemplateNames.InsertNode(QTN, InsertPos); 9061 return TemplateName(QTN); 9062 } 9063 9064 TemplateName 9065 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param, 9066 TemplateName replacement) const { 9067 llvm::FoldingSetNodeID ID; 9068 SubstTemplateTemplateParmStorage::Profile(ID, param, replacement); 9069 9070 void *insertPos = nullptr; 9071 SubstTemplateTemplateParmStorage *subst 9072 = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos); 9073 9074 if (!subst) { 9075 subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement); 9076 SubstTemplateTemplateParms.InsertNode(subst, insertPos); 9077 } 9078 9079 return TemplateName(subst); 9080 } 9081 9082 TemplateName 9083 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param, 9084 const TemplateArgument &ArgPack) const { 9085 auto &Self = const_cast<ASTContext &>(*this); 9086 llvm::FoldingSetNodeID ID; 9087 SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack); 9088 9089 void *InsertPos = nullptr; 9090 SubstTemplateTemplateParmPackStorage *Subst 9091 = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos); 9092 9093 if (!Subst) { 9094 Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param, 9095 ArgPack.pack_size(), 9096 ArgPack.pack_begin()); 9097 SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos); 9098 } 9099 9100 return TemplateName(Subst); 9101 } 9102 9103 /// getFromTargetType - Given one of the integer types provided by 9104 /// TargetInfo, produce the corresponding type. The unsigned @p Type 9105 /// is actually a value of type @c TargetInfo::IntType. 9106 CanQualType ASTContext::getFromTargetType(unsigned Type) const { 9107 switch (Type) { 9108 case TargetInfo::NoInt: return {}; 9109 case TargetInfo::SignedChar: return SignedCharTy; 9110 case TargetInfo::UnsignedChar: return UnsignedCharTy; 9111 case TargetInfo::SignedShort: return ShortTy; 9112 case TargetInfo::UnsignedShort: return UnsignedShortTy; 9113 case TargetInfo::SignedInt: return IntTy; 9114 case TargetInfo::UnsignedInt: return UnsignedIntTy; 9115 case TargetInfo::SignedLong: return LongTy; 9116 case TargetInfo::UnsignedLong: return UnsignedLongTy; 9117 case TargetInfo::SignedLongLong: return LongLongTy; 9118 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy; 9119 } 9120 9121 llvm_unreachable("Unhandled TargetInfo::IntType value"); 9122 } 9123 9124 //===----------------------------------------------------------------------===// 9125 // Type Predicates. 9126 //===----------------------------------------------------------------------===// 9127 9128 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's 9129 /// garbage collection attribute. 9130 /// 9131 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const { 9132 if (getLangOpts().getGC() == LangOptions::NonGC) 9133 return Qualifiers::GCNone; 9134 9135 assert(getLangOpts().ObjC); 9136 Qualifiers::GC GCAttrs = Ty.getObjCGCAttr(); 9137 9138 // Default behaviour under objective-C's gc is for ObjC pointers 9139 // (or pointers to them) be treated as though they were declared 9140 // as __strong. 9141 if (GCAttrs == Qualifiers::GCNone) { 9142 if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) 9143 return Qualifiers::Strong; 9144 else if (Ty->isPointerType()) 9145 return getObjCGCAttrKind(Ty->castAs<PointerType>()->getPointeeType()); 9146 } else { 9147 // It's not valid to set GC attributes on anything that isn't a 9148 // pointer. 9149 #ifndef NDEBUG 9150 QualType CT = Ty->getCanonicalTypeInternal(); 9151 while (const auto *AT = dyn_cast<ArrayType>(CT)) 9152 CT = AT->getElementType(); 9153 assert(CT->isAnyPointerType() || CT->isBlockPointerType()); 9154 #endif 9155 } 9156 return GCAttrs; 9157 } 9158 9159 //===----------------------------------------------------------------------===// 9160 // Type Compatibility Testing 9161 //===----------------------------------------------------------------------===// 9162 9163 /// areCompatVectorTypes - Return true if the two specified vector types are 9164 /// compatible. 9165 static bool areCompatVectorTypes(const VectorType *LHS, 9166 const VectorType *RHS) { 9167 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified()); 9168 return LHS->getElementType() == RHS->getElementType() && 9169 LHS->getNumElements() == RHS->getNumElements(); 9170 } 9171 9172 /// areCompatMatrixTypes - Return true if the two specified matrix types are 9173 /// compatible. 9174 static bool areCompatMatrixTypes(const ConstantMatrixType *LHS, 9175 const ConstantMatrixType *RHS) { 9176 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified()); 9177 return LHS->getElementType() == RHS->getElementType() && 9178 LHS->getNumRows() == RHS->getNumRows() && 9179 LHS->getNumColumns() == RHS->getNumColumns(); 9180 } 9181 9182 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, 9183 QualType SecondVec) { 9184 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); 9185 assert(SecondVec->isVectorType() && "SecondVec should be a vector type"); 9186 9187 if (hasSameUnqualifiedType(FirstVec, SecondVec)) 9188 return true; 9189 9190 // Treat Neon vector types and most AltiVec vector types as if they are the 9191 // equivalent GCC vector types. 9192 const auto *First = FirstVec->castAs<VectorType>(); 9193 const auto *Second = SecondVec->castAs<VectorType>(); 9194 if (First->getNumElements() == Second->getNumElements() && 9195 hasSameType(First->getElementType(), Second->getElementType()) && 9196 First->getVectorKind() != VectorType::AltiVecPixel && 9197 First->getVectorKind() != VectorType::AltiVecBool && 9198 Second->getVectorKind() != VectorType::AltiVecPixel && 9199 Second->getVectorKind() != VectorType::AltiVecBool && 9200 First->getVectorKind() != VectorType::SveFixedLengthDataVector && 9201 First->getVectorKind() != VectorType::SveFixedLengthPredicateVector && 9202 Second->getVectorKind() != VectorType::SveFixedLengthDataVector && 9203 Second->getVectorKind() != VectorType::SveFixedLengthPredicateVector) 9204 return true; 9205 9206 return false; 9207 } 9208 9209 /// getSVETypeSize - Return SVE vector or predicate register size. 9210 static uint64_t getSVETypeSize(ASTContext &Context, const BuiltinType *Ty) { 9211 assert(Ty->isVLSTBuiltinType() && "Invalid SVE Type"); 9212 return Ty->getKind() == BuiltinType::SveBool 9213 ? (Context.getLangOpts().VScaleMin * 128) / Context.getCharWidth() 9214 : Context.getLangOpts().VScaleMin * 128; 9215 } 9216 9217 bool ASTContext::areCompatibleSveTypes(QualType FirstType, 9218 QualType SecondType) { 9219 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || 9220 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) && 9221 "Expected SVE builtin type and vector type!"); 9222 9223 auto IsValidCast = [this](QualType FirstType, QualType SecondType) { 9224 if (const auto *BT = FirstType->getAs<BuiltinType>()) { 9225 if (const auto *VT = SecondType->getAs<VectorType>()) { 9226 // Predicates have the same representation as uint8 so we also have to 9227 // check the kind to make these types incompatible. 9228 if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector) 9229 return BT->getKind() == BuiltinType::SveBool; 9230 else if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector) 9231 return VT->getElementType().getCanonicalType() == 9232 FirstType->getSveEltType(*this); 9233 else if (VT->getVectorKind() == VectorType::GenericVector) 9234 return getTypeSize(SecondType) == getSVETypeSize(*this, BT) && 9235 hasSameType(VT->getElementType(), 9236 getBuiltinVectorTypeInfo(BT).ElementType); 9237 } 9238 } 9239 return false; 9240 }; 9241 9242 return IsValidCast(FirstType, SecondType) || 9243 IsValidCast(SecondType, FirstType); 9244 } 9245 9246 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, 9247 QualType SecondType) { 9248 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || 9249 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) && 9250 "Expected SVE builtin type and vector type!"); 9251 9252 auto IsLaxCompatible = [this](QualType FirstType, QualType SecondType) { 9253 const auto *BT = FirstType->getAs<BuiltinType>(); 9254 if (!BT) 9255 return false; 9256 9257 const auto *VecTy = SecondType->getAs<VectorType>(); 9258 if (VecTy && 9259 (VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector || 9260 VecTy->getVectorKind() == VectorType::GenericVector)) { 9261 const LangOptions::LaxVectorConversionKind LVCKind = 9262 getLangOpts().getLaxVectorConversions(); 9263 9264 // Can not convert between sve predicates and sve vectors because of 9265 // different size. 9266 if (BT->getKind() == BuiltinType::SveBool && 9267 VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector) 9268 return false; 9269 9270 // If __ARM_FEATURE_SVE_BITS != N do not allow GNU vector lax conversion. 9271 // "Whenever __ARM_FEATURE_SVE_BITS==N, GNUT implicitly 9272 // converts to VLAT and VLAT implicitly converts to GNUT." 9273 // ACLE Spec Version 00bet6, 3.7.3.2. Behavior common to vectors and 9274 // predicates. 9275 if (VecTy->getVectorKind() == VectorType::GenericVector && 9276 getTypeSize(SecondType) != getSVETypeSize(*this, BT)) 9277 return false; 9278 9279 // If -flax-vector-conversions=all is specified, the types are 9280 // certainly compatible. 9281 if (LVCKind == LangOptions::LaxVectorConversionKind::All) 9282 return true; 9283 9284 // If -flax-vector-conversions=integer is specified, the types are 9285 // compatible if the elements are integer types. 9286 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) 9287 return VecTy->getElementType().getCanonicalType()->isIntegerType() && 9288 FirstType->getSveEltType(*this)->isIntegerType(); 9289 } 9290 9291 return false; 9292 }; 9293 9294 return IsLaxCompatible(FirstType, SecondType) || 9295 IsLaxCompatible(SecondType, FirstType); 9296 } 9297 9298 bool ASTContext::hasDirectOwnershipQualifier(QualType Ty) const { 9299 while (true) { 9300 // __strong id 9301 if (const AttributedType *Attr = dyn_cast<AttributedType>(Ty)) { 9302 if (Attr->getAttrKind() == attr::ObjCOwnership) 9303 return true; 9304 9305 Ty = Attr->getModifiedType(); 9306 9307 // X *__strong (...) 9308 } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) { 9309 Ty = Paren->getInnerType(); 9310 9311 // We do not want to look through typedefs, typeof(expr), 9312 // typeof(type), or any other way that the type is somehow 9313 // abstracted. 9314 } else { 9315 return false; 9316 } 9317 } 9318 } 9319 9320 //===----------------------------------------------------------------------===// 9321 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's. 9322 //===----------------------------------------------------------------------===// 9323 9324 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the 9325 /// inheritance hierarchy of 'rProto'. 9326 bool 9327 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, 9328 ObjCProtocolDecl *rProto) const { 9329 if (declaresSameEntity(lProto, rProto)) 9330 return true; 9331 for (auto *PI : rProto->protocols()) 9332 if (ProtocolCompatibleWithProtocol(lProto, PI)) 9333 return true; 9334 return false; 9335 } 9336 9337 /// ObjCQualifiedClassTypesAreCompatible - compare Class<pr,...> and 9338 /// Class<pr1, ...>. 9339 bool ASTContext::ObjCQualifiedClassTypesAreCompatible( 9340 const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs) { 9341 for (auto *lhsProto : lhs->quals()) { 9342 bool match = false; 9343 for (auto *rhsProto : rhs->quals()) { 9344 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) { 9345 match = true; 9346 break; 9347 } 9348 } 9349 if (!match) 9350 return false; 9351 } 9352 return true; 9353 } 9354 9355 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an 9356 /// ObjCQualifiedIDType. 9357 bool ASTContext::ObjCQualifiedIdTypesAreCompatible( 9358 const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs, 9359 bool compare) { 9360 // Allow id<P..> and an 'id' in all cases. 9361 if (lhs->isObjCIdType() || rhs->isObjCIdType()) 9362 return true; 9363 9364 // Don't allow id<P..> to convert to Class or Class<P..> in either direction. 9365 if (lhs->isObjCClassType() || lhs->isObjCQualifiedClassType() || 9366 rhs->isObjCClassType() || rhs->isObjCQualifiedClassType()) 9367 return false; 9368 9369 if (lhs->isObjCQualifiedIdType()) { 9370 if (rhs->qual_empty()) { 9371 // If the RHS is a unqualified interface pointer "NSString*", 9372 // make sure we check the class hierarchy. 9373 if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) { 9374 for (auto *I : lhs->quals()) { 9375 // when comparing an id<P> on lhs with a static type on rhs, 9376 // see if static class implements all of id's protocols, directly or 9377 // through its super class and categories. 9378 if (!rhsID->ClassImplementsProtocol(I, true)) 9379 return false; 9380 } 9381 } 9382 // If there are no qualifiers and no interface, we have an 'id'. 9383 return true; 9384 } 9385 // Both the right and left sides have qualifiers. 9386 for (auto *lhsProto : lhs->quals()) { 9387 bool match = false; 9388 9389 // when comparing an id<P> on lhs with a static type on rhs, 9390 // see if static class implements all of id's protocols, directly or 9391 // through its super class and categories. 9392 for (auto *rhsProto : rhs->quals()) { 9393 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9394 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9395 match = true; 9396 break; 9397 } 9398 } 9399 // If the RHS is a qualified interface pointer "NSString<P>*", 9400 // make sure we check the class hierarchy. 9401 if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) { 9402 for (auto *I : lhs->quals()) { 9403 // when comparing an id<P> on lhs with a static type on rhs, 9404 // see if static class implements all of id's protocols, directly or 9405 // through its super class and categories. 9406 if (rhsID->ClassImplementsProtocol(I, true)) { 9407 match = true; 9408 break; 9409 } 9410 } 9411 } 9412 if (!match) 9413 return false; 9414 } 9415 9416 return true; 9417 } 9418 9419 assert(rhs->isObjCQualifiedIdType() && "One of the LHS/RHS should be id<x>"); 9420 9421 if (lhs->getInterfaceType()) { 9422 // If both the right and left sides have qualifiers. 9423 for (auto *lhsProto : lhs->quals()) { 9424 bool match = false; 9425 9426 // when comparing an id<P> on rhs with a static type on lhs, 9427 // see if static class implements all of id's protocols, directly or 9428 // through its super class and categories. 9429 // First, lhs protocols in the qualifier list must be found, direct 9430 // or indirect in rhs's qualifier list or it is a mismatch. 9431 for (auto *rhsProto : rhs->quals()) { 9432 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9433 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9434 match = true; 9435 break; 9436 } 9437 } 9438 if (!match) 9439 return false; 9440 } 9441 9442 // Static class's protocols, or its super class or category protocols 9443 // must be found, direct or indirect in rhs's qualifier list or it is a mismatch. 9444 if (ObjCInterfaceDecl *lhsID = lhs->getInterfaceDecl()) { 9445 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols; 9446 CollectInheritedProtocols(lhsID, LHSInheritedProtocols); 9447 // This is rather dubious but matches gcc's behavior. If lhs has 9448 // no type qualifier and its class has no static protocol(s) 9449 // assume that it is mismatch. 9450 if (LHSInheritedProtocols.empty() && lhs->qual_empty()) 9451 return false; 9452 for (auto *lhsProto : LHSInheritedProtocols) { 9453 bool match = false; 9454 for (auto *rhsProto : rhs->quals()) { 9455 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9456 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9457 match = true; 9458 break; 9459 } 9460 } 9461 if (!match) 9462 return false; 9463 } 9464 } 9465 return true; 9466 } 9467 return false; 9468 } 9469 9470 /// canAssignObjCInterfaces - Return true if the two interface types are 9471 /// compatible for assignment from RHS to LHS. This handles validation of any 9472 /// protocol qualifiers on the LHS or RHS. 9473 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 9474 const ObjCObjectPointerType *RHSOPT) { 9475 const ObjCObjectType* LHS = LHSOPT->getObjectType(); 9476 const ObjCObjectType* RHS = RHSOPT->getObjectType(); 9477 9478 // If either type represents the built-in 'id' type, return true. 9479 if (LHS->isObjCUnqualifiedId() || RHS->isObjCUnqualifiedId()) 9480 return true; 9481 9482 // Function object that propagates a successful result or handles 9483 // __kindof types. 9484 auto finish = [&](bool succeeded) -> bool { 9485 if (succeeded) 9486 return true; 9487 9488 if (!RHS->isKindOfType()) 9489 return false; 9490 9491 // Strip off __kindof and protocol qualifiers, then check whether 9492 // we can assign the other way. 9493 return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this), 9494 LHSOPT->stripObjCKindOfTypeAndQuals(*this)); 9495 }; 9496 9497 // Casts from or to id<P> are allowed when the other side has compatible 9498 // protocols. 9499 if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) { 9500 return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false)); 9501 } 9502 9503 // Verify protocol compatibility for casts from Class<P1> to Class<P2>. 9504 if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) { 9505 return finish(ObjCQualifiedClassTypesAreCompatible(LHSOPT, RHSOPT)); 9506 } 9507 9508 // Casts from Class to Class<Foo>, or vice-versa, are allowed. 9509 if (LHS->isObjCClass() && RHS->isObjCClass()) { 9510 return true; 9511 } 9512 9513 // If we have 2 user-defined types, fall into that path. 9514 if (LHS->getInterface() && RHS->getInterface()) { 9515 return finish(canAssignObjCInterfaces(LHS, RHS)); 9516 } 9517 9518 return false; 9519 } 9520 9521 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written 9522 /// for providing type-safety for objective-c pointers used to pass/return 9523 /// arguments in block literals. When passed as arguments, passing 'A*' where 9524 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is 9525 /// not OK. For the return type, the opposite is not OK. 9526 bool ASTContext::canAssignObjCInterfacesInBlockPointer( 9527 const ObjCObjectPointerType *LHSOPT, 9528 const ObjCObjectPointerType *RHSOPT, 9529 bool BlockReturnType) { 9530 9531 // Function object that propagates a successful result or handles 9532 // __kindof types. 9533 auto finish = [&](bool succeeded) -> bool { 9534 if (succeeded) 9535 return true; 9536 9537 const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT; 9538 if (!Expected->isKindOfType()) 9539 return false; 9540 9541 // Strip off __kindof and protocol qualifiers, then check whether 9542 // we can assign the other way. 9543 return canAssignObjCInterfacesInBlockPointer( 9544 RHSOPT->stripObjCKindOfTypeAndQuals(*this), 9545 LHSOPT->stripObjCKindOfTypeAndQuals(*this), 9546 BlockReturnType); 9547 }; 9548 9549 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType()) 9550 return true; 9551 9552 if (LHSOPT->isObjCBuiltinType()) { 9553 return finish(RHSOPT->isObjCBuiltinType() || 9554 RHSOPT->isObjCQualifiedIdType()); 9555 } 9556 9557 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType()) { 9558 if (getLangOpts().CompatibilityQualifiedIdBlockParamTypeChecking) 9559 // Use for block parameters previous type checking for compatibility. 9560 return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false) || 9561 // Or corrected type checking as in non-compat mode. 9562 (!BlockReturnType && 9563 ObjCQualifiedIdTypesAreCompatible(RHSOPT, LHSOPT, false))); 9564 else 9565 return finish(ObjCQualifiedIdTypesAreCompatible( 9566 (BlockReturnType ? LHSOPT : RHSOPT), 9567 (BlockReturnType ? RHSOPT : LHSOPT), false)); 9568 } 9569 9570 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType(); 9571 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType(); 9572 if (LHS && RHS) { // We have 2 user-defined types. 9573 if (LHS != RHS) { 9574 if (LHS->getDecl()->isSuperClassOf(RHS->getDecl())) 9575 return finish(BlockReturnType); 9576 if (RHS->getDecl()->isSuperClassOf(LHS->getDecl())) 9577 return finish(!BlockReturnType); 9578 } 9579 else 9580 return true; 9581 } 9582 return false; 9583 } 9584 9585 /// Comparison routine for Objective-C protocols to be used with 9586 /// llvm::array_pod_sort. 9587 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs, 9588 ObjCProtocolDecl * const *rhs) { 9589 return (*lhs)->getName().compare((*rhs)->getName()); 9590 } 9591 9592 /// getIntersectionOfProtocols - This routine finds the intersection of set 9593 /// of protocols inherited from two distinct objective-c pointer objects with 9594 /// the given common base. 9595 /// It is used to build composite qualifier list of the composite type of 9596 /// the conditional expression involving two objective-c pointer objects. 9597 static 9598 void getIntersectionOfProtocols(ASTContext &Context, 9599 const ObjCInterfaceDecl *CommonBase, 9600 const ObjCObjectPointerType *LHSOPT, 9601 const ObjCObjectPointerType *RHSOPT, 9602 SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) { 9603 9604 const ObjCObjectType* LHS = LHSOPT->getObjectType(); 9605 const ObjCObjectType* RHS = RHSOPT->getObjectType(); 9606 assert(LHS->getInterface() && "LHS must have an interface base"); 9607 assert(RHS->getInterface() && "RHS must have an interface base"); 9608 9609 // Add all of the protocols for the LHS. 9610 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet; 9611 9612 // Start with the protocol qualifiers. 9613 for (auto proto : LHS->quals()) { 9614 Context.CollectInheritedProtocols(proto, LHSProtocolSet); 9615 } 9616 9617 // Also add the protocols associated with the LHS interface. 9618 Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet); 9619 9620 // Add all of the protocols for the RHS. 9621 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet; 9622 9623 // Start with the protocol qualifiers. 9624 for (auto proto : RHS->quals()) { 9625 Context.CollectInheritedProtocols(proto, RHSProtocolSet); 9626 } 9627 9628 // Also add the protocols associated with the RHS interface. 9629 Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet); 9630 9631 // Compute the intersection of the collected protocol sets. 9632 for (auto proto : LHSProtocolSet) { 9633 if (RHSProtocolSet.count(proto)) 9634 IntersectionSet.push_back(proto); 9635 } 9636 9637 // Compute the set of protocols that is implied by either the common type or 9638 // the protocols within the intersection. 9639 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols; 9640 Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols); 9641 9642 // Remove any implied protocols from the list of inherited protocols. 9643 if (!ImpliedProtocols.empty()) { 9644 llvm::erase_if(IntersectionSet, [&](ObjCProtocolDecl *proto) -> bool { 9645 return ImpliedProtocols.contains(proto); 9646 }); 9647 } 9648 9649 // Sort the remaining protocols by name. 9650 llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(), 9651 compareObjCProtocolsByName); 9652 } 9653 9654 /// Determine whether the first type is a subtype of the second. 9655 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs, 9656 QualType rhs) { 9657 // Common case: two object pointers. 9658 const auto *lhsOPT = lhs->getAs<ObjCObjectPointerType>(); 9659 const auto *rhsOPT = rhs->getAs<ObjCObjectPointerType>(); 9660 if (lhsOPT && rhsOPT) 9661 return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT); 9662 9663 // Two block pointers. 9664 const auto *lhsBlock = lhs->getAs<BlockPointerType>(); 9665 const auto *rhsBlock = rhs->getAs<BlockPointerType>(); 9666 if (lhsBlock && rhsBlock) 9667 return ctx.typesAreBlockPointerCompatible(lhs, rhs); 9668 9669 // If either is an unqualified 'id' and the other is a block, it's 9670 // acceptable. 9671 if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) || 9672 (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock)) 9673 return true; 9674 9675 return false; 9676 } 9677 9678 // Check that the given Objective-C type argument lists are equivalent. 9679 static bool sameObjCTypeArgs(ASTContext &ctx, 9680 const ObjCInterfaceDecl *iface, 9681 ArrayRef<QualType> lhsArgs, 9682 ArrayRef<QualType> rhsArgs, 9683 bool stripKindOf) { 9684 if (lhsArgs.size() != rhsArgs.size()) 9685 return false; 9686 9687 ObjCTypeParamList *typeParams = iface->getTypeParamList(); 9688 for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) { 9689 if (ctx.hasSameType(lhsArgs[i], rhsArgs[i])) 9690 continue; 9691 9692 switch (typeParams->begin()[i]->getVariance()) { 9693 case ObjCTypeParamVariance::Invariant: 9694 if (!stripKindOf || 9695 !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx), 9696 rhsArgs[i].stripObjCKindOfType(ctx))) { 9697 return false; 9698 } 9699 break; 9700 9701 case ObjCTypeParamVariance::Covariant: 9702 if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i])) 9703 return false; 9704 break; 9705 9706 case ObjCTypeParamVariance::Contravariant: 9707 if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i])) 9708 return false; 9709 break; 9710 } 9711 } 9712 9713 return true; 9714 } 9715 9716 QualType ASTContext::areCommonBaseCompatible( 9717 const ObjCObjectPointerType *Lptr, 9718 const ObjCObjectPointerType *Rptr) { 9719 const ObjCObjectType *LHS = Lptr->getObjectType(); 9720 const ObjCObjectType *RHS = Rptr->getObjectType(); 9721 const ObjCInterfaceDecl* LDecl = LHS->getInterface(); 9722 const ObjCInterfaceDecl* RDecl = RHS->getInterface(); 9723 9724 if (!LDecl || !RDecl) 9725 return {}; 9726 9727 // When either LHS or RHS is a kindof type, we should return a kindof type. 9728 // For example, for common base of kindof(ASub1) and kindof(ASub2), we return 9729 // kindof(A). 9730 bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType(); 9731 9732 // Follow the left-hand side up the class hierarchy until we either hit a 9733 // root or find the RHS. Record the ancestors in case we don't find it. 9734 llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4> 9735 LHSAncestors; 9736 while (true) { 9737 // Record this ancestor. We'll need this if the common type isn't in the 9738 // path from the LHS to the root. 9739 LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS; 9740 9741 if (declaresSameEntity(LHS->getInterface(), RDecl)) { 9742 // Get the type arguments. 9743 ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten(); 9744 bool anyChanges = false; 9745 if (LHS->isSpecialized() && RHS->isSpecialized()) { 9746 // Both have type arguments, compare them. 9747 if (!sameObjCTypeArgs(*this, LHS->getInterface(), 9748 LHS->getTypeArgs(), RHS->getTypeArgs(), 9749 /*stripKindOf=*/true)) 9750 return {}; 9751 } else if (LHS->isSpecialized() != RHS->isSpecialized()) { 9752 // If only one has type arguments, the result will not have type 9753 // arguments. 9754 LHSTypeArgs = {}; 9755 anyChanges = true; 9756 } 9757 9758 // Compute the intersection of protocols. 9759 SmallVector<ObjCProtocolDecl *, 8> Protocols; 9760 getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr, 9761 Protocols); 9762 if (!Protocols.empty()) 9763 anyChanges = true; 9764 9765 // If anything in the LHS will have changed, build a new result type. 9766 // If we need to return a kindof type but LHS is not a kindof type, we 9767 // build a new result type. 9768 if (anyChanges || LHS->isKindOfType() != anyKindOf) { 9769 QualType Result = getObjCInterfaceType(LHS->getInterface()); 9770 Result = getObjCObjectType(Result, LHSTypeArgs, Protocols, 9771 anyKindOf || LHS->isKindOfType()); 9772 return getObjCObjectPointerType(Result); 9773 } 9774 9775 return getObjCObjectPointerType(QualType(LHS, 0)); 9776 } 9777 9778 // Find the superclass. 9779 QualType LHSSuperType = LHS->getSuperClassType(); 9780 if (LHSSuperType.isNull()) 9781 break; 9782 9783 LHS = LHSSuperType->castAs<ObjCObjectType>(); 9784 } 9785 9786 // We didn't find anything by following the LHS to its root; now check 9787 // the RHS against the cached set of ancestors. 9788 while (true) { 9789 auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl()); 9790 if (KnownLHS != LHSAncestors.end()) { 9791 LHS = KnownLHS->second; 9792 9793 // Get the type arguments. 9794 ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten(); 9795 bool anyChanges = false; 9796 if (LHS->isSpecialized() && RHS->isSpecialized()) { 9797 // Both have type arguments, compare them. 9798 if (!sameObjCTypeArgs(*this, LHS->getInterface(), 9799 LHS->getTypeArgs(), RHS->getTypeArgs(), 9800 /*stripKindOf=*/true)) 9801 return {}; 9802 } else if (LHS->isSpecialized() != RHS->isSpecialized()) { 9803 // If only one has type arguments, the result will not have type 9804 // arguments. 9805 RHSTypeArgs = {}; 9806 anyChanges = true; 9807 } 9808 9809 // Compute the intersection of protocols. 9810 SmallVector<ObjCProtocolDecl *, 8> Protocols; 9811 getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr, 9812 Protocols); 9813 if (!Protocols.empty()) 9814 anyChanges = true; 9815 9816 // If we need to return a kindof type but RHS is not a kindof type, we 9817 // build a new result type. 9818 if (anyChanges || RHS->isKindOfType() != anyKindOf) { 9819 QualType Result = getObjCInterfaceType(RHS->getInterface()); 9820 Result = getObjCObjectType(Result, RHSTypeArgs, Protocols, 9821 anyKindOf || RHS->isKindOfType()); 9822 return getObjCObjectPointerType(Result); 9823 } 9824 9825 return getObjCObjectPointerType(QualType(RHS, 0)); 9826 } 9827 9828 // Find the superclass of the RHS. 9829 QualType RHSSuperType = RHS->getSuperClassType(); 9830 if (RHSSuperType.isNull()) 9831 break; 9832 9833 RHS = RHSSuperType->castAs<ObjCObjectType>(); 9834 } 9835 9836 return {}; 9837 } 9838 9839 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, 9840 const ObjCObjectType *RHS) { 9841 assert(LHS->getInterface() && "LHS is not an interface type"); 9842 assert(RHS->getInterface() && "RHS is not an interface type"); 9843 9844 // Verify that the base decls are compatible: the RHS must be a subclass of 9845 // the LHS. 9846 ObjCInterfaceDecl *LHSInterface = LHS->getInterface(); 9847 bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface()); 9848 if (!IsSuperClass) 9849 return false; 9850 9851 // If the LHS has protocol qualifiers, determine whether all of them are 9852 // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the 9853 // LHS). 9854 if (LHS->getNumProtocols() > 0) { 9855 // OK if conversion of LHS to SuperClass results in narrowing of types 9856 // ; i.e., SuperClass may implement at least one of the protocols 9857 // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok. 9858 // But not SuperObj<P1,P2,P3> = lhs<P1,P2>. 9859 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols; 9860 CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols); 9861 // Also, if RHS has explicit quelifiers, include them for comparing with LHS's 9862 // qualifiers. 9863 for (auto *RHSPI : RHS->quals()) 9864 CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols); 9865 // If there is no protocols associated with RHS, it is not a match. 9866 if (SuperClassInheritedProtocols.empty()) 9867 return false; 9868 9869 for (const auto *LHSProto : LHS->quals()) { 9870 bool SuperImplementsProtocol = false; 9871 for (auto *SuperClassProto : SuperClassInheritedProtocols) 9872 if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) { 9873 SuperImplementsProtocol = true; 9874 break; 9875 } 9876 if (!SuperImplementsProtocol) 9877 return false; 9878 } 9879 } 9880 9881 // If the LHS is specialized, we may need to check type arguments. 9882 if (LHS->isSpecialized()) { 9883 // Follow the superclass chain until we've matched the LHS class in the 9884 // hierarchy. This substitutes type arguments through. 9885 const ObjCObjectType *RHSSuper = RHS; 9886 while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface)) 9887 RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>(); 9888 9889 // If the RHS is specializd, compare type arguments. 9890 if (RHSSuper->isSpecialized() && 9891 !sameObjCTypeArgs(*this, LHS->getInterface(), 9892 LHS->getTypeArgs(), RHSSuper->getTypeArgs(), 9893 /*stripKindOf=*/true)) { 9894 return false; 9895 } 9896 } 9897 9898 return true; 9899 } 9900 9901 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) { 9902 // get the "pointed to" types 9903 const auto *LHSOPT = LHS->getAs<ObjCObjectPointerType>(); 9904 const auto *RHSOPT = RHS->getAs<ObjCObjectPointerType>(); 9905 9906 if (!LHSOPT || !RHSOPT) 9907 return false; 9908 9909 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || 9910 canAssignObjCInterfaces(RHSOPT, LHSOPT); 9911 } 9912 9913 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) { 9914 return canAssignObjCInterfaces( 9915 getObjCObjectPointerType(To)->castAs<ObjCObjectPointerType>(), 9916 getObjCObjectPointerType(From)->castAs<ObjCObjectPointerType>()); 9917 } 9918 9919 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible, 9920 /// both shall have the identically qualified version of a compatible type. 9921 /// C99 6.2.7p1: Two types have compatible types if their types are the 9922 /// same. See 6.7.[2,3,5] for additional rules. 9923 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, 9924 bool CompareUnqualified) { 9925 if (getLangOpts().CPlusPlus) 9926 return hasSameType(LHS, RHS); 9927 9928 return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull(); 9929 } 9930 9931 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) { 9932 return typesAreCompatible(LHS, RHS); 9933 } 9934 9935 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) { 9936 return !mergeTypes(LHS, RHS, true).isNull(); 9937 } 9938 9939 /// mergeTransparentUnionType - if T is a transparent union type and a member 9940 /// of T is compatible with SubType, return the merged type, else return 9941 /// QualType() 9942 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, 9943 bool OfBlockPointer, 9944 bool Unqualified) { 9945 if (const RecordType *UT = T->getAsUnionType()) { 9946 RecordDecl *UD = UT->getDecl(); 9947 if (UD->hasAttr<TransparentUnionAttr>()) { 9948 for (const auto *I : UD->fields()) { 9949 QualType ET = I->getType().getUnqualifiedType(); 9950 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); 9951 if (!MT.isNull()) 9952 return MT; 9953 } 9954 } 9955 } 9956 9957 return {}; 9958 } 9959 9960 /// mergeFunctionParameterTypes - merge two types which appear as function 9961 /// parameter types 9962 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs, 9963 bool OfBlockPointer, 9964 bool Unqualified) { 9965 // GNU extension: two types are compatible if they appear as a function 9966 // argument, one of the types is a transparent union type and the other 9967 // type is compatible with a union member 9968 QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer, 9969 Unqualified); 9970 if (!lmerge.isNull()) 9971 return lmerge; 9972 9973 QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer, 9974 Unqualified); 9975 if (!rmerge.isNull()) 9976 return rmerge; 9977 9978 return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified); 9979 } 9980 9981 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs, 9982 bool OfBlockPointer, bool Unqualified, 9983 bool AllowCXX) { 9984 const auto *lbase = lhs->castAs<FunctionType>(); 9985 const auto *rbase = rhs->castAs<FunctionType>(); 9986 const auto *lproto = dyn_cast<FunctionProtoType>(lbase); 9987 const auto *rproto = dyn_cast<FunctionProtoType>(rbase); 9988 bool allLTypes = true; 9989 bool allRTypes = true; 9990 9991 // Check return type 9992 QualType retType; 9993 if (OfBlockPointer) { 9994 QualType RHS = rbase->getReturnType(); 9995 QualType LHS = lbase->getReturnType(); 9996 bool UnqualifiedResult = Unqualified; 9997 if (!UnqualifiedResult) 9998 UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers()); 9999 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); 10000 } 10001 else 10002 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, 10003 Unqualified); 10004 if (retType.isNull()) 10005 return {}; 10006 10007 if (Unqualified) 10008 retType = retType.getUnqualifiedType(); 10009 10010 CanQualType LRetType = getCanonicalType(lbase->getReturnType()); 10011 CanQualType RRetType = getCanonicalType(rbase->getReturnType()); 10012 if (Unqualified) { 10013 LRetType = LRetType.getUnqualifiedType(); 10014 RRetType = RRetType.getUnqualifiedType(); 10015 } 10016 10017 if (getCanonicalType(retType) != LRetType) 10018 allLTypes = false; 10019 if (getCanonicalType(retType) != RRetType) 10020 allRTypes = false; 10021 10022 // FIXME: double check this 10023 // FIXME: should we error if lbase->getRegParmAttr() != 0 && 10024 // rbase->getRegParmAttr() != 0 && 10025 // lbase->getRegParmAttr() != rbase->getRegParmAttr()? 10026 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); 10027 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo(); 10028 10029 // Compatible functions must have compatible calling conventions 10030 if (lbaseInfo.getCC() != rbaseInfo.getCC()) 10031 return {}; 10032 10033 // Regparm is part of the calling convention. 10034 if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm()) 10035 return {}; 10036 if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm()) 10037 return {}; 10038 10039 if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult()) 10040 return {}; 10041 if (lbaseInfo.getNoCallerSavedRegs() != rbaseInfo.getNoCallerSavedRegs()) 10042 return {}; 10043 if (lbaseInfo.getNoCfCheck() != rbaseInfo.getNoCfCheck()) 10044 return {}; 10045 10046 // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'. 10047 bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn(); 10048 10049 if (lbaseInfo.getNoReturn() != NoReturn) 10050 allLTypes = false; 10051 if (rbaseInfo.getNoReturn() != NoReturn) 10052 allRTypes = false; 10053 10054 FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn); 10055 10056 if (lproto && rproto) { // two C99 style function prototypes 10057 assert((AllowCXX || 10058 (!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec())) && 10059 "C++ shouldn't be here"); 10060 // Compatible functions must have the same number of parameters 10061 if (lproto->getNumParams() != rproto->getNumParams()) 10062 return {}; 10063 10064 // Variadic and non-variadic functions aren't compatible 10065 if (lproto->isVariadic() != rproto->isVariadic()) 10066 return {}; 10067 10068 if (lproto->getMethodQuals() != rproto->getMethodQuals()) 10069 return {}; 10070 10071 SmallVector<FunctionProtoType::ExtParameterInfo, 4> newParamInfos; 10072 bool canUseLeft, canUseRight; 10073 if (!mergeExtParameterInfo(lproto, rproto, canUseLeft, canUseRight, 10074 newParamInfos)) 10075 return {}; 10076 10077 if (!canUseLeft) 10078 allLTypes = false; 10079 if (!canUseRight) 10080 allRTypes = false; 10081 10082 // Check parameter type compatibility 10083 SmallVector<QualType, 10> types; 10084 for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) { 10085 QualType lParamType = lproto->getParamType(i).getUnqualifiedType(); 10086 QualType rParamType = rproto->getParamType(i).getUnqualifiedType(); 10087 QualType paramType = mergeFunctionParameterTypes( 10088 lParamType, rParamType, OfBlockPointer, Unqualified); 10089 if (paramType.isNull()) 10090 return {}; 10091 10092 if (Unqualified) 10093 paramType = paramType.getUnqualifiedType(); 10094 10095 types.push_back(paramType); 10096 if (Unqualified) { 10097 lParamType = lParamType.getUnqualifiedType(); 10098 rParamType = rParamType.getUnqualifiedType(); 10099 } 10100 10101 if (getCanonicalType(paramType) != getCanonicalType(lParamType)) 10102 allLTypes = false; 10103 if (getCanonicalType(paramType) != getCanonicalType(rParamType)) 10104 allRTypes = false; 10105 } 10106 10107 if (allLTypes) return lhs; 10108 if (allRTypes) return rhs; 10109 10110 FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo(); 10111 EPI.ExtInfo = einfo; 10112 EPI.ExtParameterInfos = 10113 newParamInfos.empty() ? nullptr : newParamInfos.data(); 10114 return getFunctionType(retType, types, EPI); 10115 } 10116 10117 if (lproto) allRTypes = false; 10118 if (rproto) allLTypes = false; 10119 10120 const FunctionProtoType *proto = lproto ? lproto : rproto; 10121 if (proto) { 10122 assert((AllowCXX || !proto->hasExceptionSpec()) && "C++ shouldn't be here"); 10123 if (proto->isVariadic()) 10124 return {}; 10125 // Check that the types are compatible with the types that 10126 // would result from default argument promotions (C99 6.7.5.3p15). 10127 // The only types actually affected are promotable integer 10128 // types and floats, which would be passed as a different 10129 // type depending on whether the prototype is visible. 10130 for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) { 10131 QualType paramTy = proto->getParamType(i); 10132 10133 // Look at the converted type of enum types, since that is the type used 10134 // to pass enum values. 10135 if (const auto *Enum = paramTy->getAs<EnumType>()) { 10136 paramTy = Enum->getDecl()->getIntegerType(); 10137 if (paramTy.isNull()) 10138 return {}; 10139 } 10140 10141 if (paramTy->isPromotableIntegerType() || 10142 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) 10143 return {}; 10144 } 10145 10146 if (allLTypes) return lhs; 10147 if (allRTypes) return rhs; 10148 10149 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo(); 10150 EPI.ExtInfo = einfo; 10151 return getFunctionType(retType, proto->getParamTypes(), EPI); 10152 } 10153 10154 if (allLTypes) return lhs; 10155 if (allRTypes) return rhs; 10156 return getFunctionNoProtoType(retType, einfo); 10157 } 10158 10159 /// Given that we have an enum type and a non-enum type, try to merge them. 10160 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET, 10161 QualType other, bool isBlockReturnType) { 10162 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char, 10163 // a signed integer type, or an unsigned integer type. 10164 // Compatibility is based on the underlying type, not the promotion 10165 // type. 10166 QualType underlyingType = ET->getDecl()->getIntegerType(); 10167 if (underlyingType.isNull()) 10168 return {}; 10169 if (Context.hasSameType(underlyingType, other)) 10170 return other; 10171 10172 // In block return types, we're more permissive and accept any 10173 // integral type of the same size. 10174 if (isBlockReturnType && other->isIntegerType() && 10175 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) 10176 return other; 10177 10178 return {}; 10179 } 10180 10181 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS, 10182 bool OfBlockPointer, 10183 bool Unqualified, bool BlockReturnType) { 10184 // For C++ we will not reach this code with reference types (see below), 10185 // for OpenMP variant call overloading we might. 10186 // 10187 // C++ [expr]: If an expression initially has the type "reference to T", the 10188 // type is adjusted to "T" prior to any further analysis, the expression 10189 // designates the object or function denoted by the reference, and the 10190 // expression is an lvalue unless the reference is an rvalue reference and 10191 // the expression is a function call (possibly inside parentheses). 10192 auto *LHSRefTy = LHS->getAs<ReferenceType>(); 10193 auto *RHSRefTy = RHS->getAs<ReferenceType>(); 10194 if (LangOpts.OpenMP && LHSRefTy && RHSRefTy && 10195 LHS->getTypeClass() == RHS->getTypeClass()) 10196 return mergeTypes(LHSRefTy->getPointeeType(), RHSRefTy->getPointeeType(), 10197 OfBlockPointer, Unqualified, BlockReturnType); 10198 if (LHSRefTy || RHSRefTy) 10199 return {}; 10200 10201 if (Unqualified) { 10202 LHS = LHS.getUnqualifiedType(); 10203 RHS = RHS.getUnqualifiedType(); 10204 } 10205 10206 QualType LHSCan = getCanonicalType(LHS), 10207 RHSCan = getCanonicalType(RHS); 10208 10209 // If two types are identical, they are compatible. 10210 if (LHSCan == RHSCan) 10211 return LHS; 10212 10213 // If the qualifiers are different, the types aren't compatible... mostly. 10214 Qualifiers LQuals = LHSCan.getLocalQualifiers(); 10215 Qualifiers RQuals = RHSCan.getLocalQualifiers(); 10216 if (LQuals != RQuals) { 10217 // If any of these qualifiers are different, we have a type 10218 // mismatch. 10219 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() || 10220 LQuals.getAddressSpace() != RQuals.getAddressSpace() || 10221 LQuals.getObjCLifetime() != RQuals.getObjCLifetime() || 10222 LQuals.hasUnaligned() != RQuals.hasUnaligned()) 10223 return {}; 10224 10225 // Exactly one GC qualifier difference is allowed: __strong is 10226 // okay if the other type has no GC qualifier but is an Objective 10227 // C object pointer (i.e. implicitly strong by default). We fix 10228 // this by pretending that the unqualified type was actually 10229 // qualified __strong. 10230 Qualifiers::GC GC_L = LQuals.getObjCGCAttr(); 10231 Qualifiers::GC GC_R = RQuals.getObjCGCAttr(); 10232 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements"); 10233 10234 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak) 10235 return {}; 10236 10237 if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) { 10238 return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong)); 10239 } 10240 if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) { 10241 return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS); 10242 } 10243 return {}; 10244 } 10245 10246 // Okay, qualifiers are equal. 10247 10248 Type::TypeClass LHSClass = LHSCan->getTypeClass(); 10249 Type::TypeClass RHSClass = RHSCan->getTypeClass(); 10250 10251 // We want to consider the two function types to be the same for these 10252 // comparisons, just force one to the other. 10253 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto; 10254 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto; 10255 10256 // Same as above for arrays 10257 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray) 10258 LHSClass = Type::ConstantArray; 10259 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray) 10260 RHSClass = Type::ConstantArray; 10261 10262 // ObjCInterfaces are just specialized ObjCObjects. 10263 if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject; 10264 if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject; 10265 10266 // Canonicalize ExtVector -> Vector. 10267 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector; 10268 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector; 10269 10270 // If the canonical type classes don't match. 10271 if (LHSClass != RHSClass) { 10272 // Note that we only have special rules for turning block enum 10273 // returns into block int returns, not vice-versa. 10274 if (const auto *ETy = LHS->getAs<EnumType>()) { 10275 return mergeEnumWithInteger(*this, ETy, RHS, false); 10276 } 10277 if (const EnumType* ETy = RHS->getAs<EnumType>()) { 10278 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType); 10279 } 10280 // allow block pointer type to match an 'id' type. 10281 if (OfBlockPointer && !BlockReturnType) { 10282 if (LHS->isObjCIdType() && RHS->isBlockPointerType()) 10283 return LHS; 10284 if (RHS->isObjCIdType() && LHS->isBlockPointerType()) 10285 return RHS; 10286 } 10287 10288 return {}; 10289 } 10290 10291 // The canonical type classes match. 10292 switch (LHSClass) { 10293 #define TYPE(Class, Base) 10294 #define ABSTRACT_TYPE(Class, Base) 10295 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: 10296 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: 10297 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 10298 #include "clang/AST/TypeNodes.inc" 10299 llvm_unreachable("Non-canonical and dependent types shouldn't get here"); 10300 10301 case Type::Auto: 10302 case Type::DeducedTemplateSpecialization: 10303 case Type::LValueReference: 10304 case Type::RValueReference: 10305 case Type::MemberPointer: 10306 llvm_unreachable("C++ should never be in mergeTypes"); 10307 10308 case Type::ObjCInterface: 10309 case Type::IncompleteArray: 10310 case Type::VariableArray: 10311 case Type::FunctionProto: 10312 case Type::ExtVector: 10313 llvm_unreachable("Types are eliminated above"); 10314 10315 case Type::Pointer: 10316 { 10317 // Merge two pointer types, while trying to preserve typedef info 10318 QualType LHSPointee = LHS->castAs<PointerType>()->getPointeeType(); 10319 QualType RHSPointee = RHS->castAs<PointerType>()->getPointeeType(); 10320 if (Unqualified) { 10321 LHSPointee = LHSPointee.getUnqualifiedType(); 10322 RHSPointee = RHSPointee.getUnqualifiedType(); 10323 } 10324 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false, 10325 Unqualified); 10326 if (ResultType.isNull()) 10327 return {}; 10328 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType)) 10329 return LHS; 10330 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType)) 10331 return RHS; 10332 return getPointerType(ResultType); 10333 } 10334 case Type::BlockPointer: 10335 { 10336 // Merge two block pointer types, while trying to preserve typedef info 10337 QualType LHSPointee = LHS->castAs<BlockPointerType>()->getPointeeType(); 10338 QualType RHSPointee = RHS->castAs<BlockPointerType>()->getPointeeType(); 10339 if (Unqualified) { 10340 LHSPointee = LHSPointee.getUnqualifiedType(); 10341 RHSPointee = RHSPointee.getUnqualifiedType(); 10342 } 10343 if (getLangOpts().OpenCL) { 10344 Qualifiers LHSPteeQual = LHSPointee.getQualifiers(); 10345 Qualifiers RHSPteeQual = RHSPointee.getQualifiers(); 10346 // Blocks can't be an expression in a ternary operator (OpenCL v2.0 10347 // 6.12.5) thus the following check is asymmetric. 10348 if (!LHSPteeQual.isAddressSpaceSupersetOf(RHSPteeQual)) 10349 return {}; 10350 LHSPteeQual.removeAddressSpace(); 10351 RHSPteeQual.removeAddressSpace(); 10352 LHSPointee = 10353 QualType(LHSPointee.getTypePtr(), LHSPteeQual.getAsOpaqueValue()); 10354 RHSPointee = 10355 QualType(RHSPointee.getTypePtr(), RHSPteeQual.getAsOpaqueValue()); 10356 } 10357 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer, 10358 Unqualified); 10359 if (ResultType.isNull()) 10360 return {}; 10361 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType)) 10362 return LHS; 10363 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType)) 10364 return RHS; 10365 return getBlockPointerType(ResultType); 10366 } 10367 case Type::Atomic: 10368 { 10369 // Merge two pointer types, while trying to preserve typedef info 10370 QualType LHSValue = LHS->castAs<AtomicType>()->getValueType(); 10371 QualType RHSValue = RHS->castAs<AtomicType>()->getValueType(); 10372 if (Unqualified) { 10373 LHSValue = LHSValue.getUnqualifiedType(); 10374 RHSValue = RHSValue.getUnqualifiedType(); 10375 } 10376 QualType ResultType = mergeTypes(LHSValue, RHSValue, false, 10377 Unqualified); 10378 if (ResultType.isNull()) 10379 return {}; 10380 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType)) 10381 return LHS; 10382 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType)) 10383 return RHS; 10384 return getAtomicType(ResultType); 10385 } 10386 case Type::ConstantArray: 10387 { 10388 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS); 10389 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS); 10390 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize()) 10391 return {}; 10392 10393 QualType LHSElem = getAsArrayType(LHS)->getElementType(); 10394 QualType RHSElem = getAsArrayType(RHS)->getElementType(); 10395 if (Unqualified) { 10396 LHSElem = LHSElem.getUnqualifiedType(); 10397 RHSElem = RHSElem.getUnqualifiedType(); 10398 } 10399 10400 QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified); 10401 if (ResultType.isNull()) 10402 return {}; 10403 10404 const VariableArrayType* LVAT = getAsVariableArrayType(LHS); 10405 const VariableArrayType* RVAT = getAsVariableArrayType(RHS); 10406 10407 // If either side is a variable array, and both are complete, check whether 10408 // the current dimension is definite. 10409 if (LVAT || RVAT) { 10410 auto SizeFetch = [this](const VariableArrayType* VAT, 10411 const ConstantArrayType* CAT) 10412 -> std::pair<bool,llvm::APInt> { 10413 if (VAT) { 10414 Optional<llvm::APSInt> TheInt; 10415 Expr *E = VAT->getSizeExpr(); 10416 if (E && (TheInt = E->getIntegerConstantExpr(*this))) 10417 return std::make_pair(true, *TheInt); 10418 return std::make_pair(false, llvm::APSInt()); 10419 } 10420 if (CAT) 10421 return std::make_pair(true, CAT->getSize()); 10422 return std::make_pair(false, llvm::APInt()); 10423 }; 10424 10425 bool HaveLSize, HaveRSize; 10426 llvm::APInt LSize, RSize; 10427 std::tie(HaveLSize, LSize) = SizeFetch(LVAT, LCAT); 10428 std::tie(HaveRSize, RSize) = SizeFetch(RVAT, RCAT); 10429 if (HaveLSize && HaveRSize && !llvm::APInt::isSameValue(LSize, RSize)) 10430 return {}; // Definite, but unequal, array dimension 10431 } 10432 10433 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) 10434 return LHS; 10435 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) 10436 return RHS; 10437 if (LCAT) 10438 return getConstantArrayType(ResultType, LCAT->getSize(), 10439 LCAT->getSizeExpr(), 10440 ArrayType::ArraySizeModifier(), 0); 10441 if (RCAT) 10442 return getConstantArrayType(ResultType, RCAT->getSize(), 10443 RCAT->getSizeExpr(), 10444 ArrayType::ArraySizeModifier(), 0); 10445 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) 10446 return LHS; 10447 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) 10448 return RHS; 10449 if (LVAT) { 10450 // FIXME: This isn't correct! But tricky to implement because 10451 // the array's size has to be the size of LHS, but the type 10452 // has to be different. 10453 return LHS; 10454 } 10455 if (RVAT) { 10456 // FIXME: This isn't correct! But tricky to implement because 10457 // the array's size has to be the size of RHS, but the type 10458 // has to be different. 10459 return RHS; 10460 } 10461 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS; 10462 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS; 10463 return getIncompleteArrayType(ResultType, 10464 ArrayType::ArraySizeModifier(), 0); 10465 } 10466 case Type::FunctionNoProto: 10467 return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified); 10468 case Type::Record: 10469 case Type::Enum: 10470 return {}; 10471 case Type::Builtin: 10472 // Only exactly equal builtin types are compatible, which is tested above. 10473 return {}; 10474 case Type::Complex: 10475 // Distinct complex types are incompatible. 10476 return {}; 10477 case Type::Vector: 10478 // FIXME: The merged type should be an ExtVector! 10479 if (areCompatVectorTypes(LHSCan->castAs<VectorType>(), 10480 RHSCan->castAs<VectorType>())) 10481 return LHS; 10482 return {}; 10483 case Type::ConstantMatrix: 10484 if (areCompatMatrixTypes(LHSCan->castAs<ConstantMatrixType>(), 10485 RHSCan->castAs<ConstantMatrixType>())) 10486 return LHS; 10487 return {}; 10488 case Type::ObjCObject: { 10489 // Check if the types are assignment compatible. 10490 // FIXME: This should be type compatibility, e.g. whether 10491 // "LHS x; RHS x;" at global scope is legal. 10492 if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectType>(), 10493 RHS->castAs<ObjCObjectType>())) 10494 return LHS; 10495 return {}; 10496 } 10497 case Type::ObjCObjectPointer: 10498 if (OfBlockPointer) { 10499 if (canAssignObjCInterfacesInBlockPointer( 10500 LHS->castAs<ObjCObjectPointerType>(), 10501 RHS->castAs<ObjCObjectPointerType>(), BlockReturnType)) 10502 return LHS; 10503 return {}; 10504 } 10505 if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectPointerType>(), 10506 RHS->castAs<ObjCObjectPointerType>())) 10507 return LHS; 10508 return {}; 10509 case Type::Pipe: 10510 assert(LHS != RHS && 10511 "Equivalent pipe types should have already been handled!"); 10512 return {}; 10513 case Type::BitInt: { 10514 // Merge two bit-precise int types, while trying to preserve typedef info. 10515 bool LHSUnsigned = LHS->castAs<BitIntType>()->isUnsigned(); 10516 bool RHSUnsigned = RHS->castAs<BitIntType>()->isUnsigned(); 10517 unsigned LHSBits = LHS->castAs<BitIntType>()->getNumBits(); 10518 unsigned RHSBits = RHS->castAs<BitIntType>()->getNumBits(); 10519 10520 // Like unsigned/int, shouldn't have a type if they don't match. 10521 if (LHSUnsigned != RHSUnsigned) 10522 return {}; 10523 10524 if (LHSBits != RHSBits) 10525 return {}; 10526 return LHS; 10527 } 10528 } 10529 10530 llvm_unreachable("Invalid Type::Class!"); 10531 } 10532 10533 bool ASTContext::mergeExtParameterInfo( 10534 const FunctionProtoType *FirstFnType, const FunctionProtoType *SecondFnType, 10535 bool &CanUseFirst, bool &CanUseSecond, 10536 SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &NewParamInfos) { 10537 assert(NewParamInfos.empty() && "param info list not empty"); 10538 CanUseFirst = CanUseSecond = true; 10539 bool FirstHasInfo = FirstFnType->hasExtParameterInfos(); 10540 bool SecondHasInfo = SecondFnType->hasExtParameterInfos(); 10541 10542 // Fast path: if the first type doesn't have ext parameter infos, 10543 // we match if and only if the second type also doesn't have them. 10544 if (!FirstHasInfo && !SecondHasInfo) 10545 return true; 10546 10547 bool NeedParamInfo = false; 10548 size_t E = FirstHasInfo ? FirstFnType->getExtParameterInfos().size() 10549 : SecondFnType->getExtParameterInfos().size(); 10550 10551 for (size_t I = 0; I < E; ++I) { 10552 FunctionProtoType::ExtParameterInfo FirstParam, SecondParam; 10553 if (FirstHasInfo) 10554 FirstParam = FirstFnType->getExtParameterInfo(I); 10555 if (SecondHasInfo) 10556 SecondParam = SecondFnType->getExtParameterInfo(I); 10557 10558 // Cannot merge unless everything except the noescape flag matches. 10559 if (FirstParam.withIsNoEscape(false) != SecondParam.withIsNoEscape(false)) 10560 return false; 10561 10562 bool FirstNoEscape = FirstParam.isNoEscape(); 10563 bool SecondNoEscape = SecondParam.isNoEscape(); 10564 bool IsNoEscape = FirstNoEscape && SecondNoEscape; 10565 NewParamInfos.push_back(FirstParam.withIsNoEscape(IsNoEscape)); 10566 if (NewParamInfos.back().getOpaqueValue()) 10567 NeedParamInfo = true; 10568 if (FirstNoEscape != IsNoEscape) 10569 CanUseFirst = false; 10570 if (SecondNoEscape != IsNoEscape) 10571 CanUseSecond = false; 10572 } 10573 10574 if (!NeedParamInfo) 10575 NewParamInfos.clear(); 10576 10577 return true; 10578 } 10579 10580 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) { 10581 ObjCLayouts[CD] = nullptr; 10582 } 10583 10584 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and 10585 /// 'RHS' attributes and returns the merged version; including for function 10586 /// return types. 10587 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) { 10588 QualType LHSCan = getCanonicalType(LHS), 10589 RHSCan = getCanonicalType(RHS); 10590 // If two types are identical, they are compatible. 10591 if (LHSCan == RHSCan) 10592 return LHS; 10593 if (RHSCan->isFunctionType()) { 10594 if (!LHSCan->isFunctionType()) 10595 return {}; 10596 QualType OldReturnType = 10597 cast<FunctionType>(RHSCan.getTypePtr())->getReturnType(); 10598 QualType NewReturnType = 10599 cast<FunctionType>(LHSCan.getTypePtr())->getReturnType(); 10600 QualType ResReturnType = 10601 mergeObjCGCQualifiers(NewReturnType, OldReturnType); 10602 if (ResReturnType.isNull()) 10603 return {}; 10604 if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) { 10605 // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo(); 10606 // In either case, use OldReturnType to build the new function type. 10607 const auto *F = LHS->castAs<FunctionType>(); 10608 if (const auto *FPT = cast<FunctionProtoType>(F)) { 10609 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 10610 EPI.ExtInfo = getFunctionExtInfo(LHS); 10611 QualType ResultType = 10612 getFunctionType(OldReturnType, FPT->getParamTypes(), EPI); 10613 return ResultType; 10614 } 10615 } 10616 return {}; 10617 } 10618 10619 // If the qualifiers are different, the types can still be merged. 10620 Qualifiers LQuals = LHSCan.getLocalQualifiers(); 10621 Qualifiers RQuals = RHSCan.getLocalQualifiers(); 10622 if (LQuals != RQuals) { 10623 // If any of these qualifiers are different, we have a type mismatch. 10624 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() || 10625 LQuals.getAddressSpace() != RQuals.getAddressSpace()) 10626 return {}; 10627 10628 // Exactly one GC qualifier difference is allowed: __strong is 10629 // okay if the other type has no GC qualifier but is an Objective 10630 // C object pointer (i.e. implicitly strong by default). We fix 10631 // this by pretending that the unqualified type was actually 10632 // qualified __strong. 10633 Qualifiers::GC GC_L = LQuals.getObjCGCAttr(); 10634 Qualifiers::GC GC_R = RQuals.getObjCGCAttr(); 10635 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements"); 10636 10637 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak) 10638 return {}; 10639 10640 if (GC_L == Qualifiers::Strong) 10641 return LHS; 10642 if (GC_R == Qualifiers::Strong) 10643 return RHS; 10644 return {}; 10645 } 10646 10647 if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) { 10648 QualType LHSBaseQT = LHS->castAs<ObjCObjectPointerType>()->getPointeeType(); 10649 QualType RHSBaseQT = RHS->castAs<ObjCObjectPointerType>()->getPointeeType(); 10650 QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT); 10651 if (ResQT == LHSBaseQT) 10652 return LHS; 10653 if (ResQT == RHSBaseQT) 10654 return RHS; 10655 } 10656 return {}; 10657 } 10658 10659 //===----------------------------------------------------------------------===// 10660 // Integer Predicates 10661 //===----------------------------------------------------------------------===// 10662 10663 unsigned ASTContext::getIntWidth(QualType T) const { 10664 if (const auto *ET = T->getAs<EnumType>()) 10665 T = ET->getDecl()->getIntegerType(); 10666 if (T->isBooleanType()) 10667 return 1; 10668 if (const auto *EIT = T->getAs<BitIntType>()) 10669 return EIT->getNumBits(); 10670 // For builtin types, just use the standard type sizing method 10671 return (unsigned)getTypeSize(T); 10672 } 10673 10674 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const { 10675 assert((T->hasSignedIntegerRepresentation() || T->isSignedFixedPointType()) && 10676 "Unexpected type"); 10677 10678 // Turn <4 x signed int> -> <4 x unsigned int> 10679 if (const auto *VTy = T->getAs<VectorType>()) 10680 return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()), 10681 VTy->getNumElements(), VTy->getVectorKind()); 10682 10683 // For _BitInt, return an unsigned _BitInt with same width. 10684 if (const auto *EITy = T->getAs<BitIntType>()) 10685 return getBitIntType(/*Unsigned=*/true, EITy->getNumBits()); 10686 10687 // For enums, get the underlying integer type of the enum, and let the general 10688 // integer type signchanging code handle it. 10689 if (const auto *ETy = T->getAs<EnumType>()) 10690 T = ETy->getDecl()->getIntegerType(); 10691 10692 switch (T->castAs<BuiltinType>()->getKind()) { 10693 case BuiltinType::Char_S: 10694 case BuiltinType::SChar: 10695 return UnsignedCharTy; 10696 case BuiltinType::Short: 10697 return UnsignedShortTy; 10698 case BuiltinType::Int: 10699 return UnsignedIntTy; 10700 case BuiltinType::Long: 10701 return UnsignedLongTy; 10702 case BuiltinType::LongLong: 10703 return UnsignedLongLongTy; 10704 case BuiltinType::Int128: 10705 return UnsignedInt128Ty; 10706 // wchar_t is special. It is either signed or not, but when it's signed, 10707 // there's no matching "unsigned wchar_t". Therefore we return the unsigned 10708 // version of it's underlying type instead. 10709 case BuiltinType::WChar_S: 10710 return getUnsignedWCharType(); 10711 10712 case BuiltinType::ShortAccum: 10713 return UnsignedShortAccumTy; 10714 case BuiltinType::Accum: 10715 return UnsignedAccumTy; 10716 case BuiltinType::LongAccum: 10717 return UnsignedLongAccumTy; 10718 case BuiltinType::SatShortAccum: 10719 return SatUnsignedShortAccumTy; 10720 case BuiltinType::SatAccum: 10721 return SatUnsignedAccumTy; 10722 case BuiltinType::SatLongAccum: 10723 return SatUnsignedLongAccumTy; 10724 case BuiltinType::ShortFract: 10725 return UnsignedShortFractTy; 10726 case BuiltinType::Fract: 10727 return UnsignedFractTy; 10728 case BuiltinType::LongFract: 10729 return UnsignedLongFractTy; 10730 case BuiltinType::SatShortFract: 10731 return SatUnsignedShortFractTy; 10732 case BuiltinType::SatFract: 10733 return SatUnsignedFractTy; 10734 case BuiltinType::SatLongFract: 10735 return SatUnsignedLongFractTy; 10736 default: 10737 llvm_unreachable("Unexpected signed integer or fixed point type"); 10738 } 10739 } 10740 10741 QualType ASTContext::getCorrespondingSignedType(QualType T) const { 10742 assert((T->hasUnsignedIntegerRepresentation() || 10743 T->isUnsignedFixedPointType()) && 10744 "Unexpected type"); 10745 10746 // Turn <4 x unsigned int> -> <4 x signed int> 10747 if (const auto *VTy = T->getAs<VectorType>()) 10748 return getVectorType(getCorrespondingSignedType(VTy->getElementType()), 10749 VTy->getNumElements(), VTy->getVectorKind()); 10750 10751 // For _BitInt, return a signed _BitInt with same width. 10752 if (const auto *EITy = T->getAs<BitIntType>()) 10753 return getBitIntType(/*Unsigned=*/false, EITy->getNumBits()); 10754 10755 // For enums, get the underlying integer type of the enum, and let the general 10756 // integer type signchanging code handle it. 10757 if (const auto *ETy = T->getAs<EnumType>()) 10758 T = ETy->getDecl()->getIntegerType(); 10759 10760 switch (T->castAs<BuiltinType>()->getKind()) { 10761 case BuiltinType::Char_U: 10762 case BuiltinType::UChar: 10763 return SignedCharTy; 10764 case BuiltinType::UShort: 10765 return ShortTy; 10766 case BuiltinType::UInt: 10767 return IntTy; 10768 case BuiltinType::ULong: 10769 return LongTy; 10770 case BuiltinType::ULongLong: 10771 return LongLongTy; 10772 case BuiltinType::UInt128: 10773 return Int128Ty; 10774 // wchar_t is special. It is either unsigned or not, but when it's unsigned, 10775 // there's no matching "signed wchar_t". Therefore we return the signed 10776 // version of it's underlying type instead. 10777 case BuiltinType::WChar_U: 10778 return getSignedWCharType(); 10779 10780 case BuiltinType::UShortAccum: 10781 return ShortAccumTy; 10782 case BuiltinType::UAccum: 10783 return AccumTy; 10784 case BuiltinType::ULongAccum: 10785 return LongAccumTy; 10786 case BuiltinType::SatUShortAccum: 10787 return SatShortAccumTy; 10788 case BuiltinType::SatUAccum: 10789 return SatAccumTy; 10790 case BuiltinType::SatULongAccum: 10791 return SatLongAccumTy; 10792 case BuiltinType::UShortFract: 10793 return ShortFractTy; 10794 case BuiltinType::UFract: 10795 return FractTy; 10796 case BuiltinType::ULongFract: 10797 return LongFractTy; 10798 case BuiltinType::SatUShortFract: 10799 return SatShortFractTy; 10800 case BuiltinType::SatUFract: 10801 return SatFractTy; 10802 case BuiltinType::SatULongFract: 10803 return SatLongFractTy; 10804 default: 10805 llvm_unreachable("Unexpected unsigned integer or fixed point type"); 10806 } 10807 } 10808 10809 ASTMutationListener::~ASTMutationListener() = default; 10810 10811 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD, 10812 QualType ReturnType) {} 10813 10814 //===----------------------------------------------------------------------===// 10815 // Builtin Type Computation 10816 //===----------------------------------------------------------------------===// 10817 10818 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the 10819 /// pointer over the consumed characters. This returns the resultant type. If 10820 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic 10821 /// types. This allows "v2i*" to be parsed as a pointer to a v2i instead of 10822 /// a vector of "i*". 10823 /// 10824 /// RequiresICE is filled in on return to indicate whether the value is required 10825 /// to be an Integer Constant Expression. 10826 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context, 10827 ASTContext::GetBuiltinTypeError &Error, 10828 bool &RequiresICE, 10829 bool AllowTypeModifiers) { 10830 // Modifiers. 10831 int HowLong = 0; 10832 bool Signed = false, Unsigned = false; 10833 RequiresICE = false; 10834 10835 // Read the prefixed modifiers first. 10836 bool Done = false; 10837 #ifndef NDEBUG 10838 bool IsSpecial = false; 10839 #endif 10840 while (!Done) { 10841 switch (*Str++) { 10842 default: Done = true; --Str; break; 10843 case 'I': 10844 RequiresICE = true; 10845 break; 10846 case 'S': 10847 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!"); 10848 assert(!Signed && "Can't use 'S' modifier multiple times!"); 10849 Signed = true; 10850 break; 10851 case 'U': 10852 assert(!Signed && "Can't use both 'S' and 'U' modifiers!"); 10853 assert(!Unsigned && "Can't use 'U' modifier multiple times!"); 10854 Unsigned = true; 10855 break; 10856 case 'L': 10857 assert(!IsSpecial && "Can't use 'L' with 'W', 'N', 'Z' or 'O' modifiers"); 10858 assert(HowLong <= 2 && "Can't have LLLL modifier"); 10859 ++HowLong; 10860 break; 10861 case 'N': 10862 // 'N' behaves like 'L' for all non LP64 targets and 'int' otherwise. 10863 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10864 assert(HowLong == 0 && "Can't use both 'L' and 'N' modifiers!"); 10865 #ifndef NDEBUG 10866 IsSpecial = true; 10867 #endif 10868 if (Context.getTargetInfo().getLongWidth() == 32) 10869 ++HowLong; 10870 break; 10871 case 'W': 10872 // This modifier represents int64 type. 10873 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10874 assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!"); 10875 #ifndef NDEBUG 10876 IsSpecial = true; 10877 #endif 10878 switch (Context.getTargetInfo().getInt64Type()) { 10879 default: 10880 llvm_unreachable("Unexpected integer type"); 10881 case TargetInfo::SignedLong: 10882 HowLong = 1; 10883 break; 10884 case TargetInfo::SignedLongLong: 10885 HowLong = 2; 10886 break; 10887 } 10888 break; 10889 case 'Z': 10890 // This modifier represents int32 type. 10891 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10892 assert(HowLong == 0 && "Can't use both 'L' and 'Z' modifiers!"); 10893 #ifndef NDEBUG 10894 IsSpecial = true; 10895 #endif 10896 switch (Context.getTargetInfo().getIntTypeByWidth(32, true)) { 10897 default: 10898 llvm_unreachable("Unexpected integer type"); 10899 case TargetInfo::SignedInt: 10900 HowLong = 0; 10901 break; 10902 case TargetInfo::SignedLong: 10903 HowLong = 1; 10904 break; 10905 case TargetInfo::SignedLongLong: 10906 HowLong = 2; 10907 break; 10908 } 10909 break; 10910 case 'O': 10911 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10912 assert(HowLong == 0 && "Can't use both 'L' and 'O' modifiers!"); 10913 #ifndef NDEBUG 10914 IsSpecial = true; 10915 #endif 10916 if (Context.getLangOpts().OpenCL) 10917 HowLong = 1; 10918 else 10919 HowLong = 2; 10920 break; 10921 } 10922 } 10923 10924 QualType Type; 10925 10926 // Read the base type. 10927 switch (*Str++) { 10928 default: llvm_unreachable("Unknown builtin type letter!"); 10929 case 'x': 10930 assert(HowLong == 0 && !Signed && !Unsigned && 10931 "Bad modifiers used with 'x'!"); 10932 Type = Context.Float16Ty; 10933 break; 10934 case 'y': 10935 assert(HowLong == 0 && !Signed && !Unsigned && 10936 "Bad modifiers used with 'y'!"); 10937 Type = Context.BFloat16Ty; 10938 break; 10939 case 'v': 10940 assert(HowLong == 0 && !Signed && !Unsigned && 10941 "Bad modifiers used with 'v'!"); 10942 Type = Context.VoidTy; 10943 break; 10944 case 'h': 10945 assert(HowLong == 0 && !Signed && !Unsigned && 10946 "Bad modifiers used with 'h'!"); 10947 Type = Context.HalfTy; 10948 break; 10949 case 'f': 10950 assert(HowLong == 0 && !Signed && !Unsigned && 10951 "Bad modifiers used with 'f'!"); 10952 Type = Context.FloatTy; 10953 break; 10954 case 'd': 10955 assert(HowLong < 3 && !Signed && !Unsigned && 10956 "Bad modifiers used with 'd'!"); 10957 if (HowLong == 1) 10958 Type = Context.LongDoubleTy; 10959 else if (HowLong == 2) 10960 Type = Context.Float128Ty; 10961 else 10962 Type = Context.DoubleTy; 10963 break; 10964 case 's': 10965 assert(HowLong == 0 && "Bad modifiers used with 's'!"); 10966 if (Unsigned) 10967 Type = Context.UnsignedShortTy; 10968 else 10969 Type = Context.ShortTy; 10970 break; 10971 case 'i': 10972 if (HowLong == 3) 10973 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty; 10974 else if (HowLong == 2) 10975 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy; 10976 else if (HowLong == 1) 10977 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy; 10978 else 10979 Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy; 10980 break; 10981 case 'c': 10982 assert(HowLong == 0 && "Bad modifiers used with 'c'!"); 10983 if (Signed) 10984 Type = Context.SignedCharTy; 10985 else if (Unsigned) 10986 Type = Context.UnsignedCharTy; 10987 else 10988 Type = Context.CharTy; 10989 break; 10990 case 'b': // boolean 10991 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!"); 10992 Type = Context.BoolTy; 10993 break; 10994 case 'z': // size_t. 10995 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!"); 10996 Type = Context.getSizeType(); 10997 break; 10998 case 'w': // wchar_t. 10999 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'w'!"); 11000 Type = Context.getWideCharType(); 11001 break; 11002 case 'F': 11003 Type = Context.getCFConstantStringType(); 11004 break; 11005 case 'G': 11006 Type = Context.getObjCIdType(); 11007 break; 11008 case 'H': 11009 Type = Context.getObjCSelType(); 11010 break; 11011 case 'M': 11012 Type = Context.getObjCSuperType(); 11013 break; 11014 case 'a': 11015 Type = Context.getBuiltinVaListType(); 11016 assert(!Type.isNull() && "builtin va list type not initialized!"); 11017 break; 11018 case 'A': 11019 // This is a "reference" to a va_list; however, what exactly 11020 // this means depends on how va_list is defined. There are two 11021 // different kinds of va_list: ones passed by value, and ones 11022 // passed by reference. An example of a by-value va_list is 11023 // x86, where va_list is a char*. An example of by-ref va_list 11024 // is x86-64, where va_list is a __va_list_tag[1]. For x86, 11025 // we want this argument to be a char*&; for x86-64, we want 11026 // it to be a __va_list_tag*. 11027 Type = Context.getBuiltinVaListType(); 11028 assert(!Type.isNull() && "builtin va list type not initialized!"); 11029 if (Type->isArrayType()) 11030 Type = Context.getArrayDecayedType(Type); 11031 else 11032 Type = Context.getLValueReferenceType(Type); 11033 break; 11034 case 'q': { 11035 char *End; 11036 unsigned NumElements = strtoul(Str, &End, 10); 11037 assert(End != Str && "Missing vector size"); 11038 Str = End; 11039 11040 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, 11041 RequiresICE, false); 11042 assert(!RequiresICE && "Can't require vector ICE"); 11043 11044 Type = Context.getScalableVectorType(ElementType, NumElements); 11045 break; 11046 } 11047 case 'V': { 11048 char *End; 11049 unsigned NumElements = strtoul(Str, &End, 10); 11050 assert(End != Str && "Missing vector size"); 11051 Str = End; 11052 11053 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, 11054 RequiresICE, false); 11055 assert(!RequiresICE && "Can't require vector ICE"); 11056 11057 // TODO: No way to make AltiVec vectors in builtins yet. 11058 Type = Context.getVectorType(ElementType, NumElements, 11059 VectorType::GenericVector); 11060 break; 11061 } 11062 case 'E': { 11063 char *End; 11064 11065 unsigned NumElements = strtoul(Str, &End, 10); 11066 assert(End != Str && "Missing vector size"); 11067 11068 Str = End; 11069 11070 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, 11071 false); 11072 Type = Context.getExtVectorType(ElementType, NumElements); 11073 break; 11074 } 11075 case 'X': { 11076 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, 11077 false); 11078 assert(!RequiresICE && "Can't require complex ICE"); 11079 Type = Context.getComplexType(ElementType); 11080 break; 11081 } 11082 case 'Y': 11083 Type = Context.getPointerDiffType(); 11084 break; 11085 case 'P': 11086 Type = Context.getFILEType(); 11087 if (Type.isNull()) { 11088 Error = ASTContext::GE_Missing_stdio; 11089 return {}; 11090 } 11091 break; 11092 case 'J': 11093 if (Signed) 11094 Type = Context.getsigjmp_bufType(); 11095 else 11096 Type = Context.getjmp_bufType(); 11097 11098 if (Type.isNull()) { 11099 Error = ASTContext::GE_Missing_setjmp; 11100 return {}; 11101 } 11102 break; 11103 case 'K': 11104 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!"); 11105 Type = Context.getucontext_tType(); 11106 11107 if (Type.isNull()) { 11108 Error = ASTContext::GE_Missing_ucontext; 11109 return {}; 11110 } 11111 break; 11112 case 'p': 11113 Type = Context.getProcessIDType(); 11114 break; 11115 } 11116 11117 // If there are modifiers and if we're allowed to parse them, go for it. 11118 Done = !AllowTypeModifiers; 11119 while (!Done) { 11120 switch (char c = *Str++) { 11121 default: Done = true; --Str; break; 11122 case '*': 11123 case '&': { 11124 // Both pointers and references can have their pointee types 11125 // qualified with an address space. 11126 char *End; 11127 unsigned AddrSpace = strtoul(Str, &End, 10); 11128 if (End != Str) { 11129 // Note AddrSpace == 0 is not the same as an unspecified address space. 11130 Type = Context.getAddrSpaceQualType( 11131 Type, 11132 Context.getLangASForBuiltinAddressSpace(AddrSpace)); 11133 Str = End; 11134 } 11135 if (c == '*') 11136 Type = Context.getPointerType(Type); 11137 else 11138 Type = Context.getLValueReferenceType(Type); 11139 break; 11140 } 11141 // FIXME: There's no way to have a built-in with an rvalue ref arg. 11142 case 'C': 11143 Type = Type.withConst(); 11144 break; 11145 case 'D': 11146 Type = Context.getVolatileType(Type); 11147 break; 11148 case 'R': 11149 Type = Type.withRestrict(); 11150 break; 11151 } 11152 } 11153 11154 assert((!RequiresICE || Type->isIntegralOrEnumerationType()) && 11155 "Integer constant 'I' type must be an integer"); 11156 11157 return Type; 11158 } 11159 11160 // On some targets such as PowerPC, some of the builtins are defined with custom 11161 // type descriptors for target-dependent types. These descriptors are decoded in 11162 // other functions, but it may be useful to be able to fall back to default 11163 // descriptor decoding to define builtins mixing target-dependent and target- 11164 // independent types. This function allows decoding one type descriptor with 11165 // default decoding. 11166 QualType ASTContext::DecodeTypeStr(const char *&Str, const ASTContext &Context, 11167 GetBuiltinTypeError &Error, bool &RequireICE, 11168 bool AllowTypeModifiers) const { 11169 return DecodeTypeFromStr(Str, Context, Error, RequireICE, AllowTypeModifiers); 11170 } 11171 11172 /// GetBuiltinType - Return the type for the specified builtin. 11173 QualType ASTContext::GetBuiltinType(unsigned Id, 11174 GetBuiltinTypeError &Error, 11175 unsigned *IntegerConstantArgs) const { 11176 const char *TypeStr = BuiltinInfo.getTypeString(Id); 11177 if (TypeStr[0] == '\0') { 11178 Error = GE_Missing_type; 11179 return {}; 11180 } 11181 11182 SmallVector<QualType, 8> ArgTypes; 11183 11184 bool RequiresICE = false; 11185 Error = GE_None; 11186 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, 11187 RequiresICE, true); 11188 if (Error != GE_None) 11189 return {}; 11190 11191 assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE"); 11192 11193 while (TypeStr[0] && TypeStr[0] != '.') { 11194 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true); 11195 if (Error != GE_None) 11196 return {}; 11197 11198 // If this argument is required to be an IntegerConstantExpression and the 11199 // caller cares, fill in the bitmask we return. 11200 if (RequiresICE && IntegerConstantArgs) 11201 *IntegerConstantArgs |= 1 << ArgTypes.size(); 11202 11203 // Do array -> pointer decay. The builtin should use the decayed type. 11204 if (Ty->isArrayType()) 11205 Ty = getArrayDecayedType(Ty); 11206 11207 ArgTypes.push_back(Ty); 11208 } 11209 11210 if (Id == Builtin::BI__GetExceptionInfo) 11211 return {}; 11212 11213 assert((TypeStr[0] != '.' || TypeStr[1] == 0) && 11214 "'.' should only occur at end of builtin type list!"); 11215 11216 bool Variadic = (TypeStr[0] == '.'); 11217 11218 FunctionType::ExtInfo EI(getDefaultCallingConvention( 11219 Variadic, /*IsCXXMethod=*/false, /*IsBuiltin=*/true)); 11220 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true); 11221 11222 11223 // We really shouldn't be making a no-proto type here. 11224 if (ArgTypes.empty() && Variadic && !getLangOpts().CPlusPlus) 11225 return getFunctionNoProtoType(ResType, EI); 11226 11227 FunctionProtoType::ExtProtoInfo EPI; 11228 EPI.ExtInfo = EI; 11229 EPI.Variadic = Variadic; 11230 if (getLangOpts().CPlusPlus && BuiltinInfo.isNoThrow(Id)) 11231 EPI.ExceptionSpec.Type = 11232 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; 11233 11234 return getFunctionType(ResType, ArgTypes, EPI); 11235 } 11236 11237 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context, 11238 const FunctionDecl *FD) { 11239 if (!FD->isExternallyVisible()) 11240 return GVA_Internal; 11241 11242 // Non-user-provided functions get emitted as weak definitions with every 11243 // use, no matter whether they've been explicitly instantiated etc. 11244 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) 11245 if (!MD->isUserProvided()) 11246 return GVA_DiscardableODR; 11247 11248 GVALinkage External; 11249 switch (FD->getTemplateSpecializationKind()) { 11250 case TSK_Undeclared: 11251 case TSK_ExplicitSpecialization: 11252 External = GVA_StrongExternal; 11253 break; 11254 11255 case TSK_ExplicitInstantiationDefinition: 11256 return GVA_StrongODR; 11257 11258 // C++11 [temp.explicit]p10: 11259 // [ Note: The intent is that an inline function that is the subject of 11260 // an explicit instantiation declaration will still be implicitly 11261 // instantiated when used so that the body can be considered for 11262 // inlining, but that no out-of-line copy of the inline function would be 11263 // generated in the translation unit. -- end note ] 11264 case TSK_ExplicitInstantiationDeclaration: 11265 return GVA_AvailableExternally; 11266 11267 case TSK_ImplicitInstantiation: 11268 External = GVA_DiscardableODR; 11269 break; 11270 } 11271 11272 if (!FD->isInlined()) 11273 return External; 11274 11275 if ((!Context.getLangOpts().CPlusPlus && 11276 !Context.getTargetInfo().getCXXABI().isMicrosoft() && 11277 !FD->hasAttr<DLLExportAttr>()) || 11278 FD->hasAttr<GNUInlineAttr>()) { 11279 // FIXME: This doesn't match gcc's behavior for dllexport inline functions. 11280 11281 // GNU or C99 inline semantics. Determine whether this symbol should be 11282 // externally visible. 11283 if (FD->isInlineDefinitionExternallyVisible()) 11284 return External; 11285 11286 // C99 inline semantics, where the symbol is not externally visible. 11287 return GVA_AvailableExternally; 11288 } 11289 11290 // Functions specified with extern and inline in -fms-compatibility mode 11291 // forcibly get emitted. While the body of the function cannot be later 11292 // replaced, the function definition cannot be discarded. 11293 if (FD->isMSExternInline()) 11294 return GVA_StrongODR; 11295 11296 return GVA_DiscardableODR; 11297 } 11298 11299 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context, 11300 const Decl *D, GVALinkage L) { 11301 // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx 11302 // dllexport/dllimport on inline functions. 11303 if (D->hasAttr<DLLImportAttr>()) { 11304 if (L == GVA_DiscardableODR || L == GVA_StrongODR) 11305 return GVA_AvailableExternally; 11306 } else if (D->hasAttr<DLLExportAttr>()) { 11307 if (L == GVA_DiscardableODR) 11308 return GVA_StrongODR; 11309 } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice) { 11310 // Device-side functions with __global__ attribute must always be 11311 // visible externally so they can be launched from host. 11312 if (D->hasAttr<CUDAGlobalAttr>() && 11313 (L == GVA_DiscardableODR || L == GVA_Internal)) 11314 return GVA_StrongODR; 11315 // Single source offloading languages like CUDA/HIP need to be able to 11316 // access static device variables from host code of the same compilation 11317 // unit. This is done by externalizing the static variable with a shared 11318 // name between the host and device compilation which is the same for the 11319 // same compilation unit whereas different among different compilation 11320 // units. 11321 if (Context.shouldExternalizeStaticVar(D)) 11322 return GVA_StrongExternal; 11323 } 11324 return L; 11325 } 11326 11327 /// Adjust the GVALinkage for a declaration based on what an external AST source 11328 /// knows about whether there can be other definitions of this declaration. 11329 static GVALinkage 11330 adjustGVALinkageForExternalDefinitionKind(const ASTContext &Ctx, const Decl *D, 11331 GVALinkage L) { 11332 ExternalASTSource *Source = Ctx.getExternalSource(); 11333 if (!Source) 11334 return L; 11335 11336 switch (Source->hasExternalDefinitions(D)) { 11337 case ExternalASTSource::EK_Never: 11338 // Other translation units rely on us to provide the definition. 11339 if (L == GVA_DiscardableODR) 11340 return GVA_StrongODR; 11341 break; 11342 11343 case ExternalASTSource::EK_Always: 11344 return GVA_AvailableExternally; 11345 11346 case ExternalASTSource::EK_ReplyHazy: 11347 break; 11348 } 11349 return L; 11350 } 11351 11352 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const { 11353 return adjustGVALinkageForExternalDefinitionKind(*this, FD, 11354 adjustGVALinkageForAttributes(*this, FD, 11355 basicGVALinkageForFunction(*this, FD))); 11356 } 11357 11358 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context, 11359 const VarDecl *VD) { 11360 if (!VD->isExternallyVisible()) 11361 return GVA_Internal; 11362 11363 if (VD->isStaticLocal()) { 11364 const DeclContext *LexicalContext = VD->getParentFunctionOrMethod(); 11365 while (LexicalContext && !isa<FunctionDecl>(LexicalContext)) 11366 LexicalContext = LexicalContext->getLexicalParent(); 11367 11368 // ObjC Blocks can create local variables that don't have a FunctionDecl 11369 // LexicalContext. 11370 if (!LexicalContext) 11371 return GVA_DiscardableODR; 11372 11373 // Otherwise, let the static local variable inherit its linkage from the 11374 // nearest enclosing function. 11375 auto StaticLocalLinkage = 11376 Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext)); 11377 11378 // Itanium ABI 5.2.2: "Each COMDAT group [for a static local variable] must 11379 // be emitted in any object with references to the symbol for the object it 11380 // contains, whether inline or out-of-line." 11381 // Similar behavior is observed with MSVC. An alternative ABI could use 11382 // StrongODR/AvailableExternally to match the function, but none are 11383 // known/supported currently. 11384 if (StaticLocalLinkage == GVA_StrongODR || 11385 StaticLocalLinkage == GVA_AvailableExternally) 11386 return GVA_DiscardableODR; 11387 return StaticLocalLinkage; 11388 } 11389 11390 // MSVC treats in-class initialized static data members as definitions. 11391 // By giving them non-strong linkage, out-of-line definitions won't 11392 // cause link errors. 11393 if (Context.isMSStaticDataMemberInlineDefinition(VD)) 11394 return GVA_DiscardableODR; 11395 11396 // Most non-template variables have strong linkage; inline variables are 11397 // linkonce_odr or (occasionally, for compatibility) weak_odr. 11398 GVALinkage StrongLinkage; 11399 switch (Context.getInlineVariableDefinitionKind(VD)) { 11400 case ASTContext::InlineVariableDefinitionKind::None: 11401 StrongLinkage = GVA_StrongExternal; 11402 break; 11403 case ASTContext::InlineVariableDefinitionKind::Weak: 11404 case ASTContext::InlineVariableDefinitionKind::WeakUnknown: 11405 StrongLinkage = GVA_DiscardableODR; 11406 break; 11407 case ASTContext::InlineVariableDefinitionKind::Strong: 11408 StrongLinkage = GVA_StrongODR; 11409 break; 11410 } 11411 11412 switch (VD->getTemplateSpecializationKind()) { 11413 case TSK_Undeclared: 11414 return StrongLinkage; 11415 11416 case TSK_ExplicitSpecialization: 11417 return Context.getTargetInfo().getCXXABI().isMicrosoft() && 11418 VD->isStaticDataMember() 11419 ? GVA_StrongODR 11420 : StrongLinkage; 11421 11422 case TSK_ExplicitInstantiationDefinition: 11423 return GVA_StrongODR; 11424 11425 case TSK_ExplicitInstantiationDeclaration: 11426 return GVA_AvailableExternally; 11427 11428 case TSK_ImplicitInstantiation: 11429 return GVA_DiscardableODR; 11430 } 11431 11432 llvm_unreachable("Invalid Linkage!"); 11433 } 11434 11435 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) { 11436 return adjustGVALinkageForExternalDefinitionKind(*this, VD, 11437 adjustGVALinkageForAttributes(*this, VD, 11438 basicGVALinkageForVariable(*this, VD))); 11439 } 11440 11441 bool ASTContext::DeclMustBeEmitted(const Decl *D) { 11442 if (const auto *VD = dyn_cast<VarDecl>(D)) { 11443 if (!VD->isFileVarDecl()) 11444 return false; 11445 // Global named register variables (GNU extension) are never emitted. 11446 if (VD->getStorageClass() == SC_Register) 11447 return false; 11448 if (VD->getDescribedVarTemplate() || 11449 isa<VarTemplatePartialSpecializationDecl>(VD)) 11450 return false; 11451 } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 11452 // We never need to emit an uninstantiated function template. 11453 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) 11454 return false; 11455 } else if (isa<PragmaCommentDecl>(D)) 11456 return true; 11457 else if (isa<PragmaDetectMismatchDecl>(D)) 11458 return true; 11459 else if (isa<OMPRequiresDecl>(D)) 11460 return true; 11461 else if (isa<OMPThreadPrivateDecl>(D)) 11462 return !D->getDeclContext()->isDependentContext(); 11463 else if (isa<OMPAllocateDecl>(D)) 11464 return !D->getDeclContext()->isDependentContext(); 11465 else if (isa<OMPDeclareReductionDecl>(D) || isa<OMPDeclareMapperDecl>(D)) 11466 return !D->getDeclContext()->isDependentContext(); 11467 else if (isa<ImportDecl>(D)) 11468 return true; 11469 else 11470 return false; 11471 11472 // If this is a member of a class template, we do not need to emit it. 11473 if (D->getDeclContext()->isDependentContext()) 11474 return false; 11475 11476 // Weak references don't produce any output by themselves. 11477 if (D->hasAttr<WeakRefAttr>()) 11478 return false; 11479 11480 // Aliases and used decls are required. 11481 if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>()) 11482 return true; 11483 11484 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 11485 // Forward declarations aren't required. 11486 if (!FD->doesThisDeclarationHaveABody()) 11487 return FD->doesDeclarationForceExternallyVisibleDefinition(); 11488 11489 // Constructors and destructors are required. 11490 if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>()) 11491 return true; 11492 11493 // The key function for a class is required. This rule only comes 11494 // into play when inline functions can be key functions, though. 11495 if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 11496 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 11497 const CXXRecordDecl *RD = MD->getParent(); 11498 if (MD->isOutOfLine() && RD->isDynamicClass()) { 11499 const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD); 11500 if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl()) 11501 return true; 11502 } 11503 } 11504 } 11505 11506 GVALinkage Linkage = GetGVALinkageForFunction(FD); 11507 11508 // static, static inline, always_inline, and extern inline functions can 11509 // always be deferred. Normal inline functions can be deferred in C99/C++. 11510 // Implicit template instantiations can also be deferred in C++. 11511 return !isDiscardableGVALinkage(Linkage); 11512 } 11513 11514 const auto *VD = cast<VarDecl>(D); 11515 assert(VD->isFileVarDecl() && "Expected file scoped var"); 11516 11517 // If the decl is marked as `declare target to`, it should be emitted for the 11518 // host and for the device. 11519 if (LangOpts.OpenMP && 11520 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD)) 11521 return true; 11522 11523 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly && 11524 !isMSStaticDataMemberInlineDefinition(VD)) 11525 return false; 11526 11527 // Variables that can be needed in other TUs are required. 11528 auto Linkage = GetGVALinkageForVariable(VD); 11529 if (!isDiscardableGVALinkage(Linkage)) 11530 return true; 11531 11532 // We never need to emit a variable that is available in another TU. 11533 if (Linkage == GVA_AvailableExternally) 11534 return false; 11535 11536 // Variables that have destruction with side-effects are required. 11537 if (VD->needsDestruction(*this)) 11538 return true; 11539 11540 // Variables that have initialization with side-effects are required. 11541 if (VD->getInit() && VD->getInit()->HasSideEffects(*this) && 11542 // We can get a value-dependent initializer during error recovery. 11543 (VD->getInit()->isValueDependent() || !VD->evaluateValue())) 11544 return true; 11545 11546 // Likewise, variables with tuple-like bindings are required if their 11547 // bindings have side-effects. 11548 if (const auto *DD = dyn_cast<DecompositionDecl>(VD)) 11549 for (const auto *BD : DD->bindings()) 11550 if (const auto *BindingVD = BD->getHoldingVar()) 11551 if (DeclMustBeEmitted(BindingVD)) 11552 return true; 11553 11554 return false; 11555 } 11556 11557 void ASTContext::forEachMultiversionedFunctionVersion( 11558 const FunctionDecl *FD, 11559 llvm::function_ref<void(FunctionDecl *)> Pred) const { 11560 assert(FD->isMultiVersion() && "Only valid for multiversioned functions"); 11561 llvm::SmallDenseSet<const FunctionDecl*, 4> SeenDecls; 11562 FD = FD->getMostRecentDecl(); 11563 // FIXME: The order of traversal here matters and depends on the order of 11564 // lookup results, which happens to be (mostly) oldest-to-newest, but we 11565 // shouldn't rely on that. 11566 for (auto *CurDecl : 11567 FD->getDeclContext()->getRedeclContext()->lookup(FD->getDeclName())) { 11568 FunctionDecl *CurFD = CurDecl->getAsFunction()->getMostRecentDecl(); 11569 if (CurFD && hasSameType(CurFD->getType(), FD->getType()) && 11570 std::end(SeenDecls) == llvm::find(SeenDecls, CurFD)) { 11571 SeenDecls.insert(CurFD); 11572 Pred(CurFD); 11573 } 11574 } 11575 } 11576 11577 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic, 11578 bool IsCXXMethod, 11579 bool IsBuiltin) const { 11580 // Pass through to the C++ ABI object 11581 if (IsCXXMethod) 11582 return ABI->getDefaultMethodCallConv(IsVariadic); 11583 11584 // Builtins ignore user-specified default calling convention and remain the 11585 // Target's default calling convention. 11586 if (!IsBuiltin) { 11587 switch (LangOpts.getDefaultCallingConv()) { 11588 case LangOptions::DCC_None: 11589 break; 11590 case LangOptions::DCC_CDecl: 11591 return CC_C; 11592 case LangOptions::DCC_FastCall: 11593 if (getTargetInfo().hasFeature("sse2") && !IsVariadic) 11594 return CC_X86FastCall; 11595 break; 11596 case LangOptions::DCC_StdCall: 11597 if (!IsVariadic) 11598 return CC_X86StdCall; 11599 break; 11600 case LangOptions::DCC_VectorCall: 11601 // __vectorcall cannot be applied to variadic functions. 11602 if (!IsVariadic) 11603 return CC_X86VectorCall; 11604 break; 11605 case LangOptions::DCC_RegCall: 11606 // __regcall cannot be applied to variadic functions. 11607 if (!IsVariadic) 11608 return CC_X86RegCall; 11609 break; 11610 } 11611 } 11612 return Target->getDefaultCallingConv(); 11613 } 11614 11615 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const { 11616 // Pass through to the C++ ABI object 11617 return ABI->isNearlyEmpty(RD); 11618 } 11619 11620 VTableContextBase *ASTContext::getVTableContext() { 11621 if (!VTContext.get()) { 11622 auto ABI = Target->getCXXABI(); 11623 if (ABI.isMicrosoft()) 11624 VTContext.reset(new MicrosoftVTableContext(*this)); 11625 else { 11626 auto ComponentLayout = getLangOpts().RelativeCXXABIVTables 11627 ? ItaniumVTableContext::Relative 11628 : ItaniumVTableContext::Pointer; 11629 VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout)); 11630 } 11631 } 11632 return VTContext.get(); 11633 } 11634 11635 MangleContext *ASTContext::createMangleContext(const TargetInfo *T) { 11636 if (!T) 11637 T = Target; 11638 switch (T->getCXXABI().getKind()) { 11639 case TargetCXXABI::AppleARM64: 11640 case TargetCXXABI::Fuchsia: 11641 case TargetCXXABI::GenericAArch64: 11642 case TargetCXXABI::GenericItanium: 11643 case TargetCXXABI::GenericARM: 11644 case TargetCXXABI::GenericMIPS: 11645 case TargetCXXABI::iOS: 11646 case TargetCXXABI::WebAssembly: 11647 case TargetCXXABI::WatchOS: 11648 case TargetCXXABI::XL: 11649 return ItaniumMangleContext::create(*this, getDiagnostics()); 11650 case TargetCXXABI::Microsoft: 11651 return MicrosoftMangleContext::create(*this, getDiagnostics()); 11652 } 11653 llvm_unreachable("Unsupported ABI"); 11654 } 11655 11656 MangleContext *ASTContext::createDeviceMangleContext(const TargetInfo &T) { 11657 assert(T.getCXXABI().getKind() != TargetCXXABI::Microsoft && 11658 "Device mangle context does not support Microsoft mangling."); 11659 switch (T.getCXXABI().getKind()) { 11660 case TargetCXXABI::AppleARM64: 11661 case TargetCXXABI::Fuchsia: 11662 case TargetCXXABI::GenericAArch64: 11663 case TargetCXXABI::GenericItanium: 11664 case TargetCXXABI::GenericARM: 11665 case TargetCXXABI::GenericMIPS: 11666 case TargetCXXABI::iOS: 11667 case TargetCXXABI::WebAssembly: 11668 case TargetCXXABI::WatchOS: 11669 case TargetCXXABI::XL: 11670 return ItaniumMangleContext::create( 11671 *this, getDiagnostics(), 11672 [](ASTContext &, const NamedDecl *ND) -> llvm::Optional<unsigned> { 11673 if (const auto *RD = dyn_cast<CXXRecordDecl>(ND)) 11674 return RD->getDeviceLambdaManglingNumber(); 11675 return llvm::None; 11676 }); 11677 case TargetCXXABI::Microsoft: 11678 return MicrosoftMangleContext::create(*this, getDiagnostics()); 11679 } 11680 llvm_unreachable("Unsupported ABI"); 11681 } 11682 11683 CXXABI::~CXXABI() = default; 11684 11685 size_t ASTContext::getSideTableAllocatedMemory() const { 11686 return ASTRecordLayouts.getMemorySize() + 11687 llvm::capacity_in_bytes(ObjCLayouts) + 11688 llvm::capacity_in_bytes(KeyFunctions) + 11689 llvm::capacity_in_bytes(ObjCImpls) + 11690 llvm::capacity_in_bytes(BlockVarCopyInits) + 11691 llvm::capacity_in_bytes(DeclAttrs) + 11692 llvm::capacity_in_bytes(TemplateOrInstantiation) + 11693 llvm::capacity_in_bytes(InstantiatedFromUsingDecl) + 11694 llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) + 11695 llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) + 11696 llvm::capacity_in_bytes(OverriddenMethods) + 11697 llvm::capacity_in_bytes(Types) + 11698 llvm::capacity_in_bytes(VariableArrayTypes); 11699 } 11700 11701 /// getIntTypeForBitwidth - 11702 /// sets integer QualTy according to specified details: 11703 /// bitwidth, signed/unsigned. 11704 /// Returns empty type if there is no appropriate target types. 11705 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth, 11706 unsigned Signed) const { 11707 TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed); 11708 CanQualType QualTy = getFromTargetType(Ty); 11709 if (!QualTy && DestWidth == 128) 11710 return Signed ? Int128Ty : UnsignedInt128Ty; 11711 return QualTy; 11712 } 11713 11714 /// getRealTypeForBitwidth - 11715 /// sets floating point QualTy according to specified bitwidth. 11716 /// Returns empty type if there is no appropriate target types. 11717 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth, 11718 FloatModeKind ExplicitType) const { 11719 FloatModeKind Ty = 11720 getTargetInfo().getRealTypeByWidth(DestWidth, ExplicitType); 11721 switch (Ty) { 11722 case FloatModeKind::Float: 11723 return FloatTy; 11724 case FloatModeKind::Double: 11725 return DoubleTy; 11726 case FloatModeKind::LongDouble: 11727 return LongDoubleTy; 11728 case FloatModeKind::Float128: 11729 return Float128Ty; 11730 case FloatModeKind::Ibm128: 11731 return Ibm128Ty; 11732 case FloatModeKind::NoFloat: 11733 return {}; 11734 } 11735 11736 llvm_unreachable("Unhandled TargetInfo::RealType value"); 11737 } 11738 11739 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) { 11740 if (Number > 1) 11741 MangleNumbers[ND] = Number; 11742 } 11743 11744 unsigned ASTContext::getManglingNumber(const NamedDecl *ND) const { 11745 auto I = MangleNumbers.find(ND); 11746 return I != MangleNumbers.end() ? I->second : 1; 11747 } 11748 11749 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) { 11750 if (Number > 1) 11751 StaticLocalNumbers[VD] = Number; 11752 } 11753 11754 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const { 11755 auto I = StaticLocalNumbers.find(VD); 11756 return I != StaticLocalNumbers.end() ? I->second : 1; 11757 } 11758 11759 MangleNumberingContext & 11760 ASTContext::getManglingNumberContext(const DeclContext *DC) { 11761 assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C. 11762 std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC]; 11763 if (!MCtx) 11764 MCtx = createMangleNumberingContext(); 11765 return *MCtx; 11766 } 11767 11768 MangleNumberingContext & 11769 ASTContext::getManglingNumberContext(NeedExtraManglingDecl_t, const Decl *D) { 11770 assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C. 11771 std::unique_ptr<MangleNumberingContext> &MCtx = 11772 ExtraMangleNumberingContexts[D]; 11773 if (!MCtx) 11774 MCtx = createMangleNumberingContext(); 11775 return *MCtx; 11776 } 11777 11778 std::unique_ptr<MangleNumberingContext> 11779 ASTContext::createMangleNumberingContext() const { 11780 return ABI->createMangleNumberingContext(); 11781 } 11782 11783 const CXXConstructorDecl * 11784 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) { 11785 return ABI->getCopyConstructorForExceptionObject( 11786 cast<CXXRecordDecl>(RD->getFirstDecl())); 11787 } 11788 11789 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD, 11790 CXXConstructorDecl *CD) { 11791 return ABI->addCopyConstructorForExceptionObject( 11792 cast<CXXRecordDecl>(RD->getFirstDecl()), 11793 cast<CXXConstructorDecl>(CD->getFirstDecl())); 11794 } 11795 11796 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD, 11797 TypedefNameDecl *DD) { 11798 return ABI->addTypedefNameForUnnamedTagDecl(TD, DD); 11799 } 11800 11801 TypedefNameDecl * 11802 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) { 11803 return ABI->getTypedefNameForUnnamedTagDecl(TD); 11804 } 11805 11806 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD, 11807 DeclaratorDecl *DD) { 11808 return ABI->addDeclaratorForUnnamedTagDecl(TD, DD); 11809 } 11810 11811 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) { 11812 return ABI->getDeclaratorForUnnamedTagDecl(TD); 11813 } 11814 11815 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) { 11816 ParamIndices[D] = index; 11817 } 11818 11819 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const { 11820 ParameterIndexTable::const_iterator I = ParamIndices.find(D); 11821 assert(I != ParamIndices.end() && 11822 "ParmIndices lacks entry set by ParmVarDecl"); 11823 return I->second; 11824 } 11825 11826 QualType ASTContext::getStringLiteralArrayType(QualType EltTy, 11827 unsigned Length) const { 11828 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 11829 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) 11830 EltTy = EltTy.withConst(); 11831 11832 EltTy = adjustStringLiteralBaseType(EltTy); 11833 11834 // Get an array type for the string, according to C99 6.4.5. This includes 11835 // the null terminator character. 11836 return getConstantArrayType(EltTy, llvm::APInt(32, Length + 1), nullptr, 11837 ArrayType::Normal, /*IndexTypeQuals*/ 0); 11838 } 11839 11840 StringLiteral * 11841 ASTContext::getPredefinedStringLiteralFromCache(StringRef Key) const { 11842 StringLiteral *&Result = StringLiteralCache[Key]; 11843 if (!Result) 11844 Result = StringLiteral::Create( 11845 *this, Key, StringLiteral::Ascii, 11846 /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()), 11847 SourceLocation()); 11848 return Result; 11849 } 11850 11851 MSGuidDecl * 11852 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const { 11853 assert(MSGuidTagDecl && "building MS GUID without MS extensions?"); 11854 11855 llvm::FoldingSetNodeID ID; 11856 MSGuidDecl::Profile(ID, Parts); 11857 11858 void *InsertPos; 11859 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) 11860 return Existing; 11861 11862 QualType GUIDType = getMSGuidType().withConst(); 11863 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); 11864 MSGuidDecls.InsertNode(New, InsertPos); 11865 return New; 11866 } 11867 11868 TemplateParamObjectDecl * 11869 ASTContext::getTemplateParamObjectDecl(QualType T, const APValue &V) const { 11870 assert(T->isRecordType() && "template param object of unexpected type"); 11871 11872 // C++ [temp.param]p8: 11873 // [...] a static storage duration object of type 'const T' [...] 11874 T.addConst(); 11875 11876 llvm::FoldingSetNodeID ID; 11877 TemplateParamObjectDecl::Profile(ID, T, V); 11878 11879 void *InsertPos; 11880 if (TemplateParamObjectDecl *Existing = 11881 TemplateParamObjectDecls.FindNodeOrInsertPos(ID, InsertPos)) 11882 return Existing; 11883 11884 TemplateParamObjectDecl *New = TemplateParamObjectDecl::Create(*this, T, V); 11885 TemplateParamObjectDecls.InsertNode(New, InsertPos); 11886 return New; 11887 } 11888 11889 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const { 11890 const llvm::Triple &T = getTargetInfo().getTriple(); 11891 if (!T.isOSDarwin()) 11892 return false; 11893 11894 if (!(T.isiOS() && T.isOSVersionLT(7)) && 11895 !(T.isMacOSX() && T.isOSVersionLT(10, 9))) 11896 return false; 11897 11898 QualType AtomicTy = E->getPtr()->getType()->getPointeeType(); 11899 CharUnits sizeChars = getTypeSizeInChars(AtomicTy); 11900 uint64_t Size = sizeChars.getQuantity(); 11901 CharUnits alignChars = getTypeAlignInChars(AtomicTy); 11902 unsigned Align = alignChars.getQuantity(); 11903 unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth(); 11904 return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits); 11905 } 11906 11907 bool 11908 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl, 11909 const ObjCMethodDecl *MethodImpl) { 11910 // No point trying to match an unavailable/deprecated mothod. 11911 if (MethodDecl->hasAttr<UnavailableAttr>() 11912 || MethodDecl->hasAttr<DeprecatedAttr>()) 11913 return false; 11914 if (MethodDecl->getObjCDeclQualifier() != 11915 MethodImpl->getObjCDeclQualifier()) 11916 return false; 11917 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType())) 11918 return false; 11919 11920 if (MethodDecl->param_size() != MethodImpl->param_size()) 11921 return false; 11922 11923 for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(), 11924 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(), 11925 EF = MethodDecl->param_end(); 11926 IM != EM && IF != EF; ++IM, ++IF) { 11927 const ParmVarDecl *DeclVar = (*IF); 11928 const ParmVarDecl *ImplVar = (*IM); 11929 if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier()) 11930 return false; 11931 if (!hasSameType(DeclVar->getType(), ImplVar->getType())) 11932 return false; 11933 } 11934 11935 return (MethodDecl->isVariadic() == MethodImpl->isVariadic()); 11936 } 11937 11938 uint64_t ASTContext::getTargetNullPointerValue(QualType QT) const { 11939 LangAS AS; 11940 if (QT->getUnqualifiedDesugaredType()->isNullPtrType()) 11941 AS = LangAS::Default; 11942 else 11943 AS = QT->getPointeeType().getAddressSpace(); 11944 11945 return getTargetInfo().getNullPointerValue(AS); 11946 } 11947 11948 unsigned ASTContext::getTargetAddressSpace(QualType T) const { 11949 return T->isFunctionType() ? getTargetInfo().getProgramAddressSpace() 11950 : getTargetAddressSpace(T.getQualifiers()); 11951 } 11952 11953 unsigned ASTContext::getTargetAddressSpace(Qualifiers Q) const { 11954 return getTargetAddressSpace(Q.getAddressSpace()); 11955 } 11956 11957 unsigned ASTContext::getTargetAddressSpace(LangAS AS) const { 11958 if (isTargetAddressSpace(AS)) 11959 return toTargetAddressSpace(AS); 11960 else 11961 return (*AddrSpaceMap)[(unsigned)AS]; 11962 } 11963 11964 QualType ASTContext::getCorrespondingSaturatedType(QualType Ty) const { 11965 assert(Ty->isFixedPointType()); 11966 11967 if (Ty->isSaturatedFixedPointType()) return Ty; 11968 11969 switch (Ty->castAs<BuiltinType>()->getKind()) { 11970 default: 11971 llvm_unreachable("Not a fixed point type!"); 11972 case BuiltinType::ShortAccum: 11973 return SatShortAccumTy; 11974 case BuiltinType::Accum: 11975 return SatAccumTy; 11976 case BuiltinType::LongAccum: 11977 return SatLongAccumTy; 11978 case BuiltinType::UShortAccum: 11979 return SatUnsignedShortAccumTy; 11980 case BuiltinType::UAccum: 11981 return SatUnsignedAccumTy; 11982 case BuiltinType::ULongAccum: 11983 return SatUnsignedLongAccumTy; 11984 case BuiltinType::ShortFract: 11985 return SatShortFractTy; 11986 case BuiltinType::Fract: 11987 return SatFractTy; 11988 case BuiltinType::LongFract: 11989 return SatLongFractTy; 11990 case BuiltinType::UShortFract: 11991 return SatUnsignedShortFractTy; 11992 case BuiltinType::UFract: 11993 return SatUnsignedFractTy; 11994 case BuiltinType::ULongFract: 11995 return SatUnsignedLongFractTy; 11996 } 11997 } 11998 11999 LangAS ASTContext::getLangASForBuiltinAddressSpace(unsigned AS) const { 12000 if (LangOpts.OpenCL) 12001 return getTargetInfo().getOpenCLBuiltinAddressSpace(AS); 12002 12003 if (LangOpts.CUDA) 12004 return getTargetInfo().getCUDABuiltinAddressSpace(AS); 12005 12006 return getLangASFromTargetAS(AS); 12007 } 12008 12009 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that 12010 // doesn't include ASTContext.h 12011 template 12012 clang::LazyGenerationalUpdatePtr< 12013 const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType 12014 clang::LazyGenerationalUpdatePtr< 12015 const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue( 12016 const clang::ASTContext &Ctx, Decl *Value); 12017 12018 unsigned char ASTContext::getFixedPointScale(QualType Ty) const { 12019 assert(Ty->isFixedPointType()); 12020 12021 const TargetInfo &Target = getTargetInfo(); 12022 switch (Ty->castAs<BuiltinType>()->getKind()) { 12023 default: 12024 llvm_unreachable("Not a fixed point type!"); 12025 case BuiltinType::ShortAccum: 12026 case BuiltinType::SatShortAccum: 12027 return Target.getShortAccumScale(); 12028 case BuiltinType::Accum: 12029 case BuiltinType::SatAccum: 12030 return Target.getAccumScale(); 12031 case BuiltinType::LongAccum: 12032 case BuiltinType::SatLongAccum: 12033 return Target.getLongAccumScale(); 12034 case BuiltinType::UShortAccum: 12035 case BuiltinType::SatUShortAccum: 12036 return Target.getUnsignedShortAccumScale(); 12037 case BuiltinType::UAccum: 12038 case BuiltinType::SatUAccum: 12039 return Target.getUnsignedAccumScale(); 12040 case BuiltinType::ULongAccum: 12041 case BuiltinType::SatULongAccum: 12042 return Target.getUnsignedLongAccumScale(); 12043 case BuiltinType::ShortFract: 12044 case BuiltinType::SatShortFract: 12045 return Target.getShortFractScale(); 12046 case BuiltinType::Fract: 12047 case BuiltinType::SatFract: 12048 return Target.getFractScale(); 12049 case BuiltinType::LongFract: 12050 case BuiltinType::SatLongFract: 12051 return Target.getLongFractScale(); 12052 case BuiltinType::UShortFract: 12053 case BuiltinType::SatUShortFract: 12054 return Target.getUnsignedShortFractScale(); 12055 case BuiltinType::UFract: 12056 case BuiltinType::SatUFract: 12057 return Target.getUnsignedFractScale(); 12058 case BuiltinType::ULongFract: 12059 case BuiltinType::SatULongFract: 12060 return Target.getUnsignedLongFractScale(); 12061 } 12062 } 12063 12064 unsigned char ASTContext::getFixedPointIBits(QualType Ty) const { 12065 assert(Ty->isFixedPointType()); 12066 12067 const TargetInfo &Target = getTargetInfo(); 12068 switch (Ty->castAs<BuiltinType>()->getKind()) { 12069 default: 12070 llvm_unreachable("Not a fixed point type!"); 12071 case BuiltinType::ShortAccum: 12072 case BuiltinType::SatShortAccum: 12073 return Target.getShortAccumIBits(); 12074 case BuiltinType::Accum: 12075 case BuiltinType::SatAccum: 12076 return Target.getAccumIBits(); 12077 case BuiltinType::LongAccum: 12078 case BuiltinType::SatLongAccum: 12079 return Target.getLongAccumIBits(); 12080 case BuiltinType::UShortAccum: 12081 case BuiltinType::SatUShortAccum: 12082 return Target.getUnsignedShortAccumIBits(); 12083 case BuiltinType::UAccum: 12084 case BuiltinType::SatUAccum: 12085 return Target.getUnsignedAccumIBits(); 12086 case BuiltinType::ULongAccum: 12087 case BuiltinType::SatULongAccum: 12088 return Target.getUnsignedLongAccumIBits(); 12089 case BuiltinType::ShortFract: 12090 case BuiltinType::SatShortFract: 12091 case BuiltinType::Fract: 12092 case BuiltinType::SatFract: 12093 case BuiltinType::LongFract: 12094 case BuiltinType::SatLongFract: 12095 case BuiltinType::UShortFract: 12096 case BuiltinType::SatUShortFract: 12097 case BuiltinType::UFract: 12098 case BuiltinType::SatUFract: 12099 case BuiltinType::ULongFract: 12100 case BuiltinType::SatULongFract: 12101 return 0; 12102 } 12103 } 12104 12105 llvm::FixedPointSemantics 12106 ASTContext::getFixedPointSemantics(QualType Ty) const { 12107 assert((Ty->isFixedPointType() || Ty->isIntegerType()) && 12108 "Can only get the fixed point semantics for a " 12109 "fixed point or integer type."); 12110 if (Ty->isIntegerType()) 12111 return llvm::FixedPointSemantics::GetIntegerSemantics( 12112 getIntWidth(Ty), Ty->isSignedIntegerType()); 12113 12114 bool isSigned = Ty->isSignedFixedPointType(); 12115 return llvm::FixedPointSemantics( 12116 static_cast<unsigned>(getTypeSize(Ty)), getFixedPointScale(Ty), isSigned, 12117 Ty->isSaturatedFixedPointType(), 12118 !isSigned && getTargetInfo().doUnsignedFixedPointTypesHavePadding()); 12119 } 12120 12121 llvm::APFixedPoint ASTContext::getFixedPointMax(QualType Ty) const { 12122 assert(Ty->isFixedPointType()); 12123 return llvm::APFixedPoint::getMax(getFixedPointSemantics(Ty)); 12124 } 12125 12126 llvm::APFixedPoint ASTContext::getFixedPointMin(QualType Ty) const { 12127 assert(Ty->isFixedPointType()); 12128 return llvm::APFixedPoint::getMin(getFixedPointSemantics(Ty)); 12129 } 12130 12131 QualType ASTContext::getCorrespondingSignedFixedPointType(QualType Ty) const { 12132 assert(Ty->isUnsignedFixedPointType() && 12133 "Expected unsigned fixed point type"); 12134 12135 switch (Ty->castAs<BuiltinType>()->getKind()) { 12136 case BuiltinType::UShortAccum: 12137 return ShortAccumTy; 12138 case BuiltinType::UAccum: 12139 return AccumTy; 12140 case BuiltinType::ULongAccum: 12141 return LongAccumTy; 12142 case BuiltinType::SatUShortAccum: 12143 return SatShortAccumTy; 12144 case BuiltinType::SatUAccum: 12145 return SatAccumTy; 12146 case BuiltinType::SatULongAccum: 12147 return SatLongAccumTy; 12148 case BuiltinType::UShortFract: 12149 return ShortFractTy; 12150 case BuiltinType::UFract: 12151 return FractTy; 12152 case BuiltinType::ULongFract: 12153 return LongFractTy; 12154 case BuiltinType::SatUShortFract: 12155 return SatShortFractTy; 12156 case BuiltinType::SatUFract: 12157 return SatFractTy; 12158 case BuiltinType::SatULongFract: 12159 return SatLongFractTy; 12160 default: 12161 llvm_unreachable("Unexpected unsigned fixed point type"); 12162 } 12163 } 12164 12165 ParsedTargetAttr 12166 ASTContext::filterFunctionTargetAttrs(const TargetAttr *TD) const { 12167 assert(TD != nullptr); 12168 ParsedTargetAttr ParsedAttr = TD->parse(); 12169 12170 llvm::erase_if(ParsedAttr.Features, [&](const std::string &Feat) { 12171 return !Target->isValidFeatureName(StringRef{Feat}.substr(1)); 12172 }); 12173 return ParsedAttr; 12174 } 12175 12176 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap, 12177 const FunctionDecl *FD) const { 12178 if (FD) 12179 getFunctionFeatureMap(FeatureMap, GlobalDecl().getWithDecl(FD)); 12180 else 12181 Target->initFeatureMap(FeatureMap, getDiagnostics(), 12182 Target->getTargetOpts().CPU, 12183 Target->getTargetOpts().Features); 12184 } 12185 12186 // Fills in the supplied string map with the set of target features for the 12187 // passed in function. 12188 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap, 12189 GlobalDecl GD) const { 12190 StringRef TargetCPU = Target->getTargetOpts().CPU; 12191 const FunctionDecl *FD = GD.getDecl()->getAsFunction(); 12192 if (const auto *TD = FD->getAttr<TargetAttr>()) { 12193 ParsedTargetAttr ParsedAttr = filterFunctionTargetAttrs(TD); 12194 12195 // Make a copy of the features as passed on the command line into the 12196 // beginning of the additional features from the function to override. 12197 ParsedAttr.Features.insert( 12198 ParsedAttr.Features.begin(), 12199 Target->getTargetOpts().FeaturesAsWritten.begin(), 12200 Target->getTargetOpts().FeaturesAsWritten.end()); 12201 12202 if (ParsedAttr.Architecture != "" && 12203 Target->isValidCPUName(ParsedAttr.Architecture)) 12204 TargetCPU = ParsedAttr.Architecture; 12205 12206 // Now populate the feature map, first with the TargetCPU which is either 12207 // the default or a new one from the target attribute string. Then we'll use 12208 // the passed in features (FeaturesAsWritten) along with the new ones from 12209 // the attribute. 12210 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, 12211 ParsedAttr.Features); 12212 } else if (const auto *SD = FD->getAttr<CPUSpecificAttr>()) { 12213 llvm::SmallVector<StringRef, 32> FeaturesTmp; 12214 Target->getCPUSpecificCPUDispatchFeatures( 12215 SD->getCPUName(GD.getMultiVersionIndex())->getName(), FeaturesTmp); 12216 std::vector<std::string> Features(FeaturesTmp.begin(), FeaturesTmp.end()); 12217 Features.insert(Features.begin(), 12218 Target->getTargetOpts().FeaturesAsWritten.begin(), 12219 Target->getTargetOpts().FeaturesAsWritten.end()); 12220 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features); 12221 } else if (const auto *TC = FD->getAttr<TargetClonesAttr>()) { 12222 std::vector<std::string> Features; 12223 StringRef VersionStr = TC->getFeatureStr(GD.getMultiVersionIndex()); 12224 if (VersionStr.startswith("arch=")) 12225 TargetCPU = VersionStr.drop_front(sizeof("arch=") - 1); 12226 else if (VersionStr != "default") 12227 Features.push_back((StringRef{"+"} + VersionStr).str()); 12228 12229 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features); 12230 } else { 12231 FeatureMap = Target->getTargetOpts().FeatureMap; 12232 } 12233 } 12234 12235 OMPTraitInfo &ASTContext::getNewOMPTraitInfo() { 12236 OMPTraitInfoVector.emplace_back(new OMPTraitInfo()); 12237 return *OMPTraitInfoVector.back(); 12238 } 12239 12240 const StreamingDiagnostic &clang:: 12241 operator<<(const StreamingDiagnostic &DB, 12242 const ASTContext::SectionInfo &Section) { 12243 if (Section.Decl) 12244 return DB << Section.Decl; 12245 return DB << "a prior #pragma section"; 12246 } 12247 12248 bool ASTContext::mayExternalizeStaticVar(const Decl *D) const { 12249 bool IsStaticVar = 12250 isa<VarDecl>(D) && cast<VarDecl>(D)->getStorageClass() == SC_Static; 12251 bool IsExplicitDeviceVar = (D->hasAttr<CUDADeviceAttr>() && 12252 !D->getAttr<CUDADeviceAttr>()->isImplicit()) || 12253 (D->hasAttr<CUDAConstantAttr>() && 12254 !D->getAttr<CUDAConstantAttr>()->isImplicit()); 12255 // CUDA/HIP: static managed variables need to be externalized since it is 12256 // a declaration in IR, therefore cannot have internal linkage. 12257 return IsStaticVar && 12258 (D->hasAttr<HIPManagedAttr>() || IsExplicitDeviceVar); 12259 } 12260 12261 bool ASTContext::shouldExternalizeStaticVar(const Decl *D) const { 12262 return mayExternalizeStaticVar(D) && 12263 (D->hasAttr<HIPManagedAttr>() || 12264 CUDADeviceVarODRUsedByHost.count(cast<VarDecl>(D))); 12265 } 12266 12267 StringRef ASTContext::getCUIDHash() const { 12268 if (!CUIDHash.empty()) 12269 return CUIDHash; 12270 if (LangOpts.CUID.empty()) 12271 return StringRef(); 12272 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); 12273 return CUIDHash; 12274 } 12275