1 //===--- Decl.cpp - Declaration AST Node Implementation -------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the Decl subclasses. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/Decl.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/ASTMutationListener.h" 17 #include "clang/AST/Attr.h" 18 #include "clang/AST/DeclCXX.h" 19 #include "clang/AST/DeclObjC.h" 20 #include "clang/AST/DeclTemplate.h" 21 #include "clang/AST/Expr.h" 22 #include "clang/AST/ExprCXX.h" 23 #include "clang/AST/PrettyPrinter.h" 24 #include "clang/AST/Stmt.h" 25 #include "clang/AST/TypeLoc.h" 26 #include "clang/Basic/Builtins.h" 27 #include "clang/Basic/IdentifierTable.h" 28 #include "clang/Basic/Module.h" 29 #include "clang/Basic/Specifiers.h" 30 #include "clang/Basic/TargetInfo.h" 31 #include "llvm/Support/ErrorHandling.h" 32 #include "llvm/Support/type_traits.h" 33 #include <algorithm> 34 35 using namespace clang; 36 37 Decl *clang::getPrimaryMergedDecl(Decl *D) { 38 return D->getASTContext().getPrimaryMergedDecl(D); 39 } 40 41 //===----------------------------------------------------------------------===// 42 // NamedDecl Implementation 43 //===----------------------------------------------------------------------===// 44 45 // Visibility rules aren't rigorously externally specified, but here 46 // are the basic principles behind what we implement: 47 // 48 // 1. An explicit visibility attribute is generally a direct expression 49 // of the user's intent and should be honored. Only the innermost 50 // visibility attribute applies. If no visibility attribute applies, 51 // global visibility settings are considered. 52 // 53 // 2. There is one caveat to the above: on or in a template pattern, 54 // an explicit visibility attribute is just a default rule, and 55 // visibility can be decreased by the visibility of template 56 // arguments. But this, too, has an exception: an attribute on an 57 // explicit specialization or instantiation causes all the visibility 58 // restrictions of the template arguments to be ignored. 59 // 60 // 3. A variable that does not otherwise have explicit visibility can 61 // be restricted by the visibility of its type. 62 // 63 // 4. A visibility restriction is explicit if it comes from an 64 // attribute (or something like it), not a global visibility setting. 65 // When emitting a reference to an external symbol, visibility 66 // restrictions are ignored unless they are explicit. 67 // 68 // 5. When computing the visibility of a non-type, including a 69 // non-type member of a class, only non-type visibility restrictions 70 // are considered: the 'visibility' attribute, global value-visibility 71 // settings, and a few special cases like __private_extern. 72 // 73 // 6. When computing the visibility of a type, including a type member 74 // of a class, only type visibility restrictions are considered: 75 // the 'type_visibility' attribute and global type-visibility settings. 76 // However, a 'visibility' attribute counts as a 'type_visibility' 77 // attribute on any declaration that only has the former. 78 // 79 // The visibility of a "secondary" entity, like a template argument, 80 // is computed using the kind of that entity, not the kind of the 81 // primary entity for which we are computing visibility. For example, 82 // the visibility of a specialization of either of these templates: 83 // template <class T, bool (&compare)(T, X)> bool has_match(list<T>, X); 84 // template <class T, bool (&compare)(T, X)> class matcher; 85 // is restricted according to the type visibility of the argument 'T', 86 // the type visibility of 'bool(&)(T,X)', and the value visibility of 87 // the argument function 'compare'. That 'has_match' is a value 88 // and 'matcher' is a type only matters when looking for attributes 89 // and settings from the immediate context. 90 91 const unsigned IgnoreExplicitVisibilityBit = 2; 92 const unsigned IgnoreAllVisibilityBit = 4; 93 94 /// Kinds of LV computation. The linkage side of the computation is 95 /// always the same, but different things can change how visibility is 96 /// computed. 97 enum LVComputationKind { 98 /// Do an LV computation for, ultimately, a type. 99 /// Visibility may be restricted by type visibility settings and 100 /// the visibility of template arguments. 101 LVForType = NamedDecl::VisibilityForType, 102 103 /// Do an LV computation for, ultimately, a non-type declaration. 104 /// Visibility may be restricted by value visibility settings and 105 /// the visibility of template arguments. 106 LVForValue = NamedDecl::VisibilityForValue, 107 108 /// Do an LV computation for, ultimately, a type that already has 109 /// some sort of explicit visibility. Visibility may only be 110 /// restricted by the visibility of template arguments. 111 LVForExplicitType = (LVForType | IgnoreExplicitVisibilityBit), 112 113 /// Do an LV computation for, ultimately, a non-type declaration 114 /// that already has some sort of explicit visibility. Visibility 115 /// may only be restricted by the visibility of template arguments. 116 LVForExplicitValue = (LVForValue | IgnoreExplicitVisibilityBit), 117 118 /// Do an LV computation when we only care about the linkage. 119 LVForLinkageOnly = 120 LVForValue | IgnoreExplicitVisibilityBit | IgnoreAllVisibilityBit 121 }; 122 123 /// Does this computation kind permit us to consider additional 124 /// visibility settings from attributes and the like? 125 static bool hasExplicitVisibilityAlready(LVComputationKind computation) { 126 return ((unsigned(computation) & IgnoreExplicitVisibilityBit) != 0); 127 } 128 129 /// Given an LVComputationKind, return one of the same type/value sort 130 /// that records that it already has explicit visibility. 131 static LVComputationKind 132 withExplicitVisibilityAlready(LVComputationKind oldKind) { 133 LVComputationKind newKind = 134 static_cast<LVComputationKind>(unsigned(oldKind) | 135 IgnoreExplicitVisibilityBit); 136 assert(oldKind != LVForType || newKind == LVForExplicitType); 137 assert(oldKind != LVForValue || newKind == LVForExplicitValue); 138 assert(oldKind != LVForExplicitType || newKind == LVForExplicitType); 139 assert(oldKind != LVForExplicitValue || newKind == LVForExplicitValue); 140 return newKind; 141 } 142 143 static Optional<Visibility> getExplicitVisibility(const NamedDecl *D, 144 LVComputationKind kind) { 145 assert(!hasExplicitVisibilityAlready(kind) && 146 "asking for explicit visibility when we shouldn't be"); 147 return D->getExplicitVisibility((NamedDecl::ExplicitVisibilityKind) kind); 148 } 149 150 /// Is the given declaration a "type" or a "value" for the purposes of 151 /// visibility computation? 152 static bool usesTypeVisibility(const NamedDecl *D) { 153 return isa<TypeDecl>(D) || 154 isa<ClassTemplateDecl>(D) || 155 isa<ObjCInterfaceDecl>(D); 156 } 157 158 /// Does the given declaration have member specialization information, 159 /// and if so, is it an explicit specialization? 160 template <class T> static typename 161 llvm::enable_if_c<!llvm::is_base_of<RedeclarableTemplateDecl, T>::value, 162 bool>::type 163 isExplicitMemberSpecialization(const T *D) { 164 if (const MemberSpecializationInfo *member = 165 D->getMemberSpecializationInfo()) { 166 return member->isExplicitSpecialization(); 167 } 168 return false; 169 } 170 171 /// For templates, this question is easier: a member template can't be 172 /// explicitly instantiated, so there's a single bit indicating whether 173 /// or not this is an explicit member specialization. 174 static bool isExplicitMemberSpecialization(const RedeclarableTemplateDecl *D) { 175 return D->isMemberSpecialization(); 176 } 177 178 /// Given a visibility attribute, return the explicit visibility 179 /// associated with it. 180 template <class T> 181 static Visibility getVisibilityFromAttr(const T *attr) { 182 switch (attr->getVisibility()) { 183 case T::Default: 184 return DefaultVisibility; 185 case T::Hidden: 186 return HiddenVisibility; 187 case T::Protected: 188 return ProtectedVisibility; 189 } 190 llvm_unreachable("bad visibility kind"); 191 } 192 193 /// Return the explicit visibility of the given declaration. 194 static Optional<Visibility> getVisibilityOf(const NamedDecl *D, 195 NamedDecl::ExplicitVisibilityKind kind) { 196 // If we're ultimately computing the visibility of a type, look for 197 // a 'type_visibility' attribute before looking for 'visibility'. 198 if (kind == NamedDecl::VisibilityForType) { 199 if (const TypeVisibilityAttr *A = D->getAttr<TypeVisibilityAttr>()) { 200 return getVisibilityFromAttr(A); 201 } 202 } 203 204 // If this declaration has an explicit visibility attribute, use it. 205 if (const VisibilityAttr *A = D->getAttr<VisibilityAttr>()) { 206 return getVisibilityFromAttr(A); 207 } 208 209 // If we're on Mac OS X, an 'availability' for Mac OS X attribute 210 // implies visibility(default). 211 if (D->getASTContext().getTargetInfo().getTriple().isOSDarwin()) { 212 for (specific_attr_iterator<AvailabilityAttr> 213 A = D->specific_attr_begin<AvailabilityAttr>(), 214 AEnd = D->specific_attr_end<AvailabilityAttr>(); 215 A != AEnd; ++A) 216 if ((*A)->getPlatform()->getName().equals("macosx")) 217 return DefaultVisibility; 218 } 219 220 return None; 221 } 222 223 static LinkageInfo 224 getLVForType(const Type &T, LVComputationKind computation) { 225 if (computation == LVForLinkageOnly) 226 return LinkageInfo(T.getLinkage(), DefaultVisibility, true); 227 return T.getLinkageAndVisibility(); 228 } 229 230 /// \brief Get the most restrictive linkage for the types in the given 231 /// template parameter list. For visibility purposes, template 232 /// parameters are part of the signature of a template. 233 static LinkageInfo 234 getLVForTemplateParameterList(const TemplateParameterList *params, 235 LVComputationKind computation) { 236 LinkageInfo LV; 237 for (TemplateParameterList::const_iterator P = params->begin(), 238 PEnd = params->end(); 239 P != PEnd; ++P) { 240 241 // Template type parameters are the most common and never 242 // contribute to visibility, pack or not. 243 if (isa<TemplateTypeParmDecl>(*P)) 244 continue; 245 246 // Non-type template parameters can be restricted by the value type, e.g. 247 // template <enum X> class A { ... }; 248 // We have to be careful here, though, because we can be dealing with 249 // dependent types. 250 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*P)) { 251 // Handle the non-pack case first. 252 if (!NTTP->isExpandedParameterPack()) { 253 if (!NTTP->getType()->isDependentType()) { 254 LV.merge(getLVForType(*NTTP->getType(), computation)); 255 } 256 continue; 257 } 258 259 // Look at all the types in an expanded pack. 260 for (unsigned i = 0, n = NTTP->getNumExpansionTypes(); i != n; ++i) { 261 QualType type = NTTP->getExpansionType(i); 262 if (!type->isDependentType()) 263 LV.merge(type->getLinkageAndVisibility()); 264 } 265 continue; 266 } 267 268 // Template template parameters can be restricted by their 269 // template parameters, recursively. 270 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P); 271 272 // Handle the non-pack case first. 273 if (!TTP->isExpandedParameterPack()) { 274 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(), 275 computation)); 276 continue; 277 } 278 279 // Look at all expansions in an expanded pack. 280 for (unsigned i = 0, n = TTP->getNumExpansionTemplateParameters(); 281 i != n; ++i) { 282 LV.merge(getLVForTemplateParameterList( 283 TTP->getExpansionTemplateParameters(i), computation)); 284 } 285 } 286 287 return LV; 288 } 289 290 /// getLVForDecl - Get the linkage and visibility for the given declaration. 291 static LinkageInfo getLVForDecl(const NamedDecl *D, 292 LVComputationKind computation); 293 294 static const Decl *getOutermostFuncOrBlockContext(const Decl *D) { 295 const Decl *Ret = NULL; 296 const DeclContext *DC = D->getDeclContext(); 297 while (DC->getDeclKind() != Decl::TranslationUnit) { 298 if (isa<FunctionDecl>(DC) || isa<BlockDecl>(DC)) 299 Ret = cast<Decl>(DC); 300 DC = DC->getParent(); 301 } 302 return Ret; 303 } 304 305 /// \brief Get the most restrictive linkage for the types and 306 /// declarations in the given template argument list. 307 /// 308 /// Note that we don't take an LVComputationKind because we always 309 /// want to honor the visibility of template arguments in the same way. 310 static LinkageInfo 311 getLVForTemplateArgumentList(ArrayRef<TemplateArgument> args, 312 LVComputationKind computation) { 313 LinkageInfo LV; 314 315 for (unsigned i = 0, e = args.size(); i != e; ++i) { 316 const TemplateArgument &arg = args[i]; 317 switch (arg.getKind()) { 318 case TemplateArgument::Null: 319 case TemplateArgument::Integral: 320 case TemplateArgument::Expression: 321 continue; 322 323 case TemplateArgument::Type: 324 LV.merge(getLVForType(*arg.getAsType(), computation)); 325 continue; 326 327 case TemplateArgument::Declaration: 328 if (NamedDecl *ND = dyn_cast<NamedDecl>(arg.getAsDecl())) { 329 assert(!usesTypeVisibility(ND)); 330 LV.merge(getLVForDecl(ND, computation)); 331 } 332 continue; 333 334 case TemplateArgument::NullPtr: 335 LV.merge(arg.getNullPtrType()->getLinkageAndVisibility()); 336 continue; 337 338 case TemplateArgument::Template: 339 case TemplateArgument::TemplateExpansion: 340 if (TemplateDecl *Template 341 = arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl()) 342 LV.merge(getLVForDecl(Template, computation)); 343 continue; 344 345 case TemplateArgument::Pack: 346 LV.merge(getLVForTemplateArgumentList(arg.getPackAsArray(), computation)); 347 continue; 348 } 349 llvm_unreachable("bad template argument kind"); 350 } 351 352 return LV; 353 } 354 355 static LinkageInfo 356 getLVForTemplateArgumentList(const TemplateArgumentList &TArgs, 357 LVComputationKind computation) { 358 return getLVForTemplateArgumentList(TArgs.asArray(), computation); 359 } 360 361 static bool shouldConsiderTemplateVisibility(const FunctionDecl *fn, 362 const FunctionTemplateSpecializationInfo *specInfo) { 363 // Include visibility from the template parameters and arguments 364 // only if this is not an explicit instantiation or specialization 365 // with direct explicit visibility. (Implicit instantiations won't 366 // have a direct attribute.) 367 if (!specInfo->isExplicitInstantiationOrSpecialization()) 368 return true; 369 370 return !fn->hasAttr<VisibilityAttr>(); 371 } 372 373 /// Merge in template-related linkage and visibility for the given 374 /// function template specialization. 375 /// 376 /// We don't need a computation kind here because we can assume 377 /// LVForValue. 378 /// 379 /// \param[out] LV the computation to use for the parent 380 static void 381 mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, 382 const FunctionTemplateSpecializationInfo *specInfo, 383 LVComputationKind computation) { 384 bool considerVisibility = 385 shouldConsiderTemplateVisibility(fn, specInfo); 386 387 // Merge information from the template parameters. 388 FunctionTemplateDecl *temp = specInfo->getTemplate(); 389 LinkageInfo tempLV = 390 getLVForTemplateParameterList(temp->getTemplateParameters(), computation); 391 LV.mergeMaybeWithVisibility(tempLV, considerVisibility); 392 393 // Merge information from the template arguments. 394 const TemplateArgumentList &templateArgs = *specInfo->TemplateArguments; 395 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation); 396 LV.mergeMaybeWithVisibility(argsLV, considerVisibility); 397 } 398 399 /// Does the given declaration have a direct visibility attribute 400 /// that would match the given rules? 401 static bool hasDirectVisibilityAttribute(const NamedDecl *D, 402 LVComputationKind computation) { 403 switch (computation) { 404 case LVForType: 405 case LVForExplicitType: 406 if (D->hasAttr<TypeVisibilityAttr>()) 407 return true; 408 // fallthrough 409 case LVForValue: 410 case LVForExplicitValue: 411 if (D->hasAttr<VisibilityAttr>()) 412 return true; 413 return false; 414 case LVForLinkageOnly: 415 return false; 416 } 417 llvm_unreachable("bad visibility computation kind"); 418 } 419 420 /// Should we consider visibility associated with the template 421 /// arguments and parameters of the given class template specialization? 422 static bool shouldConsiderTemplateVisibility( 423 const ClassTemplateSpecializationDecl *spec, 424 LVComputationKind computation) { 425 // Include visibility from the template parameters and arguments 426 // only if this is not an explicit instantiation or specialization 427 // with direct explicit visibility (and note that implicit 428 // instantiations won't have a direct attribute). 429 // 430 // Furthermore, we want to ignore template parameters and arguments 431 // for an explicit specialization when computing the visibility of a 432 // member thereof with explicit visibility. 433 // 434 // This is a bit complex; let's unpack it. 435 // 436 // An explicit class specialization is an independent, top-level 437 // declaration. As such, if it or any of its members has an 438 // explicit visibility attribute, that must directly express the 439 // user's intent, and we should honor it. The same logic applies to 440 // an explicit instantiation of a member of such a thing. 441 442 // Fast path: if this is not an explicit instantiation or 443 // specialization, we always want to consider template-related 444 // visibility restrictions. 445 if (!spec->isExplicitInstantiationOrSpecialization()) 446 return true; 447 448 // This is the 'member thereof' check. 449 if (spec->isExplicitSpecialization() && 450 hasExplicitVisibilityAlready(computation)) 451 return false; 452 453 return !hasDirectVisibilityAttribute(spec, computation); 454 } 455 456 /// Merge in template-related linkage and visibility for the given 457 /// class template specialization. 458 static void mergeTemplateLV(LinkageInfo &LV, 459 const ClassTemplateSpecializationDecl *spec, 460 LVComputationKind computation) { 461 bool considerVisibility = shouldConsiderTemplateVisibility(spec, computation); 462 463 // Merge information from the template parameters, but ignore 464 // visibility if we're only considering template arguments. 465 466 ClassTemplateDecl *temp = spec->getSpecializedTemplate(); 467 LinkageInfo tempLV = 468 getLVForTemplateParameterList(temp->getTemplateParameters(), computation); 469 LV.mergeMaybeWithVisibility(tempLV, 470 considerVisibility && !hasExplicitVisibilityAlready(computation)); 471 472 // Merge information from the template arguments. We ignore 473 // template-argument visibility if we've got an explicit 474 // instantiation with a visibility attribute. 475 const TemplateArgumentList &templateArgs = spec->getTemplateArgs(); 476 LinkageInfo argsLV = getLVForTemplateArgumentList(templateArgs, computation); 477 if (considerVisibility) 478 LV.mergeVisibility(argsLV); 479 LV.mergeExternalVisibility(argsLV); 480 } 481 482 static bool useInlineVisibilityHidden(const NamedDecl *D) { 483 // FIXME: we should warn if -fvisibility-inlines-hidden is used with c. 484 const LangOptions &Opts = D->getASTContext().getLangOpts(); 485 if (!Opts.CPlusPlus || !Opts.InlineVisibilityHidden) 486 return false; 487 488 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D); 489 if (!FD) 490 return false; 491 492 TemplateSpecializationKind TSK = TSK_Undeclared; 493 if (FunctionTemplateSpecializationInfo *spec 494 = FD->getTemplateSpecializationInfo()) { 495 TSK = spec->getTemplateSpecializationKind(); 496 } else if (MemberSpecializationInfo *MSI = 497 FD->getMemberSpecializationInfo()) { 498 TSK = MSI->getTemplateSpecializationKind(); 499 } 500 501 const FunctionDecl *Def = 0; 502 // InlineVisibilityHidden only applies to definitions, and 503 // isInlined() only gives meaningful answers on definitions 504 // anyway. 505 return TSK != TSK_ExplicitInstantiationDeclaration && 506 TSK != TSK_ExplicitInstantiationDefinition && 507 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>(); 508 } 509 510 template <typename T> static bool isFirstInExternCContext(T *D) { 511 const T *First = D->getFirstDeclaration(); 512 return First->isInExternCContext(); 513 } 514 515 static bool isSingleLineExternC(const Decl &D) { 516 if (const LinkageSpecDecl *SD = dyn_cast<LinkageSpecDecl>(D.getDeclContext())) 517 if (SD->getLanguage() == LinkageSpecDecl::lang_c && !SD->hasBraces()) 518 return true; 519 return false; 520 } 521 522 static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, 523 LVComputationKind computation) { 524 assert(D->getDeclContext()->getRedeclContext()->isFileContext() && 525 "Not a name having namespace scope"); 526 ASTContext &Context = D->getASTContext(); 527 528 // C++ [basic.link]p3: 529 // A name having namespace scope (3.3.6) has internal linkage if it 530 // is the name of 531 // - an object, reference, function or function template that is 532 // explicitly declared static; or, 533 // (This bullet corresponds to C99 6.2.2p3.) 534 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) { 535 // Explicitly declared static. 536 if (Var->getStorageClass() == SC_Static) 537 return LinkageInfo::internal(); 538 539 // - a non-volatile object or reference that is explicitly declared const 540 // or constexpr and neither explicitly declared extern nor previously 541 // declared to have external linkage; or (there is no equivalent in C99) 542 if (Context.getLangOpts().CPlusPlus && 543 Var->getType().isConstQualified() && 544 !Var->getType().isVolatileQualified()) { 545 const VarDecl *PrevVar = Var->getPreviousDecl(); 546 if (PrevVar) 547 return getLVForDecl(PrevVar, computation); 548 549 if (Var->getStorageClass() != SC_Extern && 550 Var->getStorageClass() != SC_PrivateExtern && 551 !isSingleLineExternC(*Var)) 552 return LinkageInfo::internal(); 553 } 554 555 for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar; 556 PrevVar = PrevVar->getPreviousDecl()) { 557 if (PrevVar->getStorageClass() == SC_PrivateExtern && 558 Var->getStorageClass() == SC_None) 559 return PrevVar->getLinkageAndVisibility(); 560 // Explicitly declared static. 561 if (PrevVar->getStorageClass() == SC_Static) 562 return LinkageInfo::internal(); 563 } 564 } else if (isa<FunctionDecl>(D) || isa<FunctionTemplateDecl>(D)) { 565 // C++ [temp]p4: 566 // A non-member function template can have internal linkage; any 567 // other template name shall have external linkage. 568 const FunctionDecl *Function = 0; 569 if (const FunctionTemplateDecl *FunTmpl 570 = dyn_cast<FunctionTemplateDecl>(D)) 571 Function = FunTmpl->getTemplatedDecl(); 572 else 573 Function = cast<FunctionDecl>(D); 574 575 // Explicitly declared static. 576 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static) 577 return LinkageInfo(InternalLinkage, DefaultVisibility, false); 578 } else if (const FieldDecl *Field = dyn_cast<FieldDecl>(D)) { 579 // - a data member of an anonymous union. 580 if (cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()) 581 return LinkageInfo::internal(); 582 } 583 584 if (D->isInAnonymousNamespace()) { 585 const VarDecl *Var = dyn_cast<VarDecl>(D); 586 const FunctionDecl *Func = dyn_cast<FunctionDecl>(D); 587 if ((!Var || !isFirstInExternCContext(Var)) && 588 (!Func || !isFirstInExternCContext(Func))) 589 return LinkageInfo::uniqueExternal(); 590 } 591 592 // Set up the defaults. 593 594 // C99 6.2.2p5: 595 // If the declaration of an identifier for an object has file 596 // scope and no storage-class specifier, its linkage is 597 // external. 598 LinkageInfo LV; 599 600 if (!hasExplicitVisibilityAlready(computation)) { 601 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) { 602 LV.mergeVisibility(*Vis, true); 603 } else { 604 // If we're declared in a namespace with a visibility attribute, 605 // use that namespace's visibility, and it still counts as explicit. 606 for (const DeclContext *DC = D->getDeclContext(); 607 !isa<TranslationUnitDecl>(DC); 608 DC = DC->getParent()) { 609 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC); 610 if (!ND) continue; 611 if (Optional<Visibility> Vis = getExplicitVisibility(ND, computation)) { 612 LV.mergeVisibility(*Vis, true); 613 break; 614 } 615 } 616 } 617 618 // Add in global settings if the above didn't give us direct visibility. 619 if (!LV.isVisibilityExplicit()) { 620 // Use global type/value visibility as appropriate. 621 Visibility globalVisibility; 622 if (computation == LVForValue) { 623 globalVisibility = Context.getLangOpts().getValueVisibilityMode(); 624 } else { 625 assert(computation == LVForType); 626 globalVisibility = Context.getLangOpts().getTypeVisibilityMode(); 627 } 628 LV.mergeVisibility(globalVisibility, /*explicit*/ false); 629 630 // If we're paying attention to global visibility, apply 631 // -finline-visibility-hidden if this is an inline method. 632 if (useInlineVisibilityHidden(D)) 633 LV.mergeVisibility(HiddenVisibility, true); 634 } 635 } 636 637 // C++ [basic.link]p4: 638 639 // A name having namespace scope has external linkage if it is the 640 // name of 641 // 642 // - an object or reference, unless it has internal linkage; or 643 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) { 644 // GCC applies the following optimization to variables and static 645 // data members, but not to functions: 646 // 647 // Modify the variable's LV by the LV of its type unless this is 648 // C or extern "C". This follows from [basic.link]p9: 649 // A type without linkage shall not be used as the type of a 650 // variable or function with external linkage unless 651 // - the entity has C language linkage, or 652 // - the entity is declared within an unnamed namespace, or 653 // - the entity is not used or is defined in the same 654 // translation unit. 655 // and [basic.link]p10: 656 // ...the types specified by all declarations referring to a 657 // given variable or function shall be identical... 658 // C does not have an equivalent rule. 659 // 660 // Ignore this if we've got an explicit attribute; the user 661 // probably knows what they're doing. 662 // 663 // Note that we don't want to make the variable non-external 664 // because of this, but unique-external linkage suits us. 665 if (Context.getLangOpts().CPlusPlus && !isFirstInExternCContext(Var)) { 666 LinkageInfo TypeLV = getLVForType(*Var->getType(), computation); 667 if (TypeLV.getLinkage() != ExternalLinkage) 668 return LinkageInfo::uniqueExternal(); 669 if (!LV.isVisibilityExplicit()) 670 LV.mergeVisibility(TypeLV); 671 } 672 673 if (Var->getStorageClass() == SC_PrivateExtern) 674 LV.mergeVisibility(HiddenVisibility, true); 675 676 // Note that Sema::MergeVarDecl already takes care of implementing 677 // C99 6.2.2p4 and propagating the visibility attribute, so we don't have 678 // to do it here. 679 680 // - a function, unless it has internal linkage; or 681 } else if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { 682 // In theory, we can modify the function's LV by the LV of its 683 // type unless it has C linkage (see comment above about variables 684 // for justification). In practice, GCC doesn't do this, so it's 685 // just too painful to make work. 686 687 if (Function->getStorageClass() == SC_PrivateExtern) 688 LV.mergeVisibility(HiddenVisibility, true); 689 690 // Note that Sema::MergeCompatibleFunctionDecls already takes care of 691 // merging storage classes and visibility attributes, so we don't have to 692 // look at previous decls in here. 693 694 // In C++, then if the type of the function uses a type with 695 // unique-external linkage, it's not legally usable from outside 696 // this translation unit. However, we should use the C linkage 697 // rules instead for extern "C" declarations. 698 if (Context.getLangOpts().CPlusPlus && 699 !Function->isInExternCContext()) { 700 // Only look at the type-as-written. If this function has an auto-deduced 701 // return type, we can't compute the linkage of that type because it could 702 // require looking at the linkage of this function, and we don't need this 703 // for correctness because the type is not part of the function's 704 // signature. 705 // FIXME: This is a hack. We should be able to solve this circularity and 706 // the one in getLVForClassMember for Functions some other way. 707 QualType TypeAsWritten = Function->getType(); 708 if (TypeSourceInfo *TSI = Function->getTypeSourceInfo()) 709 TypeAsWritten = TSI->getType(); 710 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage) 711 return LinkageInfo::uniqueExternal(); 712 } 713 714 // Consider LV from the template and the template arguments. 715 // We're at file scope, so we do not need to worry about nested 716 // specializations. 717 if (FunctionTemplateSpecializationInfo *specInfo 718 = Function->getTemplateSpecializationInfo()) { 719 mergeTemplateLV(LV, Function, specInfo, computation); 720 } 721 722 // - a named class (Clause 9), or an unnamed class defined in a 723 // typedef declaration in which the class has the typedef name 724 // for linkage purposes (7.1.3); or 725 // - a named enumeration (7.2), or an unnamed enumeration 726 // defined in a typedef declaration in which the enumeration 727 // has the typedef name for linkage purposes (7.1.3); or 728 } else if (const TagDecl *Tag = dyn_cast<TagDecl>(D)) { 729 // Unnamed tags have no linkage. 730 if (!Tag->hasNameForLinkage()) 731 return LinkageInfo::none(); 732 733 // If this is a class template specialization, consider the 734 // linkage of the template and template arguments. We're at file 735 // scope, so we do not need to worry about nested specializations. 736 if (const ClassTemplateSpecializationDecl *spec 737 = dyn_cast<ClassTemplateSpecializationDecl>(Tag)) { 738 mergeTemplateLV(LV, spec, computation); 739 } 740 741 // - an enumerator belonging to an enumeration with external linkage; 742 } else if (isa<EnumConstantDecl>(D)) { 743 LinkageInfo EnumLV = getLVForDecl(cast<NamedDecl>(D->getDeclContext()), 744 computation); 745 if (!isExternalFormalLinkage(EnumLV.getLinkage())) 746 return LinkageInfo::none(); 747 LV.merge(EnumLV); 748 749 // - a template, unless it is a function template that has 750 // internal linkage (Clause 14); 751 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) { 752 bool considerVisibility = !hasExplicitVisibilityAlready(computation); 753 LinkageInfo tempLV = 754 getLVForTemplateParameterList(temp->getTemplateParameters(), computation); 755 LV.mergeMaybeWithVisibility(tempLV, considerVisibility); 756 757 // - a namespace (7.3), unless it is declared within an unnamed 758 // namespace. 759 } else if (isa<NamespaceDecl>(D) && !D->isInAnonymousNamespace()) { 760 return LV; 761 762 // By extension, we assign external linkage to Objective-C 763 // interfaces. 764 } else if (isa<ObjCInterfaceDecl>(D)) { 765 // fallout 766 767 // Everything not covered here has no linkage. 768 } else { 769 return LinkageInfo::none(); 770 } 771 772 // If we ended up with non-external linkage, visibility should 773 // always be default. 774 if (LV.getLinkage() != ExternalLinkage) 775 return LinkageInfo(LV.getLinkage(), DefaultVisibility, false); 776 777 return LV; 778 } 779 780 static LinkageInfo getLVForClassMember(const NamedDecl *D, 781 LVComputationKind computation) { 782 // Only certain class members have linkage. Note that fields don't 783 // really have linkage, but it's convenient to say they do for the 784 // purposes of calculating linkage of pointer-to-data-member 785 // template arguments. 786 if (!(isa<CXXMethodDecl>(D) || 787 isa<VarDecl>(D) || 788 isa<FieldDecl>(D) || 789 isa<TagDecl>(D))) 790 return LinkageInfo::none(); 791 792 LinkageInfo LV; 793 794 // If we have an explicit visibility attribute, merge that in. 795 if (!hasExplicitVisibilityAlready(computation)) { 796 if (Optional<Visibility> Vis = getExplicitVisibility(D, computation)) 797 LV.mergeVisibility(*Vis, true); 798 // If we're paying attention to global visibility, apply 799 // -finline-visibility-hidden if this is an inline method. 800 // 801 // Note that we do this before merging information about 802 // the class visibility. 803 if (!LV.isVisibilityExplicit() && useInlineVisibilityHidden(D)) 804 LV.mergeVisibility(HiddenVisibility, true); 805 } 806 807 // If this class member has an explicit visibility attribute, the only 808 // thing that can change its visibility is the template arguments, so 809 // only look for them when processing the class. 810 LVComputationKind classComputation = computation; 811 if (LV.isVisibilityExplicit()) 812 classComputation = withExplicitVisibilityAlready(computation); 813 814 LinkageInfo classLV = 815 getLVForDecl(cast<RecordDecl>(D->getDeclContext()), classComputation); 816 // If the class already has unique-external linkage, we can't improve. 817 if (classLV.getLinkage() == UniqueExternalLinkage) 818 return LinkageInfo::uniqueExternal(); 819 820 if (!isExternallyVisible(classLV.getLinkage())) 821 return LinkageInfo::none(); 822 823 824 // Otherwise, don't merge in classLV yet, because in certain cases 825 // we need to completely ignore the visibility from it. 826 827 // Specifically, if this decl exists and has an explicit attribute. 828 const NamedDecl *explicitSpecSuppressor = 0; 829 830 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { 831 // If the type of the function uses a type with unique-external 832 // linkage, it's not legally usable from outside this translation unit. 833 // But only look at the type-as-written. If this function has an auto-deduced 834 // return type, we can't compute the linkage of that type because it could 835 // require looking at the linkage of this function, and we don't need this 836 // for correctness because the type is not part of the function's 837 // signature. 838 // FIXME: This is a hack. We should be able to solve this circularity and the 839 // one in getLVForNamespaceScopeDecl for Functions some other way. 840 { 841 QualType TypeAsWritten = MD->getType(); 842 if (TypeSourceInfo *TSI = MD->getTypeSourceInfo()) 843 TypeAsWritten = TSI->getType(); 844 if (TypeAsWritten->getLinkage() == UniqueExternalLinkage) 845 return LinkageInfo::uniqueExternal(); 846 } 847 // If this is a method template specialization, use the linkage for 848 // the template parameters and arguments. 849 if (FunctionTemplateSpecializationInfo *spec 850 = MD->getTemplateSpecializationInfo()) { 851 mergeTemplateLV(LV, MD, spec, computation); 852 if (spec->isExplicitSpecialization()) { 853 explicitSpecSuppressor = MD; 854 } else if (isExplicitMemberSpecialization(spec->getTemplate())) { 855 explicitSpecSuppressor = spec->getTemplate()->getTemplatedDecl(); 856 } 857 } else if (isExplicitMemberSpecialization(MD)) { 858 explicitSpecSuppressor = MD; 859 } 860 861 } else if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) { 862 if (const ClassTemplateSpecializationDecl *spec 863 = dyn_cast<ClassTemplateSpecializationDecl>(RD)) { 864 mergeTemplateLV(LV, spec, computation); 865 if (spec->isExplicitSpecialization()) { 866 explicitSpecSuppressor = spec; 867 } else { 868 const ClassTemplateDecl *temp = spec->getSpecializedTemplate(); 869 if (isExplicitMemberSpecialization(temp)) { 870 explicitSpecSuppressor = temp->getTemplatedDecl(); 871 } 872 } 873 } else if (isExplicitMemberSpecialization(RD)) { 874 explicitSpecSuppressor = RD; 875 } 876 877 // Static data members. 878 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 879 // Modify the variable's linkage by its type, but ignore the 880 // type's visibility unless it's a definition. 881 LinkageInfo typeLV = getLVForType(*VD->getType(), computation); 882 if (!LV.isVisibilityExplicit() && !classLV.isVisibilityExplicit()) 883 LV.mergeVisibility(typeLV); 884 LV.mergeExternalVisibility(typeLV); 885 886 if (isExplicitMemberSpecialization(VD)) { 887 explicitSpecSuppressor = VD; 888 } 889 890 // Template members. 891 } else if (const TemplateDecl *temp = dyn_cast<TemplateDecl>(D)) { 892 bool considerVisibility = 893 (!LV.isVisibilityExplicit() && 894 !classLV.isVisibilityExplicit() && 895 !hasExplicitVisibilityAlready(computation)); 896 LinkageInfo tempLV = 897 getLVForTemplateParameterList(temp->getTemplateParameters(), computation); 898 LV.mergeMaybeWithVisibility(tempLV, considerVisibility); 899 900 if (const RedeclarableTemplateDecl *redeclTemp = 901 dyn_cast<RedeclarableTemplateDecl>(temp)) { 902 if (isExplicitMemberSpecialization(redeclTemp)) { 903 explicitSpecSuppressor = temp->getTemplatedDecl(); 904 } 905 } 906 } 907 908 // We should never be looking for an attribute directly on a template. 909 assert(!explicitSpecSuppressor || !isa<TemplateDecl>(explicitSpecSuppressor)); 910 911 // If this member is an explicit member specialization, and it has 912 // an explicit attribute, ignore visibility from the parent. 913 bool considerClassVisibility = true; 914 if (explicitSpecSuppressor && 915 // optimization: hasDVA() is true only with explicit visibility. 916 LV.isVisibilityExplicit() && 917 classLV.getVisibility() != DefaultVisibility && 918 hasDirectVisibilityAttribute(explicitSpecSuppressor, computation)) { 919 considerClassVisibility = false; 920 } 921 922 // Finally, merge in information from the class. 923 LV.mergeMaybeWithVisibility(classLV, considerClassVisibility); 924 return LV; 925 } 926 927 void NamedDecl::anchor() { } 928 929 static LinkageInfo computeLVForDecl(const NamedDecl *D, 930 LVComputationKind computation); 931 932 bool NamedDecl::isLinkageValid() const { 933 if (!hasCachedLinkage()) 934 return true; 935 936 return computeLVForDecl(this, LVForLinkageOnly).getLinkage() == 937 getCachedLinkage(); 938 } 939 940 Linkage NamedDecl::getLinkageInternal() const { 941 // We don't care about visibility here, so ask for the cheapest 942 // possible visibility analysis. 943 return getLVForDecl(this, LVForLinkageOnly).getLinkage(); 944 } 945 946 LinkageInfo NamedDecl::getLinkageAndVisibility() const { 947 LVComputationKind computation = 948 (usesTypeVisibility(this) ? LVForType : LVForValue); 949 return getLVForDecl(this, computation); 950 } 951 952 Optional<Visibility> 953 NamedDecl::getExplicitVisibility(ExplicitVisibilityKind kind) const { 954 // Check the declaration itself first. 955 if (Optional<Visibility> V = getVisibilityOf(this, kind)) 956 return V; 957 958 // If this is a member class of a specialization of a class template 959 // and the corresponding decl has explicit visibility, use that. 960 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(this)) { 961 CXXRecordDecl *InstantiatedFrom = RD->getInstantiatedFromMemberClass(); 962 if (InstantiatedFrom) 963 return getVisibilityOf(InstantiatedFrom, kind); 964 } 965 966 // If there wasn't explicit visibility there, and this is a 967 // specialization of a class template, check for visibility 968 // on the pattern. 969 if (const ClassTemplateSpecializationDecl *spec 970 = dyn_cast<ClassTemplateSpecializationDecl>(this)) 971 return getVisibilityOf(spec->getSpecializedTemplate()->getTemplatedDecl(), 972 kind); 973 974 // Use the most recent declaration. 975 const NamedDecl *MostRecent = cast<NamedDecl>(this->getMostRecentDecl()); 976 if (MostRecent != this) 977 return MostRecent->getExplicitVisibility(kind); 978 979 if (const VarDecl *Var = dyn_cast<VarDecl>(this)) { 980 if (Var->isStaticDataMember()) { 981 VarDecl *InstantiatedFrom = Var->getInstantiatedFromStaticDataMember(); 982 if (InstantiatedFrom) 983 return getVisibilityOf(InstantiatedFrom, kind); 984 } 985 986 return None; 987 } 988 // Also handle function template specializations. 989 if (const FunctionDecl *fn = dyn_cast<FunctionDecl>(this)) { 990 // If the function is a specialization of a template with an 991 // explicit visibility attribute, use that. 992 if (FunctionTemplateSpecializationInfo *templateInfo 993 = fn->getTemplateSpecializationInfo()) 994 return getVisibilityOf(templateInfo->getTemplate()->getTemplatedDecl(), 995 kind); 996 997 // If the function is a member of a specialization of a class template 998 // and the corresponding decl has explicit visibility, use that. 999 FunctionDecl *InstantiatedFrom = fn->getInstantiatedFromMemberFunction(); 1000 if (InstantiatedFrom) 1001 return getVisibilityOf(InstantiatedFrom, kind); 1002 1003 return None; 1004 } 1005 1006 // The visibility of a template is stored in the templated decl. 1007 if (const TemplateDecl *TD = dyn_cast<TemplateDecl>(this)) 1008 return getVisibilityOf(TD->getTemplatedDecl(), kind); 1009 1010 return None; 1011 } 1012 1013 static LinkageInfo getLVForClosure(const DeclContext *DC, Decl *ContextDecl, 1014 LVComputationKind computation) { 1015 // This lambda has its linkage/visibility determined by its owner. 1016 if (ContextDecl) { 1017 if (isa<ParmVarDecl>(ContextDecl)) 1018 DC = ContextDecl->getDeclContext()->getRedeclContext(); 1019 else 1020 return getLVForDecl(cast<NamedDecl>(ContextDecl), computation); 1021 } 1022 1023 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DC)) 1024 return getLVForDecl(ND, computation); 1025 1026 return LinkageInfo::external(); 1027 } 1028 1029 static LinkageInfo getLVForLocalDecl(const NamedDecl *D, 1030 LVComputationKind computation) { 1031 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { 1032 if (Function->isInAnonymousNamespace() && 1033 !Function->isInExternCContext()) 1034 return LinkageInfo::uniqueExternal(); 1035 1036 // This is a "void f();" which got merged with a file static. 1037 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static) 1038 return LinkageInfo::internal(); 1039 1040 LinkageInfo LV; 1041 if (!hasExplicitVisibilityAlready(computation)) { 1042 if (Optional<Visibility> Vis = 1043 getExplicitVisibility(Function, computation)) 1044 LV.mergeVisibility(*Vis, true); 1045 } 1046 1047 // Note that Sema::MergeCompatibleFunctionDecls already takes care of 1048 // merging storage classes and visibility attributes, so we don't have to 1049 // look at previous decls in here. 1050 1051 return LV; 1052 } 1053 1054 if (const VarDecl *Var = dyn_cast<VarDecl>(D)) { 1055 if (Var->hasExternalStorage()) { 1056 if (Var->isInAnonymousNamespace() && !Var->isInExternCContext()) 1057 return LinkageInfo::uniqueExternal(); 1058 1059 LinkageInfo LV; 1060 if (Var->getStorageClass() == SC_PrivateExtern) 1061 LV.mergeVisibility(HiddenVisibility, true); 1062 else if (!hasExplicitVisibilityAlready(computation)) { 1063 if (Optional<Visibility> Vis = getExplicitVisibility(Var, computation)) 1064 LV.mergeVisibility(*Vis, true); 1065 } 1066 1067 if (const VarDecl *Prev = Var->getPreviousDecl()) { 1068 LinkageInfo PrevLV = getLVForDecl(Prev, computation); 1069 if (PrevLV.getLinkage()) 1070 LV.setLinkage(PrevLV.getLinkage()); 1071 LV.mergeVisibility(PrevLV); 1072 } 1073 1074 return LV; 1075 } 1076 1077 if (!Var->isStaticLocal()) 1078 return LinkageInfo::none(); 1079 } 1080 1081 ASTContext &Context = D->getASTContext(); 1082 if (!Context.getLangOpts().CPlusPlus) 1083 return LinkageInfo::none(); 1084 1085 const Decl *OuterD = getOutermostFuncOrBlockContext(D); 1086 if (!OuterD) 1087 return LinkageInfo::none(); 1088 1089 LinkageInfo LV; 1090 if (const BlockDecl *BD = dyn_cast<BlockDecl>(OuterD)) { 1091 if (!BD->getBlockManglingNumber()) 1092 return LinkageInfo::none(); 1093 1094 LV = getLVForClosure(BD->getDeclContext()->getRedeclContext(), 1095 BD->getBlockManglingContextDecl(), computation); 1096 } else { 1097 const FunctionDecl *FD = cast<FunctionDecl>(OuterD); 1098 if (!FD->isInlined() && 1099 FD->getTemplateSpecializationKind() == TSK_Undeclared) 1100 return LinkageInfo::none(); 1101 1102 LV = getLVForDecl(FD, computation); 1103 } 1104 if (!isExternallyVisible(LV.getLinkage())) 1105 return LinkageInfo::none(); 1106 return LinkageInfo(VisibleNoLinkage, LV.getVisibility(), 1107 LV.isVisibilityExplicit()); 1108 } 1109 1110 static inline const CXXRecordDecl* 1111 getOutermostEnclosingLambda(const CXXRecordDecl *Record) { 1112 const CXXRecordDecl *Ret = Record; 1113 while (Record && Record->isLambda()) { 1114 Ret = Record; 1115 if (!Record->getParent()) break; 1116 // Get the Containing Class of this Lambda Class 1117 Record = dyn_cast_or_null<CXXRecordDecl>( 1118 Record->getParent()->getParent()); 1119 } 1120 return Ret; 1121 } 1122 1123 static LinkageInfo computeLVForDecl(const NamedDecl *D, 1124 LVComputationKind computation) { 1125 // Objective-C: treat all Objective-C declarations as having external 1126 // linkage. 1127 switch (D->getKind()) { 1128 default: 1129 break; 1130 case Decl::ParmVar: 1131 return LinkageInfo::none(); 1132 case Decl::TemplateTemplateParm: // count these as external 1133 case Decl::NonTypeTemplateParm: 1134 case Decl::ObjCAtDefsField: 1135 case Decl::ObjCCategory: 1136 case Decl::ObjCCategoryImpl: 1137 case Decl::ObjCCompatibleAlias: 1138 case Decl::ObjCImplementation: 1139 case Decl::ObjCMethod: 1140 case Decl::ObjCProperty: 1141 case Decl::ObjCPropertyImpl: 1142 case Decl::ObjCProtocol: 1143 return LinkageInfo::external(); 1144 1145 case Decl::CXXRecord: { 1146 const CXXRecordDecl *Record = cast<CXXRecordDecl>(D); 1147 if (Record->isLambda()) { 1148 if (!Record->getLambdaManglingNumber()) { 1149 // This lambda has no mangling number, so it's internal. 1150 return LinkageInfo::internal(); 1151 } 1152 1153 // This lambda has its linkage/visibility determined: 1154 // - either by the outermost lambda if that lambda has no mangling 1155 // number. 1156 // - or by the parent of the outer most lambda 1157 // This prevents infinite recursion in settings such as nested lambdas 1158 // used in NSDMI's, for e.g. 1159 // struct L { 1160 // int t{}; 1161 // int t2 = ([](int a) { return [](int b) { return b; };})(t)(t); 1162 // }; 1163 const CXXRecordDecl *OuterMostLambda = 1164 getOutermostEnclosingLambda(Record); 1165 if (!OuterMostLambda->getLambdaManglingNumber()) 1166 return LinkageInfo::internal(); 1167 1168 return getLVForClosure( 1169 OuterMostLambda->getDeclContext()->getRedeclContext(), 1170 OuterMostLambda->getLambdaContextDecl(), computation); 1171 } 1172 1173 break; 1174 } 1175 } 1176 1177 // Handle linkage for namespace-scope names. 1178 if (D->getDeclContext()->getRedeclContext()->isFileContext()) 1179 return getLVForNamespaceScopeDecl(D, computation); 1180 1181 // C++ [basic.link]p5: 1182 // In addition, a member function, static data member, a named 1183 // class or enumeration of class scope, or an unnamed class or 1184 // enumeration defined in a class-scope typedef declaration such 1185 // that the class or enumeration has the typedef name for linkage 1186 // purposes (7.1.3), has external linkage if the name of the class 1187 // has external linkage. 1188 if (D->getDeclContext()->isRecord()) 1189 return getLVForClassMember(D, computation); 1190 1191 // C++ [basic.link]p6: 1192 // The name of a function declared in block scope and the name of 1193 // an object declared by a block scope extern declaration have 1194 // linkage. If there is a visible declaration of an entity with 1195 // linkage having the same name and type, ignoring entities 1196 // declared outside the innermost enclosing namespace scope, the 1197 // block scope declaration declares that same entity and receives 1198 // the linkage of the previous declaration. If there is more than 1199 // one such matching entity, the program is ill-formed. Otherwise, 1200 // if no matching entity is found, the block scope entity receives 1201 // external linkage. 1202 if (D->getDeclContext()->isFunctionOrMethod()) 1203 return getLVForLocalDecl(D, computation); 1204 1205 // C++ [basic.link]p6: 1206 // Names not covered by these rules have no linkage. 1207 return LinkageInfo::none(); 1208 } 1209 1210 namespace clang { 1211 class LinkageComputer { 1212 public: 1213 static LinkageInfo getLVForDecl(const NamedDecl *D, 1214 LVComputationKind computation) { 1215 if (computation == LVForLinkageOnly && D->hasCachedLinkage()) 1216 return LinkageInfo(D->getCachedLinkage(), DefaultVisibility, false); 1217 1218 LinkageInfo LV = computeLVForDecl(D, computation); 1219 if (D->hasCachedLinkage()) 1220 assert(D->getCachedLinkage() == LV.getLinkage()); 1221 1222 D->setCachedLinkage(LV.getLinkage()); 1223 1224 #ifndef NDEBUG 1225 // In C (because of gnu inline) and in c++ with microsoft extensions an 1226 // static can follow an extern, so we can have two decls with different 1227 // linkages. 1228 const LangOptions &Opts = D->getASTContext().getLangOpts(); 1229 if (!Opts.CPlusPlus || Opts.MicrosoftExt) 1230 return LV; 1231 1232 // We have just computed the linkage for this decl. By induction we know 1233 // that all other computed linkages match, check that the one we just 1234 // computed 1235 // also does. 1236 NamedDecl *Old = NULL; 1237 for (NamedDecl::redecl_iterator I = D->redecls_begin(), 1238 E = D->redecls_end(); 1239 I != E; ++I) { 1240 NamedDecl *T = cast<NamedDecl>(*I); 1241 if (T == D) 1242 continue; 1243 if (T->hasCachedLinkage()) { 1244 Old = T; 1245 break; 1246 } 1247 } 1248 assert(!Old || Old->getCachedLinkage() == D->getCachedLinkage()); 1249 #endif 1250 1251 return LV; 1252 } 1253 }; 1254 } 1255 1256 static LinkageInfo getLVForDecl(const NamedDecl *D, 1257 LVComputationKind computation) { 1258 return clang::LinkageComputer::getLVForDecl(D, computation); 1259 } 1260 1261 std::string NamedDecl::getQualifiedNameAsString() const { 1262 return getQualifiedNameAsString(getASTContext().getPrintingPolicy()); 1263 } 1264 1265 std::string NamedDecl::getQualifiedNameAsString(const PrintingPolicy &P) const { 1266 std::string QualName; 1267 llvm::raw_string_ostream OS(QualName); 1268 printQualifiedName(OS, P); 1269 return OS.str(); 1270 } 1271 1272 void NamedDecl::printQualifiedName(raw_ostream &OS) const { 1273 printQualifiedName(OS, getASTContext().getPrintingPolicy()); 1274 } 1275 1276 void NamedDecl::printQualifiedName(raw_ostream &OS, 1277 const PrintingPolicy &P) const { 1278 const DeclContext *Ctx = getDeclContext(); 1279 1280 if (Ctx->isFunctionOrMethod()) { 1281 printName(OS); 1282 return; 1283 } 1284 1285 typedef SmallVector<const DeclContext *, 8> ContextsTy; 1286 ContextsTy Contexts; 1287 1288 // Collect contexts. 1289 while (Ctx && isa<NamedDecl>(Ctx)) { 1290 Contexts.push_back(Ctx); 1291 Ctx = Ctx->getParent(); 1292 } 1293 1294 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend(); 1295 I != E; ++I) { 1296 if (const ClassTemplateSpecializationDecl *Spec 1297 = dyn_cast<ClassTemplateSpecializationDecl>(*I)) { 1298 OS << Spec->getName(); 1299 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs(); 1300 TemplateSpecializationType::PrintTemplateArgumentList(OS, 1301 TemplateArgs.data(), 1302 TemplateArgs.size(), 1303 P); 1304 } else if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(*I)) { 1305 if (ND->isAnonymousNamespace()) 1306 OS << "<anonymous namespace>"; 1307 else 1308 OS << *ND; 1309 } else if (const RecordDecl *RD = dyn_cast<RecordDecl>(*I)) { 1310 if (!RD->getIdentifier()) 1311 OS << "<anonymous " << RD->getKindName() << '>'; 1312 else 1313 OS << *RD; 1314 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) { 1315 const FunctionProtoType *FT = 0; 1316 if (FD->hasWrittenPrototype()) 1317 FT = dyn_cast<FunctionProtoType>(FD->getType()->castAs<FunctionType>()); 1318 1319 OS << *FD << '('; 1320 if (FT) { 1321 unsigned NumParams = FD->getNumParams(); 1322 for (unsigned i = 0; i < NumParams; ++i) { 1323 if (i) 1324 OS << ", "; 1325 OS << FD->getParamDecl(i)->getType().stream(P); 1326 } 1327 1328 if (FT->isVariadic()) { 1329 if (NumParams > 0) 1330 OS << ", "; 1331 OS << "..."; 1332 } 1333 } 1334 OS << ')'; 1335 } else { 1336 OS << *cast<NamedDecl>(*I); 1337 } 1338 OS << "::"; 1339 } 1340 1341 if (getDeclName()) 1342 OS << *this; 1343 else 1344 OS << "<anonymous>"; 1345 } 1346 1347 void NamedDecl::getNameForDiagnostic(raw_ostream &OS, 1348 const PrintingPolicy &Policy, 1349 bool Qualified) const { 1350 if (Qualified) 1351 printQualifiedName(OS, Policy); 1352 else 1353 printName(OS); 1354 } 1355 1356 bool NamedDecl::declarationReplaces(NamedDecl *OldD) const { 1357 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch"); 1358 1359 // UsingDirectiveDecl's are not really NamedDecl's, and all have same name. 1360 // We want to keep it, unless it nominates same namespace. 1361 if (getKind() == Decl::UsingDirective) { 1362 return cast<UsingDirectiveDecl>(this)->getNominatedNamespace() 1363 ->getOriginalNamespace() == 1364 cast<UsingDirectiveDecl>(OldD)->getNominatedNamespace() 1365 ->getOriginalNamespace(); 1366 } 1367 1368 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) 1369 // For function declarations, we keep track of redeclarations. 1370 return FD->getPreviousDecl() == OldD; 1371 1372 // For function templates, the underlying function declarations are linked. 1373 if (const FunctionTemplateDecl *FunctionTemplate 1374 = dyn_cast<FunctionTemplateDecl>(this)) 1375 if (const FunctionTemplateDecl *OldFunctionTemplate 1376 = dyn_cast<FunctionTemplateDecl>(OldD)) 1377 return FunctionTemplate->getTemplatedDecl() 1378 ->declarationReplaces(OldFunctionTemplate->getTemplatedDecl()); 1379 1380 // For method declarations, we keep track of redeclarations. 1381 if (isa<ObjCMethodDecl>(this)) 1382 return false; 1383 1384 if (isa<ObjCInterfaceDecl>(this) && isa<ObjCCompatibleAliasDecl>(OldD)) 1385 return true; 1386 1387 if (isa<UsingShadowDecl>(this) && isa<UsingShadowDecl>(OldD)) 1388 return cast<UsingShadowDecl>(this)->getTargetDecl() == 1389 cast<UsingShadowDecl>(OldD)->getTargetDecl(); 1390 1391 if (isa<UsingDecl>(this) && isa<UsingDecl>(OldD)) { 1392 ASTContext &Context = getASTContext(); 1393 return Context.getCanonicalNestedNameSpecifier( 1394 cast<UsingDecl>(this)->getQualifier()) == 1395 Context.getCanonicalNestedNameSpecifier( 1396 cast<UsingDecl>(OldD)->getQualifier()); 1397 } 1398 1399 if (isa<UnresolvedUsingValueDecl>(this) && 1400 isa<UnresolvedUsingValueDecl>(OldD)) { 1401 ASTContext &Context = getASTContext(); 1402 return Context.getCanonicalNestedNameSpecifier( 1403 cast<UnresolvedUsingValueDecl>(this)->getQualifier()) == 1404 Context.getCanonicalNestedNameSpecifier( 1405 cast<UnresolvedUsingValueDecl>(OldD)->getQualifier()); 1406 } 1407 1408 // A typedef of an Objective-C class type can replace an Objective-C class 1409 // declaration or definition, and vice versa. 1410 if ((isa<TypedefNameDecl>(this) && isa<ObjCInterfaceDecl>(OldD)) || 1411 (isa<ObjCInterfaceDecl>(this) && isa<TypedefNameDecl>(OldD))) 1412 return true; 1413 1414 // For non-function declarations, if the declarations are of the 1415 // same kind then this must be a redeclaration, or semantic analysis 1416 // would not have given us the new declaration. 1417 return this->getKind() == OldD->getKind(); 1418 } 1419 1420 bool NamedDecl::hasLinkage() const { 1421 return getFormalLinkage() != NoLinkage; 1422 } 1423 1424 NamedDecl *NamedDecl::getUnderlyingDeclImpl() { 1425 NamedDecl *ND = this; 1426 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND)) 1427 ND = UD->getTargetDecl(); 1428 1429 if (ObjCCompatibleAliasDecl *AD = dyn_cast<ObjCCompatibleAliasDecl>(ND)) 1430 return AD->getClassInterface(); 1431 1432 return ND; 1433 } 1434 1435 bool NamedDecl::isCXXInstanceMember() const { 1436 if (!isCXXClassMember()) 1437 return false; 1438 1439 const NamedDecl *D = this; 1440 if (isa<UsingShadowDecl>(D)) 1441 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 1442 1443 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D)) 1444 return true; 1445 if (isa<CXXMethodDecl>(D)) 1446 return cast<CXXMethodDecl>(D)->isInstance(); 1447 if (isa<FunctionTemplateDecl>(D)) 1448 return cast<CXXMethodDecl>(cast<FunctionTemplateDecl>(D) 1449 ->getTemplatedDecl())->isInstance(); 1450 return false; 1451 } 1452 1453 //===----------------------------------------------------------------------===// 1454 // DeclaratorDecl Implementation 1455 //===----------------------------------------------------------------------===// 1456 1457 template <typename DeclT> 1458 static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) { 1459 if (decl->getNumTemplateParameterLists() > 0) 1460 return decl->getTemplateParameterList(0)->getTemplateLoc(); 1461 else 1462 return decl->getInnerLocStart(); 1463 } 1464 1465 SourceLocation DeclaratorDecl::getTypeSpecStartLoc() const { 1466 TypeSourceInfo *TSI = getTypeSourceInfo(); 1467 if (TSI) return TSI->getTypeLoc().getBeginLoc(); 1468 return SourceLocation(); 1469 } 1470 1471 void DeclaratorDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) { 1472 if (QualifierLoc) { 1473 // Make sure the extended decl info is allocated. 1474 if (!hasExtInfo()) { 1475 // Save (non-extended) type source info pointer. 1476 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>(); 1477 // Allocate external info struct. 1478 DeclInfo = new (getASTContext()) ExtInfo; 1479 // Restore savedTInfo into (extended) decl info. 1480 getExtInfo()->TInfo = savedTInfo; 1481 } 1482 // Set qualifier info. 1483 getExtInfo()->QualifierLoc = QualifierLoc; 1484 } else { 1485 // Here Qualifier == 0, i.e., we are removing the qualifier (if any). 1486 if (hasExtInfo()) { 1487 if (getExtInfo()->NumTemplParamLists == 0) { 1488 // Save type source info pointer. 1489 TypeSourceInfo *savedTInfo = getExtInfo()->TInfo; 1490 // Deallocate the extended decl info. 1491 getASTContext().Deallocate(getExtInfo()); 1492 // Restore savedTInfo into (non-extended) decl info. 1493 DeclInfo = savedTInfo; 1494 } 1495 else 1496 getExtInfo()->QualifierLoc = QualifierLoc; 1497 } 1498 } 1499 } 1500 1501 void 1502 DeclaratorDecl::setTemplateParameterListsInfo(ASTContext &Context, 1503 unsigned NumTPLists, 1504 TemplateParameterList **TPLists) { 1505 assert(NumTPLists > 0); 1506 // Make sure the extended decl info is allocated. 1507 if (!hasExtInfo()) { 1508 // Save (non-extended) type source info pointer. 1509 TypeSourceInfo *savedTInfo = DeclInfo.get<TypeSourceInfo*>(); 1510 // Allocate external info struct. 1511 DeclInfo = new (getASTContext()) ExtInfo; 1512 // Restore savedTInfo into (extended) decl info. 1513 getExtInfo()->TInfo = savedTInfo; 1514 } 1515 // Set the template parameter lists info. 1516 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists); 1517 } 1518 1519 SourceLocation DeclaratorDecl::getOuterLocStart() const { 1520 return getTemplateOrInnerLocStart(this); 1521 } 1522 1523 namespace { 1524 1525 // Helper function: returns true if QT is or contains a type 1526 // having a postfix component. 1527 bool typeIsPostfix(clang::QualType QT) { 1528 while (true) { 1529 const Type* T = QT.getTypePtr(); 1530 switch (T->getTypeClass()) { 1531 default: 1532 return false; 1533 case Type::Pointer: 1534 QT = cast<PointerType>(T)->getPointeeType(); 1535 break; 1536 case Type::BlockPointer: 1537 QT = cast<BlockPointerType>(T)->getPointeeType(); 1538 break; 1539 case Type::MemberPointer: 1540 QT = cast<MemberPointerType>(T)->getPointeeType(); 1541 break; 1542 case Type::LValueReference: 1543 case Type::RValueReference: 1544 QT = cast<ReferenceType>(T)->getPointeeType(); 1545 break; 1546 case Type::PackExpansion: 1547 QT = cast<PackExpansionType>(T)->getPattern(); 1548 break; 1549 case Type::Paren: 1550 case Type::ConstantArray: 1551 case Type::DependentSizedArray: 1552 case Type::IncompleteArray: 1553 case Type::VariableArray: 1554 case Type::FunctionProto: 1555 case Type::FunctionNoProto: 1556 return true; 1557 } 1558 } 1559 } 1560 1561 } // namespace 1562 1563 SourceRange DeclaratorDecl::getSourceRange() const { 1564 SourceLocation RangeEnd = getLocation(); 1565 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) { 1566 if (typeIsPostfix(TInfo->getType())) 1567 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd(); 1568 } 1569 return SourceRange(getOuterLocStart(), RangeEnd); 1570 } 1571 1572 void 1573 QualifierInfo::setTemplateParameterListsInfo(ASTContext &Context, 1574 unsigned NumTPLists, 1575 TemplateParameterList **TPLists) { 1576 assert((NumTPLists == 0 || TPLists != 0) && 1577 "Empty array of template parameters with positive size!"); 1578 1579 // Free previous template parameters (if any). 1580 if (NumTemplParamLists > 0) { 1581 Context.Deallocate(TemplParamLists); 1582 TemplParamLists = 0; 1583 NumTemplParamLists = 0; 1584 } 1585 // Set info on matched template parameter lists (if any). 1586 if (NumTPLists > 0) { 1587 TemplParamLists = new (Context) TemplateParameterList*[NumTPLists]; 1588 NumTemplParamLists = NumTPLists; 1589 for (unsigned i = NumTPLists; i-- > 0; ) 1590 TemplParamLists[i] = TPLists[i]; 1591 } 1592 } 1593 1594 //===----------------------------------------------------------------------===// 1595 // VarDecl Implementation 1596 //===----------------------------------------------------------------------===// 1597 1598 const char *VarDecl::getStorageClassSpecifierString(StorageClass SC) { 1599 switch (SC) { 1600 case SC_None: break; 1601 case SC_Auto: return "auto"; 1602 case SC_Extern: return "extern"; 1603 case SC_OpenCLWorkGroupLocal: return "<<work-group-local>>"; 1604 case SC_PrivateExtern: return "__private_extern__"; 1605 case SC_Register: return "register"; 1606 case SC_Static: return "static"; 1607 } 1608 1609 llvm_unreachable("Invalid storage class"); 1610 } 1611 1612 VarDecl::VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc, 1613 SourceLocation IdLoc, IdentifierInfo *Id, QualType T, 1614 TypeSourceInfo *TInfo, StorageClass SC) 1615 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() { 1616 assert(sizeof(VarDeclBitfields) <= sizeof(unsigned)); 1617 assert(sizeof(ParmVarDeclBitfields) <= sizeof(unsigned)); 1618 AllBits = 0; 1619 VarDeclBits.SClass = SC; 1620 // Everything else is implicitly initialized to false. 1621 } 1622 1623 VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC, 1624 SourceLocation StartL, SourceLocation IdL, 1625 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, 1626 StorageClass S) { 1627 return new (C) VarDecl(Var, DC, StartL, IdL, Id, T, TInfo, S); 1628 } 1629 1630 VarDecl *VarDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 1631 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(VarDecl)); 1632 return new (Mem) VarDecl(Var, 0, SourceLocation(), SourceLocation(), 0, 1633 QualType(), 0, SC_None); 1634 } 1635 1636 void VarDecl::setStorageClass(StorageClass SC) { 1637 assert(isLegalForVariable(SC)); 1638 VarDeclBits.SClass = SC; 1639 } 1640 1641 SourceRange VarDecl::getSourceRange() const { 1642 if (const Expr *Init = getInit()) { 1643 SourceLocation InitEnd = Init->getLocEnd(); 1644 // If Init is implicit, ignore its source range and fallback on 1645 // DeclaratorDecl::getSourceRange() to handle postfix elements. 1646 if (InitEnd.isValid() && InitEnd != getLocation()) 1647 return SourceRange(getOuterLocStart(), InitEnd); 1648 } 1649 return DeclaratorDecl::getSourceRange(); 1650 } 1651 1652 template<typename T> 1653 static LanguageLinkage getLanguageLinkageTemplate(const T &D) { 1654 // C++ [dcl.link]p1: All function types, function names with external linkage, 1655 // and variable names with external linkage have a language linkage. 1656 if (!D.hasExternalFormalLinkage()) 1657 return NoLanguageLinkage; 1658 1659 // Language linkage is a C++ concept, but saying that everything else in C has 1660 // C language linkage fits the implementation nicely. 1661 ASTContext &Context = D.getASTContext(); 1662 if (!Context.getLangOpts().CPlusPlus) 1663 return CLanguageLinkage; 1664 1665 // C++ [dcl.link]p4: A C language linkage is ignored in determining the 1666 // language linkage of the names of class members and the function type of 1667 // class member functions. 1668 const DeclContext *DC = D.getDeclContext(); 1669 if (DC->isRecord()) 1670 return CXXLanguageLinkage; 1671 1672 // If the first decl is in an extern "C" context, any other redeclaration 1673 // will have C language linkage. If the first one is not in an extern "C" 1674 // context, we would have reported an error for any other decl being in one. 1675 if (isFirstInExternCContext(&D)) 1676 return CLanguageLinkage; 1677 return CXXLanguageLinkage; 1678 } 1679 1680 template<typename T> 1681 static bool isExternCTemplate(const T &D) { 1682 // Since the context is ignored for class members, they can only have C++ 1683 // language linkage or no language linkage. 1684 const DeclContext *DC = D.getDeclContext(); 1685 if (DC->isRecord()) { 1686 assert(D.getASTContext().getLangOpts().CPlusPlus); 1687 return false; 1688 } 1689 1690 return D.getLanguageLinkage() == CLanguageLinkage; 1691 } 1692 1693 LanguageLinkage VarDecl::getLanguageLinkage() const { 1694 return getLanguageLinkageTemplate(*this); 1695 } 1696 1697 bool VarDecl::isExternC() const { 1698 return isExternCTemplate(*this); 1699 } 1700 1701 static bool isLinkageSpecContext(const DeclContext *DC, 1702 LinkageSpecDecl::LanguageIDs ID) { 1703 while (DC->getDeclKind() != Decl::TranslationUnit) { 1704 if (DC->getDeclKind() == Decl::LinkageSpec) 1705 return cast<LinkageSpecDecl>(DC)->getLanguage() == ID; 1706 DC = DC->getParent(); 1707 } 1708 return false; 1709 } 1710 1711 template <typename T> 1712 static bool isInLanguageSpecContext(T *D, LinkageSpecDecl::LanguageIDs ID) { 1713 return isLinkageSpecContext(D->getLexicalDeclContext(), ID); 1714 } 1715 1716 bool VarDecl::isInExternCContext() const { 1717 return isInLanguageSpecContext(this, LinkageSpecDecl::lang_c); 1718 } 1719 1720 bool VarDecl::isInExternCXXContext() const { 1721 return isInLanguageSpecContext(this, LinkageSpecDecl::lang_cxx); 1722 } 1723 1724 VarDecl *VarDecl::getCanonicalDecl() { 1725 return getFirstDeclaration(); 1726 } 1727 1728 VarDecl::DefinitionKind VarDecl::isThisDeclarationADefinition( 1729 ASTContext &C) const 1730 { 1731 // C++ [basic.def]p2: 1732 // A declaration is a definition unless [...] it contains the 'extern' 1733 // specifier or a linkage-specification and neither an initializer [...], 1734 // it declares a static data member in a class declaration [...]. 1735 // C++1y [temp.expl.spec]p15: 1736 // An explicit specialization of a static data member or an explicit 1737 // specialization of a static data member template is a definition if the 1738 // declaration includes an initializer; otherwise, it is a declaration. 1739 // 1740 // FIXME: How do you declare (but not define) a partial specialization of 1741 // a static data member template outside the containing class? 1742 if (isStaticDataMember()) { 1743 if (isOutOfLine() && 1744 (hasInit() || 1745 // If the first declaration is out-of-line, this may be an 1746 // instantiation of an out-of-line partial specialization of a variable 1747 // template for which we have not yet instantiated the initializer. 1748 (getFirstDeclaration()->isOutOfLine() 1749 ? getTemplateSpecializationKind() == TSK_Undeclared 1750 : getTemplateSpecializationKind() != 1751 TSK_ExplicitSpecialization) || 1752 isa<VarTemplatePartialSpecializationDecl>(this))) 1753 return Definition; 1754 else 1755 return DeclarationOnly; 1756 } 1757 // C99 6.7p5: 1758 // A definition of an identifier is a declaration for that identifier that 1759 // [...] causes storage to be reserved for that object. 1760 // Note: that applies for all non-file-scope objects. 1761 // C99 6.9.2p1: 1762 // If the declaration of an identifier for an object has file scope and an 1763 // initializer, the declaration is an external definition for the identifier 1764 if (hasInit()) 1765 return Definition; 1766 1767 // A variable template specialization (other than a static data member 1768 // template or an explicit specialization) is a declaration until we 1769 // instantiate its initializer. 1770 if (isa<VarTemplateSpecializationDecl>(this) && 1771 getTemplateSpecializationKind() != TSK_ExplicitSpecialization) 1772 return DeclarationOnly; 1773 1774 if (hasExternalStorage()) 1775 return DeclarationOnly; 1776 1777 // [dcl.link] p7: 1778 // A declaration directly contained in a linkage-specification is treated 1779 // as if it contains the extern specifier for the purpose of determining 1780 // the linkage of the declared name and whether it is a definition. 1781 if (isSingleLineExternC(*this)) 1782 return DeclarationOnly; 1783 1784 // C99 6.9.2p2: 1785 // A declaration of an object that has file scope without an initializer, 1786 // and without a storage class specifier or the scs 'static', constitutes 1787 // a tentative definition. 1788 // No such thing in C++. 1789 if (!C.getLangOpts().CPlusPlus && isFileVarDecl()) 1790 return TentativeDefinition; 1791 1792 // What's left is (in C, block-scope) declarations without initializers or 1793 // external storage. These are definitions. 1794 return Definition; 1795 } 1796 1797 VarDecl *VarDecl::getActingDefinition() { 1798 DefinitionKind Kind = isThisDeclarationADefinition(); 1799 if (Kind != TentativeDefinition) 1800 return 0; 1801 1802 VarDecl *LastTentative = 0; 1803 VarDecl *First = getFirstDeclaration(); 1804 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end(); 1805 I != E; ++I) { 1806 Kind = (*I)->isThisDeclarationADefinition(); 1807 if (Kind == Definition) 1808 return 0; 1809 else if (Kind == TentativeDefinition) 1810 LastTentative = *I; 1811 } 1812 return LastTentative; 1813 } 1814 1815 VarDecl *VarDecl::getDefinition(ASTContext &C) { 1816 VarDecl *First = getFirstDeclaration(); 1817 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end(); 1818 I != E; ++I) { 1819 if ((*I)->isThisDeclarationADefinition(C) == Definition) 1820 return *I; 1821 } 1822 return 0; 1823 } 1824 1825 VarDecl::DefinitionKind VarDecl::hasDefinition(ASTContext &C) const { 1826 DefinitionKind Kind = DeclarationOnly; 1827 1828 const VarDecl *First = getFirstDeclaration(); 1829 for (redecl_iterator I = First->redecls_begin(), E = First->redecls_end(); 1830 I != E; ++I) { 1831 Kind = std::max(Kind, (*I)->isThisDeclarationADefinition(C)); 1832 if (Kind == Definition) 1833 break; 1834 } 1835 1836 return Kind; 1837 } 1838 1839 const Expr *VarDecl::getAnyInitializer(const VarDecl *&D) const { 1840 redecl_iterator I = redecls_begin(), E = redecls_end(); 1841 while (I != E && !I->getInit()) 1842 ++I; 1843 1844 if (I != E) { 1845 D = *I; 1846 return I->getInit(); 1847 } 1848 return 0; 1849 } 1850 1851 bool VarDecl::isOutOfLine() const { 1852 if (Decl::isOutOfLine()) 1853 return true; 1854 1855 if (!isStaticDataMember()) 1856 return false; 1857 1858 // If this static data member was instantiated from a static data member of 1859 // a class template, check whether that static data member was defined 1860 // out-of-line. 1861 if (VarDecl *VD = getInstantiatedFromStaticDataMember()) 1862 return VD->isOutOfLine(); 1863 1864 return false; 1865 } 1866 1867 VarDecl *VarDecl::getOutOfLineDefinition() { 1868 if (!isStaticDataMember()) 1869 return 0; 1870 1871 for (VarDecl::redecl_iterator RD = redecls_begin(), RDEnd = redecls_end(); 1872 RD != RDEnd; ++RD) { 1873 if (RD->getLexicalDeclContext()->isFileContext()) 1874 return *RD; 1875 } 1876 1877 return 0; 1878 } 1879 1880 void VarDecl::setInit(Expr *I) { 1881 if (EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>()) { 1882 Eval->~EvaluatedStmt(); 1883 getASTContext().Deallocate(Eval); 1884 } 1885 1886 Init = I; 1887 } 1888 1889 bool VarDecl::isUsableInConstantExpressions(ASTContext &C) const { 1890 const LangOptions &Lang = C.getLangOpts(); 1891 1892 if (!Lang.CPlusPlus) 1893 return false; 1894 1895 // In C++11, any variable of reference type can be used in a constant 1896 // expression if it is initialized by a constant expression. 1897 if (Lang.CPlusPlus11 && getType()->isReferenceType()) 1898 return true; 1899 1900 // Only const objects can be used in constant expressions in C++. C++98 does 1901 // not require the variable to be non-volatile, but we consider this to be a 1902 // defect. 1903 if (!getType().isConstQualified() || getType().isVolatileQualified()) 1904 return false; 1905 1906 // In C++, const, non-volatile variables of integral or enumeration types 1907 // can be used in constant expressions. 1908 if (getType()->isIntegralOrEnumerationType()) 1909 return true; 1910 1911 // Additionally, in C++11, non-volatile constexpr variables can be used in 1912 // constant expressions. 1913 return Lang.CPlusPlus11 && isConstexpr(); 1914 } 1915 1916 /// Convert the initializer for this declaration to the elaborated EvaluatedStmt 1917 /// form, which contains extra information on the evaluated value of the 1918 /// initializer. 1919 EvaluatedStmt *VarDecl::ensureEvaluatedStmt() const { 1920 EvaluatedStmt *Eval = Init.dyn_cast<EvaluatedStmt *>(); 1921 if (!Eval) { 1922 Stmt *S = Init.get<Stmt *>(); 1923 // Note: EvaluatedStmt contains an APValue, which usually holds 1924 // resources not allocated from the ASTContext. We need to do some 1925 // work to avoid leaking those, but we do so in VarDecl::evaluateValue 1926 // where we can detect whether there's anything to clean up or not. 1927 Eval = new (getASTContext()) EvaluatedStmt; 1928 Eval->Value = S; 1929 Init = Eval; 1930 } 1931 return Eval; 1932 } 1933 1934 APValue *VarDecl::evaluateValue() const { 1935 SmallVector<PartialDiagnosticAt, 8> Notes; 1936 return evaluateValue(Notes); 1937 } 1938 1939 namespace { 1940 // Destroy an APValue that was allocated in an ASTContext. 1941 void DestroyAPValue(void* UntypedValue) { 1942 static_cast<APValue*>(UntypedValue)->~APValue(); 1943 } 1944 } // namespace 1945 1946 APValue *VarDecl::evaluateValue( 1947 SmallVectorImpl<PartialDiagnosticAt> &Notes) const { 1948 EvaluatedStmt *Eval = ensureEvaluatedStmt(); 1949 1950 // We only produce notes indicating why an initializer is non-constant the 1951 // first time it is evaluated. FIXME: The notes won't always be emitted the 1952 // first time we try evaluation, so might not be produced at all. 1953 if (Eval->WasEvaluated) 1954 return Eval->Evaluated.isUninit() ? 0 : &Eval->Evaluated; 1955 1956 const Expr *Init = cast<Expr>(Eval->Value); 1957 assert(!Init->isValueDependent()); 1958 1959 if (Eval->IsEvaluating) { 1960 // FIXME: Produce a diagnostic for self-initialization. 1961 Eval->CheckedICE = true; 1962 Eval->IsICE = false; 1963 return 0; 1964 } 1965 1966 Eval->IsEvaluating = true; 1967 1968 bool Result = Init->EvaluateAsInitializer(Eval->Evaluated, getASTContext(), 1969 this, Notes); 1970 1971 // Ensure the computed APValue is cleaned up later if evaluation succeeded, 1972 // or that it's empty (so that there's nothing to clean up) if evaluation 1973 // failed. 1974 if (!Result) 1975 Eval->Evaluated = APValue(); 1976 else if (Eval->Evaluated.needsCleanup()) 1977 getASTContext().AddDeallocation(DestroyAPValue, &Eval->Evaluated); 1978 1979 Eval->IsEvaluating = false; 1980 Eval->WasEvaluated = true; 1981 1982 // In C++11, we have determined whether the initializer was a constant 1983 // expression as a side-effect. 1984 if (getASTContext().getLangOpts().CPlusPlus11 && !Eval->CheckedICE) { 1985 Eval->CheckedICE = true; 1986 Eval->IsICE = Result && Notes.empty(); 1987 } 1988 1989 return Result ? &Eval->Evaluated : 0; 1990 } 1991 1992 bool VarDecl::checkInitIsICE() const { 1993 // Initializers of weak variables are never ICEs. 1994 if (isWeak()) 1995 return false; 1996 1997 EvaluatedStmt *Eval = ensureEvaluatedStmt(); 1998 if (Eval->CheckedICE) 1999 // We have already checked whether this subexpression is an 2000 // integral constant expression. 2001 return Eval->IsICE; 2002 2003 const Expr *Init = cast<Expr>(Eval->Value); 2004 assert(!Init->isValueDependent()); 2005 2006 // In C++11, evaluate the initializer to check whether it's a constant 2007 // expression. 2008 if (getASTContext().getLangOpts().CPlusPlus11) { 2009 SmallVector<PartialDiagnosticAt, 8> Notes; 2010 evaluateValue(Notes); 2011 return Eval->IsICE; 2012 } 2013 2014 // It's an ICE whether or not the definition we found is 2015 // out-of-line. See DR 721 and the discussion in Clang PR 2016 // 6206 for details. 2017 2018 if (Eval->CheckingICE) 2019 return false; 2020 Eval->CheckingICE = true; 2021 2022 Eval->IsICE = Init->isIntegerConstantExpr(getASTContext()); 2023 Eval->CheckingICE = false; 2024 Eval->CheckedICE = true; 2025 return Eval->IsICE; 2026 } 2027 2028 VarDecl *VarDecl::getInstantiatedFromStaticDataMember() const { 2029 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) 2030 return cast<VarDecl>(MSI->getInstantiatedFrom()); 2031 2032 return 0; 2033 } 2034 2035 TemplateSpecializationKind VarDecl::getTemplateSpecializationKind() const { 2036 if (const VarTemplateSpecializationDecl *Spec = 2037 dyn_cast<VarTemplateSpecializationDecl>(this)) 2038 return Spec->getSpecializationKind(); 2039 2040 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) 2041 return MSI->getTemplateSpecializationKind(); 2042 2043 return TSK_Undeclared; 2044 } 2045 2046 SourceLocation VarDecl::getPointOfInstantiation() const { 2047 if (const VarTemplateSpecializationDecl *Spec = 2048 dyn_cast<VarTemplateSpecializationDecl>(this)) 2049 return Spec->getPointOfInstantiation(); 2050 2051 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) 2052 return MSI->getPointOfInstantiation(); 2053 2054 return SourceLocation(); 2055 } 2056 2057 VarTemplateDecl *VarDecl::getDescribedVarTemplate() const { 2058 return getASTContext().getTemplateOrSpecializationInfo(this) 2059 .dyn_cast<VarTemplateDecl *>(); 2060 } 2061 2062 void VarDecl::setDescribedVarTemplate(VarTemplateDecl *Template) { 2063 getASTContext().setTemplateOrSpecializationInfo(this, Template); 2064 } 2065 2066 MemberSpecializationInfo *VarDecl::getMemberSpecializationInfo() const { 2067 if (isStaticDataMember()) 2068 // FIXME: Remove ? 2069 // return getASTContext().getInstantiatedFromStaticDataMember(this); 2070 return getASTContext().getTemplateOrSpecializationInfo(this) 2071 .dyn_cast<MemberSpecializationInfo *>(); 2072 return 0; 2073 } 2074 2075 void VarDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK, 2076 SourceLocation PointOfInstantiation) { 2077 assert((isa<VarTemplateSpecializationDecl>(this) || 2078 getMemberSpecializationInfo()) && 2079 "not a variable or static data member template specialization"); 2080 2081 if (VarTemplateSpecializationDecl *Spec = 2082 dyn_cast<VarTemplateSpecializationDecl>(this)) { 2083 Spec->setSpecializationKind(TSK); 2084 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() && 2085 Spec->getPointOfInstantiation().isInvalid()) 2086 Spec->setPointOfInstantiation(PointOfInstantiation); 2087 } 2088 2089 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) { 2090 MSI->setTemplateSpecializationKind(TSK); 2091 if (TSK != TSK_ExplicitSpecialization && PointOfInstantiation.isValid() && 2092 MSI->getPointOfInstantiation().isInvalid()) 2093 MSI->setPointOfInstantiation(PointOfInstantiation); 2094 } 2095 } 2096 2097 void 2098 VarDecl::setInstantiationOfStaticDataMember(VarDecl *VD, 2099 TemplateSpecializationKind TSK) { 2100 assert(getASTContext().getTemplateOrSpecializationInfo(this).isNull() && 2101 "Previous template or instantiation?"); 2102 getASTContext().setInstantiatedFromStaticDataMember(this, VD, TSK); 2103 } 2104 2105 //===----------------------------------------------------------------------===// 2106 // ParmVarDecl Implementation 2107 //===----------------------------------------------------------------------===// 2108 2109 ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC, 2110 SourceLocation StartLoc, 2111 SourceLocation IdLoc, IdentifierInfo *Id, 2112 QualType T, TypeSourceInfo *TInfo, 2113 StorageClass S, Expr *DefArg) { 2114 return new (C) ParmVarDecl(ParmVar, DC, StartLoc, IdLoc, Id, T, TInfo, 2115 S, DefArg); 2116 } 2117 2118 QualType ParmVarDecl::getOriginalType() const { 2119 TypeSourceInfo *TSI = getTypeSourceInfo(); 2120 QualType T = TSI ? TSI->getType() : getType(); 2121 if (const DecayedType *DT = dyn_cast<DecayedType>(T)) 2122 return DT->getOriginalType(); 2123 return T; 2124 } 2125 2126 ParmVarDecl *ParmVarDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 2127 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ParmVarDecl)); 2128 return new (Mem) ParmVarDecl(ParmVar, 0, SourceLocation(), SourceLocation(), 2129 0, QualType(), 0, SC_None, 0); 2130 } 2131 2132 SourceRange ParmVarDecl::getSourceRange() const { 2133 if (!hasInheritedDefaultArg()) { 2134 SourceRange ArgRange = getDefaultArgRange(); 2135 if (ArgRange.isValid()) 2136 return SourceRange(getOuterLocStart(), ArgRange.getEnd()); 2137 } 2138 2139 // DeclaratorDecl considers the range of postfix types as overlapping with the 2140 // declaration name, but this is not the case with parameters in ObjC methods. 2141 if (isa<ObjCMethodDecl>(getDeclContext())) 2142 return SourceRange(DeclaratorDecl::getLocStart(), getLocation()); 2143 2144 return DeclaratorDecl::getSourceRange(); 2145 } 2146 2147 Expr *ParmVarDecl::getDefaultArg() { 2148 assert(!hasUnparsedDefaultArg() && "Default argument is not yet parsed!"); 2149 assert(!hasUninstantiatedDefaultArg() && 2150 "Default argument is not yet instantiated!"); 2151 2152 Expr *Arg = getInit(); 2153 if (ExprWithCleanups *E = dyn_cast_or_null<ExprWithCleanups>(Arg)) 2154 return E->getSubExpr(); 2155 2156 return Arg; 2157 } 2158 2159 SourceRange ParmVarDecl::getDefaultArgRange() const { 2160 if (const Expr *E = getInit()) 2161 return E->getSourceRange(); 2162 2163 if (hasUninstantiatedDefaultArg()) 2164 return getUninstantiatedDefaultArg()->getSourceRange(); 2165 2166 return SourceRange(); 2167 } 2168 2169 bool ParmVarDecl::isParameterPack() const { 2170 return isa<PackExpansionType>(getType()); 2171 } 2172 2173 void ParmVarDecl::setParameterIndexLarge(unsigned parameterIndex) { 2174 getASTContext().setParameterIndex(this, parameterIndex); 2175 ParmVarDeclBits.ParameterIndex = ParameterIndexSentinel; 2176 } 2177 2178 unsigned ParmVarDecl::getParameterIndexLarge() const { 2179 return getASTContext().getParameterIndex(this); 2180 } 2181 2182 //===----------------------------------------------------------------------===// 2183 // FunctionDecl Implementation 2184 //===----------------------------------------------------------------------===// 2185 2186 void FunctionDecl::getNameForDiagnostic( 2187 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const { 2188 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified); 2189 const TemplateArgumentList *TemplateArgs = getTemplateSpecializationArgs(); 2190 if (TemplateArgs) 2191 TemplateSpecializationType::PrintTemplateArgumentList( 2192 OS, TemplateArgs->data(), TemplateArgs->size(), Policy); 2193 } 2194 2195 bool FunctionDecl::isVariadic() const { 2196 if (const FunctionProtoType *FT = getType()->getAs<FunctionProtoType>()) 2197 return FT->isVariadic(); 2198 return false; 2199 } 2200 2201 bool FunctionDecl::hasBody(const FunctionDecl *&Definition) const { 2202 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) { 2203 if (I->Body || I->IsLateTemplateParsed) { 2204 Definition = *I; 2205 return true; 2206 } 2207 } 2208 2209 return false; 2210 } 2211 2212 bool FunctionDecl::hasTrivialBody() const 2213 { 2214 Stmt *S = getBody(); 2215 if (!S) { 2216 // Since we don't have a body for this function, we don't know if it's 2217 // trivial or not. 2218 return false; 2219 } 2220 2221 if (isa<CompoundStmt>(S) && cast<CompoundStmt>(S)->body_empty()) 2222 return true; 2223 return false; 2224 } 2225 2226 bool FunctionDecl::isDefined(const FunctionDecl *&Definition) const { 2227 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) { 2228 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed) { 2229 Definition = I->IsDeleted ? I->getCanonicalDecl() : *I; 2230 return true; 2231 } 2232 } 2233 2234 return false; 2235 } 2236 2237 Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const { 2238 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) { 2239 if (I->Body) { 2240 Definition = *I; 2241 return I->Body.get(getASTContext().getExternalSource()); 2242 } else if (I->IsLateTemplateParsed) { 2243 Definition = *I; 2244 return 0; 2245 } 2246 } 2247 2248 return 0; 2249 } 2250 2251 void FunctionDecl::setBody(Stmt *B) { 2252 Body = B; 2253 if (B) 2254 EndRangeLoc = B->getLocEnd(); 2255 } 2256 2257 void FunctionDecl::setPure(bool P) { 2258 IsPure = P; 2259 if (P) 2260 if (CXXRecordDecl *Parent = dyn_cast<CXXRecordDecl>(getDeclContext())) 2261 Parent->markedVirtualFunctionPure(); 2262 } 2263 2264 template<std::size_t Len> 2265 static bool isNamed(const NamedDecl *ND, const char (&Str)[Len]) { 2266 IdentifierInfo *II = ND->getIdentifier(); 2267 return II && II->isStr(Str); 2268 } 2269 2270 bool FunctionDecl::isMain() const { 2271 const TranslationUnitDecl *tunit = 2272 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext()); 2273 return tunit && 2274 !tunit->getASTContext().getLangOpts().Freestanding && 2275 isNamed(this, "main"); 2276 } 2277 2278 bool FunctionDecl::isMSVCRTEntryPoint() const { 2279 const TranslationUnitDecl *TUnit = 2280 dyn_cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext()); 2281 if (!TUnit) 2282 return false; 2283 2284 // Even though we aren't really targeting MSVCRT if we are freestanding, 2285 // semantic analysis for these functions remains the same. 2286 2287 // MSVCRT entry points only exist on MSVCRT targets. 2288 if (!TUnit->getASTContext().getTargetInfo().getTriple().isOSMSVCRT()) 2289 return false; 2290 2291 // Nameless functions like constructors cannot be entry points. 2292 if (!getIdentifier()) 2293 return false; 2294 2295 return llvm::StringSwitch<bool>(getName()) 2296 .Cases("main", // an ANSI console app 2297 "wmain", // a Unicode console App 2298 "WinMain", // an ANSI GUI app 2299 "wWinMain", // a Unicode GUI app 2300 "DllMain", // a DLL 2301 true) 2302 .Default(false); 2303 } 2304 2305 bool FunctionDecl::isReservedGlobalPlacementOperator() const { 2306 assert(getDeclName().getNameKind() == DeclarationName::CXXOperatorName); 2307 assert(getDeclName().getCXXOverloadedOperator() == OO_New || 2308 getDeclName().getCXXOverloadedOperator() == OO_Delete || 2309 getDeclName().getCXXOverloadedOperator() == OO_Array_New || 2310 getDeclName().getCXXOverloadedOperator() == OO_Array_Delete); 2311 2312 if (isa<CXXRecordDecl>(getDeclContext())) return false; 2313 assert(getDeclContext()->getRedeclContext()->isTranslationUnit()); 2314 2315 const FunctionProtoType *proto = getType()->castAs<FunctionProtoType>(); 2316 if (proto->getNumArgs() != 2 || proto->isVariadic()) return false; 2317 2318 ASTContext &Context = 2319 cast<TranslationUnitDecl>(getDeclContext()->getRedeclContext()) 2320 ->getASTContext(); 2321 2322 // The result type and first argument type are constant across all 2323 // these operators. The second argument must be exactly void*. 2324 return (proto->getArgType(1).getCanonicalType() == Context.VoidPtrTy); 2325 } 2326 2327 static bool isNamespaceStd(const DeclContext *DC) { 2328 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC->getRedeclContext()); 2329 return ND && isNamed(ND, "std") && 2330 ND->getParent()->getRedeclContext()->isTranslationUnit(); 2331 } 2332 2333 bool FunctionDecl::isReplaceableGlobalAllocationFunction() const { 2334 if (getDeclName().getNameKind() != DeclarationName::CXXOperatorName) 2335 return false; 2336 if (getDeclName().getCXXOverloadedOperator() != OO_New && 2337 getDeclName().getCXXOverloadedOperator() != OO_Delete && 2338 getDeclName().getCXXOverloadedOperator() != OO_Array_New && 2339 getDeclName().getCXXOverloadedOperator() != OO_Array_Delete) 2340 return false; 2341 2342 if (isa<CXXRecordDecl>(getDeclContext())) 2343 return false; 2344 assert(getDeclContext()->getRedeclContext()->isTranslationUnit()); 2345 2346 const FunctionProtoType *FPT = getType()->castAs<FunctionProtoType>(); 2347 if (FPT->getNumArgs() > 2 || FPT->isVariadic()) 2348 return false; 2349 2350 // If this is a single-parameter function, it must be a replaceable global 2351 // allocation or deallocation function. 2352 if (FPT->getNumArgs() == 1) 2353 return true; 2354 2355 // Otherwise, we're looking for a second parameter whose type is 2356 // 'const std::nothrow_t &', or, in C++1y, 'std::size_t'. 2357 QualType Ty = FPT->getArgType(1); 2358 ASTContext &Ctx = getASTContext(); 2359 if (Ctx.getLangOpts().SizedDeallocation && Ty == Ctx.getSizeType()) 2360 return true; 2361 if (!Ty->isReferenceType()) 2362 return false; 2363 Ty = Ty->getPointeeType(); 2364 if (Ty.getCVRQualifiers() != Qualifiers::Const) 2365 return false; 2366 // FIXME: Recognise nothrow_t in an inline namespace inside std? 2367 const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl(); 2368 return RD && isNamed(RD, "nothrow_t") && isNamespaceStd(RD->getDeclContext()); 2369 } 2370 2371 LanguageLinkage FunctionDecl::getLanguageLinkage() const { 2372 // Users expect to be able to write 2373 // extern "C" void *__builtin_alloca (size_t); 2374 // so consider builtins as having C language linkage. 2375 if (getBuiltinID()) 2376 return CLanguageLinkage; 2377 2378 return getLanguageLinkageTemplate(*this); 2379 } 2380 2381 bool FunctionDecl::isExternC() const { 2382 return isExternCTemplate(*this); 2383 } 2384 2385 bool FunctionDecl::isInExternCContext() const { 2386 return isInLanguageSpecContext(this, LinkageSpecDecl::lang_c); 2387 } 2388 2389 bool FunctionDecl::isInExternCXXContext() const { 2390 return isInLanguageSpecContext(this, LinkageSpecDecl::lang_cxx); 2391 } 2392 2393 bool FunctionDecl::isGlobal() const { 2394 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(this)) 2395 return Method->isStatic(); 2396 2397 if (getCanonicalDecl()->getStorageClass() == SC_Static) 2398 return false; 2399 2400 for (const DeclContext *DC = getDeclContext(); 2401 DC->isNamespace(); 2402 DC = DC->getParent()) { 2403 if (const NamespaceDecl *Namespace = cast<NamespaceDecl>(DC)) { 2404 if (!Namespace->getDeclName()) 2405 return false; 2406 break; 2407 } 2408 } 2409 2410 return true; 2411 } 2412 2413 bool FunctionDecl::isNoReturn() const { 2414 return hasAttr<NoReturnAttr>() || hasAttr<CXX11NoReturnAttr>() || 2415 hasAttr<C11NoReturnAttr>() || 2416 getType()->getAs<FunctionType>()->getNoReturnAttr(); 2417 } 2418 2419 void 2420 FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) { 2421 redeclarable_base::setPreviousDeclaration(PrevDecl); 2422 2423 if (FunctionTemplateDecl *FunTmpl = getDescribedFunctionTemplate()) { 2424 FunctionTemplateDecl *PrevFunTmpl 2425 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : 0; 2426 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch"); 2427 FunTmpl->setPreviousDeclaration(PrevFunTmpl); 2428 } 2429 2430 if (PrevDecl && PrevDecl->IsInline) 2431 IsInline = true; 2432 } 2433 2434 const FunctionDecl *FunctionDecl::getCanonicalDecl() const { 2435 return getFirstDeclaration(); 2436 } 2437 2438 FunctionDecl *FunctionDecl::getCanonicalDecl() { 2439 return getFirstDeclaration(); 2440 } 2441 2442 /// \brief Returns a value indicating whether this function 2443 /// corresponds to a builtin function. 2444 /// 2445 /// The function corresponds to a built-in function if it is 2446 /// declared at translation scope or within an extern "C" block and 2447 /// its name matches with the name of a builtin. The returned value 2448 /// will be 0 for functions that do not correspond to a builtin, a 2449 /// value of type \c Builtin::ID if in the target-independent range 2450 /// \c [1,Builtin::First), or a target-specific builtin value. 2451 unsigned FunctionDecl::getBuiltinID() const { 2452 if (!getIdentifier()) 2453 return 0; 2454 2455 unsigned BuiltinID = getIdentifier()->getBuiltinID(); 2456 if (!BuiltinID) 2457 return 0; 2458 2459 ASTContext &Context = getASTContext(); 2460 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) 2461 return BuiltinID; 2462 2463 // This function has the name of a known C library 2464 // function. Determine whether it actually refers to the C library 2465 // function or whether it just has the same name. 2466 2467 // If this is a static function, it's not a builtin. 2468 if (getStorageClass() == SC_Static) 2469 return 0; 2470 2471 // If this function is at translation-unit scope and we're not in 2472 // C++, it refers to the C library function. 2473 if (!Context.getLangOpts().CPlusPlus && 2474 getDeclContext()->isTranslationUnit()) 2475 return BuiltinID; 2476 2477 // If the function is in an extern "C" linkage specification and is 2478 // not marked "overloadable", it's the real function. 2479 if (isa<LinkageSpecDecl>(getDeclContext()) && 2480 cast<LinkageSpecDecl>(getDeclContext())->getLanguage() 2481 == LinkageSpecDecl::lang_c && 2482 !getAttr<OverloadableAttr>()) 2483 return BuiltinID; 2484 2485 // Not a builtin 2486 return 0; 2487 } 2488 2489 2490 /// getNumParams - Return the number of parameters this function must have 2491 /// based on its FunctionType. This is the length of the ParamInfo array 2492 /// after it has been created. 2493 unsigned FunctionDecl::getNumParams() const { 2494 const FunctionType *FT = getType()->castAs<FunctionType>(); 2495 if (isa<FunctionNoProtoType>(FT)) 2496 return 0; 2497 return cast<FunctionProtoType>(FT)->getNumArgs(); 2498 2499 } 2500 2501 void FunctionDecl::setParams(ASTContext &C, 2502 ArrayRef<ParmVarDecl *> NewParamInfo) { 2503 assert(ParamInfo == 0 && "Already has param info!"); 2504 assert(NewParamInfo.size() == getNumParams() && "Parameter count mismatch!"); 2505 2506 // Zero params -> null pointer. 2507 if (!NewParamInfo.empty()) { 2508 ParamInfo = new (C) ParmVarDecl*[NewParamInfo.size()]; 2509 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo); 2510 } 2511 } 2512 2513 void FunctionDecl::setDeclsInPrototypeScope(ArrayRef<NamedDecl *> NewDecls) { 2514 assert(DeclsInPrototypeScope.empty() && "Already has prototype decls!"); 2515 2516 if (!NewDecls.empty()) { 2517 NamedDecl **A = new (getASTContext()) NamedDecl*[NewDecls.size()]; 2518 std::copy(NewDecls.begin(), NewDecls.end(), A); 2519 DeclsInPrototypeScope = ArrayRef<NamedDecl *>(A, NewDecls.size()); 2520 } 2521 } 2522 2523 /// getMinRequiredArguments - Returns the minimum number of arguments 2524 /// needed to call this function. This may be fewer than the number of 2525 /// function parameters, if some of the parameters have default 2526 /// arguments (in C++) or the last parameter is a parameter pack. 2527 unsigned FunctionDecl::getMinRequiredArguments() const { 2528 if (!getASTContext().getLangOpts().CPlusPlus) 2529 return getNumParams(); 2530 2531 unsigned NumRequiredArgs = getNumParams(); 2532 2533 // If the last parameter is a parameter pack, we don't need an argument for 2534 // it. 2535 if (NumRequiredArgs > 0 && 2536 getParamDecl(NumRequiredArgs - 1)->isParameterPack()) 2537 --NumRequiredArgs; 2538 2539 // If this parameter has a default argument, we don't need an argument for 2540 // it. 2541 while (NumRequiredArgs > 0 && 2542 getParamDecl(NumRequiredArgs-1)->hasDefaultArg()) 2543 --NumRequiredArgs; 2544 2545 // We might have parameter packs before the end. These can't be deduced, 2546 // but they can still handle multiple arguments. 2547 unsigned ArgIdx = NumRequiredArgs; 2548 while (ArgIdx > 0) { 2549 if (getParamDecl(ArgIdx - 1)->isParameterPack()) 2550 NumRequiredArgs = ArgIdx; 2551 2552 --ArgIdx; 2553 } 2554 2555 return NumRequiredArgs; 2556 } 2557 2558 static bool RedeclForcesDefC99(const FunctionDecl *Redecl) { 2559 // Only consider file-scope declarations in this test. 2560 if (!Redecl->getLexicalDeclContext()->isTranslationUnit()) 2561 return false; 2562 2563 // Only consider explicit declarations; the presence of a builtin for a 2564 // libcall shouldn't affect whether a definition is externally visible. 2565 if (Redecl->isImplicit()) 2566 return false; 2567 2568 if (!Redecl->isInlineSpecified() || Redecl->getStorageClass() == SC_Extern) 2569 return true; // Not an inline definition 2570 2571 return false; 2572 } 2573 2574 /// \brief For a function declaration in C or C++, determine whether this 2575 /// declaration causes the definition to be externally visible. 2576 /// 2577 /// Specifically, this determines if adding the current declaration to the set 2578 /// of redeclarations of the given functions causes 2579 /// isInlineDefinitionExternallyVisible to change from false to true. 2580 bool FunctionDecl::doesDeclarationForceExternallyVisibleDefinition() const { 2581 assert(!doesThisDeclarationHaveABody() && 2582 "Must have a declaration without a body."); 2583 2584 ASTContext &Context = getASTContext(); 2585 2586 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) { 2587 // With GNU inlining, a declaration with 'inline' but not 'extern', forces 2588 // an externally visible definition. 2589 // 2590 // FIXME: What happens if gnu_inline gets added on after the first 2591 // declaration? 2592 if (!isInlineSpecified() || getStorageClass() == SC_Extern) 2593 return false; 2594 2595 const FunctionDecl *Prev = this; 2596 bool FoundBody = false; 2597 while ((Prev = Prev->getPreviousDecl())) { 2598 FoundBody |= Prev->Body.isValid(); 2599 2600 if (Prev->Body) { 2601 // If it's not the case that both 'inline' and 'extern' are 2602 // specified on the definition, then it is always externally visible. 2603 if (!Prev->isInlineSpecified() || 2604 Prev->getStorageClass() != SC_Extern) 2605 return false; 2606 } else if (Prev->isInlineSpecified() && 2607 Prev->getStorageClass() != SC_Extern) { 2608 return false; 2609 } 2610 } 2611 return FoundBody; 2612 } 2613 2614 if (Context.getLangOpts().CPlusPlus) 2615 return false; 2616 2617 // C99 6.7.4p6: 2618 // [...] If all of the file scope declarations for a function in a 2619 // translation unit include the inline function specifier without extern, 2620 // then the definition in that translation unit is an inline definition. 2621 if (isInlineSpecified() && getStorageClass() != SC_Extern) 2622 return false; 2623 const FunctionDecl *Prev = this; 2624 bool FoundBody = false; 2625 while ((Prev = Prev->getPreviousDecl())) { 2626 FoundBody |= Prev->Body.isValid(); 2627 if (RedeclForcesDefC99(Prev)) 2628 return false; 2629 } 2630 return FoundBody; 2631 } 2632 2633 /// \brief For an inline function definition in C, or for a gnu_inline function 2634 /// in C++, determine whether the definition will be externally visible. 2635 /// 2636 /// Inline function definitions are always available for inlining optimizations. 2637 /// However, depending on the language dialect, declaration specifiers, and 2638 /// attributes, the definition of an inline function may or may not be 2639 /// "externally" visible to other translation units in the program. 2640 /// 2641 /// In C99, inline definitions are not externally visible by default. However, 2642 /// if even one of the global-scope declarations is marked "extern inline", the 2643 /// inline definition becomes externally visible (C99 6.7.4p6). 2644 /// 2645 /// In GNU89 mode, or if the gnu_inline attribute is attached to the function 2646 /// definition, we use the GNU semantics for inline, which are nearly the 2647 /// opposite of C99 semantics. In particular, "inline" by itself will create 2648 /// an externally visible symbol, but "extern inline" will not create an 2649 /// externally visible symbol. 2650 bool FunctionDecl::isInlineDefinitionExternallyVisible() const { 2651 assert(doesThisDeclarationHaveABody() && "Must have the function definition"); 2652 assert(isInlined() && "Function must be inline"); 2653 ASTContext &Context = getASTContext(); 2654 2655 if (Context.getLangOpts().GNUInline || hasAttr<GNUInlineAttr>()) { 2656 // Note: If you change the logic here, please change 2657 // doesDeclarationForceExternallyVisibleDefinition as well. 2658 // 2659 // If it's not the case that both 'inline' and 'extern' are 2660 // specified on the definition, then this inline definition is 2661 // externally visible. 2662 if (!(isInlineSpecified() && getStorageClass() == SC_Extern)) 2663 return true; 2664 2665 // If any declaration is 'inline' but not 'extern', then this definition 2666 // is externally visible. 2667 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end(); 2668 Redecl != RedeclEnd; 2669 ++Redecl) { 2670 if (Redecl->isInlineSpecified() && 2671 Redecl->getStorageClass() != SC_Extern) 2672 return true; 2673 } 2674 2675 return false; 2676 } 2677 2678 // The rest of this function is C-only. 2679 assert(!Context.getLangOpts().CPlusPlus && 2680 "should not use C inline rules in C++"); 2681 2682 // C99 6.7.4p6: 2683 // [...] If all of the file scope declarations for a function in a 2684 // translation unit include the inline function specifier without extern, 2685 // then the definition in that translation unit is an inline definition. 2686 for (redecl_iterator Redecl = redecls_begin(), RedeclEnd = redecls_end(); 2687 Redecl != RedeclEnd; 2688 ++Redecl) { 2689 if (RedeclForcesDefC99(*Redecl)) 2690 return true; 2691 } 2692 2693 // C99 6.7.4p6: 2694 // An inline definition does not provide an external definition for the 2695 // function, and does not forbid an external definition in another 2696 // translation unit. 2697 return false; 2698 } 2699 2700 /// getOverloadedOperator - Which C++ overloaded operator this 2701 /// function represents, if any. 2702 OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const { 2703 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName) 2704 return getDeclName().getCXXOverloadedOperator(); 2705 else 2706 return OO_None; 2707 } 2708 2709 /// getLiteralIdentifier - The literal suffix identifier this function 2710 /// represents, if any. 2711 const IdentifierInfo *FunctionDecl::getLiteralIdentifier() const { 2712 if (getDeclName().getNameKind() == DeclarationName::CXXLiteralOperatorName) 2713 return getDeclName().getCXXLiteralIdentifier(); 2714 else 2715 return 0; 2716 } 2717 2718 FunctionDecl::TemplatedKind FunctionDecl::getTemplatedKind() const { 2719 if (TemplateOrSpecialization.isNull()) 2720 return TK_NonTemplate; 2721 if (TemplateOrSpecialization.is<FunctionTemplateDecl *>()) 2722 return TK_FunctionTemplate; 2723 if (TemplateOrSpecialization.is<MemberSpecializationInfo *>()) 2724 return TK_MemberSpecialization; 2725 if (TemplateOrSpecialization.is<FunctionTemplateSpecializationInfo *>()) 2726 return TK_FunctionTemplateSpecialization; 2727 if (TemplateOrSpecialization.is 2728 <DependentFunctionTemplateSpecializationInfo*>()) 2729 return TK_DependentFunctionTemplateSpecialization; 2730 2731 llvm_unreachable("Did we miss a TemplateOrSpecialization type?"); 2732 } 2733 2734 FunctionDecl *FunctionDecl::getInstantiatedFromMemberFunction() const { 2735 if (MemberSpecializationInfo *Info = getMemberSpecializationInfo()) 2736 return cast<FunctionDecl>(Info->getInstantiatedFrom()); 2737 2738 return 0; 2739 } 2740 2741 void 2742 FunctionDecl::setInstantiationOfMemberFunction(ASTContext &C, 2743 FunctionDecl *FD, 2744 TemplateSpecializationKind TSK) { 2745 assert(TemplateOrSpecialization.isNull() && 2746 "Member function is already a specialization"); 2747 MemberSpecializationInfo *Info 2748 = new (C) MemberSpecializationInfo(FD, TSK); 2749 TemplateOrSpecialization = Info; 2750 } 2751 2752 bool FunctionDecl::isImplicitlyInstantiable() const { 2753 // If the function is invalid, it can't be implicitly instantiated. 2754 if (isInvalidDecl()) 2755 return false; 2756 2757 switch (getTemplateSpecializationKind()) { 2758 case TSK_Undeclared: 2759 case TSK_ExplicitInstantiationDefinition: 2760 return false; 2761 2762 case TSK_ImplicitInstantiation: 2763 return true; 2764 2765 // It is possible to instantiate TSK_ExplicitSpecialization kind 2766 // if the FunctionDecl has a class scope specialization pattern. 2767 case TSK_ExplicitSpecialization: 2768 return getClassScopeSpecializationPattern() != 0; 2769 2770 case TSK_ExplicitInstantiationDeclaration: 2771 // Handled below. 2772 break; 2773 } 2774 2775 // Find the actual template from which we will instantiate. 2776 const FunctionDecl *PatternDecl = getTemplateInstantiationPattern(); 2777 bool HasPattern = false; 2778 if (PatternDecl) 2779 HasPattern = PatternDecl->hasBody(PatternDecl); 2780 2781 // C++0x [temp.explicit]p9: 2782 // Except for inline functions, other explicit instantiation declarations 2783 // have the effect of suppressing the implicit instantiation of the entity 2784 // to which they refer. 2785 if (!HasPattern || !PatternDecl) 2786 return true; 2787 2788 return PatternDecl->isInlined(); 2789 } 2790 2791 bool FunctionDecl::isTemplateInstantiation() const { 2792 switch (getTemplateSpecializationKind()) { 2793 case TSK_Undeclared: 2794 case TSK_ExplicitSpecialization: 2795 return false; 2796 case TSK_ImplicitInstantiation: 2797 case TSK_ExplicitInstantiationDeclaration: 2798 case TSK_ExplicitInstantiationDefinition: 2799 return true; 2800 } 2801 llvm_unreachable("All TSK values handled."); 2802 } 2803 2804 FunctionDecl *FunctionDecl::getTemplateInstantiationPattern() const { 2805 // Handle class scope explicit specialization special case. 2806 if (getTemplateSpecializationKind() == TSK_ExplicitSpecialization) 2807 return getClassScopeSpecializationPattern(); 2808 2809 if (FunctionTemplateDecl *Primary = getPrimaryTemplate()) { 2810 while (Primary->getInstantiatedFromMemberTemplate()) { 2811 // If we have hit a point where the user provided a specialization of 2812 // this template, we're done looking. 2813 if (Primary->isMemberSpecialization()) 2814 break; 2815 2816 Primary = Primary->getInstantiatedFromMemberTemplate(); 2817 } 2818 2819 return Primary->getTemplatedDecl(); 2820 } 2821 2822 return getInstantiatedFromMemberFunction(); 2823 } 2824 2825 FunctionTemplateDecl *FunctionDecl::getPrimaryTemplate() const { 2826 if (FunctionTemplateSpecializationInfo *Info 2827 = TemplateOrSpecialization 2828 .dyn_cast<FunctionTemplateSpecializationInfo*>()) { 2829 return Info->Template.getPointer(); 2830 } 2831 return 0; 2832 } 2833 2834 FunctionDecl *FunctionDecl::getClassScopeSpecializationPattern() const { 2835 return getASTContext().getClassScopeSpecializationPattern(this); 2836 } 2837 2838 const TemplateArgumentList * 2839 FunctionDecl::getTemplateSpecializationArgs() const { 2840 if (FunctionTemplateSpecializationInfo *Info 2841 = TemplateOrSpecialization 2842 .dyn_cast<FunctionTemplateSpecializationInfo*>()) { 2843 return Info->TemplateArguments; 2844 } 2845 return 0; 2846 } 2847 2848 const ASTTemplateArgumentListInfo * 2849 FunctionDecl::getTemplateSpecializationArgsAsWritten() const { 2850 if (FunctionTemplateSpecializationInfo *Info 2851 = TemplateOrSpecialization 2852 .dyn_cast<FunctionTemplateSpecializationInfo*>()) { 2853 return Info->TemplateArgumentsAsWritten; 2854 } 2855 return 0; 2856 } 2857 2858 void 2859 FunctionDecl::setFunctionTemplateSpecialization(ASTContext &C, 2860 FunctionTemplateDecl *Template, 2861 const TemplateArgumentList *TemplateArgs, 2862 void *InsertPos, 2863 TemplateSpecializationKind TSK, 2864 const TemplateArgumentListInfo *TemplateArgsAsWritten, 2865 SourceLocation PointOfInstantiation) { 2866 assert(TSK != TSK_Undeclared && 2867 "Must specify the type of function template specialization"); 2868 FunctionTemplateSpecializationInfo *Info 2869 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>(); 2870 if (!Info) 2871 Info = FunctionTemplateSpecializationInfo::Create(C, this, Template, TSK, 2872 TemplateArgs, 2873 TemplateArgsAsWritten, 2874 PointOfInstantiation); 2875 TemplateOrSpecialization = Info; 2876 Template->addSpecialization(Info, InsertPos); 2877 } 2878 2879 void 2880 FunctionDecl::setDependentTemplateSpecialization(ASTContext &Context, 2881 const UnresolvedSetImpl &Templates, 2882 const TemplateArgumentListInfo &TemplateArgs) { 2883 assert(TemplateOrSpecialization.isNull()); 2884 size_t Size = sizeof(DependentFunctionTemplateSpecializationInfo); 2885 Size += Templates.size() * sizeof(FunctionTemplateDecl*); 2886 Size += TemplateArgs.size() * sizeof(TemplateArgumentLoc); 2887 void *Buffer = Context.Allocate(Size); 2888 DependentFunctionTemplateSpecializationInfo *Info = 2889 new (Buffer) DependentFunctionTemplateSpecializationInfo(Templates, 2890 TemplateArgs); 2891 TemplateOrSpecialization = Info; 2892 } 2893 2894 DependentFunctionTemplateSpecializationInfo:: 2895 DependentFunctionTemplateSpecializationInfo(const UnresolvedSetImpl &Ts, 2896 const TemplateArgumentListInfo &TArgs) 2897 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) { 2898 2899 d.NumTemplates = Ts.size(); 2900 d.NumArgs = TArgs.size(); 2901 2902 FunctionTemplateDecl **TsArray = 2903 const_cast<FunctionTemplateDecl**>(getTemplates()); 2904 for (unsigned I = 0, E = Ts.size(); I != E; ++I) 2905 TsArray[I] = cast<FunctionTemplateDecl>(Ts[I]->getUnderlyingDecl()); 2906 2907 TemplateArgumentLoc *ArgsArray = 2908 const_cast<TemplateArgumentLoc*>(getTemplateArgs()); 2909 for (unsigned I = 0, E = TArgs.size(); I != E; ++I) 2910 new (&ArgsArray[I]) TemplateArgumentLoc(TArgs[I]); 2911 } 2912 2913 TemplateSpecializationKind FunctionDecl::getTemplateSpecializationKind() const { 2914 // For a function template specialization, query the specialization 2915 // information object. 2916 FunctionTemplateSpecializationInfo *FTSInfo 2917 = TemplateOrSpecialization.dyn_cast<FunctionTemplateSpecializationInfo*>(); 2918 if (FTSInfo) 2919 return FTSInfo->getTemplateSpecializationKind(); 2920 2921 MemberSpecializationInfo *MSInfo 2922 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>(); 2923 if (MSInfo) 2924 return MSInfo->getTemplateSpecializationKind(); 2925 2926 return TSK_Undeclared; 2927 } 2928 2929 void 2930 FunctionDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK, 2931 SourceLocation PointOfInstantiation) { 2932 if (FunctionTemplateSpecializationInfo *FTSInfo 2933 = TemplateOrSpecialization.dyn_cast< 2934 FunctionTemplateSpecializationInfo*>()) { 2935 FTSInfo->setTemplateSpecializationKind(TSK); 2936 if (TSK != TSK_ExplicitSpecialization && 2937 PointOfInstantiation.isValid() && 2938 FTSInfo->getPointOfInstantiation().isInvalid()) 2939 FTSInfo->setPointOfInstantiation(PointOfInstantiation); 2940 } else if (MemberSpecializationInfo *MSInfo 2941 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) { 2942 MSInfo->setTemplateSpecializationKind(TSK); 2943 if (TSK != TSK_ExplicitSpecialization && 2944 PointOfInstantiation.isValid() && 2945 MSInfo->getPointOfInstantiation().isInvalid()) 2946 MSInfo->setPointOfInstantiation(PointOfInstantiation); 2947 } else 2948 llvm_unreachable("Function cannot have a template specialization kind"); 2949 } 2950 2951 SourceLocation FunctionDecl::getPointOfInstantiation() const { 2952 if (FunctionTemplateSpecializationInfo *FTSInfo 2953 = TemplateOrSpecialization.dyn_cast< 2954 FunctionTemplateSpecializationInfo*>()) 2955 return FTSInfo->getPointOfInstantiation(); 2956 else if (MemberSpecializationInfo *MSInfo 2957 = TemplateOrSpecialization.dyn_cast<MemberSpecializationInfo*>()) 2958 return MSInfo->getPointOfInstantiation(); 2959 2960 return SourceLocation(); 2961 } 2962 2963 bool FunctionDecl::isOutOfLine() const { 2964 if (Decl::isOutOfLine()) 2965 return true; 2966 2967 // If this function was instantiated from a member function of a 2968 // class template, check whether that member function was defined out-of-line. 2969 if (FunctionDecl *FD = getInstantiatedFromMemberFunction()) { 2970 const FunctionDecl *Definition; 2971 if (FD->hasBody(Definition)) 2972 return Definition->isOutOfLine(); 2973 } 2974 2975 // If this function was instantiated from a function template, 2976 // check whether that function template was defined out-of-line. 2977 if (FunctionTemplateDecl *FunTmpl = getPrimaryTemplate()) { 2978 const FunctionDecl *Definition; 2979 if (FunTmpl->getTemplatedDecl()->hasBody(Definition)) 2980 return Definition->isOutOfLine(); 2981 } 2982 2983 return false; 2984 } 2985 2986 SourceRange FunctionDecl::getSourceRange() const { 2987 return SourceRange(getOuterLocStart(), EndRangeLoc); 2988 } 2989 2990 unsigned FunctionDecl::getMemoryFunctionKind() const { 2991 IdentifierInfo *FnInfo = getIdentifier(); 2992 2993 if (!FnInfo) 2994 return 0; 2995 2996 // Builtin handling. 2997 switch (getBuiltinID()) { 2998 case Builtin::BI__builtin_memset: 2999 case Builtin::BI__builtin___memset_chk: 3000 case Builtin::BImemset: 3001 return Builtin::BImemset; 3002 3003 case Builtin::BI__builtin_memcpy: 3004 case Builtin::BI__builtin___memcpy_chk: 3005 case Builtin::BImemcpy: 3006 return Builtin::BImemcpy; 3007 3008 case Builtin::BI__builtin_memmove: 3009 case Builtin::BI__builtin___memmove_chk: 3010 case Builtin::BImemmove: 3011 return Builtin::BImemmove; 3012 3013 case Builtin::BIstrlcpy: 3014 return Builtin::BIstrlcpy; 3015 case Builtin::BIstrlcat: 3016 return Builtin::BIstrlcat; 3017 3018 case Builtin::BI__builtin_memcmp: 3019 case Builtin::BImemcmp: 3020 return Builtin::BImemcmp; 3021 3022 case Builtin::BI__builtin_strncpy: 3023 case Builtin::BI__builtin___strncpy_chk: 3024 case Builtin::BIstrncpy: 3025 return Builtin::BIstrncpy; 3026 3027 case Builtin::BI__builtin_strncmp: 3028 case Builtin::BIstrncmp: 3029 return Builtin::BIstrncmp; 3030 3031 case Builtin::BI__builtin_strncasecmp: 3032 case Builtin::BIstrncasecmp: 3033 return Builtin::BIstrncasecmp; 3034 3035 case Builtin::BI__builtin_strncat: 3036 case Builtin::BI__builtin___strncat_chk: 3037 case Builtin::BIstrncat: 3038 return Builtin::BIstrncat; 3039 3040 case Builtin::BI__builtin_strndup: 3041 case Builtin::BIstrndup: 3042 return Builtin::BIstrndup; 3043 3044 case Builtin::BI__builtin_strlen: 3045 case Builtin::BIstrlen: 3046 return Builtin::BIstrlen; 3047 3048 default: 3049 if (isExternC()) { 3050 if (FnInfo->isStr("memset")) 3051 return Builtin::BImemset; 3052 else if (FnInfo->isStr("memcpy")) 3053 return Builtin::BImemcpy; 3054 else if (FnInfo->isStr("memmove")) 3055 return Builtin::BImemmove; 3056 else if (FnInfo->isStr("memcmp")) 3057 return Builtin::BImemcmp; 3058 else if (FnInfo->isStr("strncpy")) 3059 return Builtin::BIstrncpy; 3060 else if (FnInfo->isStr("strncmp")) 3061 return Builtin::BIstrncmp; 3062 else if (FnInfo->isStr("strncasecmp")) 3063 return Builtin::BIstrncasecmp; 3064 else if (FnInfo->isStr("strncat")) 3065 return Builtin::BIstrncat; 3066 else if (FnInfo->isStr("strndup")) 3067 return Builtin::BIstrndup; 3068 else if (FnInfo->isStr("strlen")) 3069 return Builtin::BIstrlen; 3070 } 3071 break; 3072 } 3073 return 0; 3074 } 3075 3076 //===----------------------------------------------------------------------===// 3077 // FieldDecl Implementation 3078 //===----------------------------------------------------------------------===// 3079 3080 FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC, 3081 SourceLocation StartLoc, SourceLocation IdLoc, 3082 IdentifierInfo *Id, QualType T, 3083 TypeSourceInfo *TInfo, Expr *BW, bool Mutable, 3084 InClassInitStyle InitStyle) { 3085 return new (C) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo, 3086 BW, Mutable, InitStyle); 3087 } 3088 3089 FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3090 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FieldDecl)); 3091 return new (Mem) FieldDecl(Field, 0, SourceLocation(), SourceLocation(), 3092 0, QualType(), 0, 0, false, ICIS_NoInit); 3093 } 3094 3095 bool FieldDecl::isAnonymousStructOrUnion() const { 3096 if (!isImplicit() || getDeclName()) 3097 return false; 3098 3099 if (const RecordType *Record = getType()->getAs<RecordType>()) 3100 return Record->getDecl()->isAnonymousStructOrUnion(); 3101 3102 return false; 3103 } 3104 3105 unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const { 3106 assert(isBitField() && "not a bitfield"); 3107 Expr *BitWidth = InitializerOrBitWidth.getPointer(); 3108 return BitWidth->EvaluateKnownConstInt(Ctx).getZExtValue(); 3109 } 3110 3111 unsigned FieldDecl::getFieldIndex() const { 3112 const FieldDecl *Canonical = getCanonicalDecl(); 3113 if (Canonical != this) 3114 return Canonical->getFieldIndex(); 3115 3116 if (CachedFieldIndex) return CachedFieldIndex - 1; 3117 3118 unsigned Index = 0; 3119 const RecordDecl *RD = getParent(); 3120 3121 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end(); 3122 I != E; ++I, ++Index) 3123 I->getCanonicalDecl()->CachedFieldIndex = Index + 1; 3124 3125 assert(CachedFieldIndex && "failed to find field in parent"); 3126 return CachedFieldIndex - 1; 3127 } 3128 3129 SourceRange FieldDecl::getSourceRange() const { 3130 if (const Expr *E = InitializerOrBitWidth.getPointer()) 3131 return SourceRange(getInnerLocStart(), E->getLocEnd()); 3132 return DeclaratorDecl::getSourceRange(); 3133 } 3134 3135 void FieldDecl::setBitWidth(Expr *Width) { 3136 assert(!InitializerOrBitWidth.getPointer() && !hasInClassInitializer() && 3137 "bit width or initializer already set"); 3138 InitializerOrBitWidth.setPointer(Width); 3139 } 3140 3141 void FieldDecl::setInClassInitializer(Expr *Init) { 3142 assert(!InitializerOrBitWidth.getPointer() && hasInClassInitializer() && 3143 "bit width or initializer already set"); 3144 InitializerOrBitWidth.setPointer(Init); 3145 } 3146 3147 //===----------------------------------------------------------------------===// 3148 // TagDecl Implementation 3149 //===----------------------------------------------------------------------===// 3150 3151 SourceLocation TagDecl::getOuterLocStart() const { 3152 return getTemplateOrInnerLocStart(this); 3153 } 3154 3155 SourceRange TagDecl::getSourceRange() const { 3156 SourceLocation E = RBraceLoc.isValid() ? RBraceLoc : getLocation(); 3157 return SourceRange(getOuterLocStart(), E); 3158 } 3159 3160 TagDecl* TagDecl::getCanonicalDecl() { 3161 return getFirstDeclaration(); 3162 } 3163 3164 void TagDecl::setTypedefNameForAnonDecl(TypedefNameDecl *TDD) { 3165 NamedDeclOrQualifier = TDD; 3166 if (TypeForDecl) 3167 assert(TypeForDecl->isLinkageValid()); 3168 assert(isLinkageValid()); 3169 } 3170 3171 void TagDecl::startDefinition() { 3172 IsBeingDefined = true; 3173 3174 if (CXXRecordDecl *D = dyn_cast<CXXRecordDecl>(this)) { 3175 struct CXXRecordDecl::DefinitionData *Data = 3176 new (getASTContext()) struct CXXRecordDecl::DefinitionData(D); 3177 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) 3178 cast<CXXRecordDecl>(*I)->DefinitionData = Data; 3179 } 3180 } 3181 3182 void TagDecl::completeDefinition() { 3183 assert((!isa<CXXRecordDecl>(this) || 3184 cast<CXXRecordDecl>(this)->hasDefinition()) && 3185 "definition completed but not started"); 3186 3187 IsCompleteDefinition = true; 3188 IsBeingDefined = false; 3189 3190 if (ASTMutationListener *L = getASTMutationListener()) 3191 L->CompletedTagDefinition(this); 3192 } 3193 3194 TagDecl *TagDecl::getDefinition() const { 3195 if (isCompleteDefinition()) 3196 return const_cast<TagDecl *>(this); 3197 3198 // If it's possible for us to have an out-of-date definition, check now. 3199 if (MayHaveOutOfDateDef) { 3200 if (IdentifierInfo *II = getIdentifier()) { 3201 if (II->isOutOfDate()) { 3202 updateOutOfDate(*II); 3203 } 3204 } 3205 } 3206 3207 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(this)) 3208 return CXXRD->getDefinition(); 3209 3210 for (redecl_iterator R = redecls_begin(), REnd = redecls_end(); 3211 R != REnd; ++R) 3212 if (R->isCompleteDefinition()) 3213 return *R; 3214 3215 return 0; 3216 } 3217 3218 void TagDecl::setQualifierInfo(NestedNameSpecifierLoc QualifierLoc) { 3219 if (QualifierLoc) { 3220 // Make sure the extended qualifier info is allocated. 3221 if (!hasExtInfo()) 3222 NamedDeclOrQualifier = new (getASTContext()) ExtInfo; 3223 // Set qualifier info. 3224 getExtInfo()->QualifierLoc = QualifierLoc; 3225 } else { 3226 // Here Qualifier == 0, i.e., we are removing the qualifier (if any). 3227 if (hasExtInfo()) { 3228 if (getExtInfo()->NumTemplParamLists == 0) { 3229 getASTContext().Deallocate(getExtInfo()); 3230 NamedDeclOrQualifier = (TypedefNameDecl*) 0; 3231 } 3232 else 3233 getExtInfo()->QualifierLoc = QualifierLoc; 3234 } 3235 } 3236 } 3237 3238 void TagDecl::setTemplateParameterListsInfo(ASTContext &Context, 3239 unsigned NumTPLists, 3240 TemplateParameterList **TPLists) { 3241 assert(NumTPLists > 0); 3242 // Make sure the extended decl info is allocated. 3243 if (!hasExtInfo()) 3244 // Allocate external info struct. 3245 NamedDeclOrQualifier = new (getASTContext()) ExtInfo; 3246 // Set the template parameter lists info. 3247 getExtInfo()->setTemplateParameterListsInfo(Context, NumTPLists, TPLists); 3248 } 3249 3250 //===----------------------------------------------------------------------===// 3251 // EnumDecl Implementation 3252 //===----------------------------------------------------------------------===// 3253 3254 void EnumDecl::anchor() { } 3255 3256 EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC, 3257 SourceLocation StartLoc, SourceLocation IdLoc, 3258 IdentifierInfo *Id, 3259 EnumDecl *PrevDecl, bool IsScoped, 3260 bool IsScopedUsingClassTag, bool IsFixed) { 3261 EnumDecl *Enum = new (C) EnumDecl(DC, StartLoc, IdLoc, Id, PrevDecl, 3262 IsScoped, IsScopedUsingClassTag, IsFixed); 3263 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules; 3264 C.getTypeDeclType(Enum, PrevDecl); 3265 return Enum; 3266 } 3267 3268 EnumDecl *EnumDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3269 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumDecl)); 3270 EnumDecl *Enum = new (Mem) EnumDecl(0, SourceLocation(), SourceLocation(), 3271 0, 0, false, false, false); 3272 Enum->MayHaveOutOfDateDef = C.getLangOpts().Modules; 3273 return Enum; 3274 } 3275 3276 void EnumDecl::completeDefinition(QualType NewType, 3277 QualType NewPromotionType, 3278 unsigned NumPositiveBits, 3279 unsigned NumNegativeBits) { 3280 assert(!isCompleteDefinition() && "Cannot redefine enums!"); 3281 if (!IntegerType) 3282 IntegerType = NewType.getTypePtr(); 3283 PromotionType = NewPromotionType; 3284 setNumPositiveBits(NumPositiveBits); 3285 setNumNegativeBits(NumNegativeBits); 3286 TagDecl::completeDefinition(); 3287 } 3288 3289 TemplateSpecializationKind EnumDecl::getTemplateSpecializationKind() const { 3290 if (MemberSpecializationInfo *MSI = getMemberSpecializationInfo()) 3291 return MSI->getTemplateSpecializationKind(); 3292 3293 return TSK_Undeclared; 3294 } 3295 3296 void EnumDecl::setTemplateSpecializationKind(TemplateSpecializationKind TSK, 3297 SourceLocation PointOfInstantiation) { 3298 MemberSpecializationInfo *MSI = getMemberSpecializationInfo(); 3299 assert(MSI && "Not an instantiated member enumeration?"); 3300 MSI->setTemplateSpecializationKind(TSK); 3301 if (TSK != TSK_ExplicitSpecialization && 3302 PointOfInstantiation.isValid() && 3303 MSI->getPointOfInstantiation().isInvalid()) 3304 MSI->setPointOfInstantiation(PointOfInstantiation); 3305 } 3306 3307 EnumDecl *EnumDecl::getInstantiatedFromMemberEnum() const { 3308 if (SpecializationInfo) 3309 return cast<EnumDecl>(SpecializationInfo->getInstantiatedFrom()); 3310 3311 return 0; 3312 } 3313 3314 void EnumDecl::setInstantiationOfMemberEnum(ASTContext &C, EnumDecl *ED, 3315 TemplateSpecializationKind TSK) { 3316 assert(!SpecializationInfo && "Member enum is already a specialization"); 3317 SpecializationInfo = new (C) MemberSpecializationInfo(ED, TSK); 3318 } 3319 3320 //===----------------------------------------------------------------------===// 3321 // RecordDecl Implementation 3322 //===----------------------------------------------------------------------===// 3323 3324 RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, 3325 SourceLocation StartLoc, SourceLocation IdLoc, 3326 IdentifierInfo *Id, RecordDecl *PrevDecl) 3327 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) { 3328 HasFlexibleArrayMember = false; 3329 AnonymousStructOrUnion = false; 3330 HasObjectMember = false; 3331 HasVolatileMember = false; 3332 LoadedFieldsFromExternalStorage = false; 3333 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!"); 3334 } 3335 3336 RecordDecl *RecordDecl::Create(const ASTContext &C, TagKind TK, DeclContext *DC, 3337 SourceLocation StartLoc, SourceLocation IdLoc, 3338 IdentifierInfo *Id, RecordDecl* PrevDecl) { 3339 RecordDecl* R = new (C) RecordDecl(Record, TK, DC, StartLoc, IdLoc, Id, 3340 PrevDecl); 3341 R->MayHaveOutOfDateDef = C.getLangOpts().Modules; 3342 3343 C.getTypeDeclType(R, PrevDecl); 3344 return R; 3345 } 3346 3347 RecordDecl *RecordDecl::CreateDeserialized(const ASTContext &C, unsigned ID) { 3348 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(RecordDecl)); 3349 RecordDecl *R = new (Mem) RecordDecl(Record, TTK_Struct, 0, SourceLocation(), 3350 SourceLocation(), 0, 0); 3351 R->MayHaveOutOfDateDef = C.getLangOpts().Modules; 3352 return R; 3353 } 3354 3355 bool RecordDecl::isInjectedClassName() const { 3356 return isImplicit() && getDeclName() && getDeclContext()->isRecord() && 3357 cast<RecordDecl>(getDeclContext())->getDeclName() == getDeclName(); 3358 } 3359 3360 RecordDecl::field_iterator RecordDecl::field_begin() const { 3361 if (hasExternalLexicalStorage() && !LoadedFieldsFromExternalStorage) 3362 LoadFieldsFromExternalStorage(); 3363 3364 return field_iterator(decl_iterator(FirstDecl)); 3365 } 3366 3367 /// completeDefinition - Notes that the definition of this type is now 3368 /// complete. 3369 void RecordDecl::completeDefinition() { 3370 assert(!isCompleteDefinition() && "Cannot redefine record!"); 3371 TagDecl::completeDefinition(); 3372 } 3373 3374 /// isMsStruct - Get whether or not this record uses ms_struct layout. 3375 /// This which can be turned on with an attribute, pragma, or the 3376 /// -mms-bitfields command-line option. 3377 bool RecordDecl::isMsStruct(const ASTContext &C) const { 3378 return hasAttr<MsStructAttr>() || C.getLangOpts().MSBitfields == 1; 3379 } 3380 3381 static bool isFieldOrIndirectField(Decl::Kind K) { 3382 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K); 3383 } 3384 3385 void RecordDecl::LoadFieldsFromExternalStorage() const { 3386 ExternalASTSource *Source = getASTContext().getExternalSource(); 3387 assert(hasExternalLexicalStorage() && Source && "No external storage?"); 3388 3389 // Notify that we have a RecordDecl doing some initialization. 3390 ExternalASTSource::Deserializing TheFields(Source); 3391 3392 SmallVector<Decl*, 64> Decls; 3393 LoadedFieldsFromExternalStorage = true; 3394 switch (Source->FindExternalLexicalDecls(this, isFieldOrIndirectField, 3395 Decls)) { 3396 case ELR_Success: 3397 break; 3398 3399 case ELR_AlreadyLoaded: 3400 case ELR_Failure: 3401 return; 3402 } 3403 3404 #ifndef NDEBUG 3405 // Check that all decls we got were FieldDecls. 3406 for (unsigned i=0, e=Decls.size(); i != e; ++i) 3407 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i])); 3408 #endif 3409 3410 if (Decls.empty()) 3411 return; 3412 3413 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls, 3414 /*FieldsAlreadyLoaded=*/false); 3415 } 3416 3417 //===----------------------------------------------------------------------===// 3418 // BlockDecl Implementation 3419 //===----------------------------------------------------------------------===// 3420 3421 void BlockDecl::setParams(ArrayRef<ParmVarDecl *> NewParamInfo) { 3422 assert(ParamInfo == 0 && "Already has param info!"); 3423 3424 // Zero params -> null pointer. 3425 if (!NewParamInfo.empty()) { 3426 NumParams = NewParamInfo.size(); 3427 ParamInfo = new (getASTContext()) ParmVarDecl*[NewParamInfo.size()]; 3428 std::copy(NewParamInfo.begin(), NewParamInfo.end(), ParamInfo); 3429 } 3430 } 3431 3432 void BlockDecl::setCaptures(ASTContext &Context, 3433 const Capture *begin, 3434 const Capture *end, 3435 bool capturesCXXThis) { 3436 CapturesCXXThis = capturesCXXThis; 3437 3438 if (begin == end) { 3439 NumCaptures = 0; 3440 Captures = 0; 3441 return; 3442 } 3443 3444 NumCaptures = end - begin; 3445 3446 // Avoid new Capture[] because we don't want to provide a default 3447 // constructor. 3448 size_t allocationSize = NumCaptures * sizeof(Capture); 3449 void *buffer = Context.Allocate(allocationSize, /*alignment*/sizeof(void*)); 3450 memcpy(buffer, begin, allocationSize); 3451 Captures = static_cast<Capture*>(buffer); 3452 } 3453 3454 bool BlockDecl::capturesVariable(const VarDecl *variable) const { 3455 for (capture_const_iterator 3456 i = capture_begin(), e = capture_end(); i != e; ++i) 3457 // Only auto vars can be captured, so no redeclaration worries. 3458 if (i->getVariable() == variable) 3459 return true; 3460 3461 return false; 3462 } 3463 3464 SourceRange BlockDecl::getSourceRange() const { 3465 return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation()); 3466 } 3467 3468 //===----------------------------------------------------------------------===// 3469 // Other Decl Allocation/Deallocation Method Implementations 3470 //===----------------------------------------------------------------------===// 3471 3472 void TranslationUnitDecl::anchor() { } 3473 3474 TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) { 3475 return new (C) TranslationUnitDecl(C); 3476 } 3477 3478 void LabelDecl::anchor() { } 3479 3480 LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC, 3481 SourceLocation IdentL, IdentifierInfo *II) { 3482 return new (C) LabelDecl(DC, IdentL, II, 0, IdentL); 3483 } 3484 3485 LabelDecl *LabelDecl::Create(ASTContext &C, DeclContext *DC, 3486 SourceLocation IdentL, IdentifierInfo *II, 3487 SourceLocation GnuLabelL) { 3488 assert(GnuLabelL != IdentL && "Use this only for GNU local labels"); 3489 return new (C) LabelDecl(DC, IdentL, II, 0, GnuLabelL); 3490 } 3491 3492 LabelDecl *LabelDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3493 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LabelDecl)); 3494 return new (Mem) LabelDecl(0, SourceLocation(), 0, 0, SourceLocation()); 3495 } 3496 3497 void ValueDecl::anchor() { } 3498 3499 bool ValueDecl::isWeak() const { 3500 for (attr_iterator I = attr_begin(), E = attr_end(); I != E; ++I) 3501 if (isa<WeakAttr>(*I) || isa<WeakRefAttr>(*I)) 3502 return true; 3503 3504 return isWeakImported(); 3505 } 3506 3507 void ImplicitParamDecl::anchor() { } 3508 3509 ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC, 3510 SourceLocation IdLoc, 3511 IdentifierInfo *Id, 3512 QualType Type) { 3513 return new (C) ImplicitParamDecl(DC, IdLoc, Id, Type); 3514 } 3515 3516 ImplicitParamDecl *ImplicitParamDecl::CreateDeserialized(ASTContext &C, 3517 unsigned ID) { 3518 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ImplicitParamDecl)); 3519 return new (Mem) ImplicitParamDecl(0, SourceLocation(), 0, QualType()); 3520 } 3521 3522 FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC, 3523 SourceLocation StartLoc, 3524 const DeclarationNameInfo &NameInfo, 3525 QualType T, TypeSourceInfo *TInfo, 3526 StorageClass SC, 3527 bool isInlineSpecified, 3528 bool hasWrittenPrototype, 3529 bool isConstexprSpecified) { 3530 FunctionDecl *New = new (C) FunctionDecl(Function, DC, StartLoc, NameInfo, 3531 T, TInfo, SC, 3532 isInlineSpecified, 3533 isConstexprSpecified); 3534 New->HasWrittenPrototype = hasWrittenPrototype; 3535 return New; 3536 } 3537 3538 FunctionDecl *FunctionDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3539 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionDecl)); 3540 return new (Mem) FunctionDecl(Function, 0, SourceLocation(), 3541 DeclarationNameInfo(), QualType(), 0, 3542 SC_None, false, false); 3543 } 3544 3545 BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { 3546 return new (C) BlockDecl(DC, L); 3547 } 3548 3549 BlockDecl *BlockDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3550 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(BlockDecl)); 3551 return new (Mem) BlockDecl(0, SourceLocation()); 3552 } 3553 3554 MSPropertyDecl *MSPropertyDecl::CreateDeserialized(ASTContext &C, 3555 unsigned ID) { 3556 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(MSPropertyDecl)); 3557 return new (Mem) MSPropertyDecl(0, SourceLocation(), DeclarationName(), 3558 QualType(), 0, SourceLocation(), 3559 0, 0); 3560 } 3561 3562 CapturedDecl *CapturedDecl::Create(ASTContext &C, DeclContext *DC, 3563 unsigned NumParams) { 3564 unsigned Size = sizeof(CapturedDecl) + NumParams * sizeof(ImplicitParamDecl*); 3565 return new (C.Allocate(Size)) CapturedDecl(DC, NumParams); 3566 } 3567 3568 CapturedDecl *CapturedDecl::CreateDeserialized(ASTContext &C, unsigned ID, 3569 unsigned NumParams) { 3570 unsigned Size = sizeof(CapturedDecl) + NumParams * sizeof(ImplicitParamDecl*); 3571 void *Mem = AllocateDeserializedDecl(C, ID, Size); 3572 return new (Mem) CapturedDecl(0, NumParams); 3573 } 3574 3575 EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD, 3576 SourceLocation L, 3577 IdentifierInfo *Id, QualType T, 3578 Expr *E, const llvm::APSInt &V) { 3579 return new (C) EnumConstantDecl(CD, L, Id, T, E, V); 3580 } 3581 3582 EnumConstantDecl * 3583 EnumConstantDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3584 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumConstantDecl)); 3585 return new (Mem) EnumConstantDecl(0, SourceLocation(), 0, QualType(), 0, 3586 llvm::APSInt()); 3587 } 3588 3589 void IndirectFieldDecl::anchor() { } 3590 3591 IndirectFieldDecl * 3592 IndirectFieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, 3593 IdentifierInfo *Id, QualType T, NamedDecl **CH, 3594 unsigned CHS) { 3595 return new (C) IndirectFieldDecl(DC, L, Id, T, CH, CHS); 3596 } 3597 3598 IndirectFieldDecl *IndirectFieldDecl::CreateDeserialized(ASTContext &C, 3599 unsigned ID) { 3600 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(IndirectFieldDecl)); 3601 return new (Mem) IndirectFieldDecl(0, SourceLocation(), DeclarationName(), 3602 QualType(), 0, 0); 3603 } 3604 3605 SourceRange EnumConstantDecl::getSourceRange() const { 3606 SourceLocation End = getLocation(); 3607 if (Init) 3608 End = Init->getLocEnd(); 3609 return SourceRange(getLocation(), End); 3610 } 3611 3612 void TypeDecl::anchor() { } 3613 3614 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, 3615 SourceLocation StartLoc, SourceLocation IdLoc, 3616 IdentifierInfo *Id, TypeSourceInfo *TInfo) { 3617 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo); 3618 } 3619 3620 void TypedefNameDecl::anchor() { } 3621 3622 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3623 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl)); 3624 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0); 3625 } 3626 3627 TypeAliasDecl *TypeAliasDecl::Create(ASTContext &C, DeclContext *DC, 3628 SourceLocation StartLoc, 3629 SourceLocation IdLoc, IdentifierInfo *Id, 3630 TypeSourceInfo *TInfo) { 3631 return new (C) TypeAliasDecl(DC, StartLoc, IdLoc, Id, TInfo); 3632 } 3633 3634 TypeAliasDecl *TypeAliasDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3635 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypeAliasDecl)); 3636 return new (Mem) TypeAliasDecl(0, SourceLocation(), SourceLocation(), 0, 0); 3637 } 3638 3639 SourceRange TypedefDecl::getSourceRange() const { 3640 SourceLocation RangeEnd = getLocation(); 3641 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) { 3642 if (typeIsPostfix(TInfo->getType())) 3643 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd(); 3644 } 3645 return SourceRange(getLocStart(), RangeEnd); 3646 } 3647 3648 SourceRange TypeAliasDecl::getSourceRange() const { 3649 SourceLocation RangeEnd = getLocStart(); 3650 if (TypeSourceInfo *TInfo = getTypeSourceInfo()) 3651 RangeEnd = TInfo->getTypeLoc().getSourceRange().getEnd(); 3652 return SourceRange(getLocStart(), RangeEnd); 3653 } 3654 3655 void FileScopeAsmDecl::anchor() { } 3656 3657 FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, DeclContext *DC, 3658 StringLiteral *Str, 3659 SourceLocation AsmLoc, 3660 SourceLocation RParenLoc) { 3661 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); 3662 } 3663 3664 FileScopeAsmDecl *FileScopeAsmDecl::CreateDeserialized(ASTContext &C, 3665 unsigned ID) { 3666 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FileScopeAsmDecl)); 3667 return new (Mem) FileScopeAsmDecl(0, 0, SourceLocation(), SourceLocation()); 3668 } 3669 3670 void EmptyDecl::anchor() {} 3671 3672 EmptyDecl *EmptyDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { 3673 return new (C) EmptyDecl(DC, L); 3674 } 3675 3676 EmptyDecl *EmptyDecl::CreateDeserialized(ASTContext &C, unsigned ID) { 3677 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EmptyDecl)); 3678 return new (Mem) EmptyDecl(0, SourceLocation()); 3679 } 3680 3681 //===----------------------------------------------------------------------===// 3682 // ImportDecl Implementation 3683 //===----------------------------------------------------------------------===// 3684 3685 /// \brief Retrieve the number of module identifiers needed to name the given 3686 /// module. 3687 static unsigned getNumModuleIdentifiers(Module *Mod) { 3688 unsigned Result = 1; 3689 while (Mod->Parent) { 3690 Mod = Mod->Parent; 3691 ++Result; 3692 } 3693 return Result; 3694 } 3695 3696 ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc, 3697 Module *Imported, 3698 ArrayRef<SourceLocation> IdentifierLocs) 3699 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, true), 3700 NextLocalImport() 3701 { 3702 assert(getNumModuleIdentifiers(Imported) == IdentifierLocs.size()); 3703 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(this + 1); 3704 memcpy(StoredLocs, IdentifierLocs.data(), 3705 IdentifierLocs.size() * sizeof(SourceLocation)); 3706 } 3707 3708 ImportDecl::ImportDecl(DeclContext *DC, SourceLocation StartLoc, 3709 Module *Imported, SourceLocation EndLoc) 3710 : Decl(Import, DC, StartLoc), ImportedAndComplete(Imported, false), 3711 NextLocalImport() 3712 { 3713 *reinterpret_cast<SourceLocation *>(this + 1) = EndLoc; 3714 } 3715 3716 ImportDecl *ImportDecl::Create(ASTContext &C, DeclContext *DC, 3717 SourceLocation StartLoc, Module *Imported, 3718 ArrayRef<SourceLocation> IdentifierLocs) { 3719 void *Mem = C.Allocate(sizeof(ImportDecl) + 3720 IdentifierLocs.size() * sizeof(SourceLocation)); 3721 return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs); 3722 } 3723 3724 ImportDecl *ImportDecl::CreateImplicit(ASTContext &C, DeclContext *DC, 3725 SourceLocation StartLoc, 3726 Module *Imported, 3727 SourceLocation EndLoc) { 3728 void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation)); 3729 ImportDecl *Import = new (Mem) ImportDecl(DC, StartLoc, Imported, EndLoc); 3730 Import->setImplicit(); 3731 return Import; 3732 } 3733 3734 ImportDecl *ImportDecl::CreateDeserialized(ASTContext &C, unsigned ID, 3735 unsigned NumLocations) { 3736 void *Mem = AllocateDeserializedDecl(C, ID, 3737 (sizeof(ImportDecl) + 3738 NumLocations * sizeof(SourceLocation))); 3739 return new (Mem) ImportDecl(EmptyShell()); 3740 } 3741 3742 ArrayRef<SourceLocation> ImportDecl::getIdentifierLocs() const { 3743 if (!ImportedAndComplete.getInt()) 3744 return None; 3745 3746 const SourceLocation *StoredLocs 3747 = reinterpret_cast<const SourceLocation *>(this + 1); 3748 return ArrayRef<SourceLocation>(StoredLocs, 3749 getNumModuleIdentifiers(getImportedModule())); 3750 } 3751 3752 SourceRange ImportDecl::getSourceRange() const { 3753 if (!ImportedAndComplete.getInt()) 3754 return SourceRange(getLocation(), 3755 *reinterpret_cast<const SourceLocation *>(this + 1)); 3756 3757 return SourceRange(getLocation(), getIdentifierLocs().back()); 3758 } 3759