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