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 llvm::append_range(NewConverted, 743 OldConverted.front().pack_elements().drop_front(1)); 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 llvm::append_range(NewConverted, OldConverted.drop_front(1)); 756 } 757 Expr *NewIDC = ConceptSpecializationExpr::Create( 758 C, CSE->getNamedConcept(), NewConverted, nullptr, 759 CSE->isInstantiationDependent(), CSE->containsUnexpandedParameterPack()); 760 761 if (auto *OrigFold = dyn_cast<CXXFoldExpr>(IDC)) 762 NewIDC = new (C) CXXFoldExpr( 763 OrigFold->getType(), /*Callee*/nullptr, SourceLocation(), NewIDC, 764 BinaryOperatorKind::BO_LAnd, SourceLocation(), /*RHS=*/nullptr, 765 SourceLocation(), /*NumExpansions=*/None); 766 return NewIDC; 767 } 768 769 TemplateTemplateParmDecl * 770 ASTContext::getCanonicalTemplateTemplateParmDecl( 771 TemplateTemplateParmDecl *TTP) const { 772 // Check if we already have a canonical template template parameter. 773 llvm::FoldingSetNodeID ID; 774 CanonicalTemplateTemplateParm::Profile(ID, *this, TTP); 775 void *InsertPos = nullptr; 776 CanonicalTemplateTemplateParm *Canonical 777 = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); 778 if (Canonical) 779 return Canonical->getParam(); 780 781 // Build a canonical template parameter list. 782 TemplateParameterList *Params = TTP->getTemplateParameters(); 783 SmallVector<NamedDecl *, 4> CanonParams; 784 CanonParams.reserve(Params->size()); 785 for (TemplateParameterList::const_iterator P = Params->begin(), 786 PEnd = Params->end(); 787 P != PEnd; ++P) { 788 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) { 789 TemplateTypeParmDecl *NewTTP = TemplateTypeParmDecl::Create(*this, 790 getTranslationUnitDecl(), SourceLocation(), SourceLocation(), 791 TTP->getDepth(), TTP->getIndex(), nullptr, false, 792 TTP->isParameterPack(), TTP->hasTypeConstraint(), 793 TTP->isExpandedParameterPack() ? 794 llvm::Optional<unsigned>(TTP->getNumExpansionParameters()) : None); 795 if (const auto *TC = TTP->getTypeConstraint()) { 796 QualType ParamAsArgument(NewTTP->getTypeForDecl(), 0); 797 Expr *NewIDC = canonicalizeImmediatelyDeclaredConstraint( 798 *this, TC->getImmediatelyDeclaredConstraint(), 799 ParamAsArgument); 800 TemplateArgumentListInfo CanonArgsAsWritten; 801 if (auto *Args = TC->getTemplateArgsAsWritten()) 802 for (const auto &ArgLoc : Args->arguments()) 803 CanonArgsAsWritten.addArgument( 804 TemplateArgumentLoc(ArgLoc.getArgument(), 805 TemplateArgumentLocInfo())); 806 NewTTP->setTypeConstraint( 807 NestedNameSpecifierLoc(), 808 DeclarationNameInfo(TC->getNamedConcept()->getDeclName(), 809 SourceLocation()), /*FoundDecl=*/nullptr, 810 // Actually canonicalizing a TemplateArgumentLoc is difficult so we 811 // simply omit the ArgsAsWritten 812 TC->getNamedConcept(), /*ArgsAsWritten=*/nullptr, NewIDC); 813 } 814 CanonParams.push_back(NewTTP); 815 } else if (const auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) { 816 QualType T = getCanonicalType(NTTP->getType()); 817 TypeSourceInfo *TInfo = getTrivialTypeSourceInfo(T); 818 NonTypeTemplateParmDecl *Param; 819 if (NTTP->isExpandedParameterPack()) { 820 SmallVector<QualType, 2> ExpandedTypes; 821 SmallVector<TypeSourceInfo *, 2> ExpandedTInfos; 822 for (unsigned I = 0, N = NTTP->getNumExpansionTypes(); I != N; ++I) { 823 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I))); 824 ExpandedTInfos.push_back( 825 getTrivialTypeSourceInfo(ExpandedTypes.back())); 826 } 827 828 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 829 SourceLocation(), 830 SourceLocation(), 831 NTTP->getDepth(), 832 NTTP->getPosition(), nullptr, 833 T, 834 TInfo, 835 ExpandedTypes, 836 ExpandedTInfos); 837 } else { 838 Param = NonTypeTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 839 SourceLocation(), 840 SourceLocation(), 841 NTTP->getDepth(), 842 NTTP->getPosition(), nullptr, 843 T, 844 NTTP->isParameterPack(), 845 TInfo); 846 } 847 if (AutoType *AT = T->getContainedAutoType()) { 848 if (AT->isConstrained()) { 849 Param->setPlaceholderTypeConstraint( 850 canonicalizeImmediatelyDeclaredConstraint( 851 *this, NTTP->getPlaceholderTypeConstraint(), T)); 852 } 853 } 854 CanonParams.push_back(Param); 855 856 } else 857 CanonParams.push_back(getCanonicalTemplateTemplateParmDecl( 858 cast<TemplateTemplateParmDecl>(*P))); 859 } 860 861 Expr *CanonRequiresClause = nullptr; 862 if (Expr *RequiresClause = TTP->getTemplateParameters()->getRequiresClause()) 863 CanonRequiresClause = RequiresClause; 864 865 TemplateTemplateParmDecl *CanonTTP 866 = TemplateTemplateParmDecl::Create(*this, getTranslationUnitDecl(), 867 SourceLocation(), TTP->getDepth(), 868 TTP->getPosition(), 869 TTP->isParameterPack(), 870 nullptr, 871 TemplateParameterList::Create(*this, SourceLocation(), 872 SourceLocation(), 873 CanonParams, 874 SourceLocation(), 875 CanonRequiresClause)); 876 877 // Get the new insert position for the node we care about. 878 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); 879 assert(!Canonical && "Shouldn't be in the map!"); 880 (void)Canonical; 881 882 // Create the canonical template template parameter entry. 883 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP); 884 CanonTemplateTemplateParms.InsertNode(Canonical, InsertPos); 885 return CanonTTP; 886 } 887 888 TargetCXXABI::Kind ASTContext::getCXXABIKind() const { 889 auto Kind = getTargetInfo().getCXXABI().getKind(); 890 return getLangOpts().CXXABI.value_or(Kind); 891 } 892 893 CXXABI *ASTContext::createCXXABI(const TargetInfo &T) { 894 if (!LangOpts.CPlusPlus) return nullptr; 895 896 switch (getCXXABIKind()) { 897 case TargetCXXABI::AppleARM64: 898 case TargetCXXABI::Fuchsia: 899 case TargetCXXABI::GenericARM: // Same as Itanium at this level 900 case TargetCXXABI::iOS: 901 case TargetCXXABI::WatchOS: 902 case TargetCXXABI::GenericAArch64: 903 case TargetCXXABI::GenericMIPS: 904 case TargetCXXABI::GenericItanium: 905 case TargetCXXABI::WebAssembly: 906 case TargetCXXABI::XL: 907 return CreateItaniumCXXABI(*this); 908 case TargetCXXABI::Microsoft: 909 return CreateMicrosoftCXXABI(*this); 910 } 911 llvm_unreachable("Invalid CXXABI type!"); 912 } 913 914 interp::Context &ASTContext::getInterpContext() { 915 if (!InterpContext) { 916 InterpContext.reset(new interp::Context(*this)); 917 } 918 return *InterpContext.get(); 919 } 920 921 ParentMapContext &ASTContext::getParentMapContext() { 922 if (!ParentMapCtx) 923 ParentMapCtx.reset(new ParentMapContext(*this)); 924 return *ParentMapCtx.get(); 925 } 926 927 static const LangASMap *getAddressSpaceMap(const TargetInfo &T, 928 const LangOptions &LOpts) { 929 if (LOpts.FakeAddressSpaceMap) { 930 // The fake address space map must have a distinct entry for each 931 // language-specific address space. 932 static const unsigned FakeAddrSpaceMap[] = { 933 0, // Default 934 1, // opencl_global 935 3, // opencl_local 936 2, // opencl_constant 937 0, // opencl_private 938 4, // opencl_generic 939 5, // opencl_global_device 940 6, // opencl_global_host 941 7, // cuda_device 942 8, // cuda_constant 943 9, // cuda_shared 944 1, // sycl_global 945 5, // sycl_global_device 946 6, // sycl_global_host 947 3, // sycl_local 948 0, // sycl_private 949 10, // ptr32_sptr 950 11, // ptr32_uptr 951 12 // ptr64 952 }; 953 return &FakeAddrSpaceMap; 954 } else { 955 return &T.getAddressSpaceMap(); 956 } 957 } 958 959 static bool isAddrSpaceMapManglingEnabled(const TargetInfo &TI, 960 const LangOptions &LangOpts) { 961 switch (LangOpts.getAddressSpaceMapMangling()) { 962 case LangOptions::ASMM_Target: 963 return TI.useAddressSpaceMapMangling(); 964 case LangOptions::ASMM_On: 965 return true; 966 case LangOptions::ASMM_Off: 967 return false; 968 } 969 llvm_unreachable("getAddressSpaceMapMangling() doesn't cover anything."); 970 } 971 972 ASTContext::ASTContext(LangOptions &LOpts, SourceManager &SM, 973 IdentifierTable &idents, SelectorTable &sels, 974 Builtin::Context &builtins, TranslationUnitKind TUKind) 975 : ConstantArrayTypes(this_(), ConstantArrayTypesLog2InitSize), 976 FunctionProtoTypes(this_(), FunctionProtoTypesLog2InitSize), 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 return Target->getHalfFormat(); 1711 case BuiltinType::Half: 1712 // For HLSL, when the native half type is disabled, half will be treat as 1713 // float. 1714 if (getLangOpts().HLSL) 1715 if (getLangOpts().NativeHalfType) 1716 return Target->getHalfFormat(); 1717 else 1718 return Target->getFloatFormat(); 1719 else 1720 return Target->getHalfFormat(); 1721 case BuiltinType::Float: return Target->getFloatFormat(); 1722 case BuiltinType::Double: return Target->getDoubleFormat(); 1723 case BuiltinType::Ibm128: 1724 return Target->getIbm128Format(); 1725 case BuiltinType::LongDouble: 1726 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice) 1727 return AuxTarget->getLongDoubleFormat(); 1728 return Target->getLongDoubleFormat(); 1729 case BuiltinType::Float128: 1730 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice) 1731 return AuxTarget->getFloat128Format(); 1732 return Target->getFloat128Format(); 1733 } 1734 } 1735 1736 CharUnits ASTContext::getDeclAlign(const Decl *D, bool ForAlignof) const { 1737 unsigned Align = Target->getCharWidth(); 1738 1739 bool UseAlignAttrOnly = false; 1740 if (unsigned AlignFromAttr = D->getMaxAlignment()) { 1741 Align = AlignFromAttr; 1742 1743 // __attribute__((aligned)) can increase or decrease alignment 1744 // *except* on a struct or struct member, where it only increases 1745 // alignment unless 'packed' is also specified. 1746 // 1747 // It is an error for alignas to decrease alignment, so we can 1748 // ignore that possibility; Sema should diagnose it. 1749 if (isa<FieldDecl>(D)) { 1750 UseAlignAttrOnly = D->hasAttr<PackedAttr>() || 1751 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>(); 1752 } else { 1753 UseAlignAttrOnly = true; 1754 } 1755 } 1756 else if (isa<FieldDecl>(D)) 1757 UseAlignAttrOnly = 1758 D->hasAttr<PackedAttr>() || 1759 cast<FieldDecl>(D)->getParent()->hasAttr<PackedAttr>(); 1760 1761 // If we're using the align attribute only, just ignore everything 1762 // else about the declaration and its type. 1763 if (UseAlignAttrOnly) { 1764 // do nothing 1765 } else if (const auto *VD = dyn_cast<ValueDecl>(D)) { 1766 QualType T = VD->getType(); 1767 if (const auto *RT = T->getAs<ReferenceType>()) { 1768 if (ForAlignof) 1769 T = RT->getPointeeType(); 1770 else 1771 T = getPointerType(RT->getPointeeType()); 1772 } 1773 QualType BaseT = getBaseElementType(T); 1774 if (T->isFunctionType()) 1775 Align = getTypeInfoImpl(T.getTypePtr()).Align; 1776 else if (!BaseT->isIncompleteType()) { 1777 // Adjust alignments of declarations with array type by the 1778 // large-array alignment on the target. 1779 if (const ArrayType *arrayType = getAsArrayType(T)) { 1780 unsigned MinWidth = Target->getLargeArrayMinWidth(); 1781 if (!ForAlignof && MinWidth) { 1782 if (isa<VariableArrayType>(arrayType)) 1783 Align = std::max(Align, Target->getLargeArrayAlign()); 1784 else if (isa<ConstantArrayType>(arrayType) && 1785 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType))) 1786 Align = std::max(Align, Target->getLargeArrayAlign()); 1787 } 1788 } 1789 Align = std::max(Align, getPreferredTypeAlign(T.getTypePtr())); 1790 if (BaseT.getQualifiers().hasUnaligned()) 1791 Align = Target->getCharWidth(); 1792 if (const auto *VD = dyn_cast<VarDecl>(D)) { 1793 if (VD->hasGlobalStorage() && !ForAlignof) { 1794 uint64_t TypeSize = getTypeSize(T.getTypePtr()); 1795 Align = std::max(Align, getTargetInfo().getMinGlobalAlign(TypeSize)); 1796 } 1797 } 1798 } 1799 1800 // Fields can be subject to extra alignment constraints, like if 1801 // the field is packed, the struct is packed, or the struct has a 1802 // a max-field-alignment constraint (#pragma pack). So calculate 1803 // the actual alignment of the field within the struct, and then 1804 // (as we're expected to) constrain that by the alignment of the type. 1805 if (const auto *Field = dyn_cast<FieldDecl>(VD)) { 1806 const RecordDecl *Parent = Field->getParent(); 1807 // We can only produce a sensible answer if the record is valid. 1808 if (!Parent->isInvalidDecl()) { 1809 const ASTRecordLayout &Layout = getASTRecordLayout(Parent); 1810 1811 // Start with the record's overall alignment. 1812 unsigned FieldAlign = toBits(Layout.getAlignment()); 1813 1814 // Use the GCD of that and the offset within the record. 1815 uint64_t Offset = Layout.getFieldOffset(Field->getFieldIndex()); 1816 if (Offset > 0) { 1817 // Alignment is always a power of 2, so the GCD will be a power of 2, 1818 // which means we get to do this crazy thing instead of Euclid's. 1819 uint64_t LowBitOfOffset = Offset & (~Offset + 1); 1820 if (LowBitOfOffset < FieldAlign) 1821 FieldAlign = static_cast<unsigned>(LowBitOfOffset); 1822 } 1823 1824 Align = std::min(Align, FieldAlign); 1825 } 1826 } 1827 } 1828 1829 // Some targets have hard limitation on the maximum requestable alignment in 1830 // aligned attribute for static variables. 1831 const unsigned MaxAlignedAttr = getTargetInfo().getMaxAlignedAttribute(); 1832 const auto *VD = dyn_cast<VarDecl>(D); 1833 if (MaxAlignedAttr && VD && VD->getStorageClass() == SC_Static) 1834 Align = std::min(Align, MaxAlignedAttr); 1835 1836 return toCharUnitsFromBits(Align); 1837 } 1838 1839 CharUnits ASTContext::getExnObjectAlignment() const { 1840 return toCharUnitsFromBits(Target->getExnObjectAlignment()); 1841 } 1842 1843 // getTypeInfoDataSizeInChars - Return the size of a type, in 1844 // chars. If the type is a record, its data size is returned. This is 1845 // the size of the memcpy that's performed when assigning this type 1846 // using a trivial copy/move assignment operator. 1847 TypeInfoChars ASTContext::getTypeInfoDataSizeInChars(QualType T) const { 1848 TypeInfoChars Info = getTypeInfoInChars(T); 1849 1850 // In C++, objects can sometimes be allocated into the tail padding 1851 // of a base-class subobject. We decide whether that's possible 1852 // during class layout, so here we can just trust the layout results. 1853 if (getLangOpts().CPlusPlus) { 1854 if (const auto *RT = T->getAs<RecordType>()) { 1855 const ASTRecordLayout &layout = getASTRecordLayout(RT->getDecl()); 1856 Info.Width = layout.getDataSize(); 1857 } 1858 } 1859 1860 return Info; 1861 } 1862 1863 /// getConstantArrayInfoInChars - Performing the computation in CharUnits 1864 /// instead of in bits prevents overflowing the uint64_t for some large arrays. 1865 TypeInfoChars 1866 static getConstantArrayInfoInChars(const ASTContext &Context, 1867 const ConstantArrayType *CAT) { 1868 TypeInfoChars EltInfo = Context.getTypeInfoInChars(CAT->getElementType()); 1869 uint64_t Size = CAT->getSize().getZExtValue(); 1870 assert((Size == 0 || static_cast<uint64_t>(EltInfo.Width.getQuantity()) <= 1871 (uint64_t)(-1)/Size) && 1872 "Overflow in array type char size evaluation"); 1873 uint64_t Width = EltInfo.Width.getQuantity() * Size; 1874 unsigned Align = EltInfo.Align.getQuantity(); 1875 if (!Context.getTargetInfo().getCXXABI().isMicrosoft() || 1876 Context.getTargetInfo().getPointerWidth(0) == 64) 1877 Width = llvm::alignTo(Width, Align); 1878 return TypeInfoChars(CharUnits::fromQuantity(Width), 1879 CharUnits::fromQuantity(Align), 1880 EltInfo.AlignRequirement); 1881 } 1882 1883 TypeInfoChars ASTContext::getTypeInfoInChars(const Type *T) const { 1884 if (const auto *CAT = dyn_cast<ConstantArrayType>(T)) 1885 return getConstantArrayInfoInChars(*this, CAT); 1886 TypeInfo Info = getTypeInfo(T); 1887 return TypeInfoChars(toCharUnitsFromBits(Info.Width), 1888 toCharUnitsFromBits(Info.Align), Info.AlignRequirement); 1889 } 1890 1891 TypeInfoChars ASTContext::getTypeInfoInChars(QualType T) const { 1892 return getTypeInfoInChars(T.getTypePtr()); 1893 } 1894 1895 bool ASTContext::isAlignmentRequired(const Type *T) const { 1896 return getTypeInfo(T).AlignRequirement != AlignRequirementKind::None; 1897 } 1898 1899 bool ASTContext::isAlignmentRequired(QualType T) const { 1900 return isAlignmentRequired(T.getTypePtr()); 1901 } 1902 1903 unsigned ASTContext::getTypeAlignIfKnown(QualType T, 1904 bool NeedsPreferredAlignment) const { 1905 // An alignment on a typedef overrides anything else. 1906 if (const auto *TT = T->getAs<TypedefType>()) 1907 if (unsigned Align = TT->getDecl()->getMaxAlignment()) 1908 return Align; 1909 1910 // If we have an (array of) complete type, we're done. 1911 T = getBaseElementType(T); 1912 if (!T->isIncompleteType()) 1913 return NeedsPreferredAlignment ? getPreferredTypeAlign(T) : getTypeAlign(T); 1914 1915 // If we had an array type, its element type might be a typedef 1916 // type with an alignment attribute. 1917 if (const auto *TT = T->getAs<TypedefType>()) 1918 if (unsigned Align = TT->getDecl()->getMaxAlignment()) 1919 return Align; 1920 1921 // Otherwise, see if the declaration of the type had an attribute. 1922 if (const auto *TT = T->getAs<TagType>()) 1923 return TT->getDecl()->getMaxAlignment(); 1924 1925 return 0; 1926 } 1927 1928 TypeInfo ASTContext::getTypeInfo(const Type *T) const { 1929 TypeInfoMap::iterator I = MemoizedTypeInfo.find(T); 1930 if (I != MemoizedTypeInfo.end()) 1931 return I->second; 1932 1933 // This call can invalidate MemoizedTypeInfo[T], so we need a second lookup. 1934 TypeInfo TI = getTypeInfoImpl(T); 1935 MemoizedTypeInfo[T] = TI; 1936 return TI; 1937 } 1938 1939 /// getTypeInfoImpl - Return the size of the specified type, in bits. This 1940 /// method does not work on incomplete types. 1941 /// 1942 /// FIXME: Pointers into different addr spaces could have different sizes and 1943 /// alignment requirements: getPointerInfo should take an AddrSpace, this 1944 /// should take a QualType, &c. 1945 TypeInfo ASTContext::getTypeInfoImpl(const Type *T) const { 1946 uint64_t Width = 0; 1947 unsigned Align = 8; 1948 AlignRequirementKind AlignRequirement = AlignRequirementKind::None; 1949 unsigned AS = 0; 1950 switch (T->getTypeClass()) { 1951 #define TYPE(Class, Base) 1952 #define ABSTRACT_TYPE(Class, Base) 1953 #define NON_CANONICAL_TYPE(Class, Base) 1954 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 1955 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) \ 1956 case Type::Class: \ 1957 assert(!T->isDependentType() && "should not see dependent types here"); \ 1958 return getTypeInfo(cast<Class##Type>(T)->desugar().getTypePtr()); 1959 #include "clang/AST/TypeNodes.inc" 1960 llvm_unreachable("Should not see dependent types"); 1961 1962 case Type::FunctionNoProto: 1963 case Type::FunctionProto: 1964 // GCC extension: alignof(function) = 32 bits 1965 Width = 0; 1966 Align = 32; 1967 break; 1968 1969 case Type::IncompleteArray: 1970 case Type::VariableArray: 1971 case Type::ConstantArray: { 1972 // Model non-constant sized arrays as size zero, but track the alignment. 1973 uint64_t Size = 0; 1974 if (const auto *CAT = dyn_cast<ConstantArrayType>(T)) 1975 Size = CAT->getSize().getZExtValue(); 1976 1977 TypeInfo EltInfo = getTypeInfo(cast<ArrayType>(T)->getElementType()); 1978 assert((Size == 0 || EltInfo.Width <= (uint64_t)(-1) / Size) && 1979 "Overflow in array type bit size evaluation"); 1980 Width = EltInfo.Width * Size; 1981 Align = EltInfo.Align; 1982 AlignRequirement = EltInfo.AlignRequirement; 1983 if (!getTargetInfo().getCXXABI().isMicrosoft() || 1984 getTargetInfo().getPointerWidth(0) == 64) 1985 Width = llvm::alignTo(Width, Align); 1986 break; 1987 } 1988 1989 case Type::ExtVector: 1990 case Type::Vector: { 1991 const auto *VT = cast<VectorType>(T); 1992 TypeInfo EltInfo = getTypeInfo(VT->getElementType()); 1993 Width = VT->isExtVectorBoolType() ? VT->getNumElements() 1994 : EltInfo.Width * VT->getNumElements(); 1995 // Enforce at least byte alignment. 1996 Align = std::max<unsigned>(8, Width); 1997 1998 // If the alignment is not a power of 2, round up to the next power of 2. 1999 // This happens for non-power-of-2 length vectors. 2000 if (Align & (Align-1)) { 2001 Align = llvm::NextPowerOf2(Align); 2002 Width = llvm::alignTo(Width, Align); 2003 } 2004 // Adjust the alignment based on the target max. 2005 uint64_t TargetVectorAlign = Target->getMaxVectorAlign(); 2006 if (TargetVectorAlign && TargetVectorAlign < Align) 2007 Align = TargetVectorAlign; 2008 if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector) 2009 // Adjust the alignment for fixed-length SVE vectors. This is important 2010 // for non-power-of-2 vector lengths. 2011 Align = 128; 2012 else if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector) 2013 // Adjust the alignment for fixed-length SVE predicates. 2014 Align = 16; 2015 break; 2016 } 2017 2018 case Type::ConstantMatrix: { 2019 const auto *MT = cast<ConstantMatrixType>(T); 2020 TypeInfo ElementInfo = getTypeInfo(MT->getElementType()); 2021 // The internal layout of a matrix value is implementation defined. 2022 // Initially be ABI compatible with arrays with respect to alignment and 2023 // size. 2024 Width = ElementInfo.Width * MT->getNumRows() * MT->getNumColumns(); 2025 Align = ElementInfo.Align; 2026 break; 2027 } 2028 2029 case Type::Builtin: 2030 switch (cast<BuiltinType>(T)->getKind()) { 2031 default: llvm_unreachable("Unknown builtin type!"); 2032 case BuiltinType::Void: 2033 // GCC extension: alignof(void) = 8 bits. 2034 Width = 0; 2035 Align = 8; 2036 break; 2037 case BuiltinType::Bool: 2038 Width = Target->getBoolWidth(); 2039 Align = Target->getBoolAlign(); 2040 break; 2041 case BuiltinType::Char_S: 2042 case BuiltinType::Char_U: 2043 case BuiltinType::UChar: 2044 case BuiltinType::SChar: 2045 case BuiltinType::Char8: 2046 Width = Target->getCharWidth(); 2047 Align = Target->getCharAlign(); 2048 break; 2049 case BuiltinType::WChar_S: 2050 case BuiltinType::WChar_U: 2051 Width = Target->getWCharWidth(); 2052 Align = Target->getWCharAlign(); 2053 break; 2054 case BuiltinType::Char16: 2055 Width = Target->getChar16Width(); 2056 Align = Target->getChar16Align(); 2057 break; 2058 case BuiltinType::Char32: 2059 Width = Target->getChar32Width(); 2060 Align = Target->getChar32Align(); 2061 break; 2062 case BuiltinType::UShort: 2063 case BuiltinType::Short: 2064 Width = Target->getShortWidth(); 2065 Align = Target->getShortAlign(); 2066 break; 2067 case BuiltinType::UInt: 2068 case BuiltinType::Int: 2069 Width = Target->getIntWidth(); 2070 Align = Target->getIntAlign(); 2071 break; 2072 case BuiltinType::ULong: 2073 case BuiltinType::Long: 2074 Width = Target->getLongWidth(); 2075 Align = Target->getLongAlign(); 2076 break; 2077 case BuiltinType::ULongLong: 2078 case BuiltinType::LongLong: 2079 Width = Target->getLongLongWidth(); 2080 Align = Target->getLongLongAlign(); 2081 break; 2082 case BuiltinType::Int128: 2083 case BuiltinType::UInt128: 2084 Width = 128; 2085 Align = 128; // int128_t is 128-bit aligned on all targets. 2086 break; 2087 case BuiltinType::ShortAccum: 2088 case BuiltinType::UShortAccum: 2089 case BuiltinType::SatShortAccum: 2090 case BuiltinType::SatUShortAccum: 2091 Width = Target->getShortAccumWidth(); 2092 Align = Target->getShortAccumAlign(); 2093 break; 2094 case BuiltinType::Accum: 2095 case BuiltinType::UAccum: 2096 case BuiltinType::SatAccum: 2097 case BuiltinType::SatUAccum: 2098 Width = Target->getAccumWidth(); 2099 Align = Target->getAccumAlign(); 2100 break; 2101 case BuiltinType::LongAccum: 2102 case BuiltinType::ULongAccum: 2103 case BuiltinType::SatLongAccum: 2104 case BuiltinType::SatULongAccum: 2105 Width = Target->getLongAccumWidth(); 2106 Align = Target->getLongAccumAlign(); 2107 break; 2108 case BuiltinType::ShortFract: 2109 case BuiltinType::UShortFract: 2110 case BuiltinType::SatShortFract: 2111 case BuiltinType::SatUShortFract: 2112 Width = Target->getShortFractWidth(); 2113 Align = Target->getShortFractAlign(); 2114 break; 2115 case BuiltinType::Fract: 2116 case BuiltinType::UFract: 2117 case BuiltinType::SatFract: 2118 case BuiltinType::SatUFract: 2119 Width = Target->getFractWidth(); 2120 Align = Target->getFractAlign(); 2121 break; 2122 case BuiltinType::LongFract: 2123 case BuiltinType::ULongFract: 2124 case BuiltinType::SatLongFract: 2125 case BuiltinType::SatULongFract: 2126 Width = Target->getLongFractWidth(); 2127 Align = Target->getLongFractAlign(); 2128 break; 2129 case BuiltinType::BFloat16: 2130 if (Target->hasBFloat16Type()) { 2131 Width = Target->getBFloat16Width(); 2132 Align = Target->getBFloat16Align(); 2133 } 2134 break; 2135 case BuiltinType::Float16: 2136 case BuiltinType::Half: 2137 if (Target->hasFloat16Type() || !getLangOpts().OpenMP || 2138 !getLangOpts().OpenMPIsDevice) { 2139 Width = Target->getHalfWidth(); 2140 Align = Target->getHalfAlign(); 2141 } else { 2142 assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2143 "Expected OpenMP device compilation."); 2144 Width = AuxTarget->getHalfWidth(); 2145 Align = AuxTarget->getHalfAlign(); 2146 } 2147 break; 2148 case BuiltinType::Float: 2149 Width = Target->getFloatWidth(); 2150 Align = Target->getFloatAlign(); 2151 break; 2152 case BuiltinType::Double: 2153 Width = Target->getDoubleWidth(); 2154 Align = Target->getDoubleAlign(); 2155 break; 2156 case BuiltinType::Ibm128: 2157 Width = Target->getIbm128Width(); 2158 Align = Target->getIbm128Align(); 2159 break; 2160 case BuiltinType::LongDouble: 2161 if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2162 (Target->getLongDoubleWidth() != AuxTarget->getLongDoubleWidth() || 2163 Target->getLongDoubleAlign() != AuxTarget->getLongDoubleAlign())) { 2164 Width = AuxTarget->getLongDoubleWidth(); 2165 Align = AuxTarget->getLongDoubleAlign(); 2166 } else { 2167 Width = Target->getLongDoubleWidth(); 2168 Align = Target->getLongDoubleAlign(); 2169 } 2170 break; 2171 case BuiltinType::Float128: 2172 if (Target->hasFloat128Type() || !getLangOpts().OpenMP || 2173 !getLangOpts().OpenMPIsDevice) { 2174 Width = Target->getFloat128Width(); 2175 Align = Target->getFloat128Align(); 2176 } else { 2177 assert(getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice && 2178 "Expected OpenMP device compilation."); 2179 Width = AuxTarget->getFloat128Width(); 2180 Align = AuxTarget->getFloat128Align(); 2181 } 2182 break; 2183 case BuiltinType::NullPtr: 2184 Width = Target->getPointerWidth(0); // C++ 3.9.1p11: sizeof(nullptr_t) 2185 Align = Target->getPointerAlign(0); // == sizeof(void*) 2186 break; 2187 case BuiltinType::ObjCId: 2188 case BuiltinType::ObjCClass: 2189 case BuiltinType::ObjCSel: 2190 Width = Target->getPointerWidth(0); 2191 Align = Target->getPointerAlign(0); 2192 break; 2193 case BuiltinType::OCLSampler: 2194 case BuiltinType::OCLEvent: 2195 case BuiltinType::OCLClkEvent: 2196 case BuiltinType::OCLQueue: 2197 case BuiltinType::OCLReserveID: 2198 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 2199 case BuiltinType::Id: 2200 #include "clang/Basic/OpenCLImageTypes.def" 2201 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 2202 case BuiltinType::Id: 2203 #include "clang/Basic/OpenCLExtensionTypes.def" 2204 AS = getTargetAddressSpace( 2205 Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T))); 2206 Width = Target->getPointerWidth(AS); 2207 Align = Target->getPointerAlign(AS); 2208 break; 2209 // The SVE types are effectively target-specific. The length of an 2210 // SVE_VECTOR_TYPE is only known at runtime, but it is always a multiple 2211 // of 128 bits. There is one predicate bit for each vector byte, so the 2212 // length of an SVE_PREDICATE_TYPE is always a multiple of 16 bits. 2213 // 2214 // Because the length is only known at runtime, we use a dummy value 2215 // of 0 for the static length. The alignment values are those defined 2216 // by the Procedure Call Standard for the Arm Architecture. 2217 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits, \ 2218 IsSigned, IsFP, IsBF) \ 2219 case BuiltinType::Id: \ 2220 Width = 0; \ 2221 Align = 128; \ 2222 break; 2223 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls) \ 2224 case BuiltinType::Id: \ 2225 Width = 0; \ 2226 Align = 16; \ 2227 break; 2228 #include "clang/Basic/AArch64SVEACLETypes.def" 2229 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 2230 case BuiltinType::Id: \ 2231 Width = Size; \ 2232 Align = Size; \ 2233 break; 2234 #include "clang/Basic/PPCTypes.def" 2235 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, ElKind, ElBits, NF, IsSigned, \ 2236 IsFP) \ 2237 case BuiltinType::Id: \ 2238 Width = 0; \ 2239 Align = ElBits; \ 2240 break; 2241 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, ElKind) \ 2242 case BuiltinType::Id: \ 2243 Width = 0; \ 2244 Align = 8; \ 2245 break; 2246 #include "clang/Basic/RISCVVTypes.def" 2247 } 2248 break; 2249 case Type::ObjCObjectPointer: 2250 Width = Target->getPointerWidth(0); 2251 Align = Target->getPointerAlign(0); 2252 break; 2253 case Type::BlockPointer: 2254 AS = getTargetAddressSpace(cast<BlockPointerType>(T)->getPointeeType()); 2255 Width = Target->getPointerWidth(AS); 2256 Align = Target->getPointerAlign(AS); 2257 break; 2258 case Type::LValueReference: 2259 case Type::RValueReference: 2260 // alignof and sizeof should never enter this code path here, so we go 2261 // the pointer route. 2262 AS = getTargetAddressSpace(cast<ReferenceType>(T)->getPointeeType()); 2263 Width = Target->getPointerWidth(AS); 2264 Align = Target->getPointerAlign(AS); 2265 break; 2266 case Type::Pointer: 2267 AS = getTargetAddressSpace(cast<PointerType>(T)->getPointeeType()); 2268 Width = Target->getPointerWidth(AS); 2269 Align = Target->getPointerAlign(AS); 2270 break; 2271 case Type::MemberPointer: { 2272 const auto *MPT = cast<MemberPointerType>(T); 2273 CXXABI::MemberPointerInfo MPI = ABI->getMemberPointerInfo(MPT); 2274 Width = MPI.Width; 2275 Align = MPI.Align; 2276 break; 2277 } 2278 case Type::Complex: { 2279 // Complex types have the same alignment as their elements, but twice the 2280 // size. 2281 TypeInfo EltInfo = getTypeInfo(cast<ComplexType>(T)->getElementType()); 2282 Width = EltInfo.Width * 2; 2283 Align = EltInfo.Align; 2284 break; 2285 } 2286 case Type::ObjCObject: 2287 return getTypeInfo(cast<ObjCObjectType>(T)->getBaseType().getTypePtr()); 2288 case Type::Adjusted: 2289 case Type::Decayed: 2290 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); 2291 case Type::ObjCInterface: { 2292 const auto *ObjCI = cast<ObjCInterfaceType>(T); 2293 if (ObjCI->getDecl()->isInvalidDecl()) { 2294 Width = 8; 2295 Align = 8; 2296 break; 2297 } 2298 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl()); 2299 Width = toBits(Layout.getSize()); 2300 Align = toBits(Layout.getAlignment()); 2301 break; 2302 } 2303 case Type::BitInt: { 2304 const auto *EIT = cast<BitIntType>(T); 2305 Align = 2306 std::min(static_cast<unsigned>(std::max( 2307 getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))), 2308 Target->getLongLongAlign()); 2309 Width = llvm::alignTo(EIT->getNumBits(), Align); 2310 break; 2311 } 2312 case Type::Record: 2313 case Type::Enum: { 2314 const auto *TT = cast<TagType>(T); 2315 2316 if (TT->getDecl()->isInvalidDecl()) { 2317 Width = 8; 2318 Align = 8; 2319 break; 2320 } 2321 2322 if (const auto *ET = dyn_cast<EnumType>(TT)) { 2323 const EnumDecl *ED = ET->getDecl(); 2324 TypeInfo Info = 2325 getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType()); 2326 if (unsigned AttrAlign = ED->getMaxAlignment()) { 2327 Info.Align = AttrAlign; 2328 Info.AlignRequirement = AlignRequirementKind::RequiredByEnum; 2329 } 2330 return Info; 2331 } 2332 2333 const auto *RT = cast<RecordType>(TT); 2334 const RecordDecl *RD = RT->getDecl(); 2335 const ASTRecordLayout &Layout = getASTRecordLayout(RD); 2336 Width = toBits(Layout.getSize()); 2337 Align = toBits(Layout.getAlignment()); 2338 AlignRequirement = RD->hasAttr<AlignedAttr>() 2339 ? AlignRequirementKind::RequiredByRecord 2340 : AlignRequirementKind::None; 2341 break; 2342 } 2343 2344 case Type::SubstTemplateTypeParm: 2345 return getTypeInfo(cast<SubstTemplateTypeParmType>(T)-> 2346 getReplacementType().getTypePtr()); 2347 2348 case Type::Auto: 2349 case Type::DeducedTemplateSpecialization: { 2350 const auto *A = cast<DeducedType>(T); 2351 assert(!A->getDeducedType().isNull() && 2352 "cannot request the size of an undeduced or dependent auto type"); 2353 return getTypeInfo(A->getDeducedType().getTypePtr()); 2354 } 2355 2356 case Type::Paren: 2357 return getTypeInfo(cast<ParenType>(T)->getInnerType().getTypePtr()); 2358 2359 case Type::MacroQualified: 2360 return getTypeInfo( 2361 cast<MacroQualifiedType>(T)->getUnderlyingType().getTypePtr()); 2362 2363 case Type::ObjCTypeParam: 2364 return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr()); 2365 2366 case Type::Using: 2367 return getTypeInfo(cast<UsingType>(T)->desugar().getTypePtr()); 2368 2369 case Type::Typedef: { 2370 const TypedefNameDecl *Typedef = cast<TypedefType>(T)->getDecl(); 2371 TypeInfo Info = getTypeInfo(Typedef->getUnderlyingType().getTypePtr()); 2372 // If the typedef has an aligned attribute on it, it overrides any computed 2373 // alignment we have. This violates the GCC documentation (which says that 2374 // attribute(aligned) can only round up) but matches its implementation. 2375 if (unsigned AttrAlign = Typedef->getMaxAlignment()) { 2376 Align = AttrAlign; 2377 AlignRequirement = AlignRequirementKind::RequiredByTypedef; 2378 } else { 2379 Align = Info.Align; 2380 AlignRequirement = Info.AlignRequirement; 2381 } 2382 Width = Info.Width; 2383 break; 2384 } 2385 2386 case Type::Elaborated: 2387 return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr()); 2388 2389 case Type::Attributed: 2390 return getTypeInfo( 2391 cast<AttributedType>(T)->getEquivalentType().getTypePtr()); 2392 2393 case Type::BTFTagAttributed: 2394 return getTypeInfo( 2395 cast<BTFTagAttributedType>(T)->getWrappedType().getTypePtr()); 2396 2397 case Type::Atomic: { 2398 // Start with the base type information. 2399 TypeInfo Info = getTypeInfo(cast<AtomicType>(T)->getValueType()); 2400 Width = Info.Width; 2401 Align = Info.Align; 2402 2403 if (!Width) { 2404 // An otherwise zero-sized type should still generate an 2405 // atomic operation. 2406 Width = Target->getCharWidth(); 2407 assert(Align); 2408 } else if (Width <= Target->getMaxAtomicPromoteWidth()) { 2409 // If the size of the type doesn't exceed the platform's max 2410 // atomic promotion width, make the size and alignment more 2411 // favorable to atomic operations: 2412 2413 // Round the size up to a power of 2. 2414 if (!llvm::isPowerOf2_64(Width)) 2415 Width = llvm::NextPowerOf2(Width); 2416 2417 // Set the alignment equal to the size. 2418 Align = static_cast<unsigned>(Width); 2419 } 2420 } 2421 break; 2422 2423 case Type::Pipe: 2424 Width = Target->getPointerWidth(getTargetAddressSpace(LangAS::opencl_global)); 2425 Align = Target->getPointerAlign(getTargetAddressSpace(LangAS::opencl_global)); 2426 break; 2427 } 2428 2429 assert(llvm::isPowerOf2_32(Align) && "Alignment must be power of 2"); 2430 return TypeInfo(Width, Align, AlignRequirement); 2431 } 2432 2433 unsigned ASTContext::getTypeUnadjustedAlign(const Type *T) const { 2434 UnadjustedAlignMap::iterator I = MemoizedUnadjustedAlign.find(T); 2435 if (I != MemoizedUnadjustedAlign.end()) 2436 return I->second; 2437 2438 unsigned UnadjustedAlign; 2439 if (const auto *RT = T->getAs<RecordType>()) { 2440 const RecordDecl *RD = RT->getDecl(); 2441 const ASTRecordLayout &Layout = getASTRecordLayout(RD); 2442 UnadjustedAlign = toBits(Layout.getUnadjustedAlignment()); 2443 } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) { 2444 const ASTRecordLayout &Layout = getASTObjCInterfaceLayout(ObjCI->getDecl()); 2445 UnadjustedAlign = toBits(Layout.getUnadjustedAlignment()); 2446 } else { 2447 UnadjustedAlign = getTypeAlign(T->getUnqualifiedDesugaredType()); 2448 } 2449 2450 MemoizedUnadjustedAlign[T] = UnadjustedAlign; 2451 return UnadjustedAlign; 2452 } 2453 2454 unsigned ASTContext::getOpenMPDefaultSimdAlign(QualType T) const { 2455 unsigned SimdAlign = getTargetInfo().getSimdDefaultAlign(); 2456 return SimdAlign; 2457 } 2458 2459 /// toCharUnitsFromBits - Convert a size in bits to a size in characters. 2460 CharUnits ASTContext::toCharUnitsFromBits(int64_t BitSize) const { 2461 return CharUnits::fromQuantity(BitSize / getCharWidth()); 2462 } 2463 2464 /// toBits - Convert a size in characters to a size in characters. 2465 int64_t ASTContext::toBits(CharUnits CharSize) const { 2466 return CharSize.getQuantity() * getCharWidth(); 2467 } 2468 2469 /// getTypeSizeInChars - Return the size of the specified type, in characters. 2470 /// This method does not work on incomplete types. 2471 CharUnits ASTContext::getTypeSizeInChars(QualType T) const { 2472 return getTypeInfoInChars(T).Width; 2473 } 2474 CharUnits ASTContext::getTypeSizeInChars(const Type *T) const { 2475 return getTypeInfoInChars(T).Width; 2476 } 2477 2478 /// getTypeAlignInChars - Return the ABI-specified alignment of a type, in 2479 /// characters. This method does not work on incomplete types. 2480 CharUnits ASTContext::getTypeAlignInChars(QualType T) const { 2481 return toCharUnitsFromBits(getTypeAlign(T)); 2482 } 2483 CharUnits ASTContext::getTypeAlignInChars(const Type *T) const { 2484 return toCharUnitsFromBits(getTypeAlign(T)); 2485 } 2486 2487 /// getTypeUnadjustedAlignInChars - Return the ABI-specified alignment of a 2488 /// type, in characters, before alignment adustments. This method does 2489 /// not work on incomplete types. 2490 CharUnits ASTContext::getTypeUnadjustedAlignInChars(QualType T) const { 2491 return toCharUnitsFromBits(getTypeUnadjustedAlign(T)); 2492 } 2493 CharUnits ASTContext::getTypeUnadjustedAlignInChars(const Type *T) const { 2494 return toCharUnitsFromBits(getTypeUnadjustedAlign(T)); 2495 } 2496 2497 /// getPreferredTypeAlign - Return the "preferred" alignment of the specified 2498 /// type for the current target in bits. This can be different than the ABI 2499 /// alignment in cases where it is beneficial for performance or backwards 2500 /// compatibility preserving to overalign a data type. (Note: despite the name, 2501 /// the preferred alignment is ABI-impacting, and not an optimization.) 2502 unsigned ASTContext::getPreferredTypeAlign(const Type *T) const { 2503 TypeInfo TI = getTypeInfo(T); 2504 unsigned ABIAlign = TI.Align; 2505 2506 T = T->getBaseElementTypeUnsafe(); 2507 2508 // The preferred alignment of member pointers is that of a pointer. 2509 if (T->isMemberPointerType()) 2510 return getPreferredTypeAlign(getPointerDiffType().getTypePtr()); 2511 2512 if (!Target->allowsLargerPreferedTypeAlignment()) 2513 return ABIAlign; 2514 2515 if (const auto *RT = T->getAs<RecordType>()) { 2516 const RecordDecl *RD = RT->getDecl(); 2517 2518 // When used as part of a typedef, or together with a 'packed' attribute, 2519 // the 'aligned' attribute can be used to decrease alignment. Note that the 2520 // 'packed' case is already taken into consideration when computing the 2521 // alignment, we only need to handle the typedef case here. 2522 if (TI.AlignRequirement == AlignRequirementKind::RequiredByTypedef || 2523 RD->isInvalidDecl()) 2524 return ABIAlign; 2525 2526 unsigned PreferredAlign = static_cast<unsigned>( 2527 toBits(getASTRecordLayout(RD).PreferredAlignment)); 2528 assert(PreferredAlign >= ABIAlign && 2529 "PreferredAlign should be at least as large as ABIAlign."); 2530 return PreferredAlign; 2531 } 2532 2533 // Double (and, for targets supporting AIX `power` alignment, long double) and 2534 // long long should be naturally aligned (despite requiring less alignment) if 2535 // possible. 2536 if (const auto *CT = T->getAs<ComplexType>()) 2537 T = CT->getElementType().getTypePtr(); 2538 if (const auto *ET = T->getAs<EnumType>()) 2539 T = ET->getDecl()->getIntegerType().getTypePtr(); 2540 if (T->isSpecificBuiltinType(BuiltinType::Double) || 2541 T->isSpecificBuiltinType(BuiltinType::LongLong) || 2542 T->isSpecificBuiltinType(BuiltinType::ULongLong) || 2543 (T->isSpecificBuiltinType(BuiltinType::LongDouble) && 2544 Target->defaultsToAIXPowerAlignment())) 2545 // Don't increase the alignment if an alignment attribute was specified on a 2546 // typedef declaration. 2547 if (!TI.isAlignRequired()) 2548 return std::max(ABIAlign, (unsigned)getTypeSize(T)); 2549 2550 return ABIAlign; 2551 } 2552 2553 /// getTargetDefaultAlignForAttributeAligned - Return the default alignment 2554 /// for __attribute__((aligned)) on this target, to be used if no alignment 2555 /// value is specified. 2556 unsigned ASTContext::getTargetDefaultAlignForAttributeAligned() const { 2557 return getTargetInfo().getDefaultAlignForAttributeAligned(); 2558 } 2559 2560 /// getAlignOfGlobalVar - Return the alignment in bits that should be given 2561 /// to a global variable of the specified type. 2562 unsigned ASTContext::getAlignOfGlobalVar(QualType T) const { 2563 uint64_t TypeSize = getTypeSize(T.getTypePtr()); 2564 return std::max(getPreferredTypeAlign(T), 2565 getTargetInfo().getMinGlobalAlign(TypeSize)); 2566 } 2567 2568 /// getAlignOfGlobalVarInChars - Return the alignment in characters that 2569 /// should be given to a global variable of the specified type. 2570 CharUnits ASTContext::getAlignOfGlobalVarInChars(QualType T) const { 2571 return toCharUnitsFromBits(getAlignOfGlobalVar(T)); 2572 } 2573 2574 CharUnits ASTContext::getOffsetOfBaseWithVBPtr(const CXXRecordDecl *RD) const { 2575 CharUnits Offset = CharUnits::Zero(); 2576 const ASTRecordLayout *Layout = &getASTRecordLayout(RD); 2577 while (const CXXRecordDecl *Base = Layout->getBaseSharingVBPtr()) { 2578 Offset += Layout->getBaseClassOffset(Base); 2579 Layout = &getASTRecordLayout(Base); 2580 } 2581 return Offset; 2582 } 2583 2584 CharUnits ASTContext::getMemberPointerPathAdjustment(const APValue &MP) const { 2585 const ValueDecl *MPD = MP.getMemberPointerDecl(); 2586 CharUnits ThisAdjustment = CharUnits::Zero(); 2587 ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath(); 2588 bool DerivedMember = MP.isMemberPointerToDerivedMember(); 2589 const CXXRecordDecl *RD = cast<CXXRecordDecl>(MPD->getDeclContext()); 2590 for (unsigned I = 0, N = Path.size(); I != N; ++I) { 2591 const CXXRecordDecl *Base = RD; 2592 const CXXRecordDecl *Derived = Path[I]; 2593 if (DerivedMember) 2594 std::swap(Base, Derived); 2595 ThisAdjustment += getASTRecordLayout(Derived).getBaseClassOffset(Base); 2596 RD = Path[I]; 2597 } 2598 if (DerivedMember) 2599 ThisAdjustment = -ThisAdjustment; 2600 return ThisAdjustment; 2601 } 2602 2603 /// DeepCollectObjCIvars - 2604 /// This routine first collects all declared, but not synthesized, ivars in 2605 /// super class and then collects all ivars, including those synthesized for 2606 /// current class. This routine is used for implementation of current class 2607 /// when all ivars, declared and synthesized are known. 2608 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI, 2609 bool leafClass, 2610 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const { 2611 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass()) 2612 DeepCollectObjCIvars(SuperClass, false, Ivars); 2613 if (!leafClass) { 2614 llvm::append_range(Ivars, OI->ivars()); 2615 } else { 2616 auto *IDecl = const_cast<ObjCInterfaceDecl *>(OI); 2617 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv; 2618 Iv= Iv->getNextIvar()) 2619 Ivars.push_back(Iv); 2620 } 2621 } 2622 2623 /// CollectInheritedProtocols - Collect all protocols in current class and 2624 /// those inherited by it. 2625 void ASTContext::CollectInheritedProtocols(const Decl *CDecl, 2626 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) { 2627 if (const auto *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) { 2628 // We can use protocol_iterator here instead of 2629 // all_referenced_protocol_iterator since we are walking all categories. 2630 for (auto *Proto : OI->all_referenced_protocols()) { 2631 CollectInheritedProtocols(Proto, Protocols); 2632 } 2633 2634 // Categories of this Interface. 2635 for (const auto *Cat : OI->visible_categories()) 2636 CollectInheritedProtocols(Cat, Protocols); 2637 2638 if (ObjCInterfaceDecl *SD = OI->getSuperClass()) 2639 while (SD) { 2640 CollectInheritedProtocols(SD, Protocols); 2641 SD = SD->getSuperClass(); 2642 } 2643 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(CDecl)) { 2644 for (auto *Proto : OC->protocols()) { 2645 CollectInheritedProtocols(Proto, Protocols); 2646 } 2647 } else if (const auto *OP = dyn_cast<ObjCProtocolDecl>(CDecl)) { 2648 // Insert the protocol. 2649 if (!Protocols.insert( 2650 const_cast<ObjCProtocolDecl *>(OP->getCanonicalDecl())).second) 2651 return; 2652 2653 for (auto *Proto : OP->protocols()) 2654 CollectInheritedProtocols(Proto, Protocols); 2655 } 2656 } 2657 2658 static bool unionHasUniqueObjectRepresentations(const ASTContext &Context, 2659 const RecordDecl *RD) { 2660 assert(RD->isUnion() && "Must be union type"); 2661 CharUnits UnionSize = Context.getTypeSizeInChars(RD->getTypeForDecl()); 2662 2663 for (const auto *Field : RD->fields()) { 2664 if (!Context.hasUniqueObjectRepresentations(Field->getType())) 2665 return false; 2666 CharUnits FieldSize = Context.getTypeSizeInChars(Field->getType()); 2667 if (FieldSize != UnionSize) 2668 return false; 2669 } 2670 return !RD->field_empty(); 2671 } 2672 2673 static int64_t getSubobjectOffset(const FieldDecl *Field, 2674 const ASTContext &Context, 2675 const clang::ASTRecordLayout & /*Layout*/) { 2676 return Context.getFieldOffset(Field); 2677 } 2678 2679 static int64_t getSubobjectOffset(const CXXRecordDecl *RD, 2680 const ASTContext &Context, 2681 const clang::ASTRecordLayout &Layout) { 2682 return Context.toBits(Layout.getBaseClassOffset(RD)); 2683 } 2684 2685 static llvm::Optional<int64_t> 2686 structHasUniqueObjectRepresentations(const ASTContext &Context, 2687 const RecordDecl *RD); 2688 2689 static llvm::Optional<int64_t> 2690 getSubobjectSizeInBits(const FieldDecl *Field, const ASTContext &Context) { 2691 if (Field->getType()->isRecordType()) { 2692 const RecordDecl *RD = Field->getType()->getAsRecordDecl(); 2693 if (!RD->isUnion()) 2694 return structHasUniqueObjectRepresentations(Context, RD); 2695 } 2696 2697 // A _BitInt type may not be unique if it has padding bits 2698 // but if it is a bitfield the padding bits are not used. 2699 bool IsBitIntType = Field->getType()->isBitIntType(); 2700 if (!Field->getType()->isReferenceType() && !IsBitIntType && 2701 !Context.hasUniqueObjectRepresentations(Field->getType())) 2702 return llvm::None; 2703 2704 int64_t FieldSizeInBits = 2705 Context.toBits(Context.getTypeSizeInChars(Field->getType())); 2706 if (Field->isBitField()) { 2707 int64_t BitfieldSize = Field->getBitWidthValue(Context); 2708 if (IsBitIntType) { 2709 if ((unsigned)BitfieldSize > 2710 cast<BitIntType>(Field->getType())->getNumBits()) 2711 return llvm::None; 2712 } else if (BitfieldSize > FieldSizeInBits) { 2713 return llvm::None; 2714 } 2715 FieldSizeInBits = BitfieldSize; 2716 } else if (IsBitIntType && 2717 !Context.hasUniqueObjectRepresentations(Field->getType())) { 2718 return llvm::None; 2719 } 2720 return FieldSizeInBits; 2721 } 2722 2723 static llvm::Optional<int64_t> 2724 getSubobjectSizeInBits(const CXXRecordDecl *RD, const ASTContext &Context) { 2725 return structHasUniqueObjectRepresentations(Context, RD); 2726 } 2727 2728 template <typename RangeT> 2729 static llvm::Optional<int64_t> structSubobjectsHaveUniqueObjectRepresentations( 2730 const RangeT &Subobjects, int64_t CurOffsetInBits, 2731 const ASTContext &Context, const clang::ASTRecordLayout &Layout) { 2732 for (const auto *Subobject : Subobjects) { 2733 llvm::Optional<int64_t> SizeInBits = 2734 getSubobjectSizeInBits(Subobject, Context); 2735 if (!SizeInBits) 2736 return llvm::None; 2737 if (*SizeInBits != 0) { 2738 int64_t Offset = getSubobjectOffset(Subobject, Context, Layout); 2739 if (Offset != CurOffsetInBits) 2740 return llvm::None; 2741 CurOffsetInBits += *SizeInBits; 2742 } 2743 } 2744 return CurOffsetInBits; 2745 } 2746 2747 static llvm::Optional<int64_t> 2748 structHasUniqueObjectRepresentations(const ASTContext &Context, 2749 const RecordDecl *RD) { 2750 assert(!RD->isUnion() && "Must be struct/class type"); 2751 const auto &Layout = Context.getASTRecordLayout(RD); 2752 2753 int64_t CurOffsetInBits = 0; 2754 if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RD)) { 2755 if (ClassDecl->isDynamicClass()) 2756 return llvm::None; 2757 2758 SmallVector<CXXRecordDecl *, 4> Bases; 2759 for (const auto &Base : ClassDecl->bases()) { 2760 // Empty types can be inherited from, and non-empty types can potentially 2761 // have tail padding, so just make sure there isn't an error. 2762 Bases.emplace_back(Base.getType()->getAsCXXRecordDecl()); 2763 } 2764 2765 llvm::sort(Bases, [&](const CXXRecordDecl *L, const CXXRecordDecl *R) { 2766 return Layout.getBaseClassOffset(L) < Layout.getBaseClassOffset(R); 2767 }); 2768 2769 llvm::Optional<int64_t> OffsetAfterBases = 2770 structSubobjectsHaveUniqueObjectRepresentations(Bases, CurOffsetInBits, 2771 Context, Layout); 2772 if (!OffsetAfterBases) 2773 return llvm::None; 2774 CurOffsetInBits = *OffsetAfterBases; 2775 } 2776 2777 llvm::Optional<int64_t> OffsetAfterFields = 2778 structSubobjectsHaveUniqueObjectRepresentations( 2779 RD->fields(), CurOffsetInBits, Context, Layout); 2780 if (!OffsetAfterFields) 2781 return llvm::None; 2782 CurOffsetInBits = *OffsetAfterFields; 2783 2784 return CurOffsetInBits; 2785 } 2786 2787 bool ASTContext::hasUniqueObjectRepresentations(QualType Ty) const { 2788 // C++17 [meta.unary.prop]: 2789 // The predicate condition for a template specialization 2790 // has_unique_object_representations<T> shall be 2791 // satisfied if and only if: 2792 // (9.1) - T is trivially copyable, and 2793 // (9.2) - any two objects of type T with the same value have the same 2794 // object representation, where two objects 2795 // of array or non-union class type are considered to have the same value 2796 // if their respective sequences of 2797 // direct subobjects have the same values, and two objects of union type 2798 // are considered to have the same 2799 // value if they have the same active member and the corresponding members 2800 // have the same value. 2801 // The set of scalar types for which this condition holds is 2802 // implementation-defined. [ Note: If a type has padding 2803 // bits, the condition does not hold; otherwise, the condition holds true 2804 // for unsigned integral types. -- end note ] 2805 assert(!Ty.isNull() && "Null QualType sent to unique object rep check"); 2806 2807 // Arrays are unique only if their element type is unique. 2808 if (Ty->isArrayType()) 2809 return hasUniqueObjectRepresentations(getBaseElementType(Ty)); 2810 2811 // (9.1) - T is trivially copyable... 2812 if (!Ty.isTriviallyCopyableType(*this)) 2813 return false; 2814 2815 // All integrals and enums are unique. 2816 if (Ty->isIntegralOrEnumerationType()) { 2817 // Except _BitInt types that have padding bits. 2818 if (const auto *BIT = dyn_cast<BitIntType>(Ty)) 2819 return getTypeSize(BIT) == BIT->getNumBits(); 2820 2821 return true; 2822 } 2823 2824 // All other pointers are unique. 2825 if (Ty->isPointerType()) 2826 return true; 2827 2828 if (Ty->isMemberPointerType()) { 2829 const auto *MPT = Ty->getAs<MemberPointerType>(); 2830 return !ABI->getMemberPointerInfo(MPT).HasPadding; 2831 } 2832 2833 if (Ty->isRecordType()) { 2834 const RecordDecl *Record = Ty->castAs<RecordType>()->getDecl(); 2835 2836 if (Record->isInvalidDecl()) 2837 return false; 2838 2839 if (Record->isUnion()) 2840 return unionHasUniqueObjectRepresentations(*this, Record); 2841 2842 Optional<int64_t> StructSize = 2843 structHasUniqueObjectRepresentations(*this, Record); 2844 2845 return StructSize && *StructSize == static_cast<int64_t>(getTypeSize(Ty)); 2846 } 2847 2848 // FIXME: More cases to handle here (list by rsmith): 2849 // vectors (careful about, eg, vector of 3 foo) 2850 // _Complex int and friends 2851 // _Atomic T 2852 // Obj-C block pointers 2853 // Obj-C object pointers 2854 // and perhaps OpenCL's various builtin types (pipe, sampler_t, event_t, 2855 // clk_event_t, queue_t, reserve_id_t) 2856 // There're also Obj-C class types and the Obj-C selector type, but I think it 2857 // makes sense for those to return false here. 2858 2859 return false; 2860 } 2861 2862 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const { 2863 unsigned count = 0; 2864 // Count ivars declared in class extension. 2865 for (const auto *Ext : OI->known_extensions()) 2866 count += Ext->ivar_size(); 2867 2868 // Count ivar defined in this class's implementation. This 2869 // includes synthesized ivars. 2870 if (ObjCImplementationDecl *ImplDecl = OI->getImplementation()) 2871 count += ImplDecl->ivar_size(); 2872 2873 return count; 2874 } 2875 2876 bool ASTContext::isSentinelNullExpr(const Expr *E) { 2877 if (!E) 2878 return false; 2879 2880 // nullptr_t is always treated as null. 2881 if (E->getType()->isNullPtrType()) return true; 2882 2883 if (E->getType()->isAnyPointerType() && 2884 E->IgnoreParenCasts()->isNullPointerConstant(*this, 2885 Expr::NPC_ValueDependentIsNull)) 2886 return true; 2887 2888 // Unfortunately, __null has type 'int'. 2889 if (isa<GNUNullExpr>(E)) return true; 2890 2891 return false; 2892 } 2893 2894 /// Get the implementation of ObjCInterfaceDecl, or nullptr if none 2895 /// exists. 2896 ObjCImplementationDecl *ASTContext::getObjCImplementation(ObjCInterfaceDecl *D) { 2897 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator 2898 I = ObjCImpls.find(D); 2899 if (I != ObjCImpls.end()) 2900 return cast<ObjCImplementationDecl>(I->second); 2901 return nullptr; 2902 } 2903 2904 /// Get the implementation of ObjCCategoryDecl, or nullptr if none 2905 /// exists. 2906 ObjCCategoryImplDecl *ASTContext::getObjCImplementation(ObjCCategoryDecl *D) { 2907 llvm::DenseMap<ObjCContainerDecl*, ObjCImplDecl*>::iterator 2908 I = ObjCImpls.find(D); 2909 if (I != ObjCImpls.end()) 2910 return cast<ObjCCategoryImplDecl>(I->second); 2911 return nullptr; 2912 } 2913 2914 /// Set the implementation of ObjCInterfaceDecl. 2915 void ASTContext::setObjCImplementation(ObjCInterfaceDecl *IFaceD, 2916 ObjCImplementationDecl *ImplD) { 2917 assert(IFaceD && ImplD && "Passed null params"); 2918 ObjCImpls[IFaceD] = ImplD; 2919 } 2920 2921 /// Set the implementation of ObjCCategoryDecl. 2922 void ASTContext::setObjCImplementation(ObjCCategoryDecl *CatD, 2923 ObjCCategoryImplDecl *ImplD) { 2924 assert(CatD && ImplD && "Passed null params"); 2925 ObjCImpls[CatD] = ImplD; 2926 } 2927 2928 const ObjCMethodDecl * 2929 ASTContext::getObjCMethodRedeclaration(const ObjCMethodDecl *MD) const { 2930 return ObjCMethodRedecls.lookup(MD); 2931 } 2932 2933 void ASTContext::setObjCMethodRedeclaration(const ObjCMethodDecl *MD, 2934 const ObjCMethodDecl *Redecl) { 2935 assert(!getObjCMethodRedeclaration(MD) && "MD already has a redeclaration"); 2936 ObjCMethodRedecls[MD] = Redecl; 2937 } 2938 2939 const ObjCInterfaceDecl *ASTContext::getObjContainingInterface( 2940 const NamedDecl *ND) const { 2941 if (const auto *ID = dyn_cast<ObjCInterfaceDecl>(ND->getDeclContext())) 2942 return ID; 2943 if (const auto *CD = dyn_cast<ObjCCategoryDecl>(ND->getDeclContext())) 2944 return CD->getClassInterface(); 2945 if (const auto *IMD = dyn_cast<ObjCImplDecl>(ND->getDeclContext())) 2946 return IMD->getClassInterface(); 2947 2948 return nullptr; 2949 } 2950 2951 /// Get the copy initialization expression of VarDecl, or nullptr if 2952 /// none exists. 2953 BlockVarCopyInit ASTContext::getBlockVarCopyInit(const VarDecl *VD) const { 2954 assert(VD && "Passed null params"); 2955 assert(VD->hasAttr<BlocksAttr>() && 2956 "getBlockVarCopyInits - not __block var"); 2957 auto I = BlockVarCopyInits.find(VD); 2958 if (I != BlockVarCopyInits.end()) 2959 return I->second; 2960 return {nullptr, false}; 2961 } 2962 2963 /// Set the copy initialization expression of a block var decl. 2964 void ASTContext::setBlockVarCopyInit(const VarDecl*VD, Expr *CopyExpr, 2965 bool CanThrow) { 2966 assert(VD && CopyExpr && "Passed null params"); 2967 assert(VD->hasAttr<BlocksAttr>() && 2968 "setBlockVarCopyInits - not __block var"); 2969 BlockVarCopyInits[VD].setExprAndFlag(CopyExpr, CanThrow); 2970 } 2971 2972 TypeSourceInfo *ASTContext::CreateTypeSourceInfo(QualType T, 2973 unsigned DataSize) const { 2974 if (!DataSize) 2975 DataSize = TypeLoc::getFullDataSizeForType(T); 2976 else 2977 assert(DataSize == TypeLoc::getFullDataSizeForType(T) && 2978 "incorrect data size provided to CreateTypeSourceInfo!"); 2979 2980 auto *TInfo = 2981 (TypeSourceInfo*)BumpAlloc.Allocate(sizeof(TypeSourceInfo) + DataSize, 8); 2982 new (TInfo) TypeSourceInfo(T); 2983 return TInfo; 2984 } 2985 2986 TypeSourceInfo *ASTContext::getTrivialTypeSourceInfo(QualType T, 2987 SourceLocation L) const { 2988 TypeSourceInfo *DI = CreateTypeSourceInfo(T); 2989 DI->getTypeLoc().initialize(const_cast<ASTContext &>(*this), L); 2990 return DI; 2991 } 2992 2993 const ASTRecordLayout & 2994 ASTContext::getASTObjCInterfaceLayout(const ObjCInterfaceDecl *D) const { 2995 return getObjCLayout(D, nullptr); 2996 } 2997 2998 const ASTRecordLayout & 2999 ASTContext::getASTObjCImplementationLayout( 3000 const ObjCImplementationDecl *D) const { 3001 return getObjCLayout(D->getClassInterface(), D); 3002 } 3003 3004 //===----------------------------------------------------------------------===// 3005 // Type creation/memoization methods 3006 //===----------------------------------------------------------------------===// 3007 3008 QualType 3009 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { 3010 unsigned fastQuals = quals.getFastQualifiers(); 3011 quals.removeFastQualifiers(); 3012 3013 // Check if we've already instantiated this type. 3014 llvm::FoldingSetNodeID ID; 3015 ExtQuals::Profile(ID, baseType, quals); 3016 void *insertPos = nullptr; 3017 if (ExtQuals *eq = ExtQualNodes.FindNodeOrInsertPos(ID, insertPos)) { 3018 assert(eq->getQualifiers() == quals); 3019 return QualType(eq, fastQuals); 3020 } 3021 3022 // If the base type is not canonical, make the appropriate canonical type. 3023 QualType canon; 3024 if (!baseType->isCanonicalUnqualified()) { 3025 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); 3026 canonSplit.Quals.addConsistentQualifiers(quals); 3027 canon = getExtQualType(canonSplit.Ty, canonSplit.Quals); 3028 3029 // Re-find the insert position. 3030 (void) ExtQualNodes.FindNodeOrInsertPos(ID, insertPos); 3031 } 3032 3033 auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); 3034 ExtQualNodes.InsertNode(eq, insertPos); 3035 return QualType(eq, fastQuals); 3036 } 3037 3038 QualType ASTContext::getAddrSpaceQualType(QualType T, 3039 LangAS AddressSpace) const { 3040 QualType CanT = getCanonicalType(T); 3041 if (CanT.getAddressSpace() == AddressSpace) 3042 return T; 3043 3044 // If we are composing extended qualifiers together, merge together 3045 // into one ExtQuals node. 3046 QualifierCollector Quals; 3047 const Type *TypeNode = Quals.strip(T); 3048 3049 // If this type already has an address space specified, it cannot get 3050 // another one. 3051 assert(!Quals.hasAddressSpace() && 3052 "Type cannot be in multiple addr spaces!"); 3053 Quals.addAddressSpace(AddressSpace); 3054 3055 return getExtQualType(TypeNode, Quals); 3056 } 3057 3058 QualType ASTContext::removeAddrSpaceQualType(QualType T) const { 3059 // If the type is not qualified with an address space, just return it 3060 // immediately. 3061 if (!T.hasAddressSpace()) 3062 return T; 3063 3064 // If we are composing extended qualifiers together, merge together 3065 // into one ExtQuals node. 3066 QualifierCollector Quals; 3067 const Type *TypeNode; 3068 3069 while (T.hasAddressSpace()) { 3070 TypeNode = Quals.strip(T); 3071 3072 // If the type no longer has an address space after stripping qualifiers, 3073 // jump out. 3074 if (!QualType(TypeNode, 0).hasAddressSpace()) 3075 break; 3076 3077 // There might be sugar in the way. Strip it and try again. 3078 T = T.getSingleStepDesugaredType(*this); 3079 } 3080 3081 Quals.removeAddressSpace(); 3082 3083 // Removal of the address space can mean there are no longer any 3084 // non-fast qualifiers, so creating an ExtQualType isn't possible (asserts) 3085 // or required. 3086 if (Quals.hasNonFastQualifiers()) 3087 return getExtQualType(TypeNode, Quals); 3088 else 3089 return QualType(TypeNode, Quals.getFastQualifiers()); 3090 } 3091 3092 QualType ASTContext::getObjCGCQualType(QualType T, 3093 Qualifiers::GC GCAttr) const { 3094 QualType CanT = getCanonicalType(T); 3095 if (CanT.getObjCGCAttr() == GCAttr) 3096 return T; 3097 3098 if (const auto *ptr = T->getAs<PointerType>()) { 3099 QualType Pointee = ptr->getPointeeType(); 3100 if (Pointee->isAnyPointerType()) { 3101 QualType ResultType = getObjCGCQualType(Pointee, GCAttr); 3102 return getPointerType(ResultType); 3103 } 3104 } 3105 3106 // If we are composing extended qualifiers together, merge together 3107 // into one ExtQuals node. 3108 QualifierCollector Quals; 3109 const Type *TypeNode = Quals.strip(T); 3110 3111 // If this type already has an ObjCGC specified, it cannot get 3112 // another one. 3113 assert(!Quals.hasObjCGCAttr() && 3114 "Type cannot have multiple ObjCGCs!"); 3115 Quals.addObjCGCAttr(GCAttr); 3116 3117 return getExtQualType(TypeNode, Quals); 3118 } 3119 3120 QualType ASTContext::removePtrSizeAddrSpace(QualType T) const { 3121 if (const PointerType *Ptr = T->getAs<PointerType>()) { 3122 QualType Pointee = Ptr->getPointeeType(); 3123 if (isPtrSizeAddressSpace(Pointee.getAddressSpace())) { 3124 return getPointerType(removeAddrSpaceQualType(Pointee)); 3125 } 3126 } 3127 return T; 3128 } 3129 3130 const FunctionType *ASTContext::adjustFunctionType(const FunctionType *T, 3131 FunctionType::ExtInfo Info) { 3132 if (T->getExtInfo() == Info) 3133 return T; 3134 3135 QualType Result; 3136 if (const auto *FNPT = dyn_cast<FunctionNoProtoType>(T)) { 3137 Result = getFunctionNoProtoType(FNPT->getReturnType(), Info); 3138 } else { 3139 const auto *FPT = cast<FunctionProtoType>(T); 3140 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 3141 EPI.ExtInfo = Info; 3142 Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI); 3143 } 3144 3145 return cast<FunctionType>(Result.getTypePtr()); 3146 } 3147 3148 void ASTContext::adjustDeducedFunctionResultType(FunctionDecl *FD, 3149 QualType ResultType) { 3150 FD = FD->getMostRecentDecl(); 3151 while (true) { 3152 const auto *FPT = FD->getType()->castAs<FunctionProtoType>(); 3153 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 3154 FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI)); 3155 if (FunctionDecl *Next = FD->getPreviousDecl()) 3156 FD = Next; 3157 else 3158 break; 3159 } 3160 if (ASTMutationListener *L = getASTMutationListener()) 3161 L->DeducedReturnType(FD, ResultType); 3162 } 3163 3164 /// Get a function type and produce the equivalent function type with the 3165 /// specified exception specification. Type sugar that can be present on a 3166 /// declaration of a function with an exception specification is permitted 3167 /// and preserved. Other type sugar (for instance, typedefs) is not. 3168 QualType ASTContext::getFunctionTypeWithExceptionSpec( 3169 QualType Orig, const FunctionProtoType::ExceptionSpecInfo &ESI) { 3170 // Might have some parens. 3171 if (const auto *PT = dyn_cast<ParenType>(Orig)) 3172 return getParenType( 3173 getFunctionTypeWithExceptionSpec(PT->getInnerType(), ESI)); 3174 3175 // Might be wrapped in a macro qualified type. 3176 if (const auto *MQT = dyn_cast<MacroQualifiedType>(Orig)) 3177 return getMacroQualifiedType( 3178 getFunctionTypeWithExceptionSpec(MQT->getUnderlyingType(), ESI), 3179 MQT->getMacroIdentifier()); 3180 3181 // Might have a calling-convention attribute. 3182 if (const auto *AT = dyn_cast<AttributedType>(Orig)) 3183 return getAttributedType( 3184 AT->getAttrKind(), 3185 getFunctionTypeWithExceptionSpec(AT->getModifiedType(), ESI), 3186 getFunctionTypeWithExceptionSpec(AT->getEquivalentType(), ESI)); 3187 3188 // Anything else must be a function type. Rebuild it with the new exception 3189 // specification. 3190 const auto *Proto = Orig->castAs<FunctionProtoType>(); 3191 return getFunctionType( 3192 Proto->getReturnType(), Proto->getParamTypes(), 3193 Proto->getExtProtoInfo().withExceptionSpec(ESI)); 3194 } 3195 3196 bool ASTContext::hasSameFunctionTypeIgnoringExceptionSpec(QualType T, 3197 QualType U) { 3198 return hasSameType(T, U) || 3199 (getLangOpts().CPlusPlus17 && 3200 hasSameType(getFunctionTypeWithExceptionSpec(T, EST_None), 3201 getFunctionTypeWithExceptionSpec(U, EST_None))); 3202 } 3203 3204 QualType ASTContext::getFunctionTypeWithoutPtrSizes(QualType T) { 3205 if (const auto *Proto = T->getAs<FunctionProtoType>()) { 3206 QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType()); 3207 SmallVector<QualType, 16> Args(Proto->param_types()); 3208 for (unsigned i = 0, n = Args.size(); i != n; ++i) 3209 Args[i] = removePtrSizeAddrSpace(Args[i]); 3210 return getFunctionType(RetTy, Args, Proto->getExtProtoInfo()); 3211 } 3212 3213 if (const FunctionNoProtoType *Proto = T->getAs<FunctionNoProtoType>()) { 3214 QualType RetTy = removePtrSizeAddrSpace(Proto->getReturnType()); 3215 return getFunctionNoProtoType(RetTy, Proto->getExtInfo()); 3216 } 3217 3218 return T; 3219 } 3220 3221 bool ASTContext::hasSameFunctionTypeIgnoringPtrSizes(QualType T, QualType U) { 3222 return hasSameType(T, U) || 3223 hasSameType(getFunctionTypeWithoutPtrSizes(T), 3224 getFunctionTypeWithoutPtrSizes(U)); 3225 } 3226 3227 void ASTContext::adjustExceptionSpec( 3228 FunctionDecl *FD, const FunctionProtoType::ExceptionSpecInfo &ESI, 3229 bool AsWritten) { 3230 // Update the type. 3231 QualType Updated = 3232 getFunctionTypeWithExceptionSpec(FD->getType(), ESI); 3233 FD->setType(Updated); 3234 3235 if (!AsWritten) 3236 return; 3237 3238 // Update the type in the type source information too. 3239 if (TypeSourceInfo *TSInfo = FD->getTypeSourceInfo()) { 3240 // If the type and the type-as-written differ, we may need to update 3241 // the type-as-written too. 3242 if (TSInfo->getType() != FD->getType()) 3243 Updated = getFunctionTypeWithExceptionSpec(TSInfo->getType(), ESI); 3244 3245 // FIXME: When we get proper type location information for exceptions, 3246 // we'll also have to rebuild the TypeSourceInfo. For now, we just patch 3247 // up the TypeSourceInfo; 3248 assert(TypeLoc::getFullDataSizeForType(Updated) == 3249 TypeLoc::getFullDataSizeForType(TSInfo->getType()) && 3250 "TypeLoc size mismatch from updating exception specification"); 3251 TSInfo->overrideType(Updated); 3252 } 3253 } 3254 3255 /// getComplexType - Return the uniqued reference to the type for a complex 3256 /// number with the specified element type. 3257 QualType ASTContext::getComplexType(QualType T) const { 3258 // Unique pointers, to guarantee there is only one pointer of a particular 3259 // structure. 3260 llvm::FoldingSetNodeID ID; 3261 ComplexType::Profile(ID, T); 3262 3263 void *InsertPos = nullptr; 3264 if (ComplexType *CT = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos)) 3265 return QualType(CT, 0); 3266 3267 // If the pointee type isn't canonical, this won't be a canonical type either, 3268 // so fill in the canonical type field. 3269 QualType Canonical; 3270 if (!T.isCanonical()) { 3271 Canonical = getComplexType(getCanonicalType(T)); 3272 3273 // Get the new insert position for the node we care about. 3274 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos); 3275 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3276 } 3277 auto *New = new (*this, TypeAlignment) ComplexType(T, Canonical); 3278 Types.push_back(New); 3279 ComplexTypes.InsertNode(New, InsertPos); 3280 return QualType(New, 0); 3281 } 3282 3283 /// getPointerType - Return the uniqued reference to the type for a pointer to 3284 /// the specified type. 3285 QualType ASTContext::getPointerType(QualType T) const { 3286 // Unique pointers, to guarantee there is only one pointer of a particular 3287 // structure. 3288 llvm::FoldingSetNodeID ID; 3289 PointerType::Profile(ID, T); 3290 3291 void *InsertPos = nullptr; 3292 if (PointerType *PT = PointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3293 return QualType(PT, 0); 3294 3295 // If the pointee type isn't canonical, this won't be a canonical type either, 3296 // so fill in the canonical type field. 3297 QualType Canonical; 3298 if (!T.isCanonical()) { 3299 Canonical = getPointerType(getCanonicalType(T)); 3300 3301 // Get the new insert position for the node we care about. 3302 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3303 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3304 } 3305 auto *New = new (*this, TypeAlignment) PointerType(T, Canonical); 3306 Types.push_back(New); 3307 PointerTypes.InsertNode(New, InsertPos); 3308 return QualType(New, 0); 3309 } 3310 3311 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const { 3312 llvm::FoldingSetNodeID ID; 3313 AdjustedType::Profile(ID, Orig, New); 3314 void *InsertPos = nullptr; 3315 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3316 if (AT) 3317 return QualType(AT, 0); 3318 3319 QualType Canonical = getCanonicalType(New); 3320 3321 // Get the new insert position for the node we care about. 3322 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3323 assert(!AT && "Shouldn't be in the map!"); 3324 3325 AT = new (*this, TypeAlignment) 3326 AdjustedType(Type::Adjusted, Orig, New, Canonical); 3327 Types.push_back(AT); 3328 AdjustedTypes.InsertNode(AT, InsertPos); 3329 return QualType(AT, 0); 3330 } 3331 3332 QualType ASTContext::getDecayedType(QualType T) const { 3333 assert((T->isArrayType() || T->isFunctionType()) && "T does not decay"); 3334 3335 QualType Decayed; 3336 3337 // C99 6.7.5.3p7: 3338 // A declaration of a parameter as "array of type" shall be 3339 // adjusted to "qualified pointer to type", where the type 3340 // qualifiers (if any) are those specified within the [ and ] of 3341 // the array type derivation. 3342 if (T->isArrayType()) 3343 Decayed = getArrayDecayedType(T); 3344 3345 // C99 6.7.5.3p8: 3346 // A declaration of a parameter as "function returning type" 3347 // shall be adjusted to "pointer to function returning type", as 3348 // in 6.3.2.1. 3349 if (T->isFunctionType()) 3350 Decayed = getPointerType(T); 3351 3352 llvm::FoldingSetNodeID ID; 3353 AdjustedType::Profile(ID, T, Decayed); 3354 void *InsertPos = nullptr; 3355 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3356 if (AT) 3357 return QualType(AT, 0); 3358 3359 QualType Canonical = getCanonicalType(Decayed); 3360 3361 // Get the new insert position for the node we care about. 3362 AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); 3363 assert(!AT && "Shouldn't be in the map!"); 3364 3365 AT = new (*this, TypeAlignment) DecayedType(T, Decayed, Canonical); 3366 Types.push_back(AT); 3367 AdjustedTypes.InsertNode(AT, InsertPos); 3368 return QualType(AT, 0); 3369 } 3370 3371 /// getBlockPointerType - Return the uniqued reference to the type for 3372 /// a pointer to the specified block. 3373 QualType ASTContext::getBlockPointerType(QualType T) const { 3374 assert(T->isFunctionType() && "block of function types only"); 3375 // Unique pointers, to guarantee there is only one block of a particular 3376 // structure. 3377 llvm::FoldingSetNodeID ID; 3378 BlockPointerType::Profile(ID, T); 3379 3380 void *InsertPos = nullptr; 3381 if (BlockPointerType *PT = 3382 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3383 return QualType(PT, 0); 3384 3385 // If the block pointee type isn't canonical, this won't be a canonical 3386 // type either so fill in the canonical type field. 3387 QualType Canonical; 3388 if (!T.isCanonical()) { 3389 Canonical = getBlockPointerType(getCanonicalType(T)); 3390 3391 // Get the new insert position for the node we care about. 3392 BlockPointerType *NewIP = 3393 BlockPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3394 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3395 } 3396 auto *New = new (*this, TypeAlignment) BlockPointerType(T, Canonical); 3397 Types.push_back(New); 3398 BlockPointerTypes.InsertNode(New, InsertPos); 3399 return QualType(New, 0); 3400 } 3401 3402 /// getLValueReferenceType - Return the uniqued reference to the type for an 3403 /// lvalue reference to the specified type. 3404 QualType 3405 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { 3406 assert((!T->isPlaceholderType() || 3407 T->isSpecificPlaceholderType(BuiltinType::UnknownAny)) && 3408 "Unresolved placeholder type"); 3409 3410 // Unique pointers, to guarantee there is only one pointer of a particular 3411 // structure. 3412 llvm::FoldingSetNodeID ID; 3413 ReferenceType::Profile(ID, T, SpelledAsLValue); 3414 3415 void *InsertPos = nullptr; 3416 if (LValueReferenceType *RT = 3417 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos)) 3418 return QualType(RT, 0); 3419 3420 const auto *InnerRef = T->getAs<ReferenceType>(); 3421 3422 // If the referencee type isn't canonical, this won't be a canonical type 3423 // either, so fill in the canonical type field. 3424 QualType Canonical; 3425 if (!SpelledAsLValue || InnerRef || !T.isCanonical()) { 3426 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3427 Canonical = getLValueReferenceType(getCanonicalType(PointeeType)); 3428 3429 // Get the new insert position for the node we care about. 3430 LValueReferenceType *NewIP = 3431 LValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos); 3432 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3433 } 3434 3435 auto *New = new (*this, TypeAlignment) LValueReferenceType(T, Canonical, 3436 SpelledAsLValue); 3437 Types.push_back(New); 3438 LValueReferenceTypes.InsertNode(New, InsertPos); 3439 3440 return QualType(New, 0); 3441 } 3442 3443 /// getRValueReferenceType - Return the uniqued reference to the type for an 3444 /// rvalue reference to the specified type. 3445 QualType ASTContext::getRValueReferenceType(QualType T) const { 3446 assert((!T->isPlaceholderType() || 3447 T->isSpecificPlaceholderType(BuiltinType::UnknownAny)) && 3448 "Unresolved placeholder type"); 3449 3450 // Unique pointers, to guarantee there is only one pointer of a particular 3451 // structure. 3452 llvm::FoldingSetNodeID ID; 3453 ReferenceType::Profile(ID, T, false); 3454 3455 void *InsertPos = nullptr; 3456 if (RValueReferenceType *RT = 3457 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos)) 3458 return QualType(RT, 0); 3459 3460 const auto *InnerRef = T->getAs<ReferenceType>(); 3461 3462 // If the referencee type isn't canonical, this won't be a canonical type 3463 // either, so fill in the canonical type field. 3464 QualType Canonical; 3465 if (InnerRef || !T.isCanonical()) { 3466 QualType PointeeType = (InnerRef ? InnerRef->getPointeeType() : T); 3467 Canonical = getRValueReferenceType(getCanonicalType(PointeeType)); 3468 3469 // Get the new insert position for the node we care about. 3470 RValueReferenceType *NewIP = 3471 RValueReferenceTypes.FindNodeOrInsertPos(ID, InsertPos); 3472 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3473 } 3474 3475 auto *New = new (*this, TypeAlignment) RValueReferenceType(T, Canonical); 3476 Types.push_back(New); 3477 RValueReferenceTypes.InsertNode(New, InsertPos); 3478 return QualType(New, 0); 3479 } 3480 3481 /// getMemberPointerType - Return the uniqued reference to the type for a 3482 /// member pointer to the specified type, in the specified class. 3483 QualType ASTContext::getMemberPointerType(QualType T, const Type *Cls) const { 3484 // Unique pointers, to guarantee there is only one pointer of a particular 3485 // structure. 3486 llvm::FoldingSetNodeID ID; 3487 MemberPointerType::Profile(ID, T, Cls); 3488 3489 void *InsertPos = nullptr; 3490 if (MemberPointerType *PT = 3491 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 3492 return QualType(PT, 0); 3493 3494 // If the pointee or class type isn't canonical, this won't be a canonical 3495 // type either, so fill in the canonical type field. 3496 QualType Canonical; 3497 if (!T.isCanonical() || !Cls->isCanonicalUnqualified()) { 3498 Canonical = getMemberPointerType(getCanonicalType(T),getCanonicalType(Cls)); 3499 3500 // Get the new insert position for the node we care about. 3501 MemberPointerType *NewIP = 3502 MemberPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 3503 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3504 } 3505 auto *New = new (*this, TypeAlignment) MemberPointerType(T, Cls, Canonical); 3506 Types.push_back(New); 3507 MemberPointerTypes.InsertNode(New, InsertPos); 3508 return QualType(New, 0); 3509 } 3510 3511 /// getConstantArrayType - Return the unique reference to the type for an 3512 /// array of the specified element type. 3513 QualType ASTContext::getConstantArrayType(QualType EltTy, 3514 const llvm::APInt &ArySizeIn, 3515 const Expr *SizeExpr, 3516 ArrayType::ArraySizeModifier ASM, 3517 unsigned IndexTypeQuals) const { 3518 assert((EltTy->isDependentType() || 3519 EltTy->isIncompleteType() || EltTy->isConstantSizeType()) && 3520 "Constant array of VLAs is illegal!"); 3521 3522 // We only need the size as part of the type if it's instantiation-dependent. 3523 if (SizeExpr && !SizeExpr->isInstantiationDependent()) 3524 SizeExpr = nullptr; 3525 3526 // Convert the array size into a canonical width matching the pointer size for 3527 // the target. 3528 llvm::APInt ArySize(ArySizeIn); 3529 ArySize = ArySize.zextOrTrunc(Target->getMaxPointerWidth()); 3530 3531 llvm::FoldingSetNodeID ID; 3532 ConstantArrayType::Profile(ID, *this, EltTy, ArySize, SizeExpr, ASM, 3533 IndexTypeQuals); 3534 3535 void *InsertPos = nullptr; 3536 if (ConstantArrayType *ATP = 3537 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos)) 3538 return QualType(ATP, 0); 3539 3540 // If the element type isn't canonical or has qualifiers, or the array bound 3541 // is instantiation-dependent, this won't be a canonical type either, so fill 3542 // in the canonical type field. 3543 QualType Canon; 3544 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers() || SizeExpr) { 3545 SplitQualType canonSplit = getCanonicalType(EltTy).split(); 3546 Canon = getConstantArrayType(QualType(canonSplit.Ty, 0), ArySize, nullptr, 3547 ASM, IndexTypeQuals); 3548 Canon = getQualifiedType(Canon, canonSplit.Quals); 3549 3550 // Get the new insert position for the node we care about. 3551 ConstantArrayType *NewIP = 3552 ConstantArrayTypes.FindNodeOrInsertPos(ID, InsertPos); 3553 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 3554 } 3555 3556 void *Mem = Allocate( 3557 ConstantArrayType::totalSizeToAlloc<const Expr *>(SizeExpr ? 1 : 0), 3558 TypeAlignment); 3559 auto *New = new (Mem) 3560 ConstantArrayType(EltTy, Canon, ArySize, SizeExpr, ASM, IndexTypeQuals); 3561 ConstantArrayTypes.InsertNode(New, InsertPos); 3562 Types.push_back(New); 3563 return QualType(New, 0); 3564 } 3565 3566 /// getVariableArrayDecayedType - Turns the given type, which may be 3567 /// variably-modified, into the corresponding type with all the known 3568 /// sizes replaced with [*]. 3569 QualType ASTContext::getVariableArrayDecayedType(QualType type) const { 3570 // Vastly most common case. 3571 if (!type->isVariablyModifiedType()) return type; 3572 3573 QualType result; 3574 3575 SplitQualType split = type.getSplitDesugaredType(); 3576 const Type *ty = split.Ty; 3577 switch (ty->getTypeClass()) { 3578 #define TYPE(Class, Base) 3579 #define ABSTRACT_TYPE(Class, Base) 3580 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: 3581 #include "clang/AST/TypeNodes.inc" 3582 llvm_unreachable("didn't desugar past all non-canonical types?"); 3583 3584 // These types should never be variably-modified. 3585 case Type::Builtin: 3586 case Type::Complex: 3587 case Type::Vector: 3588 case Type::DependentVector: 3589 case Type::ExtVector: 3590 case Type::DependentSizedExtVector: 3591 case Type::ConstantMatrix: 3592 case Type::DependentSizedMatrix: 3593 case Type::DependentAddressSpace: 3594 case Type::ObjCObject: 3595 case Type::ObjCInterface: 3596 case Type::ObjCObjectPointer: 3597 case Type::Record: 3598 case Type::Enum: 3599 case Type::UnresolvedUsing: 3600 case Type::TypeOfExpr: 3601 case Type::TypeOf: 3602 case Type::Decltype: 3603 case Type::UnaryTransform: 3604 case Type::DependentName: 3605 case Type::InjectedClassName: 3606 case Type::TemplateSpecialization: 3607 case Type::DependentTemplateSpecialization: 3608 case Type::TemplateTypeParm: 3609 case Type::SubstTemplateTypeParmPack: 3610 case Type::Auto: 3611 case Type::DeducedTemplateSpecialization: 3612 case Type::PackExpansion: 3613 case Type::BitInt: 3614 case Type::DependentBitInt: 3615 llvm_unreachable("type should never be variably-modified"); 3616 3617 // These types can be variably-modified but should never need to 3618 // further decay. 3619 case Type::FunctionNoProto: 3620 case Type::FunctionProto: 3621 case Type::BlockPointer: 3622 case Type::MemberPointer: 3623 case Type::Pipe: 3624 return type; 3625 3626 // These types can be variably-modified. All these modifications 3627 // preserve structure except as noted by comments. 3628 // TODO: if we ever care about optimizing VLAs, there are no-op 3629 // optimizations available here. 3630 case Type::Pointer: 3631 result = getPointerType(getVariableArrayDecayedType( 3632 cast<PointerType>(ty)->getPointeeType())); 3633 break; 3634 3635 case Type::LValueReference: { 3636 const auto *lv = cast<LValueReferenceType>(ty); 3637 result = getLValueReferenceType( 3638 getVariableArrayDecayedType(lv->getPointeeType()), 3639 lv->isSpelledAsLValue()); 3640 break; 3641 } 3642 3643 case Type::RValueReference: { 3644 const auto *lv = cast<RValueReferenceType>(ty); 3645 result = getRValueReferenceType( 3646 getVariableArrayDecayedType(lv->getPointeeType())); 3647 break; 3648 } 3649 3650 case Type::Atomic: { 3651 const auto *at = cast<AtomicType>(ty); 3652 result = getAtomicType(getVariableArrayDecayedType(at->getValueType())); 3653 break; 3654 } 3655 3656 case Type::ConstantArray: { 3657 const auto *cat = cast<ConstantArrayType>(ty); 3658 result = getConstantArrayType( 3659 getVariableArrayDecayedType(cat->getElementType()), 3660 cat->getSize(), 3661 cat->getSizeExpr(), 3662 cat->getSizeModifier(), 3663 cat->getIndexTypeCVRQualifiers()); 3664 break; 3665 } 3666 3667 case Type::DependentSizedArray: { 3668 const auto *dat = cast<DependentSizedArrayType>(ty); 3669 result = getDependentSizedArrayType( 3670 getVariableArrayDecayedType(dat->getElementType()), 3671 dat->getSizeExpr(), 3672 dat->getSizeModifier(), 3673 dat->getIndexTypeCVRQualifiers(), 3674 dat->getBracketsRange()); 3675 break; 3676 } 3677 3678 // Turn incomplete types into [*] types. 3679 case Type::IncompleteArray: { 3680 const auto *iat = cast<IncompleteArrayType>(ty); 3681 result = getVariableArrayType( 3682 getVariableArrayDecayedType(iat->getElementType()), 3683 /*size*/ nullptr, 3684 ArrayType::Normal, 3685 iat->getIndexTypeCVRQualifiers(), 3686 SourceRange()); 3687 break; 3688 } 3689 3690 // Turn VLA types into [*] types. 3691 case Type::VariableArray: { 3692 const auto *vat = cast<VariableArrayType>(ty); 3693 result = getVariableArrayType( 3694 getVariableArrayDecayedType(vat->getElementType()), 3695 /*size*/ nullptr, 3696 ArrayType::Star, 3697 vat->getIndexTypeCVRQualifiers(), 3698 vat->getBracketsRange()); 3699 break; 3700 } 3701 } 3702 3703 // Apply the top-level qualifiers from the original. 3704 return getQualifiedType(result, split.Quals); 3705 } 3706 3707 /// getVariableArrayType - Returns a non-unique reference to the type for a 3708 /// variable array of the specified element type. 3709 QualType ASTContext::getVariableArrayType(QualType EltTy, 3710 Expr *NumElts, 3711 ArrayType::ArraySizeModifier ASM, 3712 unsigned IndexTypeQuals, 3713 SourceRange Brackets) const { 3714 // Since we don't unique expressions, it isn't possible to unique VLA's 3715 // that have an expression provided for their size. 3716 QualType Canon; 3717 3718 // Be sure to pull qualifiers off the element type. 3719 if (!EltTy.isCanonical() || EltTy.hasLocalQualifiers()) { 3720 SplitQualType canonSplit = getCanonicalType(EltTy).split(); 3721 Canon = getVariableArrayType(QualType(canonSplit.Ty, 0), NumElts, ASM, 3722 IndexTypeQuals, Brackets); 3723 Canon = getQualifiedType(Canon, canonSplit.Quals); 3724 } 3725 3726 auto *New = new (*this, TypeAlignment) 3727 VariableArrayType(EltTy, Canon, NumElts, ASM, IndexTypeQuals, Brackets); 3728 3729 VariableArrayTypes.push_back(New); 3730 Types.push_back(New); 3731 return QualType(New, 0); 3732 } 3733 3734 /// getDependentSizedArrayType - Returns a non-unique reference to 3735 /// the type for a dependently-sized array of the specified element 3736 /// type. 3737 QualType ASTContext::getDependentSizedArrayType(QualType elementType, 3738 Expr *numElements, 3739 ArrayType::ArraySizeModifier ASM, 3740 unsigned elementTypeQuals, 3741 SourceRange brackets) const { 3742 assert((!numElements || numElements->isTypeDependent() || 3743 numElements->isValueDependent()) && 3744 "Size must be type- or value-dependent!"); 3745 3746 // Dependently-sized array types that do not have a specified number 3747 // of elements will have their sizes deduced from a dependent 3748 // initializer. We do no canonicalization here at all, which is okay 3749 // because they can't be used in most locations. 3750 if (!numElements) { 3751 auto *newType 3752 = new (*this, TypeAlignment) 3753 DependentSizedArrayType(*this, elementType, QualType(), 3754 numElements, ASM, elementTypeQuals, 3755 brackets); 3756 Types.push_back(newType); 3757 return QualType(newType, 0); 3758 } 3759 3760 // Otherwise, we actually build a new type every time, but we 3761 // also build a canonical type. 3762 3763 SplitQualType canonElementType = getCanonicalType(elementType).split(); 3764 3765 void *insertPos = nullptr; 3766 llvm::FoldingSetNodeID ID; 3767 DependentSizedArrayType::Profile(ID, *this, 3768 QualType(canonElementType.Ty, 0), 3769 ASM, elementTypeQuals, numElements); 3770 3771 // Look for an existing type with these properties. 3772 DependentSizedArrayType *canonTy = 3773 DependentSizedArrayTypes.FindNodeOrInsertPos(ID, insertPos); 3774 3775 // If we don't have one, build one. 3776 if (!canonTy) { 3777 canonTy = new (*this, TypeAlignment) 3778 DependentSizedArrayType(*this, QualType(canonElementType.Ty, 0), 3779 QualType(), numElements, ASM, elementTypeQuals, 3780 brackets); 3781 DependentSizedArrayTypes.InsertNode(canonTy, insertPos); 3782 Types.push_back(canonTy); 3783 } 3784 3785 // Apply qualifiers from the element type to the array. 3786 QualType canon = getQualifiedType(QualType(canonTy,0), 3787 canonElementType.Quals); 3788 3789 // If we didn't need extra canonicalization for the element type or the size 3790 // expression, then just use that as our result. 3791 if (QualType(canonElementType.Ty, 0) == elementType && 3792 canonTy->getSizeExpr() == numElements) 3793 return canon; 3794 3795 // Otherwise, we need to build a type which follows the spelling 3796 // of the element type. 3797 auto *sugaredType 3798 = new (*this, TypeAlignment) 3799 DependentSizedArrayType(*this, elementType, canon, numElements, 3800 ASM, elementTypeQuals, brackets); 3801 Types.push_back(sugaredType); 3802 return QualType(sugaredType, 0); 3803 } 3804 3805 QualType ASTContext::getIncompleteArrayType(QualType elementType, 3806 ArrayType::ArraySizeModifier ASM, 3807 unsigned elementTypeQuals) const { 3808 llvm::FoldingSetNodeID ID; 3809 IncompleteArrayType::Profile(ID, elementType, ASM, elementTypeQuals); 3810 3811 void *insertPos = nullptr; 3812 if (IncompleteArrayType *iat = 3813 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos)) 3814 return QualType(iat, 0); 3815 3816 // If the element type isn't canonical, this won't be a canonical type 3817 // either, so fill in the canonical type field. We also have to pull 3818 // qualifiers off the element type. 3819 QualType canon; 3820 3821 if (!elementType.isCanonical() || elementType.hasLocalQualifiers()) { 3822 SplitQualType canonSplit = getCanonicalType(elementType).split(); 3823 canon = getIncompleteArrayType(QualType(canonSplit.Ty, 0), 3824 ASM, elementTypeQuals); 3825 canon = getQualifiedType(canon, canonSplit.Quals); 3826 3827 // Get the new insert position for the node we care about. 3828 IncompleteArrayType *existing = 3829 IncompleteArrayTypes.FindNodeOrInsertPos(ID, insertPos); 3830 assert(!existing && "Shouldn't be in the map!"); (void) existing; 3831 } 3832 3833 auto *newType = new (*this, TypeAlignment) 3834 IncompleteArrayType(elementType, canon, ASM, elementTypeQuals); 3835 3836 IncompleteArrayTypes.InsertNode(newType, insertPos); 3837 Types.push_back(newType); 3838 return QualType(newType, 0); 3839 } 3840 3841 ASTContext::BuiltinVectorTypeInfo 3842 ASTContext::getBuiltinVectorTypeInfo(const BuiltinType *Ty) const { 3843 #define SVE_INT_ELTTY(BITS, ELTS, SIGNED, NUMVECTORS) \ 3844 {getIntTypeForBitwidth(BITS, SIGNED), llvm::ElementCount::getScalable(ELTS), \ 3845 NUMVECTORS}; 3846 3847 #define SVE_ELTTY(ELTTY, ELTS, NUMVECTORS) \ 3848 {ELTTY, llvm::ElementCount::getScalable(ELTS), NUMVECTORS}; 3849 3850 switch (Ty->getKind()) { 3851 default: 3852 llvm_unreachable("Unsupported builtin vector type"); 3853 case BuiltinType::SveInt8: 3854 return SVE_INT_ELTTY(8, 16, true, 1); 3855 case BuiltinType::SveUint8: 3856 return SVE_INT_ELTTY(8, 16, false, 1); 3857 case BuiltinType::SveInt8x2: 3858 return SVE_INT_ELTTY(8, 16, true, 2); 3859 case BuiltinType::SveUint8x2: 3860 return SVE_INT_ELTTY(8, 16, false, 2); 3861 case BuiltinType::SveInt8x3: 3862 return SVE_INT_ELTTY(8, 16, true, 3); 3863 case BuiltinType::SveUint8x3: 3864 return SVE_INT_ELTTY(8, 16, false, 3); 3865 case BuiltinType::SveInt8x4: 3866 return SVE_INT_ELTTY(8, 16, true, 4); 3867 case BuiltinType::SveUint8x4: 3868 return SVE_INT_ELTTY(8, 16, false, 4); 3869 case BuiltinType::SveInt16: 3870 return SVE_INT_ELTTY(16, 8, true, 1); 3871 case BuiltinType::SveUint16: 3872 return SVE_INT_ELTTY(16, 8, false, 1); 3873 case BuiltinType::SveInt16x2: 3874 return SVE_INT_ELTTY(16, 8, true, 2); 3875 case BuiltinType::SveUint16x2: 3876 return SVE_INT_ELTTY(16, 8, false, 2); 3877 case BuiltinType::SveInt16x3: 3878 return SVE_INT_ELTTY(16, 8, true, 3); 3879 case BuiltinType::SveUint16x3: 3880 return SVE_INT_ELTTY(16, 8, false, 3); 3881 case BuiltinType::SveInt16x4: 3882 return SVE_INT_ELTTY(16, 8, true, 4); 3883 case BuiltinType::SveUint16x4: 3884 return SVE_INT_ELTTY(16, 8, false, 4); 3885 case BuiltinType::SveInt32: 3886 return SVE_INT_ELTTY(32, 4, true, 1); 3887 case BuiltinType::SveUint32: 3888 return SVE_INT_ELTTY(32, 4, false, 1); 3889 case BuiltinType::SveInt32x2: 3890 return SVE_INT_ELTTY(32, 4, true, 2); 3891 case BuiltinType::SveUint32x2: 3892 return SVE_INT_ELTTY(32, 4, false, 2); 3893 case BuiltinType::SveInt32x3: 3894 return SVE_INT_ELTTY(32, 4, true, 3); 3895 case BuiltinType::SveUint32x3: 3896 return SVE_INT_ELTTY(32, 4, false, 3); 3897 case BuiltinType::SveInt32x4: 3898 return SVE_INT_ELTTY(32, 4, true, 4); 3899 case BuiltinType::SveUint32x4: 3900 return SVE_INT_ELTTY(32, 4, false, 4); 3901 case BuiltinType::SveInt64: 3902 return SVE_INT_ELTTY(64, 2, true, 1); 3903 case BuiltinType::SveUint64: 3904 return SVE_INT_ELTTY(64, 2, false, 1); 3905 case BuiltinType::SveInt64x2: 3906 return SVE_INT_ELTTY(64, 2, true, 2); 3907 case BuiltinType::SveUint64x2: 3908 return SVE_INT_ELTTY(64, 2, false, 2); 3909 case BuiltinType::SveInt64x3: 3910 return SVE_INT_ELTTY(64, 2, true, 3); 3911 case BuiltinType::SveUint64x3: 3912 return SVE_INT_ELTTY(64, 2, false, 3); 3913 case BuiltinType::SveInt64x4: 3914 return SVE_INT_ELTTY(64, 2, true, 4); 3915 case BuiltinType::SveUint64x4: 3916 return SVE_INT_ELTTY(64, 2, false, 4); 3917 case BuiltinType::SveBool: 3918 return SVE_ELTTY(BoolTy, 16, 1); 3919 case BuiltinType::SveFloat16: 3920 return SVE_ELTTY(HalfTy, 8, 1); 3921 case BuiltinType::SveFloat16x2: 3922 return SVE_ELTTY(HalfTy, 8, 2); 3923 case BuiltinType::SveFloat16x3: 3924 return SVE_ELTTY(HalfTy, 8, 3); 3925 case BuiltinType::SveFloat16x4: 3926 return SVE_ELTTY(HalfTy, 8, 4); 3927 case BuiltinType::SveFloat32: 3928 return SVE_ELTTY(FloatTy, 4, 1); 3929 case BuiltinType::SveFloat32x2: 3930 return SVE_ELTTY(FloatTy, 4, 2); 3931 case BuiltinType::SveFloat32x3: 3932 return SVE_ELTTY(FloatTy, 4, 3); 3933 case BuiltinType::SveFloat32x4: 3934 return SVE_ELTTY(FloatTy, 4, 4); 3935 case BuiltinType::SveFloat64: 3936 return SVE_ELTTY(DoubleTy, 2, 1); 3937 case BuiltinType::SveFloat64x2: 3938 return SVE_ELTTY(DoubleTy, 2, 2); 3939 case BuiltinType::SveFloat64x3: 3940 return SVE_ELTTY(DoubleTy, 2, 3); 3941 case BuiltinType::SveFloat64x4: 3942 return SVE_ELTTY(DoubleTy, 2, 4); 3943 case BuiltinType::SveBFloat16: 3944 return SVE_ELTTY(BFloat16Ty, 8, 1); 3945 case BuiltinType::SveBFloat16x2: 3946 return SVE_ELTTY(BFloat16Ty, 8, 2); 3947 case BuiltinType::SveBFloat16x3: 3948 return SVE_ELTTY(BFloat16Ty, 8, 3); 3949 case BuiltinType::SveBFloat16x4: 3950 return SVE_ELTTY(BFloat16Ty, 8, 4); 3951 #define RVV_VECTOR_TYPE_INT(Name, Id, SingletonId, NumEls, ElBits, NF, \ 3952 IsSigned) \ 3953 case BuiltinType::Id: \ 3954 return {getIntTypeForBitwidth(ElBits, IsSigned), \ 3955 llvm::ElementCount::getScalable(NumEls), NF}; 3956 #define RVV_VECTOR_TYPE_FLOAT(Name, Id, SingletonId, NumEls, ElBits, NF) \ 3957 case BuiltinType::Id: \ 3958 return {ElBits == 16 ? Float16Ty : (ElBits == 32 ? FloatTy : DoubleTy), \ 3959 llvm::ElementCount::getScalable(NumEls), NF}; 3960 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls) \ 3961 case BuiltinType::Id: \ 3962 return {BoolTy, llvm::ElementCount::getScalable(NumEls), 1}; 3963 #include "clang/Basic/RISCVVTypes.def" 3964 } 3965 } 3966 3967 /// getScalableVectorType - Return the unique reference to a scalable vector 3968 /// type of the specified element type and size. VectorType must be a built-in 3969 /// type. 3970 QualType ASTContext::getScalableVectorType(QualType EltTy, 3971 unsigned NumElts) const { 3972 if (Target->hasAArch64SVETypes()) { 3973 uint64_t EltTySize = getTypeSize(EltTy); 3974 #define SVE_VECTOR_TYPE(Name, MangledName, Id, SingletonId, NumEls, ElBits, \ 3975 IsSigned, IsFP, IsBF) \ 3976 if (!EltTy->isBooleanType() && \ 3977 ((EltTy->hasIntegerRepresentation() && \ 3978 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ 3979 (EltTy->hasFloatingRepresentation() && !EltTy->isBFloat16Type() && \ 3980 IsFP && !IsBF) || \ 3981 (EltTy->hasFloatingRepresentation() && EltTy->isBFloat16Type() && \ 3982 IsBF && !IsFP)) && \ 3983 EltTySize == ElBits && NumElts == NumEls) { \ 3984 return SingletonId; \ 3985 } 3986 #define SVE_PREDICATE_TYPE(Name, MangledName, Id, SingletonId, NumEls) \ 3987 if (EltTy->isBooleanType() && NumElts == NumEls) \ 3988 return SingletonId; 3989 #include "clang/Basic/AArch64SVEACLETypes.def" 3990 } else if (Target->hasRISCVVTypes()) { 3991 uint64_t EltTySize = getTypeSize(EltTy); 3992 #define RVV_VECTOR_TYPE(Name, Id, SingletonId, NumEls, ElBits, NF, IsSigned, \ 3993 IsFP) \ 3994 if (!EltTy->isBooleanType() && \ 3995 ((EltTy->hasIntegerRepresentation() && \ 3996 EltTy->hasSignedIntegerRepresentation() == IsSigned) || \ 3997 (EltTy->hasFloatingRepresentation() && IsFP)) && \ 3998 EltTySize == ElBits && NumElts == NumEls) \ 3999 return SingletonId; 4000 #define RVV_PREDICATE_TYPE(Name, Id, SingletonId, NumEls) \ 4001 if (EltTy->isBooleanType() && NumElts == NumEls) \ 4002 return SingletonId; 4003 #include "clang/Basic/RISCVVTypes.def" 4004 } 4005 return QualType(); 4006 } 4007 4008 /// getVectorType - Return the unique reference to a vector type of 4009 /// the specified element type and size. VectorType must be a built-in type. 4010 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, 4011 VectorType::VectorKind VecKind) const { 4012 assert(vecType->isBuiltinType()); 4013 4014 // Check if we've already instantiated a vector of this type. 4015 llvm::FoldingSetNodeID ID; 4016 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); 4017 4018 void *InsertPos = nullptr; 4019 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos)) 4020 return QualType(VTP, 0); 4021 4022 // If the element type isn't canonical, this won't be a canonical type either, 4023 // so fill in the canonical type field. 4024 QualType Canonical; 4025 if (!vecType.isCanonical()) { 4026 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); 4027 4028 // Get the new insert position for the node we care about. 4029 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4030 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4031 } 4032 auto *New = new (*this, TypeAlignment) 4033 VectorType(vecType, NumElts, Canonical, VecKind); 4034 VectorTypes.InsertNode(New, InsertPos); 4035 Types.push_back(New); 4036 return QualType(New, 0); 4037 } 4038 4039 QualType 4040 ASTContext::getDependentVectorType(QualType VecType, Expr *SizeExpr, 4041 SourceLocation AttrLoc, 4042 VectorType::VectorKind VecKind) const { 4043 llvm::FoldingSetNodeID ID; 4044 DependentVectorType::Profile(ID, *this, getCanonicalType(VecType), SizeExpr, 4045 VecKind); 4046 void *InsertPos = nullptr; 4047 DependentVectorType *Canon = 4048 DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4049 DependentVectorType *New; 4050 4051 if (Canon) { 4052 New = new (*this, TypeAlignment) DependentVectorType( 4053 *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind); 4054 } else { 4055 QualType CanonVecTy = getCanonicalType(VecType); 4056 if (CanonVecTy == VecType) { 4057 New = new (*this, TypeAlignment) DependentVectorType( 4058 *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind); 4059 4060 DependentVectorType *CanonCheck = 4061 DependentVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4062 assert(!CanonCheck && 4063 "Dependent-sized vector_size canonical type broken"); 4064 (void)CanonCheck; 4065 DependentVectorTypes.InsertNode(New, InsertPos); 4066 } else { 4067 QualType CanonTy = getDependentVectorType(CanonVecTy, SizeExpr, 4068 SourceLocation(), VecKind); 4069 New = new (*this, TypeAlignment) DependentVectorType( 4070 *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind); 4071 } 4072 } 4073 4074 Types.push_back(New); 4075 return QualType(New, 0); 4076 } 4077 4078 /// getExtVectorType - Return the unique reference to an extended vector type of 4079 /// the specified element type and size. VectorType must be a built-in type. 4080 QualType 4081 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { 4082 assert(vecType->isBuiltinType() || vecType->isDependentType()); 4083 4084 // Check if we've already instantiated a vector of this type. 4085 llvm::FoldingSetNodeID ID; 4086 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector, 4087 VectorType::GenericVector); 4088 void *InsertPos = nullptr; 4089 if (VectorType *VTP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos)) 4090 return QualType(VTP, 0); 4091 4092 // If the element type isn't canonical, this won't be a canonical type either, 4093 // so fill in the canonical type field. 4094 QualType Canonical; 4095 if (!vecType.isCanonical()) { 4096 Canonical = getExtVectorType(getCanonicalType(vecType), NumElts); 4097 4098 // Get the new insert position for the node we care about. 4099 VectorType *NewIP = VectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4100 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4101 } 4102 auto *New = new (*this, TypeAlignment) 4103 ExtVectorType(vecType, NumElts, Canonical); 4104 VectorTypes.InsertNode(New, InsertPos); 4105 Types.push_back(New); 4106 return QualType(New, 0); 4107 } 4108 4109 QualType 4110 ASTContext::getDependentSizedExtVectorType(QualType vecType, 4111 Expr *SizeExpr, 4112 SourceLocation AttrLoc) const { 4113 llvm::FoldingSetNodeID ID; 4114 DependentSizedExtVectorType::Profile(ID, *this, getCanonicalType(vecType), 4115 SizeExpr); 4116 4117 void *InsertPos = nullptr; 4118 DependentSizedExtVectorType *Canon 4119 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4120 DependentSizedExtVectorType *New; 4121 if (Canon) { 4122 // We already have a canonical version of this array type; use it as 4123 // the canonical type for a newly-built type. 4124 New = new (*this, TypeAlignment) 4125 DependentSizedExtVectorType(*this, vecType, QualType(Canon, 0), 4126 SizeExpr, AttrLoc); 4127 } else { 4128 QualType CanonVecTy = getCanonicalType(vecType); 4129 if (CanonVecTy == vecType) { 4130 New = new (*this, TypeAlignment) 4131 DependentSizedExtVectorType(*this, vecType, QualType(), SizeExpr, 4132 AttrLoc); 4133 4134 DependentSizedExtVectorType *CanonCheck 4135 = DependentSizedExtVectorTypes.FindNodeOrInsertPos(ID, InsertPos); 4136 assert(!CanonCheck && "Dependent-sized ext_vector canonical type broken"); 4137 (void)CanonCheck; 4138 DependentSizedExtVectorTypes.InsertNode(New, InsertPos); 4139 } else { 4140 QualType CanonExtTy = getDependentSizedExtVectorType(CanonVecTy, SizeExpr, 4141 SourceLocation()); 4142 New = new (*this, TypeAlignment) DependentSizedExtVectorType( 4143 *this, vecType, CanonExtTy, SizeExpr, AttrLoc); 4144 } 4145 } 4146 4147 Types.push_back(New); 4148 return QualType(New, 0); 4149 } 4150 4151 QualType ASTContext::getConstantMatrixType(QualType ElementTy, unsigned NumRows, 4152 unsigned NumColumns) const { 4153 llvm::FoldingSetNodeID ID; 4154 ConstantMatrixType::Profile(ID, ElementTy, NumRows, NumColumns, 4155 Type::ConstantMatrix); 4156 4157 assert(MatrixType::isValidElementType(ElementTy) && 4158 "need a valid element type"); 4159 assert(ConstantMatrixType::isDimensionValid(NumRows) && 4160 ConstantMatrixType::isDimensionValid(NumColumns) && 4161 "need valid matrix dimensions"); 4162 void *InsertPos = nullptr; 4163 if (ConstantMatrixType *MTP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos)) 4164 return QualType(MTP, 0); 4165 4166 QualType Canonical; 4167 if (!ElementTy.isCanonical()) { 4168 Canonical = 4169 getConstantMatrixType(getCanonicalType(ElementTy), NumRows, NumColumns); 4170 4171 ConstantMatrixType *NewIP = MatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4172 assert(!NewIP && "Matrix type shouldn't already exist in the map"); 4173 (void)NewIP; 4174 } 4175 4176 auto *New = new (*this, TypeAlignment) 4177 ConstantMatrixType(ElementTy, NumRows, NumColumns, Canonical); 4178 MatrixTypes.InsertNode(New, InsertPos); 4179 Types.push_back(New); 4180 return QualType(New, 0); 4181 } 4182 4183 QualType ASTContext::getDependentSizedMatrixType(QualType ElementTy, 4184 Expr *RowExpr, 4185 Expr *ColumnExpr, 4186 SourceLocation AttrLoc) const { 4187 QualType CanonElementTy = getCanonicalType(ElementTy); 4188 llvm::FoldingSetNodeID ID; 4189 DependentSizedMatrixType::Profile(ID, *this, CanonElementTy, RowExpr, 4190 ColumnExpr); 4191 4192 void *InsertPos = nullptr; 4193 DependentSizedMatrixType *Canon = 4194 DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4195 4196 if (!Canon) { 4197 Canon = new (*this, TypeAlignment) DependentSizedMatrixType( 4198 *this, CanonElementTy, QualType(), RowExpr, ColumnExpr, AttrLoc); 4199 #ifndef NDEBUG 4200 DependentSizedMatrixType *CanonCheck = 4201 DependentSizedMatrixTypes.FindNodeOrInsertPos(ID, InsertPos); 4202 assert(!CanonCheck && "Dependent-sized matrix canonical type broken"); 4203 #endif 4204 DependentSizedMatrixTypes.InsertNode(Canon, InsertPos); 4205 Types.push_back(Canon); 4206 } 4207 4208 // Already have a canonical version of the matrix type 4209 // 4210 // If it exactly matches the requested type, use it directly. 4211 if (Canon->getElementType() == ElementTy && Canon->getRowExpr() == RowExpr && 4212 Canon->getRowExpr() == ColumnExpr) 4213 return QualType(Canon, 0); 4214 4215 // Use Canon as the canonical type for newly-built type. 4216 DependentSizedMatrixType *New = new (*this, TypeAlignment) 4217 DependentSizedMatrixType(*this, ElementTy, QualType(Canon, 0), RowExpr, 4218 ColumnExpr, AttrLoc); 4219 Types.push_back(New); 4220 return QualType(New, 0); 4221 } 4222 4223 QualType ASTContext::getDependentAddressSpaceType(QualType PointeeType, 4224 Expr *AddrSpaceExpr, 4225 SourceLocation AttrLoc) const { 4226 assert(AddrSpaceExpr->isInstantiationDependent()); 4227 4228 QualType canonPointeeType = getCanonicalType(PointeeType); 4229 4230 void *insertPos = nullptr; 4231 llvm::FoldingSetNodeID ID; 4232 DependentAddressSpaceType::Profile(ID, *this, canonPointeeType, 4233 AddrSpaceExpr); 4234 4235 DependentAddressSpaceType *canonTy = 4236 DependentAddressSpaceTypes.FindNodeOrInsertPos(ID, insertPos); 4237 4238 if (!canonTy) { 4239 canonTy = new (*this, TypeAlignment) 4240 DependentAddressSpaceType(*this, canonPointeeType, 4241 QualType(), AddrSpaceExpr, AttrLoc); 4242 DependentAddressSpaceTypes.InsertNode(canonTy, insertPos); 4243 Types.push_back(canonTy); 4244 } 4245 4246 if (canonPointeeType == PointeeType && 4247 canonTy->getAddrSpaceExpr() == AddrSpaceExpr) 4248 return QualType(canonTy, 0); 4249 4250 auto *sugaredType 4251 = new (*this, TypeAlignment) 4252 DependentAddressSpaceType(*this, PointeeType, QualType(canonTy, 0), 4253 AddrSpaceExpr, AttrLoc); 4254 Types.push_back(sugaredType); 4255 return QualType(sugaredType, 0); 4256 } 4257 4258 /// Determine whether \p T is canonical as the result type of a function. 4259 static bool isCanonicalResultType(QualType T) { 4260 return T.isCanonical() && 4261 (T.getObjCLifetime() == Qualifiers::OCL_None || 4262 T.getObjCLifetime() == Qualifiers::OCL_ExplicitNone); 4263 } 4264 4265 /// getFunctionNoProtoType - Return a K&R style C function type like 'int()'. 4266 QualType 4267 ASTContext::getFunctionNoProtoType(QualType ResultTy, 4268 const FunctionType::ExtInfo &Info) const { 4269 // FIXME: This assertion cannot be enabled (yet) because the ObjC rewriter 4270 // functionality creates a function without a prototype regardless of 4271 // language mode (so it makes them even in C++). Once the rewriter has been 4272 // fixed, this assertion can be enabled again. 4273 //assert(!LangOpts.requiresStrictPrototypes() && 4274 // "strict prototypes are disabled"); 4275 4276 // Unique functions, to guarantee there is only one function of a particular 4277 // structure. 4278 llvm::FoldingSetNodeID ID; 4279 FunctionNoProtoType::Profile(ID, ResultTy, Info); 4280 4281 void *InsertPos = nullptr; 4282 if (FunctionNoProtoType *FT = 4283 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) 4284 return QualType(FT, 0); 4285 4286 QualType Canonical; 4287 if (!isCanonicalResultType(ResultTy)) { 4288 Canonical = 4289 getFunctionNoProtoType(getCanonicalFunctionResultType(ResultTy), Info); 4290 4291 // Get the new insert position for the node we care about. 4292 FunctionNoProtoType *NewIP = 4293 FunctionNoProtoTypes.FindNodeOrInsertPos(ID, InsertPos); 4294 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4295 } 4296 4297 auto *New = new (*this, TypeAlignment) 4298 FunctionNoProtoType(ResultTy, Canonical, Info); 4299 Types.push_back(New); 4300 FunctionNoProtoTypes.InsertNode(New, InsertPos); 4301 return QualType(New, 0); 4302 } 4303 4304 CanQualType 4305 ASTContext::getCanonicalFunctionResultType(QualType ResultType) const { 4306 CanQualType CanResultType = getCanonicalType(ResultType); 4307 4308 // Canonical result types do not have ARC lifetime qualifiers. 4309 if (CanResultType.getQualifiers().hasObjCLifetime()) { 4310 Qualifiers Qs = CanResultType.getQualifiers(); 4311 Qs.removeObjCLifetime(); 4312 return CanQualType::CreateUnsafe( 4313 getQualifiedType(CanResultType.getUnqualifiedType(), Qs)); 4314 } 4315 4316 return CanResultType; 4317 } 4318 4319 static bool isCanonicalExceptionSpecification( 4320 const FunctionProtoType::ExceptionSpecInfo &ESI, bool NoexceptInType) { 4321 if (ESI.Type == EST_None) 4322 return true; 4323 if (!NoexceptInType) 4324 return false; 4325 4326 // C++17 onwards: exception specification is part of the type, as a simple 4327 // boolean "can this function type throw". 4328 if (ESI.Type == EST_BasicNoexcept) 4329 return true; 4330 4331 // A noexcept(expr) specification is (possibly) canonical if expr is 4332 // value-dependent. 4333 if (ESI.Type == EST_DependentNoexcept) 4334 return true; 4335 4336 // A dynamic exception specification is canonical if it only contains pack 4337 // expansions (so we can't tell whether it's non-throwing) and all its 4338 // contained types are canonical. 4339 if (ESI.Type == EST_Dynamic) { 4340 bool AnyPackExpansions = false; 4341 for (QualType ET : ESI.Exceptions) { 4342 if (!ET.isCanonical()) 4343 return false; 4344 if (ET->getAs<PackExpansionType>()) 4345 AnyPackExpansions = true; 4346 } 4347 return AnyPackExpansions; 4348 } 4349 4350 return false; 4351 } 4352 4353 QualType ASTContext::getFunctionTypeInternal( 4354 QualType ResultTy, ArrayRef<QualType> ArgArray, 4355 const FunctionProtoType::ExtProtoInfo &EPI, bool OnlyWantCanonical) const { 4356 size_t NumArgs = ArgArray.size(); 4357 4358 // Unique functions, to guarantee there is only one function of a particular 4359 // structure. 4360 llvm::FoldingSetNodeID ID; 4361 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI, 4362 *this, true); 4363 4364 QualType Canonical; 4365 bool Unique = false; 4366 4367 void *InsertPos = nullptr; 4368 if (FunctionProtoType *FPT = 4369 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos)) { 4370 QualType Existing = QualType(FPT, 0); 4371 4372 // If we find a pre-existing equivalent FunctionProtoType, we can just reuse 4373 // it so long as our exception specification doesn't contain a dependent 4374 // noexcept expression, or we're just looking for a canonical type. 4375 // Otherwise, we're going to need to create a type 4376 // sugar node to hold the concrete expression. 4377 if (OnlyWantCanonical || !isComputedNoexcept(EPI.ExceptionSpec.Type) || 4378 EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr()) 4379 return Existing; 4380 4381 // We need a new type sugar node for this one, to hold the new noexcept 4382 // expression. We do no canonicalization here, but that's OK since we don't 4383 // expect to see the same noexcept expression much more than once. 4384 Canonical = getCanonicalType(Existing); 4385 Unique = true; 4386 } 4387 4388 bool NoexceptInType = getLangOpts().CPlusPlus17; 4389 bool IsCanonicalExceptionSpec = 4390 isCanonicalExceptionSpecification(EPI.ExceptionSpec, NoexceptInType); 4391 4392 // Determine whether the type being created is already canonical or not. 4393 bool isCanonical = !Unique && IsCanonicalExceptionSpec && 4394 isCanonicalResultType(ResultTy) && !EPI.HasTrailingReturn; 4395 for (unsigned i = 0; i != NumArgs && isCanonical; ++i) 4396 if (!ArgArray[i].isCanonicalAsParam()) 4397 isCanonical = false; 4398 4399 if (OnlyWantCanonical) 4400 assert(isCanonical && 4401 "given non-canonical parameters constructing canonical type"); 4402 4403 // If this type isn't canonical, get the canonical version of it if we don't 4404 // already have it. The exception spec is only partially part of the 4405 // canonical type, and only in C++17 onwards. 4406 if (!isCanonical && Canonical.isNull()) { 4407 SmallVector<QualType, 16> CanonicalArgs; 4408 CanonicalArgs.reserve(NumArgs); 4409 for (unsigned i = 0; i != NumArgs; ++i) 4410 CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i])); 4411 4412 llvm::SmallVector<QualType, 8> ExceptionTypeStorage; 4413 FunctionProtoType::ExtProtoInfo CanonicalEPI = EPI; 4414 CanonicalEPI.HasTrailingReturn = false; 4415 4416 if (IsCanonicalExceptionSpec) { 4417 // Exception spec is already OK. 4418 } else if (NoexceptInType) { 4419 switch (EPI.ExceptionSpec.Type) { 4420 case EST_Unparsed: case EST_Unevaluated: case EST_Uninstantiated: 4421 // We don't know yet. It shouldn't matter what we pick here; no-one 4422 // should ever look at this. 4423 LLVM_FALLTHROUGH; 4424 case EST_None: case EST_MSAny: case EST_NoexceptFalse: 4425 CanonicalEPI.ExceptionSpec.Type = EST_None; 4426 break; 4427 4428 // A dynamic exception specification is almost always "not noexcept", 4429 // with the exception that a pack expansion might expand to no types. 4430 case EST_Dynamic: { 4431 bool AnyPacks = false; 4432 for (QualType ET : EPI.ExceptionSpec.Exceptions) { 4433 if (ET->getAs<PackExpansionType>()) 4434 AnyPacks = true; 4435 ExceptionTypeStorage.push_back(getCanonicalType(ET)); 4436 } 4437 if (!AnyPacks) 4438 CanonicalEPI.ExceptionSpec.Type = EST_None; 4439 else { 4440 CanonicalEPI.ExceptionSpec.Type = EST_Dynamic; 4441 CanonicalEPI.ExceptionSpec.Exceptions = ExceptionTypeStorage; 4442 } 4443 break; 4444 } 4445 4446 case EST_DynamicNone: 4447 case EST_BasicNoexcept: 4448 case EST_NoexceptTrue: 4449 case EST_NoThrow: 4450 CanonicalEPI.ExceptionSpec.Type = EST_BasicNoexcept; 4451 break; 4452 4453 case EST_DependentNoexcept: 4454 llvm_unreachable("dependent noexcept is already canonical"); 4455 } 4456 } else { 4457 CanonicalEPI.ExceptionSpec = FunctionProtoType::ExceptionSpecInfo(); 4458 } 4459 4460 // Adjust the canonical function result type. 4461 CanQualType CanResultTy = getCanonicalFunctionResultType(ResultTy); 4462 Canonical = 4463 getFunctionTypeInternal(CanResultTy, CanonicalArgs, CanonicalEPI, true); 4464 4465 // Get the new insert position for the node we care about. 4466 FunctionProtoType *NewIP = 4467 FunctionProtoTypes.FindNodeOrInsertPos(ID, InsertPos); 4468 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 4469 } 4470 4471 // Compute the needed size to hold this FunctionProtoType and the 4472 // various trailing objects. 4473 auto ESH = FunctionProtoType::getExceptionSpecSize( 4474 EPI.ExceptionSpec.Type, EPI.ExceptionSpec.Exceptions.size()); 4475 size_t Size = FunctionProtoType::totalSizeToAlloc< 4476 QualType, SourceLocation, FunctionType::FunctionTypeExtraBitfields, 4477 FunctionType::ExceptionType, Expr *, FunctionDecl *, 4478 FunctionProtoType::ExtParameterInfo, Qualifiers>( 4479 NumArgs, EPI.Variadic, EPI.requiresFunctionProtoTypeExtraBitfields(), 4480 ESH.NumExceptionType, ESH.NumExprPtr, ESH.NumFunctionDeclPtr, 4481 EPI.ExtParameterInfos ? NumArgs : 0, 4482 EPI.TypeQuals.hasNonFastQualifiers() ? 1 : 0); 4483 4484 auto *FTP = (FunctionProtoType *)Allocate(Size, TypeAlignment); 4485 FunctionProtoType::ExtProtoInfo newEPI = EPI; 4486 new (FTP) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI); 4487 Types.push_back(FTP); 4488 if (!Unique) 4489 FunctionProtoTypes.InsertNode(FTP, InsertPos); 4490 return QualType(FTP, 0); 4491 } 4492 4493 QualType ASTContext::getPipeType(QualType T, bool ReadOnly) const { 4494 llvm::FoldingSetNodeID ID; 4495 PipeType::Profile(ID, T, ReadOnly); 4496 4497 void *InsertPos = nullptr; 4498 if (PipeType *PT = PipeTypes.FindNodeOrInsertPos(ID, InsertPos)) 4499 return QualType(PT, 0); 4500 4501 // If the pipe element type isn't canonical, this won't be a canonical type 4502 // either, so fill in the canonical type field. 4503 QualType Canonical; 4504 if (!T.isCanonical()) { 4505 Canonical = getPipeType(getCanonicalType(T), ReadOnly); 4506 4507 // Get the new insert position for the node we care about. 4508 PipeType *NewIP = PipeTypes.FindNodeOrInsertPos(ID, InsertPos); 4509 assert(!NewIP && "Shouldn't be in the map!"); 4510 (void)NewIP; 4511 } 4512 auto *New = new (*this, TypeAlignment) PipeType(T, Canonical, ReadOnly); 4513 Types.push_back(New); 4514 PipeTypes.InsertNode(New, InsertPos); 4515 return QualType(New, 0); 4516 } 4517 4518 QualType ASTContext::adjustStringLiteralBaseType(QualType Ty) const { 4519 // OpenCL v1.1 s6.5.3: a string literal is in the constant address space. 4520 return LangOpts.OpenCL ? getAddrSpaceQualType(Ty, LangAS::opencl_constant) 4521 : Ty; 4522 } 4523 4524 QualType ASTContext::getReadPipeType(QualType T) const { 4525 return getPipeType(T, true); 4526 } 4527 4528 QualType ASTContext::getWritePipeType(QualType T) const { 4529 return getPipeType(T, false); 4530 } 4531 4532 QualType ASTContext::getBitIntType(bool IsUnsigned, unsigned NumBits) const { 4533 llvm::FoldingSetNodeID ID; 4534 BitIntType::Profile(ID, IsUnsigned, NumBits); 4535 4536 void *InsertPos = nullptr; 4537 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) 4538 return QualType(EIT, 0); 4539 4540 auto *New = new (*this, TypeAlignment) BitIntType(IsUnsigned, NumBits); 4541 BitIntTypes.InsertNode(New, InsertPos); 4542 Types.push_back(New); 4543 return QualType(New, 0); 4544 } 4545 4546 QualType ASTContext::getDependentBitIntType(bool IsUnsigned, 4547 Expr *NumBitsExpr) const { 4548 assert(NumBitsExpr->isInstantiationDependent() && "Only good for dependent"); 4549 llvm::FoldingSetNodeID ID; 4550 DependentBitIntType::Profile(ID, *this, IsUnsigned, NumBitsExpr); 4551 4552 void *InsertPos = nullptr; 4553 if (DependentBitIntType *Existing = 4554 DependentBitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) 4555 return QualType(Existing, 0); 4556 4557 auto *New = new (*this, TypeAlignment) 4558 DependentBitIntType(*this, IsUnsigned, NumBitsExpr); 4559 DependentBitIntTypes.InsertNode(New, InsertPos); 4560 4561 Types.push_back(New); 4562 return QualType(New, 0); 4563 } 4564 4565 #ifndef NDEBUG 4566 static bool NeedsInjectedClassNameType(const RecordDecl *D) { 4567 if (!isa<CXXRecordDecl>(D)) return false; 4568 const auto *RD = cast<CXXRecordDecl>(D); 4569 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) 4570 return true; 4571 if (RD->getDescribedClassTemplate() && 4572 !isa<ClassTemplateSpecializationDecl>(RD)) 4573 return true; 4574 return false; 4575 } 4576 #endif 4577 4578 /// getInjectedClassNameType - Return the unique reference to the 4579 /// injected class name type for the specified templated declaration. 4580 QualType ASTContext::getInjectedClassNameType(CXXRecordDecl *Decl, 4581 QualType TST) const { 4582 assert(NeedsInjectedClassNameType(Decl)); 4583 if (Decl->TypeForDecl) { 4584 assert(isa<InjectedClassNameType>(Decl->TypeForDecl)); 4585 } else if (CXXRecordDecl *PrevDecl = Decl->getPreviousDecl()) { 4586 assert(PrevDecl->TypeForDecl && "previous declaration has no type"); 4587 Decl->TypeForDecl = PrevDecl->TypeForDecl; 4588 assert(isa<InjectedClassNameType>(Decl->TypeForDecl)); 4589 } else { 4590 Type *newType = 4591 new (*this, TypeAlignment) InjectedClassNameType(Decl, TST); 4592 Decl->TypeForDecl = newType; 4593 Types.push_back(newType); 4594 } 4595 return QualType(Decl->TypeForDecl, 0); 4596 } 4597 4598 /// getTypeDeclType - Return the unique reference to the type for the 4599 /// specified type declaration. 4600 QualType ASTContext::getTypeDeclTypeSlow(const TypeDecl *Decl) const { 4601 assert(Decl && "Passed null for Decl param"); 4602 assert(!Decl->TypeForDecl && "TypeForDecl present in slow case"); 4603 4604 if (const auto *Typedef = dyn_cast<TypedefNameDecl>(Decl)) 4605 return getTypedefType(Typedef); 4606 4607 assert(!isa<TemplateTypeParmDecl>(Decl) && 4608 "Template type parameter types are always available."); 4609 4610 if (const auto *Record = dyn_cast<RecordDecl>(Decl)) { 4611 assert(Record->isFirstDecl() && "struct/union has previous declaration"); 4612 assert(!NeedsInjectedClassNameType(Record)); 4613 return getRecordType(Record); 4614 } else if (const auto *Enum = dyn_cast<EnumDecl>(Decl)) { 4615 assert(Enum->isFirstDecl() && "enum has previous declaration"); 4616 return getEnumType(Enum); 4617 } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) { 4618 return getUnresolvedUsingType(Using); 4619 } else 4620 llvm_unreachable("TypeDecl without a type?"); 4621 4622 return QualType(Decl->TypeForDecl, 0); 4623 } 4624 4625 /// getTypedefType - Return the unique reference to the type for the 4626 /// specified typedef name decl. 4627 QualType ASTContext::getTypedefType(const TypedefNameDecl *Decl, 4628 QualType Underlying) const { 4629 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4630 4631 if (Underlying.isNull()) 4632 Underlying = Decl->getUnderlyingType(); 4633 QualType Canonical = getCanonicalType(Underlying); 4634 auto *newType = new (*this, TypeAlignment) 4635 TypedefType(Type::Typedef, Decl, Underlying, Canonical); 4636 Decl->TypeForDecl = newType; 4637 Types.push_back(newType); 4638 return QualType(newType, 0); 4639 } 4640 4641 QualType ASTContext::getUsingType(const UsingShadowDecl *Found, 4642 QualType Underlying) const { 4643 llvm::FoldingSetNodeID ID; 4644 UsingType::Profile(ID, Found); 4645 4646 void *InsertPos = nullptr; 4647 UsingType *T = UsingTypes.FindNodeOrInsertPos(ID, InsertPos); 4648 if (T) 4649 return QualType(T, 0); 4650 4651 assert(!Underlying.hasLocalQualifiers()); 4652 assert(Underlying == getTypeDeclType(cast<TypeDecl>(Found->getTargetDecl()))); 4653 QualType Canon = Underlying.getCanonicalType(); 4654 4655 UsingType *NewType = 4656 new (*this, TypeAlignment) UsingType(Found, Underlying, Canon); 4657 Types.push_back(NewType); 4658 UsingTypes.InsertNode(NewType, InsertPos); 4659 return QualType(NewType, 0); 4660 } 4661 4662 QualType ASTContext::getRecordType(const RecordDecl *Decl) const { 4663 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4664 4665 if (const RecordDecl *PrevDecl = Decl->getPreviousDecl()) 4666 if (PrevDecl->TypeForDecl) 4667 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0); 4668 4669 auto *newType = new (*this, TypeAlignment) RecordType(Decl); 4670 Decl->TypeForDecl = newType; 4671 Types.push_back(newType); 4672 return QualType(newType, 0); 4673 } 4674 4675 QualType ASTContext::getEnumType(const EnumDecl *Decl) const { 4676 if (Decl->TypeForDecl) return QualType(Decl->TypeForDecl, 0); 4677 4678 if (const EnumDecl *PrevDecl = Decl->getPreviousDecl()) 4679 if (PrevDecl->TypeForDecl) 4680 return QualType(Decl->TypeForDecl = PrevDecl->TypeForDecl, 0); 4681 4682 auto *newType = new (*this, TypeAlignment) EnumType(Decl); 4683 Decl->TypeForDecl = newType; 4684 Types.push_back(newType); 4685 return QualType(newType, 0); 4686 } 4687 4688 QualType ASTContext::getUnresolvedUsingType( 4689 const UnresolvedUsingTypenameDecl *Decl) const { 4690 if (Decl->TypeForDecl) 4691 return QualType(Decl->TypeForDecl, 0); 4692 4693 if (const UnresolvedUsingTypenameDecl *CanonicalDecl = 4694 Decl->getCanonicalDecl()) 4695 if (CanonicalDecl->TypeForDecl) 4696 return QualType(Decl->TypeForDecl = CanonicalDecl->TypeForDecl, 0); 4697 4698 Type *newType = new (*this, TypeAlignment) UnresolvedUsingType(Decl); 4699 Decl->TypeForDecl = newType; 4700 Types.push_back(newType); 4701 return QualType(newType, 0); 4702 } 4703 4704 QualType ASTContext::getAttributedType(attr::Kind attrKind, 4705 QualType modifiedType, 4706 QualType equivalentType) { 4707 llvm::FoldingSetNodeID id; 4708 AttributedType::Profile(id, attrKind, modifiedType, equivalentType); 4709 4710 void *insertPos = nullptr; 4711 AttributedType *type = AttributedTypes.FindNodeOrInsertPos(id, insertPos); 4712 if (type) return QualType(type, 0); 4713 4714 QualType canon = getCanonicalType(equivalentType); 4715 type = new (*this, TypeAlignment) 4716 AttributedType(canon, attrKind, modifiedType, equivalentType); 4717 4718 Types.push_back(type); 4719 AttributedTypes.InsertNode(type, insertPos); 4720 4721 return QualType(type, 0); 4722 } 4723 4724 QualType ASTContext::getBTFTagAttributedType(const BTFTypeTagAttr *BTFAttr, 4725 QualType Wrapped) { 4726 llvm::FoldingSetNodeID ID; 4727 BTFTagAttributedType::Profile(ID, Wrapped, BTFAttr); 4728 4729 void *InsertPos = nullptr; 4730 BTFTagAttributedType *Ty = 4731 BTFTagAttributedTypes.FindNodeOrInsertPos(ID, InsertPos); 4732 if (Ty) 4733 return QualType(Ty, 0); 4734 4735 QualType Canon = getCanonicalType(Wrapped); 4736 Ty = new (*this, TypeAlignment) BTFTagAttributedType(Canon, Wrapped, BTFAttr); 4737 4738 Types.push_back(Ty); 4739 BTFTagAttributedTypes.InsertNode(Ty, InsertPos); 4740 4741 return QualType(Ty, 0); 4742 } 4743 4744 /// Retrieve a substitution-result type. 4745 QualType 4746 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm, 4747 QualType Replacement) const { 4748 assert(Replacement.isCanonical() 4749 && "replacement types must always be canonical"); 4750 4751 llvm::FoldingSetNodeID ID; 4752 SubstTemplateTypeParmType::Profile(ID, Parm, Replacement); 4753 void *InsertPos = nullptr; 4754 SubstTemplateTypeParmType *SubstParm 4755 = SubstTemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4756 4757 if (!SubstParm) { 4758 SubstParm = new (*this, TypeAlignment) 4759 SubstTemplateTypeParmType(Parm, Replacement); 4760 Types.push_back(SubstParm); 4761 SubstTemplateTypeParmTypes.InsertNode(SubstParm, InsertPos); 4762 } 4763 4764 return QualType(SubstParm, 0); 4765 } 4766 4767 /// Retrieve a 4768 QualType ASTContext::getSubstTemplateTypeParmPackType( 4769 const TemplateTypeParmType *Parm, 4770 const TemplateArgument &ArgPack) { 4771 #ifndef NDEBUG 4772 for (const auto &P : ArgPack.pack_elements()) { 4773 assert(P.getKind() == TemplateArgument::Type &&"Pack contains a non-type"); 4774 assert(P.getAsType().isCanonical() && "Pack contains non-canonical type"); 4775 } 4776 #endif 4777 4778 llvm::FoldingSetNodeID ID; 4779 SubstTemplateTypeParmPackType::Profile(ID, Parm, ArgPack); 4780 void *InsertPos = nullptr; 4781 if (SubstTemplateTypeParmPackType *SubstParm 4782 = SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos)) 4783 return QualType(SubstParm, 0); 4784 4785 QualType Canon; 4786 if (!Parm->isCanonicalUnqualified()) { 4787 Canon = getCanonicalType(QualType(Parm, 0)); 4788 Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon), 4789 ArgPack); 4790 SubstTemplateTypeParmPackTypes.FindNodeOrInsertPos(ID, InsertPos); 4791 } 4792 4793 auto *SubstParm 4794 = new (*this, TypeAlignment) SubstTemplateTypeParmPackType(Parm, Canon, 4795 ArgPack); 4796 Types.push_back(SubstParm); 4797 SubstTemplateTypeParmPackTypes.InsertNode(SubstParm, InsertPos); 4798 return QualType(SubstParm, 0); 4799 } 4800 4801 /// Retrieve the template type parameter type for a template 4802 /// parameter or parameter pack with the given depth, index, and (optionally) 4803 /// name. 4804 QualType ASTContext::getTemplateTypeParmType(unsigned Depth, unsigned Index, 4805 bool ParameterPack, 4806 TemplateTypeParmDecl *TTPDecl) const { 4807 llvm::FoldingSetNodeID ID; 4808 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl); 4809 void *InsertPos = nullptr; 4810 TemplateTypeParmType *TypeParm 4811 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4812 4813 if (TypeParm) 4814 return QualType(TypeParm, 0); 4815 4816 if (TTPDecl) { 4817 QualType Canon = getTemplateTypeParmType(Depth, Index, ParameterPack); 4818 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon); 4819 4820 TemplateTypeParmType *TypeCheck 4821 = TemplateTypeParmTypes.FindNodeOrInsertPos(ID, InsertPos); 4822 assert(!TypeCheck && "Template type parameter canonical type broken"); 4823 (void)TypeCheck; 4824 } else 4825 TypeParm = new (*this, TypeAlignment) 4826 TemplateTypeParmType(Depth, Index, ParameterPack); 4827 4828 Types.push_back(TypeParm); 4829 TemplateTypeParmTypes.InsertNode(TypeParm, InsertPos); 4830 4831 return QualType(TypeParm, 0); 4832 } 4833 4834 TypeSourceInfo * 4835 ASTContext::getTemplateSpecializationTypeInfo(TemplateName Name, 4836 SourceLocation NameLoc, 4837 const TemplateArgumentListInfo &Args, 4838 QualType Underlying) const { 4839 assert(!Name.getAsDependentTemplateName() && 4840 "No dependent template names here!"); 4841 QualType TST = getTemplateSpecializationType(Name, Args, Underlying); 4842 4843 TypeSourceInfo *DI = CreateTypeSourceInfo(TST); 4844 TemplateSpecializationTypeLoc TL = 4845 DI->getTypeLoc().castAs<TemplateSpecializationTypeLoc>(); 4846 TL.setTemplateKeywordLoc(SourceLocation()); 4847 TL.setTemplateNameLoc(NameLoc); 4848 TL.setLAngleLoc(Args.getLAngleLoc()); 4849 TL.setRAngleLoc(Args.getRAngleLoc()); 4850 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) 4851 TL.setArgLocInfo(i, Args[i].getLocInfo()); 4852 return DI; 4853 } 4854 4855 QualType 4856 ASTContext::getTemplateSpecializationType(TemplateName Template, 4857 const TemplateArgumentListInfo &Args, 4858 QualType Underlying) const { 4859 assert(!Template.getAsDependentTemplateName() && 4860 "No dependent template names here!"); 4861 4862 SmallVector<TemplateArgument, 4> ArgVec; 4863 ArgVec.reserve(Args.size()); 4864 for (const TemplateArgumentLoc &Arg : Args.arguments()) 4865 ArgVec.push_back(Arg.getArgument()); 4866 4867 return getTemplateSpecializationType(Template, ArgVec, Underlying); 4868 } 4869 4870 #ifndef NDEBUG 4871 static bool hasAnyPackExpansions(ArrayRef<TemplateArgument> Args) { 4872 for (const TemplateArgument &Arg : Args) 4873 if (Arg.isPackExpansion()) 4874 return true; 4875 4876 return true; 4877 } 4878 #endif 4879 4880 QualType 4881 ASTContext::getTemplateSpecializationType(TemplateName Template, 4882 ArrayRef<TemplateArgument> Args, 4883 QualType Underlying) const { 4884 assert(!Template.getAsDependentTemplateName() && 4885 "No dependent template names here!"); 4886 // Look through qualified template names. 4887 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 4888 Template = QTN->getUnderlyingTemplate(); 4889 4890 bool IsTypeAlias = 4891 isa_and_nonnull<TypeAliasTemplateDecl>(Template.getAsTemplateDecl()); 4892 QualType CanonType; 4893 if (!Underlying.isNull()) 4894 CanonType = getCanonicalType(Underlying); 4895 else { 4896 // We can get here with an alias template when the specialization contains 4897 // a pack expansion that does not match up with a parameter pack. 4898 assert((!IsTypeAlias || hasAnyPackExpansions(Args)) && 4899 "Caller must compute aliased type"); 4900 IsTypeAlias = false; 4901 CanonType = getCanonicalTemplateSpecializationType(Template, Args); 4902 } 4903 4904 // Allocate the (non-canonical) template specialization type, but don't 4905 // try to unique it: these types typically have location information that 4906 // we don't unique and don't want to lose. 4907 void *Mem = Allocate(sizeof(TemplateSpecializationType) + 4908 sizeof(TemplateArgument) * Args.size() + 4909 (IsTypeAlias? sizeof(QualType) : 0), 4910 TypeAlignment); 4911 auto *Spec 4912 = new (Mem) TemplateSpecializationType(Template, Args, CanonType, 4913 IsTypeAlias ? Underlying : QualType()); 4914 4915 Types.push_back(Spec); 4916 return QualType(Spec, 0); 4917 } 4918 4919 static bool 4920 getCanonicalTemplateArguments(const ASTContext &C, 4921 ArrayRef<TemplateArgument> OrigArgs, 4922 SmallVectorImpl<TemplateArgument> &CanonArgs) { 4923 bool AnyNonCanonArgs = false; 4924 unsigned NumArgs = OrigArgs.size(); 4925 CanonArgs.resize(NumArgs); 4926 for (unsigned I = 0; I != NumArgs; ++I) { 4927 const TemplateArgument &OrigArg = OrigArgs[I]; 4928 TemplateArgument &CanonArg = CanonArgs[I]; 4929 CanonArg = C.getCanonicalTemplateArgument(OrigArg); 4930 if (!CanonArg.structurallyEquals(OrigArg)) 4931 AnyNonCanonArgs = true; 4932 } 4933 return AnyNonCanonArgs; 4934 } 4935 4936 QualType ASTContext::getCanonicalTemplateSpecializationType( 4937 TemplateName Template, ArrayRef<TemplateArgument> Args) const { 4938 assert(!Template.getAsDependentTemplateName() && 4939 "No dependent template names here!"); 4940 4941 // Look through qualified template names. 4942 if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 4943 Template = TemplateName(QTN->getUnderlyingTemplate()); 4944 4945 // Build the canonical template specialization type. 4946 TemplateName CanonTemplate = getCanonicalTemplateName(Template); 4947 SmallVector<TemplateArgument, 4> CanonArgs; 4948 ::getCanonicalTemplateArguments(*this, Args, CanonArgs); 4949 4950 // Determine whether this canonical template specialization type already 4951 // exists. 4952 llvm::FoldingSetNodeID ID; 4953 TemplateSpecializationType::Profile(ID, CanonTemplate, 4954 CanonArgs, *this); 4955 4956 void *InsertPos = nullptr; 4957 TemplateSpecializationType *Spec 4958 = TemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 4959 4960 if (!Spec) { 4961 // Allocate a new canonical template specialization type. 4962 void *Mem = Allocate((sizeof(TemplateSpecializationType) + 4963 sizeof(TemplateArgument) * CanonArgs.size()), 4964 TypeAlignment); 4965 Spec = new (Mem) TemplateSpecializationType(CanonTemplate, 4966 CanonArgs, 4967 QualType(), QualType()); 4968 Types.push_back(Spec); 4969 TemplateSpecializationTypes.InsertNode(Spec, InsertPos); 4970 } 4971 4972 assert(Spec->isDependentType() && 4973 "Non-dependent template-id type must have a canonical type"); 4974 return QualType(Spec, 0); 4975 } 4976 4977 QualType ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, 4978 NestedNameSpecifier *NNS, 4979 QualType NamedType, 4980 TagDecl *OwnedTagDecl) const { 4981 llvm::FoldingSetNodeID ID; 4982 ElaboratedType::Profile(ID, Keyword, NNS, NamedType, OwnedTagDecl); 4983 4984 void *InsertPos = nullptr; 4985 ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); 4986 if (T) 4987 return QualType(T, 0); 4988 4989 QualType Canon = NamedType; 4990 if (!Canon.isCanonical()) { 4991 Canon = getCanonicalType(NamedType); 4992 ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); 4993 assert(!CheckT && "Elaborated canonical type broken"); 4994 (void)CheckT; 4995 } 4996 4997 void *Mem = Allocate(ElaboratedType::totalSizeToAlloc<TagDecl *>(!!OwnedTagDecl), 4998 TypeAlignment); 4999 T = new (Mem) ElaboratedType(Keyword, NNS, NamedType, Canon, OwnedTagDecl); 5000 5001 Types.push_back(T); 5002 ElaboratedTypes.InsertNode(T, InsertPos); 5003 return QualType(T, 0); 5004 } 5005 5006 QualType 5007 ASTContext::getParenType(QualType InnerType) const { 5008 llvm::FoldingSetNodeID ID; 5009 ParenType::Profile(ID, InnerType); 5010 5011 void *InsertPos = nullptr; 5012 ParenType *T = ParenTypes.FindNodeOrInsertPos(ID, InsertPos); 5013 if (T) 5014 return QualType(T, 0); 5015 5016 QualType Canon = InnerType; 5017 if (!Canon.isCanonical()) { 5018 Canon = getCanonicalType(InnerType); 5019 ParenType *CheckT = ParenTypes.FindNodeOrInsertPos(ID, InsertPos); 5020 assert(!CheckT && "Paren canonical type broken"); 5021 (void)CheckT; 5022 } 5023 5024 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); 5025 Types.push_back(T); 5026 ParenTypes.InsertNode(T, InsertPos); 5027 return QualType(T, 0); 5028 } 5029 5030 QualType 5031 ASTContext::getMacroQualifiedType(QualType UnderlyingTy, 5032 const IdentifierInfo *MacroII) const { 5033 QualType Canon = UnderlyingTy; 5034 if (!Canon.isCanonical()) 5035 Canon = getCanonicalType(UnderlyingTy); 5036 5037 auto *newType = new (*this, TypeAlignment) 5038 MacroQualifiedType(UnderlyingTy, Canon, MacroII); 5039 Types.push_back(newType); 5040 return QualType(newType, 0); 5041 } 5042 5043 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, 5044 NestedNameSpecifier *NNS, 5045 const IdentifierInfo *Name, 5046 QualType Canon) const { 5047 if (Canon.isNull()) { 5048 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 5049 if (CanonNNS != NNS) 5050 Canon = getDependentNameType(Keyword, CanonNNS, Name); 5051 } 5052 5053 llvm::FoldingSetNodeID ID; 5054 DependentNameType::Profile(ID, Keyword, NNS, Name); 5055 5056 void *InsertPos = nullptr; 5057 DependentNameType *T 5058 = DependentNameTypes.FindNodeOrInsertPos(ID, InsertPos); 5059 if (T) 5060 return QualType(T, 0); 5061 5062 T = new (*this, TypeAlignment) DependentNameType(Keyword, NNS, Name, Canon); 5063 Types.push_back(T); 5064 DependentNameTypes.InsertNode(T, InsertPos); 5065 return QualType(T, 0); 5066 } 5067 5068 QualType 5069 ASTContext::getDependentTemplateSpecializationType( 5070 ElaboratedTypeKeyword Keyword, 5071 NestedNameSpecifier *NNS, 5072 const IdentifierInfo *Name, 5073 const TemplateArgumentListInfo &Args) const { 5074 // TODO: avoid this copy 5075 SmallVector<TemplateArgument, 16> ArgCopy; 5076 for (unsigned I = 0, E = Args.size(); I != E; ++I) 5077 ArgCopy.push_back(Args[I].getArgument()); 5078 return getDependentTemplateSpecializationType(Keyword, NNS, Name, ArgCopy); 5079 } 5080 5081 QualType 5082 ASTContext::getDependentTemplateSpecializationType( 5083 ElaboratedTypeKeyword Keyword, 5084 NestedNameSpecifier *NNS, 5085 const IdentifierInfo *Name, 5086 ArrayRef<TemplateArgument> Args) const { 5087 assert((!NNS || NNS->isDependent()) && 5088 "nested-name-specifier must be dependent"); 5089 5090 llvm::FoldingSetNodeID ID; 5091 DependentTemplateSpecializationType::Profile(ID, *this, Keyword, NNS, 5092 Name, Args); 5093 5094 void *InsertPos = nullptr; 5095 DependentTemplateSpecializationType *T 5096 = DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 5097 if (T) 5098 return QualType(T, 0); 5099 5100 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 5101 5102 ElaboratedTypeKeyword CanonKeyword = Keyword; 5103 if (Keyword == ETK_None) CanonKeyword = ETK_Typename; 5104 5105 SmallVector<TemplateArgument, 16> CanonArgs; 5106 bool AnyNonCanonArgs = 5107 ::getCanonicalTemplateArguments(*this, Args, CanonArgs); 5108 5109 QualType Canon; 5110 if (AnyNonCanonArgs || CanonNNS != NNS || CanonKeyword != Keyword) { 5111 Canon = getDependentTemplateSpecializationType(CanonKeyword, CanonNNS, 5112 Name, 5113 CanonArgs); 5114 5115 // Find the insert position again. 5116 DependentTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos); 5117 } 5118 5119 void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) + 5120 sizeof(TemplateArgument) * Args.size()), 5121 TypeAlignment); 5122 T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS, 5123 Name, Args, Canon); 5124 Types.push_back(T); 5125 DependentTemplateSpecializationTypes.InsertNode(T, InsertPos); 5126 return QualType(T, 0); 5127 } 5128 5129 TemplateArgument ASTContext::getInjectedTemplateArg(NamedDecl *Param) { 5130 TemplateArgument Arg; 5131 if (const auto *TTP = dyn_cast<TemplateTypeParmDecl>(Param)) { 5132 QualType ArgType = getTypeDeclType(TTP); 5133 if (TTP->isParameterPack()) 5134 ArgType = getPackExpansionType(ArgType, None); 5135 5136 Arg = TemplateArgument(ArgType); 5137 } else if (auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param)) { 5138 QualType T = 5139 NTTP->getType().getNonPackExpansionType().getNonLValueExprType(*this); 5140 // For class NTTPs, ensure we include the 'const' so the type matches that 5141 // of a real template argument. 5142 // FIXME: It would be more faithful to model this as something like an 5143 // lvalue-to-rvalue conversion applied to a const-qualified lvalue. 5144 if (T->isRecordType()) 5145 T.addConst(); 5146 Expr *E = new (*this) DeclRefExpr( 5147 *this, NTTP, /*enclosing*/ false, T, 5148 Expr::getValueKindForType(NTTP->getType()), NTTP->getLocation()); 5149 5150 if (NTTP->isParameterPack()) 5151 E = new (*this) PackExpansionExpr(DependentTy, E, NTTP->getLocation(), 5152 None); 5153 Arg = TemplateArgument(E); 5154 } else { 5155 auto *TTP = cast<TemplateTemplateParmDecl>(Param); 5156 if (TTP->isParameterPack()) 5157 Arg = TemplateArgument(TemplateName(TTP), Optional<unsigned>()); 5158 else 5159 Arg = TemplateArgument(TemplateName(TTP)); 5160 } 5161 5162 if (Param->isTemplateParameterPack()) 5163 Arg = TemplateArgument::CreatePackCopy(*this, Arg); 5164 5165 return Arg; 5166 } 5167 5168 void 5169 ASTContext::getInjectedTemplateArgs(const TemplateParameterList *Params, 5170 SmallVectorImpl<TemplateArgument> &Args) { 5171 Args.reserve(Args.size() + Params->size()); 5172 5173 for (NamedDecl *Param : *Params) 5174 Args.push_back(getInjectedTemplateArg(Param)); 5175 } 5176 5177 QualType ASTContext::getPackExpansionType(QualType Pattern, 5178 Optional<unsigned> NumExpansions, 5179 bool ExpectPackInType) { 5180 assert((!ExpectPackInType || Pattern->containsUnexpandedParameterPack()) && 5181 "Pack expansions must expand one or more parameter packs"); 5182 5183 llvm::FoldingSetNodeID ID; 5184 PackExpansionType::Profile(ID, Pattern, NumExpansions); 5185 5186 void *InsertPos = nullptr; 5187 PackExpansionType *T = PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos); 5188 if (T) 5189 return QualType(T, 0); 5190 5191 QualType Canon; 5192 if (!Pattern.isCanonical()) { 5193 Canon = getPackExpansionType(getCanonicalType(Pattern), NumExpansions, 5194 /*ExpectPackInType=*/false); 5195 5196 // Find the insert position again, in case we inserted an element into 5197 // PackExpansionTypes and invalidated our insert position. 5198 PackExpansionTypes.FindNodeOrInsertPos(ID, InsertPos); 5199 } 5200 5201 T = new (*this, TypeAlignment) 5202 PackExpansionType(Pattern, Canon, NumExpansions); 5203 Types.push_back(T); 5204 PackExpansionTypes.InsertNode(T, InsertPos); 5205 return QualType(T, 0); 5206 } 5207 5208 /// CmpProtocolNames - Comparison predicate for sorting protocols 5209 /// alphabetically. 5210 static int CmpProtocolNames(ObjCProtocolDecl *const *LHS, 5211 ObjCProtocolDecl *const *RHS) { 5212 return DeclarationName::compare((*LHS)->getDeclName(), (*RHS)->getDeclName()); 5213 } 5214 5215 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) { 5216 if (Protocols.empty()) return true; 5217 5218 if (Protocols[0]->getCanonicalDecl() != Protocols[0]) 5219 return false; 5220 5221 for (unsigned i = 1; i != Protocols.size(); ++i) 5222 if (CmpProtocolNames(&Protocols[i - 1], &Protocols[i]) >= 0 || 5223 Protocols[i]->getCanonicalDecl() != Protocols[i]) 5224 return false; 5225 return true; 5226 } 5227 5228 static void 5229 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) { 5230 // Sort protocols, keyed by name. 5231 llvm::array_pod_sort(Protocols.begin(), Protocols.end(), CmpProtocolNames); 5232 5233 // Canonicalize. 5234 for (ObjCProtocolDecl *&P : Protocols) 5235 P = P->getCanonicalDecl(); 5236 5237 // Remove duplicates. 5238 auto ProtocolsEnd = std::unique(Protocols.begin(), Protocols.end()); 5239 Protocols.erase(ProtocolsEnd, Protocols.end()); 5240 } 5241 5242 QualType ASTContext::getObjCObjectType(QualType BaseType, 5243 ObjCProtocolDecl * const *Protocols, 5244 unsigned NumProtocols) const { 5245 return getObjCObjectType(BaseType, {}, 5246 llvm::makeArrayRef(Protocols, NumProtocols), 5247 /*isKindOf=*/false); 5248 } 5249 5250 QualType ASTContext::getObjCObjectType( 5251 QualType baseType, 5252 ArrayRef<QualType> typeArgs, 5253 ArrayRef<ObjCProtocolDecl *> protocols, 5254 bool isKindOf) const { 5255 // If the base type is an interface and there aren't any protocols or 5256 // type arguments to add, then the interface type will do just fine. 5257 if (typeArgs.empty() && protocols.empty() && !isKindOf && 5258 isa<ObjCInterfaceType>(baseType)) 5259 return baseType; 5260 5261 // Look in the folding set for an existing type. 5262 llvm::FoldingSetNodeID ID; 5263 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); 5264 void *InsertPos = nullptr; 5265 if (ObjCObjectType *QT = ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos)) 5266 return QualType(QT, 0); 5267 5268 // Determine the type arguments to be used for canonicalization, 5269 // which may be explicitly specified here or written on the base 5270 // type. 5271 ArrayRef<QualType> effectiveTypeArgs = typeArgs; 5272 if (effectiveTypeArgs.empty()) { 5273 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) 5274 effectiveTypeArgs = baseObject->getTypeArgs(); 5275 } 5276 5277 // Build the canonical type, which has the canonical base type and a 5278 // sorted-and-uniqued list of protocols and the type arguments 5279 // canonicalized. 5280 QualType canonical; 5281 bool typeArgsAreCanonical = llvm::all_of( 5282 effectiveTypeArgs, [&](QualType type) { return type.isCanonical(); }); 5283 bool protocolsSorted = areSortedAndUniqued(protocols); 5284 if (!typeArgsAreCanonical || !protocolsSorted || !baseType.isCanonical()) { 5285 // Determine the canonical type arguments. 5286 ArrayRef<QualType> canonTypeArgs; 5287 SmallVector<QualType, 4> canonTypeArgsVec; 5288 if (!typeArgsAreCanonical) { 5289 canonTypeArgsVec.reserve(effectiveTypeArgs.size()); 5290 for (auto typeArg : effectiveTypeArgs) 5291 canonTypeArgsVec.push_back(getCanonicalType(typeArg)); 5292 canonTypeArgs = canonTypeArgsVec; 5293 } else { 5294 canonTypeArgs = effectiveTypeArgs; 5295 } 5296 5297 ArrayRef<ObjCProtocolDecl *> canonProtocols; 5298 SmallVector<ObjCProtocolDecl*, 8> canonProtocolsVec; 5299 if (!protocolsSorted) { 5300 canonProtocolsVec.append(protocols.begin(), protocols.end()); 5301 SortAndUniqueProtocols(canonProtocolsVec); 5302 canonProtocols = canonProtocolsVec; 5303 } else { 5304 canonProtocols = protocols; 5305 } 5306 5307 canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs, 5308 canonProtocols, isKindOf); 5309 5310 // Regenerate InsertPos. 5311 ObjCObjectTypes.FindNodeOrInsertPos(ID, InsertPos); 5312 } 5313 5314 unsigned size = sizeof(ObjCObjectTypeImpl); 5315 size += typeArgs.size() * sizeof(QualType); 5316 size += protocols.size() * sizeof(ObjCProtocolDecl *); 5317 void *mem = Allocate(size, TypeAlignment); 5318 auto *T = 5319 new (mem) ObjCObjectTypeImpl(canonical, baseType, typeArgs, protocols, 5320 isKindOf); 5321 5322 Types.push_back(T); 5323 ObjCObjectTypes.InsertNode(T, InsertPos); 5324 return QualType(T, 0); 5325 } 5326 5327 /// Apply Objective-C protocol qualifiers to the given type. 5328 /// If this is for the canonical type of a type parameter, we can apply 5329 /// protocol qualifiers on the ObjCObjectPointerType. 5330 QualType 5331 ASTContext::applyObjCProtocolQualifiers(QualType type, 5332 ArrayRef<ObjCProtocolDecl *> protocols, bool &hasError, 5333 bool allowOnPointerType) const { 5334 hasError = false; 5335 5336 if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) { 5337 return getObjCTypeParamType(objT->getDecl(), protocols); 5338 } 5339 5340 // Apply protocol qualifiers to ObjCObjectPointerType. 5341 if (allowOnPointerType) { 5342 if (const auto *objPtr = 5343 dyn_cast<ObjCObjectPointerType>(type.getTypePtr())) { 5344 const ObjCObjectType *objT = objPtr->getObjectType(); 5345 // Merge protocol lists and construct ObjCObjectType. 5346 SmallVector<ObjCProtocolDecl*, 8> protocolsVec; 5347 protocolsVec.append(objT->qual_begin(), 5348 objT->qual_end()); 5349 protocolsVec.append(protocols.begin(), protocols.end()); 5350 ArrayRef<ObjCProtocolDecl *> protocols = protocolsVec; 5351 type = getObjCObjectType( 5352 objT->getBaseType(), 5353 objT->getTypeArgsAsWritten(), 5354 protocols, 5355 objT->isKindOfTypeAsWritten()); 5356 return getObjCObjectPointerType(type); 5357 } 5358 } 5359 5360 // Apply protocol qualifiers to ObjCObjectType. 5361 if (const auto *objT = dyn_cast<ObjCObjectType>(type.getTypePtr())){ 5362 // FIXME: Check for protocols to which the class type is already 5363 // known to conform. 5364 5365 return getObjCObjectType(objT->getBaseType(), 5366 objT->getTypeArgsAsWritten(), 5367 protocols, 5368 objT->isKindOfTypeAsWritten()); 5369 } 5370 5371 // If the canonical type is ObjCObjectType, ... 5372 if (type->isObjCObjectType()) { 5373 // Silently overwrite any existing protocol qualifiers. 5374 // TODO: determine whether that's the right thing to do. 5375 5376 // FIXME: Check for protocols to which the class type is already 5377 // known to conform. 5378 return getObjCObjectType(type, {}, protocols, false); 5379 } 5380 5381 // id<protocol-list> 5382 if (type->isObjCIdType()) { 5383 const auto *objPtr = type->castAs<ObjCObjectPointerType>(); 5384 type = getObjCObjectType(ObjCBuiltinIdTy, {}, protocols, 5385 objPtr->isKindOfType()); 5386 return getObjCObjectPointerType(type); 5387 } 5388 5389 // Class<protocol-list> 5390 if (type->isObjCClassType()) { 5391 const auto *objPtr = type->castAs<ObjCObjectPointerType>(); 5392 type = getObjCObjectType(ObjCBuiltinClassTy, {}, protocols, 5393 objPtr->isKindOfType()); 5394 return getObjCObjectPointerType(type); 5395 } 5396 5397 hasError = true; 5398 return type; 5399 } 5400 5401 QualType 5402 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, 5403 ArrayRef<ObjCProtocolDecl *> protocols) const { 5404 // Look in the folding set for an existing type. 5405 llvm::FoldingSetNodeID ID; 5406 ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols); 5407 void *InsertPos = nullptr; 5408 if (ObjCTypeParamType *TypeParam = 5409 ObjCTypeParamTypes.FindNodeOrInsertPos(ID, InsertPos)) 5410 return QualType(TypeParam, 0); 5411 5412 // We canonicalize to the underlying type. 5413 QualType Canonical = getCanonicalType(Decl->getUnderlyingType()); 5414 if (!protocols.empty()) { 5415 // Apply the protocol qualifers. 5416 bool hasError; 5417 Canonical = getCanonicalType(applyObjCProtocolQualifiers( 5418 Canonical, protocols, hasError, true /*allowOnPointerType*/)); 5419 assert(!hasError && "Error when apply protocol qualifier to bound type"); 5420 } 5421 5422 unsigned size = sizeof(ObjCTypeParamType); 5423 size += protocols.size() * sizeof(ObjCProtocolDecl *); 5424 void *mem = Allocate(size, TypeAlignment); 5425 auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols); 5426 5427 Types.push_back(newType); 5428 ObjCTypeParamTypes.InsertNode(newType, InsertPos); 5429 return QualType(newType, 0); 5430 } 5431 5432 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, 5433 ObjCTypeParamDecl *New) const { 5434 New->setTypeSourceInfo(getTrivialTypeSourceInfo(Orig->getUnderlyingType())); 5435 // Update TypeForDecl after updating TypeSourceInfo. 5436 auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl()); 5437 SmallVector<ObjCProtocolDecl *, 8> protocols; 5438 protocols.append(NewTypeParamTy->qual_begin(), NewTypeParamTy->qual_end()); 5439 QualType UpdatedTy = getObjCTypeParamType(New, protocols); 5440 New->setTypeForDecl(UpdatedTy.getTypePtr()); 5441 } 5442 5443 /// ObjCObjectAdoptsQTypeProtocols - Checks that protocols in IC's 5444 /// protocol list adopt all protocols in QT's qualified-id protocol 5445 /// list. 5446 bool ASTContext::ObjCObjectAdoptsQTypeProtocols(QualType QT, 5447 ObjCInterfaceDecl *IC) { 5448 if (!QT->isObjCQualifiedIdType()) 5449 return false; 5450 5451 if (const auto *OPT = QT->getAs<ObjCObjectPointerType>()) { 5452 // If both the right and left sides have qualifiers. 5453 for (auto *Proto : OPT->quals()) { 5454 if (!IC->ClassImplementsProtocol(Proto, false)) 5455 return false; 5456 } 5457 return true; 5458 } 5459 return false; 5460 } 5461 5462 /// QIdProtocolsAdoptObjCObjectProtocols - Checks that protocols in 5463 /// QT's qualified-id protocol list adopt all protocols in IDecl's list 5464 /// of protocols. 5465 bool ASTContext::QIdProtocolsAdoptObjCObjectProtocols(QualType QT, 5466 ObjCInterfaceDecl *IDecl) { 5467 if (!QT->isObjCQualifiedIdType()) 5468 return false; 5469 const auto *OPT = QT->getAs<ObjCObjectPointerType>(); 5470 if (!OPT) 5471 return false; 5472 if (!IDecl->hasDefinition()) 5473 return false; 5474 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> InheritedProtocols; 5475 CollectInheritedProtocols(IDecl, InheritedProtocols); 5476 if (InheritedProtocols.empty()) 5477 return false; 5478 // Check that if every protocol in list of id<plist> conforms to a protocol 5479 // of IDecl's, then bridge casting is ok. 5480 bool Conforms = false; 5481 for (auto *Proto : OPT->quals()) { 5482 Conforms = false; 5483 for (auto *PI : InheritedProtocols) { 5484 if (ProtocolCompatibleWithProtocol(Proto, PI)) { 5485 Conforms = true; 5486 break; 5487 } 5488 } 5489 if (!Conforms) 5490 break; 5491 } 5492 if (Conforms) 5493 return true; 5494 5495 for (auto *PI : InheritedProtocols) { 5496 // If both the right and left sides have qualifiers. 5497 bool Adopts = false; 5498 for (auto *Proto : OPT->quals()) { 5499 // return 'true' if 'PI' is in the inheritance hierarchy of Proto 5500 if ((Adopts = ProtocolCompatibleWithProtocol(PI, Proto))) 5501 break; 5502 } 5503 if (!Adopts) 5504 return false; 5505 } 5506 return true; 5507 } 5508 5509 /// getObjCObjectPointerType - Return a ObjCObjectPointerType type for 5510 /// the given object type. 5511 QualType ASTContext::getObjCObjectPointerType(QualType ObjectT) const { 5512 llvm::FoldingSetNodeID ID; 5513 ObjCObjectPointerType::Profile(ID, ObjectT); 5514 5515 void *InsertPos = nullptr; 5516 if (ObjCObjectPointerType *QT = 5517 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos)) 5518 return QualType(QT, 0); 5519 5520 // Find the canonical object type. 5521 QualType Canonical; 5522 if (!ObjectT.isCanonical()) { 5523 Canonical = getObjCObjectPointerType(getCanonicalType(ObjectT)); 5524 5525 // Regenerate InsertPos. 5526 ObjCObjectPointerTypes.FindNodeOrInsertPos(ID, InsertPos); 5527 } 5528 5529 // No match. 5530 void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment); 5531 auto *QType = 5532 new (Mem) ObjCObjectPointerType(Canonical, ObjectT); 5533 5534 Types.push_back(QType); 5535 ObjCObjectPointerTypes.InsertNode(QType, InsertPos); 5536 return QualType(QType, 0); 5537 } 5538 5539 /// getObjCInterfaceType - Return the unique reference to the type for the 5540 /// specified ObjC interface decl. The list of protocols is optional. 5541 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl, 5542 ObjCInterfaceDecl *PrevDecl) const { 5543 if (Decl->TypeForDecl) 5544 return QualType(Decl->TypeForDecl, 0); 5545 5546 if (PrevDecl) { 5547 assert(PrevDecl->TypeForDecl && "previous decl has no TypeForDecl"); 5548 Decl->TypeForDecl = PrevDecl->TypeForDecl; 5549 return QualType(PrevDecl->TypeForDecl, 0); 5550 } 5551 5552 // Prefer the definition, if there is one. 5553 if (const ObjCInterfaceDecl *Def = Decl->getDefinition()) 5554 Decl = Def; 5555 5556 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment); 5557 auto *T = new (Mem) ObjCInterfaceType(Decl); 5558 Decl->TypeForDecl = T; 5559 Types.push_back(T); 5560 return QualType(T, 0); 5561 } 5562 5563 /// getTypeOfExprType - Unlike many "get<Type>" functions, we can't unique 5564 /// TypeOfExprType AST's (since expression's are never shared). For example, 5565 /// multiple declarations that refer to "typeof(x)" all contain different 5566 /// DeclRefExpr's. This doesn't effect the type checker, since it operates 5567 /// on canonical type's (which are always unique). 5568 QualType ASTContext::getTypeOfExprType(Expr *tofExpr) const { 5569 TypeOfExprType *toe; 5570 if (tofExpr->isTypeDependent()) { 5571 llvm::FoldingSetNodeID ID; 5572 DependentTypeOfExprType::Profile(ID, *this, tofExpr); 5573 5574 void *InsertPos = nullptr; 5575 DependentTypeOfExprType *Canon 5576 = DependentTypeOfExprTypes.FindNodeOrInsertPos(ID, InsertPos); 5577 if (Canon) { 5578 // We already have a "canonical" version of an identical, dependent 5579 // typeof(expr) type. Use that as our canonical type. 5580 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, 5581 QualType((TypeOfExprType*)Canon, 0)); 5582 } else { 5583 // Build a new, canonical typeof(expr) type. 5584 Canon 5585 = new (*this, TypeAlignment) DependentTypeOfExprType(*this, tofExpr); 5586 DependentTypeOfExprTypes.InsertNode(Canon, InsertPos); 5587 toe = Canon; 5588 } 5589 } else { 5590 QualType Canonical = getCanonicalType(tofExpr->getType()); 5591 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical); 5592 } 5593 Types.push_back(toe); 5594 return QualType(toe, 0); 5595 } 5596 5597 /// getTypeOfType - Unlike many "get<Type>" functions, we don't unique 5598 /// TypeOfType nodes. The only motivation to unique these nodes would be 5599 /// memory savings. Since typeof(t) is fairly uncommon, space shouldn't be 5600 /// an issue. This doesn't affect the type checker, since it operates 5601 /// on canonical types (which are always unique). 5602 QualType ASTContext::getTypeOfType(QualType tofType) const { 5603 QualType Canonical = getCanonicalType(tofType); 5604 auto *tot = new (*this, TypeAlignment) TypeOfType(tofType, Canonical); 5605 Types.push_back(tot); 5606 return QualType(tot, 0); 5607 } 5608 5609 /// getReferenceQualifiedType - Given an expr, will return the type for 5610 /// that expression, as in [dcl.type.simple]p4 but without taking id-expressions 5611 /// and class member access into account. 5612 QualType ASTContext::getReferenceQualifiedType(const Expr *E) const { 5613 // C++11 [dcl.type.simple]p4: 5614 // [...] 5615 QualType T = E->getType(); 5616 switch (E->getValueKind()) { 5617 // - otherwise, if e is an xvalue, decltype(e) is T&&, where T is the 5618 // type of e; 5619 case VK_XValue: 5620 return getRValueReferenceType(T); 5621 // - otherwise, if e is an lvalue, decltype(e) is T&, where T is the 5622 // type of e; 5623 case VK_LValue: 5624 return getLValueReferenceType(T); 5625 // - otherwise, decltype(e) is the type of e. 5626 case VK_PRValue: 5627 return T; 5628 } 5629 llvm_unreachable("Unknown value kind"); 5630 } 5631 5632 /// Unlike many "get<Type>" functions, we don't unique DecltypeType 5633 /// nodes. This would never be helpful, since each such type has its own 5634 /// expression, and would not give a significant memory saving, since there 5635 /// is an Expr tree under each such type. 5636 QualType ASTContext::getDecltypeType(Expr *e, QualType UnderlyingType) const { 5637 DecltypeType *dt; 5638 5639 // C++11 [temp.type]p2: 5640 // If an expression e involves a template parameter, decltype(e) denotes a 5641 // unique dependent type. Two such decltype-specifiers refer to the same 5642 // type only if their expressions are equivalent (14.5.6.1). 5643 if (e->isInstantiationDependent()) { 5644 llvm::FoldingSetNodeID ID; 5645 DependentDecltypeType::Profile(ID, *this, e); 5646 5647 void *InsertPos = nullptr; 5648 DependentDecltypeType *Canon 5649 = DependentDecltypeTypes.FindNodeOrInsertPos(ID, InsertPos); 5650 if (!Canon) { 5651 // Build a new, canonical decltype(expr) type. 5652 Canon = new (*this, TypeAlignment) DependentDecltypeType(*this, e); 5653 DependentDecltypeTypes.InsertNode(Canon, InsertPos); 5654 } 5655 dt = new (*this, TypeAlignment) 5656 DecltypeType(e, UnderlyingType, QualType((DecltypeType *)Canon, 0)); 5657 } else { 5658 dt = new (*this, TypeAlignment) 5659 DecltypeType(e, UnderlyingType, getCanonicalType(UnderlyingType)); 5660 } 5661 Types.push_back(dt); 5662 return QualType(dt, 0); 5663 } 5664 5665 /// getUnaryTransformationType - We don't unique these, since the memory 5666 /// savings are minimal and these are rare. 5667 QualType ASTContext::getUnaryTransformType(QualType BaseType, 5668 QualType UnderlyingType, 5669 UnaryTransformType::UTTKind Kind) 5670 const { 5671 UnaryTransformType *ut = nullptr; 5672 5673 if (BaseType->isDependentType()) { 5674 // Look in the folding set for an existing type. 5675 llvm::FoldingSetNodeID ID; 5676 DependentUnaryTransformType::Profile(ID, getCanonicalType(BaseType), Kind); 5677 5678 void *InsertPos = nullptr; 5679 DependentUnaryTransformType *Canon 5680 = DependentUnaryTransformTypes.FindNodeOrInsertPos(ID, InsertPos); 5681 5682 if (!Canon) { 5683 // Build a new, canonical __underlying_type(type) type. 5684 Canon = new (*this, TypeAlignment) 5685 DependentUnaryTransformType(*this, getCanonicalType(BaseType), 5686 Kind); 5687 DependentUnaryTransformTypes.InsertNode(Canon, InsertPos); 5688 } 5689 ut = new (*this, TypeAlignment) UnaryTransformType (BaseType, 5690 QualType(), Kind, 5691 QualType(Canon, 0)); 5692 } else { 5693 QualType CanonType = getCanonicalType(UnderlyingType); 5694 ut = new (*this, TypeAlignment) UnaryTransformType (BaseType, 5695 UnderlyingType, Kind, 5696 CanonType); 5697 } 5698 Types.push_back(ut); 5699 return QualType(ut, 0); 5700 } 5701 5702 QualType ASTContext::getAutoTypeInternal( 5703 QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent, 5704 bool IsPack, ConceptDecl *TypeConstraintConcept, 5705 ArrayRef<TemplateArgument> TypeConstraintArgs, bool IsCanon) const { 5706 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && 5707 !TypeConstraintConcept && !IsDependent) 5708 return getAutoDeductType(); 5709 5710 // Look in the folding set for an existing type. 5711 void *InsertPos = nullptr; 5712 llvm::FoldingSetNodeID ID; 5713 AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent, 5714 TypeConstraintConcept, TypeConstraintArgs); 5715 if (AutoType *AT = AutoTypes.FindNodeOrInsertPos(ID, InsertPos)) 5716 return QualType(AT, 0); 5717 5718 QualType Canon; 5719 if (!IsCanon) { 5720 if (DeducedType.isNull()) { 5721 SmallVector<TemplateArgument, 4> CanonArgs; 5722 bool AnyNonCanonArgs = 5723 ::getCanonicalTemplateArguments(*this, TypeConstraintArgs, CanonArgs); 5724 if (AnyNonCanonArgs) { 5725 Canon = getAutoTypeInternal(QualType(), Keyword, IsDependent, IsPack, 5726 TypeConstraintConcept, CanonArgs, true); 5727 // Find the insert position again. 5728 AutoTypes.FindNodeOrInsertPos(ID, InsertPos); 5729 } 5730 } else { 5731 Canon = DeducedType.getCanonicalType(); 5732 } 5733 } 5734 5735 void *Mem = Allocate(sizeof(AutoType) + 5736 sizeof(TemplateArgument) * TypeConstraintArgs.size(), 5737 TypeAlignment); 5738 auto *AT = new (Mem) AutoType( 5739 DeducedType, Keyword, 5740 (IsDependent ? TypeDependence::DependentInstantiation 5741 : TypeDependence::None) | 5742 (IsPack ? TypeDependence::UnexpandedPack : TypeDependence::None), 5743 Canon, TypeConstraintConcept, TypeConstraintArgs); 5744 Types.push_back(AT); 5745 AutoTypes.InsertNode(AT, InsertPos); 5746 return QualType(AT, 0); 5747 } 5748 5749 /// getAutoType - Return the uniqued reference to the 'auto' type which has been 5750 /// deduced to the given type, or to the canonical undeduced 'auto' type, or the 5751 /// canonical deduced-but-dependent 'auto' type. 5752 QualType 5753 ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword, 5754 bool IsDependent, bool IsPack, 5755 ConceptDecl *TypeConstraintConcept, 5756 ArrayRef<TemplateArgument> TypeConstraintArgs) const { 5757 assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack"); 5758 assert((!IsDependent || DeducedType.isNull()) && 5759 "A dependent auto should be undeduced"); 5760 return getAutoTypeInternal(DeducedType, Keyword, IsDependent, IsPack, 5761 TypeConstraintConcept, TypeConstraintArgs); 5762 } 5763 5764 /// Return the uniqued reference to the deduced template specialization type 5765 /// which has been deduced to the given type, or to the canonical undeduced 5766 /// such type, or the canonical deduced-but-dependent such type. 5767 QualType ASTContext::getDeducedTemplateSpecializationType( 5768 TemplateName Template, QualType DeducedType, bool IsDependent) const { 5769 // Look in the folding set for an existing type. 5770 void *InsertPos = nullptr; 5771 llvm::FoldingSetNodeID ID; 5772 DeducedTemplateSpecializationType::Profile(ID, Template, DeducedType, 5773 IsDependent); 5774 if (DeducedTemplateSpecializationType *DTST = 5775 DeducedTemplateSpecializationTypes.FindNodeOrInsertPos(ID, InsertPos)) 5776 return QualType(DTST, 0); 5777 5778 auto *DTST = new (*this, TypeAlignment) 5779 DeducedTemplateSpecializationType(Template, DeducedType, IsDependent); 5780 llvm::FoldingSetNodeID TempID; 5781 DTST->Profile(TempID); 5782 assert(ID == TempID && "ID does not match"); 5783 Types.push_back(DTST); 5784 DeducedTemplateSpecializationTypes.InsertNode(DTST, InsertPos); 5785 return QualType(DTST, 0); 5786 } 5787 5788 /// getAtomicType - Return the uniqued reference to the atomic type for 5789 /// the given value type. 5790 QualType ASTContext::getAtomicType(QualType T) const { 5791 // Unique pointers, to guarantee there is only one pointer of a particular 5792 // structure. 5793 llvm::FoldingSetNodeID ID; 5794 AtomicType::Profile(ID, T); 5795 5796 void *InsertPos = nullptr; 5797 if (AtomicType *AT = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos)) 5798 return QualType(AT, 0); 5799 5800 // If the atomic value type isn't canonical, this won't be a canonical type 5801 // either, so fill in the canonical type field. 5802 QualType Canonical; 5803 if (!T.isCanonical()) { 5804 Canonical = getAtomicType(getCanonicalType(T)); 5805 5806 // Get the new insert position for the node we care about. 5807 AtomicType *NewIP = AtomicTypes.FindNodeOrInsertPos(ID, InsertPos); 5808 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; 5809 } 5810 auto *New = new (*this, TypeAlignment) AtomicType(T, Canonical); 5811 Types.push_back(New); 5812 AtomicTypes.InsertNode(New, InsertPos); 5813 return QualType(New, 0); 5814 } 5815 5816 /// getAutoDeductType - Get type pattern for deducing against 'auto'. 5817 QualType ASTContext::getAutoDeductType() const { 5818 if (AutoDeductTy.isNull()) 5819 AutoDeductTy = QualType(new (*this, TypeAlignment) 5820 AutoType(QualType(), AutoTypeKeyword::Auto, 5821 TypeDependence::None, QualType(), 5822 /*concept*/ nullptr, /*args*/ {}), 5823 0); 5824 return AutoDeductTy; 5825 } 5826 5827 /// getAutoRRefDeductType - Get type pattern for deducing against 'auto &&'. 5828 QualType ASTContext::getAutoRRefDeductType() const { 5829 if (AutoRRefDeductTy.isNull()) 5830 AutoRRefDeductTy = getRValueReferenceType(getAutoDeductType()); 5831 assert(!AutoRRefDeductTy.isNull() && "can't build 'auto &&' pattern"); 5832 return AutoRRefDeductTy; 5833 } 5834 5835 /// getTagDeclType - Return the unique reference to the type for the 5836 /// specified TagDecl (struct/union/class/enum) decl. 5837 QualType ASTContext::getTagDeclType(const TagDecl *Decl) const { 5838 assert(Decl); 5839 // FIXME: What is the design on getTagDeclType when it requires casting 5840 // away const? mutable? 5841 return getTypeDeclType(const_cast<TagDecl*>(Decl)); 5842 } 5843 5844 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result 5845 /// of the sizeof operator (C99 6.5.3.4p4). The value is target dependent and 5846 /// needs to agree with the definition in <stddef.h>. 5847 CanQualType ASTContext::getSizeType() const { 5848 return getFromTargetType(Target->getSizeType()); 5849 } 5850 5851 /// Return the unique signed counterpart of the integer type 5852 /// corresponding to size_t. 5853 CanQualType ASTContext::getSignedSizeType() const { 5854 return getFromTargetType(Target->getSignedSizeType()); 5855 } 5856 5857 /// getIntMaxType - Return the unique type for "intmax_t" (C99 7.18.1.5). 5858 CanQualType ASTContext::getIntMaxType() const { 5859 return getFromTargetType(Target->getIntMaxType()); 5860 } 5861 5862 /// getUIntMaxType - Return the unique type for "uintmax_t" (C99 7.18.1.5). 5863 CanQualType ASTContext::getUIntMaxType() const { 5864 return getFromTargetType(Target->getUIntMaxType()); 5865 } 5866 5867 /// getSignedWCharType - Return the type of "signed wchar_t". 5868 /// Used when in C++, as a GCC extension. 5869 QualType ASTContext::getSignedWCharType() const { 5870 // FIXME: derive from "Target" ? 5871 return WCharTy; 5872 } 5873 5874 /// getUnsignedWCharType - Return the type of "unsigned wchar_t". 5875 /// Used when in C++, as a GCC extension. 5876 QualType ASTContext::getUnsignedWCharType() const { 5877 // FIXME: derive from "Target" ? 5878 return UnsignedIntTy; 5879 } 5880 5881 QualType ASTContext::getIntPtrType() const { 5882 return getFromTargetType(Target->getIntPtrType()); 5883 } 5884 5885 QualType ASTContext::getUIntPtrType() const { 5886 return getCorrespondingUnsignedType(getIntPtrType()); 5887 } 5888 5889 /// getPointerDiffType - Return the unique type for "ptrdiff_t" (C99 7.17) 5890 /// defined in <stddef.h>. Pointer - pointer requires this (C99 6.5.6p9). 5891 QualType ASTContext::getPointerDiffType() const { 5892 return getFromTargetType(Target->getPtrDiffType(0)); 5893 } 5894 5895 /// Return the unique unsigned counterpart of "ptrdiff_t" 5896 /// integer type. The standard (C11 7.21.6.1p7) refers to this type 5897 /// in the definition of %tu format specifier. 5898 QualType ASTContext::getUnsignedPointerDiffType() const { 5899 return getFromTargetType(Target->getUnsignedPtrDiffType(0)); 5900 } 5901 5902 /// Return the unique type for "pid_t" defined in 5903 /// <sys/types.h>. We need this to compute the correct type for vfork(). 5904 QualType ASTContext::getProcessIDType() const { 5905 return getFromTargetType(Target->getProcessIDType()); 5906 } 5907 5908 //===----------------------------------------------------------------------===// 5909 // Type Operators 5910 //===----------------------------------------------------------------------===// 5911 5912 CanQualType ASTContext::getCanonicalParamType(QualType T) const { 5913 // Push qualifiers into arrays, and then discard any remaining 5914 // qualifiers. 5915 T = getCanonicalType(T); 5916 T = getVariableArrayDecayedType(T); 5917 const Type *Ty = T.getTypePtr(); 5918 QualType Result; 5919 if (isa<ArrayType>(Ty)) { 5920 Result = getArrayDecayedType(QualType(Ty,0)); 5921 } else if (isa<FunctionType>(Ty)) { 5922 Result = getPointerType(QualType(Ty, 0)); 5923 } else { 5924 Result = QualType(Ty, 0); 5925 } 5926 5927 return CanQualType::CreateUnsafe(Result); 5928 } 5929 5930 QualType ASTContext::getUnqualifiedArrayType(QualType type, 5931 Qualifiers &quals) { 5932 SplitQualType splitType = type.getSplitUnqualifiedType(); 5933 5934 // FIXME: getSplitUnqualifiedType() actually walks all the way to 5935 // the unqualified desugared type and then drops it on the floor. 5936 // We then have to strip that sugar back off with 5937 // getUnqualifiedDesugaredType(), which is silly. 5938 const auto *AT = 5939 dyn_cast<ArrayType>(splitType.Ty->getUnqualifiedDesugaredType()); 5940 5941 // If we don't have an array, just use the results in splitType. 5942 if (!AT) { 5943 quals = splitType.Quals; 5944 return QualType(splitType.Ty, 0); 5945 } 5946 5947 // Otherwise, recurse on the array's element type. 5948 QualType elementType = AT->getElementType(); 5949 QualType unqualElementType = getUnqualifiedArrayType(elementType, quals); 5950 5951 // If that didn't change the element type, AT has no qualifiers, so we 5952 // can just use the results in splitType. 5953 if (elementType == unqualElementType) { 5954 assert(quals.empty()); // from the recursive call 5955 quals = splitType.Quals; 5956 return QualType(splitType.Ty, 0); 5957 } 5958 5959 // Otherwise, add in the qualifiers from the outermost type, then 5960 // build the type back up. 5961 quals.addConsistentQualifiers(splitType.Quals); 5962 5963 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) { 5964 return getConstantArrayType(unqualElementType, CAT->getSize(), 5965 CAT->getSizeExpr(), CAT->getSizeModifier(), 0); 5966 } 5967 5968 if (const auto *IAT = dyn_cast<IncompleteArrayType>(AT)) { 5969 return getIncompleteArrayType(unqualElementType, IAT->getSizeModifier(), 0); 5970 } 5971 5972 if (const auto *VAT = dyn_cast<VariableArrayType>(AT)) { 5973 return getVariableArrayType(unqualElementType, 5974 VAT->getSizeExpr(), 5975 VAT->getSizeModifier(), 5976 VAT->getIndexTypeCVRQualifiers(), 5977 VAT->getBracketsRange()); 5978 } 5979 5980 const auto *DSAT = cast<DependentSizedArrayType>(AT); 5981 return getDependentSizedArrayType(unqualElementType, DSAT->getSizeExpr(), 5982 DSAT->getSizeModifier(), 0, 5983 SourceRange()); 5984 } 5985 5986 /// Attempt to unwrap two types that may both be array types with the same bound 5987 /// (or both be array types of unknown bound) for the purpose of comparing the 5988 /// cv-decomposition of two types per C++ [conv.qual]. 5989 /// 5990 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in 5991 /// C++20 [conv.qual], if permitted by the current language mode. 5992 void ASTContext::UnwrapSimilarArrayTypes(QualType &T1, QualType &T2, 5993 bool AllowPiMismatch) { 5994 while (true) { 5995 auto *AT1 = getAsArrayType(T1); 5996 if (!AT1) 5997 return; 5998 5999 auto *AT2 = getAsArrayType(T2); 6000 if (!AT2) 6001 return; 6002 6003 // If we don't have two array types with the same constant bound nor two 6004 // incomplete array types, we've unwrapped everything we can. 6005 // C++20 also permits one type to be a constant array type and the other 6006 // to be an incomplete array type. 6007 // FIXME: Consider also unwrapping array of unknown bound and VLA. 6008 if (auto *CAT1 = dyn_cast<ConstantArrayType>(AT1)) { 6009 auto *CAT2 = dyn_cast<ConstantArrayType>(AT2); 6010 if (!((CAT2 && CAT1->getSize() == CAT2->getSize()) || 6011 (AllowPiMismatch && getLangOpts().CPlusPlus20 && 6012 isa<IncompleteArrayType>(AT2)))) 6013 return; 6014 } else if (isa<IncompleteArrayType>(AT1)) { 6015 if (!(isa<IncompleteArrayType>(AT2) || 6016 (AllowPiMismatch && getLangOpts().CPlusPlus20 && 6017 isa<ConstantArrayType>(AT2)))) 6018 return; 6019 } else { 6020 return; 6021 } 6022 6023 T1 = AT1->getElementType(); 6024 T2 = AT2->getElementType(); 6025 } 6026 } 6027 6028 /// Attempt to unwrap two types that may be similar (C++ [conv.qual]). 6029 /// 6030 /// If T1 and T2 are both pointer types of the same kind, or both array types 6031 /// with the same bound, unwraps layers from T1 and T2 until a pointer type is 6032 /// unwrapped. Top-level qualifiers on T1 and T2 are ignored. 6033 /// 6034 /// This function will typically be called in a loop that successively 6035 /// "unwraps" pointer and pointer-to-member types to compare them at each 6036 /// level. 6037 /// 6038 /// \param AllowPiMismatch Allow the Pi1 and Pi2 to differ as described in 6039 /// C++20 [conv.qual], if permitted by the current language mode. 6040 /// 6041 /// \return \c true if a pointer type was unwrapped, \c false if we reached a 6042 /// pair of types that can't be unwrapped further. 6043 bool ASTContext::UnwrapSimilarTypes(QualType &T1, QualType &T2, 6044 bool AllowPiMismatch) { 6045 UnwrapSimilarArrayTypes(T1, T2, AllowPiMismatch); 6046 6047 const auto *T1PtrType = T1->getAs<PointerType>(); 6048 const auto *T2PtrType = T2->getAs<PointerType>(); 6049 if (T1PtrType && T2PtrType) { 6050 T1 = T1PtrType->getPointeeType(); 6051 T2 = T2PtrType->getPointeeType(); 6052 return true; 6053 } 6054 6055 const auto *T1MPType = T1->getAs<MemberPointerType>(); 6056 const auto *T2MPType = T2->getAs<MemberPointerType>(); 6057 if (T1MPType && T2MPType && 6058 hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0), 6059 QualType(T2MPType->getClass(), 0))) { 6060 T1 = T1MPType->getPointeeType(); 6061 T2 = T2MPType->getPointeeType(); 6062 return true; 6063 } 6064 6065 if (getLangOpts().ObjC) { 6066 const auto *T1OPType = T1->getAs<ObjCObjectPointerType>(); 6067 const auto *T2OPType = T2->getAs<ObjCObjectPointerType>(); 6068 if (T1OPType && T2OPType) { 6069 T1 = T1OPType->getPointeeType(); 6070 T2 = T2OPType->getPointeeType(); 6071 return true; 6072 } 6073 } 6074 6075 // FIXME: Block pointers, too? 6076 6077 return false; 6078 } 6079 6080 bool ASTContext::hasSimilarType(QualType T1, QualType T2) { 6081 while (true) { 6082 Qualifiers Quals; 6083 T1 = getUnqualifiedArrayType(T1, Quals); 6084 T2 = getUnqualifiedArrayType(T2, Quals); 6085 if (hasSameType(T1, T2)) 6086 return true; 6087 if (!UnwrapSimilarTypes(T1, T2)) 6088 return false; 6089 } 6090 } 6091 6092 bool ASTContext::hasCvrSimilarType(QualType T1, QualType T2) { 6093 while (true) { 6094 Qualifiers Quals1, Quals2; 6095 T1 = getUnqualifiedArrayType(T1, Quals1); 6096 T2 = getUnqualifiedArrayType(T2, Quals2); 6097 6098 Quals1.removeCVRQualifiers(); 6099 Quals2.removeCVRQualifiers(); 6100 if (Quals1 != Quals2) 6101 return false; 6102 6103 if (hasSameType(T1, T2)) 6104 return true; 6105 6106 if (!UnwrapSimilarTypes(T1, T2, /*AllowPiMismatch*/ false)) 6107 return false; 6108 } 6109 } 6110 6111 DeclarationNameInfo 6112 ASTContext::getNameForTemplate(TemplateName Name, 6113 SourceLocation NameLoc) const { 6114 switch (Name.getKind()) { 6115 case TemplateName::QualifiedTemplate: 6116 case TemplateName::Template: 6117 // DNInfo work in progress: CHECKME: what about DNLoc? 6118 return DeclarationNameInfo(Name.getAsTemplateDecl()->getDeclName(), 6119 NameLoc); 6120 6121 case TemplateName::OverloadedTemplate: { 6122 OverloadedTemplateStorage *Storage = Name.getAsOverloadedTemplate(); 6123 // DNInfo work in progress: CHECKME: what about DNLoc? 6124 return DeclarationNameInfo((*Storage->begin())->getDeclName(), NameLoc); 6125 } 6126 6127 case TemplateName::AssumedTemplate: { 6128 AssumedTemplateStorage *Storage = Name.getAsAssumedTemplateName(); 6129 return DeclarationNameInfo(Storage->getDeclName(), NameLoc); 6130 } 6131 6132 case TemplateName::DependentTemplate: { 6133 DependentTemplateName *DTN = Name.getAsDependentTemplateName(); 6134 DeclarationName DName; 6135 if (DTN->isIdentifier()) { 6136 DName = DeclarationNames.getIdentifier(DTN->getIdentifier()); 6137 return DeclarationNameInfo(DName, NameLoc); 6138 } else { 6139 DName = DeclarationNames.getCXXOperatorName(DTN->getOperator()); 6140 // DNInfo work in progress: FIXME: source locations? 6141 DeclarationNameLoc DNLoc = 6142 DeclarationNameLoc::makeCXXOperatorNameLoc(SourceRange()); 6143 return DeclarationNameInfo(DName, NameLoc, DNLoc); 6144 } 6145 } 6146 6147 case TemplateName::SubstTemplateTemplateParm: { 6148 SubstTemplateTemplateParmStorage *subst 6149 = Name.getAsSubstTemplateTemplateParm(); 6150 return DeclarationNameInfo(subst->getParameter()->getDeclName(), 6151 NameLoc); 6152 } 6153 6154 case TemplateName::SubstTemplateTemplateParmPack: { 6155 SubstTemplateTemplateParmPackStorage *subst 6156 = Name.getAsSubstTemplateTemplateParmPack(); 6157 return DeclarationNameInfo(subst->getParameterPack()->getDeclName(), 6158 NameLoc); 6159 } 6160 case TemplateName::UsingTemplate: 6161 return DeclarationNameInfo(Name.getAsUsingShadowDecl()->getDeclName(), 6162 NameLoc); 6163 } 6164 6165 llvm_unreachable("bad template name kind!"); 6166 } 6167 6168 TemplateName 6169 ASTContext::getCanonicalTemplateName(const TemplateName &Name) const { 6170 switch (Name.getKind()) { 6171 case TemplateName::UsingTemplate: 6172 case TemplateName::QualifiedTemplate: 6173 case TemplateName::Template: { 6174 TemplateDecl *Template = Name.getAsTemplateDecl(); 6175 if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(Template)) 6176 Template = getCanonicalTemplateTemplateParmDecl(TTP); 6177 6178 // The canonical template name is the canonical template declaration. 6179 return TemplateName(cast<TemplateDecl>(Template->getCanonicalDecl())); 6180 } 6181 6182 case TemplateName::OverloadedTemplate: 6183 case TemplateName::AssumedTemplate: 6184 llvm_unreachable("cannot canonicalize unresolved template"); 6185 6186 case TemplateName::DependentTemplate: { 6187 DependentTemplateName *DTN = Name.getAsDependentTemplateName(); 6188 assert(DTN && "Non-dependent template names must refer to template decls."); 6189 return DTN->CanonicalTemplateName; 6190 } 6191 6192 case TemplateName::SubstTemplateTemplateParm: { 6193 SubstTemplateTemplateParmStorage *subst 6194 = Name.getAsSubstTemplateTemplateParm(); 6195 return getCanonicalTemplateName(subst->getReplacement()); 6196 } 6197 6198 case TemplateName::SubstTemplateTemplateParmPack: { 6199 SubstTemplateTemplateParmPackStorage *subst 6200 = Name.getAsSubstTemplateTemplateParmPack(); 6201 TemplateTemplateParmDecl *canonParameter 6202 = getCanonicalTemplateTemplateParmDecl(subst->getParameterPack()); 6203 TemplateArgument canonArgPack 6204 = getCanonicalTemplateArgument(subst->getArgumentPack()); 6205 return getSubstTemplateTemplateParmPack(canonParameter, canonArgPack); 6206 } 6207 } 6208 6209 llvm_unreachable("bad template name!"); 6210 } 6211 6212 bool ASTContext::hasSameTemplateName(const TemplateName &X, 6213 const TemplateName &Y) const { 6214 return getCanonicalTemplateName(X).getAsVoidPointer() == 6215 getCanonicalTemplateName(Y).getAsVoidPointer(); 6216 } 6217 6218 bool ASTContext::isSameTemplateParameter(const NamedDecl *X, 6219 const NamedDecl *Y) { 6220 if (X->getKind() != Y->getKind()) 6221 return false; 6222 6223 if (auto *TX = dyn_cast<TemplateTypeParmDecl>(X)) { 6224 auto *TY = cast<TemplateTypeParmDecl>(Y); 6225 if (TX->isParameterPack() != TY->isParameterPack()) 6226 return false; 6227 if (TX->hasTypeConstraint() != TY->hasTypeConstraint()) 6228 return false; 6229 const TypeConstraint *TXTC = TX->getTypeConstraint(); 6230 const TypeConstraint *TYTC = TY->getTypeConstraint(); 6231 if (!TXTC != !TYTC) 6232 return false; 6233 if (TXTC && TYTC) { 6234 auto *NCX = TXTC->getNamedConcept(); 6235 auto *NCY = TYTC->getNamedConcept(); 6236 if (!NCX || !NCY || !isSameEntity(NCX, NCY)) 6237 return false; 6238 if (TXTC->hasExplicitTemplateArgs() != TYTC->hasExplicitTemplateArgs()) 6239 return false; 6240 if (TXTC->hasExplicitTemplateArgs()) { 6241 auto *TXTCArgs = TXTC->getTemplateArgsAsWritten(); 6242 auto *TYTCArgs = TYTC->getTemplateArgsAsWritten(); 6243 if (TXTCArgs->NumTemplateArgs != TYTCArgs->NumTemplateArgs) 6244 return false; 6245 llvm::FoldingSetNodeID XID, YID; 6246 for (auto &ArgLoc : TXTCArgs->arguments()) 6247 ArgLoc.getArgument().Profile(XID, X->getASTContext()); 6248 for (auto &ArgLoc : TYTCArgs->arguments()) 6249 ArgLoc.getArgument().Profile(YID, Y->getASTContext()); 6250 if (XID != YID) 6251 return false; 6252 } 6253 } 6254 return true; 6255 } 6256 6257 if (auto *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) { 6258 auto *TY = cast<NonTypeTemplateParmDecl>(Y); 6259 return TX->isParameterPack() == TY->isParameterPack() && 6260 TX->getASTContext().hasSameType(TX->getType(), TY->getType()); 6261 } 6262 6263 auto *TX = cast<TemplateTemplateParmDecl>(X); 6264 auto *TY = cast<TemplateTemplateParmDecl>(Y); 6265 return TX->isParameterPack() == TY->isParameterPack() && 6266 isSameTemplateParameterList(TX->getTemplateParameters(), 6267 TY->getTemplateParameters()); 6268 } 6269 6270 bool ASTContext::isSameTemplateParameterList(const TemplateParameterList *X, 6271 const TemplateParameterList *Y) { 6272 if (X->size() != Y->size()) 6273 return false; 6274 6275 for (unsigned I = 0, N = X->size(); I != N; ++I) 6276 if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I))) 6277 return false; 6278 6279 const Expr *XRC = X->getRequiresClause(); 6280 const Expr *YRC = Y->getRequiresClause(); 6281 if (!XRC != !YRC) 6282 return false; 6283 if (XRC) { 6284 llvm::FoldingSetNodeID XRCID, YRCID; 6285 XRC->Profile(XRCID, *this, /*Canonical=*/true); 6286 YRC->Profile(YRCID, *this, /*Canonical=*/true); 6287 if (XRCID != YRCID) 6288 return false; 6289 } 6290 6291 return true; 6292 } 6293 6294 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) { 6295 if (auto *NS = X->getAsNamespace()) 6296 return NS; 6297 if (auto *NAS = X->getAsNamespaceAlias()) 6298 return NAS->getNamespace(); 6299 return nullptr; 6300 } 6301 6302 static bool isSameQualifier(const NestedNameSpecifier *X, 6303 const NestedNameSpecifier *Y) { 6304 if (auto *NSX = getNamespace(X)) { 6305 auto *NSY = getNamespace(Y); 6306 if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl()) 6307 return false; 6308 } else if (X->getKind() != Y->getKind()) 6309 return false; 6310 6311 // FIXME: For namespaces and types, we're permitted to check that the entity 6312 // is named via the same tokens. We should probably do so. 6313 switch (X->getKind()) { 6314 case NestedNameSpecifier::Identifier: 6315 if (X->getAsIdentifier() != Y->getAsIdentifier()) 6316 return false; 6317 break; 6318 case NestedNameSpecifier::Namespace: 6319 case NestedNameSpecifier::NamespaceAlias: 6320 // We've already checked that we named the same namespace. 6321 break; 6322 case NestedNameSpecifier::TypeSpec: 6323 case NestedNameSpecifier::TypeSpecWithTemplate: 6324 if (X->getAsType()->getCanonicalTypeInternal() != 6325 Y->getAsType()->getCanonicalTypeInternal()) 6326 return false; 6327 break; 6328 case NestedNameSpecifier::Global: 6329 case NestedNameSpecifier::Super: 6330 return true; 6331 } 6332 6333 // Recurse into earlier portion of NNS, if any. 6334 auto *PX = X->getPrefix(); 6335 auto *PY = Y->getPrefix(); 6336 if (PX && PY) 6337 return isSameQualifier(PX, PY); 6338 return !PX && !PY; 6339 } 6340 6341 /// Determine whether the attributes we can overload on are identical for A and 6342 /// B. Will ignore any overloadable attrs represented in the type of A and B. 6343 static bool hasSameOverloadableAttrs(const FunctionDecl *A, 6344 const FunctionDecl *B) { 6345 // Note that pass_object_size attributes are represented in the function's 6346 // ExtParameterInfo, so we don't need to check them here. 6347 6348 llvm::FoldingSetNodeID Cand1ID, Cand2ID; 6349 auto AEnableIfAttrs = A->specific_attrs<EnableIfAttr>(); 6350 auto BEnableIfAttrs = B->specific_attrs<EnableIfAttr>(); 6351 6352 for (auto Pair : zip_longest(AEnableIfAttrs, BEnableIfAttrs)) { 6353 Optional<EnableIfAttr *> Cand1A = std::get<0>(Pair); 6354 Optional<EnableIfAttr *> Cand2A = std::get<1>(Pair); 6355 6356 // Return false if the number of enable_if attributes is different. 6357 if (!Cand1A || !Cand2A) 6358 return false; 6359 6360 Cand1ID.clear(); 6361 Cand2ID.clear(); 6362 6363 (*Cand1A)->getCond()->Profile(Cand1ID, A->getASTContext(), true); 6364 (*Cand2A)->getCond()->Profile(Cand2ID, B->getASTContext(), true); 6365 6366 // Return false if any of the enable_if expressions of A and B are 6367 // different. 6368 if (Cand1ID != Cand2ID) 6369 return false; 6370 } 6371 return true; 6372 } 6373 6374 bool ASTContext::isSameEntity(const NamedDecl *X, const NamedDecl *Y) { 6375 if (X == Y) 6376 return true; 6377 6378 if (X->getDeclName() != Y->getDeclName()) 6379 return false; 6380 6381 // Must be in the same context. 6382 // 6383 // Note that we can't use DeclContext::Equals here, because the DeclContexts 6384 // could be two different declarations of the same function. (We will fix the 6385 // semantic DC to refer to the primary definition after merging.) 6386 if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()), 6387 cast<Decl>(Y->getDeclContext()->getRedeclContext()))) 6388 return false; 6389 6390 // Two typedefs refer to the same entity if they have the same underlying 6391 // type. 6392 if (const auto *TypedefX = dyn_cast<TypedefNameDecl>(X)) 6393 if (const auto *TypedefY = dyn_cast<TypedefNameDecl>(Y)) 6394 return hasSameType(TypedefX->getUnderlyingType(), 6395 TypedefY->getUnderlyingType()); 6396 6397 // Must have the same kind. 6398 if (X->getKind() != Y->getKind()) 6399 return false; 6400 6401 // Objective-C classes and protocols with the same name always match. 6402 if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X)) 6403 return true; 6404 6405 if (isa<ClassTemplateSpecializationDecl>(X)) { 6406 // No need to handle these here: we merge them when adding them to the 6407 // template. 6408 return false; 6409 } 6410 6411 // Compatible tags match. 6412 if (const auto *TagX = dyn_cast<TagDecl>(X)) { 6413 const auto *TagY = cast<TagDecl>(Y); 6414 return (TagX->getTagKind() == TagY->getTagKind()) || 6415 ((TagX->getTagKind() == TTK_Struct || 6416 TagX->getTagKind() == TTK_Class || 6417 TagX->getTagKind() == TTK_Interface) && 6418 (TagY->getTagKind() == TTK_Struct || 6419 TagY->getTagKind() == TTK_Class || 6420 TagY->getTagKind() == TTK_Interface)); 6421 } 6422 6423 // Functions with the same type and linkage match. 6424 // FIXME: This needs to cope with merging of prototyped/non-prototyped 6425 // functions, etc. 6426 if (const auto *FuncX = dyn_cast<FunctionDecl>(X)) { 6427 const auto *FuncY = cast<FunctionDecl>(Y); 6428 if (const auto *CtorX = dyn_cast<CXXConstructorDecl>(X)) { 6429 const auto *CtorY = cast<CXXConstructorDecl>(Y); 6430 if (CtorX->getInheritedConstructor() && 6431 !isSameEntity(CtorX->getInheritedConstructor().getConstructor(), 6432 CtorY->getInheritedConstructor().getConstructor())) 6433 return false; 6434 } 6435 6436 if (FuncX->isMultiVersion() != FuncY->isMultiVersion()) 6437 return false; 6438 6439 // Multiversioned functions with different feature strings are represented 6440 // as separate declarations. 6441 if (FuncX->isMultiVersion()) { 6442 const auto *TAX = FuncX->getAttr<TargetAttr>(); 6443 const auto *TAY = FuncY->getAttr<TargetAttr>(); 6444 assert(TAX && TAY && "Multiversion Function without target attribute"); 6445 6446 if (TAX->getFeaturesStr() != TAY->getFeaturesStr()) 6447 return false; 6448 } 6449 6450 const Expr *XRC = FuncX->getTrailingRequiresClause(); 6451 const Expr *YRC = FuncY->getTrailingRequiresClause(); 6452 if (!XRC != !YRC) 6453 return false; 6454 if (XRC) { 6455 llvm::FoldingSetNodeID XRCID, YRCID; 6456 XRC->Profile(XRCID, *this, /*Canonical=*/true); 6457 YRC->Profile(YRCID, *this, /*Canonical=*/true); 6458 if (XRCID != YRCID) 6459 return false; 6460 } 6461 6462 auto GetTypeAsWritten = [](const FunctionDecl *FD) { 6463 // Map to the first declaration that we've already merged into this one. 6464 // The TSI of redeclarations might not match (due to calling conventions 6465 // being inherited onto the type but not the TSI), but the TSI type of 6466 // the first declaration of the function should match across modules. 6467 FD = FD->getCanonicalDecl(); 6468 return FD->getTypeSourceInfo() ? FD->getTypeSourceInfo()->getType() 6469 : FD->getType(); 6470 }; 6471 QualType XT = GetTypeAsWritten(FuncX), YT = GetTypeAsWritten(FuncY); 6472 if (!hasSameType(XT, YT)) { 6473 // We can get functions with different types on the redecl chain in C++17 6474 // if they have differing exception specifications and at least one of 6475 // the excpetion specs is unresolved. 6476 auto *XFPT = XT->getAs<FunctionProtoType>(); 6477 auto *YFPT = YT->getAs<FunctionProtoType>(); 6478 if (getLangOpts().CPlusPlus17 && XFPT && YFPT && 6479 (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) || 6480 isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) && 6481 // FIXME: We could make isSameEntity const after we make 6482 // hasSameFunctionTypeIgnoringExceptionSpec const. 6483 hasSameFunctionTypeIgnoringExceptionSpec(XT, YT)) 6484 return true; 6485 return false; 6486 } 6487 6488 return FuncX->getLinkageInternal() == FuncY->getLinkageInternal() && 6489 hasSameOverloadableAttrs(FuncX, FuncY); 6490 } 6491 6492 // Variables with the same type and linkage match. 6493 if (const auto *VarX = dyn_cast<VarDecl>(X)) { 6494 const auto *VarY = cast<VarDecl>(Y); 6495 if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) { 6496 if (hasSameType(VarX->getType(), VarY->getType())) 6497 return true; 6498 6499 // We can get decls with different types on the redecl chain. Eg. 6500 // template <typename T> struct S { static T Var[]; }; // #1 6501 // template <typename T> T S<T>::Var[sizeof(T)]; // #2 6502 // Only? happens when completing an incomplete array type. In this case 6503 // when comparing #1 and #2 we should go through their element type. 6504 const ArrayType *VarXTy = getAsArrayType(VarX->getType()); 6505 const ArrayType *VarYTy = getAsArrayType(VarY->getType()); 6506 if (!VarXTy || !VarYTy) 6507 return false; 6508 if (VarXTy->isIncompleteArrayType() || VarYTy->isIncompleteArrayType()) 6509 return hasSameType(VarXTy->getElementType(), VarYTy->getElementType()); 6510 } 6511 return false; 6512 } 6513 6514 // Namespaces with the same name and inlinedness match. 6515 if (const auto *NamespaceX = dyn_cast<NamespaceDecl>(X)) { 6516 const auto *NamespaceY = cast<NamespaceDecl>(Y); 6517 return NamespaceX->isInline() == NamespaceY->isInline(); 6518 } 6519 6520 // Identical template names and kinds match if their template parameter lists 6521 // and patterns match. 6522 if (const auto *TemplateX = dyn_cast<TemplateDecl>(X)) { 6523 const auto *TemplateY = cast<TemplateDecl>(Y); 6524 return isSameEntity(TemplateX->getTemplatedDecl(), 6525 TemplateY->getTemplatedDecl()) && 6526 isSameTemplateParameterList(TemplateX->getTemplateParameters(), 6527 TemplateY->getTemplateParameters()); 6528 } 6529 6530 // Fields with the same name and the same type match. 6531 if (const auto *FDX = dyn_cast<FieldDecl>(X)) { 6532 const auto *FDY = cast<FieldDecl>(Y); 6533 // FIXME: Also check the bitwidth is odr-equivalent, if any. 6534 return hasSameType(FDX->getType(), FDY->getType()); 6535 } 6536 6537 // Indirect fields with the same target field match. 6538 if (const auto *IFDX = dyn_cast<IndirectFieldDecl>(X)) { 6539 const auto *IFDY = cast<IndirectFieldDecl>(Y); 6540 return IFDX->getAnonField()->getCanonicalDecl() == 6541 IFDY->getAnonField()->getCanonicalDecl(); 6542 } 6543 6544 // Enumerators with the same name match. 6545 if (isa<EnumConstantDecl>(X)) 6546 // FIXME: Also check the value is odr-equivalent. 6547 return true; 6548 6549 // Using shadow declarations with the same target match. 6550 if (const auto *USX = dyn_cast<UsingShadowDecl>(X)) { 6551 const auto *USY = cast<UsingShadowDecl>(Y); 6552 return USX->getTargetDecl() == USY->getTargetDecl(); 6553 } 6554 6555 // Using declarations with the same qualifier match. (We already know that 6556 // the name matches.) 6557 if (const auto *UX = dyn_cast<UsingDecl>(X)) { 6558 const auto *UY = cast<UsingDecl>(Y); 6559 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 6560 UX->hasTypename() == UY->hasTypename() && 6561 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 6562 } 6563 if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) { 6564 const auto *UY = cast<UnresolvedUsingValueDecl>(Y); 6565 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 6566 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 6567 } 6568 if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) { 6569 return isSameQualifier( 6570 UX->getQualifier(), 6571 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); 6572 } 6573 6574 // Using-pack declarations are only created by instantiation, and match if 6575 // they're instantiated from matching UnresolvedUsing...Decls. 6576 if (const auto *UX = dyn_cast<UsingPackDecl>(X)) { 6577 return declaresSameEntity( 6578 UX->getInstantiatedFromUsingDecl(), 6579 cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl()); 6580 } 6581 6582 // Namespace alias definitions with the same target match. 6583 if (const auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) { 6584 const auto *NAY = cast<NamespaceAliasDecl>(Y); 6585 return NAX->getNamespace()->Equals(NAY->getNamespace()); 6586 } 6587 6588 return false; 6589 } 6590 6591 TemplateArgument 6592 ASTContext::getCanonicalTemplateArgument(const TemplateArgument &Arg) const { 6593 switch (Arg.getKind()) { 6594 case TemplateArgument::Null: 6595 return Arg; 6596 6597 case TemplateArgument::Expression: 6598 return Arg; 6599 6600 case TemplateArgument::Declaration: { 6601 auto *D = cast<ValueDecl>(Arg.getAsDecl()->getCanonicalDecl()); 6602 return TemplateArgument(D, Arg.getParamTypeForDecl()); 6603 } 6604 6605 case TemplateArgument::NullPtr: 6606 return TemplateArgument(getCanonicalType(Arg.getNullPtrType()), 6607 /*isNullPtr*/true); 6608 6609 case TemplateArgument::Template: 6610 return TemplateArgument(getCanonicalTemplateName(Arg.getAsTemplate())); 6611 6612 case TemplateArgument::TemplateExpansion: 6613 return TemplateArgument(getCanonicalTemplateName( 6614 Arg.getAsTemplateOrTemplatePattern()), 6615 Arg.getNumTemplateExpansions()); 6616 6617 case TemplateArgument::Integral: 6618 return TemplateArgument(Arg, getCanonicalType(Arg.getIntegralType())); 6619 6620 case TemplateArgument::Type: 6621 return TemplateArgument(getCanonicalType(Arg.getAsType())); 6622 6623 case TemplateArgument::Pack: { 6624 if (Arg.pack_size() == 0) 6625 return Arg; 6626 6627 auto *CanonArgs = new (*this) TemplateArgument[Arg.pack_size()]; 6628 unsigned Idx = 0; 6629 for (TemplateArgument::pack_iterator A = Arg.pack_begin(), 6630 AEnd = Arg.pack_end(); 6631 A != AEnd; (void)++A, ++Idx) 6632 CanonArgs[Idx] = getCanonicalTemplateArgument(*A); 6633 6634 return TemplateArgument(llvm::makeArrayRef(CanonArgs, Arg.pack_size())); 6635 } 6636 } 6637 6638 // Silence GCC warning 6639 llvm_unreachable("Unhandled template argument kind"); 6640 } 6641 6642 NestedNameSpecifier * 6643 ASTContext::getCanonicalNestedNameSpecifier(NestedNameSpecifier *NNS) const { 6644 if (!NNS) 6645 return nullptr; 6646 6647 switch (NNS->getKind()) { 6648 case NestedNameSpecifier::Identifier: 6649 // Canonicalize the prefix but keep the identifier the same. 6650 return NestedNameSpecifier::Create(*this, 6651 getCanonicalNestedNameSpecifier(NNS->getPrefix()), 6652 NNS->getAsIdentifier()); 6653 6654 case NestedNameSpecifier::Namespace: 6655 // A namespace is canonical; build a nested-name-specifier with 6656 // this namespace and no prefix. 6657 return NestedNameSpecifier::Create(*this, nullptr, 6658 NNS->getAsNamespace()->getOriginalNamespace()); 6659 6660 case NestedNameSpecifier::NamespaceAlias: 6661 // A namespace is canonical; build a nested-name-specifier with 6662 // this namespace and no prefix. 6663 return NestedNameSpecifier::Create(*this, nullptr, 6664 NNS->getAsNamespaceAlias()->getNamespace() 6665 ->getOriginalNamespace()); 6666 6667 // The difference between TypeSpec and TypeSpecWithTemplate is that the 6668 // latter will have the 'template' keyword when printed. 6669 case NestedNameSpecifier::TypeSpec: 6670 case NestedNameSpecifier::TypeSpecWithTemplate: { 6671 const Type *T = getCanonicalType(NNS->getAsType()); 6672 6673 // If we have some kind of dependent-named type (e.g., "typename T::type"), 6674 // break it apart into its prefix and identifier, then reconsititute those 6675 // as the canonical nested-name-specifier. This is required to canonicalize 6676 // a dependent nested-name-specifier involving typedefs of dependent-name 6677 // types, e.g., 6678 // typedef typename T::type T1; 6679 // typedef typename T1::type T2; 6680 if (const auto *DNT = T->getAs<DependentNameType>()) 6681 return NestedNameSpecifier::Create( 6682 *this, DNT->getQualifier(), 6683 const_cast<IdentifierInfo *>(DNT->getIdentifier())); 6684 if (const auto *DTST = T->getAs<DependentTemplateSpecializationType>()) 6685 return NestedNameSpecifier::Create(*this, DTST->getQualifier(), true, 6686 const_cast<Type *>(T)); 6687 6688 // TODO: Set 'Template' parameter to true for other template types. 6689 return NestedNameSpecifier::Create(*this, nullptr, false, 6690 const_cast<Type *>(T)); 6691 } 6692 6693 case NestedNameSpecifier::Global: 6694 case NestedNameSpecifier::Super: 6695 // The global specifier and __super specifer are canonical and unique. 6696 return NNS; 6697 } 6698 6699 llvm_unreachable("Invalid NestedNameSpecifier::Kind!"); 6700 } 6701 6702 const ArrayType *ASTContext::getAsArrayType(QualType T) const { 6703 // Handle the non-qualified case efficiently. 6704 if (!T.hasLocalQualifiers()) { 6705 // Handle the common positive case fast. 6706 if (const auto *AT = dyn_cast<ArrayType>(T)) 6707 return AT; 6708 } 6709 6710 // Handle the common negative case fast. 6711 if (!isa<ArrayType>(T.getCanonicalType())) 6712 return nullptr; 6713 6714 // Apply any qualifiers from the array type to the element type. This 6715 // implements C99 6.7.3p8: "If the specification of an array type includes 6716 // any type qualifiers, the element type is so qualified, not the array type." 6717 6718 // If we get here, we either have type qualifiers on the type, or we have 6719 // sugar such as a typedef in the way. If we have type qualifiers on the type 6720 // we must propagate them down into the element type. 6721 6722 SplitQualType split = T.getSplitDesugaredType(); 6723 Qualifiers qs = split.Quals; 6724 6725 // If we have a simple case, just return now. 6726 const auto *ATy = dyn_cast<ArrayType>(split.Ty); 6727 if (!ATy || qs.empty()) 6728 return ATy; 6729 6730 // Otherwise, we have an array and we have qualifiers on it. Push the 6731 // qualifiers into the array element type and return a new array type. 6732 QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs); 6733 6734 if (const auto *CAT = dyn_cast<ConstantArrayType>(ATy)) 6735 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(), 6736 CAT->getSizeExpr(), 6737 CAT->getSizeModifier(), 6738 CAT->getIndexTypeCVRQualifiers())); 6739 if (const auto *IAT = dyn_cast<IncompleteArrayType>(ATy)) 6740 return cast<ArrayType>(getIncompleteArrayType(NewEltTy, 6741 IAT->getSizeModifier(), 6742 IAT->getIndexTypeCVRQualifiers())); 6743 6744 if (const auto *DSAT = dyn_cast<DependentSizedArrayType>(ATy)) 6745 return cast<ArrayType>( 6746 getDependentSizedArrayType(NewEltTy, 6747 DSAT->getSizeExpr(), 6748 DSAT->getSizeModifier(), 6749 DSAT->getIndexTypeCVRQualifiers(), 6750 DSAT->getBracketsRange())); 6751 6752 const auto *VAT = cast<VariableArrayType>(ATy); 6753 return cast<ArrayType>(getVariableArrayType(NewEltTy, 6754 VAT->getSizeExpr(), 6755 VAT->getSizeModifier(), 6756 VAT->getIndexTypeCVRQualifiers(), 6757 VAT->getBracketsRange())); 6758 } 6759 6760 QualType ASTContext::getAdjustedParameterType(QualType T) const { 6761 if (T->isArrayType() || T->isFunctionType()) 6762 return getDecayedType(T); 6763 return T; 6764 } 6765 6766 QualType ASTContext::getSignatureParameterType(QualType T) const { 6767 T = getVariableArrayDecayedType(T); 6768 T = getAdjustedParameterType(T); 6769 return T.getUnqualifiedType(); 6770 } 6771 6772 QualType ASTContext::getExceptionObjectType(QualType T) const { 6773 // C++ [except.throw]p3: 6774 // A throw-expression initializes a temporary object, called the exception 6775 // object, the type of which is determined by removing any top-level 6776 // cv-qualifiers from the static type of the operand of throw and adjusting 6777 // the type from "array of T" or "function returning T" to "pointer to T" 6778 // or "pointer to function returning T", [...] 6779 T = getVariableArrayDecayedType(T); 6780 if (T->isArrayType() || T->isFunctionType()) 6781 T = getDecayedType(T); 6782 return T.getUnqualifiedType(); 6783 } 6784 6785 /// getArrayDecayedType - Return the properly qualified result of decaying the 6786 /// specified array type to a pointer. This operation is non-trivial when 6787 /// handling typedefs etc. The canonical type of "T" must be an array type, 6788 /// this returns a pointer to a properly qualified element of the array. 6789 /// 6790 /// See C99 6.7.5.3p7 and C99 6.3.2.1p3. 6791 QualType ASTContext::getArrayDecayedType(QualType Ty) const { 6792 // Get the element type with 'getAsArrayType' so that we don't lose any 6793 // typedefs in the element type of the array. This also handles propagation 6794 // of type qualifiers from the array type into the element type if present 6795 // (C99 6.7.3p8). 6796 const ArrayType *PrettyArrayType = getAsArrayType(Ty); 6797 assert(PrettyArrayType && "Not an array type!"); 6798 6799 QualType PtrTy = getPointerType(PrettyArrayType->getElementType()); 6800 6801 // int x[restrict 4] -> int *restrict 6802 QualType Result = getQualifiedType(PtrTy, 6803 PrettyArrayType->getIndexTypeQualifiers()); 6804 6805 // int x[_Nullable] -> int * _Nullable 6806 if (auto Nullability = Ty->getNullability(*this)) { 6807 Result = const_cast<ASTContext *>(this)->getAttributedType( 6808 AttributedType::getNullabilityAttrKind(*Nullability), Result, Result); 6809 } 6810 return Result; 6811 } 6812 6813 QualType ASTContext::getBaseElementType(const ArrayType *array) const { 6814 return getBaseElementType(array->getElementType()); 6815 } 6816 6817 QualType ASTContext::getBaseElementType(QualType type) const { 6818 Qualifiers qs; 6819 while (true) { 6820 SplitQualType split = type.getSplitDesugaredType(); 6821 const ArrayType *array = split.Ty->getAsArrayTypeUnsafe(); 6822 if (!array) break; 6823 6824 type = array->getElementType(); 6825 qs.addConsistentQualifiers(split.Quals); 6826 } 6827 6828 return getQualifiedType(type, qs); 6829 } 6830 6831 /// getConstantArrayElementCount - Returns number of constant array elements. 6832 uint64_t 6833 ASTContext::getConstantArrayElementCount(const ConstantArrayType *CA) const { 6834 uint64_t ElementCount = 1; 6835 do { 6836 ElementCount *= CA->getSize().getZExtValue(); 6837 CA = dyn_cast_or_null<ConstantArrayType>( 6838 CA->getElementType()->getAsArrayTypeUnsafe()); 6839 } while (CA); 6840 return ElementCount; 6841 } 6842 6843 /// getFloatingRank - Return a relative rank for floating point types. 6844 /// This routine will assert if passed a built-in type that isn't a float. 6845 static FloatingRank getFloatingRank(QualType T) { 6846 if (const auto *CT = T->getAs<ComplexType>()) 6847 return getFloatingRank(CT->getElementType()); 6848 6849 switch (T->castAs<BuiltinType>()->getKind()) { 6850 default: llvm_unreachable("getFloatingRank(): not a floating type"); 6851 case BuiltinType::Float16: return Float16Rank; 6852 case BuiltinType::Half: return HalfRank; 6853 case BuiltinType::Float: return FloatRank; 6854 case BuiltinType::Double: return DoubleRank; 6855 case BuiltinType::LongDouble: return LongDoubleRank; 6856 case BuiltinType::Float128: return Float128Rank; 6857 case BuiltinType::BFloat16: return BFloat16Rank; 6858 case BuiltinType::Ibm128: return Ibm128Rank; 6859 } 6860 } 6861 6862 /// getFloatingTypeOrder - Compare the rank of the two specified floating 6863 /// point types, ignoring the domain of the type (i.e. 'double' == 6864 /// '_Complex double'). If LHS > RHS, return 1. If LHS == RHS, return 0. If 6865 /// LHS < RHS, return -1. 6866 int ASTContext::getFloatingTypeOrder(QualType LHS, QualType RHS) const { 6867 FloatingRank LHSR = getFloatingRank(LHS); 6868 FloatingRank RHSR = getFloatingRank(RHS); 6869 6870 if (LHSR == RHSR) 6871 return 0; 6872 if (LHSR > RHSR) 6873 return 1; 6874 return -1; 6875 } 6876 6877 int ASTContext::getFloatingTypeSemanticOrder(QualType LHS, QualType RHS) const { 6878 if (&getFloatTypeSemantics(LHS) == &getFloatTypeSemantics(RHS)) 6879 return 0; 6880 return getFloatingTypeOrder(LHS, RHS); 6881 } 6882 6883 /// getIntegerRank - Return an integer conversion rank (C99 6.3.1.1p1). This 6884 /// routine will assert if passed a built-in type that isn't an integer or enum, 6885 /// or if it is not canonicalized. 6886 unsigned ASTContext::getIntegerRank(const Type *T) const { 6887 assert(T->isCanonicalUnqualified() && "T should be canonicalized"); 6888 6889 // Results in this 'losing' to any type of the same size, but winning if 6890 // larger. 6891 if (const auto *EIT = dyn_cast<BitIntType>(T)) 6892 return 0 + (EIT->getNumBits() << 3); 6893 6894 switch (cast<BuiltinType>(T)->getKind()) { 6895 default: llvm_unreachable("getIntegerRank(): not a built-in integer"); 6896 case BuiltinType::Bool: 6897 return 1 + (getIntWidth(BoolTy) << 3); 6898 case BuiltinType::Char_S: 6899 case BuiltinType::Char_U: 6900 case BuiltinType::SChar: 6901 case BuiltinType::UChar: 6902 return 2 + (getIntWidth(CharTy) << 3); 6903 case BuiltinType::Short: 6904 case BuiltinType::UShort: 6905 return 3 + (getIntWidth(ShortTy) << 3); 6906 case BuiltinType::Int: 6907 case BuiltinType::UInt: 6908 return 4 + (getIntWidth(IntTy) << 3); 6909 case BuiltinType::Long: 6910 case BuiltinType::ULong: 6911 return 5 + (getIntWidth(LongTy) << 3); 6912 case BuiltinType::LongLong: 6913 case BuiltinType::ULongLong: 6914 return 6 + (getIntWidth(LongLongTy) << 3); 6915 case BuiltinType::Int128: 6916 case BuiltinType::UInt128: 6917 return 7 + (getIntWidth(Int128Ty) << 3); 6918 } 6919 } 6920 6921 /// Whether this is a promotable bitfield reference according 6922 /// to C99 6.3.1.1p2, bullet 2 (and GCC extensions). 6923 /// 6924 /// \returns the type this bit-field will promote to, or NULL if no 6925 /// promotion occurs. 6926 QualType ASTContext::isPromotableBitField(Expr *E) const { 6927 if (E->isTypeDependent() || E->isValueDependent()) 6928 return {}; 6929 6930 // C++ [conv.prom]p5: 6931 // If the bit-field has an enumerated type, it is treated as any other 6932 // value of that type for promotion purposes. 6933 if (getLangOpts().CPlusPlus && E->getType()->isEnumeralType()) 6934 return {}; 6935 6936 // FIXME: We should not do this unless E->refersToBitField() is true. This 6937 // matters in C where getSourceBitField() will find bit-fields for various 6938 // cases where the source expression is not a bit-field designator. 6939 6940 FieldDecl *Field = E->getSourceBitField(); // FIXME: conditional bit-fields? 6941 if (!Field) 6942 return {}; 6943 6944 QualType FT = Field->getType(); 6945 6946 uint64_t BitWidth = Field->getBitWidthValue(*this); 6947 uint64_t IntSize = getTypeSize(IntTy); 6948 // C++ [conv.prom]p5: 6949 // A prvalue for an integral bit-field can be converted to a prvalue of type 6950 // int if int can represent all the values of the bit-field; otherwise, it 6951 // can be converted to unsigned int if unsigned int can represent all the 6952 // values of the bit-field. If the bit-field is larger yet, no integral 6953 // promotion applies to it. 6954 // C11 6.3.1.1/2: 6955 // [For a bit-field of type _Bool, int, signed int, or unsigned int:] 6956 // If an int can represent all values of the original type (as restricted by 6957 // the width, for a bit-field), the value is converted to an int; otherwise, 6958 // it is converted to an unsigned int. 6959 // 6960 // FIXME: C does not permit promotion of a 'long : 3' bitfield to int. 6961 // We perform that promotion here to match GCC and C++. 6962 // FIXME: C does not permit promotion of an enum bit-field whose rank is 6963 // greater than that of 'int'. We perform that promotion to match GCC. 6964 if (BitWidth < IntSize) 6965 return IntTy; 6966 6967 if (BitWidth == IntSize) 6968 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; 6969 6970 // Bit-fields wider than int are not subject to promotions, and therefore act 6971 // like the base type. GCC has some weird bugs in this area that we 6972 // deliberately do not follow (GCC follows a pre-standard resolution to 6973 // C's DR315 which treats bit-width as being part of the type, and this leaks 6974 // into their semantics in some cases). 6975 return {}; 6976 } 6977 6978 /// getPromotedIntegerType - Returns the type that Promotable will 6979 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable 6980 /// integer type. 6981 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { 6982 assert(!Promotable.isNull()); 6983 assert(Promotable->isPromotableIntegerType()); 6984 if (const auto *ET = Promotable->getAs<EnumType>()) 6985 return ET->getDecl()->getPromotionType(); 6986 6987 if (const auto *BT = Promotable->getAs<BuiltinType>()) { 6988 // C++ [conv.prom]: A prvalue of type char16_t, char32_t, or wchar_t 6989 // (3.9.1) can be converted to a prvalue of the first of the following 6990 // types that can represent all the values of its underlying type: 6991 // int, unsigned int, long int, unsigned long int, long long int, or 6992 // unsigned long long int [...] 6993 // FIXME: Is there some better way to compute this? 6994 if (BT->getKind() == BuiltinType::WChar_S || 6995 BT->getKind() == BuiltinType::WChar_U || 6996 BT->getKind() == BuiltinType::Char8 || 6997 BT->getKind() == BuiltinType::Char16 || 6998 BT->getKind() == BuiltinType::Char32) { 6999 bool FromIsSigned = BT->getKind() == BuiltinType::WChar_S; 7000 uint64_t FromSize = getTypeSize(BT); 7001 QualType PromoteTypes[] = { IntTy, UnsignedIntTy, LongTy, UnsignedLongTy, 7002 LongLongTy, UnsignedLongLongTy }; 7003 for (size_t Idx = 0; Idx < llvm::array_lengthof(PromoteTypes); ++Idx) { 7004 uint64_t ToSize = getTypeSize(PromoteTypes[Idx]); 7005 if (FromSize < ToSize || 7006 (FromSize == ToSize && 7007 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) 7008 return PromoteTypes[Idx]; 7009 } 7010 llvm_unreachable("char type should fit into long long"); 7011 } 7012 } 7013 7014 // At this point, we should have a signed or unsigned integer type. 7015 if (Promotable->isSignedIntegerType()) 7016 return IntTy; 7017 uint64_t PromotableSize = getIntWidth(Promotable); 7018 uint64_t IntSize = getIntWidth(IntTy); 7019 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); 7020 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; 7021 } 7022 7023 /// Recurses in pointer/array types until it finds an objc retainable 7024 /// type and returns its ownership. 7025 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const { 7026 while (!T.isNull()) { 7027 if (T.getObjCLifetime() != Qualifiers::OCL_None) 7028 return T.getObjCLifetime(); 7029 if (T->isArrayType()) 7030 T = getBaseElementType(T); 7031 else if (const auto *PT = T->getAs<PointerType>()) 7032 T = PT->getPointeeType(); 7033 else if (const auto *RT = T->getAs<ReferenceType>()) 7034 T = RT->getPointeeType(); 7035 else 7036 break; 7037 } 7038 7039 return Qualifiers::OCL_None; 7040 } 7041 7042 static const Type *getIntegerTypeForEnum(const EnumType *ET) { 7043 // Incomplete enum types are not treated as integer types. 7044 // FIXME: In C++, enum types are never integer types. 7045 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) 7046 return ET->getDecl()->getIntegerType().getTypePtr(); 7047 return nullptr; 7048 } 7049 7050 /// getIntegerTypeOrder - Returns the highest ranked integer type: 7051 /// C99 6.3.1.8p1. If LHS > RHS, return 1. If LHS == RHS, return 0. If 7052 /// LHS < RHS, return -1. 7053 int ASTContext::getIntegerTypeOrder(QualType LHS, QualType RHS) const { 7054 const Type *LHSC = getCanonicalType(LHS).getTypePtr(); 7055 const Type *RHSC = getCanonicalType(RHS).getTypePtr(); 7056 7057 // Unwrap enums to their underlying type. 7058 if (const auto *ET = dyn_cast<EnumType>(LHSC)) 7059 LHSC = getIntegerTypeForEnum(ET); 7060 if (const auto *ET = dyn_cast<EnumType>(RHSC)) 7061 RHSC = getIntegerTypeForEnum(ET); 7062 7063 if (LHSC == RHSC) return 0; 7064 7065 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); 7066 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); 7067 7068 unsigned LHSRank = getIntegerRank(LHSC); 7069 unsigned RHSRank = getIntegerRank(RHSC); 7070 7071 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned. 7072 if (LHSRank == RHSRank) return 0; 7073 return LHSRank > RHSRank ? 1 : -1; 7074 } 7075 7076 // Otherwise, the LHS is signed and the RHS is unsigned or visa versa. 7077 if (LHSUnsigned) { 7078 // If the unsigned [LHS] type is larger, return it. 7079 if (LHSRank >= RHSRank) 7080 return 1; 7081 7082 // If the signed type can represent all values of the unsigned type, it 7083 // wins. Because we are dealing with 2's complement and types that are 7084 // powers of two larger than each other, this is always safe. 7085 return -1; 7086 } 7087 7088 // If the unsigned [RHS] type is larger, return it. 7089 if (RHSRank >= LHSRank) 7090 return -1; 7091 7092 // If the signed type can represent all values of the unsigned type, it 7093 // wins. Because we are dealing with 2's complement and types that are 7094 // powers of two larger than each other, this is always safe. 7095 return 1; 7096 } 7097 7098 TypedefDecl *ASTContext::getCFConstantStringDecl() const { 7099 if (CFConstantStringTypeDecl) 7100 return CFConstantStringTypeDecl; 7101 7102 assert(!CFConstantStringTagDecl && 7103 "tag and typedef should be initialized together"); 7104 CFConstantStringTagDecl = buildImplicitRecord("__NSConstantString_tag"); 7105 CFConstantStringTagDecl->startDefinition(); 7106 7107 struct { 7108 QualType Type; 7109 const char *Name; 7110 } Fields[5]; 7111 unsigned Count = 0; 7112 7113 /// Objective-C ABI 7114 /// 7115 /// typedef struct __NSConstantString_tag { 7116 /// const int *isa; 7117 /// int flags; 7118 /// const char *str; 7119 /// long length; 7120 /// } __NSConstantString; 7121 /// 7122 /// Swift ABI (4.1, 4.2) 7123 /// 7124 /// typedef struct __NSConstantString_tag { 7125 /// uintptr_t _cfisa; 7126 /// uintptr_t _swift_rc; 7127 /// _Atomic(uint64_t) _cfinfoa; 7128 /// const char *_ptr; 7129 /// uint32_t _length; 7130 /// } __NSConstantString; 7131 /// 7132 /// Swift ABI (5.0) 7133 /// 7134 /// typedef struct __NSConstantString_tag { 7135 /// uintptr_t _cfisa; 7136 /// uintptr_t _swift_rc; 7137 /// _Atomic(uint64_t) _cfinfoa; 7138 /// const char *_ptr; 7139 /// uintptr_t _length; 7140 /// } __NSConstantString; 7141 7142 const auto CFRuntime = getLangOpts().CFRuntime; 7143 if (static_cast<unsigned>(CFRuntime) < 7144 static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift)) { 7145 Fields[Count++] = { getPointerType(IntTy.withConst()), "isa" }; 7146 Fields[Count++] = { IntTy, "flags" }; 7147 Fields[Count++] = { getPointerType(CharTy.withConst()), "str" }; 7148 Fields[Count++] = { LongTy, "length" }; 7149 } else { 7150 Fields[Count++] = { getUIntPtrType(), "_cfisa" }; 7151 Fields[Count++] = { getUIntPtrType(), "_swift_rc" }; 7152 Fields[Count++] = { getFromTargetType(Target->getUInt64Type()), "_swift_rc" }; 7153 Fields[Count++] = { getPointerType(CharTy.withConst()), "_ptr" }; 7154 if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 || 7155 CFRuntime == LangOptions::CoreFoundationABI::Swift4_2) 7156 Fields[Count++] = { IntTy, "_ptr" }; 7157 else 7158 Fields[Count++] = { getUIntPtrType(), "_ptr" }; 7159 } 7160 7161 // Create fields 7162 for (unsigned i = 0; i < Count; ++i) { 7163 FieldDecl *Field = 7164 FieldDecl::Create(*this, CFConstantStringTagDecl, SourceLocation(), 7165 SourceLocation(), &Idents.get(Fields[i].Name), 7166 Fields[i].Type, /*TInfo=*/nullptr, 7167 /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit); 7168 Field->setAccess(AS_public); 7169 CFConstantStringTagDecl->addDecl(Field); 7170 } 7171 7172 CFConstantStringTagDecl->completeDefinition(); 7173 // This type is designed to be compatible with NSConstantString, but cannot 7174 // use the same name, since NSConstantString is an interface. 7175 auto tagType = getTagDeclType(CFConstantStringTagDecl); 7176 CFConstantStringTypeDecl = 7177 buildImplicitTypedef(tagType, "__NSConstantString"); 7178 7179 return CFConstantStringTypeDecl; 7180 } 7181 7182 RecordDecl *ASTContext::getCFConstantStringTagDecl() const { 7183 if (!CFConstantStringTagDecl) 7184 getCFConstantStringDecl(); // Build the tag and the typedef. 7185 return CFConstantStringTagDecl; 7186 } 7187 7188 // getCFConstantStringType - Return the type used for constant CFStrings. 7189 QualType ASTContext::getCFConstantStringType() const { 7190 return getTypedefType(getCFConstantStringDecl()); 7191 } 7192 7193 QualType ASTContext::getObjCSuperType() const { 7194 if (ObjCSuperType.isNull()) { 7195 RecordDecl *ObjCSuperTypeDecl = buildImplicitRecord("objc_super"); 7196 getTranslationUnitDecl()->addDecl(ObjCSuperTypeDecl); 7197 ObjCSuperType = getTagDeclType(ObjCSuperTypeDecl); 7198 } 7199 return ObjCSuperType; 7200 } 7201 7202 void ASTContext::setCFConstantStringType(QualType T) { 7203 const auto *TD = T->castAs<TypedefType>(); 7204 CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl()); 7205 const auto *TagType = 7206 CFConstantStringTypeDecl->getUnderlyingType()->castAs<RecordType>(); 7207 CFConstantStringTagDecl = TagType->getDecl(); 7208 } 7209 7210 QualType ASTContext::getBlockDescriptorType() const { 7211 if (BlockDescriptorType) 7212 return getTagDeclType(BlockDescriptorType); 7213 7214 RecordDecl *RD; 7215 // FIXME: Needs the FlagAppleBlock bit. 7216 RD = buildImplicitRecord("__block_descriptor"); 7217 RD->startDefinition(); 7218 7219 QualType FieldTypes[] = { 7220 UnsignedLongTy, 7221 UnsignedLongTy, 7222 }; 7223 7224 static const char *const FieldNames[] = { 7225 "reserved", 7226 "Size" 7227 }; 7228 7229 for (size_t i = 0; i < 2; ++i) { 7230 FieldDecl *Field = FieldDecl::Create( 7231 *this, RD, SourceLocation(), SourceLocation(), 7232 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, 7233 /*BitWidth=*/nullptr, /*Mutable=*/false, ICIS_NoInit); 7234 Field->setAccess(AS_public); 7235 RD->addDecl(Field); 7236 } 7237 7238 RD->completeDefinition(); 7239 7240 BlockDescriptorType = RD; 7241 7242 return getTagDeclType(BlockDescriptorType); 7243 } 7244 7245 QualType ASTContext::getBlockDescriptorExtendedType() const { 7246 if (BlockDescriptorExtendedType) 7247 return getTagDeclType(BlockDescriptorExtendedType); 7248 7249 RecordDecl *RD; 7250 // FIXME: Needs the FlagAppleBlock bit. 7251 RD = buildImplicitRecord("__block_descriptor_withcopydispose"); 7252 RD->startDefinition(); 7253 7254 QualType FieldTypes[] = { 7255 UnsignedLongTy, 7256 UnsignedLongTy, 7257 getPointerType(VoidPtrTy), 7258 getPointerType(VoidPtrTy) 7259 }; 7260 7261 static const char *const FieldNames[] = { 7262 "reserved", 7263 "Size", 7264 "CopyFuncPtr", 7265 "DestroyFuncPtr" 7266 }; 7267 7268 for (size_t i = 0; i < 4; ++i) { 7269 FieldDecl *Field = FieldDecl::Create( 7270 *this, RD, SourceLocation(), SourceLocation(), 7271 &Idents.get(FieldNames[i]), FieldTypes[i], /*TInfo=*/nullptr, 7272 /*BitWidth=*/nullptr, 7273 /*Mutable=*/false, ICIS_NoInit); 7274 Field->setAccess(AS_public); 7275 RD->addDecl(Field); 7276 } 7277 7278 RD->completeDefinition(); 7279 7280 BlockDescriptorExtendedType = RD; 7281 return getTagDeclType(BlockDescriptorExtendedType); 7282 } 7283 7284 OpenCLTypeKind ASTContext::getOpenCLTypeKind(const Type *T) const { 7285 const auto *BT = dyn_cast<BuiltinType>(T); 7286 7287 if (!BT) { 7288 if (isa<PipeType>(T)) 7289 return OCLTK_Pipe; 7290 7291 return OCLTK_Default; 7292 } 7293 7294 switch (BT->getKind()) { 7295 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 7296 case BuiltinType::Id: \ 7297 return OCLTK_Image; 7298 #include "clang/Basic/OpenCLImageTypes.def" 7299 7300 case BuiltinType::OCLClkEvent: 7301 return OCLTK_ClkEvent; 7302 7303 case BuiltinType::OCLEvent: 7304 return OCLTK_Event; 7305 7306 case BuiltinType::OCLQueue: 7307 return OCLTK_Queue; 7308 7309 case BuiltinType::OCLReserveID: 7310 return OCLTK_ReserveID; 7311 7312 case BuiltinType::OCLSampler: 7313 return OCLTK_Sampler; 7314 7315 default: 7316 return OCLTK_Default; 7317 } 7318 } 7319 7320 LangAS ASTContext::getOpenCLTypeAddrSpace(const Type *T) const { 7321 return Target->getOpenCLTypeAddrSpace(getOpenCLTypeKind(T)); 7322 } 7323 7324 /// BlockRequiresCopying - Returns true if byref variable "D" of type "Ty" 7325 /// requires copy/dispose. Note that this must match the logic 7326 /// in buildByrefHelpers. 7327 bool ASTContext::BlockRequiresCopying(QualType Ty, 7328 const VarDecl *D) { 7329 if (const CXXRecordDecl *record = Ty->getAsCXXRecordDecl()) { 7330 const Expr *copyExpr = getBlockVarCopyInit(D).getCopyExpr(); 7331 if (!copyExpr && record->hasTrivialDestructor()) return false; 7332 7333 return true; 7334 } 7335 7336 // The block needs copy/destroy helpers if Ty is non-trivial to destructively 7337 // move or destroy. 7338 if (Ty.isNonTrivialToPrimitiveDestructiveMove() || Ty.isDestructedType()) 7339 return true; 7340 7341 if (!Ty->isObjCRetainableType()) return false; 7342 7343 Qualifiers qs = Ty.getQualifiers(); 7344 7345 // If we have lifetime, that dominates. 7346 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { 7347 switch (lifetime) { 7348 case Qualifiers::OCL_None: llvm_unreachable("impossible"); 7349 7350 // These are just bits as far as the runtime is concerned. 7351 case Qualifiers::OCL_ExplicitNone: 7352 case Qualifiers::OCL_Autoreleasing: 7353 return false; 7354 7355 // These cases should have been taken care of when checking the type's 7356 // non-triviality. 7357 case Qualifiers::OCL_Weak: 7358 case Qualifiers::OCL_Strong: 7359 llvm_unreachable("impossible"); 7360 } 7361 llvm_unreachable("fell out of lifetime switch!"); 7362 } 7363 return (Ty->isBlockPointerType() || isObjCNSObjectType(Ty) || 7364 Ty->isObjCObjectPointerType()); 7365 } 7366 7367 bool ASTContext::getByrefLifetime(QualType Ty, 7368 Qualifiers::ObjCLifetime &LifeTime, 7369 bool &HasByrefExtendedLayout) const { 7370 if (!getLangOpts().ObjC || 7371 getLangOpts().getGC() != LangOptions::NonGC) 7372 return false; 7373 7374 HasByrefExtendedLayout = false; 7375 if (Ty->isRecordType()) { 7376 HasByrefExtendedLayout = true; 7377 LifeTime = Qualifiers::OCL_None; 7378 } else if ((LifeTime = Ty.getObjCLifetime())) { 7379 // Honor the ARC qualifiers. 7380 } else if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) { 7381 // The MRR rule. 7382 LifeTime = Qualifiers::OCL_ExplicitNone; 7383 } else { 7384 LifeTime = Qualifiers::OCL_None; 7385 } 7386 return true; 7387 } 7388 7389 CanQualType ASTContext::getNSUIntegerType() const { 7390 assert(Target && "Expected target to be initialized"); 7391 const llvm::Triple &T = Target->getTriple(); 7392 // Windows is LLP64 rather than LP64 7393 if (T.isOSWindows() && T.isArch64Bit()) 7394 return UnsignedLongLongTy; 7395 return UnsignedLongTy; 7396 } 7397 7398 CanQualType ASTContext::getNSIntegerType() const { 7399 assert(Target && "Expected target to be initialized"); 7400 const llvm::Triple &T = Target->getTriple(); 7401 // Windows is LLP64 rather than LP64 7402 if (T.isOSWindows() && T.isArch64Bit()) 7403 return LongLongTy; 7404 return LongTy; 7405 } 7406 7407 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { 7408 if (!ObjCInstanceTypeDecl) 7409 ObjCInstanceTypeDecl = 7410 buildImplicitTypedef(getObjCIdType(), "instancetype"); 7411 return ObjCInstanceTypeDecl; 7412 } 7413 7414 // This returns true if a type has been typedefed to BOOL: 7415 // typedef <type> BOOL; 7416 static bool isTypeTypedefedAsBOOL(QualType T) { 7417 if (const auto *TT = dyn_cast<TypedefType>(T)) 7418 if (IdentifierInfo *II = TT->getDecl()->getIdentifier()) 7419 return II->isStr("BOOL"); 7420 7421 return false; 7422 } 7423 7424 /// getObjCEncodingTypeSize returns size of type for objective-c encoding 7425 /// purpose. 7426 CharUnits ASTContext::getObjCEncodingTypeSize(QualType type) const { 7427 if (!type->isIncompleteArrayType() && type->isIncompleteType()) 7428 return CharUnits::Zero(); 7429 7430 CharUnits sz = getTypeSizeInChars(type); 7431 7432 // Make all integer and enum types at least as large as an int 7433 if (sz.isPositive() && type->isIntegralOrEnumerationType()) 7434 sz = std::max(sz, getTypeSizeInChars(IntTy)); 7435 // Treat arrays as pointers, since that's how they're passed in. 7436 else if (type->isArrayType()) 7437 sz = getTypeSizeInChars(VoidPtrTy); 7438 return sz; 7439 } 7440 7441 bool ASTContext::isMSStaticDataMemberInlineDefinition(const VarDecl *VD) const { 7442 return getTargetInfo().getCXXABI().isMicrosoft() && 7443 VD->isStaticDataMember() && 7444 VD->getType()->isIntegralOrEnumerationType() && 7445 !VD->getFirstDecl()->isOutOfLine() && VD->getFirstDecl()->hasInit(); 7446 } 7447 7448 ASTContext::InlineVariableDefinitionKind 7449 ASTContext::getInlineVariableDefinitionKind(const VarDecl *VD) const { 7450 if (!VD->isInline()) 7451 return InlineVariableDefinitionKind::None; 7452 7453 // In almost all cases, it's a weak definition. 7454 auto *First = VD->getFirstDecl(); 7455 if (First->isInlineSpecified() || !First->isStaticDataMember()) 7456 return InlineVariableDefinitionKind::Weak; 7457 7458 // If there's a file-context declaration in this translation unit, it's a 7459 // non-discardable definition. 7460 for (auto *D : VD->redecls()) 7461 if (D->getLexicalDeclContext()->isFileContext() && 7462 !D->isInlineSpecified() && (D->isConstexpr() || First->isConstexpr())) 7463 return InlineVariableDefinitionKind::Strong; 7464 7465 // If we've not seen one yet, we don't know. 7466 return InlineVariableDefinitionKind::WeakUnknown; 7467 } 7468 7469 static std::string charUnitsToString(const CharUnits &CU) { 7470 return llvm::itostr(CU.getQuantity()); 7471 } 7472 7473 /// getObjCEncodingForBlock - Return the encoded type for this block 7474 /// declaration. 7475 std::string ASTContext::getObjCEncodingForBlock(const BlockExpr *Expr) const { 7476 std::string S; 7477 7478 const BlockDecl *Decl = Expr->getBlockDecl(); 7479 QualType BlockTy = 7480 Expr->getType()->castAs<BlockPointerType>()->getPointeeType(); 7481 QualType BlockReturnTy = BlockTy->castAs<FunctionType>()->getReturnType(); 7482 // Encode result type. 7483 if (getLangOpts().EncodeExtendedBlockSig) 7484 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, BlockReturnTy, S, 7485 true /*Extended*/); 7486 else 7487 getObjCEncodingForType(BlockReturnTy, S); 7488 // Compute size of all parameters. 7489 // Start with computing size of a pointer in number of bytes. 7490 // FIXME: There might(should) be a better way of doing this computation! 7491 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy); 7492 CharUnits ParmOffset = PtrSize; 7493 for (auto PI : Decl->parameters()) { 7494 QualType PType = PI->getType(); 7495 CharUnits sz = getObjCEncodingTypeSize(PType); 7496 if (sz.isZero()) 7497 continue; 7498 assert(sz.isPositive() && "BlockExpr - Incomplete param type"); 7499 ParmOffset += sz; 7500 } 7501 // Size of the argument frame 7502 S += charUnitsToString(ParmOffset); 7503 // Block pointer and offset. 7504 S += "@?0"; 7505 7506 // Argument types. 7507 ParmOffset = PtrSize; 7508 for (auto PVDecl : Decl->parameters()) { 7509 QualType PType = PVDecl->getOriginalType(); 7510 if (const auto *AT = 7511 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7512 // Use array's original type only if it has known number of 7513 // elements. 7514 if (!isa<ConstantArrayType>(AT)) 7515 PType = PVDecl->getType(); 7516 } else if (PType->isFunctionType()) 7517 PType = PVDecl->getType(); 7518 if (getLangOpts().EncodeExtendedBlockSig) 7519 getObjCEncodingForMethodParameter(Decl::OBJC_TQ_None, PType, 7520 S, true /*Extended*/); 7521 else 7522 getObjCEncodingForType(PType, S); 7523 S += charUnitsToString(ParmOffset); 7524 ParmOffset += getObjCEncodingTypeSize(PType); 7525 } 7526 7527 return S; 7528 } 7529 7530 std::string 7531 ASTContext::getObjCEncodingForFunctionDecl(const FunctionDecl *Decl) const { 7532 std::string S; 7533 // Encode result type. 7534 getObjCEncodingForType(Decl->getReturnType(), S); 7535 CharUnits ParmOffset; 7536 // Compute size of all parameters. 7537 for (auto PI : Decl->parameters()) { 7538 QualType PType = PI->getType(); 7539 CharUnits sz = getObjCEncodingTypeSize(PType); 7540 if (sz.isZero()) 7541 continue; 7542 7543 assert(sz.isPositive() && 7544 "getObjCEncodingForFunctionDecl - Incomplete param type"); 7545 ParmOffset += sz; 7546 } 7547 S += charUnitsToString(ParmOffset); 7548 ParmOffset = CharUnits::Zero(); 7549 7550 // Argument types. 7551 for (auto PVDecl : Decl->parameters()) { 7552 QualType PType = PVDecl->getOriginalType(); 7553 if (const auto *AT = 7554 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7555 // Use array's original type only if it has known number of 7556 // elements. 7557 if (!isa<ConstantArrayType>(AT)) 7558 PType = PVDecl->getType(); 7559 } else if (PType->isFunctionType()) 7560 PType = PVDecl->getType(); 7561 getObjCEncodingForType(PType, S); 7562 S += charUnitsToString(ParmOffset); 7563 ParmOffset += getObjCEncodingTypeSize(PType); 7564 } 7565 7566 return S; 7567 } 7568 7569 /// getObjCEncodingForMethodParameter - Return the encoded type for a single 7570 /// method parameter or return type. If Extended, include class names and 7571 /// block object types. 7572 void ASTContext::getObjCEncodingForMethodParameter(Decl::ObjCDeclQualifier QT, 7573 QualType T, std::string& S, 7574 bool Extended) const { 7575 // Encode type qualifier, 'in', 'inout', etc. for the parameter. 7576 getObjCEncodingForTypeQualifier(QT, S); 7577 // Encode parameter type. 7578 ObjCEncOptions Options = ObjCEncOptions() 7579 .setExpandPointedToStructures() 7580 .setExpandStructures() 7581 .setIsOutermostType(); 7582 if (Extended) 7583 Options.setEncodeBlockParameters().setEncodeClassNames(); 7584 getObjCEncodingForTypeImpl(T, S, Options, /*Field=*/nullptr); 7585 } 7586 7587 /// getObjCEncodingForMethodDecl - Return the encoded type for this method 7588 /// declaration. 7589 std::string ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl, 7590 bool Extended) const { 7591 // FIXME: This is not very efficient. 7592 // Encode return type. 7593 std::string S; 7594 getObjCEncodingForMethodParameter(Decl->getObjCDeclQualifier(), 7595 Decl->getReturnType(), S, Extended); 7596 // Compute size of all parameters. 7597 // Start with computing size of a pointer in number of bytes. 7598 // FIXME: There might(should) be a better way of doing this computation! 7599 CharUnits PtrSize = getTypeSizeInChars(VoidPtrTy); 7600 // The first two arguments (self and _cmd) are pointers; account for 7601 // their size. 7602 CharUnits ParmOffset = 2 * PtrSize; 7603 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(), 7604 E = Decl->sel_param_end(); PI != E; ++PI) { 7605 QualType PType = (*PI)->getType(); 7606 CharUnits sz = getObjCEncodingTypeSize(PType); 7607 if (sz.isZero()) 7608 continue; 7609 7610 assert(sz.isPositive() && 7611 "getObjCEncodingForMethodDecl - Incomplete param type"); 7612 ParmOffset += sz; 7613 } 7614 S += charUnitsToString(ParmOffset); 7615 S += "@0:"; 7616 S += charUnitsToString(PtrSize); 7617 7618 // Argument types. 7619 ParmOffset = 2 * PtrSize; 7620 for (ObjCMethodDecl::param_const_iterator PI = Decl->param_begin(), 7621 E = Decl->sel_param_end(); PI != E; ++PI) { 7622 const ParmVarDecl *PVDecl = *PI; 7623 QualType PType = PVDecl->getOriginalType(); 7624 if (const auto *AT = 7625 dyn_cast<ArrayType>(PType->getCanonicalTypeInternal())) { 7626 // Use array's original type only if it has known number of 7627 // elements. 7628 if (!isa<ConstantArrayType>(AT)) 7629 PType = PVDecl->getType(); 7630 } else if (PType->isFunctionType()) 7631 PType = PVDecl->getType(); 7632 getObjCEncodingForMethodParameter(PVDecl->getObjCDeclQualifier(), 7633 PType, S, Extended); 7634 S += charUnitsToString(ParmOffset); 7635 ParmOffset += getObjCEncodingTypeSize(PType); 7636 } 7637 7638 return S; 7639 } 7640 7641 ObjCPropertyImplDecl * 7642 ASTContext::getObjCPropertyImplDeclForPropertyDecl( 7643 const ObjCPropertyDecl *PD, 7644 const Decl *Container) const { 7645 if (!Container) 7646 return nullptr; 7647 if (const auto *CID = dyn_cast<ObjCCategoryImplDecl>(Container)) { 7648 for (auto *PID : CID->property_impls()) 7649 if (PID->getPropertyDecl() == PD) 7650 return PID; 7651 } else { 7652 const auto *OID = cast<ObjCImplementationDecl>(Container); 7653 for (auto *PID : OID->property_impls()) 7654 if (PID->getPropertyDecl() == PD) 7655 return PID; 7656 } 7657 return nullptr; 7658 } 7659 7660 /// getObjCEncodingForPropertyDecl - Return the encoded type for this 7661 /// property declaration. If non-NULL, Container must be either an 7662 /// ObjCCategoryImplDecl or ObjCImplementationDecl; it should only be 7663 /// NULL when getting encodings for protocol properties. 7664 /// Property attributes are stored as a comma-delimited C string. The simple 7665 /// attributes readonly and bycopy are encoded as single characters. The 7666 /// parametrized attributes, getter=name, setter=name, and ivar=name, are 7667 /// encoded as single characters, followed by an identifier. Property types 7668 /// are also encoded as a parametrized attribute. The characters used to encode 7669 /// these attributes are defined by the following enumeration: 7670 /// @code 7671 /// enum PropertyAttributes { 7672 /// kPropertyReadOnly = 'R', // property is read-only. 7673 /// kPropertyBycopy = 'C', // property is a copy of the value last assigned 7674 /// kPropertyByref = '&', // property is a reference to the value last assigned 7675 /// kPropertyDynamic = 'D', // property is dynamic 7676 /// kPropertyGetter = 'G', // followed by getter selector name 7677 /// kPropertySetter = 'S', // followed by setter selector name 7678 /// kPropertyInstanceVariable = 'V' // followed by instance variable name 7679 /// kPropertyType = 'T' // followed by old-style type encoding. 7680 /// kPropertyWeak = 'W' // 'weak' property 7681 /// kPropertyStrong = 'P' // property GC'able 7682 /// kPropertyNonAtomic = 'N' // property non-atomic 7683 /// }; 7684 /// @endcode 7685 std::string 7686 ASTContext::getObjCEncodingForPropertyDecl(const ObjCPropertyDecl *PD, 7687 const Decl *Container) const { 7688 // Collect information from the property implementation decl(s). 7689 bool Dynamic = false; 7690 ObjCPropertyImplDecl *SynthesizePID = nullptr; 7691 7692 if (ObjCPropertyImplDecl *PropertyImpDecl = 7693 getObjCPropertyImplDeclForPropertyDecl(PD, Container)) { 7694 if (PropertyImpDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) 7695 Dynamic = true; 7696 else 7697 SynthesizePID = PropertyImpDecl; 7698 } 7699 7700 // FIXME: This is not very efficient. 7701 std::string S = "T"; 7702 7703 // Encode result type. 7704 // GCC has some special rules regarding encoding of properties which 7705 // closely resembles encoding of ivars. 7706 getObjCEncodingForPropertyType(PD->getType(), S); 7707 7708 if (PD->isReadOnly()) { 7709 S += ",R"; 7710 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_copy) 7711 S += ",C"; 7712 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_retain) 7713 S += ",&"; 7714 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak) 7715 S += ",W"; 7716 } else { 7717 switch (PD->getSetterKind()) { 7718 case ObjCPropertyDecl::Assign: break; 7719 case ObjCPropertyDecl::Copy: S += ",C"; break; 7720 case ObjCPropertyDecl::Retain: S += ",&"; break; 7721 case ObjCPropertyDecl::Weak: S += ",W"; break; 7722 } 7723 } 7724 7725 // It really isn't clear at all what this means, since properties 7726 // are "dynamic by default". 7727 if (Dynamic) 7728 S += ",D"; 7729 7730 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_nonatomic) 7731 S += ",N"; 7732 7733 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_getter) { 7734 S += ",G"; 7735 S += PD->getGetterName().getAsString(); 7736 } 7737 7738 if (PD->getPropertyAttributes() & ObjCPropertyAttribute::kind_setter) { 7739 S += ",S"; 7740 S += PD->getSetterName().getAsString(); 7741 } 7742 7743 if (SynthesizePID) { 7744 const ObjCIvarDecl *OID = SynthesizePID->getPropertyIvarDecl(); 7745 S += ",V"; 7746 S += OID->getNameAsString(); 7747 } 7748 7749 // FIXME: OBJCGC: weak & strong 7750 return S; 7751 } 7752 7753 /// getLegacyIntegralTypeEncoding - 7754 /// Another legacy compatibility encoding: 32-bit longs are encoded as 7755 /// 'l' or 'L' , but not always. For typedefs, we need to use 7756 /// 'i' or 'I' instead if encoding a struct field, or a pointer! 7757 void ASTContext::getLegacyIntegralTypeEncoding (QualType &PointeeTy) const { 7758 if (isa<TypedefType>(PointeeTy.getTypePtr())) { 7759 if (const auto *BT = PointeeTy->getAs<BuiltinType>()) { 7760 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32) 7761 PointeeTy = UnsignedIntTy; 7762 else 7763 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32) 7764 PointeeTy = IntTy; 7765 } 7766 } 7767 } 7768 7769 void ASTContext::getObjCEncodingForType(QualType T, std::string& S, 7770 const FieldDecl *Field, 7771 QualType *NotEncodedT) const { 7772 // We follow the behavior of gcc, expanding structures which are 7773 // directly pointed to, and expanding embedded structures. Note that 7774 // these rules are sufficient to prevent recursive encoding of the 7775 // same type. 7776 getObjCEncodingForTypeImpl(T, S, 7777 ObjCEncOptions() 7778 .setExpandPointedToStructures() 7779 .setExpandStructures() 7780 .setIsOutermostType(), 7781 Field, NotEncodedT); 7782 } 7783 7784 void ASTContext::getObjCEncodingForPropertyType(QualType T, 7785 std::string& S) const { 7786 // Encode result type. 7787 // GCC has some special rules regarding encoding of properties which 7788 // closely resembles encoding of ivars. 7789 getObjCEncodingForTypeImpl(T, S, 7790 ObjCEncOptions() 7791 .setExpandPointedToStructures() 7792 .setExpandStructures() 7793 .setIsOutermostType() 7794 .setEncodingProperty(), 7795 /*Field=*/nullptr); 7796 } 7797 7798 static char getObjCEncodingForPrimitiveType(const ASTContext *C, 7799 const BuiltinType *BT) { 7800 BuiltinType::Kind kind = BT->getKind(); 7801 switch (kind) { 7802 case BuiltinType::Void: return 'v'; 7803 case BuiltinType::Bool: return 'B'; 7804 case BuiltinType::Char8: 7805 case BuiltinType::Char_U: 7806 case BuiltinType::UChar: return 'C'; 7807 case BuiltinType::Char16: 7808 case BuiltinType::UShort: return 'S'; 7809 case BuiltinType::Char32: 7810 case BuiltinType::UInt: return 'I'; 7811 case BuiltinType::ULong: 7812 return C->getTargetInfo().getLongWidth() == 32 ? 'L' : 'Q'; 7813 case BuiltinType::UInt128: return 'T'; 7814 case BuiltinType::ULongLong: return 'Q'; 7815 case BuiltinType::Char_S: 7816 case BuiltinType::SChar: return 'c'; 7817 case BuiltinType::Short: return 's'; 7818 case BuiltinType::WChar_S: 7819 case BuiltinType::WChar_U: 7820 case BuiltinType::Int: return 'i'; 7821 case BuiltinType::Long: 7822 return C->getTargetInfo().getLongWidth() == 32 ? 'l' : 'q'; 7823 case BuiltinType::LongLong: return 'q'; 7824 case BuiltinType::Int128: return 't'; 7825 case BuiltinType::Float: return 'f'; 7826 case BuiltinType::Double: return 'd'; 7827 case BuiltinType::LongDouble: return 'D'; 7828 case BuiltinType::NullPtr: return '*'; // like char* 7829 7830 case BuiltinType::BFloat16: 7831 case BuiltinType::Float16: 7832 case BuiltinType::Float128: 7833 case BuiltinType::Ibm128: 7834 case BuiltinType::Half: 7835 case BuiltinType::ShortAccum: 7836 case BuiltinType::Accum: 7837 case BuiltinType::LongAccum: 7838 case BuiltinType::UShortAccum: 7839 case BuiltinType::UAccum: 7840 case BuiltinType::ULongAccum: 7841 case BuiltinType::ShortFract: 7842 case BuiltinType::Fract: 7843 case BuiltinType::LongFract: 7844 case BuiltinType::UShortFract: 7845 case BuiltinType::UFract: 7846 case BuiltinType::ULongFract: 7847 case BuiltinType::SatShortAccum: 7848 case BuiltinType::SatAccum: 7849 case BuiltinType::SatLongAccum: 7850 case BuiltinType::SatUShortAccum: 7851 case BuiltinType::SatUAccum: 7852 case BuiltinType::SatULongAccum: 7853 case BuiltinType::SatShortFract: 7854 case BuiltinType::SatFract: 7855 case BuiltinType::SatLongFract: 7856 case BuiltinType::SatUShortFract: 7857 case BuiltinType::SatUFract: 7858 case BuiltinType::SatULongFract: 7859 // FIXME: potentially need @encodes for these! 7860 return ' '; 7861 7862 #define SVE_TYPE(Name, Id, SingletonId) \ 7863 case BuiltinType::Id: 7864 #include "clang/Basic/AArch64SVEACLETypes.def" 7865 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 7866 #include "clang/Basic/RISCVVTypes.def" 7867 { 7868 DiagnosticsEngine &Diags = C->getDiagnostics(); 7869 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 7870 "cannot yet @encode type %0"); 7871 Diags.Report(DiagID) << BT->getName(C->getPrintingPolicy()); 7872 return ' '; 7873 } 7874 7875 case BuiltinType::ObjCId: 7876 case BuiltinType::ObjCClass: 7877 case BuiltinType::ObjCSel: 7878 llvm_unreachable("@encoding ObjC primitive type"); 7879 7880 // OpenCL and placeholder types don't need @encodings. 7881 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 7882 case BuiltinType::Id: 7883 #include "clang/Basic/OpenCLImageTypes.def" 7884 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 7885 case BuiltinType::Id: 7886 #include "clang/Basic/OpenCLExtensionTypes.def" 7887 case BuiltinType::OCLEvent: 7888 case BuiltinType::OCLClkEvent: 7889 case BuiltinType::OCLQueue: 7890 case BuiltinType::OCLReserveID: 7891 case BuiltinType::OCLSampler: 7892 case BuiltinType::Dependent: 7893 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 7894 case BuiltinType::Id: 7895 #include "clang/Basic/PPCTypes.def" 7896 #define BUILTIN_TYPE(KIND, ID) 7897 #define PLACEHOLDER_TYPE(KIND, ID) \ 7898 case BuiltinType::KIND: 7899 #include "clang/AST/BuiltinTypes.def" 7900 llvm_unreachable("invalid builtin type for @encode"); 7901 } 7902 llvm_unreachable("invalid BuiltinType::Kind value"); 7903 } 7904 7905 static char ObjCEncodingForEnumType(const ASTContext *C, const EnumType *ET) { 7906 EnumDecl *Enum = ET->getDecl(); 7907 7908 // The encoding of an non-fixed enum type is always 'i', regardless of size. 7909 if (!Enum->isFixed()) 7910 return 'i'; 7911 7912 // The encoding of a fixed enum type matches its fixed underlying type. 7913 const auto *BT = Enum->getIntegerType()->castAs<BuiltinType>(); 7914 return getObjCEncodingForPrimitiveType(C, BT); 7915 } 7916 7917 static void EncodeBitField(const ASTContext *Ctx, std::string& S, 7918 QualType T, const FieldDecl *FD) { 7919 assert(FD->isBitField() && "not a bitfield - getObjCEncodingForTypeImpl"); 7920 S += 'b'; 7921 // The NeXT runtime encodes bit fields as b followed by the number of bits. 7922 // The GNU runtime requires more information; bitfields are encoded as b, 7923 // then the offset (in bits) of the first element, then the type of the 7924 // bitfield, then the size in bits. For example, in this structure: 7925 // 7926 // struct 7927 // { 7928 // int integer; 7929 // int flags:2; 7930 // }; 7931 // On a 32-bit system, the encoding for flags would be b2 for the NeXT 7932 // runtime, but b32i2 for the GNU runtime. The reason for this extra 7933 // information is not especially sensible, but we're stuck with it for 7934 // compatibility with GCC, although providing it breaks anything that 7935 // actually uses runtime introspection and wants to work on both runtimes... 7936 if (Ctx->getLangOpts().ObjCRuntime.isGNUFamily()) { 7937 uint64_t Offset; 7938 7939 if (const auto *IVD = dyn_cast<ObjCIvarDecl>(FD)) { 7940 Offset = Ctx->lookupFieldBitOffset(IVD->getContainingInterface(), nullptr, 7941 IVD); 7942 } else { 7943 const RecordDecl *RD = FD->getParent(); 7944 const ASTRecordLayout &RL = Ctx->getASTRecordLayout(RD); 7945 Offset = RL.getFieldOffset(FD->getFieldIndex()); 7946 } 7947 7948 S += llvm::utostr(Offset); 7949 7950 if (const auto *ET = T->getAs<EnumType>()) 7951 S += ObjCEncodingForEnumType(Ctx, ET); 7952 else { 7953 const auto *BT = T->castAs<BuiltinType>(); 7954 S += getObjCEncodingForPrimitiveType(Ctx, BT); 7955 } 7956 } 7957 S += llvm::utostr(FD->getBitWidthValue(*Ctx)); 7958 } 7959 7960 // Helper function for determining whether the encoded type string would include 7961 // a template specialization type. 7962 static bool hasTemplateSpecializationInEncodedString(const Type *T, 7963 bool VisitBasesAndFields) { 7964 T = T->getBaseElementTypeUnsafe(); 7965 7966 if (auto *PT = T->getAs<PointerType>()) 7967 return hasTemplateSpecializationInEncodedString( 7968 PT->getPointeeType().getTypePtr(), false); 7969 7970 auto *CXXRD = T->getAsCXXRecordDecl(); 7971 7972 if (!CXXRD) 7973 return false; 7974 7975 if (isa<ClassTemplateSpecializationDecl>(CXXRD)) 7976 return true; 7977 7978 if (!CXXRD->hasDefinition() || !VisitBasesAndFields) 7979 return false; 7980 7981 for (auto B : CXXRD->bases()) 7982 if (hasTemplateSpecializationInEncodedString(B.getType().getTypePtr(), 7983 true)) 7984 return true; 7985 7986 for (auto *FD : CXXRD->fields()) 7987 if (hasTemplateSpecializationInEncodedString(FD->getType().getTypePtr(), 7988 true)) 7989 return true; 7990 7991 return false; 7992 } 7993 7994 // FIXME: Use SmallString for accumulating string. 7995 void ASTContext::getObjCEncodingForTypeImpl(QualType T, std::string &S, 7996 const ObjCEncOptions Options, 7997 const FieldDecl *FD, 7998 QualType *NotEncodedT) const { 7999 CanQualType CT = getCanonicalType(T); 8000 switch (CT->getTypeClass()) { 8001 case Type::Builtin: 8002 case Type::Enum: 8003 if (FD && FD->isBitField()) 8004 return EncodeBitField(this, S, T, FD); 8005 if (const auto *BT = dyn_cast<BuiltinType>(CT)) 8006 S += getObjCEncodingForPrimitiveType(this, BT); 8007 else 8008 S += ObjCEncodingForEnumType(this, cast<EnumType>(CT)); 8009 return; 8010 8011 case Type::Complex: 8012 S += 'j'; 8013 getObjCEncodingForTypeImpl(T->castAs<ComplexType>()->getElementType(), S, 8014 ObjCEncOptions(), 8015 /*Field=*/nullptr); 8016 return; 8017 8018 case Type::Atomic: 8019 S += 'A'; 8020 getObjCEncodingForTypeImpl(T->castAs<AtomicType>()->getValueType(), S, 8021 ObjCEncOptions(), 8022 /*Field=*/nullptr); 8023 return; 8024 8025 // encoding for pointer or reference types. 8026 case Type::Pointer: 8027 case Type::LValueReference: 8028 case Type::RValueReference: { 8029 QualType PointeeTy; 8030 if (isa<PointerType>(CT)) { 8031 const auto *PT = T->castAs<PointerType>(); 8032 if (PT->isObjCSelType()) { 8033 S += ':'; 8034 return; 8035 } 8036 PointeeTy = PT->getPointeeType(); 8037 } else { 8038 PointeeTy = T->castAs<ReferenceType>()->getPointeeType(); 8039 } 8040 8041 bool isReadOnly = false; 8042 // For historical/compatibility reasons, the read-only qualifier of the 8043 // pointee gets emitted _before_ the '^'. The read-only qualifier of 8044 // the pointer itself gets ignored, _unless_ we are looking at a typedef! 8045 // Also, do not emit the 'r' for anything but the outermost type! 8046 if (isa<TypedefType>(T.getTypePtr())) { 8047 if (Options.IsOutermostType() && T.isConstQualified()) { 8048 isReadOnly = true; 8049 S += 'r'; 8050 } 8051 } else if (Options.IsOutermostType()) { 8052 QualType P = PointeeTy; 8053 while (auto PT = P->getAs<PointerType>()) 8054 P = PT->getPointeeType(); 8055 if (P.isConstQualified()) { 8056 isReadOnly = true; 8057 S += 'r'; 8058 } 8059 } 8060 if (isReadOnly) { 8061 // Another legacy compatibility encoding. Some ObjC qualifier and type 8062 // combinations need to be rearranged. 8063 // Rewrite "in const" from "nr" to "rn" 8064 if (StringRef(S).endswith("nr")) 8065 S.replace(S.end()-2, S.end(), "rn"); 8066 } 8067 8068 if (PointeeTy->isCharType()) { 8069 // char pointer types should be encoded as '*' unless it is a 8070 // type that has been typedef'd to 'BOOL'. 8071 if (!isTypeTypedefedAsBOOL(PointeeTy)) { 8072 S += '*'; 8073 return; 8074 } 8075 } else if (const auto *RTy = PointeeTy->getAs<RecordType>()) { 8076 // GCC binary compat: Need to convert "struct objc_class *" to "#". 8077 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_class")) { 8078 S += '#'; 8079 return; 8080 } 8081 // GCC binary compat: Need to convert "struct objc_object *" to "@". 8082 if (RTy->getDecl()->getIdentifier() == &Idents.get("objc_object")) { 8083 S += '@'; 8084 return; 8085 } 8086 // If the encoded string for the class includes template names, just emit 8087 // "^v" for pointers to the class. 8088 if (getLangOpts().CPlusPlus && 8089 (!getLangOpts().EncodeCXXClassTemplateSpec && 8090 hasTemplateSpecializationInEncodedString( 8091 RTy, Options.ExpandPointedToStructures()))) { 8092 S += "^v"; 8093 return; 8094 } 8095 // fall through... 8096 } 8097 S += '^'; 8098 getLegacyIntegralTypeEncoding(PointeeTy); 8099 8100 ObjCEncOptions NewOptions; 8101 if (Options.ExpandPointedToStructures()) 8102 NewOptions.setExpandStructures(); 8103 getObjCEncodingForTypeImpl(PointeeTy, S, NewOptions, 8104 /*Field=*/nullptr, NotEncodedT); 8105 return; 8106 } 8107 8108 case Type::ConstantArray: 8109 case Type::IncompleteArray: 8110 case Type::VariableArray: { 8111 const auto *AT = cast<ArrayType>(CT); 8112 8113 if (isa<IncompleteArrayType>(AT) && !Options.IsStructField()) { 8114 // Incomplete arrays are encoded as a pointer to the array element. 8115 S += '^'; 8116 8117 getObjCEncodingForTypeImpl( 8118 AT->getElementType(), S, 8119 Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD); 8120 } else { 8121 S += '['; 8122 8123 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) 8124 S += llvm::utostr(CAT->getSize().getZExtValue()); 8125 else { 8126 //Variable length arrays are encoded as a regular array with 0 elements. 8127 assert((isa<VariableArrayType>(AT) || isa<IncompleteArrayType>(AT)) && 8128 "Unknown array type!"); 8129 S += '0'; 8130 } 8131 8132 getObjCEncodingForTypeImpl( 8133 AT->getElementType(), S, 8134 Options.keepingOnly(ObjCEncOptions().setExpandStructures()), FD, 8135 NotEncodedT); 8136 S += ']'; 8137 } 8138 return; 8139 } 8140 8141 case Type::FunctionNoProto: 8142 case Type::FunctionProto: 8143 S += '?'; 8144 return; 8145 8146 case Type::Record: { 8147 RecordDecl *RDecl = cast<RecordType>(CT)->getDecl(); 8148 S += RDecl->isUnion() ? '(' : '{'; 8149 // Anonymous structures print as '?' 8150 if (const IdentifierInfo *II = RDecl->getIdentifier()) { 8151 S += II->getName(); 8152 if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(RDecl)) { 8153 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs(); 8154 llvm::raw_string_ostream OS(S); 8155 printTemplateArgumentList(OS, TemplateArgs.asArray(), 8156 getPrintingPolicy()); 8157 } 8158 } else { 8159 S += '?'; 8160 } 8161 if (Options.ExpandStructures()) { 8162 S += '='; 8163 if (!RDecl->isUnion()) { 8164 getObjCEncodingForStructureImpl(RDecl, S, FD, true, NotEncodedT); 8165 } else { 8166 for (const auto *Field : RDecl->fields()) { 8167 if (FD) { 8168 S += '"'; 8169 S += Field->getNameAsString(); 8170 S += '"'; 8171 } 8172 8173 // Special case bit-fields. 8174 if (Field->isBitField()) { 8175 getObjCEncodingForTypeImpl(Field->getType(), S, 8176 ObjCEncOptions().setExpandStructures(), 8177 Field); 8178 } else { 8179 QualType qt = Field->getType(); 8180 getLegacyIntegralTypeEncoding(qt); 8181 getObjCEncodingForTypeImpl( 8182 qt, S, 8183 ObjCEncOptions().setExpandStructures().setIsStructField(), FD, 8184 NotEncodedT); 8185 } 8186 } 8187 } 8188 } 8189 S += RDecl->isUnion() ? ')' : '}'; 8190 return; 8191 } 8192 8193 case Type::BlockPointer: { 8194 const auto *BT = T->castAs<BlockPointerType>(); 8195 S += "@?"; // Unlike a pointer-to-function, which is "^?". 8196 if (Options.EncodeBlockParameters()) { 8197 const auto *FT = BT->getPointeeType()->castAs<FunctionType>(); 8198 8199 S += '<'; 8200 // Block return type 8201 getObjCEncodingForTypeImpl(FT->getReturnType(), S, 8202 Options.forComponentType(), FD, NotEncodedT); 8203 // Block self 8204 S += "@?"; 8205 // Block parameters 8206 if (const auto *FPT = dyn_cast<FunctionProtoType>(FT)) { 8207 for (const auto &I : FPT->param_types()) 8208 getObjCEncodingForTypeImpl(I, S, Options.forComponentType(), FD, 8209 NotEncodedT); 8210 } 8211 S += '>'; 8212 } 8213 return; 8214 } 8215 8216 case Type::ObjCObject: { 8217 // hack to match legacy encoding of *id and *Class 8218 QualType Ty = getObjCObjectPointerType(CT); 8219 if (Ty->isObjCIdType()) { 8220 S += "{objc_object=}"; 8221 return; 8222 } 8223 else if (Ty->isObjCClassType()) { 8224 S += "{objc_class=}"; 8225 return; 8226 } 8227 // TODO: Double check to make sure this intentionally falls through. 8228 LLVM_FALLTHROUGH; 8229 } 8230 8231 case Type::ObjCInterface: { 8232 // Ignore protocol qualifiers when mangling at this level. 8233 // @encode(class_name) 8234 ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface(); 8235 S += '{'; 8236 S += OI->getObjCRuntimeNameAsString(); 8237 if (Options.ExpandStructures()) { 8238 S += '='; 8239 SmallVector<const ObjCIvarDecl*, 32> Ivars; 8240 DeepCollectObjCIvars(OI, true, Ivars); 8241 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) { 8242 const FieldDecl *Field = Ivars[i]; 8243 if (Field->isBitField()) 8244 getObjCEncodingForTypeImpl(Field->getType(), S, 8245 ObjCEncOptions().setExpandStructures(), 8246 Field); 8247 else 8248 getObjCEncodingForTypeImpl(Field->getType(), S, 8249 ObjCEncOptions().setExpandStructures(), FD, 8250 NotEncodedT); 8251 } 8252 } 8253 S += '}'; 8254 return; 8255 } 8256 8257 case Type::ObjCObjectPointer: { 8258 const auto *OPT = T->castAs<ObjCObjectPointerType>(); 8259 if (OPT->isObjCIdType()) { 8260 S += '@'; 8261 return; 8262 } 8263 8264 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) { 8265 // FIXME: Consider if we need to output qualifiers for 'Class<p>'. 8266 // Since this is a binary compatibility issue, need to consult with 8267 // runtime folks. Fortunately, this is a *very* obscure construct. 8268 S += '#'; 8269 return; 8270 } 8271 8272 if (OPT->isObjCQualifiedIdType()) { 8273 getObjCEncodingForTypeImpl( 8274 getObjCIdType(), S, 8275 Options.keepingOnly(ObjCEncOptions() 8276 .setExpandPointedToStructures() 8277 .setExpandStructures()), 8278 FD); 8279 if (FD || Options.EncodingProperty() || Options.EncodeClassNames()) { 8280 // Note that we do extended encoding of protocol qualifier list 8281 // Only when doing ivar or property encoding. 8282 S += '"'; 8283 for (const auto *I : OPT->quals()) { 8284 S += '<'; 8285 S += I->getObjCRuntimeNameAsString(); 8286 S += '>'; 8287 } 8288 S += '"'; 8289 } 8290 return; 8291 } 8292 8293 S += '@'; 8294 if (OPT->getInterfaceDecl() && 8295 (FD || Options.EncodingProperty() || Options.EncodeClassNames())) { 8296 S += '"'; 8297 S += OPT->getInterfaceDecl()->getObjCRuntimeNameAsString(); 8298 for (const auto *I : OPT->quals()) { 8299 S += '<'; 8300 S += I->getObjCRuntimeNameAsString(); 8301 S += '>'; 8302 } 8303 S += '"'; 8304 } 8305 return; 8306 } 8307 8308 // gcc just blithely ignores member pointers. 8309 // FIXME: we should do better than that. 'M' is available. 8310 case Type::MemberPointer: 8311 // This matches gcc's encoding, even though technically it is insufficient. 8312 //FIXME. We should do a better job than gcc. 8313 case Type::Vector: 8314 case Type::ExtVector: 8315 // Until we have a coherent encoding of these three types, issue warning. 8316 if (NotEncodedT) 8317 *NotEncodedT = T; 8318 return; 8319 8320 case Type::ConstantMatrix: 8321 if (NotEncodedT) 8322 *NotEncodedT = T; 8323 return; 8324 8325 case Type::BitInt: 8326 if (NotEncodedT) 8327 *NotEncodedT = T; 8328 return; 8329 8330 // We could see an undeduced auto type here during error recovery. 8331 // Just ignore it. 8332 case Type::Auto: 8333 case Type::DeducedTemplateSpecialization: 8334 return; 8335 8336 case Type::Pipe: 8337 #define ABSTRACT_TYPE(KIND, BASE) 8338 #define TYPE(KIND, BASE) 8339 #define DEPENDENT_TYPE(KIND, BASE) \ 8340 case Type::KIND: 8341 #define NON_CANONICAL_TYPE(KIND, BASE) \ 8342 case Type::KIND: 8343 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(KIND, BASE) \ 8344 case Type::KIND: 8345 #include "clang/AST/TypeNodes.inc" 8346 llvm_unreachable("@encode for dependent type!"); 8347 } 8348 llvm_unreachable("bad type kind!"); 8349 } 8350 8351 void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *RDecl, 8352 std::string &S, 8353 const FieldDecl *FD, 8354 bool includeVBases, 8355 QualType *NotEncodedT) const { 8356 assert(RDecl && "Expected non-null RecordDecl"); 8357 assert(!RDecl->isUnion() && "Should not be called for unions"); 8358 if (!RDecl->getDefinition() || RDecl->getDefinition()->isInvalidDecl()) 8359 return; 8360 8361 const auto *CXXRec = dyn_cast<CXXRecordDecl>(RDecl); 8362 std::multimap<uint64_t, NamedDecl *> FieldOrBaseOffsets; 8363 const ASTRecordLayout &layout = getASTRecordLayout(RDecl); 8364 8365 if (CXXRec) { 8366 for (const auto &BI : CXXRec->bases()) { 8367 if (!BI.isVirtual()) { 8368 CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl(); 8369 if (base->isEmpty()) 8370 continue; 8371 uint64_t offs = toBits(layout.getBaseClassOffset(base)); 8372 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8373 std::make_pair(offs, base)); 8374 } 8375 } 8376 } 8377 8378 unsigned i = 0; 8379 for (FieldDecl *Field : RDecl->fields()) { 8380 if (!Field->isZeroLengthBitField(*this) && Field->isZeroSize(*this)) 8381 continue; 8382 uint64_t offs = layout.getFieldOffset(i); 8383 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8384 std::make_pair(offs, Field)); 8385 ++i; 8386 } 8387 8388 if (CXXRec && includeVBases) { 8389 for (const auto &BI : CXXRec->vbases()) { 8390 CXXRecordDecl *base = BI.getType()->getAsCXXRecordDecl(); 8391 if (base->isEmpty()) 8392 continue; 8393 uint64_t offs = toBits(layout.getVBaseClassOffset(base)); 8394 if (offs >= uint64_t(toBits(layout.getNonVirtualSize())) && 8395 FieldOrBaseOffsets.find(offs) == FieldOrBaseOffsets.end()) 8396 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.end(), 8397 std::make_pair(offs, base)); 8398 } 8399 } 8400 8401 CharUnits size; 8402 if (CXXRec) { 8403 size = includeVBases ? layout.getSize() : layout.getNonVirtualSize(); 8404 } else { 8405 size = layout.getSize(); 8406 } 8407 8408 #ifndef NDEBUG 8409 uint64_t CurOffs = 0; 8410 #endif 8411 std::multimap<uint64_t, NamedDecl *>::iterator 8412 CurLayObj = FieldOrBaseOffsets.begin(); 8413 8414 if (CXXRec && CXXRec->isDynamicClass() && 8415 (CurLayObj == FieldOrBaseOffsets.end() || CurLayObj->first != 0)) { 8416 if (FD) { 8417 S += "\"_vptr$"; 8418 std::string recname = CXXRec->getNameAsString(); 8419 if (recname.empty()) recname = "?"; 8420 S += recname; 8421 S += '"'; 8422 } 8423 S += "^^?"; 8424 #ifndef NDEBUG 8425 CurOffs += getTypeSize(VoidPtrTy); 8426 #endif 8427 } 8428 8429 if (!RDecl->hasFlexibleArrayMember()) { 8430 // Mark the end of the structure. 8431 uint64_t offs = toBits(size); 8432 FieldOrBaseOffsets.insert(FieldOrBaseOffsets.upper_bound(offs), 8433 std::make_pair(offs, nullptr)); 8434 } 8435 8436 for (; CurLayObj != FieldOrBaseOffsets.end(); ++CurLayObj) { 8437 #ifndef NDEBUG 8438 assert(CurOffs <= CurLayObj->first); 8439 if (CurOffs < CurLayObj->first) { 8440 uint64_t padding = CurLayObj->first - CurOffs; 8441 // FIXME: There doesn't seem to be a way to indicate in the encoding that 8442 // packing/alignment of members is different that normal, in which case 8443 // the encoding will be out-of-sync with the real layout. 8444 // If the runtime switches to just consider the size of types without 8445 // taking into account alignment, we could make padding explicit in the 8446 // encoding (e.g. using arrays of chars). The encoding strings would be 8447 // longer then though. 8448 CurOffs += padding; 8449 } 8450 #endif 8451 8452 NamedDecl *dcl = CurLayObj->second; 8453 if (!dcl) 8454 break; // reached end of structure. 8455 8456 if (auto *base = dyn_cast<CXXRecordDecl>(dcl)) { 8457 // We expand the bases without their virtual bases since those are going 8458 // in the initial structure. Note that this differs from gcc which 8459 // expands virtual bases each time one is encountered in the hierarchy, 8460 // making the encoding type bigger than it really is. 8461 getObjCEncodingForStructureImpl(base, S, FD, /*includeVBases*/false, 8462 NotEncodedT); 8463 assert(!base->isEmpty()); 8464 #ifndef NDEBUG 8465 CurOffs += toBits(getASTRecordLayout(base).getNonVirtualSize()); 8466 #endif 8467 } else { 8468 const auto *field = cast<FieldDecl>(dcl); 8469 if (FD) { 8470 S += '"'; 8471 S += field->getNameAsString(); 8472 S += '"'; 8473 } 8474 8475 if (field->isBitField()) { 8476 EncodeBitField(this, S, field->getType(), field); 8477 #ifndef NDEBUG 8478 CurOffs += field->getBitWidthValue(*this); 8479 #endif 8480 } else { 8481 QualType qt = field->getType(); 8482 getLegacyIntegralTypeEncoding(qt); 8483 getObjCEncodingForTypeImpl( 8484 qt, S, ObjCEncOptions().setExpandStructures().setIsStructField(), 8485 FD, NotEncodedT); 8486 #ifndef NDEBUG 8487 CurOffs += getTypeSize(field->getType()); 8488 #endif 8489 } 8490 } 8491 } 8492 } 8493 8494 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, 8495 std::string& S) const { 8496 if (QT & Decl::OBJC_TQ_In) 8497 S += 'n'; 8498 if (QT & Decl::OBJC_TQ_Inout) 8499 S += 'N'; 8500 if (QT & Decl::OBJC_TQ_Out) 8501 S += 'o'; 8502 if (QT & Decl::OBJC_TQ_Bycopy) 8503 S += 'O'; 8504 if (QT & Decl::OBJC_TQ_Byref) 8505 S += 'R'; 8506 if (QT & Decl::OBJC_TQ_Oneway) 8507 S += 'V'; 8508 } 8509 8510 TypedefDecl *ASTContext::getObjCIdDecl() const { 8511 if (!ObjCIdDecl) { 8512 QualType T = getObjCObjectType(ObjCBuiltinIdTy, {}, {}); 8513 T = getObjCObjectPointerType(T); 8514 ObjCIdDecl = buildImplicitTypedef(T, "id"); 8515 } 8516 return ObjCIdDecl; 8517 } 8518 8519 TypedefDecl *ASTContext::getObjCSelDecl() const { 8520 if (!ObjCSelDecl) { 8521 QualType T = getPointerType(ObjCBuiltinSelTy); 8522 ObjCSelDecl = buildImplicitTypedef(T, "SEL"); 8523 } 8524 return ObjCSelDecl; 8525 } 8526 8527 TypedefDecl *ASTContext::getObjCClassDecl() const { 8528 if (!ObjCClassDecl) { 8529 QualType T = getObjCObjectType(ObjCBuiltinClassTy, {}, {}); 8530 T = getObjCObjectPointerType(T); 8531 ObjCClassDecl = buildImplicitTypedef(T, "Class"); 8532 } 8533 return ObjCClassDecl; 8534 } 8535 8536 ObjCInterfaceDecl *ASTContext::getObjCProtocolDecl() const { 8537 if (!ObjCProtocolClassDecl) { 8538 ObjCProtocolClassDecl 8539 = ObjCInterfaceDecl::Create(*this, getTranslationUnitDecl(), 8540 SourceLocation(), 8541 &Idents.get("Protocol"), 8542 /*typeParamList=*/nullptr, 8543 /*PrevDecl=*/nullptr, 8544 SourceLocation(), true); 8545 } 8546 8547 return ObjCProtocolClassDecl; 8548 } 8549 8550 //===----------------------------------------------------------------------===// 8551 // __builtin_va_list Construction Functions 8552 //===----------------------------------------------------------------------===// 8553 8554 static TypedefDecl *CreateCharPtrNamedVaListDecl(const ASTContext *Context, 8555 StringRef Name) { 8556 // typedef char* __builtin[_ms]_va_list; 8557 QualType T = Context->getPointerType(Context->CharTy); 8558 return Context->buildImplicitTypedef(T, Name); 8559 } 8560 8561 static TypedefDecl *CreateMSVaListDecl(const ASTContext *Context) { 8562 return CreateCharPtrNamedVaListDecl(Context, "__builtin_ms_va_list"); 8563 } 8564 8565 static TypedefDecl *CreateCharPtrBuiltinVaListDecl(const ASTContext *Context) { 8566 return CreateCharPtrNamedVaListDecl(Context, "__builtin_va_list"); 8567 } 8568 8569 static TypedefDecl *CreateVoidPtrBuiltinVaListDecl(const ASTContext *Context) { 8570 // typedef void* __builtin_va_list; 8571 QualType T = Context->getPointerType(Context->VoidTy); 8572 return Context->buildImplicitTypedef(T, "__builtin_va_list"); 8573 } 8574 8575 static TypedefDecl * 8576 CreateAArch64ABIBuiltinVaListDecl(const ASTContext *Context) { 8577 // struct __va_list 8578 RecordDecl *VaListTagDecl = Context->buildImplicitRecord("__va_list"); 8579 if (Context->getLangOpts().CPlusPlus) { 8580 // namespace std { struct __va_list { 8581 auto *NS = NamespaceDecl::Create( 8582 const_cast<ASTContext &>(*Context), Context->getTranslationUnitDecl(), 8583 /*Inline*/ false, SourceLocation(), SourceLocation(), 8584 &Context->Idents.get("std"), 8585 /*PrevDecl*/ nullptr); 8586 NS->setImplicit(); 8587 VaListTagDecl->setDeclContext(NS); 8588 } 8589 8590 VaListTagDecl->startDefinition(); 8591 8592 const size_t NumFields = 5; 8593 QualType FieldTypes[NumFields]; 8594 const char *FieldNames[NumFields]; 8595 8596 // void *__stack; 8597 FieldTypes[0] = Context->getPointerType(Context->VoidTy); 8598 FieldNames[0] = "__stack"; 8599 8600 // void *__gr_top; 8601 FieldTypes[1] = Context->getPointerType(Context->VoidTy); 8602 FieldNames[1] = "__gr_top"; 8603 8604 // void *__vr_top; 8605 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8606 FieldNames[2] = "__vr_top"; 8607 8608 // int __gr_offs; 8609 FieldTypes[3] = Context->IntTy; 8610 FieldNames[3] = "__gr_offs"; 8611 8612 // int __vr_offs; 8613 FieldTypes[4] = Context->IntTy; 8614 FieldNames[4] = "__vr_offs"; 8615 8616 // Create fields 8617 for (unsigned i = 0; i < NumFields; ++i) { 8618 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8619 VaListTagDecl, 8620 SourceLocation(), 8621 SourceLocation(), 8622 &Context->Idents.get(FieldNames[i]), 8623 FieldTypes[i], /*TInfo=*/nullptr, 8624 /*BitWidth=*/nullptr, 8625 /*Mutable=*/false, 8626 ICIS_NoInit); 8627 Field->setAccess(AS_public); 8628 VaListTagDecl->addDecl(Field); 8629 } 8630 VaListTagDecl->completeDefinition(); 8631 Context->VaListTagDecl = VaListTagDecl; 8632 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8633 8634 // } __builtin_va_list; 8635 return Context->buildImplicitTypedef(VaListTagType, "__builtin_va_list"); 8636 } 8637 8638 static TypedefDecl *CreatePowerABIBuiltinVaListDecl(const ASTContext *Context) { 8639 // typedef struct __va_list_tag { 8640 RecordDecl *VaListTagDecl; 8641 8642 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8643 VaListTagDecl->startDefinition(); 8644 8645 const size_t NumFields = 5; 8646 QualType FieldTypes[NumFields]; 8647 const char *FieldNames[NumFields]; 8648 8649 // unsigned char gpr; 8650 FieldTypes[0] = Context->UnsignedCharTy; 8651 FieldNames[0] = "gpr"; 8652 8653 // unsigned char fpr; 8654 FieldTypes[1] = Context->UnsignedCharTy; 8655 FieldNames[1] = "fpr"; 8656 8657 // unsigned short reserved; 8658 FieldTypes[2] = Context->UnsignedShortTy; 8659 FieldNames[2] = "reserved"; 8660 8661 // void* overflow_arg_area; 8662 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8663 FieldNames[3] = "overflow_arg_area"; 8664 8665 // void* reg_save_area; 8666 FieldTypes[4] = Context->getPointerType(Context->VoidTy); 8667 FieldNames[4] = "reg_save_area"; 8668 8669 // Create fields 8670 for (unsigned i = 0; i < NumFields; ++i) { 8671 FieldDecl *Field = FieldDecl::Create(*Context, VaListTagDecl, 8672 SourceLocation(), 8673 SourceLocation(), 8674 &Context->Idents.get(FieldNames[i]), 8675 FieldTypes[i], /*TInfo=*/nullptr, 8676 /*BitWidth=*/nullptr, 8677 /*Mutable=*/false, 8678 ICIS_NoInit); 8679 Field->setAccess(AS_public); 8680 VaListTagDecl->addDecl(Field); 8681 } 8682 VaListTagDecl->completeDefinition(); 8683 Context->VaListTagDecl = VaListTagDecl; 8684 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8685 8686 // } __va_list_tag; 8687 TypedefDecl *VaListTagTypedefDecl = 8688 Context->buildImplicitTypedef(VaListTagType, "__va_list_tag"); 8689 8690 QualType VaListTagTypedefType = 8691 Context->getTypedefType(VaListTagTypedefDecl); 8692 8693 // typedef __va_list_tag __builtin_va_list[1]; 8694 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8695 QualType VaListTagArrayType 8696 = Context->getConstantArrayType(VaListTagTypedefType, 8697 Size, nullptr, ArrayType::Normal, 0); 8698 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8699 } 8700 8701 static TypedefDecl * 8702 CreateX86_64ABIBuiltinVaListDecl(const ASTContext *Context) { 8703 // struct __va_list_tag { 8704 RecordDecl *VaListTagDecl; 8705 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8706 VaListTagDecl->startDefinition(); 8707 8708 const size_t NumFields = 4; 8709 QualType FieldTypes[NumFields]; 8710 const char *FieldNames[NumFields]; 8711 8712 // unsigned gp_offset; 8713 FieldTypes[0] = Context->UnsignedIntTy; 8714 FieldNames[0] = "gp_offset"; 8715 8716 // unsigned fp_offset; 8717 FieldTypes[1] = Context->UnsignedIntTy; 8718 FieldNames[1] = "fp_offset"; 8719 8720 // void* overflow_arg_area; 8721 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8722 FieldNames[2] = "overflow_arg_area"; 8723 8724 // void* reg_save_area; 8725 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8726 FieldNames[3] = "reg_save_area"; 8727 8728 // Create fields 8729 for (unsigned i = 0; i < NumFields; ++i) { 8730 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8731 VaListTagDecl, 8732 SourceLocation(), 8733 SourceLocation(), 8734 &Context->Idents.get(FieldNames[i]), 8735 FieldTypes[i], /*TInfo=*/nullptr, 8736 /*BitWidth=*/nullptr, 8737 /*Mutable=*/false, 8738 ICIS_NoInit); 8739 Field->setAccess(AS_public); 8740 VaListTagDecl->addDecl(Field); 8741 } 8742 VaListTagDecl->completeDefinition(); 8743 Context->VaListTagDecl = VaListTagDecl; 8744 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8745 8746 // }; 8747 8748 // typedef struct __va_list_tag __builtin_va_list[1]; 8749 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8750 QualType VaListTagArrayType = Context->getConstantArrayType( 8751 VaListTagType, Size, nullptr, ArrayType::Normal, 0); 8752 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8753 } 8754 8755 static TypedefDecl *CreatePNaClABIBuiltinVaListDecl(const ASTContext *Context) { 8756 // typedef int __builtin_va_list[4]; 8757 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 4); 8758 QualType IntArrayType = Context->getConstantArrayType( 8759 Context->IntTy, Size, nullptr, ArrayType::Normal, 0); 8760 return Context->buildImplicitTypedef(IntArrayType, "__builtin_va_list"); 8761 } 8762 8763 static TypedefDecl * 8764 CreateAAPCSABIBuiltinVaListDecl(const ASTContext *Context) { 8765 // struct __va_list 8766 RecordDecl *VaListDecl = Context->buildImplicitRecord("__va_list"); 8767 if (Context->getLangOpts().CPlusPlus) { 8768 // namespace std { struct __va_list { 8769 NamespaceDecl *NS; 8770 NS = NamespaceDecl::Create(const_cast<ASTContext &>(*Context), 8771 Context->getTranslationUnitDecl(), 8772 /*Inline*/false, SourceLocation(), 8773 SourceLocation(), &Context->Idents.get("std"), 8774 /*PrevDecl*/ nullptr); 8775 NS->setImplicit(); 8776 VaListDecl->setDeclContext(NS); 8777 } 8778 8779 VaListDecl->startDefinition(); 8780 8781 // void * __ap; 8782 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8783 VaListDecl, 8784 SourceLocation(), 8785 SourceLocation(), 8786 &Context->Idents.get("__ap"), 8787 Context->getPointerType(Context->VoidTy), 8788 /*TInfo=*/nullptr, 8789 /*BitWidth=*/nullptr, 8790 /*Mutable=*/false, 8791 ICIS_NoInit); 8792 Field->setAccess(AS_public); 8793 VaListDecl->addDecl(Field); 8794 8795 // }; 8796 VaListDecl->completeDefinition(); 8797 Context->VaListTagDecl = VaListDecl; 8798 8799 // typedef struct __va_list __builtin_va_list; 8800 QualType T = Context->getRecordType(VaListDecl); 8801 return Context->buildImplicitTypedef(T, "__builtin_va_list"); 8802 } 8803 8804 static TypedefDecl * 8805 CreateSystemZBuiltinVaListDecl(const ASTContext *Context) { 8806 // struct __va_list_tag { 8807 RecordDecl *VaListTagDecl; 8808 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8809 VaListTagDecl->startDefinition(); 8810 8811 const size_t NumFields = 4; 8812 QualType FieldTypes[NumFields]; 8813 const char *FieldNames[NumFields]; 8814 8815 // long __gpr; 8816 FieldTypes[0] = Context->LongTy; 8817 FieldNames[0] = "__gpr"; 8818 8819 // long __fpr; 8820 FieldTypes[1] = Context->LongTy; 8821 FieldNames[1] = "__fpr"; 8822 8823 // void *__overflow_arg_area; 8824 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8825 FieldNames[2] = "__overflow_arg_area"; 8826 8827 // void *__reg_save_area; 8828 FieldTypes[3] = Context->getPointerType(Context->VoidTy); 8829 FieldNames[3] = "__reg_save_area"; 8830 8831 // Create fields 8832 for (unsigned i = 0; i < NumFields; ++i) { 8833 FieldDecl *Field = FieldDecl::Create(const_cast<ASTContext &>(*Context), 8834 VaListTagDecl, 8835 SourceLocation(), 8836 SourceLocation(), 8837 &Context->Idents.get(FieldNames[i]), 8838 FieldTypes[i], /*TInfo=*/nullptr, 8839 /*BitWidth=*/nullptr, 8840 /*Mutable=*/false, 8841 ICIS_NoInit); 8842 Field->setAccess(AS_public); 8843 VaListTagDecl->addDecl(Field); 8844 } 8845 VaListTagDecl->completeDefinition(); 8846 Context->VaListTagDecl = VaListTagDecl; 8847 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8848 8849 // }; 8850 8851 // typedef __va_list_tag __builtin_va_list[1]; 8852 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8853 QualType VaListTagArrayType = Context->getConstantArrayType( 8854 VaListTagType, Size, nullptr, ArrayType::Normal, 0); 8855 8856 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8857 } 8858 8859 static TypedefDecl *CreateHexagonBuiltinVaListDecl(const ASTContext *Context) { 8860 // typedef struct __va_list_tag { 8861 RecordDecl *VaListTagDecl; 8862 VaListTagDecl = Context->buildImplicitRecord("__va_list_tag"); 8863 VaListTagDecl->startDefinition(); 8864 8865 const size_t NumFields = 3; 8866 QualType FieldTypes[NumFields]; 8867 const char *FieldNames[NumFields]; 8868 8869 // void *CurrentSavedRegisterArea; 8870 FieldTypes[0] = Context->getPointerType(Context->VoidTy); 8871 FieldNames[0] = "__current_saved_reg_area_pointer"; 8872 8873 // void *SavedRegAreaEnd; 8874 FieldTypes[1] = Context->getPointerType(Context->VoidTy); 8875 FieldNames[1] = "__saved_reg_area_end_pointer"; 8876 8877 // void *OverflowArea; 8878 FieldTypes[2] = Context->getPointerType(Context->VoidTy); 8879 FieldNames[2] = "__overflow_area_pointer"; 8880 8881 // Create fields 8882 for (unsigned i = 0; i < NumFields; ++i) { 8883 FieldDecl *Field = FieldDecl::Create( 8884 const_cast<ASTContext &>(*Context), VaListTagDecl, SourceLocation(), 8885 SourceLocation(), &Context->Idents.get(FieldNames[i]), FieldTypes[i], 8886 /*TInfo=*/nullptr, 8887 /*BitWidth=*/nullptr, 8888 /*Mutable=*/false, ICIS_NoInit); 8889 Field->setAccess(AS_public); 8890 VaListTagDecl->addDecl(Field); 8891 } 8892 VaListTagDecl->completeDefinition(); 8893 Context->VaListTagDecl = VaListTagDecl; 8894 QualType VaListTagType = Context->getRecordType(VaListTagDecl); 8895 8896 // } __va_list_tag; 8897 TypedefDecl *VaListTagTypedefDecl = 8898 Context->buildImplicitTypedef(VaListTagType, "__va_list_tag"); 8899 8900 QualType VaListTagTypedefType = Context->getTypedefType(VaListTagTypedefDecl); 8901 8902 // typedef __va_list_tag __builtin_va_list[1]; 8903 llvm::APInt Size(Context->getTypeSize(Context->getSizeType()), 1); 8904 QualType VaListTagArrayType = Context->getConstantArrayType( 8905 VaListTagTypedefType, Size, nullptr, ArrayType::Normal, 0); 8906 8907 return Context->buildImplicitTypedef(VaListTagArrayType, "__builtin_va_list"); 8908 } 8909 8910 static TypedefDecl *CreateVaListDecl(const ASTContext *Context, 8911 TargetInfo::BuiltinVaListKind Kind) { 8912 switch (Kind) { 8913 case TargetInfo::CharPtrBuiltinVaList: 8914 return CreateCharPtrBuiltinVaListDecl(Context); 8915 case TargetInfo::VoidPtrBuiltinVaList: 8916 return CreateVoidPtrBuiltinVaListDecl(Context); 8917 case TargetInfo::AArch64ABIBuiltinVaList: 8918 return CreateAArch64ABIBuiltinVaListDecl(Context); 8919 case TargetInfo::PowerABIBuiltinVaList: 8920 return CreatePowerABIBuiltinVaListDecl(Context); 8921 case TargetInfo::X86_64ABIBuiltinVaList: 8922 return CreateX86_64ABIBuiltinVaListDecl(Context); 8923 case TargetInfo::PNaClABIBuiltinVaList: 8924 return CreatePNaClABIBuiltinVaListDecl(Context); 8925 case TargetInfo::AAPCSABIBuiltinVaList: 8926 return CreateAAPCSABIBuiltinVaListDecl(Context); 8927 case TargetInfo::SystemZBuiltinVaList: 8928 return CreateSystemZBuiltinVaListDecl(Context); 8929 case TargetInfo::HexagonBuiltinVaList: 8930 return CreateHexagonBuiltinVaListDecl(Context); 8931 } 8932 8933 llvm_unreachable("Unhandled __builtin_va_list type kind"); 8934 } 8935 8936 TypedefDecl *ASTContext::getBuiltinVaListDecl() const { 8937 if (!BuiltinVaListDecl) { 8938 BuiltinVaListDecl = CreateVaListDecl(this, Target->getBuiltinVaListKind()); 8939 assert(BuiltinVaListDecl->isImplicit()); 8940 } 8941 8942 return BuiltinVaListDecl; 8943 } 8944 8945 Decl *ASTContext::getVaListTagDecl() const { 8946 // Force the creation of VaListTagDecl by building the __builtin_va_list 8947 // declaration. 8948 if (!VaListTagDecl) 8949 (void)getBuiltinVaListDecl(); 8950 8951 return VaListTagDecl; 8952 } 8953 8954 TypedefDecl *ASTContext::getBuiltinMSVaListDecl() const { 8955 if (!BuiltinMSVaListDecl) 8956 BuiltinMSVaListDecl = CreateMSVaListDecl(this); 8957 8958 return BuiltinMSVaListDecl; 8959 } 8960 8961 bool ASTContext::canBuiltinBeRedeclared(const FunctionDecl *FD) const { 8962 return BuiltinInfo.canBeRedeclared(FD->getBuiltinID()); 8963 } 8964 8965 void ASTContext::setObjCConstantStringInterface(ObjCInterfaceDecl *Decl) { 8966 assert(ObjCConstantStringType.isNull() && 8967 "'NSConstantString' type already set!"); 8968 8969 ObjCConstantStringType = getObjCInterfaceType(Decl); 8970 } 8971 8972 /// Retrieve the template name that corresponds to a non-empty 8973 /// lookup. 8974 TemplateName 8975 ASTContext::getOverloadedTemplateName(UnresolvedSetIterator Begin, 8976 UnresolvedSetIterator End) const { 8977 unsigned size = End - Begin; 8978 assert(size > 1 && "set is not overloaded!"); 8979 8980 void *memory = Allocate(sizeof(OverloadedTemplateStorage) + 8981 size * sizeof(FunctionTemplateDecl*)); 8982 auto *OT = new (memory) OverloadedTemplateStorage(size); 8983 8984 NamedDecl **Storage = OT->getStorage(); 8985 for (UnresolvedSetIterator I = Begin; I != End; ++I) { 8986 NamedDecl *D = *I; 8987 assert(isa<FunctionTemplateDecl>(D) || 8988 isa<UnresolvedUsingValueDecl>(D) || 8989 (isa<UsingShadowDecl>(D) && 8990 isa<FunctionTemplateDecl>(D->getUnderlyingDecl()))); 8991 *Storage++ = D; 8992 } 8993 8994 return TemplateName(OT); 8995 } 8996 8997 /// Retrieve a template name representing an unqualified-id that has been 8998 /// assumed to name a template for ADL purposes. 8999 TemplateName ASTContext::getAssumedTemplateName(DeclarationName Name) const { 9000 auto *OT = new (*this) AssumedTemplateStorage(Name); 9001 return TemplateName(OT); 9002 } 9003 9004 /// Retrieve the template name that represents a qualified 9005 /// template name such as \c std::vector. 9006 TemplateName ASTContext::getQualifiedTemplateName(NestedNameSpecifier *NNS, 9007 bool TemplateKeyword, 9008 TemplateName Template) const { 9009 assert(NNS && "Missing nested-name-specifier in qualified template name"); 9010 9011 // FIXME: Canonicalization? 9012 llvm::FoldingSetNodeID ID; 9013 QualifiedTemplateName::Profile(ID, NNS, TemplateKeyword, Template); 9014 9015 void *InsertPos = nullptr; 9016 QualifiedTemplateName *QTN = 9017 QualifiedTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9018 if (!QTN) { 9019 QTN = new (*this, alignof(QualifiedTemplateName)) 9020 QualifiedTemplateName(NNS, TemplateKeyword, Template); 9021 QualifiedTemplateNames.InsertNode(QTN, InsertPos); 9022 } 9023 9024 return TemplateName(QTN); 9025 } 9026 9027 /// Retrieve the template name that represents a dependent 9028 /// template name such as \c MetaFun::template apply. 9029 TemplateName 9030 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS, 9031 const IdentifierInfo *Name) const { 9032 assert((!NNS || NNS->isDependent()) && 9033 "Nested name specifier must be dependent"); 9034 9035 llvm::FoldingSetNodeID ID; 9036 DependentTemplateName::Profile(ID, NNS, Name); 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, Name); 9049 } else { 9050 TemplateName Canon = getDependentTemplateName(CanonNNS, Name); 9051 QTN = new (*this, alignof(DependentTemplateName)) 9052 DependentTemplateName(NNS, Name, Canon); 9053 DependentTemplateName *CheckQTN = 9054 DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9055 assert(!CheckQTN && "Dependent type name canonicalization broken"); 9056 (void)CheckQTN; 9057 } 9058 9059 DependentTemplateNames.InsertNode(QTN, InsertPos); 9060 return TemplateName(QTN); 9061 } 9062 9063 /// Retrieve the template name that represents a dependent 9064 /// template name such as \c MetaFun::template operator+. 9065 TemplateName 9066 ASTContext::getDependentTemplateName(NestedNameSpecifier *NNS, 9067 OverloadedOperatorKind Operator) const { 9068 assert((!NNS || NNS->isDependent()) && 9069 "Nested name specifier must be dependent"); 9070 9071 llvm::FoldingSetNodeID ID; 9072 DependentTemplateName::Profile(ID, NNS, Operator); 9073 9074 void *InsertPos = nullptr; 9075 DependentTemplateName *QTN 9076 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9077 9078 if (QTN) 9079 return TemplateName(QTN); 9080 9081 NestedNameSpecifier *CanonNNS = getCanonicalNestedNameSpecifier(NNS); 9082 if (CanonNNS == NNS) { 9083 QTN = new (*this, alignof(DependentTemplateName)) 9084 DependentTemplateName(NNS, Operator); 9085 } else { 9086 TemplateName Canon = getDependentTemplateName(CanonNNS, Operator); 9087 QTN = new (*this, alignof(DependentTemplateName)) 9088 DependentTemplateName(NNS, Operator, Canon); 9089 9090 DependentTemplateName *CheckQTN 9091 = DependentTemplateNames.FindNodeOrInsertPos(ID, InsertPos); 9092 assert(!CheckQTN && "Dependent template name canonicalization broken"); 9093 (void)CheckQTN; 9094 } 9095 9096 DependentTemplateNames.InsertNode(QTN, InsertPos); 9097 return TemplateName(QTN); 9098 } 9099 9100 TemplateName 9101 ASTContext::getSubstTemplateTemplateParm(TemplateTemplateParmDecl *param, 9102 TemplateName replacement) const { 9103 llvm::FoldingSetNodeID ID; 9104 SubstTemplateTemplateParmStorage::Profile(ID, param, replacement); 9105 9106 void *insertPos = nullptr; 9107 SubstTemplateTemplateParmStorage *subst 9108 = SubstTemplateTemplateParms.FindNodeOrInsertPos(ID, insertPos); 9109 9110 if (!subst) { 9111 subst = new (*this) SubstTemplateTemplateParmStorage(param, replacement); 9112 SubstTemplateTemplateParms.InsertNode(subst, insertPos); 9113 } 9114 9115 return TemplateName(subst); 9116 } 9117 9118 TemplateName 9119 ASTContext::getSubstTemplateTemplateParmPack(TemplateTemplateParmDecl *Param, 9120 const TemplateArgument &ArgPack) const { 9121 auto &Self = const_cast<ASTContext &>(*this); 9122 llvm::FoldingSetNodeID ID; 9123 SubstTemplateTemplateParmPackStorage::Profile(ID, Self, Param, ArgPack); 9124 9125 void *InsertPos = nullptr; 9126 SubstTemplateTemplateParmPackStorage *Subst 9127 = SubstTemplateTemplateParmPacks.FindNodeOrInsertPos(ID, InsertPos); 9128 9129 if (!Subst) { 9130 Subst = new (*this) SubstTemplateTemplateParmPackStorage(Param, 9131 ArgPack.pack_size(), 9132 ArgPack.pack_begin()); 9133 SubstTemplateTemplateParmPacks.InsertNode(Subst, InsertPos); 9134 } 9135 9136 return TemplateName(Subst); 9137 } 9138 9139 /// getFromTargetType - Given one of the integer types provided by 9140 /// TargetInfo, produce the corresponding type. The unsigned @p Type 9141 /// is actually a value of type @c TargetInfo::IntType. 9142 CanQualType ASTContext::getFromTargetType(unsigned Type) const { 9143 switch (Type) { 9144 case TargetInfo::NoInt: return {}; 9145 case TargetInfo::SignedChar: return SignedCharTy; 9146 case TargetInfo::UnsignedChar: return UnsignedCharTy; 9147 case TargetInfo::SignedShort: return ShortTy; 9148 case TargetInfo::UnsignedShort: return UnsignedShortTy; 9149 case TargetInfo::SignedInt: return IntTy; 9150 case TargetInfo::UnsignedInt: return UnsignedIntTy; 9151 case TargetInfo::SignedLong: return LongTy; 9152 case TargetInfo::UnsignedLong: return UnsignedLongTy; 9153 case TargetInfo::SignedLongLong: return LongLongTy; 9154 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy; 9155 } 9156 9157 llvm_unreachable("Unhandled TargetInfo::IntType value"); 9158 } 9159 9160 //===----------------------------------------------------------------------===// 9161 // Type Predicates. 9162 //===----------------------------------------------------------------------===// 9163 9164 /// getObjCGCAttr - Returns one of GCNone, Weak or Strong objc's 9165 /// garbage collection attribute. 9166 /// 9167 Qualifiers::GC ASTContext::getObjCGCAttrKind(QualType Ty) const { 9168 if (getLangOpts().getGC() == LangOptions::NonGC) 9169 return Qualifiers::GCNone; 9170 9171 assert(getLangOpts().ObjC); 9172 Qualifiers::GC GCAttrs = Ty.getObjCGCAttr(); 9173 9174 // Default behaviour under objective-C's gc is for ObjC pointers 9175 // (or pointers to them) be treated as though they were declared 9176 // as __strong. 9177 if (GCAttrs == Qualifiers::GCNone) { 9178 if (Ty->isObjCObjectPointerType() || Ty->isBlockPointerType()) 9179 return Qualifiers::Strong; 9180 else if (Ty->isPointerType()) 9181 return getObjCGCAttrKind(Ty->castAs<PointerType>()->getPointeeType()); 9182 } else { 9183 // It's not valid to set GC attributes on anything that isn't a 9184 // pointer. 9185 #ifndef NDEBUG 9186 QualType CT = Ty->getCanonicalTypeInternal(); 9187 while (const auto *AT = dyn_cast<ArrayType>(CT)) 9188 CT = AT->getElementType(); 9189 assert(CT->isAnyPointerType() || CT->isBlockPointerType()); 9190 #endif 9191 } 9192 return GCAttrs; 9193 } 9194 9195 //===----------------------------------------------------------------------===// 9196 // Type Compatibility Testing 9197 //===----------------------------------------------------------------------===// 9198 9199 /// areCompatVectorTypes - Return true if the two specified vector types are 9200 /// compatible. 9201 static bool areCompatVectorTypes(const VectorType *LHS, 9202 const VectorType *RHS) { 9203 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified()); 9204 return LHS->getElementType() == RHS->getElementType() && 9205 LHS->getNumElements() == RHS->getNumElements(); 9206 } 9207 9208 /// areCompatMatrixTypes - Return true if the two specified matrix types are 9209 /// compatible. 9210 static bool areCompatMatrixTypes(const ConstantMatrixType *LHS, 9211 const ConstantMatrixType *RHS) { 9212 assert(LHS->isCanonicalUnqualified() && RHS->isCanonicalUnqualified()); 9213 return LHS->getElementType() == RHS->getElementType() && 9214 LHS->getNumRows() == RHS->getNumRows() && 9215 LHS->getNumColumns() == RHS->getNumColumns(); 9216 } 9217 9218 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, 9219 QualType SecondVec) { 9220 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); 9221 assert(SecondVec->isVectorType() && "SecondVec should be a vector type"); 9222 9223 if (hasSameUnqualifiedType(FirstVec, SecondVec)) 9224 return true; 9225 9226 // Treat Neon vector types and most AltiVec vector types as if they are the 9227 // equivalent GCC vector types. 9228 const auto *First = FirstVec->castAs<VectorType>(); 9229 const auto *Second = SecondVec->castAs<VectorType>(); 9230 if (First->getNumElements() == Second->getNumElements() && 9231 hasSameType(First->getElementType(), Second->getElementType()) && 9232 First->getVectorKind() != VectorType::AltiVecPixel && 9233 First->getVectorKind() != VectorType::AltiVecBool && 9234 Second->getVectorKind() != VectorType::AltiVecPixel && 9235 Second->getVectorKind() != VectorType::AltiVecBool && 9236 First->getVectorKind() != VectorType::SveFixedLengthDataVector && 9237 First->getVectorKind() != VectorType::SveFixedLengthPredicateVector && 9238 Second->getVectorKind() != VectorType::SveFixedLengthDataVector && 9239 Second->getVectorKind() != VectorType::SveFixedLengthPredicateVector) 9240 return true; 9241 9242 return false; 9243 } 9244 9245 /// getSVETypeSize - Return SVE vector or predicate register size. 9246 static uint64_t getSVETypeSize(ASTContext &Context, const BuiltinType *Ty) { 9247 assert(Ty->isVLSTBuiltinType() && "Invalid SVE Type"); 9248 return Ty->getKind() == BuiltinType::SveBool 9249 ? (Context.getLangOpts().VScaleMin * 128) / Context.getCharWidth() 9250 : Context.getLangOpts().VScaleMin * 128; 9251 } 9252 9253 bool ASTContext::areCompatibleSveTypes(QualType FirstType, 9254 QualType SecondType) { 9255 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || 9256 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) && 9257 "Expected SVE builtin type and vector type!"); 9258 9259 auto IsValidCast = [this](QualType FirstType, QualType SecondType) { 9260 if (const auto *BT = FirstType->getAs<BuiltinType>()) { 9261 if (const auto *VT = SecondType->getAs<VectorType>()) { 9262 // Predicates have the same representation as uint8 so we also have to 9263 // check the kind to make these types incompatible. 9264 if (VT->getVectorKind() == VectorType::SveFixedLengthPredicateVector) 9265 return BT->getKind() == BuiltinType::SveBool; 9266 else if (VT->getVectorKind() == VectorType::SveFixedLengthDataVector) 9267 return VT->getElementType().getCanonicalType() == 9268 FirstType->getSveEltType(*this); 9269 else if (VT->getVectorKind() == VectorType::GenericVector) 9270 return getTypeSize(SecondType) == getSVETypeSize(*this, BT) && 9271 hasSameType(VT->getElementType(), 9272 getBuiltinVectorTypeInfo(BT).ElementType); 9273 } 9274 } 9275 return false; 9276 }; 9277 9278 return IsValidCast(FirstType, SecondType) || 9279 IsValidCast(SecondType, FirstType); 9280 } 9281 9282 bool ASTContext::areLaxCompatibleSveTypes(QualType FirstType, 9283 QualType SecondType) { 9284 assert(((FirstType->isSizelessBuiltinType() && SecondType->isVectorType()) || 9285 (FirstType->isVectorType() && SecondType->isSizelessBuiltinType())) && 9286 "Expected SVE builtin type and vector type!"); 9287 9288 auto IsLaxCompatible = [this](QualType FirstType, QualType SecondType) { 9289 const auto *BT = FirstType->getAs<BuiltinType>(); 9290 if (!BT) 9291 return false; 9292 9293 const auto *VecTy = SecondType->getAs<VectorType>(); 9294 if (VecTy && 9295 (VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector || 9296 VecTy->getVectorKind() == VectorType::GenericVector)) { 9297 const LangOptions::LaxVectorConversionKind LVCKind = 9298 getLangOpts().getLaxVectorConversions(); 9299 9300 // Can not convert between sve predicates and sve vectors because of 9301 // different size. 9302 if (BT->getKind() == BuiltinType::SveBool && 9303 VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector) 9304 return false; 9305 9306 // If __ARM_FEATURE_SVE_BITS != N do not allow GNU vector lax conversion. 9307 // "Whenever __ARM_FEATURE_SVE_BITS==N, GNUT implicitly 9308 // converts to VLAT and VLAT implicitly converts to GNUT." 9309 // ACLE Spec Version 00bet6, 3.7.3.2. Behavior common to vectors and 9310 // predicates. 9311 if (VecTy->getVectorKind() == VectorType::GenericVector && 9312 getTypeSize(SecondType) != getSVETypeSize(*this, BT)) 9313 return false; 9314 9315 // If -flax-vector-conversions=all is specified, the types are 9316 // certainly compatible. 9317 if (LVCKind == LangOptions::LaxVectorConversionKind::All) 9318 return true; 9319 9320 // If -flax-vector-conversions=integer is specified, the types are 9321 // compatible if the elements are integer types. 9322 if (LVCKind == LangOptions::LaxVectorConversionKind::Integer) 9323 return VecTy->getElementType().getCanonicalType()->isIntegerType() && 9324 FirstType->getSveEltType(*this)->isIntegerType(); 9325 } 9326 9327 return false; 9328 }; 9329 9330 return IsLaxCompatible(FirstType, SecondType) || 9331 IsLaxCompatible(SecondType, FirstType); 9332 } 9333 9334 bool ASTContext::hasDirectOwnershipQualifier(QualType Ty) const { 9335 while (true) { 9336 // __strong id 9337 if (const AttributedType *Attr = dyn_cast<AttributedType>(Ty)) { 9338 if (Attr->getAttrKind() == attr::ObjCOwnership) 9339 return true; 9340 9341 Ty = Attr->getModifiedType(); 9342 9343 // X *__strong (...) 9344 } else if (const ParenType *Paren = dyn_cast<ParenType>(Ty)) { 9345 Ty = Paren->getInnerType(); 9346 9347 // We do not want to look through typedefs, typeof(expr), 9348 // typeof(type), or any other way that the type is somehow 9349 // abstracted. 9350 } else { 9351 return false; 9352 } 9353 } 9354 } 9355 9356 //===----------------------------------------------------------------------===// 9357 // ObjCQualifiedIdTypesAreCompatible - Compatibility testing for qualified id's. 9358 //===----------------------------------------------------------------------===// 9359 9360 /// ProtocolCompatibleWithProtocol - return 'true' if 'lProto' is in the 9361 /// inheritance hierarchy of 'rProto'. 9362 bool 9363 ASTContext::ProtocolCompatibleWithProtocol(ObjCProtocolDecl *lProto, 9364 ObjCProtocolDecl *rProto) const { 9365 if (declaresSameEntity(lProto, rProto)) 9366 return true; 9367 for (auto *PI : rProto->protocols()) 9368 if (ProtocolCompatibleWithProtocol(lProto, PI)) 9369 return true; 9370 return false; 9371 } 9372 9373 /// ObjCQualifiedClassTypesAreCompatible - compare Class<pr,...> and 9374 /// Class<pr1, ...>. 9375 bool ASTContext::ObjCQualifiedClassTypesAreCompatible( 9376 const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs) { 9377 for (auto *lhsProto : lhs->quals()) { 9378 bool match = false; 9379 for (auto *rhsProto : rhs->quals()) { 9380 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto)) { 9381 match = true; 9382 break; 9383 } 9384 } 9385 if (!match) 9386 return false; 9387 } 9388 return true; 9389 } 9390 9391 /// ObjCQualifiedIdTypesAreCompatible - We know that one of lhs/rhs is an 9392 /// ObjCQualifiedIDType. 9393 bool ASTContext::ObjCQualifiedIdTypesAreCompatible( 9394 const ObjCObjectPointerType *lhs, const ObjCObjectPointerType *rhs, 9395 bool compare) { 9396 // Allow id<P..> and an 'id' in all cases. 9397 if (lhs->isObjCIdType() || rhs->isObjCIdType()) 9398 return true; 9399 9400 // Don't allow id<P..> to convert to Class or Class<P..> in either direction. 9401 if (lhs->isObjCClassType() || lhs->isObjCQualifiedClassType() || 9402 rhs->isObjCClassType() || rhs->isObjCQualifiedClassType()) 9403 return false; 9404 9405 if (lhs->isObjCQualifiedIdType()) { 9406 if (rhs->qual_empty()) { 9407 // If the RHS is a unqualified interface pointer "NSString*", 9408 // make sure we check the class hierarchy. 9409 if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) { 9410 for (auto *I : lhs->quals()) { 9411 // when comparing an id<P> on lhs with a static type on rhs, 9412 // see if static class implements all of id's protocols, directly or 9413 // through its super class and categories. 9414 if (!rhsID->ClassImplementsProtocol(I, true)) 9415 return false; 9416 } 9417 } 9418 // If there are no qualifiers and no interface, we have an 'id'. 9419 return true; 9420 } 9421 // Both the right and left sides have qualifiers. 9422 for (auto *lhsProto : lhs->quals()) { 9423 bool match = false; 9424 9425 // when comparing an id<P> on lhs with a static type on rhs, 9426 // see if static class implements all of id's protocols, directly or 9427 // through its super class and categories. 9428 for (auto *rhsProto : rhs->quals()) { 9429 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9430 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9431 match = true; 9432 break; 9433 } 9434 } 9435 // If the RHS is a qualified interface pointer "NSString<P>*", 9436 // make sure we check the class hierarchy. 9437 if (ObjCInterfaceDecl *rhsID = rhs->getInterfaceDecl()) { 9438 for (auto *I : lhs->quals()) { 9439 // when comparing an id<P> on lhs with a static type on rhs, 9440 // see if static class implements all of id's protocols, directly or 9441 // through its super class and categories. 9442 if (rhsID->ClassImplementsProtocol(I, true)) { 9443 match = true; 9444 break; 9445 } 9446 } 9447 } 9448 if (!match) 9449 return false; 9450 } 9451 9452 return true; 9453 } 9454 9455 assert(rhs->isObjCQualifiedIdType() && "One of the LHS/RHS should be id<x>"); 9456 9457 if (lhs->getInterfaceType()) { 9458 // If both the right and left sides have qualifiers. 9459 for (auto *lhsProto : lhs->quals()) { 9460 bool match = false; 9461 9462 // when comparing an id<P> on rhs with a static type on lhs, 9463 // see if static class implements all of id's protocols, directly or 9464 // through its super class and categories. 9465 // First, lhs protocols in the qualifier list must be found, direct 9466 // or indirect in rhs's qualifier list or it is a mismatch. 9467 for (auto *rhsProto : rhs->quals()) { 9468 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9469 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9470 match = true; 9471 break; 9472 } 9473 } 9474 if (!match) 9475 return false; 9476 } 9477 9478 // Static class's protocols, or its super class or category protocols 9479 // must be found, direct or indirect in rhs's qualifier list or it is a mismatch. 9480 if (ObjCInterfaceDecl *lhsID = lhs->getInterfaceDecl()) { 9481 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSInheritedProtocols; 9482 CollectInheritedProtocols(lhsID, LHSInheritedProtocols); 9483 // This is rather dubious but matches gcc's behavior. If lhs has 9484 // no type qualifier and its class has no static protocol(s) 9485 // assume that it is mismatch. 9486 if (LHSInheritedProtocols.empty() && lhs->qual_empty()) 9487 return false; 9488 for (auto *lhsProto : LHSInheritedProtocols) { 9489 bool match = false; 9490 for (auto *rhsProto : rhs->quals()) { 9491 if (ProtocolCompatibleWithProtocol(lhsProto, rhsProto) || 9492 (compare && ProtocolCompatibleWithProtocol(rhsProto, lhsProto))) { 9493 match = true; 9494 break; 9495 } 9496 } 9497 if (!match) 9498 return false; 9499 } 9500 } 9501 return true; 9502 } 9503 return false; 9504 } 9505 9506 /// canAssignObjCInterfaces - Return true if the two interface types are 9507 /// compatible for assignment from RHS to LHS. This handles validation of any 9508 /// protocol qualifiers on the LHS or RHS. 9509 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectPointerType *LHSOPT, 9510 const ObjCObjectPointerType *RHSOPT) { 9511 const ObjCObjectType* LHS = LHSOPT->getObjectType(); 9512 const ObjCObjectType* RHS = RHSOPT->getObjectType(); 9513 9514 // If either type represents the built-in 'id' type, return true. 9515 if (LHS->isObjCUnqualifiedId() || RHS->isObjCUnqualifiedId()) 9516 return true; 9517 9518 // Function object that propagates a successful result or handles 9519 // __kindof types. 9520 auto finish = [&](bool succeeded) -> bool { 9521 if (succeeded) 9522 return true; 9523 9524 if (!RHS->isKindOfType()) 9525 return false; 9526 9527 // Strip off __kindof and protocol qualifiers, then check whether 9528 // we can assign the other way. 9529 return canAssignObjCInterfaces(RHSOPT->stripObjCKindOfTypeAndQuals(*this), 9530 LHSOPT->stripObjCKindOfTypeAndQuals(*this)); 9531 }; 9532 9533 // Casts from or to id<P> are allowed when the other side has compatible 9534 // protocols. 9535 if (LHS->isObjCQualifiedId() || RHS->isObjCQualifiedId()) { 9536 return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false)); 9537 } 9538 9539 // Verify protocol compatibility for casts from Class<P1> to Class<P2>. 9540 if (LHS->isObjCQualifiedClass() && RHS->isObjCQualifiedClass()) { 9541 return finish(ObjCQualifiedClassTypesAreCompatible(LHSOPT, RHSOPT)); 9542 } 9543 9544 // Casts from Class to Class<Foo>, or vice-versa, are allowed. 9545 if (LHS->isObjCClass() && RHS->isObjCClass()) { 9546 return true; 9547 } 9548 9549 // If we have 2 user-defined types, fall into that path. 9550 if (LHS->getInterface() && RHS->getInterface()) { 9551 return finish(canAssignObjCInterfaces(LHS, RHS)); 9552 } 9553 9554 return false; 9555 } 9556 9557 /// canAssignObjCInterfacesInBlockPointer - This routine is specifically written 9558 /// for providing type-safety for objective-c pointers used to pass/return 9559 /// arguments in block literals. When passed as arguments, passing 'A*' where 9560 /// 'id' is expected is not OK. Passing 'Sub *" where 'Super *" is expected is 9561 /// not OK. For the return type, the opposite is not OK. 9562 bool ASTContext::canAssignObjCInterfacesInBlockPointer( 9563 const ObjCObjectPointerType *LHSOPT, 9564 const ObjCObjectPointerType *RHSOPT, 9565 bool BlockReturnType) { 9566 9567 // Function object that propagates a successful result or handles 9568 // __kindof types. 9569 auto finish = [&](bool succeeded) -> bool { 9570 if (succeeded) 9571 return true; 9572 9573 const ObjCObjectPointerType *Expected = BlockReturnType ? RHSOPT : LHSOPT; 9574 if (!Expected->isKindOfType()) 9575 return false; 9576 9577 // Strip off __kindof and protocol qualifiers, then check whether 9578 // we can assign the other way. 9579 return canAssignObjCInterfacesInBlockPointer( 9580 RHSOPT->stripObjCKindOfTypeAndQuals(*this), 9581 LHSOPT->stripObjCKindOfTypeAndQuals(*this), 9582 BlockReturnType); 9583 }; 9584 9585 if (RHSOPT->isObjCBuiltinType() || LHSOPT->isObjCIdType()) 9586 return true; 9587 9588 if (LHSOPT->isObjCBuiltinType()) { 9589 return finish(RHSOPT->isObjCBuiltinType() || 9590 RHSOPT->isObjCQualifiedIdType()); 9591 } 9592 9593 if (LHSOPT->isObjCQualifiedIdType() || RHSOPT->isObjCQualifiedIdType()) { 9594 if (getLangOpts().CompatibilityQualifiedIdBlockParamTypeChecking) 9595 // Use for block parameters previous type checking for compatibility. 9596 return finish(ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT, false) || 9597 // Or corrected type checking as in non-compat mode. 9598 (!BlockReturnType && 9599 ObjCQualifiedIdTypesAreCompatible(RHSOPT, LHSOPT, false))); 9600 else 9601 return finish(ObjCQualifiedIdTypesAreCompatible( 9602 (BlockReturnType ? LHSOPT : RHSOPT), 9603 (BlockReturnType ? RHSOPT : LHSOPT), false)); 9604 } 9605 9606 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType(); 9607 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType(); 9608 if (LHS && RHS) { // We have 2 user-defined types. 9609 if (LHS != RHS) { 9610 if (LHS->getDecl()->isSuperClassOf(RHS->getDecl())) 9611 return finish(BlockReturnType); 9612 if (RHS->getDecl()->isSuperClassOf(LHS->getDecl())) 9613 return finish(!BlockReturnType); 9614 } 9615 else 9616 return true; 9617 } 9618 return false; 9619 } 9620 9621 /// Comparison routine for Objective-C protocols to be used with 9622 /// llvm::array_pod_sort. 9623 static int compareObjCProtocolsByName(ObjCProtocolDecl * const *lhs, 9624 ObjCProtocolDecl * const *rhs) { 9625 return (*lhs)->getName().compare((*rhs)->getName()); 9626 } 9627 9628 /// getIntersectionOfProtocols - This routine finds the intersection of set 9629 /// of protocols inherited from two distinct objective-c pointer objects with 9630 /// the given common base. 9631 /// It is used to build composite qualifier list of the composite type of 9632 /// the conditional expression involving two objective-c pointer objects. 9633 static 9634 void getIntersectionOfProtocols(ASTContext &Context, 9635 const ObjCInterfaceDecl *CommonBase, 9636 const ObjCObjectPointerType *LHSOPT, 9637 const ObjCObjectPointerType *RHSOPT, 9638 SmallVectorImpl<ObjCProtocolDecl *> &IntersectionSet) { 9639 9640 const ObjCObjectType* LHS = LHSOPT->getObjectType(); 9641 const ObjCObjectType* RHS = RHSOPT->getObjectType(); 9642 assert(LHS->getInterface() && "LHS must have an interface base"); 9643 assert(RHS->getInterface() && "RHS must have an interface base"); 9644 9645 // Add all of the protocols for the LHS. 9646 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> LHSProtocolSet; 9647 9648 // Start with the protocol qualifiers. 9649 for (auto proto : LHS->quals()) { 9650 Context.CollectInheritedProtocols(proto, LHSProtocolSet); 9651 } 9652 9653 // Also add the protocols associated with the LHS interface. 9654 Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet); 9655 9656 // Add all of the protocols for the RHS. 9657 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> RHSProtocolSet; 9658 9659 // Start with the protocol qualifiers. 9660 for (auto proto : RHS->quals()) { 9661 Context.CollectInheritedProtocols(proto, RHSProtocolSet); 9662 } 9663 9664 // Also add the protocols associated with the RHS interface. 9665 Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet); 9666 9667 // Compute the intersection of the collected protocol sets. 9668 for (auto proto : LHSProtocolSet) { 9669 if (RHSProtocolSet.count(proto)) 9670 IntersectionSet.push_back(proto); 9671 } 9672 9673 // Compute the set of protocols that is implied by either the common type or 9674 // the protocols within the intersection. 9675 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> ImpliedProtocols; 9676 Context.CollectInheritedProtocols(CommonBase, ImpliedProtocols); 9677 9678 // Remove any implied protocols from the list of inherited protocols. 9679 if (!ImpliedProtocols.empty()) { 9680 llvm::erase_if(IntersectionSet, [&](ObjCProtocolDecl *proto) -> bool { 9681 return ImpliedProtocols.contains(proto); 9682 }); 9683 } 9684 9685 // Sort the remaining protocols by name. 9686 llvm::array_pod_sort(IntersectionSet.begin(), IntersectionSet.end(), 9687 compareObjCProtocolsByName); 9688 } 9689 9690 /// Determine whether the first type is a subtype of the second. 9691 static bool canAssignObjCObjectTypes(ASTContext &ctx, QualType lhs, 9692 QualType rhs) { 9693 // Common case: two object pointers. 9694 const auto *lhsOPT = lhs->getAs<ObjCObjectPointerType>(); 9695 const auto *rhsOPT = rhs->getAs<ObjCObjectPointerType>(); 9696 if (lhsOPT && rhsOPT) 9697 return ctx.canAssignObjCInterfaces(lhsOPT, rhsOPT); 9698 9699 // Two block pointers. 9700 const auto *lhsBlock = lhs->getAs<BlockPointerType>(); 9701 const auto *rhsBlock = rhs->getAs<BlockPointerType>(); 9702 if (lhsBlock && rhsBlock) 9703 return ctx.typesAreBlockPointerCompatible(lhs, rhs); 9704 9705 // If either is an unqualified 'id' and the other is a block, it's 9706 // acceptable. 9707 if ((lhsOPT && lhsOPT->isObjCIdType() && rhsBlock) || 9708 (rhsOPT && rhsOPT->isObjCIdType() && lhsBlock)) 9709 return true; 9710 9711 return false; 9712 } 9713 9714 // Check that the given Objective-C type argument lists are equivalent. 9715 static bool sameObjCTypeArgs(ASTContext &ctx, 9716 const ObjCInterfaceDecl *iface, 9717 ArrayRef<QualType> lhsArgs, 9718 ArrayRef<QualType> rhsArgs, 9719 bool stripKindOf) { 9720 if (lhsArgs.size() != rhsArgs.size()) 9721 return false; 9722 9723 ObjCTypeParamList *typeParams = iface->getTypeParamList(); 9724 for (unsigned i = 0, n = lhsArgs.size(); i != n; ++i) { 9725 if (ctx.hasSameType(lhsArgs[i], rhsArgs[i])) 9726 continue; 9727 9728 switch (typeParams->begin()[i]->getVariance()) { 9729 case ObjCTypeParamVariance::Invariant: 9730 if (!stripKindOf || 9731 !ctx.hasSameType(lhsArgs[i].stripObjCKindOfType(ctx), 9732 rhsArgs[i].stripObjCKindOfType(ctx))) { 9733 return false; 9734 } 9735 break; 9736 9737 case ObjCTypeParamVariance::Covariant: 9738 if (!canAssignObjCObjectTypes(ctx, lhsArgs[i], rhsArgs[i])) 9739 return false; 9740 break; 9741 9742 case ObjCTypeParamVariance::Contravariant: 9743 if (!canAssignObjCObjectTypes(ctx, rhsArgs[i], lhsArgs[i])) 9744 return false; 9745 break; 9746 } 9747 } 9748 9749 return true; 9750 } 9751 9752 QualType ASTContext::areCommonBaseCompatible( 9753 const ObjCObjectPointerType *Lptr, 9754 const ObjCObjectPointerType *Rptr) { 9755 const ObjCObjectType *LHS = Lptr->getObjectType(); 9756 const ObjCObjectType *RHS = Rptr->getObjectType(); 9757 const ObjCInterfaceDecl* LDecl = LHS->getInterface(); 9758 const ObjCInterfaceDecl* RDecl = RHS->getInterface(); 9759 9760 if (!LDecl || !RDecl) 9761 return {}; 9762 9763 // When either LHS or RHS is a kindof type, we should return a kindof type. 9764 // For example, for common base of kindof(ASub1) and kindof(ASub2), we return 9765 // kindof(A). 9766 bool anyKindOf = LHS->isKindOfType() || RHS->isKindOfType(); 9767 9768 // Follow the left-hand side up the class hierarchy until we either hit a 9769 // root or find the RHS. Record the ancestors in case we don't find it. 9770 llvm::SmallDenseMap<const ObjCInterfaceDecl *, const ObjCObjectType *, 4> 9771 LHSAncestors; 9772 while (true) { 9773 // Record this ancestor. We'll need this if the common type isn't in the 9774 // path from the LHS to the root. 9775 LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS; 9776 9777 if (declaresSameEntity(LHS->getInterface(), RDecl)) { 9778 // Get the type arguments. 9779 ArrayRef<QualType> LHSTypeArgs = LHS->getTypeArgsAsWritten(); 9780 bool anyChanges = false; 9781 if (LHS->isSpecialized() && RHS->isSpecialized()) { 9782 // Both have type arguments, compare them. 9783 if (!sameObjCTypeArgs(*this, LHS->getInterface(), 9784 LHS->getTypeArgs(), RHS->getTypeArgs(), 9785 /*stripKindOf=*/true)) 9786 return {}; 9787 } else if (LHS->isSpecialized() != RHS->isSpecialized()) { 9788 // If only one has type arguments, the result will not have type 9789 // arguments. 9790 LHSTypeArgs = {}; 9791 anyChanges = true; 9792 } 9793 9794 // Compute the intersection of protocols. 9795 SmallVector<ObjCProtocolDecl *, 8> Protocols; 9796 getIntersectionOfProtocols(*this, LHS->getInterface(), Lptr, Rptr, 9797 Protocols); 9798 if (!Protocols.empty()) 9799 anyChanges = true; 9800 9801 // If anything in the LHS will have changed, build a new result type. 9802 // If we need to return a kindof type but LHS is not a kindof type, we 9803 // build a new result type. 9804 if (anyChanges || LHS->isKindOfType() != anyKindOf) { 9805 QualType Result = getObjCInterfaceType(LHS->getInterface()); 9806 Result = getObjCObjectType(Result, LHSTypeArgs, Protocols, 9807 anyKindOf || LHS->isKindOfType()); 9808 return getObjCObjectPointerType(Result); 9809 } 9810 9811 return getObjCObjectPointerType(QualType(LHS, 0)); 9812 } 9813 9814 // Find the superclass. 9815 QualType LHSSuperType = LHS->getSuperClassType(); 9816 if (LHSSuperType.isNull()) 9817 break; 9818 9819 LHS = LHSSuperType->castAs<ObjCObjectType>(); 9820 } 9821 9822 // We didn't find anything by following the LHS to its root; now check 9823 // the RHS against the cached set of ancestors. 9824 while (true) { 9825 auto KnownLHS = LHSAncestors.find(RHS->getInterface()->getCanonicalDecl()); 9826 if (KnownLHS != LHSAncestors.end()) { 9827 LHS = KnownLHS->second; 9828 9829 // Get the type arguments. 9830 ArrayRef<QualType> RHSTypeArgs = RHS->getTypeArgsAsWritten(); 9831 bool anyChanges = false; 9832 if (LHS->isSpecialized() && RHS->isSpecialized()) { 9833 // Both have type arguments, compare them. 9834 if (!sameObjCTypeArgs(*this, LHS->getInterface(), 9835 LHS->getTypeArgs(), RHS->getTypeArgs(), 9836 /*stripKindOf=*/true)) 9837 return {}; 9838 } else if (LHS->isSpecialized() != RHS->isSpecialized()) { 9839 // If only one has type arguments, the result will not have type 9840 // arguments. 9841 RHSTypeArgs = {}; 9842 anyChanges = true; 9843 } 9844 9845 // Compute the intersection of protocols. 9846 SmallVector<ObjCProtocolDecl *, 8> Protocols; 9847 getIntersectionOfProtocols(*this, RHS->getInterface(), Lptr, Rptr, 9848 Protocols); 9849 if (!Protocols.empty()) 9850 anyChanges = true; 9851 9852 // If we need to return a kindof type but RHS is not a kindof type, we 9853 // build a new result type. 9854 if (anyChanges || RHS->isKindOfType() != anyKindOf) { 9855 QualType Result = getObjCInterfaceType(RHS->getInterface()); 9856 Result = getObjCObjectType(Result, RHSTypeArgs, Protocols, 9857 anyKindOf || RHS->isKindOfType()); 9858 return getObjCObjectPointerType(Result); 9859 } 9860 9861 return getObjCObjectPointerType(QualType(RHS, 0)); 9862 } 9863 9864 // Find the superclass of the RHS. 9865 QualType RHSSuperType = RHS->getSuperClassType(); 9866 if (RHSSuperType.isNull()) 9867 break; 9868 9869 RHS = RHSSuperType->castAs<ObjCObjectType>(); 9870 } 9871 9872 return {}; 9873 } 9874 9875 bool ASTContext::canAssignObjCInterfaces(const ObjCObjectType *LHS, 9876 const ObjCObjectType *RHS) { 9877 assert(LHS->getInterface() && "LHS is not an interface type"); 9878 assert(RHS->getInterface() && "RHS is not an interface type"); 9879 9880 // Verify that the base decls are compatible: the RHS must be a subclass of 9881 // the LHS. 9882 ObjCInterfaceDecl *LHSInterface = LHS->getInterface(); 9883 bool IsSuperClass = LHSInterface->isSuperClassOf(RHS->getInterface()); 9884 if (!IsSuperClass) 9885 return false; 9886 9887 // If the LHS has protocol qualifiers, determine whether all of them are 9888 // satisfied by the RHS (i.e., the RHS has a superset of the protocols in the 9889 // LHS). 9890 if (LHS->getNumProtocols() > 0) { 9891 // OK if conversion of LHS to SuperClass results in narrowing of types 9892 // ; i.e., SuperClass may implement at least one of the protocols 9893 // in LHS's protocol list. Example, SuperObj<P1> = lhs<P1,P2> is ok. 9894 // But not SuperObj<P1,P2,P3> = lhs<P1,P2>. 9895 llvm::SmallPtrSet<ObjCProtocolDecl *, 8> SuperClassInheritedProtocols; 9896 CollectInheritedProtocols(RHS->getInterface(), SuperClassInheritedProtocols); 9897 // Also, if RHS has explicit quelifiers, include them for comparing with LHS's 9898 // qualifiers. 9899 for (auto *RHSPI : RHS->quals()) 9900 CollectInheritedProtocols(RHSPI, SuperClassInheritedProtocols); 9901 // If there is no protocols associated with RHS, it is not a match. 9902 if (SuperClassInheritedProtocols.empty()) 9903 return false; 9904 9905 for (const auto *LHSProto : LHS->quals()) { 9906 bool SuperImplementsProtocol = false; 9907 for (auto *SuperClassProto : SuperClassInheritedProtocols) 9908 if (SuperClassProto->lookupProtocolNamed(LHSProto->getIdentifier())) { 9909 SuperImplementsProtocol = true; 9910 break; 9911 } 9912 if (!SuperImplementsProtocol) 9913 return false; 9914 } 9915 } 9916 9917 // If the LHS is specialized, we may need to check type arguments. 9918 if (LHS->isSpecialized()) { 9919 // Follow the superclass chain until we've matched the LHS class in the 9920 // hierarchy. This substitutes type arguments through. 9921 const ObjCObjectType *RHSSuper = RHS; 9922 while (!declaresSameEntity(RHSSuper->getInterface(), LHSInterface)) 9923 RHSSuper = RHSSuper->getSuperClassType()->castAs<ObjCObjectType>(); 9924 9925 // If the RHS is specializd, compare type arguments. 9926 if (RHSSuper->isSpecialized() && 9927 !sameObjCTypeArgs(*this, LHS->getInterface(), 9928 LHS->getTypeArgs(), RHSSuper->getTypeArgs(), 9929 /*stripKindOf=*/true)) { 9930 return false; 9931 } 9932 } 9933 9934 return true; 9935 } 9936 9937 bool ASTContext::areComparableObjCPointerTypes(QualType LHS, QualType RHS) { 9938 // get the "pointed to" types 9939 const auto *LHSOPT = LHS->getAs<ObjCObjectPointerType>(); 9940 const auto *RHSOPT = RHS->getAs<ObjCObjectPointerType>(); 9941 9942 if (!LHSOPT || !RHSOPT) 9943 return false; 9944 9945 return canAssignObjCInterfaces(LHSOPT, RHSOPT) || 9946 canAssignObjCInterfaces(RHSOPT, LHSOPT); 9947 } 9948 9949 bool ASTContext::canBindObjCObjectType(QualType To, QualType From) { 9950 return canAssignObjCInterfaces( 9951 getObjCObjectPointerType(To)->castAs<ObjCObjectPointerType>(), 9952 getObjCObjectPointerType(From)->castAs<ObjCObjectPointerType>()); 9953 } 9954 9955 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible, 9956 /// both shall have the identically qualified version of a compatible type. 9957 /// C99 6.2.7p1: Two types have compatible types if their types are the 9958 /// same. See 6.7.[2,3,5] for additional rules. 9959 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, 9960 bool CompareUnqualified) { 9961 if (getLangOpts().CPlusPlus) 9962 return hasSameType(LHS, RHS); 9963 9964 return !mergeTypes(LHS, RHS, false, CompareUnqualified).isNull(); 9965 } 9966 9967 bool ASTContext::propertyTypesAreCompatible(QualType LHS, QualType RHS) { 9968 return typesAreCompatible(LHS, RHS); 9969 } 9970 9971 bool ASTContext::typesAreBlockPointerCompatible(QualType LHS, QualType RHS) { 9972 return !mergeTypes(LHS, RHS, true).isNull(); 9973 } 9974 9975 /// mergeTransparentUnionType - if T is a transparent union type and a member 9976 /// of T is compatible with SubType, return the merged type, else return 9977 /// QualType() 9978 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, 9979 bool OfBlockPointer, 9980 bool Unqualified) { 9981 if (const RecordType *UT = T->getAsUnionType()) { 9982 RecordDecl *UD = UT->getDecl(); 9983 if (UD->hasAttr<TransparentUnionAttr>()) { 9984 for (const auto *I : UD->fields()) { 9985 QualType ET = I->getType().getUnqualifiedType(); 9986 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); 9987 if (!MT.isNull()) 9988 return MT; 9989 } 9990 } 9991 } 9992 9993 return {}; 9994 } 9995 9996 /// mergeFunctionParameterTypes - merge two types which appear as function 9997 /// parameter types 9998 QualType ASTContext::mergeFunctionParameterTypes(QualType lhs, QualType rhs, 9999 bool OfBlockPointer, 10000 bool Unqualified) { 10001 // GNU extension: two types are compatible if they appear as a function 10002 // argument, one of the types is a transparent union type and the other 10003 // type is compatible with a union member 10004 QualType lmerge = mergeTransparentUnionType(lhs, rhs, OfBlockPointer, 10005 Unqualified); 10006 if (!lmerge.isNull()) 10007 return lmerge; 10008 10009 QualType rmerge = mergeTransparentUnionType(rhs, lhs, OfBlockPointer, 10010 Unqualified); 10011 if (!rmerge.isNull()) 10012 return rmerge; 10013 10014 return mergeTypes(lhs, rhs, OfBlockPointer, Unqualified); 10015 } 10016 10017 QualType ASTContext::mergeFunctionTypes(QualType lhs, QualType rhs, 10018 bool OfBlockPointer, bool Unqualified, 10019 bool AllowCXX) { 10020 const auto *lbase = lhs->castAs<FunctionType>(); 10021 const auto *rbase = rhs->castAs<FunctionType>(); 10022 const auto *lproto = dyn_cast<FunctionProtoType>(lbase); 10023 const auto *rproto = dyn_cast<FunctionProtoType>(rbase); 10024 bool allLTypes = true; 10025 bool allRTypes = true; 10026 10027 // Check return type 10028 QualType retType; 10029 if (OfBlockPointer) { 10030 QualType RHS = rbase->getReturnType(); 10031 QualType LHS = lbase->getReturnType(); 10032 bool UnqualifiedResult = Unqualified; 10033 if (!UnqualifiedResult) 10034 UnqualifiedResult = (!RHS.hasQualifiers() && LHS.hasQualifiers()); 10035 retType = mergeTypes(LHS, RHS, true, UnqualifiedResult, true); 10036 } 10037 else 10038 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, 10039 Unqualified); 10040 if (retType.isNull()) 10041 return {}; 10042 10043 if (Unqualified) 10044 retType = retType.getUnqualifiedType(); 10045 10046 CanQualType LRetType = getCanonicalType(lbase->getReturnType()); 10047 CanQualType RRetType = getCanonicalType(rbase->getReturnType()); 10048 if (Unqualified) { 10049 LRetType = LRetType.getUnqualifiedType(); 10050 RRetType = RRetType.getUnqualifiedType(); 10051 } 10052 10053 if (getCanonicalType(retType) != LRetType) 10054 allLTypes = false; 10055 if (getCanonicalType(retType) != RRetType) 10056 allRTypes = false; 10057 10058 // FIXME: double check this 10059 // FIXME: should we error if lbase->getRegParmAttr() != 0 && 10060 // rbase->getRegParmAttr() != 0 && 10061 // lbase->getRegParmAttr() != rbase->getRegParmAttr()? 10062 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); 10063 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo(); 10064 10065 // Compatible functions must have compatible calling conventions 10066 if (lbaseInfo.getCC() != rbaseInfo.getCC()) 10067 return {}; 10068 10069 // Regparm is part of the calling convention. 10070 if (lbaseInfo.getHasRegParm() != rbaseInfo.getHasRegParm()) 10071 return {}; 10072 if (lbaseInfo.getRegParm() != rbaseInfo.getRegParm()) 10073 return {}; 10074 10075 if (lbaseInfo.getProducesResult() != rbaseInfo.getProducesResult()) 10076 return {}; 10077 if (lbaseInfo.getNoCallerSavedRegs() != rbaseInfo.getNoCallerSavedRegs()) 10078 return {}; 10079 if (lbaseInfo.getNoCfCheck() != rbaseInfo.getNoCfCheck()) 10080 return {}; 10081 10082 // FIXME: some uses, e.g. conditional exprs, really want this to be 'both'. 10083 bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn(); 10084 10085 if (lbaseInfo.getNoReturn() != NoReturn) 10086 allLTypes = false; 10087 if (rbaseInfo.getNoReturn() != NoReturn) 10088 allRTypes = false; 10089 10090 FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn); 10091 10092 if (lproto && rproto) { // two C99 style function prototypes 10093 assert((AllowCXX || 10094 (!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec())) && 10095 "C++ shouldn't be here"); 10096 // Compatible functions must have the same number of parameters 10097 if (lproto->getNumParams() != rproto->getNumParams()) 10098 return {}; 10099 10100 // Variadic and non-variadic functions aren't compatible 10101 if (lproto->isVariadic() != rproto->isVariadic()) 10102 return {}; 10103 10104 if (lproto->getMethodQuals() != rproto->getMethodQuals()) 10105 return {}; 10106 10107 SmallVector<FunctionProtoType::ExtParameterInfo, 4> newParamInfos; 10108 bool canUseLeft, canUseRight; 10109 if (!mergeExtParameterInfo(lproto, rproto, canUseLeft, canUseRight, 10110 newParamInfos)) 10111 return {}; 10112 10113 if (!canUseLeft) 10114 allLTypes = false; 10115 if (!canUseRight) 10116 allRTypes = false; 10117 10118 // Check parameter type compatibility 10119 SmallVector<QualType, 10> types; 10120 for (unsigned i = 0, n = lproto->getNumParams(); i < n; i++) { 10121 QualType lParamType = lproto->getParamType(i).getUnqualifiedType(); 10122 QualType rParamType = rproto->getParamType(i).getUnqualifiedType(); 10123 QualType paramType = mergeFunctionParameterTypes( 10124 lParamType, rParamType, OfBlockPointer, Unqualified); 10125 if (paramType.isNull()) 10126 return {}; 10127 10128 if (Unqualified) 10129 paramType = paramType.getUnqualifiedType(); 10130 10131 types.push_back(paramType); 10132 if (Unqualified) { 10133 lParamType = lParamType.getUnqualifiedType(); 10134 rParamType = rParamType.getUnqualifiedType(); 10135 } 10136 10137 if (getCanonicalType(paramType) != getCanonicalType(lParamType)) 10138 allLTypes = false; 10139 if (getCanonicalType(paramType) != getCanonicalType(rParamType)) 10140 allRTypes = false; 10141 } 10142 10143 if (allLTypes) return lhs; 10144 if (allRTypes) return rhs; 10145 10146 FunctionProtoType::ExtProtoInfo EPI = lproto->getExtProtoInfo(); 10147 EPI.ExtInfo = einfo; 10148 EPI.ExtParameterInfos = 10149 newParamInfos.empty() ? nullptr : newParamInfos.data(); 10150 return getFunctionType(retType, types, EPI); 10151 } 10152 10153 if (lproto) allRTypes = false; 10154 if (rproto) allLTypes = false; 10155 10156 const FunctionProtoType *proto = lproto ? lproto : rproto; 10157 if (proto) { 10158 assert((AllowCXX || !proto->hasExceptionSpec()) && "C++ shouldn't be here"); 10159 if (proto->isVariadic()) 10160 return {}; 10161 // Check that the types are compatible with the types that 10162 // would result from default argument promotions (C99 6.7.5.3p15). 10163 // The only types actually affected are promotable integer 10164 // types and floats, which would be passed as a different 10165 // type depending on whether the prototype is visible. 10166 for (unsigned i = 0, n = proto->getNumParams(); i < n; ++i) { 10167 QualType paramTy = proto->getParamType(i); 10168 10169 // Look at the converted type of enum types, since that is the type used 10170 // to pass enum values. 10171 if (const auto *Enum = paramTy->getAs<EnumType>()) { 10172 paramTy = Enum->getDecl()->getIntegerType(); 10173 if (paramTy.isNull()) 10174 return {}; 10175 } 10176 10177 if (paramTy->isPromotableIntegerType() || 10178 getCanonicalType(paramTy).getUnqualifiedType() == FloatTy) 10179 return {}; 10180 } 10181 10182 if (allLTypes) return lhs; 10183 if (allRTypes) return rhs; 10184 10185 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo(); 10186 EPI.ExtInfo = einfo; 10187 return getFunctionType(retType, proto->getParamTypes(), EPI); 10188 } 10189 10190 if (allLTypes) return lhs; 10191 if (allRTypes) return rhs; 10192 return getFunctionNoProtoType(retType, einfo); 10193 } 10194 10195 /// Given that we have an enum type and a non-enum type, try to merge them. 10196 static QualType mergeEnumWithInteger(ASTContext &Context, const EnumType *ET, 10197 QualType other, bool isBlockReturnType) { 10198 // C99 6.7.2.2p4: Each enumerated type shall be compatible with char, 10199 // a signed integer type, or an unsigned integer type. 10200 // Compatibility is based on the underlying type, not the promotion 10201 // type. 10202 QualType underlyingType = ET->getDecl()->getIntegerType(); 10203 if (underlyingType.isNull()) 10204 return {}; 10205 if (Context.hasSameType(underlyingType, other)) 10206 return other; 10207 10208 // In block return types, we're more permissive and accept any 10209 // integral type of the same size. 10210 if (isBlockReturnType && other->isIntegerType() && 10211 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) 10212 return other; 10213 10214 return {}; 10215 } 10216 10217 QualType ASTContext::mergeTypes(QualType LHS, QualType RHS, 10218 bool OfBlockPointer, 10219 bool Unqualified, bool BlockReturnType) { 10220 // For C++ we will not reach this code with reference types (see below), 10221 // for OpenMP variant call overloading we might. 10222 // 10223 // C++ [expr]: If an expression initially has the type "reference to T", the 10224 // type is adjusted to "T" prior to any further analysis, the expression 10225 // designates the object or function denoted by the reference, and the 10226 // expression is an lvalue unless the reference is an rvalue reference and 10227 // the expression is a function call (possibly inside parentheses). 10228 auto *LHSRefTy = LHS->getAs<ReferenceType>(); 10229 auto *RHSRefTy = RHS->getAs<ReferenceType>(); 10230 if (LangOpts.OpenMP && LHSRefTy && RHSRefTy && 10231 LHS->getTypeClass() == RHS->getTypeClass()) 10232 return mergeTypes(LHSRefTy->getPointeeType(), RHSRefTy->getPointeeType(), 10233 OfBlockPointer, Unqualified, BlockReturnType); 10234 if (LHSRefTy || RHSRefTy) 10235 return {}; 10236 10237 if (Unqualified) { 10238 LHS = LHS.getUnqualifiedType(); 10239 RHS = RHS.getUnqualifiedType(); 10240 } 10241 10242 QualType LHSCan = getCanonicalType(LHS), 10243 RHSCan = getCanonicalType(RHS); 10244 10245 // If two types are identical, they are compatible. 10246 if (LHSCan == RHSCan) 10247 return LHS; 10248 10249 // If the qualifiers are different, the types aren't compatible... mostly. 10250 Qualifiers LQuals = LHSCan.getLocalQualifiers(); 10251 Qualifiers RQuals = RHSCan.getLocalQualifiers(); 10252 if (LQuals != RQuals) { 10253 // If any of these qualifiers are different, we have a type 10254 // mismatch. 10255 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() || 10256 LQuals.getAddressSpace() != RQuals.getAddressSpace() || 10257 LQuals.getObjCLifetime() != RQuals.getObjCLifetime() || 10258 LQuals.hasUnaligned() != RQuals.hasUnaligned()) 10259 return {}; 10260 10261 // Exactly one GC qualifier difference is allowed: __strong is 10262 // okay if the other type has no GC qualifier but is an Objective 10263 // C object pointer (i.e. implicitly strong by default). We fix 10264 // this by pretending that the unqualified type was actually 10265 // qualified __strong. 10266 Qualifiers::GC GC_L = LQuals.getObjCGCAttr(); 10267 Qualifiers::GC GC_R = RQuals.getObjCGCAttr(); 10268 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements"); 10269 10270 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak) 10271 return {}; 10272 10273 if (GC_L == Qualifiers::Strong && RHSCan->isObjCObjectPointerType()) { 10274 return mergeTypes(LHS, getObjCGCQualType(RHS, Qualifiers::Strong)); 10275 } 10276 if (GC_R == Qualifiers::Strong && LHSCan->isObjCObjectPointerType()) { 10277 return mergeTypes(getObjCGCQualType(LHS, Qualifiers::Strong), RHS); 10278 } 10279 return {}; 10280 } 10281 10282 // Okay, qualifiers are equal. 10283 10284 Type::TypeClass LHSClass = LHSCan->getTypeClass(); 10285 Type::TypeClass RHSClass = RHSCan->getTypeClass(); 10286 10287 // We want to consider the two function types to be the same for these 10288 // comparisons, just force one to the other. 10289 if (LHSClass == Type::FunctionProto) LHSClass = Type::FunctionNoProto; 10290 if (RHSClass == Type::FunctionProto) RHSClass = Type::FunctionNoProto; 10291 10292 // Same as above for arrays 10293 if (LHSClass == Type::VariableArray || LHSClass == Type::IncompleteArray) 10294 LHSClass = Type::ConstantArray; 10295 if (RHSClass == Type::VariableArray || RHSClass == Type::IncompleteArray) 10296 RHSClass = Type::ConstantArray; 10297 10298 // ObjCInterfaces are just specialized ObjCObjects. 10299 if (LHSClass == Type::ObjCInterface) LHSClass = Type::ObjCObject; 10300 if (RHSClass == Type::ObjCInterface) RHSClass = Type::ObjCObject; 10301 10302 // Canonicalize ExtVector -> Vector. 10303 if (LHSClass == Type::ExtVector) LHSClass = Type::Vector; 10304 if (RHSClass == Type::ExtVector) RHSClass = Type::Vector; 10305 10306 // If the canonical type classes don't match. 10307 if (LHSClass != RHSClass) { 10308 // Note that we only have special rules for turning block enum 10309 // returns into block int returns, not vice-versa. 10310 if (const auto *ETy = LHS->getAs<EnumType>()) { 10311 return mergeEnumWithInteger(*this, ETy, RHS, false); 10312 } 10313 if (const EnumType* ETy = RHS->getAs<EnumType>()) { 10314 return mergeEnumWithInteger(*this, ETy, LHS, BlockReturnType); 10315 } 10316 // allow block pointer type to match an 'id' type. 10317 if (OfBlockPointer && !BlockReturnType) { 10318 if (LHS->isObjCIdType() && RHS->isBlockPointerType()) 10319 return LHS; 10320 if (RHS->isObjCIdType() && LHS->isBlockPointerType()) 10321 return RHS; 10322 } 10323 // Allow __auto_type to match anything; it merges to the type with more 10324 // information. 10325 if (const auto *AT = LHS->getAs<AutoType>()) { 10326 if (AT->isGNUAutoType()) 10327 return RHS; 10328 } 10329 if (const auto *AT = RHS->getAs<AutoType>()) { 10330 if (AT->isGNUAutoType()) 10331 return LHS; 10332 } 10333 return {}; 10334 } 10335 10336 // The canonical type classes match. 10337 switch (LHSClass) { 10338 #define TYPE(Class, Base) 10339 #define ABSTRACT_TYPE(Class, Base) 10340 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: 10341 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: 10342 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 10343 #include "clang/AST/TypeNodes.inc" 10344 llvm_unreachable("Non-canonical and dependent types shouldn't get here"); 10345 10346 case Type::Auto: 10347 case Type::DeducedTemplateSpecialization: 10348 case Type::LValueReference: 10349 case Type::RValueReference: 10350 case Type::MemberPointer: 10351 llvm_unreachable("C++ should never be in mergeTypes"); 10352 10353 case Type::ObjCInterface: 10354 case Type::IncompleteArray: 10355 case Type::VariableArray: 10356 case Type::FunctionProto: 10357 case Type::ExtVector: 10358 llvm_unreachable("Types are eliminated above"); 10359 10360 case Type::Pointer: 10361 { 10362 // Merge two pointer types, while trying to preserve typedef info 10363 QualType LHSPointee = LHS->castAs<PointerType>()->getPointeeType(); 10364 QualType RHSPointee = RHS->castAs<PointerType>()->getPointeeType(); 10365 if (Unqualified) { 10366 LHSPointee = LHSPointee.getUnqualifiedType(); 10367 RHSPointee = RHSPointee.getUnqualifiedType(); 10368 } 10369 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, false, 10370 Unqualified); 10371 if (ResultType.isNull()) 10372 return {}; 10373 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType)) 10374 return LHS; 10375 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType)) 10376 return RHS; 10377 return getPointerType(ResultType); 10378 } 10379 case Type::BlockPointer: 10380 { 10381 // Merge two block pointer types, while trying to preserve typedef info 10382 QualType LHSPointee = LHS->castAs<BlockPointerType>()->getPointeeType(); 10383 QualType RHSPointee = RHS->castAs<BlockPointerType>()->getPointeeType(); 10384 if (Unqualified) { 10385 LHSPointee = LHSPointee.getUnqualifiedType(); 10386 RHSPointee = RHSPointee.getUnqualifiedType(); 10387 } 10388 if (getLangOpts().OpenCL) { 10389 Qualifiers LHSPteeQual = LHSPointee.getQualifiers(); 10390 Qualifiers RHSPteeQual = RHSPointee.getQualifiers(); 10391 // Blocks can't be an expression in a ternary operator (OpenCL v2.0 10392 // 6.12.5) thus the following check is asymmetric. 10393 if (!LHSPteeQual.isAddressSpaceSupersetOf(RHSPteeQual)) 10394 return {}; 10395 LHSPteeQual.removeAddressSpace(); 10396 RHSPteeQual.removeAddressSpace(); 10397 LHSPointee = 10398 QualType(LHSPointee.getTypePtr(), LHSPteeQual.getAsOpaqueValue()); 10399 RHSPointee = 10400 QualType(RHSPointee.getTypePtr(), RHSPteeQual.getAsOpaqueValue()); 10401 } 10402 QualType ResultType = mergeTypes(LHSPointee, RHSPointee, OfBlockPointer, 10403 Unqualified); 10404 if (ResultType.isNull()) 10405 return {}; 10406 if (getCanonicalType(LHSPointee) == getCanonicalType(ResultType)) 10407 return LHS; 10408 if (getCanonicalType(RHSPointee) == getCanonicalType(ResultType)) 10409 return RHS; 10410 return getBlockPointerType(ResultType); 10411 } 10412 case Type::Atomic: 10413 { 10414 // Merge two pointer types, while trying to preserve typedef info 10415 QualType LHSValue = LHS->castAs<AtomicType>()->getValueType(); 10416 QualType RHSValue = RHS->castAs<AtomicType>()->getValueType(); 10417 if (Unqualified) { 10418 LHSValue = LHSValue.getUnqualifiedType(); 10419 RHSValue = RHSValue.getUnqualifiedType(); 10420 } 10421 QualType ResultType = mergeTypes(LHSValue, RHSValue, false, 10422 Unqualified); 10423 if (ResultType.isNull()) 10424 return {}; 10425 if (getCanonicalType(LHSValue) == getCanonicalType(ResultType)) 10426 return LHS; 10427 if (getCanonicalType(RHSValue) == getCanonicalType(ResultType)) 10428 return RHS; 10429 return getAtomicType(ResultType); 10430 } 10431 case Type::ConstantArray: 10432 { 10433 const ConstantArrayType* LCAT = getAsConstantArrayType(LHS); 10434 const ConstantArrayType* RCAT = getAsConstantArrayType(RHS); 10435 if (LCAT && RCAT && RCAT->getSize() != LCAT->getSize()) 10436 return {}; 10437 10438 QualType LHSElem = getAsArrayType(LHS)->getElementType(); 10439 QualType RHSElem = getAsArrayType(RHS)->getElementType(); 10440 if (Unqualified) { 10441 LHSElem = LHSElem.getUnqualifiedType(); 10442 RHSElem = RHSElem.getUnqualifiedType(); 10443 } 10444 10445 QualType ResultType = mergeTypes(LHSElem, RHSElem, false, Unqualified); 10446 if (ResultType.isNull()) 10447 return {}; 10448 10449 const VariableArrayType* LVAT = getAsVariableArrayType(LHS); 10450 const VariableArrayType* RVAT = getAsVariableArrayType(RHS); 10451 10452 // If either side is a variable array, and both are complete, check whether 10453 // the current dimension is definite. 10454 if (LVAT || RVAT) { 10455 auto SizeFetch = [this](const VariableArrayType* VAT, 10456 const ConstantArrayType* CAT) 10457 -> std::pair<bool,llvm::APInt> { 10458 if (VAT) { 10459 Optional<llvm::APSInt> TheInt; 10460 Expr *E = VAT->getSizeExpr(); 10461 if (E && (TheInt = E->getIntegerConstantExpr(*this))) 10462 return std::make_pair(true, *TheInt); 10463 return std::make_pair(false, llvm::APSInt()); 10464 } 10465 if (CAT) 10466 return std::make_pair(true, CAT->getSize()); 10467 return std::make_pair(false, llvm::APInt()); 10468 }; 10469 10470 bool HaveLSize, HaveRSize; 10471 llvm::APInt LSize, RSize; 10472 std::tie(HaveLSize, LSize) = SizeFetch(LVAT, LCAT); 10473 std::tie(HaveRSize, RSize) = SizeFetch(RVAT, RCAT); 10474 if (HaveLSize && HaveRSize && !llvm::APInt::isSameValue(LSize, RSize)) 10475 return {}; // Definite, but unequal, array dimension 10476 } 10477 10478 if (LCAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) 10479 return LHS; 10480 if (RCAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) 10481 return RHS; 10482 if (LCAT) 10483 return getConstantArrayType(ResultType, LCAT->getSize(), 10484 LCAT->getSizeExpr(), 10485 ArrayType::ArraySizeModifier(), 0); 10486 if (RCAT) 10487 return getConstantArrayType(ResultType, RCAT->getSize(), 10488 RCAT->getSizeExpr(), 10489 ArrayType::ArraySizeModifier(), 0); 10490 if (LVAT && getCanonicalType(LHSElem) == getCanonicalType(ResultType)) 10491 return LHS; 10492 if (RVAT && getCanonicalType(RHSElem) == getCanonicalType(ResultType)) 10493 return RHS; 10494 if (LVAT) { 10495 // FIXME: This isn't correct! But tricky to implement because 10496 // the array's size has to be the size of LHS, but the type 10497 // has to be different. 10498 return LHS; 10499 } 10500 if (RVAT) { 10501 // FIXME: This isn't correct! But tricky to implement because 10502 // the array's size has to be the size of RHS, but the type 10503 // has to be different. 10504 return RHS; 10505 } 10506 if (getCanonicalType(LHSElem) == getCanonicalType(ResultType)) return LHS; 10507 if (getCanonicalType(RHSElem) == getCanonicalType(ResultType)) return RHS; 10508 return getIncompleteArrayType(ResultType, 10509 ArrayType::ArraySizeModifier(), 0); 10510 } 10511 case Type::FunctionNoProto: 10512 return mergeFunctionTypes(LHS, RHS, OfBlockPointer, Unqualified); 10513 case Type::Record: 10514 case Type::Enum: 10515 return {}; 10516 case Type::Builtin: 10517 // Only exactly equal builtin types are compatible, which is tested above. 10518 return {}; 10519 case Type::Complex: 10520 // Distinct complex types are incompatible. 10521 return {}; 10522 case Type::Vector: 10523 // FIXME: The merged type should be an ExtVector! 10524 if (areCompatVectorTypes(LHSCan->castAs<VectorType>(), 10525 RHSCan->castAs<VectorType>())) 10526 return LHS; 10527 return {}; 10528 case Type::ConstantMatrix: 10529 if (areCompatMatrixTypes(LHSCan->castAs<ConstantMatrixType>(), 10530 RHSCan->castAs<ConstantMatrixType>())) 10531 return LHS; 10532 return {}; 10533 case Type::ObjCObject: { 10534 // Check if the types are assignment compatible. 10535 // FIXME: This should be type compatibility, e.g. whether 10536 // "LHS x; RHS x;" at global scope is legal. 10537 if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectType>(), 10538 RHS->castAs<ObjCObjectType>())) 10539 return LHS; 10540 return {}; 10541 } 10542 case Type::ObjCObjectPointer: 10543 if (OfBlockPointer) { 10544 if (canAssignObjCInterfacesInBlockPointer( 10545 LHS->castAs<ObjCObjectPointerType>(), 10546 RHS->castAs<ObjCObjectPointerType>(), BlockReturnType)) 10547 return LHS; 10548 return {}; 10549 } 10550 if (canAssignObjCInterfaces(LHS->castAs<ObjCObjectPointerType>(), 10551 RHS->castAs<ObjCObjectPointerType>())) 10552 return LHS; 10553 return {}; 10554 case Type::Pipe: 10555 assert(LHS != RHS && 10556 "Equivalent pipe types should have already been handled!"); 10557 return {}; 10558 case Type::BitInt: { 10559 // Merge two bit-precise int types, while trying to preserve typedef info. 10560 bool LHSUnsigned = LHS->castAs<BitIntType>()->isUnsigned(); 10561 bool RHSUnsigned = RHS->castAs<BitIntType>()->isUnsigned(); 10562 unsigned LHSBits = LHS->castAs<BitIntType>()->getNumBits(); 10563 unsigned RHSBits = RHS->castAs<BitIntType>()->getNumBits(); 10564 10565 // Like unsigned/int, shouldn't have a type if they don't match. 10566 if (LHSUnsigned != RHSUnsigned) 10567 return {}; 10568 10569 if (LHSBits != RHSBits) 10570 return {}; 10571 return LHS; 10572 } 10573 } 10574 10575 llvm_unreachable("Invalid Type::Class!"); 10576 } 10577 10578 bool ASTContext::mergeExtParameterInfo( 10579 const FunctionProtoType *FirstFnType, const FunctionProtoType *SecondFnType, 10580 bool &CanUseFirst, bool &CanUseSecond, 10581 SmallVectorImpl<FunctionProtoType::ExtParameterInfo> &NewParamInfos) { 10582 assert(NewParamInfos.empty() && "param info list not empty"); 10583 CanUseFirst = CanUseSecond = true; 10584 bool FirstHasInfo = FirstFnType->hasExtParameterInfos(); 10585 bool SecondHasInfo = SecondFnType->hasExtParameterInfos(); 10586 10587 // Fast path: if the first type doesn't have ext parameter infos, 10588 // we match if and only if the second type also doesn't have them. 10589 if (!FirstHasInfo && !SecondHasInfo) 10590 return true; 10591 10592 bool NeedParamInfo = false; 10593 size_t E = FirstHasInfo ? FirstFnType->getExtParameterInfos().size() 10594 : SecondFnType->getExtParameterInfos().size(); 10595 10596 for (size_t I = 0; I < E; ++I) { 10597 FunctionProtoType::ExtParameterInfo FirstParam, SecondParam; 10598 if (FirstHasInfo) 10599 FirstParam = FirstFnType->getExtParameterInfo(I); 10600 if (SecondHasInfo) 10601 SecondParam = SecondFnType->getExtParameterInfo(I); 10602 10603 // Cannot merge unless everything except the noescape flag matches. 10604 if (FirstParam.withIsNoEscape(false) != SecondParam.withIsNoEscape(false)) 10605 return false; 10606 10607 bool FirstNoEscape = FirstParam.isNoEscape(); 10608 bool SecondNoEscape = SecondParam.isNoEscape(); 10609 bool IsNoEscape = FirstNoEscape && SecondNoEscape; 10610 NewParamInfos.push_back(FirstParam.withIsNoEscape(IsNoEscape)); 10611 if (NewParamInfos.back().getOpaqueValue()) 10612 NeedParamInfo = true; 10613 if (FirstNoEscape != IsNoEscape) 10614 CanUseFirst = false; 10615 if (SecondNoEscape != IsNoEscape) 10616 CanUseSecond = false; 10617 } 10618 10619 if (!NeedParamInfo) 10620 NewParamInfos.clear(); 10621 10622 return true; 10623 } 10624 10625 void ASTContext::ResetObjCLayout(const ObjCContainerDecl *CD) { 10626 ObjCLayouts[CD] = nullptr; 10627 } 10628 10629 /// mergeObjCGCQualifiers - This routine merges ObjC's GC attribute of 'LHS' and 10630 /// 'RHS' attributes and returns the merged version; including for function 10631 /// return types. 10632 QualType ASTContext::mergeObjCGCQualifiers(QualType LHS, QualType RHS) { 10633 QualType LHSCan = getCanonicalType(LHS), 10634 RHSCan = getCanonicalType(RHS); 10635 // If two types are identical, they are compatible. 10636 if (LHSCan == RHSCan) 10637 return LHS; 10638 if (RHSCan->isFunctionType()) { 10639 if (!LHSCan->isFunctionType()) 10640 return {}; 10641 QualType OldReturnType = 10642 cast<FunctionType>(RHSCan.getTypePtr())->getReturnType(); 10643 QualType NewReturnType = 10644 cast<FunctionType>(LHSCan.getTypePtr())->getReturnType(); 10645 QualType ResReturnType = 10646 mergeObjCGCQualifiers(NewReturnType, OldReturnType); 10647 if (ResReturnType.isNull()) 10648 return {}; 10649 if (ResReturnType == NewReturnType || ResReturnType == OldReturnType) { 10650 // id foo(); ... __strong id foo(); or: __strong id foo(); ... id foo(); 10651 // In either case, use OldReturnType to build the new function type. 10652 const auto *F = LHS->castAs<FunctionType>(); 10653 if (const auto *FPT = cast<FunctionProtoType>(F)) { 10654 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo(); 10655 EPI.ExtInfo = getFunctionExtInfo(LHS); 10656 QualType ResultType = 10657 getFunctionType(OldReturnType, FPT->getParamTypes(), EPI); 10658 return ResultType; 10659 } 10660 } 10661 return {}; 10662 } 10663 10664 // If the qualifiers are different, the types can still be merged. 10665 Qualifiers LQuals = LHSCan.getLocalQualifiers(); 10666 Qualifiers RQuals = RHSCan.getLocalQualifiers(); 10667 if (LQuals != RQuals) { 10668 // If any of these qualifiers are different, we have a type mismatch. 10669 if (LQuals.getCVRQualifiers() != RQuals.getCVRQualifiers() || 10670 LQuals.getAddressSpace() != RQuals.getAddressSpace()) 10671 return {}; 10672 10673 // Exactly one GC qualifier difference is allowed: __strong is 10674 // okay if the other type has no GC qualifier but is an Objective 10675 // C object pointer (i.e. implicitly strong by default). We fix 10676 // this by pretending that the unqualified type was actually 10677 // qualified __strong. 10678 Qualifiers::GC GC_L = LQuals.getObjCGCAttr(); 10679 Qualifiers::GC GC_R = RQuals.getObjCGCAttr(); 10680 assert((GC_L != GC_R) && "unequal qualifier sets had only equal elements"); 10681 10682 if (GC_L == Qualifiers::Weak || GC_R == Qualifiers::Weak) 10683 return {}; 10684 10685 if (GC_L == Qualifiers::Strong) 10686 return LHS; 10687 if (GC_R == Qualifiers::Strong) 10688 return RHS; 10689 return {}; 10690 } 10691 10692 if (LHSCan->isObjCObjectPointerType() && RHSCan->isObjCObjectPointerType()) { 10693 QualType LHSBaseQT = LHS->castAs<ObjCObjectPointerType>()->getPointeeType(); 10694 QualType RHSBaseQT = RHS->castAs<ObjCObjectPointerType>()->getPointeeType(); 10695 QualType ResQT = mergeObjCGCQualifiers(LHSBaseQT, RHSBaseQT); 10696 if (ResQT == LHSBaseQT) 10697 return LHS; 10698 if (ResQT == RHSBaseQT) 10699 return RHS; 10700 } 10701 return {}; 10702 } 10703 10704 //===----------------------------------------------------------------------===// 10705 // Integer Predicates 10706 //===----------------------------------------------------------------------===// 10707 10708 unsigned ASTContext::getIntWidth(QualType T) const { 10709 if (const auto *ET = T->getAs<EnumType>()) 10710 T = ET->getDecl()->getIntegerType(); 10711 if (T->isBooleanType()) 10712 return 1; 10713 if (const auto *EIT = T->getAs<BitIntType>()) 10714 return EIT->getNumBits(); 10715 // For builtin types, just use the standard type sizing method 10716 return (unsigned)getTypeSize(T); 10717 } 10718 10719 QualType ASTContext::getCorrespondingUnsignedType(QualType T) const { 10720 assert((T->hasSignedIntegerRepresentation() || T->isSignedFixedPointType()) && 10721 "Unexpected type"); 10722 10723 // Turn <4 x signed int> -> <4 x unsigned int> 10724 if (const auto *VTy = T->getAs<VectorType>()) 10725 return getVectorType(getCorrespondingUnsignedType(VTy->getElementType()), 10726 VTy->getNumElements(), VTy->getVectorKind()); 10727 10728 // For _BitInt, return an unsigned _BitInt with same width. 10729 if (const auto *EITy = T->getAs<BitIntType>()) 10730 return getBitIntType(/*Unsigned=*/true, EITy->getNumBits()); 10731 10732 // For enums, get the underlying integer type of the enum, and let the general 10733 // integer type signchanging code handle it. 10734 if (const auto *ETy = T->getAs<EnumType>()) 10735 T = ETy->getDecl()->getIntegerType(); 10736 10737 switch (T->castAs<BuiltinType>()->getKind()) { 10738 case BuiltinType::Char_S: 10739 case BuiltinType::SChar: 10740 return UnsignedCharTy; 10741 case BuiltinType::Short: 10742 return UnsignedShortTy; 10743 case BuiltinType::Int: 10744 return UnsignedIntTy; 10745 case BuiltinType::Long: 10746 return UnsignedLongTy; 10747 case BuiltinType::LongLong: 10748 return UnsignedLongLongTy; 10749 case BuiltinType::Int128: 10750 return UnsignedInt128Ty; 10751 // wchar_t is special. It is either signed or not, but when it's signed, 10752 // there's no matching "unsigned wchar_t". Therefore we return the unsigned 10753 // version of it's underlying type instead. 10754 case BuiltinType::WChar_S: 10755 return getUnsignedWCharType(); 10756 10757 case BuiltinType::ShortAccum: 10758 return UnsignedShortAccumTy; 10759 case BuiltinType::Accum: 10760 return UnsignedAccumTy; 10761 case BuiltinType::LongAccum: 10762 return UnsignedLongAccumTy; 10763 case BuiltinType::SatShortAccum: 10764 return SatUnsignedShortAccumTy; 10765 case BuiltinType::SatAccum: 10766 return SatUnsignedAccumTy; 10767 case BuiltinType::SatLongAccum: 10768 return SatUnsignedLongAccumTy; 10769 case BuiltinType::ShortFract: 10770 return UnsignedShortFractTy; 10771 case BuiltinType::Fract: 10772 return UnsignedFractTy; 10773 case BuiltinType::LongFract: 10774 return UnsignedLongFractTy; 10775 case BuiltinType::SatShortFract: 10776 return SatUnsignedShortFractTy; 10777 case BuiltinType::SatFract: 10778 return SatUnsignedFractTy; 10779 case BuiltinType::SatLongFract: 10780 return SatUnsignedLongFractTy; 10781 default: 10782 llvm_unreachable("Unexpected signed integer or fixed point type"); 10783 } 10784 } 10785 10786 QualType ASTContext::getCorrespondingSignedType(QualType T) const { 10787 assert((T->hasUnsignedIntegerRepresentation() || 10788 T->isUnsignedFixedPointType()) && 10789 "Unexpected type"); 10790 10791 // Turn <4 x unsigned int> -> <4 x signed int> 10792 if (const auto *VTy = T->getAs<VectorType>()) 10793 return getVectorType(getCorrespondingSignedType(VTy->getElementType()), 10794 VTy->getNumElements(), VTy->getVectorKind()); 10795 10796 // For _BitInt, return a signed _BitInt with same width. 10797 if (const auto *EITy = T->getAs<BitIntType>()) 10798 return getBitIntType(/*Unsigned=*/false, EITy->getNumBits()); 10799 10800 // For enums, get the underlying integer type of the enum, and let the general 10801 // integer type signchanging code handle it. 10802 if (const auto *ETy = T->getAs<EnumType>()) 10803 T = ETy->getDecl()->getIntegerType(); 10804 10805 switch (T->castAs<BuiltinType>()->getKind()) { 10806 case BuiltinType::Char_U: 10807 case BuiltinType::UChar: 10808 return SignedCharTy; 10809 case BuiltinType::UShort: 10810 return ShortTy; 10811 case BuiltinType::UInt: 10812 return IntTy; 10813 case BuiltinType::ULong: 10814 return LongTy; 10815 case BuiltinType::ULongLong: 10816 return LongLongTy; 10817 case BuiltinType::UInt128: 10818 return Int128Ty; 10819 // wchar_t is special. It is either unsigned or not, but when it's unsigned, 10820 // there's no matching "signed wchar_t". Therefore we return the signed 10821 // version of it's underlying type instead. 10822 case BuiltinType::WChar_U: 10823 return getSignedWCharType(); 10824 10825 case BuiltinType::UShortAccum: 10826 return ShortAccumTy; 10827 case BuiltinType::UAccum: 10828 return AccumTy; 10829 case BuiltinType::ULongAccum: 10830 return LongAccumTy; 10831 case BuiltinType::SatUShortAccum: 10832 return SatShortAccumTy; 10833 case BuiltinType::SatUAccum: 10834 return SatAccumTy; 10835 case BuiltinType::SatULongAccum: 10836 return SatLongAccumTy; 10837 case BuiltinType::UShortFract: 10838 return ShortFractTy; 10839 case BuiltinType::UFract: 10840 return FractTy; 10841 case BuiltinType::ULongFract: 10842 return LongFractTy; 10843 case BuiltinType::SatUShortFract: 10844 return SatShortFractTy; 10845 case BuiltinType::SatUFract: 10846 return SatFractTy; 10847 case BuiltinType::SatULongFract: 10848 return SatLongFractTy; 10849 default: 10850 llvm_unreachable("Unexpected unsigned integer or fixed point type"); 10851 } 10852 } 10853 10854 ASTMutationListener::~ASTMutationListener() = default; 10855 10856 void ASTMutationListener::DeducedReturnType(const FunctionDecl *FD, 10857 QualType ReturnType) {} 10858 10859 //===----------------------------------------------------------------------===// 10860 // Builtin Type Computation 10861 //===----------------------------------------------------------------------===// 10862 10863 /// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the 10864 /// pointer over the consumed characters. This returns the resultant type. If 10865 /// AllowTypeModifiers is false then modifier like * are not parsed, just basic 10866 /// types. This allows "v2i*" to be parsed as a pointer to a v2i instead of 10867 /// a vector of "i*". 10868 /// 10869 /// RequiresICE is filled in on return to indicate whether the value is required 10870 /// to be an Integer Constant Expression. 10871 static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context, 10872 ASTContext::GetBuiltinTypeError &Error, 10873 bool &RequiresICE, 10874 bool AllowTypeModifiers) { 10875 // Modifiers. 10876 int HowLong = 0; 10877 bool Signed = false, Unsigned = false; 10878 RequiresICE = false; 10879 10880 // Read the prefixed modifiers first. 10881 bool Done = false; 10882 #ifndef NDEBUG 10883 bool IsSpecial = false; 10884 #endif 10885 while (!Done) { 10886 switch (*Str++) { 10887 default: Done = true; --Str; break; 10888 case 'I': 10889 RequiresICE = true; 10890 break; 10891 case 'S': 10892 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!"); 10893 assert(!Signed && "Can't use 'S' modifier multiple times!"); 10894 Signed = true; 10895 break; 10896 case 'U': 10897 assert(!Signed && "Can't use both 'S' and 'U' modifiers!"); 10898 assert(!Unsigned && "Can't use 'U' modifier multiple times!"); 10899 Unsigned = true; 10900 break; 10901 case 'L': 10902 assert(!IsSpecial && "Can't use 'L' with 'W', 'N', 'Z' or 'O' modifiers"); 10903 assert(HowLong <= 2 && "Can't have LLLL modifier"); 10904 ++HowLong; 10905 break; 10906 case 'N': 10907 // 'N' behaves like 'L' for all non LP64 targets and 'int' otherwise. 10908 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10909 assert(HowLong == 0 && "Can't use both 'L' and 'N' modifiers!"); 10910 #ifndef NDEBUG 10911 IsSpecial = true; 10912 #endif 10913 if (Context.getTargetInfo().getLongWidth() == 32) 10914 ++HowLong; 10915 break; 10916 case 'W': 10917 // This modifier represents int64 type. 10918 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10919 assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!"); 10920 #ifndef NDEBUG 10921 IsSpecial = true; 10922 #endif 10923 switch (Context.getTargetInfo().getInt64Type()) { 10924 default: 10925 llvm_unreachable("Unexpected integer type"); 10926 case TargetInfo::SignedLong: 10927 HowLong = 1; 10928 break; 10929 case TargetInfo::SignedLongLong: 10930 HowLong = 2; 10931 break; 10932 } 10933 break; 10934 case 'Z': 10935 // This modifier represents int32 type. 10936 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10937 assert(HowLong == 0 && "Can't use both 'L' and 'Z' modifiers!"); 10938 #ifndef NDEBUG 10939 IsSpecial = true; 10940 #endif 10941 switch (Context.getTargetInfo().getIntTypeByWidth(32, true)) { 10942 default: 10943 llvm_unreachable("Unexpected integer type"); 10944 case TargetInfo::SignedInt: 10945 HowLong = 0; 10946 break; 10947 case TargetInfo::SignedLong: 10948 HowLong = 1; 10949 break; 10950 case TargetInfo::SignedLongLong: 10951 HowLong = 2; 10952 break; 10953 } 10954 break; 10955 case 'O': 10956 assert(!IsSpecial && "Can't use two 'N', 'W', 'Z' or 'O' modifiers!"); 10957 assert(HowLong == 0 && "Can't use both 'L' and 'O' modifiers!"); 10958 #ifndef NDEBUG 10959 IsSpecial = true; 10960 #endif 10961 if (Context.getLangOpts().OpenCL) 10962 HowLong = 1; 10963 else 10964 HowLong = 2; 10965 break; 10966 } 10967 } 10968 10969 QualType Type; 10970 10971 // Read the base type. 10972 switch (*Str++) { 10973 default: llvm_unreachable("Unknown builtin type letter!"); 10974 case 'x': 10975 assert(HowLong == 0 && !Signed && !Unsigned && 10976 "Bad modifiers used with 'x'!"); 10977 Type = Context.Float16Ty; 10978 break; 10979 case 'y': 10980 assert(HowLong == 0 && !Signed && !Unsigned && 10981 "Bad modifiers used with 'y'!"); 10982 Type = Context.BFloat16Ty; 10983 break; 10984 case 'v': 10985 assert(HowLong == 0 && !Signed && !Unsigned && 10986 "Bad modifiers used with 'v'!"); 10987 Type = Context.VoidTy; 10988 break; 10989 case 'h': 10990 assert(HowLong == 0 && !Signed && !Unsigned && 10991 "Bad modifiers used with 'h'!"); 10992 Type = Context.HalfTy; 10993 break; 10994 case 'f': 10995 assert(HowLong == 0 && !Signed && !Unsigned && 10996 "Bad modifiers used with 'f'!"); 10997 Type = Context.FloatTy; 10998 break; 10999 case 'd': 11000 assert(HowLong < 3 && !Signed && !Unsigned && 11001 "Bad modifiers used with 'd'!"); 11002 if (HowLong == 1) 11003 Type = Context.LongDoubleTy; 11004 else if (HowLong == 2) 11005 Type = Context.Float128Ty; 11006 else 11007 Type = Context.DoubleTy; 11008 break; 11009 case 's': 11010 assert(HowLong == 0 && "Bad modifiers used with 's'!"); 11011 if (Unsigned) 11012 Type = Context.UnsignedShortTy; 11013 else 11014 Type = Context.ShortTy; 11015 break; 11016 case 'i': 11017 if (HowLong == 3) 11018 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty; 11019 else if (HowLong == 2) 11020 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy; 11021 else if (HowLong == 1) 11022 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy; 11023 else 11024 Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy; 11025 break; 11026 case 'c': 11027 assert(HowLong == 0 && "Bad modifiers used with 'c'!"); 11028 if (Signed) 11029 Type = Context.SignedCharTy; 11030 else if (Unsigned) 11031 Type = Context.UnsignedCharTy; 11032 else 11033 Type = Context.CharTy; 11034 break; 11035 case 'b': // boolean 11036 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!"); 11037 Type = Context.BoolTy; 11038 break; 11039 case 'z': // size_t. 11040 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!"); 11041 Type = Context.getSizeType(); 11042 break; 11043 case 'w': // wchar_t. 11044 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'w'!"); 11045 Type = Context.getWideCharType(); 11046 break; 11047 case 'F': 11048 Type = Context.getCFConstantStringType(); 11049 break; 11050 case 'G': 11051 Type = Context.getObjCIdType(); 11052 break; 11053 case 'H': 11054 Type = Context.getObjCSelType(); 11055 break; 11056 case 'M': 11057 Type = Context.getObjCSuperType(); 11058 break; 11059 case 'a': 11060 Type = Context.getBuiltinVaListType(); 11061 assert(!Type.isNull() && "builtin va list type not initialized!"); 11062 break; 11063 case 'A': 11064 // This is a "reference" to a va_list; however, what exactly 11065 // this means depends on how va_list is defined. There are two 11066 // different kinds of va_list: ones passed by value, and ones 11067 // passed by reference. An example of a by-value va_list is 11068 // x86, where va_list is a char*. An example of by-ref va_list 11069 // is x86-64, where va_list is a __va_list_tag[1]. For x86, 11070 // we want this argument to be a char*&; for x86-64, we want 11071 // it to be a __va_list_tag*. 11072 Type = Context.getBuiltinVaListType(); 11073 assert(!Type.isNull() && "builtin va list type not initialized!"); 11074 if (Type->isArrayType()) 11075 Type = Context.getArrayDecayedType(Type); 11076 else 11077 Type = Context.getLValueReferenceType(Type); 11078 break; 11079 case 'q': { 11080 char *End; 11081 unsigned NumElements = strtoul(Str, &End, 10); 11082 assert(End != Str && "Missing vector size"); 11083 Str = End; 11084 11085 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, 11086 RequiresICE, false); 11087 assert(!RequiresICE && "Can't require vector ICE"); 11088 11089 Type = Context.getScalableVectorType(ElementType, NumElements); 11090 break; 11091 } 11092 case 'V': { 11093 char *End; 11094 unsigned NumElements = strtoul(Str, &End, 10); 11095 assert(End != Str && "Missing vector size"); 11096 Str = End; 11097 11098 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, 11099 RequiresICE, false); 11100 assert(!RequiresICE && "Can't require vector ICE"); 11101 11102 // TODO: No way to make AltiVec vectors in builtins yet. 11103 Type = Context.getVectorType(ElementType, NumElements, 11104 VectorType::GenericVector); 11105 break; 11106 } 11107 case 'E': { 11108 char *End; 11109 11110 unsigned NumElements = strtoul(Str, &End, 10); 11111 assert(End != Str && "Missing vector size"); 11112 11113 Str = End; 11114 11115 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, 11116 false); 11117 Type = Context.getExtVectorType(ElementType, NumElements); 11118 break; 11119 } 11120 case 'X': { 11121 QualType ElementType = DecodeTypeFromStr(Str, Context, Error, RequiresICE, 11122 false); 11123 assert(!RequiresICE && "Can't require complex ICE"); 11124 Type = Context.getComplexType(ElementType); 11125 break; 11126 } 11127 case 'Y': 11128 Type = Context.getPointerDiffType(); 11129 break; 11130 case 'P': 11131 Type = Context.getFILEType(); 11132 if (Type.isNull()) { 11133 Error = ASTContext::GE_Missing_stdio; 11134 return {}; 11135 } 11136 break; 11137 case 'J': 11138 if (Signed) 11139 Type = Context.getsigjmp_bufType(); 11140 else 11141 Type = Context.getjmp_bufType(); 11142 11143 if (Type.isNull()) { 11144 Error = ASTContext::GE_Missing_setjmp; 11145 return {}; 11146 } 11147 break; 11148 case 'K': 11149 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'K'!"); 11150 Type = Context.getucontext_tType(); 11151 11152 if (Type.isNull()) { 11153 Error = ASTContext::GE_Missing_ucontext; 11154 return {}; 11155 } 11156 break; 11157 case 'p': 11158 Type = Context.getProcessIDType(); 11159 break; 11160 } 11161 11162 // If there are modifiers and if we're allowed to parse them, go for it. 11163 Done = !AllowTypeModifiers; 11164 while (!Done) { 11165 switch (char c = *Str++) { 11166 default: Done = true; --Str; break; 11167 case '*': 11168 case '&': { 11169 // Both pointers and references can have their pointee types 11170 // qualified with an address space. 11171 char *End; 11172 unsigned AddrSpace = strtoul(Str, &End, 10); 11173 if (End != Str) { 11174 // Note AddrSpace == 0 is not the same as an unspecified address space. 11175 Type = Context.getAddrSpaceQualType( 11176 Type, 11177 Context.getLangASForBuiltinAddressSpace(AddrSpace)); 11178 Str = End; 11179 } 11180 if (c == '*') 11181 Type = Context.getPointerType(Type); 11182 else 11183 Type = Context.getLValueReferenceType(Type); 11184 break; 11185 } 11186 // FIXME: There's no way to have a built-in with an rvalue ref arg. 11187 case 'C': 11188 Type = Type.withConst(); 11189 break; 11190 case 'D': 11191 Type = Context.getVolatileType(Type); 11192 break; 11193 case 'R': 11194 Type = Type.withRestrict(); 11195 break; 11196 } 11197 } 11198 11199 assert((!RequiresICE || Type->isIntegralOrEnumerationType()) && 11200 "Integer constant 'I' type must be an integer"); 11201 11202 return Type; 11203 } 11204 11205 // On some targets such as PowerPC, some of the builtins are defined with custom 11206 // type descriptors for target-dependent types. These descriptors are decoded in 11207 // other functions, but it may be useful to be able to fall back to default 11208 // descriptor decoding to define builtins mixing target-dependent and target- 11209 // independent types. This function allows decoding one type descriptor with 11210 // default decoding. 11211 QualType ASTContext::DecodeTypeStr(const char *&Str, const ASTContext &Context, 11212 GetBuiltinTypeError &Error, bool &RequireICE, 11213 bool AllowTypeModifiers) const { 11214 return DecodeTypeFromStr(Str, Context, Error, RequireICE, AllowTypeModifiers); 11215 } 11216 11217 /// GetBuiltinType - Return the type for the specified builtin. 11218 QualType ASTContext::GetBuiltinType(unsigned Id, 11219 GetBuiltinTypeError &Error, 11220 unsigned *IntegerConstantArgs) const { 11221 const char *TypeStr = BuiltinInfo.getTypeString(Id); 11222 if (TypeStr[0] == '\0') { 11223 Error = GE_Missing_type; 11224 return {}; 11225 } 11226 11227 SmallVector<QualType, 8> ArgTypes; 11228 11229 bool RequiresICE = false; 11230 Error = GE_None; 11231 QualType ResType = DecodeTypeFromStr(TypeStr, *this, Error, 11232 RequiresICE, true); 11233 if (Error != GE_None) 11234 return {}; 11235 11236 assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE"); 11237 11238 while (TypeStr[0] && TypeStr[0] != '.') { 11239 QualType Ty = DecodeTypeFromStr(TypeStr, *this, Error, RequiresICE, true); 11240 if (Error != GE_None) 11241 return {}; 11242 11243 // If this argument is required to be an IntegerConstantExpression and the 11244 // caller cares, fill in the bitmask we return. 11245 if (RequiresICE && IntegerConstantArgs) 11246 *IntegerConstantArgs |= 1 << ArgTypes.size(); 11247 11248 // Do array -> pointer decay. The builtin should use the decayed type. 11249 if (Ty->isArrayType()) 11250 Ty = getArrayDecayedType(Ty); 11251 11252 ArgTypes.push_back(Ty); 11253 } 11254 11255 if (Id == Builtin::BI__GetExceptionInfo) 11256 return {}; 11257 11258 assert((TypeStr[0] != '.' || TypeStr[1] == 0) && 11259 "'.' should only occur at end of builtin type list!"); 11260 11261 bool Variadic = (TypeStr[0] == '.'); 11262 11263 FunctionType::ExtInfo EI(getDefaultCallingConvention( 11264 Variadic, /*IsCXXMethod=*/false, /*IsBuiltin=*/true)); 11265 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true); 11266 11267 11268 // We really shouldn't be making a no-proto type here. 11269 if (ArgTypes.empty() && Variadic && !getLangOpts().requiresStrictPrototypes()) 11270 return getFunctionNoProtoType(ResType, EI); 11271 11272 FunctionProtoType::ExtProtoInfo EPI; 11273 EPI.ExtInfo = EI; 11274 EPI.Variadic = Variadic; 11275 if (getLangOpts().CPlusPlus && BuiltinInfo.isNoThrow(Id)) 11276 EPI.ExceptionSpec.Type = 11277 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; 11278 11279 return getFunctionType(ResType, ArgTypes, EPI); 11280 } 11281 11282 static GVALinkage basicGVALinkageForFunction(const ASTContext &Context, 11283 const FunctionDecl *FD) { 11284 if (!FD->isExternallyVisible()) 11285 return GVA_Internal; 11286 11287 // Non-user-provided functions get emitted as weak definitions with every 11288 // use, no matter whether they've been explicitly instantiated etc. 11289 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) 11290 if (!MD->isUserProvided()) 11291 return GVA_DiscardableODR; 11292 11293 GVALinkage External; 11294 switch (FD->getTemplateSpecializationKind()) { 11295 case TSK_Undeclared: 11296 case TSK_ExplicitSpecialization: 11297 External = GVA_StrongExternal; 11298 break; 11299 11300 case TSK_ExplicitInstantiationDefinition: 11301 return GVA_StrongODR; 11302 11303 // C++11 [temp.explicit]p10: 11304 // [ Note: The intent is that an inline function that is the subject of 11305 // an explicit instantiation declaration will still be implicitly 11306 // instantiated when used so that the body can be considered for 11307 // inlining, but that no out-of-line copy of the inline function would be 11308 // generated in the translation unit. -- end note ] 11309 case TSK_ExplicitInstantiationDeclaration: 11310 return GVA_AvailableExternally; 11311 11312 case TSK_ImplicitInstantiation: 11313 External = GVA_DiscardableODR; 11314 break; 11315 } 11316 11317 if (!FD->isInlined()) 11318 return External; 11319 11320 if ((!Context.getLangOpts().CPlusPlus && 11321 !Context.getTargetInfo().getCXXABI().isMicrosoft() && 11322 !FD->hasAttr<DLLExportAttr>()) || 11323 FD->hasAttr<GNUInlineAttr>()) { 11324 // FIXME: This doesn't match gcc's behavior for dllexport inline functions. 11325 11326 // GNU or C99 inline semantics. Determine whether this symbol should be 11327 // externally visible. 11328 if (FD->isInlineDefinitionExternallyVisible()) 11329 return External; 11330 11331 // C99 inline semantics, where the symbol is not externally visible. 11332 return GVA_AvailableExternally; 11333 } 11334 11335 // Functions specified with extern and inline in -fms-compatibility mode 11336 // forcibly get emitted. While the body of the function cannot be later 11337 // replaced, the function definition cannot be discarded. 11338 if (FD->isMSExternInline()) 11339 return GVA_StrongODR; 11340 11341 return GVA_DiscardableODR; 11342 } 11343 11344 static GVALinkage adjustGVALinkageForAttributes(const ASTContext &Context, 11345 const Decl *D, GVALinkage L) { 11346 // See http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx 11347 // dllexport/dllimport on inline functions. 11348 if (D->hasAttr<DLLImportAttr>()) { 11349 if (L == GVA_DiscardableODR || L == GVA_StrongODR) 11350 return GVA_AvailableExternally; 11351 } else if (D->hasAttr<DLLExportAttr>()) { 11352 if (L == GVA_DiscardableODR) 11353 return GVA_StrongODR; 11354 } else if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice) { 11355 // Device-side functions with __global__ attribute must always be 11356 // visible externally so they can be launched from host. 11357 if (D->hasAttr<CUDAGlobalAttr>() && 11358 (L == GVA_DiscardableODR || L == GVA_Internal)) 11359 return GVA_StrongODR; 11360 // Single source offloading languages like CUDA/HIP need to be able to 11361 // access static device variables from host code of the same compilation 11362 // unit. This is done by externalizing the static variable with a shared 11363 // name between the host and device compilation which is the same for the 11364 // same compilation unit whereas different among different compilation 11365 // units. 11366 if (Context.shouldExternalize(D)) 11367 return GVA_StrongExternal; 11368 } 11369 return L; 11370 } 11371 11372 /// Adjust the GVALinkage for a declaration based on what an external AST source 11373 /// knows about whether there can be other definitions of this declaration. 11374 static GVALinkage 11375 adjustGVALinkageForExternalDefinitionKind(const ASTContext &Ctx, const Decl *D, 11376 GVALinkage L) { 11377 ExternalASTSource *Source = Ctx.getExternalSource(); 11378 if (!Source) 11379 return L; 11380 11381 switch (Source->hasExternalDefinitions(D)) { 11382 case ExternalASTSource::EK_Never: 11383 // Other translation units rely on us to provide the definition. 11384 if (L == GVA_DiscardableODR) 11385 return GVA_StrongODR; 11386 break; 11387 11388 case ExternalASTSource::EK_Always: 11389 return GVA_AvailableExternally; 11390 11391 case ExternalASTSource::EK_ReplyHazy: 11392 break; 11393 } 11394 return L; 11395 } 11396 11397 GVALinkage ASTContext::GetGVALinkageForFunction(const FunctionDecl *FD) const { 11398 return adjustGVALinkageForExternalDefinitionKind(*this, FD, 11399 adjustGVALinkageForAttributes(*this, FD, 11400 basicGVALinkageForFunction(*this, FD))); 11401 } 11402 11403 static GVALinkage basicGVALinkageForVariable(const ASTContext &Context, 11404 const VarDecl *VD) { 11405 if (!VD->isExternallyVisible()) 11406 return GVA_Internal; 11407 11408 if (VD->isStaticLocal()) { 11409 const DeclContext *LexicalContext = VD->getParentFunctionOrMethod(); 11410 while (LexicalContext && !isa<FunctionDecl>(LexicalContext)) 11411 LexicalContext = LexicalContext->getLexicalParent(); 11412 11413 // ObjC Blocks can create local variables that don't have a FunctionDecl 11414 // LexicalContext. 11415 if (!LexicalContext) 11416 return GVA_DiscardableODR; 11417 11418 // Otherwise, let the static local variable inherit its linkage from the 11419 // nearest enclosing function. 11420 auto StaticLocalLinkage = 11421 Context.GetGVALinkageForFunction(cast<FunctionDecl>(LexicalContext)); 11422 11423 // Itanium ABI 5.2.2: "Each COMDAT group [for a static local variable] must 11424 // be emitted in any object with references to the symbol for the object it 11425 // contains, whether inline or out-of-line." 11426 // Similar behavior is observed with MSVC. An alternative ABI could use 11427 // StrongODR/AvailableExternally to match the function, but none are 11428 // known/supported currently. 11429 if (StaticLocalLinkage == GVA_StrongODR || 11430 StaticLocalLinkage == GVA_AvailableExternally) 11431 return GVA_DiscardableODR; 11432 return StaticLocalLinkage; 11433 } 11434 11435 // MSVC treats in-class initialized static data members as definitions. 11436 // By giving them non-strong linkage, out-of-line definitions won't 11437 // cause link errors. 11438 if (Context.isMSStaticDataMemberInlineDefinition(VD)) 11439 return GVA_DiscardableODR; 11440 11441 // Most non-template variables have strong linkage; inline variables are 11442 // linkonce_odr or (occasionally, for compatibility) weak_odr. 11443 GVALinkage StrongLinkage; 11444 switch (Context.getInlineVariableDefinitionKind(VD)) { 11445 case ASTContext::InlineVariableDefinitionKind::None: 11446 StrongLinkage = GVA_StrongExternal; 11447 break; 11448 case ASTContext::InlineVariableDefinitionKind::Weak: 11449 case ASTContext::InlineVariableDefinitionKind::WeakUnknown: 11450 StrongLinkage = GVA_DiscardableODR; 11451 break; 11452 case ASTContext::InlineVariableDefinitionKind::Strong: 11453 StrongLinkage = GVA_StrongODR; 11454 break; 11455 } 11456 11457 switch (VD->getTemplateSpecializationKind()) { 11458 case TSK_Undeclared: 11459 return StrongLinkage; 11460 11461 case TSK_ExplicitSpecialization: 11462 return Context.getTargetInfo().getCXXABI().isMicrosoft() && 11463 VD->isStaticDataMember() 11464 ? GVA_StrongODR 11465 : StrongLinkage; 11466 11467 case TSK_ExplicitInstantiationDefinition: 11468 return GVA_StrongODR; 11469 11470 case TSK_ExplicitInstantiationDeclaration: 11471 return GVA_AvailableExternally; 11472 11473 case TSK_ImplicitInstantiation: 11474 return GVA_DiscardableODR; 11475 } 11476 11477 llvm_unreachable("Invalid Linkage!"); 11478 } 11479 11480 GVALinkage ASTContext::GetGVALinkageForVariable(const VarDecl *VD) { 11481 return adjustGVALinkageForExternalDefinitionKind(*this, VD, 11482 adjustGVALinkageForAttributes(*this, VD, 11483 basicGVALinkageForVariable(*this, VD))); 11484 } 11485 11486 bool ASTContext::DeclMustBeEmitted(const Decl *D) { 11487 if (const auto *VD = dyn_cast<VarDecl>(D)) { 11488 if (!VD->isFileVarDecl()) 11489 return false; 11490 // Global named register variables (GNU extension) are never emitted. 11491 if (VD->getStorageClass() == SC_Register) 11492 return false; 11493 if (VD->getDescribedVarTemplate() || 11494 isa<VarTemplatePartialSpecializationDecl>(VD)) 11495 return false; 11496 } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 11497 // We never need to emit an uninstantiated function template. 11498 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) 11499 return false; 11500 } else if (isa<PragmaCommentDecl>(D)) 11501 return true; 11502 else if (isa<PragmaDetectMismatchDecl>(D)) 11503 return true; 11504 else if (isa<OMPRequiresDecl>(D)) 11505 return true; 11506 else if (isa<OMPThreadPrivateDecl>(D)) 11507 return !D->getDeclContext()->isDependentContext(); 11508 else if (isa<OMPAllocateDecl>(D)) 11509 return !D->getDeclContext()->isDependentContext(); 11510 else if (isa<OMPDeclareReductionDecl>(D) || isa<OMPDeclareMapperDecl>(D)) 11511 return !D->getDeclContext()->isDependentContext(); 11512 else if (isa<ImportDecl>(D)) 11513 return true; 11514 else 11515 return false; 11516 11517 // If this is a member of a class template, we do not need to emit it. 11518 if (D->getDeclContext()->isDependentContext()) 11519 return false; 11520 11521 // Weak references don't produce any output by themselves. 11522 if (D->hasAttr<WeakRefAttr>()) 11523 return false; 11524 11525 // Aliases and used decls are required. 11526 if (D->hasAttr<AliasAttr>() || D->hasAttr<UsedAttr>()) 11527 return true; 11528 11529 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 11530 // Forward declarations aren't required. 11531 if (!FD->doesThisDeclarationHaveABody()) 11532 return FD->doesDeclarationForceExternallyVisibleDefinition(); 11533 11534 // Constructors and destructors are required. 11535 if (FD->hasAttr<ConstructorAttr>() || FD->hasAttr<DestructorAttr>()) 11536 return true; 11537 11538 // The key function for a class is required. This rule only comes 11539 // into play when inline functions can be key functions, though. 11540 if (getTargetInfo().getCXXABI().canKeyFunctionBeInline()) { 11541 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) { 11542 const CXXRecordDecl *RD = MD->getParent(); 11543 if (MD->isOutOfLine() && RD->isDynamicClass()) { 11544 const CXXMethodDecl *KeyFunc = getCurrentKeyFunction(RD); 11545 if (KeyFunc && KeyFunc->getCanonicalDecl() == MD->getCanonicalDecl()) 11546 return true; 11547 } 11548 } 11549 } 11550 11551 GVALinkage Linkage = GetGVALinkageForFunction(FD); 11552 11553 // static, static inline, always_inline, and extern inline functions can 11554 // always be deferred. Normal inline functions can be deferred in C99/C++. 11555 // Implicit template instantiations can also be deferred in C++. 11556 return !isDiscardableGVALinkage(Linkage); 11557 } 11558 11559 const auto *VD = cast<VarDecl>(D); 11560 assert(VD->isFileVarDecl() && "Expected file scoped var"); 11561 11562 // If the decl is marked as `declare target to`, it should be emitted for the 11563 // host and for the device. 11564 if (LangOpts.OpenMP && 11565 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD)) 11566 return true; 11567 11568 if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly && 11569 !isMSStaticDataMemberInlineDefinition(VD)) 11570 return false; 11571 11572 // Variables that can be needed in other TUs are required. 11573 auto Linkage = GetGVALinkageForVariable(VD); 11574 if (!isDiscardableGVALinkage(Linkage)) 11575 return true; 11576 11577 // We never need to emit a variable that is available in another TU. 11578 if (Linkage == GVA_AvailableExternally) 11579 return false; 11580 11581 // Variables that have destruction with side-effects are required. 11582 if (VD->needsDestruction(*this)) 11583 return true; 11584 11585 // Variables that have initialization with side-effects are required. 11586 if (VD->getInit() && VD->getInit()->HasSideEffects(*this) && 11587 // We can get a value-dependent initializer during error recovery. 11588 (VD->getInit()->isValueDependent() || !VD->evaluateValue())) 11589 return true; 11590 11591 // Likewise, variables with tuple-like bindings are required if their 11592 // bindings have side-effects. 11593 if (const auto *DD = dyn_cast<DecompositionDecl>(VD)) 11594 for (const auto *BD : DD->bindings()) 11595 if (const auto *BindingVD = BD->getHoldingVar()) 11596 if (DeclMustBeEmitted(BindingVD)) 11597 return true; 11598 11599 return false; 11600 } 11601 11602 void ASTContext::forEachMultiversionedFunctionVersion( 11603 const FunctionDecl *FD, 11604 llvm::function_ref<void(FunctionDecl *)> Pred) const { 11605 assert(FD->isMultiVersion() && "Only valid for multiversioned functions"); 11606 llvm::SmallDenseSet<const FunctionDecl*, 4> SeenDecls; 11607 FD = FD->getMostRecentDecl(); 11608 // FIXME: The order of traversal here matters and depends on the order of 11609 // lookup results, which happens to be (mostly) oldest-to-newest, but we 11610 // shouldn't rely on that. 11611 for (auto *CurDecl : 11612 FD->getDeclContext()->getRedeclContext()->lookup(FD->getDeclName())) { 11613 FunctionDecl *CurFD = CurDecl->getAsFunction()->getMostRecentDecl(); 11614 if (CurFD && hasSameType(CurFD->getType(), FD->getType()) && 11615 std::end(SeenDecls) == llvm::find(SeenDecls, CurFD)) { 11616 SeenDecls.insert(CurFD); 11617 Pred(CurFD); 11618 } 11619 } 11620 } 11621 11622 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic, 11623 bool IsCXXMethod, 11624 bool IsBuiltin) const { 11625 // Pass through to the C++ ABI object 11626 if (IsCXXMethod) 11627 return ABI->getDefaultMethodCallConv(IsVariadic); 11628 11629 // Builtins ignore user-specified default calling convention and remain the 11630 // Target's default calling convention. 11631 if (!IsBuiltin) { 11632 switch (LangOpts.getDefaultCallingConv()) { 11633 case LangOptions::DCC_None: 11634 break; 11635 case LangOptions::DCC_CDecl: 11636 return CC_C; 11637 case LangOptions::DCC_FastCall: 11638 if (getTargetInfo().hasFeature("sse2") && !IsVariadic) 11639 return CC_X86FastCall; 11640 break; 11641 case LangOptions::DCC_StdCall: 11642 if (!IsVariadic) 11643 return CC_X86StdCall; 11644 break; 11645 case LangOptions::DCC_VectorCall: 11646 // __vectorcall cannot be applied to variadic functions. 11647 if (!IsVariadic) 11648 return CC_X86VectorCall; 11649 break; 11650 case LangOptions::DCC_RegCall: 11651 // __regcall cannot be applied to variadic functions. 11652 if (!IsVariadic) 11653 return CC_X86RegCall; 11654 break; 11655 } 11656 } 11657 return Target->getDefaultCallingConv(); 11658 } 11659 11660 bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) const { 11661 // Pass through to the C++ ABI object 11662 return ABI->isNearlyEmpty(RD); 11663 } 11664 11665 VTableContextBase *ASTContext::getVTableContext() { 11666 if (!VTContext.get()) { 11667 auto ABI = Target->getCXXABI(); 11668 if (ABI.isMicrosoft()) 11669 VTContext.reset(new MicrosoftVTableContext(*this)); 11670 else { 11671 auto ComponentLayout = getLangOpts().RelativeCXXABIVTables 11672 ? ItaniumVTableContext::Relative 11673 : ItaniumVTableContext::Pointer; 11674 VTContext.reset(new ItaniumVTableContext(*this, ComponentLayout)); 11675 } 11676 } 11677 return VTContext.get(); 11678 } 11679 11680 MangleContext *ASTContext::createMangleContext(const TargetInfo *T) { 11681 if (!T) 11682 T = Target; 11683 switch (T->getCXXABI().getKind()) { 11684 case TargetCXXABI::AppleARM64: 11685 case TargetCXXABI::Fuchsia: 11686 case TargetCXXABI::GenericAArch64: 11687 case TargetCXXABI::GenericItanium: 11688 case TargetCXXABI::GenericARM: 11689 case TargetCXXABI::GenericMIPS: 11690 case TargetCXXABI::iOS: 11691 case TargetCXXABI::WebAssembly: 11692 case TargetCXXABI::WatchOS: 11693 case TargetCXXABI::XL: 11694 return ItaniumMangleContext::create(*this, getDiagnostics()); 11695 case TargetCXXABI::Microsoft: 11696 return MicrosoftMangleContext::create(*this, getDiagnostics()); 11697 } 11698 llvm_unreachable("Unsupported ABI"); 11699 } 11700 11701 MangleContext *ASTContext::createDeviceMangleContext(const TargetInfo &T) { 11702 assert(T.getCXXABI().getKind() != TargetCXXABI::Microsoft && 11703 "Device mangle context does not support Microsoft mangling."); 11704 switch (T.getCXXABI().getKind()) { 11705 case TargetCXXABI::AppleARM64: 11706 case TargetCXXABI::Fuchsia: 11707 case TargetCXXABI::GenericAArch64: 11708 case TargetCXXABI::GenericItanium: 11709 case TargetCXXABI::GenericARM: 11710 case TargetCXXABI::GenericMIPS: 11711 case TargetCXXABI::iOS: 11712 case TargetCXXABI::WebAssembly: 11713 case TargetCXXABI::WatchOS: 11714 case TargetCXXABI::XL: 11715 return ItaniumMangleContext::create( 11716 *this, getDiagnostics(), 11717 [](ASTContext &, const NamedDecl *ND) -> llvm::Optional<unsigned> { 11718 if (const auto *RD = dyn_cast<CXXRecordDecl>(ND)) 11719 return RD->getDeviceLambdaManglingNumber(); 11720 return llvm::None; 11721 }, 11722 /*IsAux=*/true); 11723 case TargetCXXABI::Microsoft: 11724 return MicrosoftMangleContext::create(*this, getDiagnostics(), 11725 /*IsAux=*/true); 11726 } 11727 llvm_unreachable("Unsupported ABI"); 11728 } 11729 11730 CXXABI::~CXXABI() = default; 11731 11732 size_t ASTContext::getSideTableAllocatedMemory() const { 11733 return ASTRecordLayouts.getMemorySize() + 11734 llvm::capacity_in_bytes(ObjCLayouts) + 11735 llvm::capacity_in_bytes(KeyFunctions) + 11736 llvm::capacity_in_bytes(ObjCImpls) + 11737 llvm::capacity_in_bytes(BlockVarCopyInits) + 11738 llvm::capacity_in_bytes(DeclAttrs) + 11739 llvm::capacity_in_bytes(TemplateOrInstantiation) + 11740 llvm::capacity_in_bytes(InstantiatedFromUsingDecl) + 11741 llvm::capacity_in_bytes(InstantiatedFromUsingShadowDecl) + 11742 llvm::capacity_in_bytes(InstantiatedFromUnnamedFieldDecl) + 11743 llvm::capacity_in_bytes(OverriddenMethods) + 11744 llvm::capacity_in_bytes(Types) + 11745 llvm::capacity_in_bytes(VariableArrayTypes); 11746 } 11747 11748 /// getIntTypeForBitwidth - 11749 /// sets integer QualTy according to specified details: 11750 /// bitwidth, signed/unsigned. 11751 /// Returns empty type if there is no appropriate target types. 11752 QualType ASTContext::getIntTypeForBitwidth(unsigned DestWidth, 11753 unsigned Signed) const { 11754 TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed); 11755 CanQualType QualTy = getFromTargetType(Ty); 11756 if (!QualTy && DestWidth == 128) 11757 return Signed ? Int128Ty : UnsignedInt128Ty; 11758 return QualTy; 11759 } 11760 11761 /// getRealTypeForBitwidth - 11762 /// sets floating point QualTy according to specified bitwidth. 11763 /// Returns empty type if there is no appropriate target types. 11764 QualType ASTContext::getRealTypeForBitwidth(unsigned DestWidth, 11765 FloatModeKind ExplicitType) const { 11766 FloatModeKind Ty = 11767 getTargetInfo().getRealTypeByWidth(DestWidth, ExplicitType); 11768 switch (Ty) { 11769 case FloatModeKind::Half: 11770 return HalfTy; 11771 case FloatModeKind::Float: 11772 return FloatTy; 11773 case FloatModeKind::Double: 11774 return DoubleTy; 11775 case FloatModeKind::LongDouble: 11776 return LongDoubleTy; 11777 case FloatModeKind::Float128: 11778 return Float128Ty; 11779 case FloatModeKind::Ibm128: 11780 return Ibm128Ty; 11781 case FloatModeKind::NoFloat: 11782 return {}; 11783 } 11784 11785 llvm_unreachable("Unhandled TargetInfo::RealType value"); 11786 } 11787 11788 void ASTContext::setManglingNumber(const NamedDecl *ND, unsigned Number) { 11789 if (Number > 1) 11790 MangleNumbers[ND] = Number; 11791 } 11792 11793 unsigned ASTContext::getManglingNumber(const NamedDecl *ND, 11794 bool ForAuxTarget) const { 11795 auto I = MangleNumbers.find(ND); 11796 unsigned Res = I != MangleNumbers.end() ? I->second : 1; 11797 // CUDA/HIP host compilation encodes host and device mangling numbers 11798 // as lower and upper half of 32 bit integer. 11799 if (LangOpts.CUDA && !LangOpts.CUDAIsDevice) { 11800 Res = ForAuxTarget ? Res >> 16 : Res & 0xFFFF; 11801 } else { 11802 assert(!ForAuxTarget && "Only CUDA/HIP host compilation supports mangling " 11803 "number for aux target"); 11804 } 11805 return Res > 1 ? Res : 1; 11806 } 11807 11808 void ASTContext::setStaticLocalNumber(const VarDecl *VD, unsigned Number) { 11809 if (Number > 1) 11810 StaticLocalNumbers[VD] = Number; 11811 } 11812 11813 unsigned ASTContext::getStaticLocalNumber(const VarDecl *VD) const { 11814 auto I = StaticLocalNumbers.find(VD); 11815 return I != StaticLocalNumbers.end() ? I->second : 1; 11816 } 11817 11818 MangleNumberingContext & 11819 ASTContext::getManglingNumberContext(const DeclContext *DC) { 11820 assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C. 11821 std::unique_ptr<MangleNumberingContext> &MCtx = MangleNumberingContexts[DC]; 11822 if (!MCtx) 11823 MCtx = createMangleNumberingContext(); 11824 return *MCtx; 11825 } 11826 11827 MangleNumberingContext & 11828 ASTContext::getManglingNumberContext(NeedExtraManglingDecl_t, const Decl *D) { 11829 assert(LangOpts.CPlusPlus); // We don't need mangling numbers for plain C. 11830 std::unique_ptr<MangleNumberingContext> &MCtx = 11831 ExtraMangleNumberingContexts[D]; 11832 if (!MCtx) 11833 MCtx = createMangleNumberingContext(); 11834 return *MCtx; 11835 } 11836 11837 std::unique_ptr<MangleNumberingContext> 11838 ASTContext::createMangleNumberingContext() const { 11839 return ABI->createMangleNumberingContext(); 11840 } 11841 11842 const CXXConstructorDecl * 11843 ASTContext::getCopyConstructorForExceptionObject(CXXRecordDecl *RD) { 11844 return ABI->getCopyConstructorForExceptionObject( 11845 cast<CXXRecordDecl>(RD->getFirstDecl())); 11846 } 11847 11848 void ASTContext::addCopyConstructorForExceptionObject(CXXRecordDecl *RD, 11849 CXXConstructorDecl *CD) { 11850 return ABI->addCopyConstructorForExceptionObject( 11851 cast<CXXRecordDecl>(RD->getFirstDecl()), 11852 cast<CXXConstructorDecl>(CD->getFirstDecl())); 11853 } 11854 11855 void ASTContext::addTypedefNameForUnnamedTagDecl(TagDecl *TD, 11856 TypedefNameDecl *DD) { 11857 return ABI->addTypedefNameForUnnamedTagDecl(TD, DD); 11858 } 11859 11860 TypedefNameDecl * 11861 ASTContext::getTypedefNameForUnnamedTagDecl(const TagDecl *TD) { 11862 return ABI->getTypedefNameForUnnamedTagDecl(TD); 11863 } 11864 11865 void ASTContext::addDeclaratorForUnnamedTagDecl(TagDecl *TD, 11866 DeclaratorDecl *DD) { 11867 return ABI->addDeclaratorForUnnamedTagDecl(TD, DD); 11868 } 11869 11870 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) { 11871 return ABI->getDeclaratorForUnnamedTagDecl(TD); 11872 } 11873 11874 void ASTContext::setParameterIndex(const ParmVarDecl *D, unsigned int index) { 11875 ParamIndices[D] = index; 11876 } 11877 11878 unsigned ASTContext::getParameterIndex(const ParmVarDecl *D) const { 11879 ParameterIndexTable::const_iterator I = ParamIndices.find(D); 11880 assert(I != ParamIndices.end() && 11881 "ParmIndices lacks entry set by ParmVarDecl"); 11882 return I->second; 11883 } 11884 11885 QualType ASTContext::getStringLiteralArrayType(QualType EltTy, 11886 unsigned Length) const { 11887 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). 11888 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings) 11889 EltTy = EltTy.withConst(); 11890 11891 EltTy = adjustStringLiteralBaseType(EltTy); 11892 11893 // Get an array type for the string, according to C99 6.4.5. This includes 11894 // the null terminator character. 11895 return getConstantArrayType(EltTy, llvm::APInt(32, Length + 1), nullptr, 11896 ArrayType::Normal, /*IndexTypeQuals*/ 0); 11897 } 11898 11899 StringLiteral * 11900 ASTContext::getPredefinedStringLiteralFromCache(StringRef Key) const { 11901 StringLiteral *&Result = StringLiteralCache[Key]; 11902 if (!Result) 11903 Result = StringLiteral::Create( 11904 *this, Key, StringLiteral::Ascii, 11905 /*Pascal*/ false, getStringLiteralArrayType(CharTy, Key.size()), 11906 SourceLocation()); 11907 return Result; 11908 } 11909 11910 MSGuidDecl * 11911 ASTContext::getMSGuidDecl(MSGuidDecl::Parts Parts) const { 11912 assert(MSGuidTagDecl && "building MS GUID without MS extensions?"); 11913 11914 llvm::FoldingSetNodeID ID; 11915 MSGuidDecl::Profile(ID, Parts); 11916 11917 void *InsertPos; 11918 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) 11919 return Existing; 11920 11921 QualType GUIDType = getMSGuidType().withConst(); 11922 MSGuidDecl *New = MSGuidDecl::Create(*this, GUIDType, Parts); 11923 MSGuidDecls.InsertNode(New, InsertPos); 11924 return New; 11925 } 11926 11927 UnnamedGlobalConstantDecl * 11928 ASTContext::getUnnamedGlobalConstantDecl(QualType Ty, 11929 const APValue &APVal) const { 11930 llvm::FoldingSetNodeID ID; 11931 UnnamedGlobalConstantDecl::Profile(ID, Ty, APVal); 11932 11933 void *InsertPos; 11934 if (UnnamedGlobalConstantDecl *Existing = 11935 UnnamedGlobalConstantDecls.FindNodeOrInsertPos(ID, InsertPos)) 11936 return Existing; 11937 11938 UnnamedGlobalConstantDecl *New = 11939 UnnamedGlobalConstantDecl::Create(*this, Ty, APVal); 11940 UnnamedGlobalConstantDecls.InsertNode(New, InsertPos); 11941 return New; 11942 } 11943 11944 TemplateParamObjectDecl * 11945 ASTContext::getTemplateParamObjectDecl(QualType T, const APValue &V) const { 11946 assert(T->isRecordType() && "template param object of unexpected type"); 11947 11948 // C++ [temp.param]p8: 11949 // [...] a static storage duration object of type 'const T' [...] 11950 T.addConst(); 11951 11952 llvm::FoldingSetNodeID ID; 11953 TemplateParamObjectDecl::Profile(ID, T, V); 11954 11955 void *InsertPos; 11956 if (TemplateParamObjectDecl *Existing = 11957 TemplateParamObjectDecls.FindNodeOrInsertPos(ID, InsertPos)) 11958 return Existing; 11959 11960 TemplateParamObjectDecl *New = TemplateParamObjectDecl::Create(*this, T, V); 11961 TemplateParamObjectDecls.InsertNode(New, InsertPos); 11962 return New; 11963 } 11964 11965 bool ASTContext::AtomicUsesUnsupportedLibcall(const AtomicExpr *E) const { 11966 const llvm::Triple &T = getTargetInfo().getTriple(); 11967 if (!T.isOSDarwin()) 11968 return false; 11969 11970 if (!(T.isiOS() && T.isOSVersionLT(7)) && 11971 !(T.isMacOSX() && T.isOSVersionLT(10, 9))) 11972 return false; 11973 11974 QualType AtomicTy = E->getPtr()->getType()->getPointeeType(); 11975 CharUnits sizeChars = getTypeSizeInChars(AtomicTy); 11976 uint64_t Size = sizeChars.getQuantity(); 11977 CharUnits alignChars = getTypeAlignInChars(AtomicTy); 11978 unsigned Align = alignChars.getQuantity(); 11979 unsigned MaxInlineWidthInBits = getTargetInfo().getMaxAtomicInlineWidth(); 11980 return (Size != Align || toBits(sizeChars) > MaxInlineWidthInBits); 11981 } 11982 11983 bool 11984 ASTContext::ObjCMethodsAreEqual(const ObjCMethodDecl *MethodDecl, 11985 const ObjCMethodDecl *MethodImpl) { 11986 // No point trying to match an unavailable/deprecated mothod. 11987 if (MethodDecl->hasAttr<UnavailableAttr>() 11988 || MethodDecl->hasAttr<DeprecatedAttr>()) 11989 return false; 11990 if (MethodDecl->getObjCDeclQualifier() != 11991 MethodImpl->getObjCDeclQualifier()) 11992 return false; 11993 if (!hasSameType(MethodDecl->getReturnType(), MethodImpl->getReturnType())) 11994 return false; 11995 11996 if (MethodDecl->param_size() != MethodImpl->param_size()) 11997 return false; 11998 11999 for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(), 12000 IF = MethodDecl->param_begin(), EM = MethodImpl->param_end(), 12001 EF = MethodDecl->param_end(); 12002 IM != EM && IF != EF; ++IM, ++IF) { 12003 const ParmVarDecl *DeclVar = (*IF); 12004 const ParmVarDecl *ImplVar = (*IM); 12005 if (ImplVar->getObjCDeclQualifier() != DeclVar->getObjCDeclQualifier()) 12006 return false; 12007 if (!hasSameType(DeclVar->getType(), ImplVar->getType())) 12008 return false; 12009 } 12010 12011 return (MethodDecl->isVariadic() == MethodImpl->isVariadic()); 12012 } 12013 12014 uint64_t ASTContext::getTargetNullPointerValue(QualType QT) const { 12015 LangAS AS; 12016 if (QT->getUnqualifiedDesugaredType()->isNullPtrType()) 12017 AS = LangAS::Default; 12018 else 12019 AS = QT->getPointeeType().getAddressSpace(); 12020 12021 return getTargetInfo().getNullPointerValue(AS); 12022 } 12023 12024 unsigned ASTContext::getTargetAddressSpace(QualType T) const { 12025 // Return the address space for the type. If the type is a 12026 // function type without an address space qualifier, the 12027 // program address space is used. Otherwise, the target picks 12028 // the best address space based on the type information 12029 return T->isFunctionType() && !T.hasAddressSpace() 12030 ? getTargetInfo().getProgramAddressSpace() 12031 : getTargetAddressSpace(T.getQualifiers()); 12032 } 12033 12034 unsigned ASTContext::getTargetAddressSpace(Qualifiers Q) const { 12035 return getTargetAddressSpace(Q.getAddressSpace()); 12036 } 12037 12038 unsigned ASTContext::getTargetAddressSpace(LangAS AS) const { 12039 if (isTargetAddressSpace(AS)) 12040 return toTargetAddressSpace(AS); 12041 else 12042 return (*AddrSpaceMap)[(unsigned)AS]; 12043 } 12044 12045 QualType ASTContext::getCorrespondingSaturatedType(QualType Ty) const { 12046 assert(Ty->isFixedPointType()); 12047 12048 if (Ty->isSaturatedFixedPointType()) return Ty; 12049 12050 switch (Ty->castAs<BuiltinType>()->getKind()) { 12051 default: 12052 llvm_unreachable("Not a fixed point type!"); 12053 case BuiltinType::ShortAccum: 12054 return SatShortAccumTy; 12055 case BuiltinType::Accum: 12056 return SatAccumTy; 12057 case BuiltinType::LongAccum: 12058 return SatLongAccumTy; 12059 case BuiltinType::UShortAccum: 12060 return SatUnsignedShortAccumTy; 12061 case BuiltinType::UAccum: 12062 return SatUnsignedAccumTy; 12063 case BuiltinType::ULongAccum: 12064 return SatUnsignedLongAccumTy; 12065 case BuiltinType::ShortFract: 12066 return SatShortFractTy; 12067 case BuiltinType::Fract: 12068 return SatFractTy; 12069 case BuiltinType::LongFract: 12070 return SatLongFractTy; 12071 case BuiltinType::UShortFract: 12072 return SatUnsignedShortFractTy; 12073 case BuiltinType::UFract: 12074 return SatUnsignedFractTy; 12075 case BuiltinType::ULongFract: 12076 return SatUnsignedLongFractTy; 12077 } 12078 } 12079 12080 LangAS ASTContext::getLangASForBuiltinAddressSpace(unsigned AS) const { 12081 if (LangOpts.OpenCL) 12082 return getTargetInfo().getOpenCLBuiltinAddressSpace(AS); 12083 12084 if (LangOpts.CUDA) 12085 return getTargetInfo().getCUDABuiltinAddressSpace(AS); 12086 12087 return getLangASFromTargetAS(AS); 12088 } 12089 12090 // Explicitly instantiate this in case a Redeclarable<T> is used from a TU that 12091 // doesn't include ASTContext.h 12092 template 12093 clang::LazyGenerationalUpdatePtr< 12094 const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::ValueType 12095 clang::LazyGenerationalUpdatePtr< 12096 const Decl *, Decl *, &ExternalASTSource::CompleteRedeclChain>::makeValue( 12097 const clang::ASTContext &Ctx, Decl *Value); 12098 12099 unsigned char ASTContext::getFixedPointScale(QualType Ty) const { 12100 assert(Ty->isFixedPointType()); 12101 12102 const TargetInfo &Target = getTargetInfo(); 12103 switch (Ty->castAs<BuiltinType>()->getKind()) { 12104 default: 12105 llvm_unreachable("Not a fixed point type!"); 12106 case BuiltinType::ShortAccum: 12107 case BuiltinType::SatShortAccum: 12108 return Target.getShortAccumScale(); 12109 case BuiltinType::Accum: 12110 case BuiltinType::SatAccum: 12111 return Target.getAccumScale(); 12112 case BuiltinType::LongAccum: 12113 case BuiltinType::SatLongAccum: 12114 return Target.getLongAccumScale(); 12115 case BuiltinType::UShortAccum: 12116 case BuiltinType::SatUShortAccum: 12117 return Target.getUnsignedShortAccumScale(); 12118 case BuiltinType::UAccum: 12119 case BuiltinType::SatUAccum: 12120 return Target.getUnsignedAccumScale(); 12121 case BuiltinType::ULongAccum: 12122 case BuiltinType::SatULongAccum: 12123 return Target.getUnsignedLongAccumScale(); 12124 case BuiltinType::ShortFract: 12125 case BuiltinType::SatShortFract: 12126 return Target.getShortFractScale(); 12127 case BuiltinType::Fract: 12128 case BuiltinType::SatFract: 12129 return Target.getFractScale(); 12130 case BuiltinType::LongFract: 12131 case BuiltinType::SatLongFract: 12132 return Target.getLongFractScale(); 12133 case BuiltinType::UShortFract: 12134 case BuiltinType::SatUShortFract: 12135 return Target.getUnsignedShortFractScale(); 12136 case BuiltinType::UFract: 12137 case BuiltinType::SatUFract: 12138 return Target.getUnsignedFractScale(); 12139 case BuiltinType::ULongFract: 12140 case BuiltinType::SatULongFract: 12141 return Target.getUnsignedLongFractScale(); 12142 } 12143 } 12144 12145 unsigned char ASTContext::getFixedPointIBits(QualType Ty) const { 12146 assert(Ty->isFixedPointType()); 12147 12148 const TargetInfo &Target = getTargetInfo(); 12149 switch (Ty->castAs<BuiltinType>()->getKind()) { 12150 default: 12151 llvm_unreachable("Not a fixed point type!"); 12152 case BuiltinType::ShortAccum: 12153 case BuiltinType::SatShortAccum: 12154 return Target.getShortAccumIBits(); 12155 case BuiltinType::Accum: 12156 case BuiltinType::SatAccum: 12157 return Target.getAccumIBits(); 12158 case BuiltinType::LongAccum: 12159 case BuiltinType::SatLongAccum: 12160 return Target.getLongAccumIBits(); 12161 case BuiltinType::UShortAccum: 12162 case BuiltinType::SatUShortAccum: 12163 return Target.getUnsignedShortAccumIBits(); 12164 case BuiltinType::UAccum: 12165 case BuiltinType::SatUAccum: 12166 return Target.getUnsignedAccumIBits(); 12167 case BuiltinType::ULongAccum: 12168 case BuiltinType::SatULongAccum: 12169 return Target.getUnsignedLongAccumIBits(); 12170 case BuiltinType::ShortFract: 12171 case BuiltinType::SatShortFract: 12172 case BuiltinType::Fract: 12173 case BuiltinType::SatFract: 12174 case BuiltinType::LongFract: 12175 case BuiltinType::SatLongFract: 12176 case BuiltinType::UShortFract: 12177 case BuiltinType::SatUShortFract: 12178 case BuiltinType::UFract: 12179 case BuiltinType::SatUFract: 12180 case BuiltinType::ULongFract: 12181 case BuiltinType::SatULongFract: 12182 return 0; 12183 } 12184 } 12185 12186 llvm::FixedPointSemantics 12187 ASTContext::getFixedPointSemantics(QualType Ty) const { 12188 assert((Ty->isFixedPointType() || Ty->isIntegerType()) && 12189 "Can only get the fixed point semantics for a " 12190 "fixed point or integer type."); 12191 if (Ty->isIntegerType()) 12192 return llvm::FixedPointSemantics::GetIntegerSemantics( 12193 getIntWidth(Ty), Ty->isSignedIntegerType()); 12194 12195 bool isSigned = Ty->isSignedFixedPointType(); 12196 return llvm::FixedPointSemantics( 12197 static_cast<unsigned>(getTypeSize(Ty)), getFixedPointScale(Ty), isSigned, 12198 Ty->isSaturatedFixedPointType(), 12199 !isSigned && getTargetInfo().doUnsignedFixedPointTypesHavePadding()); 12200 } 12201 12202 llvm::APFixedPoint ASTContext::getFixedPointMax(QualType Ty) const { 12203 assert(Ty->isFixedPointType()); 12204 return llvm::APFixedPoint::getMax(getFixedPointSemantics(Ty)); 12205 } 12206 12207 llvm::APFixedPoint ASTContext::getFixedPointMin(QualType Ty) const { 12208 assert(Ty->isFixedPointType()); 12209 return llvm::APFixedPoint::getMin(getFixedPointSemantics(Ty)); 12210 } 12211 12212 QualType ASTContext::getCorrespondingSignedFixedPointType(QualType Ty) const { 12213 assert(Ty->isUnsignedFixedPointType() && 12214 "Expected unsigned fixed point type"); 12215 12216 switch (Ty->castAs<BuiltinType>()->getKind()) { 12217 case BuiltinType::UShortAccum: 12218 return ShortAccumTy; 12219 case BuiltinType::UAccum: 12220 return AccumTy; 12221 case BuiltinType::ULongAccum: 12222 return LongAccumTy; 12223 case BuiltinType::SatUShortAccum: 12224 return SatShortAccumTy; 12225 case BuiltinType::SatUAccum: 12226 return SatAccumTy; 12227 case BuiltinType::SatULongAccum: 12228 return SatLongAccumTy; 12229 case BuiltinType::UShortFract: 12230 return ShortFractTy; 12231 case BuiltinType::UFract: 12232 return FractTy; 12233 case BuiltinType::ULongFract: 12234 return LongFractTy; 12235 case BuiltinType::SatUShortFract: 12236 return SatShortFractTy; 12237 case BuiltinType::SatUFract: 12238 return SatFractTy; 12239 case BuiltinType::SatULongFract: 12240 return SatLongFractTy; 12241 default: 12242 llvm_unreachable("Unexpected unsigned fixed point type"); 12243 } 12244 } 12245 12246 ParsedTargetAttr 12247 ASTContext::filterFunctionTargetAttrs(const TargetAttr *TD) const { 12248 assert(TD != nullptr); 12249 ParsedTargetAttr ParsedAttr = TD->parse(); 12250 12251 llvm::erase_if(ParsedAttr.Features, [&](const std::string &Feat) { 12252 return !Target->isValidFeatureName(StringRef{Feat}.substr(1)); 12253 }); 12254 return ParsedAttr; 12255 } 12256 12257 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap, 12258 const FunctionDecl *FD) const { 12259 if (FD) 12260 getFunctionFeatureMap(FeatureMap, GlobalDecl().getWithDecl(FD)); 12261 else 12262 Target->initFeatureMap(FeatureMap, getDiagnostics(), 12263 Target->getTargetOpts().CPU, 12264 Target->getTargetOpts().Features); 12265 } 12266 12267 // Fills in the supplied string map with the set of target features for the 12268 // passed in function. 12269 void ASTContext::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap, 12270 GlobalDecl GD) const { 12271 StringRef TargetCPU = Target->getTargetOpts().CPU; 12272 const FunctionDecl *FD = GD.getDecl()->getAsFunction(); 12273 if (const auto *TD = FD->getAttr<TargetAttr>()) { 12274 ParsedTargetAttr ParsedAttr = filterFunctionTargetAttrs(TD); 12275 12276 // Make a copy of the features as passed on the command line into the 12277 // beginning of the additional features from the function to override. 12278 ParsedAttr.Features.insert( 12279 ParsedAttr.Features.begin(), 12280 Target->getTargetOpts().FeaturesAsWritten.begin(), 12281 Target->getTargetOpts().FeaturesAsWritten.end()); 12282 12283 if (ParsedAttr.Architecture != "" && 12284 Target->isValidCPUName(ParsedAttr.Architecture)) 12285 TargetCPU = ParsedAttr.Architecture; 12286 12287 // Now populate the feature map, first with the TargetCPU which is either 12288 // the default or a new one from the target attribute string. Then we'll use 12289 // the passed in features (FeaturesAsWritten) along with the new ones from 12290 // the attribute. 12291 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, 12292 ParsedAttr.Features); 12293 } else if (const auto *SD = FD->getAttr<CPUSpecificAttr>()) { 12294 llvm::SmallVector<StringRef, 32> FeaturesTmp; 12295 Target->getCPUSpecificCPUDispatchFeatures( 12296 SD->getCPUName(GD.getMultiVersionIndex())->getName(), FeaturesTmp); 12297 std::vector<std::string> Features(FeaturesTmp.begin(), FeaturesTmp.end()); 12298 Features.insert(Features.begin(), 12299 Target->getTargetOpts().FeaturesAsWritten.begin(), 12300 Target->getTargetOpts().FeaturesAsWritten.end()); 12301 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features); 12302 } else if (const auto *TC = FD->getAttr<TargetClonesAttr>()) { 12303 std::vector<std::string> Features; 12304 StringRef VersionStr = TC->getFeatureStr(GD.getMultiVersionIndex()); 12305 if (VersionStr.startswith("arch=")) 12306 TargetCPU = VersionStr.drop_front(sizeof("arch=") - 1); 12307 else if (VersionStr != "default") 12308 Features.push_back((StringRef{"+"} + VersionStr).str()); 12309 12310 Target->initFeatureMap(FeatureMap, getDiagnostics(), TargetCPU, Features); 12311 } else { 12312 FeatureMap = Target->getTargetOpts().FeatureMap; 12313 } 12314 } 12315 12316 OMPTraitInfo &ASTContext::getNewOMPTraitInfo() { 12317 OMPTraitInfoVector.emplace_back(new OMPTraitInfo()); 12318 return *OMPTraitInfoVector.back(); 12319 } 12320 12321 const StreamingDiagnostic &clang:: 12322 operator<<(const StreamingDiagnostic &DB, 12323 const ASTContext::SectionInfo &Section) { 12324 if (Section.Decl) 12325 return DB << Section.Decl; 12326 return DB << "a prior #pragma section"; 12327 } 12328 12329 bool ASTContext::mayExternalize(const Decl *D) const { 12330 bool IsStaticVar = 12331 isa<VarDecl>(D) && cast<VarDecl>(D)->getStorageClass() == SC_Static; 12332 bool IsExplicitDeviceVar = (D->hasAttr<CUDADeviceAttr>() && 12333 !D->getAttr<CUDADeviceAttr>()->isImplicit()) || 12334 (D->hasAttr<CUDAConstantAttr>() && 12335 !D->getAttr<CUDAConstantAttr>()->isImplicit()); 12336 // CUDA/HIP: static managed variables need to be externalized since it is 12337 // a declaration in IR, therefore cannot have internal linkage. Kernels in 12338 // anonymous name space needs to be externalized to avoid duplicate symbols. 12339 return (IsStaticVar && 12340 (D->hasAttr<HIPManagedAttr>() || IsExplicitDeviceVar)) || 12341 (D->hasAttr<CUDAGlobalAttr>() && 12342 basicGVALinkageForFunction(*this, cast<FunctionDecl>(D)) == 12343 GVA_Internal); 12344 } 12345 12346 bool ASTContext::shouldExternalize(const Decl *D) const { 12347 return mayExternalize(D) && 12348 (D->hasAttr<HIPManagedAttr>() || D->hasAttr<CUDAGlobalAttr>() || 12349 CUDADeviceVarODRUsedByHost.count(cast<VarDecl>(D))); 12350 } 12351 12352 StringRef ASTContext::getCUIDHash() const { 12353 if (!CUIDHash.empty()) 12354 return CUIDHash; 12355 if (LangOpts.CUID.empty()) 12356 return StringRef(); 12357 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); 12358 return CUIDHash; 12359 } 12360