1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
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 semantic analysis for declarations.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Sema/SemaInternal.h"
15 #include "TypeLocBuilder.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/ASTLambda.h"
19 #include "clang/AST/CXXInheritance.h"
20 #include "clang/AST/CharUnits.h"
21 #include "clang/AST/CommentDiagnostic.h"
22 #include "clang/AST/DeclCXX.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/AST/DeclTemplate.h"
25 #include "clang/AST/EvaluatedExprVisitor.h"
26 #include "clang/AST/ExprCXX.h"
27 #include "clang/AST/StmtCXX.h"
28 #include "clang/Basic/Builtins.h"
29 #include "clang/Basic/PartialDiagnostic.h"
30 #include "clang/Basic/SourceManager.h"
31 #include "clang/Basic/TargetInfo.h"
32 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
33 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
34 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
35 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
36 #include "clang/Sema/CXXFieldCollector.h"
37 #include "clang/Sema/DeclSpec.h"
38 #include "clang/Sema/DelayedDiagnostic.h"
39 #include "clang/Sema/Initialization.h"
40 #include "clang/Sema/Lookup.h"
41 #include "clang/Sema/ParsedTemplate.h"
42 #include "clang/Sema/Scope.h"
43 #include "clang/Sema/ScopeInfo.h"
44 #include "clang/Sema/Template.h"
45 #include "llvm/ADT/SmallString.h"
46 #include "llvm/ADT/Triple.h"
47 #include <algorithm>
48 #include <cstring>
49 #include <functional>
50 
51 using namespace clang;
52 using namespace sema;
53 
54 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) {
55   if (OwnedType) {
56     Decl *Group[2] = { OwnedType, Ptr };
57     return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
58   }
59 
60   return DeclGroupPtrTy::make(DeclGroupRef(Ptr));
61 }
62 
63 namespace {
64 
65 class TypeNameValidatorCCC : public CorrectionCandidateCallback {
66  public:
67   TypeNameValidatorCCC(bool AllowInvalid, bool WantClass=false,
68                        bool AllowTemplates=false)
69       : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
70         AllowClassTemplates(AllowTemplates) {
71     WantExpressionKeywords = false;
72     WantCXXNamedCasts = false;
73     WantRemainingKeywords = false;
74   }
75 
76   bool ValidateCandidate(const TypoCorrection &candidate) override {
77     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
78       bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
79       bool AllowedTemplate = AllowClassTemplates && isa<ClassTemplateDecl>(ND);
80       return (IsType || AllowedTemplate) &&
81              (AllowInvalidDecl || !ND->isInvalidDecl());
82     }
83     return !WantClassName && candidate.isKeyword();
84   }
85 
86  private:
87   bool AllowInvalidDecl;
88   bool WantClassName;
89   bool AllowClassTemplates;
90 };
91 
92 } // end anonymous namespace
93 
94 /// \brief Determine whether the token kind starts a simple-type-specifier.
95 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
96   switch (Kind) {
97   // FIXME: Take into account the current language when deciding whether a
98   // token kind is a valid type specifier
99   case tok::kw_short:
100   case tok::kw_long:
101   case tok::kw___int64:
102   case tok::kw___int128:
103   case tok::kw_signed:
104   case tok::kw_unsigned:
105   case tok::kw_void:
106   case tok::kw_char:
107   case tok::kw_int:
108   case tok::kw_half:
109   case tok::kw_float:
110   case tok::kw_double:
111   case tok::kw_wchar_t:
112   case tok::kw_bool:
113   case tok::kw___underlying_type:
114   case tok::kw___auto_type:
115     return true;
116 
117   case tok::annot_typename:
118   case tok::kw_char16_t:
119   case tok::kw_char32_t:
120   case tok::kw_typeof:
121   case tok::annot_decltype:
122   case tok::kw_decltype:
123     return getLangOpts().CPlusPlus;
124 
125   default:
126     break;
127   }
128 
129   return false;
130 }
131 
132 namespace {
133 enum class UnqualifiedTypeNameLookupResult {
134   NotFound,
135   FoundNonType,
136   FoundType
137 };
138 } // end anonymous namespace
139 
140 /// \brief Tries to perform unqualified lookup of the type decls in bases for
141 /// dependent class.
142 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
143 /// type decl, \a FoundType if only type decls are found.
144 static UnqualifiedTypeNameLookupResult
145 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II,
146                                 SourceLocation NameLoc,
147                                 const CXXRecordDecl *RD) {
148   if (!RD->hasDefinition())
149     return UnqualifiedTypeNameLookupResult::NotFound;
150   // Look for type decls in base classes.
151   UnqualifiedTypeNameLookupResult FoundTypeDecl =
152       UnqualifiedTypeNameLookupResult::NotFound;
153   for (const auto &Base : RD->bases()) {
154     const CXXRecordDecl *BaseRD = nullptr;
155     if (auto *BaseTT = Base.getType()->getAs<TagType>())
156       BaseRD = BaseTT->getAsCXXRecordDecl();
157     else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
158       // Look for type decls in dependent base classes that have known primary
159       // templates.
160       if (!TST || !TST->isDependentType())
161         continue;
162       auto *TD = TST->getTemplateName().getAsTemplateDecl();
163       if (!TD)
164         continue;
165       auto *BasePrimaryTemplate =
166           dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl());
167       if (!BasePrimaryTemplate)
168         continue;
169       BaseRD = BasePrimaryTemplate;
170     }
171     if (BaseRD) {
172       for (NamedDecl *ND : BaseRD->lookup(&II)) {
173         if (!isa<TypeDecl>(ND))
174           return UnqualifiedTypeNameLookupResult::FoundNonType;
175         FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
176       }
177       if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) {
178         switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
179         case UnqualifiedTypeNameLookupResult::FoundNonType:
180           return UnqualifiedTypeNameLookupResult::FoundNonType;
181         case UnqualifiedTypeNameLookupResult::FoundType:
182           FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
183           break;
184         case UnqualifiedTypeNameLookupResult::NotFound:
185           break;
186         }
187       }
188     }
189   }
190 
191   return FoundTypeDecl;
192 }
193 
194 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S,
195                                                       const IdentifierInfo &II,
196                                                       SourceLocation NameLoc) {
197   // Lookup in the parent class template context, if any.
198   const CXXRecordDecl *RD = nullptr;
199   UnqualifiedTypeNameLookupResult FoundTypeDecl =
200       UnqualifiedTypeNameLookupResult::NotFound;
201   for (DeclContext *DC = S.CurContext;
202        DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound;
203        DC = DC->getParent()) {
204     // Look for type decls in dependent base classes that have known primary
205     // templates.
206     RD = dyn_cast<CXXRecordDecl>(DC);
207     if (RD && RD->getDescribedClassTemplate())
208       FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
209   }
210   if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType)
211     return nullptr;
212 
213   // We found some types in dependent base classes.  Recover as if the user
214   // wrote 'typename MyClass::II' instead of 'II'.  We'll fully resolve the
215   // lookup during template instantiation.
216   S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
217 
218   ASTContext &Context = S.Context;
219   auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false,
220                                           cast<Type>(Context.getRecordType(RD)));
221   QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
222 
223   CXXScopeSpec SS;
224   SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
225 
226   TypeLocBuilder Builder;
227   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
228   DepTL.setNameLoc(NameLoc);
229   DepTL.setElaboratedKeywordLoc(SourceLocation());
230   DepTL.setQualifierLoc(SS.getWithLocInContext(Context));
231   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
232 }
233 
234 /// \brief If the identifier refers to a type name within this scope,
235 /// return the declaration of that type.
236 ///
237 /// This routine performs ordinary name lookup of the identifier II
238 /// within the given scope, with optional C++ scope specifier SS, to
239 /// determine whether the name refers to a type. If so, returns an
240 /// opaque pointer (actually a QualType) corresponding to that
241 /// type. Otherwise, returns NULL.
242 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
243                              Scope *S, CXXScopeSpec *SS,
244                              bool isClassName, bool HasTrailingDot,
245                              ParsedType ObjectTypePtr,
246                              bool IsCtorOrDtorName,
247                              bool WantNontrivialTypeSourceInfo,
248                              IdentifierInfo **CorrectedII) {
249   // Determine where we will perform name lookup.
250   DeclContext *LookupCtx = nullptr;
251   if (ObjectTypePtr) {
252     QualType ObjectType = ObjectTypePtr.get();
253     if (ObjectType->isRecordType())
254       LookupCtx = computeDeclContext(ObjectType);
255   } else if (SS && SS->isNotEmpty()) {
256     LookupCtx = computeDeclContext(*SS, false);
257 
258     if (!LookupCtx) {
259       if (isDependentScopeSpecifier(*SS)) {
260         // C++ [temp.res]p3:
261         //   A qualified-id that refers to a type and in which the
262         //   nested-name-specifier depends on a template-parameter (14.6.2)
263         //   shall be prefixed by the keyword typename to indicate that the
264         //   qualified-id denotes a type, forming an
265         //   elaborated-type-specifier (7.1.5.3).
266         //
267         // We therefore do not perform any name lookup if the result would
268         // refer to a member of an unknown specialization.
269         if (!isClassName && !IsCtorOrDtorName)
270           return nullptr;
271 
272         // We know from the grammar that this name refers to a type,
273         // so build a dependent node to describe the type.
274         if (WantNontrivialTypeSourceInfo)
275           return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
276 
277         NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
278         QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
279                                        II, NameLoc);
280         return ParsedType::make(T);
281       }
282 
283       return nullptr;
284     }
285 
286     if (!LookupCtx->isDependentContext() &&
287         RequireCompleteDeclContext(*SS, LookupCtx))
288       return nullptr;
289   }
290 
291   // FIXME: LookupNestedNameSpecifierName isn't the right kind of
292   // lookup for class-names.
293   LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
294                                       LookupOrdinaryName;
295   LookupResult Result(*this, &II, NameLoc, Kind);
296   if (LookupCtx) {
297     // Perform "qualified" name lookup into the declaration context we
298     // computed, which is either the type of the base of a member access
299     // expression or the declaration context associated with a prior
300     // nested-name-specifier.
301     LookupQualifiedName(Result, LookupCtx);
302 
303     if (ObjectTypePtr && Result.empty()) {
304       // C++ [basic.lookup.classref]p3:
305       //   If the unqualified-id is ~type-name, the type-name is looked up
306       //   in the context of the entire postfix-expression. If the type T of
307       //   the object expression is of a class type C, the type-name is also
308       //   looked up in the scope of class C. At least one of the lookups shall
309       //   find a name that refers to (possibly cv-qualified) T.
310       LookupName(Result, S);
311     }
312   } else {
313     // Perform unqualified name lookup.
314     LookupName(Result, S);
315 
316     // For unqualified lookup in a class template in MSVC mode, look into
317     // dependent base classes where the primary class template is known.
318     if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) {
319       if (ParsedType TypeInBase =
320               recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
321         return TypeInBase;
322     }
323   }
324 
325   NamedDecl *IIDecl = nullptr;
326   switch (Result.getResultKind()) {
327   case LookupResult::NotFound:
328   case LookupResult::NotFoundInCurrentInstantiation:
329     if (CorrectedII) {
330       TypoCorrection Correction = CorrectTypo(
331           Result.getLookupNameInfo(), Kind, S, SS,
332           llvm::make_unique<TypeNameValidatorCCC>(true, isClassName),
333           CTK_ErrorRecovery);
334       IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
335       TemplateTy Template;
336       bool MemberOfUnknownSpecialization;
337       UnqualifiedId TemplateName;
338       TemplateName.setIdentifier(NewII, NameLoc);
339       NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
340       CXXScopeSpec NewSS, *NewSSPtr = SS;
341       if (SS && NNS) {
342         NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
343         NewSSPtr = &NewSS;
344       }
345       if (Correction && (NNS || NewII != &II) &&
346           // Ignore a correction to a template type as the to-be-corrected
347           // identifier is not a template (typo correction for template names
348           // is handled elsewhere).
349           !(getLangOpts().CPlusPlus && NewSSPtr &&
350             isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false,
351                            Template, MemberOfUnknownSpecialization))) {
352         ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
353                                     isClassName, HasTrailingDot, ObjectTypePtr,
354                                     IsCtorOrDtorName,
355                                     WantNontrivialTypeSourceInfo);
356         if (Ty) {
357           diagnoseTypo(Correction,
358                        PDiag(diag::err_unknown_type_or_class_name_suggest)
359                          << Result.getLookupName() << isClassName);
360           if (SS && NNS)
361             SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
362           *CorrectedII = NewII;
363           return Ty;
364         }
365       }
366     }
367     // If typo correction failed or was not performed, fall through
368   case LookupResult::FoundOverloaded:
369   case LookupResult::FoundUnresolvedValue:
370     Result.suppressDiagnostics();
371     return nullptr;
372 
373   case LookupResult::Ambiguous:
374     // Recover from type-hiding ambiguities by hiding the type.  We'll
375     // do the lookup again when looking for an object, and we can
376     // diagnose the error then.  If we don't do this, then the error
377     // about hiding the type will be immediately followed by an error
378     // that only makes sense if the identifier was treated like a type.
379     if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
380       Result.suppressDiagnostics();
381       return nullptr;
382     }
383 
384     // Look to see if we have a type anywhere in the list of results.
385     for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
386          Res != ResEnd; ++Res) {
387       if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
388         if (!IIDecl ||
389             (*Res)->getLocation().getRawEncoding() <
390               IIDecl->getLocation().getRawEncoding())
391           IIDecl = *Res;
392       }
393     }
394 
395     if (!IIDecl) {
396       // None of the entities we found is a type, so there is no way
397       // to even assume that the result is a type. In this case, don't
398       // complain about the ambiguity. The parser will either try to
399       // perform this lookup again (e.g., as an object name), which
400       // will produce the ambiguity, or will complain that it expected
401       // a type name.
402       Result.suppressDiagnostics();
403       return nullptr;
404     }
405 
406     // We found a type within the ambiguous lookup; diagnose the
407     // ambiguity and then return that type. This might be the right
408     // answer, or it might not be, but it suppresses any attempt to
409     // perform the name lookup again.
410     break;
411 
412   case LookupResult::Found:
413     IIDecl = Result.getFoundDecl();
414     break;
415   }
416 
417   assert(IIDecl && "Didn't find decl");
418 
419   QualType T;
420   if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
421     DiagnoseUseOfDecl(IIDecl, NameLoc);
422 
423     T = Context.getTypeDeclType(TD);
424     MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
425 
426     // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
427     // constructor or destructor name (in such a case, the scope specifier
428     // will be attached to the enclosing Expr or Decl node).
429     if (SS && SS->isNotEmpty() && !IsCtorOrDtorName) {
430       if (WantNontrivialTypeSourceInfo) {
431         // Construct a type with type-source information.
432         TypeLocBuilder Builder;
433         Builder.pushTypeSpec(T).setNameLoc(NameLoc);
434 
435         T = getElaboratedType(ETK_None, *SS, T);
436         ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
437         ElabTL.setElaboratedKeywordLoc(SourceLocation());
438         ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
439         return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
440       } else {
441         T = getElaboratedType(ETK_None, *SS, T);
442       }
443     }
444   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
445     (void)DiagnoseUseOfDecl(IDecl, NameLoc);
446     if (!HasTrailingDot)
447       T = Context.getObjCInterfaceType(IDecl);
448   }
449 
450   if (T.isNull()) {
451     // If it's not plausibly a type, suppress diagnostics.
452     Result.suppressDiagnostics();
453     return nullptr;
454   }
455   return ParsedType::make(T);
456 }
457 
458 // Builds a fake NNS for the given decl context.
459 static NestedNameSpecifier *
460 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) {
461   for (;; DC = DC->getLookupParent()) {
462     DC = DC->getPrimaryContext();
463     auto *ND = dyn_cast<NamespaceDecl>(DC);
464     if (ND && !ND->isInline() && !ND->isAnonymousNamespace())
465       return NestedNameSpecifier::Create(Context, nullptr, ND);
466     else if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
467       return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
468                                          RD->getTypeForDecl());
469     else if (isa<TranslationUnitDecl>(DC))
470       return NestedNameSpecifier::GlobalSpecifier(Context);
471   }
472   llvm_unreachable("something isn't in TU scope?");
473 }
474 
475 ParsedType Sema::ActOnDelayedDefaultTemplateArg(const IdentifierInfo &II,
476                                                 SourceLocation NameLoc) {
477   // Accepting an undeclared identifier as a default argument for a template
478   // type parameter is a Microsoft extension.
479   Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
480 
481   // Build a fake DependentNameType that will perform lookup into CurContext at
482   // instantiation time.  The name specifier isn't dependent, so template
483   // instantiation won't transform it.  It will retry the lookup, however.
484   NestedNameSpecifier *NNS =
485       synthesizeCurrentNestedNameSpecifier(Context, CurContext);
486   QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
487 
488   // Build type location information.  We synthesized the qualifier, so we have
489   // to build a fake NestedNameSpecifierLoc.
490   NestedNameSpecifierLocBuilder NNSLocBuilder;
491   NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc));
492   NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context);
493 
494   TypeLocBuilder Builder;
495   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
496   DepTL.setNameLoc(NameLoc);
497   DepTL.setElaboratedKeywordLoc(SourceLocation());
498   DepTL.setQualifierLoc(QualifierLoc);
499   return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
500 }
501 
502 /// isTagName() - This method is called *for error recovery purposes only*
503 /// to determine if the specified name is a valid tag name ("struct foo").  If
504 /// so, this returns the TST for the tag corresponding to it (TST_enum,
505 /// TST_union, TST_struct, TST_interface, TST_class).  This is used to diagnose
506 /// cases in C where the user forgot to specify the tag.
507 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
508   // Do a tag name lookup in this scope.
509   LookupResult R(*this, &II, SourceLocation(), LookupTagName);
510   LookupName(R, S, false);
511   R.suppressDiagnostics();
512   if (R.getResultKind() == LookupResult::Found)
513     if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
514       switch (TD->getTagKind()) {
515       case TTK_Struct: return DeclSpec::TST_struct;
516       case TTK_Interface: return DeclSpec::TST_interface;
517       case TTK_Union:  return DeclSpec::TST_union;
518       case TTK_Class:  return DeclSpec::TST_class;
519       case TTK_Enum:   return DeclSpec::TST_enum;
520       }
521     }
522 
523   return DeclSpec::TST_unspecified;
524 }
525 
526 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
527 /// if a CXXScopeSpec's type is equal to the type of one of the base classes
528 /// then downgrade the missing typename error to a warning.
529 /// This is needed for MSVC compatibility; Example:
530 /// @code
531 /// template<class T> class A {
532 /// public:
533 ///   typedef int TYPE;
534 /// };
535 /// template<class T> class B : public A<T> {
536 /// public:
537 ///   A<T>::TYPE a; // no typename required because A<T> is a base class.
538 /// };
539 /// @endcode
540 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
541   if (CurContext->isRecord()) {
542     if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
543       return true;
544 
545     const Type *Ty = SS->getScopeRep()->getAsType();
546 
547     CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
548     for (const auto &Base : RD->bases())
549       if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
550         return true;
551     return S->isFunctionPrototypeScope();
552   }
553   return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
554 }
555 
556 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
557                                    SourceLocation IILoc,
558                                    Scope *S,
559                                    CXXScopeSpec *SS,
560                                    ParsedType &SuggestedType,
561                                    bool AllowClassTemplates) {
562   // We don't have anything to suggest (yet).
563   SuggestedType = nullptr;
564 
565   // There may have been a typo in the name of the type. Look up typo
566   // results, in case we have something that we can suggest.
567   if (TypoCorrection Corrected =
568           CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS,
569                       llvm::make_unique<TypeNameValidatorCCC>(
570                           false, false, AllowClassTemplates),
571                       CTK_ErrorRecovery)) {
572     if (Corrected.isKeyword()) {
573       // We corrected to a keyword.
574       diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II);
575       II = Corrected.getCorrectionAsIdentifierInfo();
576     } else {
577       // We found a similarly-named type or interface; suggest that.
578       if (!SS || !SS->isSet()) {
579         diagnoseTypo(Corrected,
580                      PDiag(diag::err_unknown_typename_suggest) << II);
581       } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
582         std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
583         bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
584                                 II->getName().equals(CorrectedStr);
585         diagnoseTypo(Corrected,
586                      PDiag(diag::err_unknown_nested_typename_suggest)
587                        << II << DC << DroppedSpecifier << SS->getRange());
588       } else {
589         llvm_unreachable("could not have corrected a typo here");
590       }
591 
592       CXXScopeSpec tmpSS;
593       if (Corrected.getCorrectionSpecifier())
594         tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
595                           SourceRange(IILoc));
596       SuggestedType =
597           getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S,
598                       tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
599                       /*IsCtorOrDtorName=*/false,
600                       /*NonTrivialTypeSourceInfo=*/true);
601     }
602     return;
603   }
604 
605   if (getLangOpts().CPlusPlus) {
606     // See if II is a class template that the user forgot to pass arguments to.
607     UnqualifiedId Name;
608     Name.setIdentifier(II, IILoc);
609     CXXScopeSpec EmptySS;
610     TemplateTy TemplateResult;
611     bool MemberOfUnknownSpecialization;
612     if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
613                        Name, nullptr, true, TemplateResult,
614                        MemberOfUnknownSpecialization) == TNK_Type_template) {
615       TemplateName TplName = TemplateResult.get();
616       Diag(IILoc, diag::err_template_missing_args) << TplName;
617       if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) {
618         Diag(TplDecl->getLocation(), diag::note_template_decl_here)
619           << TplDecl->getTemplateParameters()->getSourceRange();
620       }
621       return;
622     }
623   }
624 
625   // FIXME: Should we move the logic that tries to recover from a missing tag
626   // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
627 
628   if (!SS || (!SS->isSet() && !SS->isInvalid()))
629     Diag(IILoc, diag::err_unknown_typename) << II;
630   else if (DeclContext *DC = computeDeclContext(*SS, false))
631     Diag(IILoc, diag::err_typename_nested_not_found)
632       << II << DC << SS->getRange();
633   else if (isDependentScopeSpecifier(*SS)) {
634     unsigned DiagID = diag::err_typename_missing;
635     if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
636       DiagID = diag::ext_typename_missing;
637 
638     Diag(SS->getRange().getBegin(), DiagID)
639       << SS->getScopeRep() << II->getName()
640       << SourceRange(SS->getRange().getBegin(), IILoc)
641       << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
642     SuggestedType = ActOnTypenameType(S, SourceLocation(),
643                                       *SS, *II, IILoc).get();
644   } else {
645     assert(SS && SS->isInvalid() &&
646            "Invalid scope specifier has already been diagnosed");
647   }
648 }
649 
650 /// \brief Determine whether the given result set contains either a type name
651 /// or
652 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
653   bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
654                        NextToken.is(tok::less);
655 
656   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
657     if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
658       return true;
659 
660     if (CheckTemplate && isa<TemplateDecl>(*I))
661       return true;
662   }
663 
664   return false;
665 }
666 
667 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
668                                     Scope *S, CXXScopeSpec &SS,
669                                     IdentifierInfo *&Name,
670                                     SourceLocation NameLoc) {
671   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
672   SemaRef.LookupParsedName(R, S, &SS);
673   if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
674     StringRef FixItTagName;
675     switch (Tag->getTagKind()) {
676       case TTK_Class:
677         FixItTagName = "class ";
678         break;
679 
680       case TTK_Enum:
681         FixItTagName = "enum ";
682         break;
683 
684       case TTK_Struct:
685         FixItTagName = "struct ";
686         break;
687 
688       case TTK_Interface:
689         FixItTagName = "__interface ";
690         break;
691 
692       case TTK_Union:
693         FixItTagName = "union ";
694         break;
695     }
696 
697     StringRef TagName = FixItTagName.drop_back();
698     SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
699       << Name << TagName << SemaRef.getLangOpts().CPlusPlus
700       << FixItHint::CreateInsertion(NameLoc, FixItTagName);
701 
702     for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
703          I != IEnd; ++I)
704       SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
705         << Name << TagName;
706 
707     // Replace lookup results with just the tag decl.
708     Result.clear(Sema::LookupTagName);
709     SemaRef.LookupParsedName(Result, S, &SS);
710     return true;
711   }
712 
713   return false;
714 }
715 
716 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
717 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
718                                   QualType T, SourceLocation NameLoc) {
719   ASTContext &Context = S.Context;
720 
721   TypeLocBuilder Builder;
722   Builder.pushTypeSpec(T).setNameLoc(NameLoc);
723 
724   T = S.getElaboratedType(ETK_None, SS, T);
725   ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
726   ElabTL.setElaboratedKeywordLoc(SourceLocation());
727   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
728   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
729 }
730 
731 Sema::NameClassification
732 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name,
733                    SourceLocation NameLoc, const Token &NextToken,
734                    bool IsAddressOfOperand,
735                    std::unique_ptr<CorrectionCandidateCallback> CCC) {
736   DeclarationNameInfo NameInfo(Name, NameLoc);
737   ObjCMethodDecl *CurMethod = getCurMethodDecl();
738 
739   if (NextToken.is(tok::coloncolon)) {
740     BuildCXXNestedNameSpecifier(S, *Name, NameLoc, NextToken.getLocation(),
741                                 QualType(), false, SS, nullptr, false);
742   }
743 
744   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
745   LookupParsedName(Result, S, &SS, !CurMethod);
746 
747   // For unqualified lookup in a class template in MSVC mode, look into
748   // dependent base classes where the primary class template is known.
749   if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) {
750     if (ParsedType TypeInBase =
751             recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc))
752       return TypeInBase;
753   }
754 
755   // Perform lookup for Objective-C instance variables (including automatically
756   // synthesized instance variables), if we're in an Objective-C method.
757   // FIXME: This lookup really, really needs to be folded in to the normal
758   // unqualified lookup mechanism.
759   if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
760     ExprResult E = LookupInObjCMethod(Result, S, Name, true);
761     if (E.get() || E.isInvalid())
762       return E;
763   }
764 
765   bool SecondTry = false;
766   bool IsFilteredTemplateName = false;
767 
768 Corrected:
769   switch (Result.getResultKind()) {
770   case LookupResult::NotFound:
771     // If an unqualified-id is followed by a '(', then we have a function
772     // call.
773     if (!SS.isSet() && NextToken.is(tok::l_paren)) {
774       // In C++, this is an ADL-only call.
775       // FIXME: Reference?
776       if (getLangOpts().CPlusPlus)
777         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
778 
779       // C90 6.3.2.2:
780       //   If the expression that precedes the parenthesized argument list in a
781       //   function call consists solely of an identifier, and if no
782       //   declaration is visible for this identifier, the identifier is
783       //   implicitly declared exactly as if, in the innermost block containing
784       //   the function call, the declaration
785       //
786       //     extern int identifier ();
787       //
788       //   appeared.
789       //
790       // We also allow this in C99 as an extension.
791       if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
792         Result.addDecl(D);
793         Result.resolveKind();
794         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false);
795       }
796     }
797 
798     // In C, we first see whether there is a tag type by the same name, in
799     // which case it's likely that the user just forgot to write "enum",
800     // "struct", or "union".
801     if (!getLangOpts().CPlusPlus && !SecondTry &&
802         isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
803       break;
804     }
805 
806     // Perform typo correction to determine if there is another name that is
807     // close to this name.
808     if (!SecondTry && CCC) {
809       SecondTry = true;
810       if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(),
811                                                  Result.getLookupKind(), S,
812                                                  &SS, std::move(CCC),
813                                                  CTK_ErrorRecovery)) {
814         unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
815         unsigned QualifiedDiag = diag::err_no_member_suggest;
816 
817         NamedDecl *FirstDecl = Corrected.getFoundDecl();
818         NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl();
819         if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
820             UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
821           UnqualifiedDiag = diag::err_no_template_suggest;
822           QualifiedDiag = diag::err_no_member_template_suggest;
823         } else if (UnderlyingFirstDecl &&
824                    (isa<TypeDecl>(UnderlyingFirstDecl) ||
825                     isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
826                     isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
827           UnqualifiedDiag = diag::err_unknown_typename_suggest;
828           QualifiedDiag = diag::err_unknown_nested_typename_suggest;
829         }
830 
831         if (SS.isEmpty()) {
832           diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
833         } else {// FIXME: is this even reachable? Test it.
834           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
835           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
836                                   Name->getName().equals(CorrectedStr);
837           diagnoseTypo(Corrected, PDiag(QualifiedDiag)
838                                     << Name << computeDeclContext(SS, false)
839                                     << DroppedSpecifier << SS.getRange());
840         }
841 
842         // Update the name, so that the caller has the new name.
843         Name = Corrected.getCorrectionAsIdentifierInfo();
844 
845         // Typo correction corrected to a keyword.
846         if (Corrected.isKeyword())
847           return Name;
848 
849         // Also update the LookupResult...
850         // FIXME: This should probably go away at some point
851         Result.clear();
852         Result.setLookupName(Corrected.getCorrection());
853         if (FirstDecl)
854           Result.addDecl(FirstDecl);
855 
856         // If we found an Objective-C instance variable, let
857         // LookupInObjCMethod build the appropriate expression to
858         // reference the ivar.
859         // FIXME: This is a gross hack.
860         if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
861           Result.clear();
862           ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
863           return E;
864         }
865 
866         goto Corrected;
867       }
868     }
869 
870     // We failed to correct; just fall through and let the parser deal with it.
871     Result.suppressDiagnostics();
872     return NameClassification::Unknown();
873 
874   case LookupResult::NotFoundInCurrentInstantiation: {
875     // We performed name lookup into the current instantiation, and there were
876     // dependent bases, so we treat this result the same way as any other
877     // dependent nested-name-specifier.
878 
879     // C++ [temp.res]p2:
880     //   A name used in a template declaration or definition and that is
881     //   dependent on a template-parameter is assumed not to name a type
882     //   unless the applicable name lookup finds a type name or the name is
883     //   qualified by the keyword typename.
884     //
885     // FIXME: If the next token is '<', we might want to ask the parser to
886     // perform some heroics to see if we actually have a
887     // template-argument-list, which would indicate a missing 'template'
888     // keyword here.
889     return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
890                                       NameInfo, IsAddressOfOperand,
891                                       /*TemplateArgs=*/nullptr);
892   }
893 
894   case LookupResult::Found:
895   case LookupResult::FoundOverloaded:
896   case LookupResult::FoundUnresolvedValue:
897     break;
898 
899   case LookupResult::Ambiguous:
900     if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
901         hasAnyAcceptableTemplateNames(Result)) {
902       // C++ [temp.local]p3:
903       //   A lookup that finds an injected-class-name (10.2) can result in an
904       //   ambiguity in certain cases (for example, if it is found in more than
905       //   one base class). If all of the injected-class-names that are found
906       //   refer to specializations of the same class template, and if the name
907       //   is followed by a template-argument-list, the reference refers to the
908       //   class template itself and not a specialization thereof, and is not
909       //   ambiguous.
910       //
911       // This filtering can make an ambiguous result into an unambiguous one,
912       // so try again after filtering out template names.
913       FilterAcceptableTemplateNames(Result);
914       if (!Result.isAmbiguous()) {
915         IsFilteredTemplateName = true;
916         break;
917       }
918     }
919 
920     // Diagnose the ambiguity and return an error.
921     return NameClassification::Error();
922   }
923 
924   if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
925       (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) {
926     // C++ [temp.names]p3:
927     //   After name lookup (3.4) finds that a name is a template-name or that
928     //   an operator-function-id or a literal- operator-id refers to a set of
929     //   overloaded functions any member of which is a function template if
930     //   this is followed by a <, the < is always taken as the delimiter of a
931     //   template-argument-list and never as the less-than operator.
932     if (!IsFilteredTemplateName)
933       FilterAcceptableTemplateNames(Result);
934 
935     if (!Result.empty()) {
936       bool IsFunctionTemplate;
937       bool IsVarTemplate;
938       TemplateName Template;
939       if (Result.end() - Result.begin() > 1) {
940         IsFunctionTemplate = true;
941         Template = Context.getOverloadedTemplateName(Result.begin(),
942                                                      Result.end());
943       } else {
944         TemplateDecl *TD
945           = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl());
946         IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
947         IsVarTemplate = isa<VarTemplateDecl>(TD);
948 
949         if (SS.isSet() && !SS.isInvalid())
950           Template = Context.getQualifiedTemplateName(SS.getScopeRep(),
951                                                     /*TemplateKeyword=*/false,
952                                                       TD);
953         else
954           Template = TemplateName(TD);
955       }
956 
957       if (IsFunctionTemplate) {
958         // Function templates always go through overload resolution, at which
959         // point we'll perform the various checks (e.g., accessibility) we need
960         // to based on which function we selected.
961         Result.suppressDiagnostics();
962 
963         return NameClassification::FunctionTemplate(Template);
964       }
965 
966       return IsVarTemplate ? NameClassification::VarTemplate(Template)
967                            : NameClassification::TypeTemplate(Template);
968     }
969   }
970 
971   NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
972   if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
973     DiagnoseUseOfDecl(Type, NameLoc);
974     MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
975     QualType T = Context.getTypeDeclType(Type);
976     if (SS.isNotEmpty())
977       return buildNestedType(*this, SS, T, NameLoc);
978     return ParsedType::make(T);
979   }
980 
981   ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
982   if (!Class) {
983     // FIXME: It's unfortunate that we don't have a Type node for handling this.
984     if (ObjCCompatibleAliasDecl *Alias =
985             dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
986       Class = Alias->getClassInterface();
987   }
988 
989   if (Class) {
990     DiagnoseUseOfDecl(Class, NameLoc);
991 
992     if (NextToken.is(tok::period)) {
993       // Interface. <something> is parsed as a property reference expression.
994       // Just return "unknown" as a fall-through for now.
995       Result.suppressDiagnostics();
996       return NameClassification::Unknown();
997     }
998 
999     QualType T = Context.getObjCInterfaceType(Class);
1000     return ParsedType::make(T);
1001   }
1002 
1003   // We can have a type template here if we're classifying a template argument.
1004   if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl))
1005     return NameClassification::TypeTemplate(
1006         TemplateName(cast<TemplateDecl>(FirstDecl)));
1007 
1008   // Check for a tag type hidden by a non-type decl in a few cases where it
1009   // seems likely a type is wanted instead of the non-type that was found.
1010   bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star);
1011   if ((NextToken.is(tok::identifier) ||
1012        (NextIsOp &&
1013         FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
1014       isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
1015     TypeDecl *Type = Result.getAsSingle<TypeDecl>();
1016     DiagnoseUseOfDecl(Type, NameLoc);
1017     QualType T = Context.getTypeDeclType(Type);
1018     if (SS.isNotEmpty())
1019       return buildNestedType(*this, SS, T, NameLoc);
1020     return ParsedType::make(T);
1021   }
1022 
1023   if (FirstDecl->isCXXClassMember())
1024     return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
1025                                            nullptr, S);
1026 
1027   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1028   return BuildDeclarationNameExpr(SS, Result, ADL);
1029 }
1030 
1031 // Determines the context to return to after temporarily entering a
1032 // context.  This depends in an unnecessarily complicated way on the
1033 // exact ordering of callbacks from the parser.
1034 DeclContext *Sema::getContainingDC(DeclContext *DC) {
1035 
1036   // Functions defined inline within classes aren't parsed until we've
1037   // finished parsing the top-level class, so the top-level class is
1038   // the context we'll need to return to.
1039   // A Lambda call operator whose parent is a class must not be treated
1040   // as an inline member function.  A Lambda can be used legally
1041   // either as an in-class member initializer or a default argument.  These
1042   // are parsed once the class has been marked complete and so the containing
1043   // context would be the nested class (when the lambda is defined in one);
1044   // If the class is not complete, then the lambda is being used in an
1045   // ill-formed fashion (such as to specify the width of a bit-field, or
1046   // in an array-bound) - in which case we still want to return the
1047   // lexically containing DC (which could be a nested class).
1048   if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) {
1049     DC = DC->getLexicalParent();
1050 
1051     // A function not defined within a class will always return to its
1052     // lexical context.
1053     if (!isa<CXXRecordDecl>(DC))
1054       return DC;
1055 
1056     // A C++ inline method/friend is parsed *after* the topmost class
1057     // it was declared in is fully parsed ("complete");  the topmost
1058     // class is the context we need to return to.
1059     while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
1060       DC = RD;
1061 
1062     // Return the declaration context of the topmost class the inline method is
1063     // declared in.
1064     return DC;
1065   }
1066 
1067   return DC->getLexicalParent();
1068 }
1069 
1070 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1071   assert(getContainingDC(DC) == CurContext &&
1072       "The next DeclContext should be lexically contained in the current one.");
1073   CurContext = DC;
1074   S->setEntity(DC);
1075 }
1076 
1077 void Sema::PopDeclContext() {
1078   assert(CurContext && "DeclContext imbalance!");
1079 
1080   CurContext = getContainingDC(CurContext);
1081   assert(CurContext && "Popped translation unit!");
1082 }
1083 
1084 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S,
1085                                                                     Decl *D) {
1086   // Unlike PushDeclContext, the context to which we return is not necessarily
1087   // the containing DC of TD, because the new context will be some pre-existing
1088   // TagDecl definition instead of a fresh one.
1089   auto Result = static_cast<SkippedDefinitionContext>(CurContext);
1090   CurContext = cast<TagDecl>(D)->getDefinition();
1091   assert(CurContext && "skipping definition of undefined tag");
1092   // Start lookups from the parent of the current context; we don't want to look
1093   // into the pre-existing complete definition.
1094   S->setEntity(CurContext->getLookupParent());
1095   return Result;
1096 }
1097 
1098 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) {
1099   CurContext = static_cast<decltype(CurContext)>(Context);
1100 }
1101 
1102 /// EnterDeclaratorContext - Used when we must lookup names in the context
1103 /// of a declarator's nested name specifier.
1104 ///
1105 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1106   // C++0x [basic.lookup.unqual]p13:
1107   //   A name used in the definition of a static data member of class
1108   //   X (after the qualified-id of the static member) is looked up as
1109   //   if the name was used in a member function of X.
1110   // C++0x [basic.lookup.unqual]p14:
1111   //   If a variable member of a namespace is defined outside of the
1112   //   scope of its namespace then any name used in the definition of
1113   //   the variable member (after the declarator-id) is looked up as
1114   //   if the definition of the variable member occurred in its
1115   //   namespace.
1116   // Both of these imply that we should push a scope whose context
1117   // is the semantic context of the declaration.  We can't use
1118   // PushDeclContext here because that context is not necessarily
1119   // lexically contained in the current context.  Fortunately,
1120   // the containing scope should have the appropriate information.
1121 
1122   assert(!S->getEntity() && "scope already has entity");
1123 
1124 #ifndef NDEBUG
1125   Scope *Ancestor = S->getParent();
1126   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1127   assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
1128 #endif
1129 
1130   CurContext = DC;
1131   S->setEntity(DC);
1132 }
1133 
1134 void Sema::ExitDeclaratorContext(Scope *S) {
1135   assert(S->getEntity() == CurContext && "Context imbalance!");
1136 
1137   // Switch back to the lexical context.  The safety of this is
1138   // enforced by an assert in EnterDeclaratorContext.
1139   Scope *Ancestor = S->getParent();
1140   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1141   CurContext = Ancestor->getEntity();
1142 
1143   // We don't need to do anything with the scope, which is going to
1144   // disappear.
1145 }
1146 
1147 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
1148   // We assume that the caller has already called
1149   // ActOnReenterTemplateScope so getTemplatedDecl() works.
1150   FunctionDecl *FD = D->getAsFunction();
1151   if (!FD)
1152     return;
1153 
1154   // Same implementation as PushDeclContext, but enters the context
1155   // from the lexical parent, rather than the top-level class.
1156   assert(CurContext == FD->getLexicalParent() &&
1157     "The next DeclContext should be lexically contained in the current one.");
1158   CurContext = FD;
1159   S->setEntity(CurContext);
1160 
1161   for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
1162     ParmVarDecl *Param = FD->getParamDecl(P);
1163     // If the parameter has an identifier, then add it to the scope
1164     if (Param->getIdentifier()) {
1165       S->AddDecl(Param);
1166       IdResolver.AddDecl(Param);
1167     }
1168   }
1169 }
1170 
1171 void Sema::ActOnExitFunctionContext() {
1172   // Same implementation as PopDeclContext, but returns to the lexical parent,
1173   // rather than the top-level class.
1174   assert(CurContext && "DeclContext imbalance!");
1175   CurContext = CurContext->getLexicalParent();
1176   assert(CurContext && "Popped translation unit!");
1177 }
1178 
1179 /// \brief Determine whether we allow overloading of the function
1180 /// PrevDecl with another declaration.
1181 ///
1182 /// This routine determines whether overloading is possible, not
1183 /// whether some new function is actually an overload. It will return
1184 /// true in C++ (where we can always provide overloads) or, as an
1185 /// extension, in C when the previous function is already an
1186 /// overloaded function declaration or has the "overloadable"
1187 /// attribute.
1188 static bool AllowOverloadingOfFunction(LookupResult &Previous,
1189                                        ASTContext &Context) {
1190   if (Context.getLangOpts().CPlusPlus)
1191     return true;
1192 
1193   if (Previous.getResultKind() == LookupResult::FoundOverloaded)
1194     return true;
1195 
1196   return (Previous.getResultKind() == LookupResult::Found
1197           && Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
1198 }
1199 
1200 /// Add this decl to the scope shadowed decl chains.
1201 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
1202   // Move up the scope chain until we find the nearest enclosing
1203   // non-transparent context. The declaration will be introduced into this
1204   // scope.
1205   while (S->getEntity() && S->getEntity()->isTransparentContext())
1206     S = S->getParent();
1207 
1208   // Add scoped declarations into their context, so that they can be
1209   // found later. Declarations without a context won't be inserted
1210   // into any context.
1211   if (AddToContext)
1212     CurContext->addDecl(D);
1213 
1214   // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1215   // are function-local declarations.
1216   if (getLangOpts().CPlusPlus && D->isOutOfLine() &&
1217       !D->getDeclContext()->getRedeclContext()->Equals(
1218         D->getLexicalDeclContext()->getRedeclContext()) &&
1219       !D->getLexicalDeclContext()->isFunctionOrMethod())
1220     return;
1221 
1222   // Template instantiations should also not be pushed into scope.
1223   if (isa<FunctionDecl>(D) &&
1224       cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
1225     return;
1226 
1227   // If this replaces anything in the current scope,
1228   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1229                                IEnd = IdResolver.end();
1230   for (; I != IEnd; ++I) {
1231     if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1232       S->RemoveDecl(*I);
1233       IdResolver.RemoveDecl(*I);
1234 
1235       // Should only need to replace one decl.
1236       break;
1237     }
1238   }
1239 
1240   S->AddDecl(D);
1241 
1242   if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1243     // Implicitly-generated labels may end up getting generated in an order that
1244     // isn't strictly lexical, which breaks name lookup. Be careful to insert
1245     // the label at the appropriate place in the identifier chain.
1246     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
1247       DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
1248       if (IDC == CurContext) {
1249         if (!S->isDeclScope(*I))
1250           continue;
1251       } else if (IDC->Encloses(CurContext))
1252         break;
1253     }
1254 
1255     IdResolver.InsertDeclAfter(I, D);
1256   } else {
1257     IdResolver.AddDecl(D);
1258   }
1259 }
1260 
1261 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
1262   if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope)
1263     TUScope->AddDecl(D);
1264 }
1265 
1266 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
1267                          bool AllowInlineNamespace) {
1268   return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
1269 }
1270 
1271 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1272   DeclContext *TargetDC = DC->getPrimaryContext();
1273   do {
1274     if (DeclContext *ScopeDC = S->getEntity())
1275       if (ScopeDC->getPrimaryContext() == TargetDC)
1276         return S;
1277   } while ((S = S->getParent()));
1278 
1279   return nullptr;
1280 }
1281 
1282 static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1283                                             DeclContext*,
1284                                             ASTContext&);
1285 
1286 /// Filters out lookup results that don't fall within the given scope
1287 /// as determined by isDeclInScope.
1288 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1289                                 bool ConsiderLinkage,
1290                                 bool AllowInlineNamespace) {
1291   LookupResult::Filter F = R.makeFilter();
1292   while (F.hasNext()) {
1293     NamedDecl *D = F.next();
1294 
1295     if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
1296       continue;
1297 
1298     if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
1299       continue;
1300 
1301     F.erase();
1302   }
1303 
1304   F.done();
1305 }
1306 
1307 static bool isUsingDecl(NamedDecl *D) {
1308   return isa<UsingShadowDecl>(D) ||
1309          isa<UnresolvedUsingTypenameDecl>(D) ||
1310          isa<UnresolvedUsingValueDecl>(D);
1311 }
1312 
1313 /// Removes using shadow declarations from the lookup results.
1314 static void RemoveUsingDecls(LookupResult &R) {
1315   LookupResult::Filter F = R.makeFilter();
1316   while (F.hasNext())
1317     if (isUsingDecl(F.next()))
1318       F.erase();
1319 
1320   F.done();
1321 }
1322 
1323 /// \brief Check for this common pattern:
1324 /// @code
1325 /// class S {
1326 ///   S(const S&); // DO NOT IMPLEMENT
1327 ///   void operator=(const S&); // DO NOT IMPLEMENT
1328 /// };
1329 /// @endcode
1330 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1331   // FIXME: Should check for private access too but access is set after we get
1332   // the decl here.
1333   if (D->doesThisDeclarationHaveABody())
1334     return false;
1335 
1336   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1337     return CD->isCopyConstructor();
1338   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1339     return Method->isCopyAssignmentOperator();
1340   return false;
1341 }
1342 
1343 // We need this to handle
1344 //
1345 // typedef struct {
1346 //   void *foo() { return 0; }
1347 // } A;
1348 //
1349 // When we see foo we don't know if after the typedef we will get 'A' or '*A'
1350 // for example. If 'A', foo will have external linkage. If we have '*A',
1351 // foo will have no linkage. Since we can't know until we get to the end
1352 // of the typedef, this function finds out if D might have non-external linkage.
1353 // Callers should verify at the end of the TU if it D has external linkage or
1354 // not.
1355 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1356   const DeclContext *DC = D->getDeclContext();
1357   while (!DC->isTranslationUnit()) {
1358     if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1359       if (!RD->hasNameForLinkage())
1360         return true;
1361     }
1362     DC = DC->getParent();
1363   }
1364 
1365   return !D->isExternallyVisible();
1366 }
1367 
1368 // FIXME: This needs to be refactored; some other isInMainFile users want
1369 // these semantics.
1370 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1371   if (S.TUKind != TU_Complete)
1372     return false;
1373   return S.SourceMgr.isInMainFile(Loc);
1374 }
1375 
1376 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1377   assert(D);
1378 
1379   if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1380     return false;
1381 
1382   // Ignore all entities declared within templates, and out-of-line definitions
1383   // of members of class templates.
1384   if (D->getDeclContext()->isDependentContext() ||
1385       D->getLexicalDeclContext()->isDependentContext())
1386     return false;
1387 
1388   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1389     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1390       return false;
1391 
1392     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1393       if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1394         return false;
1395     } else {
1396       // 'static inline' functions are defined in headers; don't warn.
1397       if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
1398         return false;
1399     }
1400 
1401     if (FD->doesThisDeclarationHaveABody() &&
1402         Context.DeclMustBeEmitted(FD))
1403       return false;
1404   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1405     // Constants and utility variables are defined in headers with internal
1406     // linkage; don't warn.  (Unlike functions, there isn't a convenient marker
1407     // like "inline".)
1408     if (!isMainFileLoc(*this, VD->getLocation()))
1409       return false;
1410 
1411     if (Context.DeclMustBeEmitted(VD))
1412       return false;
1413 
1414     if (VD->isStaticDataMember() &&
1415         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1416       return false;
1417   } else {
1418     return false;
1419   }
1420 
1421   // Only warn for unused decls internal to the translation unit.
1422   // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1423   // for inline functions defined in the main source file, for instance.
1424   return mightHaveNonExternalLinkage(D);
1425 }
1426 
1427 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
1428   if (!D)
1429     return;
1430 
1431   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1432     const FunctionDecl *First = FD->getFirstDecl();
1433     if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1434       return; // First should already be in the vector.
1435   }
1436 
1437   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1438     const VarDecl *First = VD->getFirstDecl();
1439     if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1440       return; // First should already be in the vector.
1441   }
1442 
1443   if (ShouldWarnIfUnusedFileScopedDecl(D))
1444     UnusedFileScopedDecls.push_back(D);
1445 }
1446 
1447 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
1448   if (D->isInvalidDecl())
1449     return false;
1450 
1451   if (D->isReferenced() || D->isUsed() || D->hasAttr<UnusedAttr>() ||
1452       D->hasAttr<ObjCPreciseLifetimeAttr>())
1453     return false;
1454 
1455   if (isa<LabelDecl>(D))
1456     return true;
1457 
1458   // Except for labels, we only care about unused decls that are local to
1459   // functions.
1460   bool WithinFunction = D->getDeclContext()->isFunctionOrMethod();
1461   if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext()))
1462     // For dependent types, the diagnostic is deferred.
1463     WithinFunction =
1464         WithinFunction || (R->isLocalClass() && !R->isDependentType());
1465   if (!WithinFunction)
1466     return false;
1467 
1468   if (isa<TypedefNameDecl>(D))
1469     return true;
1470 
1471   // White-list anything that isn't a local variable.
1472   if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D))
1473     return false;
1474 
1475   // Types of valid local variables should be complete, so this should succeed.
1476   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1477 
1478     // White-list anything with an __attribute__((unused)) type.
1479     QualType Ty = VD->getType();
1480 
1481     // Only look at the outermost level of typedef.
1482     if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
1483       if (TT->getDecl()->hasAttr<UnusedAttr>())
1484         return false;
1485     }
1486 
1487     // If we failed to complete the type for some reason, or if the type is
1488     // dependent, don't diagnose the variable.
1489     if (Ty->isIncompleteType() || Ty->isDependentType())
1490       return false;
1491 
1492     if (const TagType *TT = Ty->getAs<TagType>()) {
1493       const TagDecl *Tag = TT->getDecl();
1494       if (Tag->hasAttr<UnusedAttr>())
1495         return false;
1496 
1497       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
1498         if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
1499           return false;
1500 
1501         if (const Expr *Init = VD->getInit()) {
1502           if (const ExprWithCleanups *Cleanups =
1503                   dyn_cast<ExprWithCleanups>(Init))
1504             Init = Cleanups->getSubExpr();
1505           const CXXConstructExpr *Construct =
1506             dyn_cast<CXXConstructExpr>(Init);
1507           if (Construct && !Construct->isElidable()) {
1508             CXXConstructorDecl *CD = Construct->getConstructor();
1509             if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>())
1510               return false;
1511           }
1512         }
1513       }
1514     }
1515 
1516     // TODO: __attribute__((unused)) templates?
1517   }
1518 
1519   return true;
1520 }
1521 
1522 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1523                                      FixItHint &Hint) {
1524   if (isa<LabelDecl>(D)) {
1525     SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
1526                 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
1527     if (AfterColon.isInvalid())
1528       return;
1529     Hint = FixItHint::CreateRemoval(CharSourceRange::
1530                                     getCharRange(D->getLocStart(), AfterColon));
1531   }
1532 }
1533 
1534 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1535   if (D->getTypeForDecl()->isDependentType())
1536     return;
1537 
1538   for (auto *TmpD : D->decls()) {
1539     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1540       DiagnoseUnusedDecl(T);
1541     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1542       DiagnoseUnusedNestedTypedefs(R);
1543   }
1544 }
1545 
1546 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1547 /// unless they are marked attr(unused).
1548 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1549   if (!ShouldDiagnoseUnusedDecl(D))
1550     return;
1551 
1552   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1553     // typedefs can be referenced later on, so the diagnostics are emitted
1554     // at end-of-translation-unit.
1555     UnusedLocalTypedefNameCandidates.insert(TD);
1556     return;
1557   }
1558 
1559   FixItHint Hint;
1560   GenerateFixForUnusedDecl(D, Context, Hint);
1561 
1562   unsigned DiagID;
1563   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1564     DiagID = diag::warn_unused_exception_param;
1565   else if (isa<LabelDecl>(D))
1566     DiagID = diag::warn_unused_label;
1567   else
1568     DiagID = diag::warn_unused_variable;
1569 
1570   Diag(D->getLocation(), DiagID) << D->getDeclName() << Hint;
1571 }
1572 
1573 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1574   // Verify that we have no forward references left.  If so, there was a goto
1575   // or address of a label taken, but no definition of it.  Label fwd
1576   // definitions are indicated with a null substmt which is also not a resolved
1577   // MS inline assembly label name.
1578   bool Diagnose = false;
1579   if (L->isMSAsmLabel())
1580     Diagnose = !L->isResolvedMSAsmLabel();
1581   else
1582     Diagnose = L->getStmt() == nullptr;
1583   if (Diagnose)
1584     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1585 }
1586 
1587 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1588   S->mergeNRVOIntoParent();
1589 
1590   if (S->decl_empty()) return;
1591   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1592          "Scope shouldn't contain decls!");
1593 
1594   for (auto *TmpD : S->decls()) {
1595     assert(TmpD && "This decl didn't get pushed??");
1596 
1597     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1598     NamedDecl *D = cast<NamedDecl>(TmpD);
1599 
1600     if (!D->getDeclName()) continue;
1601 
1602     // Diagnose unused variables in this scope.
1603     if (!S->hasUnrecoverableErrorOccurred()) {
1604       DiagnoseUnusedDecl(D);
1605       if (const auto *RD = dyn_cast<RecordDecl>(D))
1606         DiagnoseUnusedNestedTypedefs(RD);
1607     }
1608 
1609     // If this was a forward reference to a label, verify it was defined.
1610     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1611       CheckPoppedLabel(LD, *this);
1612 
1613     // Remove this name from our lexical scope.
1614     IdResolver.RemoveDecl(D);
1615   }
1616 }
1617 
1618 /// \brief Look for an Objective-C class in the translation unit.
1619 ///
1620 /// \param Id The name of the Objective-C class we're looking for. If
1621 /// typo-correction fixes this name, the Id will be updated
1622 /// to the fixed name.
1623 ///
1624 /// \param IdLoc The location of the name in the translation unit.
1625 ///
1626 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1627 /// if there is no class with the given name.
1628 ///
1629 /// \returns The declaration of the named Objective-C class, or NULL if the
1630 /// class could not be found.
1631 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1632                                               SourceLocation IdLoc,
1633                                               bool DoTypoCorrection) {
1634   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1635   // creation from this context.
1636   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1637 
1638   if (!IDecl && DoTypoCorrection) {
1639     // Perform typo correction at the given location, but only if we
1640     // find an Objective-C class name.
1641     if (TypoCorrection C = CorrectTypo(
1642             DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr,
1643             llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(),
1644             CTK_ErrorRecovery)) {
1645       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1646       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1647       Id = IDecl->getIdentifier();
1648     }
1649   }
1650   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1651   // This routine must always return a class definition, if any.
1652   if (Def && Def->getDefinition())
1653       Def = Def->getDefinition();
1654   return Def;
1655 }
1656 
1657 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
1658 /// from S, where a non-field would be declared. This routine copes
1659 /// with the difference between C and C++ scoping rules in structs and
1660 /// unions. For example, the following code is well-formed in C but
1661 /// ill-formed in C++:
1662 /// @code
1663 /// struct S6 {
1664 ///   enum { BAR } e;
1665 /// };
1666 ///
1667 /// void test_S6() {
1668 ///   struct S6 a;
1669 ///   a.e = BAR;
1670 /// }
1671 /// @endcode
1672 /// For the declaration of BAR, this routine will return a different
1673 /// scope. The scope S will be the scope of the unnamed enumeration
1674 /// within S6. In C++, this routine will return the scope associated
1675 /// with S6, because the enumeration's scope is a transparent
1676 /// context but structures can contain non-field names. In C, this
1677 /// routine will return the translation unit scope, since the
1678 /// enumeration's scope is a transparent context and structures cannot
1679 /// contain non-field names.
1680 Scope *Sema::getNonFieldDeclScope(Scope *S) {
1681   while (((S->getFlags() & Scope::DeclScope) == 0) ||
1682          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
1683          (S->isClassScope() && !getLangOpts().CPlusPlus))
1684     S = S->getParent();
1685   return S;
1686 }
1687 
1688 /// \brief Looks up the declaration of "struct objc_super" and
1689 /// saves it for later use in building builtin declaration of
1690 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1691 /// pre-existing declaration exists no action takes place.
1692 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1693                                         IdentifierInfo *II) {
1694   if (!II->isStr("objc_msgSendSuper"))
1695     return;
1696   ASTContext &Context = ThisSema.Context;
1697 
1698   LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1699                       SourceLocation(), Sema::LookupTagName);
1700   ThisSema.LookupName(Result, S);
1701   if (Result.getResultKind() == LookupResult::Found)
1702     if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1703       Context.setObjCSuperType(Context.getTagDeclType(TD));
1704 }
1705 
1706 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) {
1707   switch (Error) {
1708   case ASTContext::GE_None:
1709     return "";
1710   case ASTContext::GE_Missing_stdio:
1711     return "stdio.h";
1712   case ASTContext::GE_Missing_setjmp:
1713     return "setjmp.h";
1714   case ASTContext::GE_Missing_ucontext:
1715     return "ucontext.h";
1716   }
1717   llvm_unreachable("unhandled error kind");
1718 }
1719 
1720 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1721 /// file scope.  lazily create a decl for it. ForRedeclaration is true
1722 /// if we're creating this built-in in anticipation of redeclaring the
1723 /// built-in.
1724 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1725                                      Scope *S, bool ForRedeclaration,
1726                                      SourceLocation Loc) {
1727   LookupPredefedObjCSuperType(*this, S, II);
1728 
1729   ASTContext::GetBuiltinTypeError Error;
1730   QualType R = Context.GetBuiltinType(ID, Error);
1731   if (Error) {
1732     if (ForRedeclaration)
1733       Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
1734           << getHeaderName(Error) << Context.BuiltinInfo.getName(ID);
1735     return nullptr;
1736   }
1737 
1738   if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(ID)) {
1739     Diag(Loc, diag::ext_implicit_lib_function_decl)
1740         << Context.BuiltinInfo.getName(ID) << R;
1741     if (Context.BuiltinInfo.getHeaderName(ID) &&
1742         !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc))
1743       Diag(Loc, diag::note_include_header_or_declare)
1744           << Context.BuiltinInfo.getHeaderName(ID)
1745           << Context.BuiltinInfo.getName(ID);
1746   }
1747 
1748   if (R.isNull())
1749     return nullptr;
1750 
1751   DeclContext *Parent = Context.getTranslationUnitDecl();
1752   if (getLangOpts().CPlusPlus) {
1753     LinkageSpecDecl *CLinkageDecl =
1754         LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1755                                 LinkageSpecDecl::lang_c, false);
1756     CLinkageDecl->setImplicit();
1757     Parent->addDecl(CLinkageDecl);
1758     Parent = CLinkageDecl;
1759   }
1760 
1761   FunctionDecl *New = FunctionDecl::Create(Context,
1762                                            Parent,
1763                                            Loc, Loc, II, R, /*TInfo=*/nullptr,
1764                                            SC_Extern,
1765                                            false,
1766                                            R->isFunctionProtoType());
1767   New->setImplicit();
1768 
1769   // Create Decl objects for each parameter, adding them to the
1770   // FunctionDecl.
1771   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
1772     SmallVector<ParmVarDecl*, 16> Params;
1773     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1774       ParmVarDecl *parm =
1775           ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
1776                               nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
1777                               SC_None, nullptr);
1778       parm->setScopeInfo(0, i);
1779       Params.push_back(parm);
1780     }
1781     New->setParams(Params);
1782   }
1783 
1784   AddKnownFunctionAttributes(New);
1785   RegisterLocallyScopedExternCDecl(New, S);
1786 
1787   // TUScope is the translation-unit scope to insert this function into.
1788   // FIXME: This is hideous. We need to teach PushOnScopeChains to
1789   // relate Scopes to DeclContexts, and probably eliminate CurContext
1790   // entirely, but we're not there yet.
1791   DeclContext *SavedContext = CurContext;
1792   CurContext = Parent;
1793   PushOnScopeChains(New, TUScope);
1794   CurContext = SavedContext;
1795   return New;
1796 }
1797 
1798 /// Typedef declarations don't have linkage, but they still denote the same
1799 /// entity if their types are the same.
1800 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
1801 /// isSameEntity.
1802 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
1803                                                      TypedefNameDecl *Decl,
1804                                                      LookupResult &Previous) {
1805   // This is only interesting when modules are enabled.
1806   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
1807     return;
1808 
1809   // Empty sets are uninteresting.
1810   if (Previous.empty())
1811     return;
1812 
1813   LookupResult::Filter Filter = Previous.makeFilter();
1814   while (Filter.hasNext()) {
1815     NamedDecl *Old = Filter.next();
1816 
1817     // Non-hidden declarations are never ignored.
1818     if (S.isVisible(Old))
1819       continue;
1820 
1821     // Declarations of the same entity are not ignored, even if they have
1822     // different linkages.
1823     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
1824       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
1825                                 Decl->getUnderlyingType()))
1826         continue;
1827 
1828       // If both declarations give a tag declaration a typedef name for linkage
1829       // purposes, then they declare the same entity.
1830       if (S.getLangOpts().CPlusPlus &&
1831           OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
1832           Decl->getAnonDeclWithTypedefName())
1833         continue;
1834     }
1835 
1836     Filter.erase();
1837   }
1838 
1839   Filter.done();
1840 }
1841 
1842 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
1843   QualType OldType;
1844   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
1845     OldType = OldTypedef->getUnderlyingType();
1846   else
1847     OldType = Context.getTypeDeclType(Old);
1848   QualType NewType = New->getUnderlyingType();
1849 
1850   if (NewType->isVariablyModifiedType()) {
1851     // Must not redefine a typedef with a variably-modified type.
1852     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1853     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
1854       << Kind << NewType;
1855     if (Old->getLocation().isValid())
1856       Diag(Old->getLocation(), diag::note_previous_definition);
1857     New->setInvalidDecl();
1858     return true;
1859   }
1860 
1861   if (OldType != NewType &&
1862       !OldType->isDependentType() &&
1863       !NewType->isDependentType() &&
1864       !Context.hasSameType(OldType, NewType)) {
1865     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1866     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
1867       << Kind << NewType << OldType;
1868     if (Old->getLocation().isValid())
1869       Diag(Old->getLocation(), diag::note_previous_definition);
1870     New->setInvalidDecl();
1871     return true;
1872   }
1873   return false;
1874 }
1875 
1876 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
1877 /// same name and scope as a previous declaration 'Old'.  Figure out
1878 /// how to resolve this situation, merging decls or emitting
1879 /// diagnostics as appropriate. If there was an error, set New to be invalid.
1880 ///
1881 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
1882                                 LookupResult &OldDecls) {
1883   // If the new decl is known invalid already, don't bother doing any
1884   // merging checks.
1885   if (New->isInvalidDecl()) return;
1886 
1887   // Allow multiple definitions for ObjC built-in typedefs.
1888   // FIXME: Verify the underlying types are equivalent!
1889   if (getLangOpts().ObjC1) {
1890     const IdentifierInfo *TypeID = New->getIdentifier();
1891     switch (TypeID->getLength()) {
1892     default: break;
1893     case 2:
1894       {
1895         if (!TypeID->isStr("id"))
1896           break;
1897         QualType T = New->getUnderlyingType();
1898         if (!T->isPointerType())
1899           break;
1900         if (!T->isVoidPointerType()) {
1901           QualType PT = T->getAs<PointerType>()->getPointeeType();
1902           if (!PT->isStructureType())
1903             break;
1904         }
1905         Context.setObjCIdRedefinitionType(T);
1906         // Install the built-in type for 'id', ignoring the current definition.
1907         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
1908         return;
1909       }
1910     case 5:
1911       if (!TypeID->isStr("Class"))
1912         break;
1913       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
1914       // Install the built-in type for 'Class', ignoring the current definition.
1915       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
1916       return;
1917     case 3:
1918       if (!TypeID->isStr("SEL"))
1919         break;
1920       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
1921       // Install the built-in type for 'SEL', ignoring the current definition.
1922       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
1923       return;
1924     }
1925     // Fall through - the typedef name was not a builtin type.
1926   }
1927 
1928   // Verify the old decl was also a type.
1929   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
1930   if (!Old) {
1931     Diag(New->getLocation(), diag::err_redefinition_different_kind)
1932       << New->getDeclName();
1933 
1934     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
1935     if (OldD->getLocation().isValid())
1936       Diag(OldD->getLocation(), diag::note_previous_definition);
1937 
1938     return New->setInvalidDecl();
1939   }
1940 
1941   // If the old declaration is invalid, just give up here.
1942   if (Old->isInvalidDecl())
1943     return New->setInvalidDecl();
1944 
1945   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
1946     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
1947     auto *NewTag = New->getAnonDeclWithTypedefName();
1948     NamedDecl *Hidden = nullptr;
1949     if (getLangOpts().CPlusPlus && OldTag && NewTag &&
1950         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
1951         !hasVisibleDefinition(OldTag, &Hidden)) {
1952       // There is a definition of this tag, but it is not visible. Use it
1953       // instead of our tag.
1954       New->setTypeForDecl(OldTD->getTypeForDecl());
1955       if (OldTD->isModed())
1956         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
1957                                     OldTD->getUnderlyingType());
1958       else
1959         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
1960 
1961       // Make the old tag definition visible.
1962       makeMergedDefinitionVisible(Hidden, NewTag->getLocation());
1963 
1964       // If this was an unscoped enumeration, yank all of its enumerators
1965       // out of the scope.
1966       if (isa<EnumDecl>(NewTag)) {
1967         Scope *EnumScope = getNonFieldDeclScope(S);
1968         for (auto *D : NewTag->decls()) {
1969           auto *ED = cast<EnumConstantDecl>(D);
1970           assert(EnumScope->isDeclScope(ED));
1971           EnumScope->RemoveDecl(ED);
1972           IdResolver.RemoveDecl(ED);
1973           ED->getLexicalDeclContext()->removeDecl(ED);
1974         }
1975       }
1976     }
1977   }
1978 
1979   // If the typedef types are not identical, reject them in all languages and
1980   // with any extensions enabled.
1981   if (isIncompatibleTypedef(Old, New))
1982     return;
1983 
1984   // The types match.  Link up the redeclaration chain and merge attributes if
1985   // the old declaration was a typedef.
1986   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
1987     New->setPreviousDecl(Typedef);
1988     mergeDeclAttributes(New, Old);
1989   }
1990 
1991   if (getLangOpts().MicrosoftExt)
1992     return;
1993 
1994   if (getLangOpts().CPlusPlus) {
1995     // C++ [dcl.typedef]p2:
1996     //   In a given non-class scope, a typedef specifier can be used to
1997     //   redefine the name of any type declared in that scope to refer
1998     //   to the type to which it already refers.
1999     if (!isa<CXXRecordDecl>(CurContext))
2000       return;
2001 
2002     // C++0x [dcl.typedef]p4:
2003     //   In a given class scope, a typedef specifier can be used to redefine
2004     //   any class-name declared in that scope that is not also a typedef-name
2005     //   to refer to the type to which it already refers.
2006     //
2007     // This wording came in via DR424, which was a correction to the
2008     // wording in DR56, which accidentally banned code like:
2009     //
2010     //   struct S {
2011     //     typedef struct A { } A;
2012     //   };
2013     //
2014     // in the C++03 standard. We implement the C++0x semantics, which
2015     // allow the above but disallow
2016     //
2017     //   struct S {
2018     //     typedef int I;
2019     //     typedef int I;
2020     //   };
2021     //
2022     // since that was the intent of DR56.
2023     if (!isa<TypedefNameDecl>(Old))
2024       return;
2025 
2026     Diag(New->getLocation(), diag::err_redefinition)
2027       << New->getDeclName();
2028     Diag(Old->getLocation(), diag::note_previous_definition);
2029     return New->setInvalidDecl();
2030   }
2031 
2032   // Modules always permit redefinition of typedefs, as does C11.
2033   if (getLangOpts().Modules || getLangOpts().C11)
2034     return;
2035 
2036   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2037   // is normally mapped to an error, but can be controlled with
2038   // -Wtypedef-redefinition.  If either the original or the redefinition is
2039   // in a system header, don't emit this for compatibility with GCC.
2040   if (getDiagnostics().getSuppressSystemWarnings() &&
2041       (Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2042        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2043     return;
2044 
2045   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2046     << New->getDeclName();
2047   Diag(Old->getLocation(), diag::note_previous_definition);
2048 }
2049 
2050 /// DeclhasAttr - returns true if decl Declaration already has the target
2051 /// attribute.
2052 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2053   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2054   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2055   for (const auto *i : D->attrs())
2056     if (i->getKind() == A->getKind()) {
2057       if (Ann) {
2058         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2059           return true;
2060         continue;
2061       }
2062       // FIXME: Don't hardcode this check
2063       if (OA && isa<OwnershipAttr>(i))
2064         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2065       return true;
2066     }
2067 
2068   return false;
2069 }
2070 
2071 static bool isAttributeTargetADefinition(Decl *D) {
2072   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2073     return VD->isThisDeclarationADefinition();
2074   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2075     return TD->isCompleteDefinition() || TD->isBeingDefined();
2076   return true;
2077 }
2078 
2079 /// Merge alignment attributes from \p Old to \p New, taking into account the
2080 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2081 ///
2082 /// \return \c true if any attributes were added to \p New.
2083 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2084   // Look for alignas attributes on Old, and pick out whichever attribute
2085   // specifies the strictest alignment requirement.
2086   AlignedAttr *OldAlignasAttr = nullptr;
2087   AlignedAttr *OldStrictestAlignAttr = nullptr;
2088   unsigned OldAlign = 0;
2089   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2090     // FIXME: We have no way of representing inherited dependent alignments
2091     // in a case like:
2092     //   template<int A, int B> struct alignas(A) X;
2093     //   template<int A, int B> struct alignas(B) X {};
2094     // For now, we just ignore any alignas attributes which are not on the
2095     // definition in such a case.
2096     if (I->isAlignmentDependent())
2097       return false;
2098 
2099     if (I->isAlignas())
2100       OldAlignasAttr = I;
2101 
2102     unsigned Align = I->getAlignment(S.Context);
2103     if (Align > OldAlign) {
2104       OldAlign = Align;
2105       OldStrictestAlignAttr = I;
2106     }
2107   }
2108 
2109   // Look for alignas attributes on New.
2110   AlignedAttr *NewAlignasAttr = nullptr;
2111   unsigned NewAlign = 0;
2112   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2113     if (I->isAlignmentDependent())
2114       return false;
2115 
2116     if (I->isAlignas())
2117       NewAlignasAttr = I;
2118 
2119     unsigned Align = I->getAlignment(S.Context);
2120     if (Align > NewAlign)
2121       NewAlign = Align;
2122   }
2123 
2124   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2125     // Both declarations have 'alignas' attributes. We require them to match.
2126     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2127     // fall short. (If two declarations both have alignas, they must both match
2128     // every definition, and so must match each other if there is a definition.)
2129 
2130     // If either declaration only contains 'alignas(0)' specifiers, then it
2131     // specifies the natural alignment for the type.
2132     if (OldAlign == 0 || NewAlign == 0) {
2133       QualType Ty;
2134       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2135         Ty = VD->getType();
2136       else
2137         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2138 
2139       if (OldAlign == 0)
2140         OldAlign = S.Context.getTypeAlign(Ty);
2141       if (NewAlign == 0)
2142         NewAlign = S.Context.getTypeAlign(Ty);
2143     }
2144 
2145     if (OldAlign != NewAlign) {
2146       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2147         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2148         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2149       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2150     }
2151   }
2152 
2153   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2154     // C++11 [dcl.align]p6:
2155     //   if any declaration of an entity has an alignment-specifier,
2156     //   every defining declaration of that entity shall specify an
2157     //   equivalent alignment.
2158     // C11 6.7.5/7:
2159     //   If the definition of an object does not have an alignment
2160     //   specifier, any other declaration of that object shall also
2161     //   have no alignment specifier.
2162     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2163       << OldAlignasAttr;
2164     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2165       << OldAlignasAttr;
2166   }
2167 
2168   bool AnyAdded = false;
2169 
2170   // Ensure we have an attribute representing the strictest alignment.
2171   if (OldAlign > NewAlign) {
2172     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2173     Clone->setInherited(true);
2174     New->addAttr(Clone);
2175     AnyAdded = true;
2176   }
2177 
2178   // Ensure we have an alignas attribute if the old declaration had one.
2179   if (OldAlignasAttr && !NewAlignasAttr &&
2180       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2181     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2182     Clone->setInherited(true);
2183     New->addAttr(Clone);
2184     AnyAdded = true;
2185   }
2186 
2187   return AnyAdded;
2188 }
2189 
2190 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2191                                const InheritableAttr *Attr,
2192                                Sema::AvailabilityMergeKind AMK) {
2193   InheritableAttr *NewAttr = nullptr;
2194   unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
2195   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2196     NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
2197                                       AA->getIntroduced(), AA->getDeprecated(),
2198                                       AA->getObsoleted(), AA->getUnavailable(),
2199                                       AA->getMessage(), AA->getStrict(),
2200                                       AA->getReplacement(), AMK,
2201                                       AttrSpellingListIndex);
2202   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2203     NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2204                                     AttrSpellingListIndex);
2205   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2206     NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2207                                         AttrSpellingListIndex);
2208   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2209     NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
2210                                    AttrSpellingListIndex);
2211   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2212     NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
2213                                    AttrSpellingListIndex);
2214   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2215     NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
2216                                 FA->getFormatIdx(), FA->getFirstArg(),
2217                                 AttrSpellingListIndex);
2218   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2219     NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
2220                                  AttrSpellingListIndex);
2221   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2222     NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
2223                                        AttrSpellingListIndex,
2224                                        IA->getSemanticSpelling());
2225   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2226     NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(),
2227                                       &S.Context.Idents.get(AA->getSpelling()),
2228                                       AttrSpellingListIndex);
2229   else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2230     NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex);
2231   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2232     NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex);
2233   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2234     NewAttr = S.mergeInternalLinkageAttr(
2235         D, InternalLinkageA->getRange(),
2236         &S.Context.Idents.get(InternalLinkageA->getSpelling()),
2237         AttrSpellingListIndex);
2238   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2239     NewAttr = S.mergeCommonAttr(D, CommonA->getRange(),
2240                                 &S.Context.Idents.get(CommonA->getSpelling()),
2241                                 AttrSpellingListIndex);
2242   else if (isa<AlignedAttr>(Attr))
2243     // AlignedAttrs are handled separately, because we need to handle all
2244     // such attributes on a declaration at the same time.
2245     NewAttr = nullptr;
2246   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2247            (AMK == Sema::AMK_Override ||
2248             AMK == Sema::AMK_ProtocolImplementation))
2249     NewAttr = nullptr;
2250   else if (Attr->duplicatesAllowed() || !DeclHasAttr(D, Attr))
2251     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2252 
2253   if (NewAttr) {
2254     NewAttr->setInherited(true);
2255     D->addAttr(NewAttr);
2256     if (isa<MSInheritanceAttr>(NewAttr))
2257       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2258     return true;
2259   }
2260 
2261   return false;
2262 }
2263 
2264 static const Decl *getDefinition(const Decl *D) {
2265   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2266     return TD->getDefinition();
2267   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2268     const VarDecl *Def = VD->getDefinition();
2269     if (Def)
2270       return Def;
2271     return VD->getActingDefinition();
2272   }
2273   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2274     const FunctionDecl* Def;
2275     if (FD->isDefined(Def))
2276       return Def;
2277   }
2278   return nullptr;
2279 }
2280 
2281 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2282   for (const auto *Attribute : D->attrs())
2283     if (Attribute->getKind() == Kind)
2284       return true;
2285   return false;
2286 }
2287 
2288 /// checkNewAttributesAfterDef - If we already have a definition, check that
2289 /// there are no new attributes in this declaration.
2290 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2291   if (!New->hasAttrs())
2292     return;
2293 
2294   const Decl *Def = getDefinition(Old);
2295   if (!Def || Def == New)
2296     return;
2297 
2298   AttrVec &NewAttributes = New->getAttrs();
2299   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2300     const Attr *NewAttribute = NewAttributes[I];
2301 
2302     if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) {
2303       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2304         Sema::SkipBodyInfo SkipBody;
2305         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2306 
2307         // If we're skipping this definition, drop the "alias" attribute.
2308         if (SkipBody.ShouldSkip) {
2309           NewAttributes.erase(NewAttributes.begin() + I);
2310           --E;
2311           continue;
2312         }
2313       } else {
2314         VarDecl *VD = cast<VarDecl>(New);
2315         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2316                                 VarDecl::TentativeDefinition
2317                             ? diag::err_alias_after_tentative
2318                             : diag::err_redefinition;
2319         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2320         S.Diag(Def->getLocation(), diag::note_previous_definition);
2321         VD->setInvalidDecl();
2322       }
2323       ++I;
2324       continue;
2325     }
2326 
2327     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2328       // Tentative definitions are only interesting for the alias check above.
2329       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2330         ++I;
2331         continue;
2332       }
2333     }
2334 
2335     if (hasAttribute(Def, NewAttribute->getKind())) {
2336       ++I;
2337       continue; // regular attr merging will take care of validating this.
2338     }
2339 
2340     if (isa<C11NoReturnAttr>(NewAttribute)) {
2341       // C's _Noreturn is allowed to be added to a function after it is defined.
2342       ++I;
2343       continue;
2344     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2345       if (AA->isAlignas()) {
2346         // C++11 [dcl.align]p6:
2347         //   if any declaration of an entity has an alignment-specifier,
2348         //   every defining declaration of that entity shall specify an
2349         //   equivalent alignment.
2350         // C11 6.7.5/7:
2351         //   If the definition of an object does not have an alignment
2352         //   specifier, any other declaration of that object shall also
2353         //   have no alignment specifier.
2354         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2355           << AA;
2356         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2357           << AA;
2358         NewAttributes.erase(NewAttributes.begin() + I);
2359         --E;
2360         continue;
2361       }
2362     }
2363 
2364     S.Diag(NewAttribute->getLocation(),
2365            diag::warn_attribute_precede_definition);
2366     S.Diag(Def->getLocation(), diag::note_previous_definition);
2367     NewAttributes.erase(NewAttributes.begin() + I);
2368     --E;
2369   }
2370 }
2371 
2372 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2373 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2374                                AvailabilityMergeKind AMK) {
2375   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2376     UsedAttr *NewAttr = OldAttr->clone(Context);
2377     NewAttr->setInherited(true);
2378     New->addAttr(NewAttr);
2379   }
2380 
2381   if (!Old->hasAttrs() && !New->hasAttrs())
2382     return;
2383 
2384   // Attributes declared post-definition are currently ignored.
2385   checkNewAttributesAfterDef(*this, New, Old);
2386 
2387   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2388     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2389       if (OldA->getLabel() != NewA->getLabel()) {
2390         // This redeclaration changes __asm__ label.
2391         Diag(New->getLocation(), diag::err_different_asm_label);
2392         Diag(OldA->getLocation(), diag::note_previous_declaration);
2393       }
2394     } else if (Old->isUsed()) {
2395       // This redeclaration adds an __asm__ label to a declaration that has
2396       // already been ODR-used.
2397       Diag(New->getLocation(), diag::err_late_asm_label_name)
2398         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2399     }
2400   }
2401 
2402   // Re-declaration cannot add abi_tag's.
2403   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2404     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2405       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2406         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2407                       NewTag) == OldAbiTagAttr->tags_end()) {
2408           Diag(NewAbiTagAttr->getLocation(),
2409                diag::err_new_abi_tag_on_redeclaration)
2410               << NewTag;
2411           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2412         }
2413       }
2414     } else {
2415       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2416       Diag(Old->getLocation(), diag::note_previous_declaration);
2417     }
2418   }
2419 
2420   if (!Old->hasAttrs())
2421     return;
2422 
2423   bool foundAny = New->hasAttrs();
2424 
2425   // Ensure that any moving of objects within the allocated map is done before
2426   // we process them.
2427   if (!foundAny) New->setAttrs(AttrVec());
2428 
2429   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2430     // Ignore deprecated/unavailable/availability attributes if requested.
2431     AvailabilityMergeKind LocalAMK = AMK_None;
2432     if (isa<DeprecatedAttr>(I) ||
2433         isa<UnavailableAttr>(I) ||
2434         isa<AvailabilityAttr>(I)) {
2435       switch (AMK) {
2436       case AMK_None:
2437         continue;
2438 
2439       case AMK_Redeclaration:
2440       case AMK_Override:
2441       case AMK_ProtocolImplementation:
2442         LocalAMK = AMK;
2443         break;
2444       }
2445     }
2446 
2447     // Already handled.
2448     if (isa<UsedAttr>(I))
2449       continue;
2450 
2451     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2452       foundAny = true;
2453   }
2454 
2455   if (mergeAlignedAttrs(*this, New, Old))
2456     foundAny = true;
2457 
2458   if (!foundAny) New->dropAttrs();
2459 }
2460 
2461 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2462 /// to the new one.
2463 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2464                                      const ParmVarDecl *oldDecl,
2465                                      Sema &S) {
2466   // C++11 [dcl.attr.depend]p2:
2467   //   The first declaration of a function shall specify the
2468   //   carries_dependency attribute for its declarator-id if any declaration
2469   //   of the function specifies the carries_dependency attribute.
2470   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2471   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2472     S.Diag(CDA->getLocation(),
2473            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2474     // Find the first declaration of the parameter.
2475     // FIXME: Should we build redeclaration chains for function parameters?
2476     const FunctionDecl *FirstFD =
2477       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2478     const ParmVarDecl *FirstVD =
2479       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2480     S.Diag(FirstVD->getLocation(),
2481            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2482   }
2483 
2484   if (!oldDecl->hasAttrs())
2485     return;
2486 
2487   bool foundAny = newDecl->hasAttrs();
2488 
2489   // Ensure that any moving of objects within the allocated map is
2490   // done before we process them.
2491   if (!foundAny) newDecl->setAttrs(AttrVec());
2492 
2493   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2494     if (!DeclHasAttr(newDecl, I)) {
2495       InheritableAttr *newAttr =
2496         cast<InheritableParamAttr>(I->clone(S.Context));
2497       newAttr->setInherited(true);
2498       newDecl->addAttr(newAttr);
2499       foundAny = true;
2500     }
2501   }
2502 
2503   if (!foundAny) newDecl->dropAttrs();
2504 }
2505 
2506 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
2507                                 const ParmVarDecl *OldParam,
2508                                 Sema &S) {
2509   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
2510     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
2511       if (*Oldnullability != *Newnullability) {
2512         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
2513           << DiagNullabilityKind(
2514                *Newnullability,
2515                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2516                 != 0))
2517           << DiagNullabilityKind(
2518                *Oldnullability,
2519                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2520                 != 0));
2521         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
2522       }
2523     } else {
2524       QualType NewT = NewParam->getType();
2525       NewT = S.Context.getAttributedType(
2526                          AttributedType::getNullabilityAttrKind(*Oldnullability),
2527                          NewT, NewT);
2528       NewParam->setType(NewT);
2529     }
2530   }
2531 }
2532 
2533 namespace {
2534 
2535 /// Used in MergeFunctionDecl to keep track of function parameters in
2536 /// C.
2537 struct GNUCompatibleParamWarning {
2538   ParmVarDecl *OldParm;
2539   ParmVarDecl *NewParm;
2540   QualType PromotedType;
2541 };
2542 
2543 } // end anonymous namespace
2544 
2545 /// getSpecialMember - get the special member enum for a method.
2546 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
2547   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
2548     if (Ctor->isDefaultConstructor())
2549       return Sema::CXXDefaultConstructor;
2550 
2551     if (Ctor->isCopyConstructor())
2552       return Sema::CXXCopyConstructor;
2553 
2554     if (Ctor->isMoveConstructor())
2555       return Sema::CXXMoveConstructor;
2556   } else if (isa<CXXDestructorDecl>(MD)) {
2557     return Sema::CXXDestructor;
2558   } else if (MD->isCopyAssignmentOperator()) {
2559     return Sema::CXXCopyAssignment;
2560   } else if (MD->isMoveAssignmentOperator()) {
2561     return Sema::CXXMoveAssignment;
2562   }
2563 
2564   return Sema::CXXInvalid;
2565 }
2566 
2567 // Determine whether the previous declaration was a definition, implicit
2568 // declaration, or a declaration.
2569 template <typename T>
2570 static std::pair<diag::kind, SourceLocation>
2571 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
2572   diag::kind PrevDiag;
2573   SourceLocation OldLocation = Old->getLocation();
2574   if (Old->isThisDeclarationADefinition())
2575     PrevDiag = diag::note_previous_definition;
2576   else if (Old->isImplicit()) {
2577     PrevDiag = diag::note_previous_implicit_declaration;
2578     if (OldLocation.isInvalid())
2579       OldLocation = New->getLocation();
2580   } else
2581     PrevDiag = diag::note_previous_declaration;
2582   return std::make_pair(PrevDiag, OldLocation);
2583 }
2584 
2585 /// canRedefineFunction - checks if a function can be redefined. Currently,
2586 /// only extern inline functions can be redefined, and even then only in
2587 /// GNU89 mode.
2588 static bool canRedefineFunction(const FunctionDecl *FD,
2589                                 const LangOptions& LangOpts) {
2590   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2591           !LangOpts.CPlusPlus &&
2592           FD->isInlineSpecified() &&
2593           FD->getStorageClass() == SC_Extern);
2594 }
2595 
2596 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2597   const AttributedType *AT = T->getAs<AttributedType>();
2598   while (AT && !AT->isCallingConv())
2599     AT = AT->getModifiedType()->getAs<AttributedType>();
2600   return AT;
2601 }
2602 
2603 template <typename T>
2604 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
2605   const DeclContext *DC = Old->getDeclContext();
2606   if (DC->isRecord())
2607     return false;
2608 
2609   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
2610   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
2611     return true;
2612   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
2613     return true;
2614   return false;
2615 }
2616 
2617 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
2618 static bool isExternC(VarTemplateDecl *) { return false; }
2619 
2620 /// \brief Check whether a redeclaration of an entity introduced by a
2621 /// using-declaration is valid, given that we know it's not an overload
2622 /// (nor a hidden tag declaration).
2623 template<typename ExpectedDecl>
2624 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
2625                                    ExpectedDecl *New) {
2626   // C++11 [basic.scope.declarative]p4:
2627   //   Given a set of declarations in a single declarative region, each of
2628   //   which specifies the same unqualified name,
2629   //   -- they shall all refer to the same entity, or all refer to functions
2630   //      and function templates; or
2631   //   -- exactly one declaration shall declare a class name or enumeration
2632   //      name that is not a typedef name and the other declarations shall all
2633   //      refer to the same variable or enumerator, or all refer to functions
2634   //      and function templates; in this case the class name or enumeration
2635   //      name is hidden (3.3.10).
2636 
2637   // C++11 [namespace.udecl]p14:
2638   //   If a function declaration in namespace scope or block scope has the
2639   //   same name and the same parameter-type-list as a function introduced
2640   //   by a using-declaration, and the declarations do not declare the same
2641   //   function, the program is ill-formed.
2642 
2643   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
2644   if (Old &&
2645       !Old->getDeclContext()->getRedeclContext()->Equals(
2646           New->getDeclContext()->getRedeclContext()) &&
2647       !(isExternC(Old) && isExternC(New)))
2648     Old = nullptr;
2649 
2650   if (!Old) {
2651     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2652     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
2653     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2654     return true;
2655   }
2656   return false;
2657 }
2658 
2659 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
2660                                             const FunctionDecl *B) {
2661   assert(A->getNumParams() == B->getNumParams());
2662 
2663   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
2664     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
2665     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
2666     if (AttrA == AttrB)
2667       return true;
2668     return AttrA && AttrB && AttrA->getType() == AttrB->getType();
2669   };
2670 
2671   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
2672 }
2673 
2674 /// MergeFunctionDecl - We just parsed a function 'New' from
2675 /// declarator D which has the same name and scope as a previous
2676 /// declaration 'Old'.  Figure out how to resolve this situation,
2677 /// merging decls or emitting diagnostics as appropriate.
2678 ///
2679 /// In C++, New and Old must be declarations that are not
2680 /// overloaded. Use IsOverload to determine whether New and Old are
2681 /// overloaded, and to select the Old declaration that New should be
2682 /// merged with.
2683 ///
2684 /// Returns true if there was an error, false otherwise.
2685 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2686                              Scope *S, bool MergeTypeWithOld) {
2687   // Verify the old decl was also a function.
2688   FunctionDecl *Old = OldD->getAsFunction();
2689   if (!Old) {
2690     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
2691       if (New->getFriendObjectKind()) {
2692         Diag(New->getLocation(), diag::err_using_decl_friend);
2693         Diag(Shadow->getTargetDecl()->getLocation(),
2694              diag::note_using_decl_target);
2695         Diag(Shadow->getUsingDecl()->getLocation(),
2696              diag::note_using_decl) << 0;
2697         return true;
2698       }
2699 
2700       // Check whether the two declarations might declare the same function.
2701       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
2702         return true;
2703       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
2704     } else {
2705       Diag(New->getLocation(), diag::err_redefinition_different_kind)
2706         << New->getDeclName();
2707       Diag(OldD->getLocation(), diag::note_previous_definition);
2708       return true;
2709     }
2710   }
2711 
2712   // If the old declaration is invalid, just give up here.
2713   if (Old->isInvalidDecl())
2714     return true;
2715 
2716   diag::kind PrevDiag;
2717   SourceLocation OldLocation;
2718   std::tie(PrevDiag, OldLocation) =
2719       getNoteDiagForInvalidRedeclaration(Old, New);
2720 
2721   // Don't complain about this if we're in GNU89 mode and the old function
2722   // is an extern inline function.
2723   // Don't complain about specializations. They are not supposed to have
2724   // storage classes.
2725   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
2726       New->getStorageClass() == SC_Static &&
2727       Old->hasExternalFormalLinkage() &&
2728       !New->getTemplateSpecializationInfo() &&
2729       !canRedefineFunction(Old, getLangOpts())) {
2730     if (getLangOpts().MicrosoftExt) {
2731       Diag(New->getLocation(), diag::ext_static_non_static) << New;
2732       Diag(OldLocation, PrevDiag);
2733     } else {
2734       Diag(New->getLocation(), diag::err_static_non_static) << New;
2735       Diag(OldLocation, PrevDiag);
2736       return true;
2737     }
2738   }
2739 
2740   if (New->hasAttr<InternalLinkageAttr>() &&
2741       !Old->hasAttr<InternalLinkageAttr>()) {
2742     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
2743         << New->getDeclName();
2744     Diag(Old->getLocation(), diag::note_previous_definition);
2745     New->dropAttr<InternalLinkageAttr>();
2746   }
2747 
2748   // If a function is first declared with a calling convention, but is later
2749   // declared or defined without one, all following decls assume the calling
2750   // convention of the first.
2751   //
2752   // It's OK if a function is first declared without a calling convention,
2753   // but is later declared or defined with the default calling convention.
2754   //
2755   // To test if either decl has an explicit calling convention, we look for
2756   // AttributedType sugar nodes on the type as written.  If they are missing or
2757   // were canonicalized away, we assume the calling convention was implicit.
2758   //
2759   // Note also that we DO NOT return at this point, because we still have
2760   // other tests to run.
2761   QualType OldQType = Context.getCanonicalType(Old->getType());
2762   QualType NewQType = Context.getCanonicalType(New->getType());
2763   const FunctionType *OldType = cast<FunctionType>(OldQType);
2764   const FunctionType *NewType = cast<FunctionType>(NewQType);
2765   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
2766   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
2767   bool RequiresAdjustment = false;
2768 
2769   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
2770     FunctionDecl *First = Old->getFirstDecl();
2771     const FunctionType *FT =
2772         First->getType().getCanonicalType()->castAs<FunctionType>();
2773     FunctionType::ExtInfo FI = FT->getExtInfo();
2774     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
2775     if (!NewCCExplicit) {
2776       // Inherit the CC from the previous declaration if it was specified
2777       // there but not here.
2778       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
2779       RequiresAdjustment = true;
2780     } else {
2781       // Calling conventions aren't compatible, so complain.
2782       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
2783       Diag(New->getLocation(), diag::err_cconv_change)
2784         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
2785         << !FirstCCExplicit
2786         << (!FirstCCExplicit ? "" :
2787             FunctionType::getNameForCallConv(FI.getCC()));
2788 
2789       // Put the note on the first decl, since it is the one that matters.
2790       Diag(First->getLocation(), diag::note_previous_declaration);
2791       return true;
2792     }
2793   }
2794 
2795   // FIXME: diagnose the other way around?
2796   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
2797     NewTypeInfo = NewTypeInfo.withNoReturn(true);
2798     RequiresAdjustment = true;
2799   }
2800 
2801   // Merge regparm attribute.
2802   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
2803       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
2804     if (NewTypeInfo.getHasRegParm()) {
2805       Diag(New->getLocation(), diag::err_regparm_mismatch)
2806         << NewType->getRegParmType()
2807         << OldType->getRegParmType();
2808       Diag(OldLocation, diag::note_previous_declaration);
2809       return true;
2810     }
2811 
2812     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
2813     RequiresAdjustment = true;
2814   }
2815 
2816   // Merge ns_returns_retained attribute.
2817   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
2818     if (NewTypeInfo.getProducesResult()) {
2819       Diag(New->getLocation(), diag::err_returns_retained_mismatch);
2820       Diag(OldLocation, diag::note_previous_declaration);
2821       return true;
2822     }
2823 
2824     NewTypeInfo = NewTypeInfo.withProducesResult(true);
2825     RequiresAdjustment = true;
2826   }
2827 
2828   if (RequiresAdjustment) {
2829     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
2830     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
2831     New->setType(QualType(AdjustedType, 0));
2832     NewQType = Context.getCanonicalType(New->getType());
2833     NewType = cast<FunctionType>(NewQType);
2834   }
2835 
2836   // If this redeclaration makes the function inline, we may need to add it to
2837   // UndefinedButUsed.
2838   if (!Old->isInlined() && New->isInlined() &&
2839       !New->hasAttr<GNUInlineAttr>() &&
2840       !getLangOpts().GNUInline &&
2841       Old->isUsed(false) &&
2842       !Old->isDefined() && !New->isThisDeclarationADefinition())
2843     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
2844                                            SourceLocation()));
2845 
2846   // If this redeclaration makes it newly gnu_inline, we don't want to warn
2847   // about it.
2848   if (New->hasAttr<GNUInlineAttr>() &&
2849       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
2850     UndefinedButUsed.erase(Old->getCanonicalDecl());
2851   }
2852 
2853   // If pass_object_size params don't match up perfectly, this isn't a valid
2854   // redeclaration.
2855   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
2856       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
2857     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
2858         << New->getDeclName();
2859     Diag(OldLocation, PrevDiag) << Old << Old->getType();
2860     return true;
2861   }
2862 
2863   if (getLangOpts().CPlusPlus) {
2864     // (C++98 13.1p2):
2865     //   Certain function declarations cannot be overloaded:
2866     //     -- Function declarations that differ only in the return type
2867     //        cannot be overloaded.
2868 
2869     // Go back to the type source info to compare the declared return types,
2870     // per C++1y [dcl.type.auto]p13:
2871     //   Redeclarations or specializations of a function or function template
2872     //   with a declared return type that uses a placeholder type shall also
2873     //   use that placeholder, not a deduced type.
2874     QualType OldDeclaredReturnType =
2875         (Old->getTypeSourceInfo()
2876              ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2877              : OldType)->getReturnType();
2878     QualType NewDeclaredReturnType =
2879         (New->getTypeSourceInfo()
2880              ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2881              : NewType)->getReturnType();
2882     QualType ResQT;
2883     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
2884         !((NewQType->isDependentType() || OldQType->isDependentType()) &&
2885           New->isLocalExternDecl())) {
2886       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
2887           OldDeclaredReturnType->isObjCObjectPointerType())
2888         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
2889       if (ResQT.isNull()) {
2890         if (New->isCXXClassMember() && New->isOutOfLine())
2891           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
2892               << New << New->getReturnTypeSourceRange();
2893         else
2894           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
2895               << New->getReturnTypeSourceRange();
2896         Diag(OldLocation, PrevDiag) << Old << Old->getType()
2897                                     << Old->getReturnTypeSourceRange();
2898         return true;
2899       }
2900       else
2901         NewQType = ResQT;
2902     }
2903 
2904     QualType OldReturnType = OldType->getReturnType();
2905     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
2906     if (OldReturnType != NewReturnType) {
2907       // If this function has a deduced return type and has already been
2908       // defined, copy the deduced value from the old declaration.
2909       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
2910       if (OldAT && OldAT->isDeduced()) {
2911         New->setType(
2912             SubstAutoType(New->getType(),
2913                           OldAT->isDependentType() ? Context.DependentTy
2914                                                    : OldAT->getDeducedType()));
2915         NewQType = Context.getCanonicalType(
2916             SubstAutoType(NewQType,
2917                           OldAT->isDependentType() ? Context.DependentTy
2918                                                    : OldAT->getDeducedType()));
2919       }
2920     }
2921 
2922     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
2923     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
2924     if (OldMethod && NewMethod) {
2925       // Preserve triviality.
2926       NewMethod->setTrivial(OldMethod->isTrivial());
2927 
2928       // MSVC allows explicit template specialization at class scope:
2929       // 2 CXXMethodDecls referring to the same function will be injected.
2930       // We don't want a redeclaration error.
2931       bool IsClassScopeExplicitSpecialization =
2932                               OldMethod->isFunctionTemplateSpecialization() &&
2933                               NewMethod->isFunctionTemplateSpecialization();
2934       bool isFriend = NewMethod->getFriendObjectKind();
2935 
2936       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
2937           !IsClassScopeExplicitSpecialization) {
2938         //    -- Member function declarations with the same name and the
2939         //       same parameter types cannot be overloaded if any of them
2940         //       is a static member function declaration.
2941         if (OldMethod->isStatic() != NewMethod->isStatic()) {
2942           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
2943           Diag(OldLocation, PrevDiag) << Old << Old->getType();
2944           return true;
2945         }
2946 
2947         // C++ [class.mem]p1:
2948         //   [...] A member shall not be declared twice in the
2949         //   member-specification, except that a nested class or member
2950         //   class template can be declared and then later defined.
2951         if (ActiveTemplateInstantiations.empty()) {
2952           unsigned NewDiag;
2953           if (isa<CXXConstructorDecl>(OldMethod))
2954             NewDiag = diag::err_constructor_redeclared;
2955           else if (isa<CXXDestructorDecl>(NewMethod))
2956             NewDiag = diag::err_destructor_redeclared;
2957           else if (isa<CXXConversionDecl>(NewMethod))
2958             NewDiag = diag::err_conv_function_redeclared;
2959           else
2960             NewDiag = diag::err_member_redeclared;
2961 
2962           Diag(New->getLocation(), NewDiag);
2963         } else {
2964           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
2965             << New << New->getType();
2966         }
2967         Diag(OldLocation, PrevDiag) << Old << Old->getType();
2968         return true;
2969 
2970       // Complain if this is an explicit declaration of a special
2971       // member that was initially declared implicitly.
2972       //
2973       // As an exception, it's okay to befriend such methods in order
2974       // to permit the implicit constructor/destructor/operator calls.
2975       } else if (OldMethod->isImplicit()) {
2976         if (isFriend) {
2977           NewMethod->setImplicit();
2978         } else {
2979           Diag(NewMethod->getLocation(),
2980                diag::err_definition_of_implicitly_declared_member)
2981             << New << getSpecialMember(OldMethod);
2982           return true;
2983         }
2984       } else if (OldMethod->isExplicitlyDefaulted() && !isFriend) {
2985         Diag(NewMethod->getLocation(),
2986              diag::err_definition_of_explicitly_defaulted_member)
2987           << getSpecialMember(OldMethod);
2988         return true;
2989       }
2990     }
2991 
2992     // C++11 [dcl.attr.noreturn]p1:
2993     //   The first declaration of a function shall specify the noreturn
2994     //   attribute if any declaration of that function specifies the noreturn
2995     //   attribute.
2996     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
2997     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
2998       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
2999       Diag(Old->getFirstDecl()->getLocation(),
3000            diag::note_noreturn_missing_first_decl);
3001     }
3002 
3003     // C++11 [dcl.attr.depend]p2:
3004     //   The first declaration of a function shall specify the
3005     //   carries_dependency attribute for its declarator-id if any declaration
3006     //   of the function specifies the carries_dependency attribute.
3007     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3008     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3009       Diag(CDA->getLocation(),
3010            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3011       Diag(Old->getFirstDecl()->getLocation(),
3012            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3013     }
3014 
3015     // (C++98 8.3.5p3):
3016     //   All declarations for a function shall agree exactly in both the
3017     //   return type and the parameter-type-list.
3018     // We also want to respect all the extended bits except noreturn.
3019 
3020     // noreturn should now match unless the old type info didn't have it.
3021     QualType OldQTypeForComparison = OldQType;
3022     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3023       assert(OldQType == QualType(OldType, 0));
3024       const FunctionType *OldTypeForComparison
3025         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3026       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3027       assert(OldQTypeForComparison.isCanonical());
3028     }
3029 
3030     if (haveIncompatibleLanguageLinkages(Old, New)) {
3031       // As a special case, retain the language linkage from previous
3032       // declarations of a friend function as an extension.
3033       //
3034       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3035       // and is useful because there's otherwise no way to specify language
3036       // linkage within class scope.
3037       //
3038       // Check cautiously as the friend object kind isn't yet complete.
3039       if (New->getFriendObjectKind() != Decl::FOK_None) {
3040         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3041         Diag(OldLocation, PrevDiag);
3042       } else {
3043         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3044         Diag(OldLocation, PrevDiag);
3045         return true;
3046       }
3047     }
3048 
3049     if (OldQTypeForComparison == NewQType)
3050       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3051 
3052     if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
3053         New->isLocalExternDecl()) {
3054       // It's OK if we couldn't merge types for a local function declaraton
3055       // if either the old or new type is dependent. We'll merge the types
3056       // when we instantiate the function.
3057       return false;
3058     }
3059 
3060     // Fall through for conflicting redeclarations and redefinitions.
3061   }
3062 
3063   // C: Function types need to be compatible, not identical. This handles
3064   // duplicate function decls like "void f(int); void f(enum X);" properly.
3065   if (!getLangOpts().CPlusPlus &&
3066       Context.typesAreCompatible(OldQType, NewQType)) {
3067     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3068     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3069     const FunctionProtoType *OldProto = nullptr;
3070     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3071         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3072       // The old declaration provided a function prototype, but the
3073       // new declaration does not. Merge in the prototype.
3074       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3075       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3076       NewQType =
3077           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3078                                   OldProto->getExtProtoInfo());
3079       New->setType(NewQType);
3080       New->setHasInheritedPrototype();
3081 
3082       // Synthesize parameters with the same types.
3083       SmallVector<ParmVarDecl*, 16> Params;
3084       for (const auto &ParamType : OldProto->param_types()) {
3085         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3086                                                  SourceLocation(), nullptr,
3087                                                  ParamType, /*TInfo=*/nullptr,
3088                                                  SC_None, nullptr);
3089         Param->setScopeInfo(0, Params.size());
3090         Param->setImplicit();
3091         Params.push_back(Param);
3092       }
3093 
3094       New->setParams(Params);
3095     }
3096 
3097     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3098   }
3099 
3100   // GNU C permits a K&R definition to follow a prototype declaration
3101   // if the declared types of the parameters in the K&R definition
3102   // match the types in the prototype declaration, even when the
3103   // promoted types of the parameters from the K&R definition differ
3104   // from the types in the prototype. GCC then keeps the types from
3105   // the prototype.
3106   //
3107   // If a variadic prototype is followed by a non-variadic K&R definition,
3108   // the K&R definition becomes variadic.  This is sort of an edge case, but
3109   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3110   // C99 6.9.1p8.
3111   if (!getLangOpts().CPlusPlus &&
3112       Old->hasPrototype() && !New->hasPrototype() &&
3113       New->getType()->getAs<FunctionProtoType>() &&
3114       Old->getNumParams() == New->getNumParams()) {
3115     SmallVector<QualType, 16> ArgTypes;
3116     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3117     const FunctionProtoType *OldProto
3118       = Old->getType()->getAs<FunctionProtoType>();
3119     const FunctionProtoType *NewProto
3120       = New->getType()->getAs<FunctionProtoType>();
3121 
3122     // Determine whether this is the GNU C extension.
3123     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3124                                                NewProto->getReturnType());
3125     bool LooseCompatible = !MergedReturn.isNull();
3126     for (unsigned Idx = 0, End = Old->getNumParams();
3127          LooseCompatible && Idx != End; ++Idx) {
3128       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3129       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3130       if (Context.typesAreCompatible(OldParm->getType(),
3131                                      NewProto->getParamType(Idx))) {
3132         ArgTypes.push_back(NewParm->getType());
3133       } else if (Context.typesAreCompatible(OldParm->getType(),
3134                                             NewParm->getType(),
3135                                             /*CompareUnqualified=*/true)) {
3136         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3137                                            NewProto->getParamType(Idx) };
3138         Warnings.push_back(Warn);
3139         ArgTypes.push_back(NewParm->getType());
3140       } else
3141         LooseCompatible = false;
3142     }
3143 
3144     if (LooseCompatible) {
3145       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3146         Diag(Warnings[Warn].NewParm->getLocation(),
3147              diag::ext_param_promoted_not_compatible_with_prototype)
3148           << Warnings[Warn].PromotedType
3149           << Warnings[Warn].OldParm->getType();
3150         if (Warnings[Warn].OldParm->getLocation().isValid())
3151           Diag(Warnings[Warn].OldParm->getLocation(),
3152                diag::note_previous_declaration);
3153       }
3154 
3155       if (MergeTypeWithOld)
3156         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3157                                              OldProto->getExtProtoInfo()));
3158       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3159     }
3160 
3161     // Fall through to diagnose conflicting types.
3162   }
3163 
3164   // A function that has already been declared has been redeclared or
3165   // defined with a different type; show an appropriate diagnostic.
3166 
3167   // If the previous declaration was an implicitly-generated builtin
3168   // declaration, then at the very least we should use a specialized note.
3169   unsigned BuiltinID;
3170   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3171     // If it's actually a library-defined builtin function like 'malloc'
3172     // or 'printf', just warn about the incompatible redeclaration.
3173     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3174       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3175       Diag(OldLocation, diag::note_previous_builtin_declaration)
3176         << Old << Old->getType();
3177 
3178       // If this is a global redeclaration, just forget hereafter
3179       // about the "builtin-ness" of the function.
3180       //
3181       // Doing this for local extern declarations is problematic.  If
3182       // the builtin declaration remains visible, a second invalid
3183       // local declaration will produce a hard error; if it doesn't
3184       // remain visible, a single bogus local redeclaration (which is
3185       // actually only a warning) could break all the downstream code.
3186       if (!New->getLexicalDeclContext()->isFunctionOrMethod())
3187         New->getIdentifier()->revertBuiltin();
3188 
3189       return false;
3190     }
3191 
3192     PrevDiag = diag::note_previous_builtin_declaration;
3193   }
3194 
3195   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3196   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3197   return true;
3198 }
3199 
3200 /// \brief Completes the merge of two function declarations that are
3201 /// known to be compatible.
3202 ///
3203 /// This routine handles the merging of attributes and other
3204 /// properties of function declarations from the old declaration to
3205 /// the new declaration, once we know that New is in fact a
3206 /// redeclaration of Old.
3207 ///
3208 /// \returns false
3209 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3210                                         Scope *S, bool MergeTypeWithOld) {
3211   // Merge the attributes
3212   mergeDeclAttributes(New, Old);
3213 
3214   // Merge "pure" flag.
3215   if (Old->isPure())
3216     New->setPure();
3217 
3218   // Merge "used" flag.
3219   if (Old->getMostRecentDecl()->isUsed(false))
3220     New->setIsUsed();
3221 
3222   // Merge attributes from the parameters.  These can mismatch with K&R
3223   // declarations.
3224   if (New->getNumParams() == Old->getNumParams())
3225       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3226         ParmVarDecl *NewParam = New->getParamDecl(i);
3227         ParmVarDecl *OldParam = Old->getParamDecl(i);
3228         mergeParamDeclAttributes(NewParam, OldParam, *this);
3229         mergeParamDeclTypes(NewParam, OldParam, *this);
3230       }
3231 
3232   if (getLangOpts().CPlusPlus)
3233     return MergeCXXFunctionDecl(New, Old, S);
3234 
3235   // Merge the function types so the we get the composite types for the return
3236   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3237   // was visible.
3238   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3239   if (!Merged.isNull() && MergeTypeWithOld)
3240     New->setType(Merged);
3241 
3242   return false;
3243 }
3244 
3245 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3246                                 ObjCMethodDecl *oldMethod) {
3247   // Merge the attributes, including deprecated/unavailable
3248   AvailabilityMergeKind MergeKind =
3249     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3250       ? AMK_ProtocolImplementation
3251       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3252                                                        : AMK_Override;
3253 
3254   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3255 
3256   // Merge attributes from the parameters.
3257   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3258                                        oe = oldMethod->param_end();
3259   for (ObjCMethodDecl::param_iterator
3260          ni = newMethod->param_begin(), ne = newMethod->param_end();
3261        ni != ne && oi != oe; ++ni, ++oi)
3262     mergeParamDeclAttributes(*ni, *oi, *this);
3263 
3264   CheckObjCMethodOverride(newMethod, oldMethod);
3265 }
3266 
3267 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3268   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3269 
3270   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3271          ? diag::err_redefinition_different_type
3272          : diag::err_redeclaration_different_type)
3273     << New->getDeclName() << New->getType() << Old->getType();
3274 
3275   diag::kind PrevDiag;
3276   SourceLocation OldLocation;
3277   std::tie(PrevDiag, OldLocation)
3278     = getNoteDiagForInvalidRedeclaration(Old, New);
3279   S.Diag(OldLocation, PrevDiag);
3280   New->setInvalidDecl();
3281 }
3282 
3283 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3284 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3285 /// emitting diagnostics as appropriate.
3286 ///
3287 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3288 /// to here in AddInitializerToDecl. We can't check them before the initializer
3289 /// is attached.
3290 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3291                              bool MergeTypeWithOld) {
3292   if (New->isInvalidDecl() || Old->isInvalidDecl())
3293     return;
3294 
3295   QualType MergedT;
3296   if (getLangOpts().CPlusPlus) {
3297     if (New->getType()->isUndeducedType()) {
3298       // We don't know what the new type is until the initializer is attached.
3299       return;
3300     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3301       // These could still be something that needs exception specs checked.
3302       return MergeVarDeclExceptionSpecs(New, Old);
3303     }
3304     // C++ [basic.link]p10:
3305     //   [...] the types specified by all declarations referring to a given
3306     //   object or function shall be identical, except that declarations for an
3307     //   array object can specify array types that differ by the presence or
3308     //   absence of a major array bound (8.3.4).
3309     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3310       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3311       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3312 
3313       // We are merging a variable declaration New into Old. If it has an array
3314       // bound, and that bound differs from Old's bound, we should diagnose the
3315       // mismatch.
3316       if (!NewArray->isIncompleteArrayType()) {
3317         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3318              PrevVD = PrevVD->getPreviousDecl()) {
3319           const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType());
3320           if (PrevVDTy->isIncompleteArrayType())
3321             continue;
3322 
3323           if (!Context.hasSameType(NewArray, PrevVDTy))
3324             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3325         }
3326       }
3327 
3328       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3329         if (Context.hasSameType(OldArray->getElementType(),
3330                                 NewArray->getElementType()))
3331           MergedT = New->getType();
3332       }
3333       // FIXME: Check visibility. New is hidden but has a complete type. If New
3334       // has no array bound, it should not inherit one from Old, if Old is not
3335       // visible.
3336       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3337         if (Context.hasSameType(OldArray->getElementType(),
3338                                 NewArray->getElementType()))
3339           MergedT = Old->getType();
3340       }
3341     }
3342     else if (New->getType()->isObjCObjectPointerType() &&
3343                Old->getType()->isObjCObjectPointerType()) {
3344       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3345                                               Old->getType());
3346     }
3347   } else {
3348     // C 6.2.7p2:
3349     //   All declarations that refer to the same object or function shall have
3350     //   compatible type.
3351     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3352   }
3353   if (MergedT.isNull()) {
3354     // It's OK if we couldn't merge types if either type is dependent, for a
3355     // block-scope variable. In other cases (static data members of class
3356     // templates, variable templates, ...), we require the types to be
3357     // equivalent.
3358     // FIXME: The C++ standard doesn't say anything about this.
3359     if ((New->getType()->isDependentType() ||
3360          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3361       // If the old type was dependent, we can't merge with it, so the new type
3362       // becomes dependent for now. We'll reproduce the original type when we
3363       // instantiate the TypeSourceInfo for the variable.
3364       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3365         New->setType(Context.DependentTy);
3366       return;
3367     }
3368     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3369   }
3370 
3371   // Don't actually update the type on the new declaration if the old
3372   // declaration was an extern declaration in a different scope.
3373   if (MergeTypeWithOld)
3374     New->setType(MergedT);
3375 }
3376 
3377 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3378                                   LookupResult &Previous) {
3379   // C11 6.2.7p4:
3380   //   For an identifier with internal or external linkage declared
3381   //   in a scope in which a prior declaration of that identifier is
3382   //   visible, if the prior declaration specifies internal or
3383   //   external linkage, the type of the identifier at the later
3384   //   declaration becomes the composite type.
3385   //
3386   // If the variable isn't visible, we do not merge with its type.
3387   if (Previous.isShadowed())
3388     return false;
3389 
3390   if (S.getLangOpts().CPlusPlus) {
3391     // C++11 [dcl.array]p3:
3392     //   If there is a preceding declaration of the entity in the same
3393     //   scope in which the bound was specified, an omitted array bound
3394     //   is taken to be the same as in that earlier declaration.
3395     return NewVD->isPreviousDeclInSameBlockScope() ||
3396            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
3397             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
3398   } else {
3399     // If the old declaration was function-local, don't merge with its
3400     // type unless we're in the same function.
3401     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
3402            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
3403   }
3404 }
3405 
3406 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
3407 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
3408 /// situation, merging decls or emitting diagnostics as appropriate.
3409 ///
3410 /// Tentative definition rules (C99 6.9.2p2) are checked by
3411 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
3412 /// definitions here, since the initializer hasn't been attached.
3413 ///
3414 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
3415   // If the new decl is already invalid, don't do any other checking.
3416   if (New->isInvalidDecl())
3417     return;
3418 
3419   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
3420     return;
3421 
3422   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
3423 
3424   // Verify the old decl was also a variable or variable template.
3425   VarDecl *Old = nullptr;
3426   VarTemplateDecl *OldTemplate = nullptr;
3427   if (Previous.isSingleResult()) {
3428     if (NewTemplate) {
3429       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
3430       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
3431 
3432       if (auto *Shadow =
3433               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3434         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
3435           return New->setInvalidDecl();
3436     } else {
3437       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
3438 
3439       if (auto *Shadow =
3440               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3441         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
3442           return New->setInvalidDecl();
3443     }
3444   }
3445   if (!Old) {
3446     Diag(New->getLocation(), diag::err_redefinition_different_kind)
3447       << New->getDeclName();
3448     Diag(Previous.getRepresentativeDecl()->getLocation(),
3449          diag::note_previous_definition);
3450     return New->setInvalidDecl();
3451   }
3452 
3453   // Ensure the template parameters are compatible.
3454   if (NewTemplate &&
3455       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
3456                                       OldTemplate->getTemplateParameters(),
3457                                       /*Complain=*/true, TPL_TemplateMatch))
3458     return New->setInvalidDecl();
3459 
3460   // C++ [class.mem]p1:
3461   //   A member shall not be declared twice in the member-specification [...]
3462   //
3463   // Here, we need only consider static data members.
3464   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3465     Diag(New->getLocation(), diag::err_duplicate_member)
3466       << New->getIdentifier();
3467     Diag(Old->getLocation(), diag::note_previous_declaration);
3468     New->setInvalidDecl();
3469   }
3470 
3471   mergeDeclAttributes(New, Old);
3472   // Warn if an already-declared variable is made a weak_import in a subsequent
3473   // declaration
3474   if (New->hasAttr<WeakImportAttr>() &&
3475       Old->getStorageClass() == SC_None &&
3476       !Old->hasAttr<WeakImportAttr>()) {
3477     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3478     Diag(Old->getLocation(), diag::note_previous_definition);
3479     // Remove weak_import attribute on new declaration.
3480     New->dropAttr<WeakImportAttr>();
3481   }
3482 
3483   if (New->hasAttr<InternalLinkageAttr>() &&
3484       !Old->hasAttr<InternalLinkageAttr>()) {
3485     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3486         << New->getDeclName();
3487     Diag(Old->getLocation(), diag::note_previous_definition);
3488     New->dropAttr<InternalLinkageAttr>();
3489   }
3490 
3491   // Merge the types.
3492   VarDecl *MostRecent = Old->getMostRecentDecl();
3493   if (MostRecent != Old) {
3494     MergeVarDeclTypes(New, MostRecent,
3495                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
3496     if (New->isInvalidDecl())
3497       return;
3498   }
3499 
3500   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3501   if (New->isInvalidDecl())
3502     return;
3503 
3504   diag::kind PrevDiag;
3505   SourceLocation OldLocation;
3506   std::tie(PrevDiag, OldLocation) =
3507       getNoteDiagForInvalidRedeclaration(Old, New);
3508 
3509   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
3510   if (New->getStorageClass() == SC_Static &&
3511       !New->isStaticDataMember() &&
3512       Old->hasExternalFormalLinkage()) {
3513     if (getLangOpts().MicrosoftExt) {
3514       Diag(New->getLocation(), diag::ext_static_non_static)
3515           << New->getDeclName();
3516       Diag(OldLocation, PrevDiag);
3517     } else {
3518       Diag(New->getLocation(), diag::err_static_non_static)
3519           << New->getDeclName();
3520       Diag(OldLocation, PrevDiag);
3521       return New->setInvalidDecl();
3522     }
3523   }
3524   // C99 6.2.2p4:
3525   //   For an identifier declared with the storage-class specifier
3526   //   extern in a scope in which a prior declaration of that
3527   //   identifier is visible,23) if the prior declaration specifies
3528   //   internal or external linkage, the linkage of the identifier at
3529   //   the later declaration is the same as the linkage specified at
3530   //   the prior declaration. If no prior declaration is visible, or
3531   //   if the prior declaration specifies no linkage, then the
3532   //   identifier has external linkage.
3533   if (New->hasExternalStorage() && Old->hasLinkage())
3534     /* Okay */;
3535   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
3536            !New->isStaticDataMember() &&
3537            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
3538     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
3539     Diag(OldLocation, PrevDiag);
3540     return New->setInvalidDecl();
3541   }
3542 
3543   // Check if extern is followed by non-extern and vice-versa.
3544   if (New->hasExternalStorage() &&
3545       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
3546     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3547     Diag(OldLocation, PrevDiag);
3548     return New->setInvalidDecl();
3549   }
3550   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
3551       !New->hasExternalStorage()) {
3552     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3553     Diag(OldLocation, PrevDiag);
3554     return New->setInvalidDecl();
3555   }
3556 
3557   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
3558 
3559   // FIXME: The test for external storage here seems wrong? We still
3560   // need to check for mismatches.
3561   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
3562       // Don't complain about out-of-line definitions of static members.
3563       !(Old->getLexicalDeclContext()->isRecord() &&
3564         !New->getLexicalDeclContext()->isRecord())) {
3565     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
3566     Diag(OldLocation, PrevDiag);
3567     return New->setInvalidDecl();
3568   }
3569 
3570   if (New->getTLSKind() != Old->getTLSKind()) {
3571     if (!Old->getTLSKind()) {
3572       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3573       Diag(OldLocation, PrevDiag);
3574     } else if (!New->getTLSKind()) {
3575       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3576       Diag(OldLocation, PrevDiag);
3577     } else {
3578       // Do not allow redeclaration to change the variable between requiring
3579       // static and dynamic initialization.
3580       // FIXME: GCC allows this, but uses the TLS keyword on the first
3581       // declaration to determine the kind. Do we need to be compatible here?
3582       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3583         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3584       Diag(OldLocation, PrevDiag);
3585     }
3586   }
3587 
3588   // C++ doesn't have tentative definitions, so go right ahead and check here.
3589   VarDecl *Def;
3590   if (getLangOpts().CPlusPlus &&
3591       New->isThisDeclarationADefinition() == VarDecl::Definition &&
3592       (Def = Old->getDefinition())) {
3593     NamedDecl *Hidden = nullptr;
3594     if (!hasVisibleDefinition(Def, &Hidden) &&
3595         (New->getFormalLinkage() == InternalLinkage ||
3596          New->getDescribedVarTemplate() ||
3597          New->getNumTemplateParameterLists() ||
3598          New->getDeclContext()->isDependentContext())) {
3599       // The previous definition is hidden, and multiple definitions are
3600       // permitted (in separate TUs). Form another definition of it.
3601     } else {
3602       Diag(New->getLocation(), diag::err_redefinition) << New;
3603       Diag(Def->getLocation(), diag::note_previous_definition);
3604       New->setInvalidDecl();
3605       return;
3606     }
3607   }
3608 
3609   if (haveIncompatibleLanguageLinkages(Old, New)) {
3610     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3611     Diag(OldLocation, PrevDiag);
3612     New->setInvalidDecl();
3613     return;
3614   }
3615 
3616   // Merge "used" flag.
3617   if (Old->getMostRecentDecl()->isUsed(false))
3618     New->setIsUsed();
3619 
3620   // Keep a chain of previous declarations.
3621   New->setPreviousDecl(Old);
3622   if (NewTemplate)
3623     NewTemplate->setPreviousDecl(OldTemplate);
3624 
3625   // Inherit access appropriately.
3626   New->setAccess(Old->getAccess());
3627   if (NewTemplate)
3628     NewTemplate->setAccess(New->getAccess());
3629 }
3630 
3631 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
3632 /// no declarator (e.g. "struct foo;") is parsed.
3633 Decl *
3634 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
3635                                  RecordDecl *&AnonRecord) {
3636   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
3637                                     AnonRecord);
3638 }
3639 
3640 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
3641 // disambiguate entities defined in different scopes.
3642 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
3643 // compatibility.
3644 // We will pick our mangling number depending on which version of MSVC is being
3645 // targeted.
3646 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
3647   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
3648              ? S->getMSCurManglingNumber()
3649              : S->getMSLastManglingNumber();
3650 }
3651 
3652 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
3653   if (!Context.getLangOpts().CPlusPlus)
3654     return;
3655 
3656   if (isa<CXXRecordDecl>(Tag->getParent())) {
3657     // If this tag is the direct child of a class, number it if
3658     // it is anonymous.
3659     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
3660       return;
3661     MangleNumberingContext &MCtx =
3662         Context.getManglingNumberContext(Tag->getParent());
3663     Context.setManglingNumber(
3664         Tag, MCtx.getManglingNumber(
3665                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
3666     return;
3667   }
3668 
3669   // If this tag isn't a direct child of a class, number it if it is local.
3670   Decl *ManglingContextDecl;
3671   if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
3672           Tag->getDeclContext(), ManglingContextDecl)) {
3673     Context.setManglingNumber(
3674         Tag, MCtx->getManglingNumber(
3675                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
3676   }
3677 }
3678 
3679 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
3680                                         TypedefNameDecl *NewTD) {
3681   if (TagFromDeclSpec->isInvalidDecl())
3682     return;
3683 
3684   // Do nothing if the tag already has a name for linkage purposes.
3685   if (TagFromDeclSpec->hasNameForLinkage())
3686     return;
3687 
3688   // A well-formed anonymous tag must always be a TUK_Definition.
3689   assert(TagFromDeclSpec->isThisDeclarationADefinition());
3690 
3691   // The type must match the tag exactly;  no qualifiers allowed.
3692   if (!Context.hasSameType(NewTD->getUnderlyingType(),
3693                            Context.getTagDeclType(TagFromDeclSpec))) {
3694     if (getLangOpts().CPlusPlus)
3695       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
3696     return;
3697   }
3698 
3699   // If we've already computed linkage for the anonymous tag, then
3700   // adding a typedef name for the anonymous decl can change that
3701   // linkage, which might be a serious problem.  Diagnose this as
3702   // unsupported and ignore the typedef name.  TODO: we should
3703   // pursue this as a language defect and establish a formal rule
3704   // for how to handle it.
3705   if (TagFromDeclSpec->hasLinkageBeenComputed()) {
3706     Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage);
3707 
3708     SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart();
3709     tagLoc = getLocForEndOfToken(tagLoc);
3710 
3711     llvm::SmallString<40> textToInsert;
3712     textToInsert += ' ';
3713     textToInsert += NewTD->getIdentifier()->getName();
3714     Diag(tagLoc, diag::note_typedef_changes_linkage)
3715         << FixItHint::CreateInsertion(tagLoc, textToInsert);
3716     return;
3717   }
3718 
3719   // Otherwise, set this is the anon-decl typedef for the tag.
3720   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
3721 }
3722 
3723 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
3724   switch (T) {
3725   case DeclSpec::TST_class:
3726     return 0;
3727   case DeclSpec::TST_struct:
3728     return 1;
3729   case DeclSpec::TST_interface:
3730     return 2;
3731   case DeclSpec::TST_union:
3732     return 3;
3733   case DeclSpec::TST_enum:
3734     return 4;
3735   default:
3736     llvm_unreachable("unexpected type specifier");
3737   }
3738 }
3739 
3740 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
3741 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
3742 /// parameters to cope with template friend declarations.
3743 Decl *
3744 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
3745                                  MultiTemplateParamsArg TemplateParams,
3746                                  bool IsExplicitInstantiation,
3747                                  RecordDecl *&AnonRecord) {
3748   Decl *TagD = nullptr;
3749   TagDecl *Tag = nullptr;
3750   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
3751       DS.getTypeSpecType() == DeclSpec::TST_struct ||
3752       DS.getTypeSpecType() == DeclSpec::TST_interface ||
3753       DS.getTypeSpecType() == DeclSpec::TST_union ||
3754       DS.getTypeSpecType() == DeclSpec::TST_enum) {
3755     TagD = DS.getRepAsDecl();
3756 
3757     if (!TagD) // We probably had an error
3758       return nullptr;
3759 
3760     // Note that the above type specs guarantee that the
3761     // type rep is a Decl, whereas in many of the others
3762     // it's a Type.
3763     if (isa<TagDecl>(TagD))
3764       Tag = cast<TagDecl>(TagD);
3765     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
3766       Tag = CTD->getTemplatedDecl();
3767   }
3768 
3769   if (Tag) {
3770     handleTagNumbering(Tag, S);
3771     Tag->setFreeStanding();
3772     if (Tag->isInvalidDecl())
3773       return Tag;
3774   }
3775 
3776   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
3777     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
3778     // or incomplete types shall not be restrict-qualified."
3779     if (TypeQuals & DeclSpec::TQ_restrict)
3780       Diag(DS.getRestrictSpecLoc(),
3781            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
3782            << DS.getSourceRange();
3783   }
3784 
3785   if (DS.isConstexprSpecified()) {
3786     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
3787     // and definitions of functions and variables.
3788     if (Tag)
3789       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
3790           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType());
3791     else
3792       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
3793     // Don't emit warnings after this error.
3794     return TagD;
3795   }
3796 
3797   if (DS.isConceptSpecified()) {
3798     // C++ Concepts TS [dcl.spec.concept]p1: A concept definition refers to
3799     // either a function concept and its definition or a variable concept and
3800     // its initializer.
3801     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
3802     return TagD;
3803   }
3804 
3805   DiagnoseFunctionSpecifiers(DS);
3806 
3807   if (DS.isFriendSpecified()) {
3808     // If we're dealing with a decl but not a TagDecl, assume that
3809     // whatever routines created it handled the friendship aspect.
3810     if (TagD && !Tag)
3811       return nullptr;
3812     return ActOnFriendTypeDecl(S, DS, TemplateParams);
3813   }
3814 
3815   const CXXScopeSpec &SS = DS.getTypeSpecScope();
3816   bool IsExplicitSpecialization =
3817     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
3818   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
3819       !IsExplicitInstantiation && !IsExplicitSpecialization &&
3820       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
3821     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
3822     // nested-name-specifier unless it is an explicit instantiation
3823     // or an explicit specialization.
3824     //
3825     // FIXME: We allow class template partial specializations here too, per the
3826     // obvious intent of DR1819.
3827     //
3828     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
3829     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
3830         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
3831     return nullptr;
3832   }
3833 
3834   // Track whether this decl-specifier declares anything.
3835   bool DeclaresAnything = true;
3836 
3837   // Handle anonymous struct definitions.
3838   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
3839     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
3840         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
3841       if (getLangOpts().CPlusPlus ||
3842           Record->getDeclContext()->isRecord()) {
3843         // If CurContext is a DeclContext that can contain statements,
3844         // RecursiveASTVisitor won't visit the decls that
3845         // BuildAnonymousStructOrUnion() will put into CurContext.
3846         // Also store them here so that they can be part of the
3847         // DeclStmt that gets created in this case.
3848         // FIXME: Also return the IndirectFieldDecls created by
3849         // BuildAnonymousStructOr union, for the same reason?
3850         if (CurContext->isFunctionOrMethod())
3851           AnonRecord = Record;
3852         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
3853                                            Context.getPrintingPolicy());
3854       }
3855 
3856       DeclaresAnything = false;
3857     }
3858   }
3859 
3860   // C11 6.7.2.1p2:
3861   //   A struct-declaration that does not declare an anonymous structure or
3862   //   anonymous union shall contain a struct-declarator-list.
3863   //
3864   // This rule also existed in C89 and C99; the grammar for struct-declaration
3865   // did not permit a struct-declaration without a struct-declarator-list.
3866   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
3867       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
3868     // Check for Microsoft C extension: anonymous struct/union member.
3869     // Handle 2 kinds of anonymous struct/union:
3870     //   struct STRUCT;
3871     //   union UNION;
3872     // and
3873     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
3874     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
3875     if ((Tag && Tag->getDeclName()) ||
3876         DS.getTypeSpecType() == DeclSpec::TST_typename) {
3877       RecordDecl *Record = nullptr;
3878       if (Tag)
3879         Record = dyn_cast<RecordDecl>(Tag);
3880       else if (const RecordType *RT =
3881                    DS.getRepAsType().get()->getAsStructureType())
3882         Record = RT->getDecl();
3883       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
3884         Record = UT->getDecl();
3885 
3886       if (Record && getLangOpts().MicrosoftExt) {
3887         Diag(DS.getLocStart(), diag::ext_ms_anonymous_record)
3888           << Record->isUnion() << DS.getSourceRange();
3889         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
3890       }
3891 
3892       DeclaresAnything = false;
3893     }
3894   }
3895 
3896   // Skip all the checks below if we have a type error.
3897   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
3898       (TagD && TagD->isInvalidDecl()))
3899     return TagD;
3900 
3901   if (getLangOpts().CPlusPlus &&
3902       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
3903     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
3904       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
3905           !Enum->getIdentifier() && !Enum->isInvalidDecl())
3906         DeclaresAnything = false;
3907 
3908   if (!DS.isMissingDeclaratorOk()) {
3909     // Customize diagnostic for a typedef missing a name.
3910     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
3911       Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
3912         << DS.getSourceRange();
3913     else
3914       DeclaresAnything = false;
3915   }
3916 
3917   if (DS.isModulePrivateSpecified() &&
3918       Tag && Tag->getDeclContext()->isFunctionOrMethod())
3919     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
3920       << Tag->getTagKind()
3921       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
3922 
3923   ActOnDocumentableDecl(TagD);
3924 
3925   // C 6.7/2:
3926   //   A declaration [...] shall declare at least a declarator [...], a tag,
3927   //   or the members of an enumeration.
3928   // C++ [dcl.dcl]p3:
3929   //   [If there are no declarators], and except for the declaration of an
3930   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
3931   //   names into the program, or shall redeclare a name introduced by a
3932   //   previous declaration.
3933   if (!DeclaresAnything) {
3934     // In C, we allow this as a (popular) extension / bug. Don't bother
3935     // producing further diagnostics for redundant qualifiers after this.
3936     Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
3937     return TagD;
3938   }
3939 
3940   // C++ [dcl.stc]p1:
3941   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
3942   //   init-declarator-list of the declaration shall not be empty.
3943   // C++ [dcl.fct.spec]p1:
3944   //   If a cv-qualifier appears in a decl-specifier-seq, the
3945   //   init-declarator-list of the declaration shall not be empty.
3946   //
3947   // Spurious qualifiers here appear to be valid in C.
3948   unsigned DiagID = diag::warn_standalone_specifier;
3949   if (getLangOpts().CPlusPlus)
3950     DiagID = diag::ext_standalone_specifier;
3951 
3952   // Note that a linkage-specification sets a storage class, but
3953   // 'extern "C" struct foo;' is actually valid and not theoretically
3954   // useless.
3955   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
3956     if (SCS == DeclSpec::SCS_mutable)
3957       // Since mutable is not a viable storage class specifier in C, there is
3958       // no reason to treat it as an extension. Instead, diagnose as an error.
3959       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
3960     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
3961       Diag(DS.getStorageClassSpecLoc(), DiagID)
3962         << DeclSpec::getSpecifierName(SCS);
3963   }
3964 
3965   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
3966     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
3967       << DeclSpec::getSpecifierName(TSCS);
3968   if (DS.getTypeQualifiers()) {
3969     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
3970       Diag(DS.getConstSpecLoc(), DiagID) << "const";
3971     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
3972       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
3973     // Restrict is covered above.
3974     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
3975       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
3976   }
3977 
3978   // Warn about ignored type attributes, for example:
3979   // __attribute__((aligned)) struct A;
3980   // Attributes should be placed after tag to apply to type declaration.
3981   if (!DS.getAttributes().empty()) {
3982     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
3983     if (TypeSpecType == DeclSpec::TST_class ||
3984         TypeSpecType == DeclSpec::TST_struct ||
3985         TypeSpecType == DeclSpec::TST_interface ||
3986         TypeSpecType == DeclSpec::TST_union ||
3987         TypeSpecType == DeclSpec::TST_enum) {
3988       for (AttributeList* attrs = DS.getAttributes().getList(); attrs;
3989            attrs = attrs->getNext())
3990         Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
3991             << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType);
3992     }
3993   }
3994 
3995   return TagD;
3996 }
3997 
3998 /// We are trying to inject an anonymous member into the given scope;
3999 /// check if there's an existing declaration that can't be overloaded.
4000 ///
4001 /// \return true if this is a forbidden redeclaration
4002 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4003                                          Scope *S,
4004                                          DeclContext *Owner,
4005                                          DeclarationName Name,
4006                                          SourceLocation NameLoc,
4007                                          bool IsUnion) {
4008   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4009                  Sema::ForRedeclaration);
4010   if (!SemaRef.LookupName(R, S)) return false;
4011 
4012   // Pick a representative declaration.
4013   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4014   assert(PrevDecl && "Expected a non-null Decl");
4015 
4016   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4017     return false;
4018 
4019   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4020     << IsUnion << Name;
4021   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4022 
4023   return true;
4024 }
4025 
4026 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4027 /// anonymous struct or union AnonRecord into the owning context Owner
4028 /// and scope S. This routine will be invoked just after we realize
4029 /// that an unnamed union or struct is actually an anonymous union or
4030 /// struct, e.g.,
4031 ///
4032 /// @code
4033 /// union {
4034 ///   int i;
4035 ///   float f;
4036 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4037 ///    // f into the surrounding scope.x
4038 /// @endcode
4039 ///
4040 /// This routine is recursive, injecting the names of nested anonymous
4041 /// structs/unions into the owning context and scope as well.
4042 static bool
4043 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4044                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4045                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4046   bool Invalid = false;
4047 
4048   // Look every FieldDecl and IndirectFieldDecl with a name.
4049   for (auto *D : AnonRecord->decls()) {
4050     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4051         cast<NamedDecl>(D)->getDeclName()) {
4052       ValueDecl *VD = cast<ValueDecl>(D);
4053       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4054                                        VD->getLocation(),
4055                                        AnonRecord->isUnion())) {
4056         // C++ [class.union]p2:
4057         //   The names of the members of an anonymous union shall be
4058         //   distinct from the names of any other entity in the
4059         //   scope in which the anonymous union is declared.
4060         Invalid = true;
4061       } else {
4062         // C++ [class.union]p2:
4063         //   For the purpose of name lookup, after the anonymous union
4064         //   definition, the members of the anonymous union are
4065         //   considered to have been defined in the scope in which the
4066         //   anonymous union is declared.
4067         unsigned OldChainingSize = Chaining.size();
4068         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4069           Chaining.append(IF->chain_begin(), IF->chain_end());
4070         else
4071           Chaining.push_back(VD);
4072 
4073         assert(Chaining.size() >= 2);
4074         NamedDecl **NamedChain =
4075           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4076         for (unsigned i = 0; i < Chaining.size(); i++)
4077           NamedChain[i] = Chaining[i];
4078 
4079         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4080             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4081             VD->getType(), NamedChain, Chaining.size());
4082 
4083         for (const auto *Attr : VD->attrs())
4084           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4085 
4086         IndirectField->setAccess(AS);
4087         IndirectField->setImplicit();
4088         SemaRef.PushOnScopeChains(IndirectField, S);
4089 
4090         // That includes picking up the appropriate access specifier.
4091         if (AS != AS_none) IndirectField->setAccess(AS);
4092 
4093         Chaining.resize(OldChainingSize);
4094       }
4095     }
4096   }
4097 
4098   return Invalid;
4099 }
4100 
4101 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4102 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4103 /// illegal input values are mapped to SC_None.
4104 static StorageClass
4105 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4106   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4107   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4108          "Parser allowed 'typedef' as storage class VarDecl.");
4109   switch (StorageClassSpec) {
4110   case DeclSpec::SCS_unspecified:    return SC_None;
4111   case DeclSpec::SCS_extern:
4112     if (DS.isExternInLinkageSpec())
4113       return SC_None;
4114     return SC_Extern;
4115   case DeclSpec::SCS_static:         return SC_Static;
4116   case DeclSpec::SCS_auto:           return SC_Auto;
4117   case DeclSpec::SCS_register:       return SC_Register;
4118   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4119     // Illegal SCSs map to None: error reporting is up to the caller.
4120   case DeclSpec::SCS_mutable:        // Fall through.
4121   case DeclSpec::SCS_typedef:        return SC_None;
4122   }
4123   llvm_unreachable("unknown storage class specifier");
4124 }
4125 
4126 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4127   assert(Record->hasInClassInitializer());
4128 
4129   for (const auto *I : Record->decls()) {
4130     const auto *FD = dyn_cast<FieldDecl>(I);
4131     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4132       FD = IFD->getAnonField();
4133     if (FD && FD->hasInClassInitializer())
4134       return FD->getLocation();
4135   }
4136 
4137   llvm_unreachable("couldn't find in-class initializer");
4138 }
4139 
4140 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4141                                       SourceLocation DefaultInitLoc) {
4142   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4143     return;
4144 
4145   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4146   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4147 }
4148 
4149 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4150                                       CXXRecordDecl *AnonUnion) {
4151   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4152     return;
4153 
4154   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4155 }
4156 
4157 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4158 /// anonymous structure or union. Anonymous unions are a C++ feature
4159 /// (C++ [class.union]) and a C11 feature; anonymous structures
4160 /// are a C11 feature and GNU C++ extension.
4161 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4162                                         AccessSpecifier AS,
4163                                         RecordDecl *Record,
4164                                         const PrintingPolicy &Policy) {
4165   DeclContext *Owner = Record->getDeclContext();
4166 
4167   // Diagnose whether this anonymous struct/union is an extension.
4168   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4169     Diag(Record->getLocation(), diag::ext_anonymous_union);
4170   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4171     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4172   else if (!Record->isUnion() && !getLangOpts().C11)
4173     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4174 
4175   // C and C++ require different kinds of checks for anonymous
4176   // structs/unions.
4177   bool Invalid = false;
4178   if (getLangOpts().CPlusPlus) {
4179     const char *PrevSpec = nullptr;
4180     unsigned DiagID;
4181     if (Record->isUnion()) {
4182       // C++ [class.union]p6:
4183       //   Anonymous unions declared in a named namespace or in the
4184       //   global namespace shall be declared static.
4185       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
4186           (isa<TranslationUnitDecl>(Owner) ||
4187            (isa<NamespaceDecl>(Owner) &&
4188             cast<NamespaceDecl>(Owner)->getDeclName()))) {
4189         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
4190           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
4191 
4192         // Recover by adding 'static'.
4193         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
4194                                PrevSpec, DiagID, Policy);
4195       }
4196       // C++ [class.union]p6:
4197       //   A storage class is not allowed in a declaration of an
4198       //   anonymous union in a class scope.
4199       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
4200                isa<RecordDecl>(Owner)) {
4201         Diag(DS.getStorageClassSpecLoc(),
4202              diag::err_anonymous_union_with_storage_spec)
4203           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
4204 
4205         // Recover by removing the storage specifier.
4206         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
4207                                SourceLocation(),
4208                                PrevSpec, DiagID, Context.getPrintingPolicy());
4209       }
4210     }
4211 
4212     // Ignore const/volatile/restrict qualifiers.
4213     if (DS.getTypeQualifiers()) {
4214       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4215         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
4216           << Record->isUnion() << "const"
4217           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
4218       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4219         Diag(DS.getVolatileSpecLoc(),
4220              diag::ext_anonymous_struct_union_qualified)
4221           << Record->isUnion() << "volatile"
4222           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
4223       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
4224         Diag(DS.getRestrictSpecLoc(),
4225              diag::ext_anonymous_struct_union_qualified)
4226           << Record->isUnion() << "restrict"
4227           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
4228       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4229         Diag(DS.getAtomicSpecLoc(),
4230              diag::ext_anonymous_struct_union_qualified)
4231           << Record->isUnion() << "_Atomic"
4232           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
4233 
4234       DS.ClearTypeQualifiers();
4235     }
4236 
4237     // C++ [class.union]p2:
4238     //   The member-specification of an anonymous union shall only
4239     //   define non-static data members. [Note: nested types and
4240     //   functions cannot be declared within an anonymous union. ]
4241     for (auto *Mem : Record->decls()) {
4242       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
4243         // C++ [class.union]p3:
4244         //   An anonymous union shall not have private or protected
4245         //   members (clause 11).
4246         assert(FD->getAccess() != AS_none);
4247         if (FD->getAccess() != AS_public) {
4248           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
4249             << Record->isUnion() << (FD->getAccess() == AS_protected);
4250           Invalid = true;
4251         }
4252 
4253         // C++ [class.union]p1
4254         //   An object of a class with a non-trivial constructor, a non-trivial
4255         //   copy constructor, a non-trivial destructor, or a non-trivial copy
4256         //   assignment operator cannot be a member of a union, nor can an
4257         //   array of such objects.
4258         if (CheckNontrivialField(FD))
4259           Invalid = true;
4260       } else if (Mem->isImplicit()) {
4261         // Any implicit members are fine.
4262       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
4263         // This is a type that showed up in an
4264         // elaborated-type-specifier inside the anonymous struct or
4265         // union, but which actually declares a type outside of the
4266         // anonymous struct or union. It's okay.
4267       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
4268         if (!MemRecord->isAnonymousStructOrUnion() &&
4269             MemRecord->getDeclName()) {
4270           // Visual C++ allows type definition in anonymous struct or union.
4271           if (getLangOpts().MicrosoftExt)
4272             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
4273               << Record->isUnion();
4274           else {
4275             // This is a nested type declaration.
4276             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
4277               << Record->isUnion();
4278             Invalid = true;
4279           }
4280         } else {
4281           // This is an anonymous type definition within another anonymous type.
4282           // This is a popular extension, provided by Plan9, MSVC and GCC, but
4283           // not part of standard C++.
4284           Diag(MemRecord->getLocation(),
4285                diag::ext_anonymous_record_with_anonymous_type)
4286             << Record->isUnion();
4287         }
4288       } else if (isa<AccessSpecDecl>(Mem)) {
4289         // Any access specifier is fine.
4290       } else if (isa<StaticAssertDecl>(Mem)) {
4291         // In C++1z, static_assert declarations are also fine.
4292       } else {
4293         // We have something that isn't a non-static data
4294         // member. Complain about it.
4295         unsigned DK = diag::err_anonymous_record_bad_member;
4296         if (isa<TypeDecl>(Mem))
4297           DK = diag::err_anonymous_record_with_type;
4298         else if (isa<FunctionDecl>(Mem))
4299           DK = diag::err_anonymous_record_with_function;
4300         else if (isa<VarDecl>(Mem))
4301           DK = diag::err_anonymous_record_with_static;
4302 
4303         // Visual C++ allows type definition in anonymous struct or union.
4304         if (getLangOpts().MicrosoftExt &&
4305             DK == diag::err_anonymous_record_with_type)
4306           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
4307             << Record->isUnion();
4308         else {
4309           Diag(Mem->getLocation(), DK) << Record->isUnion();
4310           Invalid = true;
4311         }
4312       }
4313     }
4314 
4315     // C++11 [class.union]p8 (DR1460):
4316     //   At most one variant member of a union may have a
4317     //   brace-or-equal-initializer.
4318     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
4319         Owner->isRecord())
4320       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
4321                                 cast<CXXRecordDecl>(Record));
4322   }
4323 
4324   if (!Record->isUnion() && !Owner->isRecord()) {
4325     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
4326       << getLangOpts().CPlusPlus;
4327     Invalid = true;
4328   }
4329 
4330   // Mock up a declarator.
4331   Declarator Dc(DS, Declarator::MemberContext);
4332   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4333   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
4334 
4335   // Create a declaration for this anonymous struct/union.
4336   NamedDecl *Anon = nullptr;
4337   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
4338     Anon = FieldDecl::Create(Context, OwningClass,
4339                              DS.getLocStart(),
4340                              Record->getLocation(),
4341                              /*IdentifierInfo=*/nullptr,
4342                              Context.getTypeDeclType(Record),
4343                              TInfo,
4344                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4345                              /*InitStyle=*/ICIS_NoInit);
4346     Anon->setAccess(AS);
4347     if (getLangOpts().CPlusPlus)
4348       FieldCollector->Add(cast<FieldDecl>(Anon));
4349   } else {
4350     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
4351     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
4352     if (SCSpec == DeclSpec::SCS_mutable) {
4353       // mutable can only appear on non-static class members, so it's always
4354       // an error here
4355       Diag(Record->getLocation(), diag::err_mutable_nonmember);
4356       Invalid = true;
4357       SC = SC_None;
4358     }
4359 
4360     Anon = VarDecl::Create(Context, Owner,
4361                            DS.getLocStart(),
4362                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
4363                            Context.getTypeDeclType(Record),
4364                            TInfo, SC);
4365 
4366     // Default-initialize the implicit variable. This initialization will be
4367     // trivial in almost all cases, except if a union member has an in-class
4368     // initializer:
4369     //   union { int n = 0; };
4370     ActOnUninitializedDecl(Anon, /*TypeMayContainAuto=*/false);
4371   }
4372   Anon->setImplicit();
4373 
4374   // Mark this as an anonymous struct/union type.
4375   Record->setAnonymousStructOrUnion(true);
4376 
4377   // Add the anonymous struct/union object to the current
4378   // context. We'll be referencing this object when we refer to one of
4379   // its members.
4380   Owner->addDecl(Anon);
4381 
4382   // Inject the members of the anonymous struct/union into the owning
4383   // context and into the identifier resolver chain for name lookup
4384   // purposes.
4385   SmallVector<NamedDecl*, 2> Chain;
4386   Chain.push_back(Anon);
4387 
4388   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
4389     Invalid = true;
4390 
4391   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
4392     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
4393       Decl *ManglingContextDecl;
4394       if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4395               NewVD->getDeclContext(), ManglingContextDecl)) {
4396         Context.setManglingNumber(
4397             NewVD, MCtx->getManglingNumber(
4398                        NewVD, getMSManglingNumber(getLangOpts(), S)));
4399         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
4400       }
4401     }
4402   }
4403 
4404   if (Invalid)
4405     Anon->setInvalidDecl();
4406 
4407   return Anon;
4408 }
4409 
4410 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
4411 /// Microsoft C anonymous structure.
4412 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
4413 /// Example:
4414 ///
4415 /// struct A { int a; };
4416 /// struct B { struct A; int b; };
4417 ///
4418 /// void foo() {
4419 ///   B var;
4420 ///   var.a = 3;
4421 /// }
4422 ///
4423 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
4424                                            RecordDecl *Record) {
4425   assert(Record && "expected a record!");
4426 
4427   // Mock up a declarator.
4428   Declarator Dc(DS, Declarator::TypeNameContext);
4429   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4430   assert(TInfo && "couldn't build declarator info for anonymous struct");
4431 
4432   auto *ParentDecl = cast<RecordDecl>(CurContext);
4433   QualType RecTy = Context.getTypeDeclType(Record);
4434 
4435   // Create a declaration for this anonymous struct.
4436   NamedDecl *Anon = FieldDecl::Create(Context,
4437                              ParentDecl,
4438                              DS.getLocStart(),
4439                              DS.getLocStart(),
4440                              /*IdentifierInfo=*/nullptr,
4441                              RecTy,
4442                              TInfo,
4443                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4444                              /*InitStyle=*/ICIS_NoInit);
4445   Anon->setImplicit();
4446 
4447   // Add the anonymous struct object to the current context.
4448   CurContext->addDecl(Anon);
4449 
4450   // Inject the members of the anonymous struct into the current
4451   // context and into the identifier resolver chain for name lookup
4452   // purposes.
4453   SmallVector<NamedDecl*, 2> Chain;
4454   Chain.push_back(Anon);
4455 
4456   RecordDecl *RecordDef = Record->getDefinition();
4457   if (RequireCompleteType(Anon->getLocation(), RecTy,
4458                           diag::err_field_incomplete) ||
4459       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
4460                                           AS_none, Chain)) {
4461     Anon->setInvalidDecl();
4462     ParentDecl->setInvalidDecl();
4463   }
4464 
4465   return Anon;
4466 }
4467 
4468 /// GetNameForDeclarator - Determine the full declaration name for the
4469 /// given Declarator.
4470 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
4471   return GetNameFromUnqualifiedId(D.getName());
4472 }
4473 
4474 /// \brief Retrieves the declaration name from a parsed unqualified-id.
4475 DeclarationNameInfo
4476 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
4477   DeclarationNameInfo NameInfo;
4478   NameInfo.setLoc(Name.StartLocation);
4479 
4480   switch (Name.getKind()) {
4481 
4482   case UnqualifiedId::IK_ImplicitSelfParam:
4483   case UnqualifiedId::IK_Identifier:
4484     NameInfo.setName(Name.Identifier);
4485     NameInfo.setLoc(Name.StartLocation);
4486     return NameInfo;
4487 
4488   case UnqualifiedId::IK_OperatorFunctionId:
4489     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
4490                                            Name.OperatorFunctionId.Operator));
4491     NameInfo.setLoc(Name.StartLocation);
4492     NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
4493       = Name.OperatorFunctionId.SymbolLocations[0];
4494     NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
4495       = Name.EndLocation.getRawEncoding();
4496     return NameInfo;
4497 
4498   case UnqualifiedId::IK_LiteralOperatorId:
4499     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
4500                                                            Name.Identifier));
4501     NameInfo.setLoc(Name.StartLocation);
4502     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
4503     return NameInfo;
4504 
4505   case UnqualifiedId::IK_ConversionFunctionId: {
4506     TypeSourceInfo *TInfo;
4507     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
4508     if (Ty.isNull())
4509       return DeclarationNameInfo();
4510     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
4511                                                Context.getCanonicalType(Ty)));
4512     NameInfo.setLoc(Name.StartLocation);
4513     NameInfo.setNamedTypeInfo(TInfo);
4514     return NameInfo;
4515   }
4516 
4517   case UnqualifiedId::IK_ConstructorName: {
4518     TypeSourceInfo *TInfo;
4519     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
4520     if (Ty.isNull())
4521       return DeclarationNameInfo();
4522     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4523                                               Context.getCanonicalType(Ty)));
4524     NameInfo.setLoc(Name.StartLocation);
4525     NameInfo.setNamedTypeInfo(TInfo);
4526     return NameInfo;
4527   }
4528 
4529   case UnqualifiedId::IK_ConstructorTemplateId: {
4530     // In well-formed code, we can only have a constructor
4531     // template-id that refers to the current context, so go there
4532     // to find the actual type being constructed.
4533     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
4534     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
4535       return DeclarationNameInfo();
4536 
4537     // Determine the type of the class being constructed.
4538     QualType CurClassType = Context.getTypeDeclType(CurClass);
4539 
4540     // FIXME: Check two things: that the template-id names the same type as
4541     // CurClassType, and that the template-id does not occur when the name
4542     // was qualified.
4543 
4544     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4545                                     Context.getCanonicalType(CurClassType)));
4546     NameInfo.setLoc(Name.StartLocation);
4547     // FIXME: should we retrieve TypeSourceInfo?
4548     NameInfo.setNamedTypeInfo(nullptr);
4549     return NameInfo;
4550   }
4551 
4552   case UnqualifiedId::IK_DestructorName: {
4553     TypeSourceInfo *TInfo;
4554     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
4555     if (Ty.isNull())
4556       return DeclarationNameInfo();
4557     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
4558                                               Context.getCanonicalType(Ty)));
4559     NameInfo.setLoc(Name.StartLocation);
4560     NameInfo.setNamedTypeInfo(TInfo);
4561     return NameInfo;
4562   }
4563 
4564   case UnqualifiedId::IK_TemplateId: {
4565     TemplateName TName = Name.TemplateId->Template.get();
4566     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
4567     return Context.getNameForTemplate(TName, TNameLoc);
4568   }
4569 
4570   } // switch (Name.getKind())
4571 
4572   llvm_unreachable("Unknown name kind");
4573 }
4574 
4575 static QualType getCoreType(QualType Ty) {
4576   do {
4577     if (Ty->isPointerType() || Ty->isReferenceType())
4578       Ty = Ty->getPointeeType();
4579     else if (Ty->isArrayType())
4580       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
4581     else
4582       return Ty.withoutLocalFastQualifiers();
4583   } while (true);
4584 }
4585 
4586 /// hasSimilarParameters - Determine whether the C++ functions Declaration
4587 /// and Definition have "nearly" matching parameters. This heuristic is
4588 /// used to improve diagnostics in the case where an out-of-line function
4589 /// definition doesn't match any declaration within the class or namespace.
4590 /// Also sets Params to the list of indices to the parameters that differ
4591 /// between the declaration and the definition. If hasSimilarParameters
4592 /// returns true and Params is empty, then all of the parameters match.
4593 static bool hasSimilarParameters(ASTContext &Context,
4594                                      FunctionDecl *Declaration,
4595                                      FunctionDecl *Definition,
4596                                      SmallVectorImpl<unsigned> &Params) {
4597   Params.clear();
4598   if (Declaration->param_size() != Definition->param_size())
4599     return false;
4600   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
4601     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
4602     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
4603 
4604     // The parameter types are identical
4605     if (Context.hasSameType(DefParamTy, DeclParamTy))
4606       continue;
4607 
4608     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
4609     QualType DefParamBaseTy = getCoreType(DefParamTy);
4610     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
4611     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
4612 
4613     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
4614         (DeclTyName && DeclTyName == DefTyName))
4615       Params.push_back(Idx);
4616     else  // The two parameters aren't even close
4617       return false;
4618   }
4619 
4620   return true;
4621 }
4622 
4623 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
4624 /// declarator needs to be rebuilt in the current instantiation.
4625 /// Any bits of declarator which appear before the name are valid for
4626 /// consideration here.  That's specifically the type in the decl spec
4627 /// and the base type in any member-pointer chunks.
4628 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
4629                                                     DeclarationName Name) {
4630   // The types we specifically need to rebuild are:
4631   //   - typenames, typeofs, and decltypes
4632   //   - types which will become injected class names
4633   // Of course, we also need to rebuild any type referencing such a
4634   // type.  It's safest to just say "dependent", but we call out a
4635   // few cases here.
4636 
4637   DeclSpec &DS = D.getMutableDeclSpec();
4638   switch (DS.getTypeSpecType()) {
4639   case DeclSpec::TST_typename:
4640   case DeclSpec::TST_typeofType:
4641   case DeclSpec::TST_underlyingType:
4642   case DeclSpec::TST_atomic: {
4643     // Grab the type from the parser.
4644     TypeSourceInfo *TSI = nullptr;
4645     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
4646     if (T.isNull() || !T->isDependentType()) break;
4647 
4648     // Make sure there's a type source info.  This isn't really much
4649     // of a waste; most dependent types should have type source info
4650     // attached already.
4651     if (!TSI)
4652       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
4653 
4654     // Rebuild the type in the current instantiation.
4655     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
4656     if (!TSI) return true;
4657 
4658     // Store the new type back in the decl spec.
4659     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
4660     DS.UpdateTypeRep(LocType);
4661     break;
4662   }
4663 
4664   case DeclSpec::TST_decltype:
4665   case DeclSpec::TST_typeofExpr: {
4666     Expr *E = DS.getRepAsExpr();
4667     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
4668     if (Result.isInvalid()) return true;
4669     DS.UpdateExprRep(Result.get());
4670     break;
4671   }
4672 
4673   default:
4674     // Nothing to do for these decl specs.
4675     break;
4676   }
4677 
4678   // It doesn't matter what order we do this in.
4679   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
4680     DeclaratorChunk &Chunk = D.getTypeObject(I);
4681 
4682     // The only type information in the declarator which can come
4683     // before the declaration name is the base type of a member
4684     // pointer.
4685     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
4686       continue;
4687 
4688     // Rebuild the scope specifier in-place.
4689     CXXScopeSpec &SS = Chunk.Mem.Scope();
4690     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
4691       return true;
4692   }
4693 
4694   return false;
4695 }
4696 
4697 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
4698   D.setFunctionDefinitionKind(FDK_Declaration);
4699   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
4700 
4701   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
4702       Dcl && Dcl->getDeclContext()->isFileContext())
4703     Dcl->setTopLevelDeclInObjCContainer();
4704 
4705   return Dcl;
4706 }
4707 
4708 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
4709 ///   If T is the name of a class, then each of the following shall have a
4710 ///   name different from T:
4711 ///     - every static data member of class T;
4712 ///     - every member function of class T
4713 ///     - every member of class T that is itself a type;
4714 /// \returns true if the declaration name violates these rules.
4715 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
4716                                    DeclarationNameInfo NameInfo) {
4717   DeclarationName Name = NameInfo.getName();
4718 
4719   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
4720   while (Record && Record->isAnonymousStructOrUnion())
4721     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
4722   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
4723     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
4724     return true;
4725   }
4726 
4727   return false;
4728 }
4729 
4730 /// \brief Diagnose a declaration whose declarator-id has the given
4731 /// nested-name-specifier.
4732 ///
4733 /// \param SS The nested-name-specifier of the declarator-id.
4734 ///
4735 /// \param DC The declaration context to which the nested-name-specifier
4736 /// resolves.
4737 ///
4738 /// \param Name The name of the entity being declared.
4739 ///
4740 /// \param Loc The location of the name of the entity being declared.
4741 ///
4742 /// \returns true if we cannot safely recover from this error, false otherwise.
4743 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
4744                                         DeclarationName Name,
4745                                         SourceLocation Loc) {
4746   DeclContext *Cur = CurContext;
4747   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
4748     Cur = Cur->getParent();
4749 
4750   // If the user provided a superfluous scope specifier that refers back to the
4751   // class in which the entity is already declared, diagnose and ignore it.
4752   //
4753   // class X {
4754   //   void X::f();
4755   // };
4756   //
4757   // Note, it was once ill-formed to give redundant qualification in all
4758   // contexts, but that rule was removed by DR482.
4759   if (Cur->Equals(DC)) {
4760     if (Cur->isRecord()) {
4761       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
4762                                       : diag::err_member_extra_qualification)
4763         << Name << FixItHint::CreateRemoval(SS.getRange());
4764       SS.clear();
4765     } else {
4766       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
4767     }
4768     return false;
4769   }
4770 
4771   // Check whether the qualifying scope encloses the scope of the original
4772   // declaration.
4773   if (!Cur->Encloses(DC)) {
4774     if (Cur->isRecord())
4775       Diag(Loc, diag::err_member_qualification)
4776         << Name << SS.getRange();
4777     else if (isa<TranslationUnitDecl>(DC))
4778       Diag(Loc, diag::err_invalid_declarator_global_scope)
4779         << Name << SS.getRange();
4780     else if (isa<FunctionDecl>(Cur))
4781       Diag(Loc, diag::err_invalid_declarator_in_function)
4782         << Name << SS.getRange();
4783     else if (isa<BlockDecl>(Cur))
4784       Diag(Loc, diag::err_invalid_declarator_in_block)
4785         << Name << SS.getRange();
4786     else
4787       Diag(Loc, diag::err_invalid_declarator_scope)
4788       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
4789 
4790     return true;
4791   }
4792 
4793   if (Cur->isRecord()) {
4794     // Cannot qualify members within a class.
4795     Diag(Loc, diag::err_member_qualification)
4796       << Name << SS.getRange();
4797     SS.clear();
4798 
4799     // C++ constructors and destructors with incorrect scopes can break
4800     // our AST invariants by having the wrong underlying types. If
4801     // that's the case, then drop this declaration entirely.
4802     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
4803          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
4804         !Context.hasSameType(Name.getCXXNameType(),
4805                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
4806       return true;
4807 
4808     return false;
4809   }
4810 
4811   // C++11 [dcl.meaning]p1:
4812   //   [...] "The nested-name-specifier of the qualified declarator-id shall
4813   //   not begin with a decltype-specifer"
4814   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
4815   while (SpecLoc.getPrefix())
4816     SpecLoc = SpecLoc.getPrefix();
4817   if (dyn_cast_or_null<DecltypeType>(
4818         SpecLoc.getNestedNameSpecifier()->getAsType()))
4819     Diag(Loc, diag::err_decltype_in_declarator)
4820       << SpecLoc.getTypeLoc().getSourceRange();
4821 
4822   return false;
4823 }
4824 
4825 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
4826                                   MultiTemplateParamsArg TemplateParamLists) {
4827   // TODO: consider using NameInfo for diagnostic.
4828   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
4829   DeclarationName Name = NameInfo.getName();
4830 
4831   // All of these full declarators require an identifier.  If it doesn't have
4832   // one, the ParsedFreeStandingDeclSpec action should be used.
4833   if (!Name) {
4834     if (!D.isInvalidType())  // Reject this if we think it is valid.
4835       Diag(D.getDeclSpec().getLocStart(),
4836            diag::err_declarator_need_ident)
4837         << D.getDeclSpec().getSourceRange() << D.getSourceRange();
4838     return nullptr;
4839   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
4840     return nullptr;
4841 
4842   // The scope passed in may not be a decl scope.  Zip up the scope tree until
4843   // we find one that is.
4844   while ((S->getFlags() & Scope::DeclScope) == 0 ||
4845          (S->getFlags() & Scope::TemplateParamScope) != 0)
4846     S = S->getParent();
4847 
4848   DeclContext *DC = CurContext;
4849   if (D.getCXXScopeSpec().isInvalid())
4850     D.setInvalidType();
4851   else if (D.getCXXScopeSpec().isSet()) {
4852     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
4853                                         UPPC_DeclarationQualifier))
4854       return nullptr;
4855 
4856     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
4857     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
4858     if (!DC || isa<EnumDecl>(DC)) {
4859       // If we could not compute the declaration context, it's because the
4860       // declaration context is dependent but does not refer to a class,
4861       // class template, or class template partial specialization. Complain
4862       // and return early, to avoid the coming semantic disaster.
4863       Diag(D.getIdentifierLoc(),
4864            diag::err_template_qualified_declarator_no_match)
4865         << D.getCXXScopeSpec().getScopeRep()
4866         << D.getCXXScopeSpec().getRange();
4867       return nullptr;
4868     }
4869     bool IsDependentContext = DC->isDependentContext();
4870 
4871     if (!IsDependentContext &&
4872         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
4873       return nullptr;
4874 
4875     // If a class is incomplete, do not parse entities inside it.
4876     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
4877       Diag(D.getIdentifierLoc(),
4878            diag::err_member_def_undefined_record)
4879         << Name << DC << D.getCXXScopeSpec().getRange();
4880       return nullptr;
4881     }
4882     if (!D.getDeclSpec().isFriendSpecified()) {
4883       if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
4884                                       Name, D.getIdentifierLoc())) {
4885         if (DC->isRecord())
4886           return nullptr;
4887 
4888         D.setInvalidType();
4889       }
4890     }
4891 
4892     // Check whether we need to rebuild the type of the given
4893     // declaration in the current instantiation.
4894     if (EnteringContext && IsDependentContext &&
4895         TemplateParamLists.size() != 0) {
4896       ContextRAII SavedContext(*this, DC);
4897       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
4898         D.setInvalidType();
4899     }
4900   }
4901 
4902   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
4903   QualType R = TInfo->getType();
4904 
4905   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
4906     // If this is a typedef, we'll end up spewing multiple diagnostics.
4907     // Just return early; it's safer. If this is a function, let the
4908     // "constructor cannot have a return type" diagnostic handle it.
4909     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
4910       return nullptr;
4911 
4912   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
4913                                       UPPC_DeclarationType))
4914     D.setInvalidType();
4915 
4916   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
4917                         ForRedeclaration);
4918 
4919   // See if this is a redefinition of a variable in the same scope.
4920   if (!D.getCXXScopeSpec().isSet()) {
4921     bool IsLinkageLookup = false;
4922     bool CreateBuiltins = false;
4923 
4924     // If the declaration we're planning to build will be a function
4925     // or object with linkage, then look for another declaration with
4926     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
4927     //
4928     // If the declaration we're planning to build will be declared with
4929     // external linkage in the translation unit, create any builtin with
4930     // the same name.
4931     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
4932       /* Do nothing*/;
4933     else if (CurContext->isFunctionOrMethod() &&
4934              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
4935               R->isFunctionType())) {
4936       IsLinkageLookup = true;
4937       CreateBuiltins =
4938           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
4939     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
4940                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
4941       CreateBuiltins = true;
4942 
4943     if (IsLinkageLookup)
4944       Previous.clear(LookupRedeclarationWithLinkage);
4945 
4946     LookupName(Previous, S, CreateBuiltins);
4947   } else { // Something like "int foo::x;"
4948     LookupQualifiedName(Previous, DC);
4949 
4950     // C++ [dcl.meaning]p1:
4951     //   When the declarator-id is qualified, the declaration shall refer to a
4952     //  previously declared member of the class or namespace to which the
4953     //  qualifier refers (or, in the case of a namespace, of an element of the
4954     //  inline namespace set of that namespace (7.3.1)) or to a specialization
4955     //  thereof; [...]
4956     //
4957     // Note that we already checked the context above, and that we do not have
4958     // enough information to make sure that Previous contains the declaration
4959     // we want to match. For example, given:
4960     //
4961     //   class X {
4962     //     void f();
4963     //     void f(float);
4964     //   };
4965     //
4966     //   void X::f(int) { } // ill-formed
4967     //
4968     // In this case, Previous will point to the overload set
4969     // containing the two f's declared in X, but neither of them
4970     // matches.
4971 
4972     // C++ [dcl.meaning]p1:
4973     //   [...] the member shall not merely have been introduced by a
4974     //   using-declaration in the scope of the class or namespace nominated by
4975     //   the nested-name-specifier of the declarator-id.
4976     RemoveUsingDecls(Previous);
4977   }
4978 
4979   if (Previous.isSingleResult() &&
4980       Previous.getFoundDecl()->isTemplateParameter()) {
4981     // Maybe we will complain about the shadowed template parameter.
4982     if (!D.isInvalidType())
4983       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
4984                                       Previous.getFoundDecl());
4985 
4986     // Just pretend that we didn't see the previous declaration.
4987     Previous.clear();
4988   }
4989 
4990   // In C++, the previous declaration we find might be a tag type
4991   // (class or enum). In this case, the new declaration will hide the
4992   // tag type. Note that this does does not apply if we're declaring a
4993   // typedef (C++ [dcl.typedef]p4).
4994   if (Previous.isSingleTagDecl() &&
4995       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
4996     Previous.clear();
4997 
4998   // Check that there are no default arguments other than in the parameters
4999   // of a function declaration (C++ only).
5000   if (getLangOpts().CPlusPlus)
5001     CheckExtraCXXDefaultArguments(D);
5002 
5003   if (D.getDeclSpec().isConceptSpecified()) {
5004     // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
5005     // applied only to the definition of a function template or variable
5006     // template, declared in namespace scope
5007     if (!TemplateParamLists.size()) {
5008       Diag(D.getDeclSpec().getConceptSpecLoc(),
5009            diag:: err_concept_wrong_decl_kind);
5010       return nullptr;
5011     }
5012 
5013     if (!DC->getRedeclContext()->isFileContext()) {
5014       Diag(D.getIdentifierLoc(),
5015            diag::err_concept_decls_may_only_appear_in_namespace_scope);
5016       return nullptr;
5017     }
5018   }
5019 
5020   NamedDecl *New;
5021 
5022   bool AddToScope = true;
5023   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5024     if (TemplateParamLists.size()) {
5025       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5026       return nullptr;
5027     }
5028 
5029     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5030   } else if (R->isFunctionType()) {
5031     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5032                                   TemplateParamLists,
5033                                   AddToScope);
5034   } else {
5035     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5036                                   AddToScope);
5037   }
5038 
5039   if (!New)
5040     return nullptr;
5041 
5042   // If this has an identifier and is not an invalid redeclaration or
5043   // function template specialization, add it to the scope stack.
5044   if (New->getDeclName() && AddToScope &&
5045        !(D.isRedeclaration() && New->isInvalidDecl())) {
5046     // Only make a locally-scoped extern declaration visible if it is the first
5047     // declaration of this entity. Qualified lookup for such an entity should
5048     // only find this declaration if there is no visible declaration of it.
5049     bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
5050     PushOnScopeChains(New, S, AddToContext);
5051     if (!AddToContext)
5052       CurContext->addHiddenDecl(New);
5053   }
5054 
5055   if (isInOpenMPDeclareTargetContext())
5056     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
5057 
5058   return New;
5059 }
5060 
5061 /// Helper method to turn variable array types into constant array
5062 /// types in certain situations which would otherwise be errors (for
5063 /// GCC compatibility).
5064 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5065                                                     ASTContext &Context,
5066                                                     bool &SizeIsNegative,
5067                                                     llvm::APSInt &Oversized) {
5068   // This method tries to turn a variable array into a constant
5069   // array even when the size isn't an ICE.  This is necessary
5070   // for compatibility with code that depends on gcc's buggy
5071   // constant expression folding, like struct {char x[(int)(char*)2];}
5072   SizeIsNegative = false;
5073   Oversized = 0;
5074 
5075   if (T->isDependentType())
5076     return QualType();
5077 
5078   QualifierCollector Qs;
5079   const Type *Ty = Qs.strip(T);
5080 
5081   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5082     QualType Pointee = PTy->getPointeeType();
5083     QualType FixedType =
5084         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5085                                             Oversized);
5086     if (FixedType.isNull()) return FixedType;
5087     FixedType = Context.getPointerType(FixedType);
5088     return Qs.apply(Context, FixedType);
5089   }
5090   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5091     QualType Inner = PTy->getInnerType();
5092     QualType FixedType =
5093         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5094                                             Oversized);
5095     if (FixedType.isNull()) return FixedType;
5096     FixedType = Context.getParenType(FixedType);
5097     return Qs.apply(Context, FixedType);
5098   }
5099 
5100   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5101   if (!VLATy)
5102     return QualType();
5103   // FIXME: We should probably handle this case
5104   if (VLATy->getElementType()->isVariablyModifiedType())
5105     return QualType();
5106 
5107   llvm::APSInt Res;
5108   if (!VLATy->getSizeExpr() ||
5109       !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
5110     return QualType();
5111 
5112   // Check whether the array size is negative.
5113   if (Res.isSigned() && Res.isNegative()) {
5114     SizeIsNegative = true;
5115     return QualType();
5116   }
5117 
5118   // Check whether the array is too large to be addressed.
5119   unsigned ActiveSizeBits
5120     = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
5121                                               Res);
5122   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5123     Oversized = Res;
5124     return QualType();
5125   }
5126 
5127   return Context.getConstantArrayType(VLATy->getElementType(),
5128                                       Res, ArrayType::Normal, 0);
5129 }
5130 
5131 static void
5132 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5133   SrcTL = SrcTL.getUnqualifiedLoc();
5134   DstTL = DstTL.getUnqualifiedLoc();
5135   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5136     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5137     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5138                                       DstPTL.getPointeeLoc());
5139     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5140     return;
5141   }
5142   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5143     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5144     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5145                                       DstPTL.getInnerLoc());
5146     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5147     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5148     return;
5149   }
5150   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
5151   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
5152   TypeLoc SrcElemTL = SrcATL.getElementLoc();
5153   TypeLoc DstElemTL = DstATL.getElementLoc();
5154   DstElemTL.initializeFullCopy(SrcElemTL);
5155   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
5156   DstATL.setSizeExpr(SrcATL.getSizeExpr());
5157   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
5158 }
5159 
5160 /// Helper method to turn variable array types into constant array
5161 /// types in certain situations which would otherwise be errors (for
5162 /// GCC compatibility).
5163 static TypeSourceInfo*
5164 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
5165                                               ASTContext &Context,
5166                                               bool &SizeIsNegative,
5167                                               llvm::APSInt &Oversized) {
5168   QualType FixedTy
5169     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
5170                                           SizeIsNegative, Oversized);
5171   if (FixedTy.isNull())
5172     return nullptr;
5173   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
5174   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
5175                                     FixedTInfo->getTypeLoc());
5176   return FixedTInfo;
5177 }
5178 
5179 /// \brief Register the given locally-scoped extern "C" declaration so
5180 /// that it can be found later for redeclarations. We include any extern "C"
5181 /// declaration that is not visible in the translation unit here, not just
5182 /// function-scope declarations.
5183 void
5184 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
5185   if (!getLangOpts().CPlusPlus &&
5186       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
5187     // Don't need to track declarations in the TU in C.
5188     return;
5189 
5190   // Note that we have a locally-scoped external with this name.
5191   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
5192 }
5193 
5194 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
5195   // FIXME: We can have multiple results via __attribute__((overloadable)).
5196   auto Result = Context.getExternCContextDecl()->lookup(Name);
5197   return Result.empty() ? nullptr : *Result.begin();
5198 }
5199 
5200 /// \brief Diagnose function specifiers on a declaration of an identifier that
5201 /// does not identify a function.
5202 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
5203   // FIXME: We should probably indicate the identifier in question to avoid
5204   // confusion for constructs like "inline int a(), b;"
5205   if (DS.isInlineSpecified())
5206     Diag(DS.getInlineSpecLoc(),
5207          diag::err_inline_non_function);
5208 
5209   if (DS.isVirtualSpecified())
5210     Diag(DS.getVirtualSpecLoc(),
5211          diag::err_virtual_non_function);
5212 
5213   if (DS.isExplicitSpecified())
5214     Diag(DS.getExplicitSpecLoc(),
5215          diag::err_explicit_non_function);
5216 
5217   if (DS.isNoreturnSpecified())
5218     Diag(DS.getNoreturnSpecLoc(),
5219          diag::err_noreturn_non_function);
5220 }
5221 
5222 NamedDecl*
5223 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
5224                              TypeSourceInfo *TInfo, LookupResult &Previous) {
5225   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
5226   if (D.getCXXScopeSpec().isSet()) {
5227     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
5228       << D.getCXXScopeSpec().getRange();
5229     D.setInvalidType();
5230     // Pretend we didn't see the scope specifier.
5231     DC = CurContext;
5232     Previous.clear();
5233   }
5234 
5235   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5236 
5237   if (D.getDeclSpec().isConstexprSpecified())
5238     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
5239       << 1;
5240   if (D.getDeclSpec().isConceptSpecified())
5241     Diag(D.getDeclSpec().getConceptSpecLoc(),
5242          diag::err_concept_wrong_decl_kind);
5243 
5244   if (D.getName().Kind != UnqualifiedId::IK_Identifier) {
5245     Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
5246       << D.getName().getSourceRange();
5247     return nullptr;
5248   }
5249 
5250   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
5251   if (!NewTD) return nullptr;
5252 
5253   // Handle attributes prior to checking for duplicates in MergeVarDecl
5254   ProcessDeclAttributes(S, NewTD, D);
5255 
5256   CheckTypedefForVariablyModifiedType(S, NewTD);
5257 
5258   bool Redeclaration = D.isRedeclaration();
5259   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
5260   D.setRedeclaration(Redeclaration);
5261   return ND;
5262 }
5263 
5264 void
5265 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
5266   // C99 6.7.7p2: If a typedef name specifies a variably modified type
5267   // then it shall have block scope.
5268   // Note that variably modified types must be fixed before merging the decl so
5269   // that redeclarations will match.
5270   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
5271   QualType T = TInfo->getType();
5272   if (T->isVariablyModifiedType()) {
5273     getCurFunction()->setHasBranchProtectedScope();
5274 
5275     if (S->getFnParent() == nullptr) {
5276       bool SizeIsNegative;
5277       llvm::APSInt Oversized;
5278       TypeSourceInfo *FixedTInfo =
5279         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5280                                                       SizeIsNegative,
5281                                                       Oversized);
5282       if (FixedTInfo) {
5283         Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
5284         NewTD->setTypeSourceInfo(FixedTInfo);
5285       } else {
5286         if (SizeIsNegative)
5287           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
5288         else if (T->isVariableArrayType())
5289           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
5290         else if (Oversized.getBoolValue())
5291           Diag(NewTD->getLocation(), diag::err_array_too_large)
5292             << Oversized.toString(10);
5293         else
5294           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
5295         NewTD->setInvalidDecl();
5296       }
5297     }
5298   }
5299 }
5300 
5301 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
5302 /// declares a typedef-name, either using the 'typedef' type specifier or via
5303 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
5304 NamedDecl*
5305 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
5306                            LookupResult &Previous, bool &Redeclaration) {
5307   // Merge the decl with the existing one if appropriate. If the decl is
5308   // in an outer scope, it isn't the same thing.
5309   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
5310                        /*AllowInlineNamespace*/false);
5311   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
5312   if (!Previous.empty()) {
5313     Redeclaration = true;
5314     MergeTypedefNameDecl(S, NewTD, Previous);
5315   }
5316 
5317   // If this is the C FILE type, notify the AST context.
5318   if (IdentifierInfo *II = NewTD->getIdentifier())
5319     if (!NewTD->isInvalidDecl() &&
5320         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5321       if (II->isStr("FILE"))
5322         Context.setFILEDecl(NewTD);
5323       else if (II->isStr("jmp_buf"))
5324         Context.setjmp_bufDecl(NewTD);
5325       else if (II->isStr("sigjmp_buf"))
5326         Context.setsigjmp_bufDecl(NewTD);
5327       else if (II->isStr("ucontext_t"))
5328         Context.setucontext_tDecl(NewTD);
5329     }
5330 
5331   return NewTD;
5332 }
5333 
5334 /// \brief Determines whether the given declaration is an out-of-scope
5335 /// previous declaration.
5336 ///
5337 /// This routine should be invoked when name lookup has found a
5338 /// previous declaration (PrevDecl) that is not in the scope where a
5339 /// new declaration by the same name is being introduced. If the new
5340 /// declaration occurs in a local scope, previous declarations with
5341 /// linkage may still be considered previous declarations (C99
5342 /// 6.2.2p4-5, C++ [basic.link]p6).
5343 ///
5344 /// \param PrevDecl the previous declaration found by name
5345 /// lookup
5346 ///
5347 /// \param DC the context in which the new declaration is being
5348 /// declared.
5349 ///
5350 /// \returns true if PrevDecl is an out-of-scope previous declaration
5351 /// for a new delcaration with the same name.
5352 static bool
5353 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
5354                                 ASTContext &Context) {
5355   if (!PrevDecl)
5356     return false;
5357 
5358   if (!PrevDecl->hasLinkage())
5359     return false;
5360 
5361   if (Context.getLangOpts().CPlusPlus) {
5362     // C++ [basic.link]p6:
5363     //   If there is a visible declaration of an entity with linkage
5364     //   having the same name and type, ignoring entities declared
5365     //   outside the innermost enclosing namespace scope, the block
5366     //   scope declaration declares that same entity and receives the
5367     //   linkage of the previous declaration.
5368     DeclContext *OuterContext = DC->getRedeclContext();
5369     if (!OuterContext->isFunctionOrMethod())
5370       // This rule only applies to block-scope declarations.
5371       return false;
5372 
5373     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
5374     if (PrevOuterContext->isRecord())
5375       // We found a member function: ignore it.
5376       return false;
5377 
5378     // Find the innermost enclosing namespace for the new and
5379     // previous declarations.
5380     OuterContext = OuterContext->getEnclosingNamespaceContext();
5381     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
5382 
5383     // The previous declaration is in a different namespace, so it
5384     // isn't the same function.
5385     if (!OuterContext->Equals(PrevOuterContext))
5386       return false;
5387   }
5388 
5389   return true;
5390 }
5391 
5392 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
5393   CXXScopeSpec &SS = D.getCXXScopeSpec();
5394   if (!SS.isSet()) return;
5395   DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
5396 }
5397 
5398 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
5399   QualType type = decl->getType();
5400   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5401   if (lifetime == Qualifiers::OCL_Autoreleasing) {
5402     // Various kinds of declaration aren't allowed to be __autoreleasing.
5403     unsigned kind = -1U;
5404     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5405       if (var->hasAttr<BlocksAttr>())
5406         kind = 0; // __block
5407       else if (!var->hasLocalStorage())
5408         kind = 1; // global
5409     } else if (isa<ObjCIvarDecl>(decl)) {
5410       kind = 3; // ivar
5411     } else if (isa<FieldDecl>(decl)) {
5412       kind = 2; // field
5413     }
5414 
5415     if (kind != -1U) {
5416       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
5417         << kind;
5418     }
5419   } else if (lifetime == Qualifiers::OCL_None) {
5420     // Try to infer lifetime.
5421     if (!type->isObjCLifetimeType())
5422       return false;
5423 
5424     lifetime = type->getObjCARCImplicitLifetime();
5425     type = Context.getLifetimeQualifiedType(type, lifetime);
5426     decl->setType(type);
5427   }
5428 
5429   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5430     // Thread-local variables cannot have lifetime.
5431     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
5432         var->getTLSKind()) {
5433       Diag(var->getLocation(), diag::err_arc_thread_ownership)
5434         << var->getType();
5435       return true;
5436     }
5437   }
5438 
5439   return false;
5440 }
5441 
5442 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
5443   // Ensure that an auto decl is deduced otherwise the checks below might cache
5444   // the wrong linkage.
5445   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
5446 
5447   // 'weak' only applies to declarations with external linkage.
5448   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
5449     if (!ND.isExternallyVisible()) {
5450       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
5451       ND.dropAttr<WeakAttr>();
5452     }
5453   }
5454   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
5455     if (ND.isExternallyVisible()) {
5456       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
5457       ND.dropAttr<WeakRefAttr>();
5458       ND.dropAttr<AliasAttr>();
5459     }
5460   }
5461 
5462   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
5463     if (VD->hasInit()) {
5464       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
5465         assert(VD->isThisDeclarationADefinition() &&
5466                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
5467         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0;
5468         VD->dropAttr<AliasAttr>();
5469       }
5470     }
5471   }
5472 
5473   // 'selectany' only applies to externally visible variable declarations.
5474   // It does not apply to functions.
5475   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
5476     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
5477       S.Diag(Attr->getLocation(),
5478              diag::err_attribute_selectany_non_extern_data);
5479       ND.dropAttr<SelectAnyAttr>();
5480     }
5481   }
5482 
5483   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
5484     // dll attributes require external linkage. Static locals may have external
5485     // linkage but still cannot be explicitly imported or exported.
5486     auto *VD = dyn_cast<VarDecl>(&ND);
5487     if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) {
5488       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
5489         << &ND << Attr;
5490       ND.setInvalidDecl();
5491     }
5492   }
5493 
5494   // Virtual functions cannot be marked as 'notail'.
5495   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
5496     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
5497       if (MD->isVirtual()) {
5498         S.Diag(ND.getLocation(),
5499                diag::err_invalid_attribute_on_virtual_function)
5500             << Attr;
5501         ND.dropAttr<NotTailCalledAttr>();
5502       }
5503 }
5504 
5505 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
5506                                            NamedDecl *NewDecl,
5507                                            bool IsSpecialization) {
5508   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl))
5509     OldDecl = OldTD->getTemplatedDecl();
5510   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl))
5511     NewDecl = NewTD->getTemplatedDecl();
5512 
5513   if (!OldDecl || !NewDecl)
5514     return;
5515 
5516   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
5517   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
5518   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
5519   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
5520 
5521   // dllimport and dllexport are inheritable attributes so we have to exclude
5522   // inherited attribute instances.
5523   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
5524                     (NewExportAttr && !NewExportAttr->isInherited());
5525 
5526   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
5527   // the only exception being explicit specializations.
5528   // Implicitly generated declarations are also excluded for now because there
5529   // is no other way to switch these to use dllimport or dllexport.
5530   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
5531 
5532   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
5533     // Allow with a warning for free functions and global variables.
5534     bool JustWarn = false;
5535     if (!OldDecl->isCXXClassMember()) {
5536       auto *VD = dyn_cast<VarDecl>(OldDecl);
5537       if (VD && !VD->getDescribedVarTemplate())
5538         JustWarn = true;
5539       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
5540       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
5541         JustWarn = true;
5542     }
5543 
5544     // We cannot change a declaration that's been used because IR has already
5545     // been emitted. Dllimported functions will still work though (modulo
5546     // address equality) as they can use the thunk.
5547     if (OldDecl->isUsed())
5548       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
5549         JustWarn = false;
5550 
5551     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
5552                                : diag::err_attribute_dll_redeclaration;
5553     S.Diag(NewDecl->getLocation(), DiagID)
5554         << NewDecl
5555         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
5556     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
5557     if (!JustWarn) {
5558       NewDecl->setInvalidDecl();
5559       return;
5560     }
5561   }
5562 
5563   // A redeclaration is not allowed to drop a dllimport attribute, the only
5564   // exceptions being inline function definitions, local extern declarations,
5565   // and qualified friend declarations.
5566   // NB: MSVC converts such a declaration to dllexport.
5567   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
5568   if (const auto *VD = dyn_cast<VarDecl>(NewDecl))
5569     // Ignore static data because out-of-line definitions are diagnosed
5570     // separately.
5571     IsStaticDataMember = VD->isStaticDataMember();
5572   else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
5573     IsInline = FD->isInlined();
5574     IsQualifiedFriend = FD->getQualifier() &&
5575                         FD->getFriendObjectKind() == Decl::FOK_Declared;
5576   }
5577 
5578   if (OldImportAttr && !HasNewAttr && !IsInline && !IsStaticDataMember &&
5579       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
5580     S.Diag(NewDecl->getLocation(),
5581            diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
5582       << NewDecl << OldImportAttr;
5583     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
5584     S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
5585     OldDecl->dropAttr<DLLImportAttr>();
5586     NewDecl->dropAttr<DLLImportAttr>();
5587   } else if (IsInline && OldImportAttr &&
5588              !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
5589     // In MinGW, seeing a function declared inline drops the dllimport attribute.
5590     OldDecl->dropAttr<DLLImportAttr>();
5591     NewDecl->dropAttr<DLLImportAttr>();
5592     S.Diag(NewDecl->getLocation(),
5593            diag::warn_dllimport_dropped_from_inline_function)
5594         << NewDecl << OldImportAttr;
5595   }
5596 }
5597 
5598 /// Given that we are within the definition of the given function,
5599 /// will that definition behave like C99's 'inline', where the
5600 /// definition is discarded except for optimization purposes?
5601 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
5602   // Try to avoid calling GetGVALinkageForFunction.
5603 
5604   // All cases of this require the 'inline' keyword.
5605   if (!FD->isInlined()) return false;
5606 
5607   // This is only possible in C++ with the gnu_inline attribute.
5608   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
5609     return false;
5610 
5611   // Okay, go ahead and call the relatively-more-expensive function.
5612 
5613 #ifndef NDEBUG
5614   // AST quite reasonably asserts that it's working on a function
5615   // definition.  We don't really have a way to tell it that we're
5616   // currently defining the function, so just lie to it in +Asserts
5617   // builds.  This is an awful hack.
5618   FD->setLazyBody(1);
5619 #endif
5620 
5621   bool isC99Inline =
5622       S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
5623 
5624 #ifndef NDEBUG
5625   FD->setLazyBody(0);
5626 #endif
5627 
5628   return isC99Inline;
5629 }
5630 
5631 /// Determine whether a variable is extern "C" prior to attaching
5632 /// an initializer. We can't just call isExternC() here, because that
5633 /// will also compute and cache whether the declaration is externally
5634 /// visible, which might change when we attach the initializer.
5635 ///
5636 /// This can only be used if the declaration is known to not be a
5637 /// redeclaration of an internal linkage declaration.
5638 ///
5639 /// For instance:
5640 ///
5641 ///   auto x = []{};
5642 ///
5643 /// Attaching the initializer here makes this declaration not externally
5644 /// visible, because its type has internal linkage.
5645 ///
5646 /// FIXME: This is a hack.
5647 template<typename T>
5648 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
5649   if (S.getLangOpts().CPlusPlus) {
5650     // In C++, the overloadable attribute negates the effects of extern "C".
5651     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
5652       return false;
5653 
5654     // So do CUDA's host/device attributes.
5655     if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() ||
5656                                  D->template hasAttr<CUDAHostAttr>()))
5657       return false;
5658   }
5659   return D->isExternC();
5660 }
5661 
5662 static bool shouldConsiderLinkage(const VarDecl *VD) {
5663   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
5664   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC))
5665     return VD->hasExternalStorage();
5666   if (DC->isFileContext())
5667     return true;
5668   if (DC->isRecord())
5669     return false;
5670   llvm_unreachable("Unexpected context");
5671 }
5672 
5673 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
5674   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
5675   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
5676       isa<OMPDeclareReductionDecl>(DC))
5677     return true;
5678   if (DC->isRecord())
5679     return false;
5680   llvm_unreachable("Unexpected context");
5681 }
5682 
5683 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
5684                           AttributeList::Kind Kind) {
5685   for (const AttributeList *L = AttrList; L; L = L->getNext())
5686     if (L->getKind() == Kind)
5687       return true;
5688   return false;
5689 }
5690 
5691 static bool hasParsedAttr(Scope *S, const Declarator &PD,
5692                           AttributeList::Kind Kind) {
5693   // Check decl attributes on the DeclSpec.
5694   if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
5695     return true;
5696 
5697   // Walk the declarator structure, checking decl attributes that were in a type
5698   // position to the decl itself.
5699   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
5700     if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
5701       return true;
5702   }
5703 
5704   // Finally, check attributes on the decl itself.
5705   return hasParsedAttr(S, PD.getAttributes(), Kind);
5706 }
5707 
5708 /// Adjust the \c DeclContext for a function or variable that might be a
5709 /// function-local external declaration.
5710 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
5711   if (!DC->isFunctionOrMethod())
5712     return false;
5713 
5714   // If this is a local extern function or variable declared within a function
5715   // template, don't add it into the enclosing namespace scope until it is
5716   // instantiated; it might have a dependent type right now.
5717   if (DC->isDependentContext())
5718     return true;
5719 
5720   // C++11 [basic.link]p7:
5721   //   When a block scope declaration of an entity with linkage is not found to
5722   //   refer to some other declaration, then that entity is a member of the
5723   //   innermost enclosing namespace.
5724   //
5725   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
5726   // semantically-enclosing namespace, not a lexically-enclosing one.
5727   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
5728     DC = DC->getParent();
5729   return true;
5730 }
5731 
5732 /// \brief Returns true if given declaration has external C language linkage.
5733 static bool isDeclExternC(const Decl *D) {
5734   if (const auto *FD = dyn_cast<FunctionDecl>(D))
5735     return FD->isExternC();
5736   if (const auto *VD = dyn_cast<VarDecl>(D))
5737     return VD->isExternC();
5738 
5739   llvm_unreachable("Unknown type of decl!");
5740 }
5741 
5742 NamedDecl *
5743 Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
5744                               TypeSourceInfo *TInfo, LookupResult &Previous,
5745                               MultiTemplateParamsArg TemplateParamLists,
5746                               bool &AddToScope) {
5747   QualType R = TInfo->getType();
5748   DeclarationName Name = GetNameForDeclarator(D).getName();
5749 
5750   // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
5751   // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
5752   // argument.
5753   if (getLangOpts().OpenCL && (R->isImageType() || R->isPipeType())) {
5754     Diag(D.getIdentifierLoc(),
5755          diag::err_opencl_type_can_only_be_used_as_function_parameter)
5756         << R;
5757     D.setInvalidType();
5758     return nullptr;
5759   }
5760 
5761   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
5762   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
5763 
5764   // dllimport globals without explicit storage class are treated as extern. We
5765   // have to change the storage class this early to get the right DeclContext.
5766   if (SC == SC_None && !DC->isRecord() &&
5767       hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
5768       !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
5769     SC = SC_Extern;
5770 
5771   DeclContext *OriginalDC = DC;
5772   bool IsLocalExternDecl = SC == SC_Extern &&
5773                            adjustContextForLocalExternDecl(DC);
5774 
5775   if (getLangOpts().OpenCL) {
5776     // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
5777     QualType NR = R;
5778     while (NR->isPointerType()) {
5779       if (NR->isFunctionPointerType()) {
5780         Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer_variable);
5781         D.setInvalidType();
5782         break;
5783       }
5784       NR = NR->getPointeeType();
5785     }
5786 
5787     if (!getOpenCLOptions().cl_khr_fp16) {
5788       // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
5789       // half array type (unless the cl_khr_fp16 extension is enabled).
5790       if (Context.getBaseElementType(R)->isHalfType()) {
5791         Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
5792         D.setInvalidType();
5793       }
5794     }
5795   }
5796 
5797   if (SCSpec == DeclSpec::SCS_mutable) {
5798     // mutable can only appear on non-static class members, so it's always
5799     // an error here
5800     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
5801     D.setInvalidType();
5802     SC = SC_None;
5803   }
5804 
5805   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
5806       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
5807                               D.getDeclSpec().getStorageClassSpecLoc())) {
5808     // In C++11, the 'register' storage class specifier is deprecated.
5809     // Suppress the warning in system macros, it's used in macros in some
5810     // popular C system headers, such as in glibc's htonl() macro.
5811     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5812          getLangOpts().CPlusPlus1z ? diag::ext_register_storage_class
5813                                    : diag::warn_deprecated_register)
5814       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5815   }
5816 
5817   IdentifierInfo *II = Name.getAsIdentifierInfo();
5818   if (!II) {
5819     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
5820       << Name;
5821     return nullptr;
5822   }
5823 
5824   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5825 
5826   if (!DC->isRecord() && S->getFnParent() == nullptr) {
5827     // C99 6.9p2: The storage-class specifiers auto and register shall not
5828     // appear in the declaration specifiers in an external declaration.
5829     // Global Register+Asm is a GNU extension we support.
5830     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
5831       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
5832       D.setInvalidType();
5833     }
5834   }
5835 
5836   if (getLangOpts().OpenCL) {
5837     // OpenCL v1.2 s6.9.b p4:
5838     // The sampler type cannot be used with the __local and __global address
5839     // space qualifiers.
5840     if (R->isSamplerT() && (R.getAddressSpace() == LangAS::opencl_local ||
5841       R.getAddressSpace() == LangAS::opencl_global)) {
5842       Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
5843     }
5844 
5845     // OpenCL 1.2 spec, p6.9 r:
5846     // The event type cannot be used to declare a program scope variable.
5847     // The event type cannot be used with the __local, __constant and __global
5848     // address space qualifiers.
5849     if (R->isEventT()) {
5850       if (S->getParent() == nullptr) {
5851         Diag(D.getLocStart(), diag::err_event_t_global_var);
5852         D.setInvalidType();
5853       }
5854 
5855       if (R.getAddressSpace()) {
5856         Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
5857         D.setInvalidType();
5858       }
5859     }
5860   }
5861 
5862   bool IsExplicitSpecialization = false;
5863   bool IsVariableTemplateSpecialization = false;
5864   bool IsPartialSpecialization = false;
5865   bool IsVariableTemplate = false;
5866   VarDecl *NewVD = nullptr;
5867   VarTemplateDecl *NewTemplate = nullptr;
5868   TemplateParameterList *TemplateParams = nullptr;
5869   if (!getLangOpts().CPlusPlus) {
5870     NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
5871                             D.getIdentifierLoc(), II,
5872                             R, TInfo, SC);
5873 
5874     if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType())
5875       ParsingInitForAutoVars.insert(NewVD);
5876 
5877     if (D.isInvalidType())
5878       NewVD->setInvalidDecl();
5879   } else {
5880     bool Invalid = false;
5881 
5882     if (DC->isRecord() && !CurContext->isRecord()) {
5883       // This is an out-of-line definition of a static data member.
5884       switch (SC) {
5885       case SC_None:
5886         break;
5887       case SC_Static:
5888         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5889              diag::err_static_out_of_line)
5890           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5891         break;
5892       case SC_Auto:
5893       case SC_Register:
5894       case SC_Extern:
5895         // [dcl.stc] p2: The auto or register specifiers shall be applied only
5896         // to names of variables declared in a block or to function parameters.
5897         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
5898         // of class members
5899 
5900         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5901              diag::err_storage_class_for_static_member)
5902           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5903         break;
5904       case SC_PrivateExtern:
5905         llvm_unreachable("C storage class in c++!");
5906       }
5907     }
5908 
5909     if (SC == SC_Static && CurContext->isRecord()) {
5910       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
5911         if (RD->isLocalClass())
5912           Diag(D.getIdentifierLoc(),
5913                diag::err_static_data_member_not_allowed_in_local_class)
5914             << Name << RD->getDeclName();
5915 
5916         // C++98 [class.union]p1: If a union contains a static data member,
5917         // the program is ill-formed. C++11 drops this restriction.
5918         if (RD->isUnion())
5919           Diag(D.getIdentifierLoc(),
5920                getLangOpts().CPlusPlus11
5921                  ? diag::warn_cxx98_compat_static_data_member_in_union
5922                  : diag::ext_static_data_member_in_union) << Name;
5923         // We conservatively disallow static data members in anonymous structs.
5924         else if (!RD->getDeclName())
5925           Diag(D.getIdentifierLoc(),
5926                diag::err_static_data_member_not_allowed_in_anon_struct)
5927             << Name << RD->isUnion();
5928       }
5929     }
5930 
5931     // Match up the template parameter lists with the scope specifier, then
5932     // determine whether we have a template or a template specialization.
5933     TemplateParams = MatchTemplateParametersToScopeSpecifier(
5934         D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
5935         D.getCXXScopeSpec(),
5936         D.getName().getKind() == UnqualifiedId::IK_TemplateId
5937             ? D.getName().TemplateId
5938             : nullptr,
5939         TemplateParamLists,
5940         /*never a friend*/ false, IsExplicitSpecialization, Invalid);
5941 
5942     if (TemplateParams) {
5943       if (!TemplateParams->size() &&
5944           D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
5945         // There is an extraneous 'template<>' for this variable. Complain
5946         // about it, but allow the declaration of the variable.
5947         Diag(TemplateParams->getTemplateLoc(),
5948              diag::err_template_variable_noparams)
5949           << II
5950           << SourceRange(TemplateParams->getTemplateLoc(),
5951                          TemplateParams->getRAngleLoc());
5952         TemplateParams = nullptr;
5953       } else {
5954         if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
5955           // This is an explicit specialization or a partial specialization.
5956           // FIXME: Check that we can declare a specialization here.
5957           IsVariableTemplateSpecialization = true;
5958           IsPartialSpecialization = TemplateParams->size() > 0;
5959         } else { // if (TemplateParams->size() > 0)
5960           // This is a template declaration.
5961           IsVariableTemplate = true;
5962 
5963           // Check that we can declare a template here.
5964           if (CheckTemplateDeclScope(S, TemplateParams))
5965             return nullptr;
5966 
5967           // Only C++1y supports variable templates (N3651).
5968           Diag(D.getIdentifierLoc(),
5969                getLangOpts().CPlusPlus14
5970                    ? diag::warn_cxx11_compat_variable_template
5971                    : diag::ext_variable_template);
5972         }
5973       }
5974     } else {
5975       assert(
5976           (Invalid || D.getName().getKind() != UnqualifiedId::IK_TemplateId) &&
5977           "should have a 'template<>' for this decl");
5978     }
5979 
5980     if (IsVariableTemplateSpecialization) {
5981       SourceLocation TemplateKWLoc =
5982           TemplateParamLists.size() > 0
5983               ? TemplateParamLists[0]->getTemplateLoc()
5984               : SourceLocation();
5985       DeclResult Res = ActOnVarTemplateSpecialization(
5986           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
5987           IsPartialSpecialization);
5988       if (Res.isInvalid())
5989         return nullptr;
5990       NewVD = cast<VarDecl>(Res.get());
5991       AddToScope = false;
5992     } else
5993       NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
5994                               D.getIdentifierLoc(), II, R, TInfo, SC);
5995 
5996     // If this is supposed to be a variable template, create it as such.
5997     if (IsVariableTemplate) {
5998       NewTemplate =
5999           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
6000                                   TemplateParams, NewVD);
6001       NewVD->setDescribedVarTemplate(NewTemplate);
6002     }
6003 
6004     // If this decl has an auto type in need of deduction, make a note of the
6005     // Decl so we can diagnose uses of it in its own initializer.
6006     if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType())
6007       ParsingInitForAutoVars.insert(NewVD);
6008 
6009     if (D.isInvalidType() || Invalid) {
6010       NewVD->setInvalidDecl();
6011       if (NewTemplate)
6012         NewTemplate->setInvalidDecl();
6013     }
6014 
6015     SetNestedNameSpecifier(NewVD, D);
6016 
6017     // If we have any template parameter lists that don't directly belong to
6018     // the variable (matching the scope specifier), store them.
6019     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
6020     if (TemplateParamLists.size() > VDTemplateParamLists)
6021       NewVD->setTemplateParameterListsInfo(
6022           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
6023 
6024     if (D.getDeclSpec().isConstexprSpecified())
6025       NewVD->setConstexpr(true);
6026 
6027     if (D.getDeclSpec().isConceptSpecified()) {
6028       if (VarTemplateDecl *VTD = NewVD->getDescribedVarTemplate())
6029         VTD->setConcept();
6030 
6031       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
6032       // be declared with the thread_local, inline, friend, or constexpr
6033       // specifiers, [...]
6034       if (D.getDeclSpec().getThreadStorageClassSpec() == TSCS_thread_local) {
6035         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6036              diag::err_concept_decl_invalid_specifiers)
6037             << 0 << 0;
6038         NewVD->setInvalidDecl(true);
6039       }
6040 
6041       if (D.getDeclSpec().isConstexprSpecified()) {
6042         Diag(D.getDeclSpec().getConstexprSpecLoc(),
6043              diag::err_concept_decl_invalid_specifiers)
6044             << 0 << 3;
6045         NewVD->setInvalidDecl(true);
6046       }
6047 
6048       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
6049       // applied only to the definition of a function template or variable
6050       // template, declared in namespace scope.
6051       if (IsVariableTemplateSpecialization) {
6052         Diag(D.getDeclSpec().getConceptSpecLoc(),
6053              diag::err_concept_specified_specialization)
6054             << (IsPartialSpecialization ? 2 : 1);
6055       }
6056 
6057       // C++ Concepts TS [dcl.spec.concept]p6: A variable concept has the
6058       // following restrictions:
6059       // - The declared type shall have the type bool.
6060       if (!Context.hasSameType(NewVD->getType(), Context.BoolTy) &&
6061           !NewVD->isInvalidDecl()) {
6062         Diag(D.getIdentifierLoc(), diag::err_variable_concept_bool_decl);
6063         NewVD->setInvalidDecl(true);
6064       }
6065     }
6066   }
6067 
6068   // Set the lexical context. If the declarator has a C++ scope specifier, the
6069   // lexical context will be different from the semantic context.
6070   NewVD->setLexicalDeclContext(CurContext);
6071   if (NewTemplate)
6072     NewTemplate->setLexicalDeclContext(CurContext);
6073 
6074   if (IsLocalExternDecl)
6075     NewVD->setLocalExternDecl();
6076 
6077   bool EmitTLSUnsupportedError = false;
6078   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
6079     // C++11 [dcl.stc]p4:
6080     //   When thread_local is applied to a variable of block scope the
6081     //   storage-class-specifier static is implied if it does not appear
6082     //   explicitly.
6083     // Core issue: 'static' is not implied if the variable is declared
6084     //   'extern'.
6085     if (NewVD->hasLocalStorage() &&
6086         (SCSpec != DeclSpec::SCS_unspecified ||
6087          TSCS != DeclSpec::TSCS_thread_local ||
6088          !DC->isFunctionOrMethod()))
6089       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6090            diag::err_thread_non_global)
6091         << DeclSpec::getSpecifierName(TSCS);
6092     else if (!Context.getTargetInfo().isTLSSupported()) {
6093       if (getLangOpts().CUDA) {
6094         // Postpone error emission until we've collected attributes required to
6095         // figure out whether it's a host or device variable and whether the
6096         // error should be ignored.
6097         EmitTLSUnsupportedError = true;
6098         // We still need to mark the variable as TLS so it shows up in AST with
6099         // proper storage class for other tools to use even if we're not going
6100         // to emit any code for it.
6101         NewVD->setTSCSpec(TSCS);
6102       } else
6103         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6104              diag::err_thread_unsupported);
6105     } else
6106       NewVD->setTSCSpec(TSCS);
6107   }
6108 
6109   // C99 6.7.4p3
6110   //   An inline definition of a function with external linkage shall
6111   //   not contain a definition of a modifiable object with static or
6112   //   thread storage duration...
6113   // We only apply this when the function is required to be defined
6114   // elsewhere, i.e. when the function is not 'extern inline'.  Note
6115   // that a local variable with thread storage duration still has to
6116   // be marked 'static'.  Also note that it's possible to get these
6117   // semantics in C++ using __attribute__((gnu_inline)).
6118   if (SC == SC_Static && S->getFnParent() != nullptr &&
6119       !NewVD->getType().isConstQualified()) {
6120     FunctionDecl *CurFD = getCurFunctionDecl();
6121     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
6122       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6123            diag::warn_static_local_in_extern_inline);
6124       MaybeSuggestAddingStaticToDecl(CurFD);
6125     }
6126   }
6127 
6128   if (D.getDeclSpec().isModulePrivateSpecified()) {
6129     if (IsVariableTemplateSpecialization)
6130       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6131           << (IsPartialSpecialization ? 1 : 0)
6132           << FixItHint::CreateRemoval(
6133                  D.getDeclSpec().getModulePrivateSpecLoc());
6134     else if (IsExplicitSpecialization)
6135       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6136         << 2
6137         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6138     else if (NewVD->hasLocalStorage())
6139       Diag(NewVD->getLocation(), diag::err_module_private_local)
6140         << 0 << NewVD->getDeclName()
6141         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
6142         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6143     else {
6144       NewVD->setModulePrivate();
6145       if (NewTemplate)
6146         NewTemplate->setModulePrivate();
6147     }
6148   }
6149 
6150   // Handle attributes prior to checking for duplicates in MergeVarDecl
6151   ProcessDeclAttributes(S, NewVD, D);
6152 
6153   if (getLangOpts().CUDA) {
6154     if (EmitTLSUnsupportedError && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD))
6155       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6156            diag::err_thread_unsupported);
6157     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
6158     // storage [duration]."
6159     if (SC == SC_None && S->getFnParent() != nullptr &&
6160         (NewVD->hasAttr<CUDASharedAttr>() ||
6161          NewVD->hasAttr<CUDAConstantAttr>())) {
6162       NewVD->setStorageClass(SC_Static);
6163     }
6164   }
6165 
6166   // Ensure that dllimport globals without explicit storage class are treated as
6167   // extern. The storage class is set above using parsed attributes. Now we can
6168   // check the VarDecl itself.
6169   assert(!NewVD->hasAttr<DLLImportAttr>() ||
6170          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
6171          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
6172 
6173   // In auto-retain/release, infer strong retension for variables of
6174   // retainable type.
6175   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
6176     NewVD->setInvalidDecl();
6177 
6178   // Handle GNU asm-label extension (encoded as an attribute).
6179   if (Expr *E = (Expr*)D.getAsmLabel()) {
6180     // The parser guarantees this is a string.
6181     StringLiteral *SE = cast<StringLiteral>(E);
6182     StringRef Label = SE->getString();
6183     if (S->getFnParent() != nullptr) {
6184       switch (SC) {
6185       case SC_None:
6186       case SC_Auto:
6187         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
6188         break;
6189       case SC_Register:
6190         // Local Named register
6191         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
6192             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
6193           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6194         break;
6195       case SC_Static:
6196       case SC_Extern:
6197       case SC_PrivateExtern:
6198         break;
6199       }
6200     } else if (SC == SC_Register) {
6201       // Global Named register
6202       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
6203         const auto &TI = Context.getTargetInfo();
6204         bool HasSizeMismatch;
6205 
6206         if (!TI.isValidGCCRegisterName(Label))
6207           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6208         else if (!TI.validateGlobalRegisterVariable(Label,
6209                                                     Context.getTypeSize(R),
6210                                                     HasSizeMismatch))
6211           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
6212         else if (HasSizeMismatch)
6213           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
6214       }
6215 
6216       if (!R->isIntegralType(Context) && !R->isPointerType()) {
6217         Diag(D.getLocStart(), diag::err_asm_bad_register_type);
6218         NewVD->setInvalidDecl(true);
6219       }
6220     }
6221 
6222     NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
6223                                                 Context, Label, 0));
6224   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6225     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6226       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
6227     if (I != ExtnameUndeclaredIdentifiers.end()) {
6228       if (isDeclExternC(NewVD)) {
6229         NewVD->addAttr(I->second);
6230         ExtnameUndeclaredIdentifiers.erase(I);
6231       } else
6232         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
6233             << /*Variable*/1 << NewVD;
6234     }
6235   }
6236 
6237   // Diagnose shadowed variables before filtering for scope.
6238   if (D.getCXXScopeSpec().isEmpty())
6239     CheckShadow(S, NewVD, Previous);
6240 
6241   // Don't consider existing declarations that are in a different
6242   // scope and are out-of-semantic-context declarations (if the new
6243   // declaration has linkage).
6244   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
6245                        D.getCXXScopeSpec().isNotEmpty() ||
6246                        IsExplicitSpecialization ||
6247                        IsVariableTemplateSpecialization);
6248 
6249   // Check whether the previous declaration is in the same block scope. This
6250   // affects whether we merge types with it, per C++11 [dcl.array]p3.
6251   if (getLangOpts().CPlusPlus &&
6252       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
6253     NewVD->setPreviousDeclInSameBlockScope(
6254         Previous.isSingleResult() && !Previous.isShadowed() &&
6255         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
6256 
6257   if (!getLangOpts().CPlusPlus) {
6258     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6259   } else {
6260     // If this is an explicit specialization of a static data member, check it.
6261     if (IsExplicitSpecialization && !NewVD->isInvalidDecl() &&
6262         CheckMemberSpecialization(NewVD, Previous))
6263       NewVD->setInvalidDecl();
6264 
6265     // Merge the decl with the existing one if appropriate.
6266     if (!Previous.empty()) {
6267       if (Previous.isSingleResult() &&
6268           isa<FieldDecl>(Previous.getFoundDecl()) &&
6269           D.getCXXScopeSpec().isSet()) {
6270         // The user tried to define a non-static data member
6271         // out-of-line (C++ [dcl.meaning]p1).
6272         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
6273           << D.getCXXScopeSpec().getRange();
6274         Previous.clear();
6275         NewVD->setInvalidDecl();
6276       }
6277     } else if (D.getCXXScopeSpec().isSet()) {
6278       // No previous declaration in the qualifying scope.
6279       Diag(D.getIdentifierLoc(), diag::err_no_member)
6280         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
6281         << D.getCXXScopeSpec().getRange();
6282       NewVD->setInvalidDecl();
6283     }
6284 
6285     if (!IsVariableTemplateSpecialization)
6286       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6287 
6288     // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare [...]
6289     // an explicit specialization (14.8.3) or a partial specialization of a
6290     // concept definition.
6291     if (IsVariableTemplateSpecialization &&
6292         !D.getDeclSpec().isConceptSpecified() && !Previous.empty() &&
6293         Previous.isSingleResult()) {
6294       NamedDecl *PreviousDecl = Previous.getFoundDecl();
6295       if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(PreviousDecl)) {
6296         if (VarTmpl->isConcept()) {
6297           Diag(NewVD->getLocation(), diag::err_concept_specialized)
6298               << 1                            /*variable*/
6299               << (IsPartialSpecialization ? 2 /*partially specialized*/
6300                                           : 1 /*explicitly specialized*/);
6301           Diag(VarTmpl->getLocation(), diag::note_previous_declaration);
6302           NewVD->setInvalidDecl();
6303         }
6304       }
6305     }
6306 
6307     if (NewTemplate) {
6308       VarTemplateDecl *PrevVarTemplate =
6309           NewVD->getPreviousDecl()
6310               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
6311               : nullptr;
6312 
6313       // Check the template parameter list of this declaration, possibly
6314       // merging in the template parameter list from the previous variable
6315       // template declaration.
6316       if (CheckTemplateParameterList(
6317               TemplateParams,
6318               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
6319                               : nullptr,
6320               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
6321                DC->isDependentContext())
6322                   ? TPC_ClassTemplateMember
6323                   : TPC_VarTemplate))
6324         NewVD->setInvalidDecl();
6325 
6326       // If we are providing an explicit specialization of a static variable
6327       // template, make a note of that.
6328       if (PrevVarTemplate &&
6329           PrevVarTemplate->getInstantiatedFromMemberTemplate())
6330         PrevVarTemplate->setMemberSpecialization();
6331     }
6332   }
6333 
6334   ProcessPragmaWeak(S, NewVD);
6335 
6336   // If this is the first declaration of an extern C variable, update
6337   // the map of such variables.
6338   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
6339       isIncompleteDeclExternC(*this, NewVD))
6340     RegisterLocallyScopedExternCDecl(NewVD, S);
6341 
6342   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
6343     Decl *ManglingContextDecl;
6344     if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
6345             NewVD->getDeclContext(), ManglingContextDecl)) {
6346       Context.setManglingNumber(
6347           NewVD, MCtx->getManglingNumber(
6348                      NewVD, getMSManglingNumber(getLangOpts(), S)));
6349       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
6350     }
6351   }
6352 
6353   // Special handling of variable named 'main'.
6354   if (Name.isIdentifier() && Name.getAsIdentifierInfo()->isStr("main") &&
6355       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
6356       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
6357 
6358     // C++ [basic.start.main]p3
6359     // A program that declares a variable main at global scope is ill-formed.
6360     if (getLangOpts().CPlusPlus)
6361       Diag(D.getLocStart(), diag::err_main_global_variable);
6362 
6363     // In C, and external-linkage variable named main results in undefined
6364     // behavior.
6365     else if (NewVD->hasExternalFormalLinkage())
6366       Diag(D.getLocStart(), diag::warn_main_redefined);
6367   }
6368 
6369   if (D.isRedeclaration() && !Previous.empty()) {
6370     checkDLLAttributeRedeclaration(
6371         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD,
6372         IsExplicitSpecialization);
6373   }
6374 
6375   if (NewTemplate) {
6376     if (NewVD->isInvalidDecl())
6377       NewTemplate->setInvalidDecl();
6378     ActOnDocumentableDecl(NewTemplate);
6379     return NewTemplate;
6380   }
6381 
6382   return NewVD;
6383 }
6384 
6385 /// \brief Diagnose variable or built-in function shadowing.  Implements
6386 /// -Wshadow.
6387 ///
6388 /// This method is called whenever a VarDecl is added to a "useful"
6389 /// scope.
6390 ///
6391 /// \param S the scope in which the shadowing name is being declared
6392 /// \param R the lookup of the name
6393 ///
6394 void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) {
6395   // Return if warning is ignored.
6396   if (Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc()))
6397     return;
6398 
6399   // Don't diagnose declarations at file scope.
6400   if (D->hasGlobalStorage())
6401     return;
6402 
6403   DeclContext *NewDC = D->getDeclContext();
6404 
6405   // Only diagnose if we're shadowing an unambiguous field or variable.
6406   if (R.getResultKind() != LookupResult::Found)
6407     return;
6408 
6409   NamedDecl* ShadowedDecl = R.getFoundDecl();
6410   if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl))
6411     return;
6412 
6413   // Fields are not shadowed by variables in C++ static methods.
6414   if (isa<FieldDecl>(ShadowedDecl))
6415     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
6416       if (MD->isStatic())
6417         return;
6418 
6419   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
6420     if (shadowedVar->isExternC()) {
6421       // For shadowing external vars, make sure that we point to the global
6422       // declaration, not a locally scoped extern declaration.
6423       for (auto I : shadowedVar->redecls())
6424         if (I->isFileVarDecl()) {
6425           ShadowedDecl = I;
6426           break;
6427         }
6428     }
6429 
6430   DeclContext *OldDC = ShadowedDecl->getDeclContext();
6431 
6432   // Only warn about certain kinds of shadowing for class members.
6433   if (NewDC && NewDC->isRecord()) {
6434     // In particular, don't warn about shadowing non-class members.
6435     if (!OldDC->isRecord())
6436       return;
6437 
6438     // TODO: should we warn about static data members shadowing
6439     // static data members from base classes?
6440 
6441     // TODO: don't diagnose for inaccessible shadowed members.
6442     // This is hard to do perfectly because we might friend the
6443     // shadowing context, but that's just a false negative.
6444   }
6445 
6446   // Determine what kind of declaration we're shadowing.
6447 
6448   // The order must be consistent with the %select in the warning message.
6449   enum ShadowedDeclKind { Local, Global, StaticMember, Field };
6450   ShadowedDeclKind Kind;
6451   if (isa<RecordDecl>(OldDC)) {
6452     if (isa<FieldDecl>(ShadowedDecl))
6453       Kind = Field;
6454     else
6455       Kind = StaticMember;
6456   } else if (OldDC->isFileContext()) {
6457     Kind = Global;
6458   } else {
6459     Kind = Local;
6460   }
6461 
6462   DeclarationName Name = R.getLookupName();
6463 
6464   // Emit warning and note.
6465   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
6466     return;
6467   Diag(R.getNameLoc(), diag::warn_decl_shadow) << Name << Kind << OldDC;
6468   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
6469 }
6470 
6471 /// \brief Check -Wshadow without the advantage of a previous lookup.
6472 void Sema::CheckShadow(Scope *S, VarDecl *D) {
6473   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
6474     return;
6475 
6476   LookupResult R(*this, D->getDeclName(), D->getLocation(),
6477                  Sema::LookupOrdinaryName, Sema::ForRedeclaration);
6478   LookupName(R, S);
6479   CheckShadow(S, D, R);
6480 }
6481 
6482 /// Check for conflict between this global or extern "C" declaration and
6483 /// previous global or extern "C" declarations. This is only used in C++.
6484 template<typename T>
6485 static bool checkGlobalOrExternCConflict(
6486     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
6487   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
6488   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
6489 
6490   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
6491     // The common case: this global doesn't conflict with any extern "C"
6492     // declaration.
6493     return false;
6494   }
6495 
6496   if (Prev) {
6497     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
6498       // Both the old and new declarations have C language linkage. This is a
6499       // redeclaration.
6500       Previous.clear();
6501       Previous.addDecl(Prev);
6502       return true;
6503     }
6504 
6505     // This is a global, non-extern "C" declaration, and there is a previous
6506     // non-global extern "C" declaration. Diagnose if this is a variable
6507     // declaration.
6508     if (!isa<VarDecl>(ND))
6509       return false;
6510   } else {
6511     // The declaration is extern "C". Check for any declaration in the
6512     // translation unit which might conflict.
6513     if (IsGlobal) {
6514       // We have already performed the lookup into the translation unit.
6515       IsGlobal = false;
6516       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6517            I != E; ++I) {
6518         if (isa<VarDecl>(*I)) {
6519           Prev = *I;
6520           break;
6521         }
6522       }
6523     } else {
6524       DeclContext::lookup_result R =
6525           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
6526       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
6527            I != E; ++I) {
6528         if (isa<VarDecl>(*I)) {
6529           Prev = *I;
6530           break;
6531         }
6532         // FIXME: If we have any other entity with this name in global scope,
6533         // the declaration is ill-formed, but that is a defect: it breaks the
6534         // 'stat' hack, for instance. Only variables can have mangled name
6535         // clashes with extern "C" declarations, so only they deserve a
6536         // diagnostic.
6537       }
6538     }
6539 
6540     if (!Prev)
6541       return false;
6542   }
6543 
6544   // Use the first declaration's location to ensure we point at something which
6545   // is lexically inside an extern "C" linkage-spec.
6546   assert(Prev && "should have found a previous declaration to diagnose");
6547   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
6548     Prev = FD->getFirstDecl();
6549   else
6550     Prev = cast<VarDecl>(Prev)->getFirstDecl();
6551 
6552   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
6553     << IsGlobal << ND;
6554   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
6555     << IsGlobal;
6556   return false;
6557 }
6558 
6559 /// Apply special rules for handling extern "C" declarations. Returns \c true
6560 /// if we have found that this is a redeclaration of some prior entity.
6561 ///
6562 /// Per C++ [dcl.link]p6:
6563 ///   Two declarations [for a function or variable] with C language linkage
6564 ///   with the same name that appear in different scopes refer to the same
6565 ///   [entity]. An entity with C language linkage shall not be declared with
6566 ///   the same name as an entity in global scope.
6567 template<typename T>
6568 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
6569                                                   LookupResult &Previous) {
6570   if (!S.getLangOpts().CPlusPlus) {
6571     // In C, when declaring a global variable, look for a corresponding 'extern'
6572     // variable declared in function scope. We don't need this in C++, because
6573     // we find local extern decls in the surrounding file-scope DeclContext.
6574     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
6575       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
6576         Previous.clear();
6577         Previous.addDecl(Prev);
6578         return true;
6579       }
6580     }
6581     return false;
6582   }
6583 
6584   // A declaration in the translation unit can conflict with an extern "C"
6585   // declaration.
6586   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
6587     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
6588 
6589   // An extern "C" declaration can conflict with a declaration in the
6590   // translation unit or can be a redeclaration of an extern "C" declaration
6591   // in another scope.
6592   if (isIncompleteDeclExternC(S,ND))
6593     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
6594 
6595   // Neither global nor extern "C": nothing to do.
6596   return false;
6597 }
6598 
6599 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
6600   // If the decl is already known invalid, don't check it.
6601   if (NewVD->isInvalidDecl())
6602     return;
6603 
6604   TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
6605   QualType T = TInfo->getType();
6606 
6607   // Defer checking an 'auto' type until its initializer is attached.
6608   if (T->isUndeducedType())
6609     return;
6610 
6611   if (NewVD->hasAttrs())
6612     CheckAlignasUnderalignment(NewVD);
6613 
6614   if (T->isObjCObjectType()) {
6615     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
6616       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
6617     T = Context.getObjCObjectPointerType(T);
6618     NewVD->setType(T);
6619   }
6620 
6621   // Emit an error if an address space was applied to decl with local storage.
6622   // This includes arrays of objects with address space qualifiers, but not
6623   // automatic variables that point to other address spaces.
6624   // ISO/IEC TR 18037 S5.1.2
6625   if (!getLangOpts().OpenCL
6626       && NewVD->hasLocalStorage() && T.getAddressSpace() != 0) {
6627     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl);
6628     NewVD->setInvalidDecl();
6629     return;
6630   }
6631 
6632   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
6633   // scope.
6634   if (getLangOpts().OpenCLVersion == 120 &&
6635       !getOpenCLOptions().cl_clang_storage_class_specifiers &&
6636       NewVD->isStaticLocal()) {
6637     Diag(NewVD->getLocation(), diag::err_static_function_scope);
6638     NewVD->setInvalidDecl();
6639     return;
6640   }
6641 
6642   if (getLangOpts().OpenCL) {
6643     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
6644     if (NewVD->hasAttr<BlocksAttr>()) {
6645       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
6646       return;
6647     }
6648 
6649     if (T->isBlockPointerType()) {
6650       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
6651       // can't use 'extern' storage class.
6652       if (!T.isConstQualified()) {
6653         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
6654             << 0 /*const*/;
6655         NewVD->setInvalidDecl();
6656         return;
6657       }
6658       if (NewVD->hasExternalStorage()) {
6659         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
6660         NewVD->setInvalidDecl();
6661         return;
6662       }
6663       // OpenCL v2.0 s6.12.5 - Blocks with variadic arguments are not supported.
6664       // TODO: this check is not enough as it doesn't diagnose the typedef
6665       const BlockPointerType *BlkTy = T->getAs<BlockPointerType>();
6666       const FunctionProtoType *FTy =
6667           BlkTy->getPointeeType()->getAs<FunctionProtoType>();
6668       if (FTy && FTy->isVariadic()) {
6669         Diag(NewVD->getLocation(), diag::err_opencl_block_proto_variadic)
6670             << T << NewVD->getSourceRange();
6671         NewVD->setInvalidDecl();
6672         return;
6673       }
6674     }
6675     // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
6676     // __constant address space.
6677     // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static
6678     // variables inside a function can also be declared in the global
6679     // address space.
6680     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
6681         NewVD->hasExternalStorage()) {
6682       if (!T->isSamplerT() &&
6683           !(T.getAddressSpace() == LangAS::opencl_constant ||
6684             (T.getAddressSpace() == LangAS::opencl_global &&
6685              getLangOpts().OpenCLVersion == 200))) {
6686         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
6687         if (getLangOpts().OpenCLVersion == 200)
6688           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
6689               << Scope << "global or constant";
6690         else
6691           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
6692               << Scope << "constant";
6693         NewVD->setInvalidDecl();
6694         return;
6695       }
6696     } else {
6697       if (T.getAddressSpace() == LangAS::opencl_global) {
6698         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6699             << 1 /*is any function*/ << "global";
6700         NewVD->setInvalidDecl();
6701         return;
6702       }
6703       // OpenCL v1.1 s6.5.2 and s6.5.3 no local or constant variables
6704       // in functions.
6705       if (T.getAddressSpace() == LangAS::opencl_constant ||
6706           T.getAddressSpace() == LangAS::opencl_local) {
6707         FunctionDecl *FD = getCurFunctionDecl();
6708         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
6709           if (T.getAddressSpace() == LangAS::opencl_constant)
6710             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6711                 << 0 /*non-kernel only*/ << "constant";
6712           else
6713             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6714                 << 0 /*non-kernel only*/ << "local";
6715           NewVD->setInvalidDecl();
6716           return;
6717         }
6718       }
6719     }
6720   }
6721 
6722   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
6723       && !NewVD->hasAttr<BlocksAttr>()) {
6724     if (getLangOpts().getGC() != LangOptions::NonGC)
6725       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
6726     else {
6727       assert(!getLangOpts().ObjCAutoRefCount);
6728       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
6729     }
6730   }
6731 
6732   bool isVM = T->isVariablyModifiedType();
6733   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
6734       NewVD->hasAttr<BlocksAttr>())
6735     getCurFunction()->setHasBranchProtectedScope();
6736 
6737   if ((isVM && NewVD->hasLinkage()) ||
6738       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
6739     bool SizeIsNegative;
6740     llvm::APSInt Oversized;
6741     TypeSourceInfo *FixedTInfo =
6742       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
6743                                                     SizeIsNegative, Oversized);
6744     if (!FixedTInfo && T->isVariableArrayType()) {
6745       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
6746       // FIXME: This won't give the correct result for
6747       // int a[10][n];
6748       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
6749 
6750       if (NewVD->isFileVarDecl())
6751         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
6752         << SizeRange;
6753       else if (NewVD->isStaticLocal())
6754         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
6755         << SizeRange;
6756       else
6757         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
6758         << SizeRange;
6759       NewVD->setInvalidDecl();
6760       return;
6761     }
6762 
6763     if (!FixedTInfo) {
6764       if (NewVD->isFileVarDecl())
6765         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
6766       else
6767         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
6768       NewVD->setInvalidDecl();
6769       return;
6770     }
6771 
6772     Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
6773     NewVD->setType(FixedTInfo->getType());
6774     NewVD->setTypeSourceInfo(FixedTInfo);
6775   }
6776 
6777   if (T->isVoidType()) {
6778     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
6779     //                    of objects and functions.
6780     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
6781       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
6782         << T;
6783       NewVD->setInvalidDecl();
6784       return;
6785     }
6786   }
6787 
6788   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
6789     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
6790     NewVD->setInvalidDecl();
6791     return;
6792   }
6793 
6794   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
6795     Diag(NewVD->getLocation(), diag::err_block_on_vm);
6796     NewVD->setInvalidDecl();
6797     return;
6798   }
6799 
6800   if (NewVD->isConstexpr() && !T->isDependentType() &&
6801       RequireLiteralType(NewVD->getLocation(), T,
6802                          diag::err_constexpr_var_non_literal)) {
6803     NewVD->setInvalidDecl();
6804     return;
6805   }
6806 }
6807 
6808 /// \brief Perform semantic checking on a newly-created variable
6809 /// declaration.
6810 ///
6811 /// This routine performs all of the type-checking required for a
6812 /// variable declaration once it has been built. It is used both to
6813 /// check variables after they have been parsed and their declarators
6814 /// have been translated into a declaration, and to check variables
6815 /// that have been instantiated from a template.
6816 ///
6817 /// Sets NewVD->isInvalidDecl() if an error was encountered.
6818 ///
6819 /// Returns true if the variable declaration is a redeclaration.
6820 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
6821   CheckVariableDeclarationType(NewVD);
6822 
6823   // If the decl is already known invalid, don't check it.
6824   if (NewVD->isInvalidDecl())
6825     return false;
6826 
6827   // If we did not find anything by this name, look for a non-visible
6828   // extern "C" declaration with the same name.
6829   if (Previous.empty() &&
6830       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
6831     Previous.setShadowed();
6832 
6833   if (!Previous.empty()) {
6834     MergeVarDecl(NewVD, Previous);
6835     return true;
6836   }
6837   return false;
6838 }
6839 
6840 namespace {
6841 struct FindOverriddenMethod {
6842   Sema *S;
6843   CXXMethodDecl *Method;
6844 
6845   /// Member lookup function that determines whether a given C++
6846   /// method overrides a method in a base class, to be used with
6847   /// CXXRecordDecl::lookupInBases().
6848   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
6849     RecordDecl *BaseRecord =
6850         Specifier->getType()->getAs<RecordType>()->getDecl();
6851 
6852     DeclarationName Name = Method->getDeclName();
6853 
6854     // FIXME: Do we care about other names here too?
6855     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
6856       // We really want to find the base class destructor here.
6857       QualType T = S->Context.getTypeDeclType(BaseRecord);
6858       CanQualType CT = S->Context.getCanonicalType(T);
6859 
6860       Name = S->Context.DeclarationNames.getCXXDestructorName(CT);
6861     }
6862 
6863     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
6864          Path.Decls = Path.Decls.slice(1)) {
6865       NamedDecl *D = Path.Decls.front();
6866       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
6867         if (MD->isVirtual() && !S->IsOverload(Method, MD, false))
6868           return true;
6869       }
6870     }
6871 
6872     return false;
6873   }
6874 };
6875 
6876 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
6877 } // end anonymous namespace
6878 
6879 /// \brief Report an error regarding overriding, along with any relevant
6880 /// overriden methods.
6881 ///
6882 /// \param DiagID the primary error to report.
6883 /// \param MD the overriding method.
6884 /// \param OEK which overrides to include as notes.
6885 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
6886                             OverrideErrorKind OEK = OEK_All) {
6887   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
6888   for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6889                                       E = MD->end_overridden_methods();
6890        I != E; ++I) {
6891     // This check (& the OEK parameter) could be replaced by a predicate, but
6892     // without lambdas that would be overkill. This is still nicer than writing
6893     // out the diag loop 3 times.
6894     if ((OEK == OEK_All) ||
6895         (OEK == OEK_NonDeleted && !(*I)->isDeleted()) ||
6896         (OEK == OEK_Deleted && (*I)->isDeleted()))
6897       S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
6898   }
6899 }
6900 
6901 /// AddOverriddenMethods - See if a method overrides any in the base classes,
6902 /// and if so, check that it's a valid override and remember it.
6903 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
6904   // Look for methods in base classes that this method might override.
6905   CXXBasePaths Paths;
6906   FindOverriddenMethod FOM;
6907   FOM.Method = MD;
6908   FOM.S = this;
6909   bool hasDeletedOverridenMethods = false;
6910   bool hasNonDeletedOverridenMethods = false;
6911   bool AddedAny = false;
6912   if (DC->lookupInBases(FOM, Paths)) {
6913     for (auto *I : Paths.found_decls()) {
6914       if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
6915         MD->addOverriddenMethod(OldMD->getCanonicalDecl());
6916         if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
6917             !CheckOverridingFunctionAttributes(MD, OldMD) &&
6918             !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
6919             !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
6920           hasDeletedOverridenMethods |= OldMD->isDeleted();
6921           hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
6922           AddedAny = true;
6923         }
6924       }
6925     }
6926   }
6927 
6928   if (hasDeletedOverridenMethods && !MD->isDeleted()) {
6929     ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
6930   }
6931   if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
6932     ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
6933   }
6934 
6935   return AddedAny;
6936 }
6937 
6938 namespace {
6939   // Struct for holding all of the extra arguments needed by
6940   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
6941   struct ActOnFDArgs {
6942     Scope *S;
6943     Declarator &D;
6944     MultiTemplateParamsArg TemplateParamLists;
6945     bool AddToScope;
6946   };
6947 } // end anonymous namespace
6948 
6949 namespace {
6950 
6951 // Callback to only accept typo corrections that have a non-zero edit distance.
6952 // Also only accept corrections that have the same parent decl.
6953 class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
6954  public:
6955   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
6956                             CXXRecordDecl *Parent)
6957       : Context(Context), OriginalFD(TypoFD),
6958         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
6959 
6960   bool ValidateCandidate(const TypoCorrection &candidate) override {
6961     if (candidate.getEditDistance() == 0)
6962       return false;
6963 
6964     SmallVector<unsigned, 1> MismatchedParams;
6965     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
6966                                           CDeclEnd = candidate.end();
6967          CDecl != CDeclEnd; ++CDecl) {
6968       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
6969 
6970       if (FD && !FD->hasBody() &&
6971           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
6972         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
6973           CXXRecordDecl *Parent = MD->getParent();
6974           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
6975             return true;
6976         } else if (!ExpectedParent) {
6977           return true;
6978         }
6979       }
6980     }
6981 
6982     return false;
6983   }
6984 
6985  private:
6986   ASTContext &Context;
6987   FunctionDecl *OriginalFD;
6988   CXXRecordDecl *ExpectedParent;
6989 };
6990 
6991 } // end anonymous namespace
6992 
6993 /// \brief Generate diagnostics for an invalid function redeclaration.
6994 ///
6995 /// This routine handles generating the diagnostic messages for an invalid
6996 /// function redeclaration, including finding possible similar declarations
6997 /// or performing typo correction if there are no previous declarations with
6998 /// the same name.
6999 ///
7000 /// Returns a NamedDecl iff typo correction was performed and substituting in
7001 /// the new declaration name does not cause new errors.
7002 static NamedDecl *DiagnoseInvalidRedeclaration(
7003     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
7004     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
7005   DeclarationName Name = NewFD->getDeclName();
7006   DeclContext *NewDC = NewFD->getDeclContext();
7007   SmallVector<unsigned, 1> MismatchedParams;
7008   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
7009   TypoCorrection Correction;
7010   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
7011   unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
7012                                    : diag::err_member_decl_does_not_match;
7013   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
7014                     IsLocalFriend ? Sema::LookupLocalFriendName
7015                                   : Sema::LookupOrdinaryName,
7016                     Sema::ForRedeclaration);
7017 
7018   NewFD->setInvalidDecl();
7019   if (IsLocalFriend)
7020     SemaRef.LookupName(Prev, S);
7021   else
7022     SemaRef.LookupQualifiedName(Prev, NewDC);
7023   assert(!Prev.isAmbiguous() &&
7024          "Cannot have an ambiguity in previous-declaration lookup");
7025   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
7026   if (!Prev.empty()) {
7027     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
7028          Func != FuncEnd; ++Func) {
7029       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
7030       if (FD &&
7031           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7032         // Add 1 to the index so that 0 can mean the mismatch didn't
7033         // involve a parameter
7034         unsigned ParamNum =
7035             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
7036         NearMatches.push_back(std::make_pair(FD, ParamNum));
7037       }
7038     }
7039   // If the qualified name lookup yielded nothing, try typo correction
7040   } else if ((Correction = SemaRef.CorrectTypo(
7041                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
7042                   &ExtraArgs.D.getCXXScopeSpec(),
7043                   llvm::make_unique<DifferentNameValidatorCCC>(
7044                       SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr),
7045                   Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
7046     // Set up everything for the call to ActOnFunctionDeclarator
7047     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
7048                               ExtraArgs.D.getIdentifierLoc());
7049     Previous.clear();
7050     Previous.setLookupName(Correction.getCorrection());
7051     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
7052                                     CDeclEnd = Correction.end();
7053          CDecl != CDeclEnd; ++CDecl) {
7054       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7055       if (FD && !FD->hasBody() &&
7056           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7057         Previous.addDecl(FD);
7058       }
7059     }
7060     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
7061 
7062     NamedDecl *Result;
7063     // Retry building the function declaration with the new previous
7064     // declarations, and with errors suppressed.
7065     {
7066       // Trap errors.
7067       Sema::SFINAETrap Trap(SemaRef);
7068 
7069       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
7070       // pieces need to verify the typo-corrected C++ declaration and hopefully
7071       // eliminate the need for the parameter pack ExtraArgs.
7072       Result = SemaRef.ActOnFunctionDeclarator(
7073           ExtraArgs.S, ExtraArgs.D,
7074           Correction.getCorrectionDecl()->getDeclContext(),
7075           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
7076           ExtraArgs.AddToScope);
7077 
7078       if (Trap.hasErrorOccurred())
7079         Result = nullptr;
7080     }
7081 
7082     if (Result) {
7083       // Determine which correction we picked.
7084       Decl *Canonical = Result->getCanonicalDecl();
7085       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7086            I != E; ++I)
7087         if ((*I)->getCanonicalDecl() == Canonical)
7088           Correction.setCorrectionDecl(*I);
7089 
7090       SemaRef.diagnoseTypo(
7091           Correction,
7092           SemaRef.PDiag(IsLocalFriend
7093                           ? diag::err_no_matching_local_friend_suggest
7094                           : diag::err_member_decl_does_not_match_suggest)
7095             << Name << NewDC << IsDefinition);
7096       return Result;
7097     }
7098 
7099     // Pretend the typo correction never occurred
7100     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
7101                               ExtraArgs.D.getIdentifierLoc());
7102     ExtraArgs.D.setRedeclaration(wasRedeclaration);
7103     Previous.clear();
7104     Previous.setLookupName(Name);
7105   }
7106 
7107   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
7108       << Name << NewDC << IsDefinition << NewFD->getLocation();
7109 
7110   bool NewFDisConst = false;
7111   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
7112     NewFDisConst = NewMD->isConst();
7113 
7114   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
7115        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
7116        NearMatch != NearMatchEnd; ++NearMatch) {
7117     FunctionDecl *FD = NearMatch->first;
7118     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7119     bool FDisConst = MD && MD->isConst();
7120     bool IsMember = MD || !IsLocalFriend;
7121 
7122     // FIXME: These notes are poorly worded for the local friend case.
7123     if (unsigned Idx = NearMatch->second) {
7124       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
7125       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
7126       if (Loc.isInvalid()) Loc = FD->getLocation();
7127       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
7128                                  : diag::note_local_decl_close_param_match)
7129         << Idx << FDParam->getType()
7130         << NewFD->getParamDecl(Idx - 1)->getType();
7131     } else if (FDisConst != NewFDisConst) {
7132       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
7133           << NewFDisConst << FD->getSourceRange().getEnd();
7134     } else
7135       SemaRef.Diag(FD->getLocation(),
7136                    IsMember ? diag::note_member_def_close_match
7137                             : diag::note_local_decl_close_match);
7138   }
7139   return nullptr;
7140 }
7141 
7142 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
7143   switch (D.getDeclSpec().getStorageClassSpec()) {
7144   default: llvm_unreachable("Unknown storage class!");
7145   case DeclSpec::SCS_auto:
7146   case DeclSpec::SCS_register:
7147   case DeclSpec::SCS_mutable:
7148     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7149                  diag::err_typecheck_sclass_func);
7150     D.setInvalidType();
7151     break;
7152   case DeclSpec::SCS_unspecified: break;
7153   case DeclSpec::SCS_extern:
7154     if (D.getDeclSpec().isExternInLinkageSpec())
7155       return SC_None;
7156     return SC_Extern;
7157   case DeclSpec::SCS_static: {
7158     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
7159       // C99 6.7.1p5:
7160       //   The declaration of an identifier for a function that has
7161       //   block scope shall have no explicit storage-class specifier
7162       //   other than extern
7163       // See also (C++ [dcl.stc]p4).
7164       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7165                    diag::err_static_block_func);
7166       break;
7167     } else
7168       return SC_Static;
7169   }
7170   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
7171   }
7172 
7173   // No explicit storage class has already been returned
7174   return SC_None;
7175 }
7176 
7177 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
7178                                            DeclContext *DC, QualType &R,
7179                                            TypeSourceInfo *TInfo,
7180                                            StorageClass SC,
7181                                            bool &IsVirtualOkay) {
7182   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
7183   DeclarationName Name = NameInfo.getName();
7184 
7185   FunctionDecl *NewFD = nullptr;
7186   bool isInline = D.getDeclSpec().isInlineSpecified();
7187 
7188   if (!SemaRef.getLangOpts().CPlusPlus) {
7189     // Determine whether the function was written with a
7190     // prototype. This true when:
7191     //   - there is a prototype in the declarator, or
7192     //   - the type R of the function is some kind of typedef or other reference
7193     //     to a type name (which eventually refers to a function type).
7194     bool HasPrototype =
7195       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
7196       (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType());
7197 
7198     NewFD = FunctionDecl::Create(SemaRef.Context, DC,
7199                                  D.getLocStart(), NameInfo, R,
7200                                  TInfo, SC, isInline,
7201                                  HasPrototype, false);
7202     if (D.isInvalidType())
7203       NewFD->setInvalidDecl();
7204 
7205     return NewFD;
7206   }
7207 
7208   bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7209   bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7210 
7211   // Check that the return type is not an abstract class type.
7212   // For record types, this is done by the AbstractClassUsageDiagnoser once
7213   // the class has been completely parsed.
7214   if (!DC->isRecord() &&
7215       SemaRef.RequireNonAbstractType(
7216           D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
7217           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
7218     D.setInvalidType();
7219 
7220   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
7221     // This is a C++ constructor declaration.
7222     assert(DC->isRecord() &&
7223            "Constructors can only be declared in a member context");
7224 
7225     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
7226     return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7227                                       D.getLocStart(), NameInfo,
7228                                       R, TInfo, isExplicit, isInline,
7229                                       /*isImplicitlyDeclared=*/false,
7230                                       isConstexpr);
7231 
7232   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7233     // This is a C++ destructor declaration.
7234     if (DC->isRecord()) {
7235       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
7236       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
7237       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
7238                                         SemaRef.Context, Record,
7239                                         D.getLocStart(),
7240                                         NameInfo, R, TInfo, isInline,
7241                                         /*isImplicitlyDeclared=*/false);
7242 
7243       // If the class is complete, then we now create the implicit exception
7244       // specification. If the class is incomplete or dependent, we can't do
7245       // it yet.
7246       if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
7247           Record->getDefinition() && !Record->isBeingDefined() &&
7248           R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
7249         SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
7250       }
7251 
7252       IsVirtualOkay = true;
7253       return NewDD;
7254 
7255     } else {
7256       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
7257       D.setInvalidType();
7258 
7259       // Create a FunctionDecl to satisfy the function definition parsing
7260       // code path.
7261       return FunctionDecl::Create(SemaRef.Context, DC,
7262                                   D.getLocStart(),
7263                                   D.getIdentifierLoc(), Name, R, TInfo,
7264                                   SC, isInline,
7265                                   /*hasPrototype=*/true, isConstexpr);
7266     }
7267 
7268   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
7269     if (!DC->isRecord()) {
7270       SemaRef.Diag(D.getIdentifierLoc(),
7271            diag::err_conv_function_not_member);
7272       return nullptr;
7273     }
7274 
7275     SemaRef.CheckConversionDeclarator(D, R, SC);
7276     IsVirtualOkay = true;
7277     return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7278                                      D.getLocStart(), NameInfo,
7279                                      R, TInfo, isInline, isExplicit,
7280                                      isConstexpr, SourceLocation());
7281 
7282   } else if (DC->isRecord()) {
7283     // If the name of the function is the same as the name of the record,
7284     // then this must be an invalid constructor that has a return type.
7285     // (The parser checks for a return type and makes the declarator a
7286     // constructor if it has no return type).
7287     if (Name.getAsIdentifierInfo() &&
7288         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
7289       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
7290         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7291         << SourceRange(D.getIdentifierLoc());
7292       return nullptr;
7293     }
7294 
7295     // This is a C++ method declaration.
7296     CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
7297                                                cast<CXXRecordDecl>(DC),
7298                                                D.getLocStart(), NameInfo, R,
7299                                                TInfo, SC, isInline,
7300                                                isConstexpr, SourceLocation());
7301     IsVirtualOkay = !Ret->isStatic();
7302     return Ret;
7303   } else {
7304     bool isFriend =
7305         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
7306     if (!isFriend && SemaRef.CurContext->isRecord())
7307       return nullptr;
7308 
7309     // Determine whether the function was written with a
7310     // prototype. This true when:
7311     //   - we're in C++ (where every function has a prototype),
7312     return FunctionDecl::Create(SemaRef.Context, DC,
7313                                 D.getLocStart(),
7314                                 NameInfo, R, TInfo, SC, isInline,
7315                                 true/*HasPrototype*/, isConstexpr);
7316   }
7317 }
7318 
7319 enum OpenCLParamType {
7320   ValidKernelParam,
7321   PtrPtrKernelParam,
7322   PtrKernelParam,
7323   PrivatePtrKernelParam,
7324   InvalidKernelParam,
7325   RecordKernelParam
7326 };
7327 
7328 static OpenCLParamType getOpenCLKernelParameterType(QualType PT) {
7329   if (PT->isPointerType()) {
7330     QualType PointeeType = PT->getPointeeType();
7331     if (PointeeType->isPointerType())
7332       return PtrPtrKernelParam;
7333     return PointeeType.getAddressSpace() == 0 ? PrivatePtrKernelParam
7334                                               : PtrKernelParam;
7335   }
7336 
7337   // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
7338   // be used as builtin types.
7339 
7340   if (PT->isImageType())
7341     return PtrKernelParam;
7342 
7343   if (PT->isBooleanType())
7344     return InvalidKernelParam;
7345 
7346   if (PT->isEventT())
7347     return InvalidKernelParam;
7348 
7349   if (PT->isHalfType())
7350     return InvalidKernelParam;
7351 
7352   if (PT->isRecordType())
7353     return RecordKernelParam;
7354 
7355   return ValidKernelParam;
7356 }
7357 
7358 static void checkIsValidOpenCLKernelParameter(
7359   Sema &S,
7360   Declarator &D,
7361   ParmVarDecl *Param,
7362   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
7363   QualType PT = Param->getType();
7364 
7365   // Cache the valid types we encounter to avoid rechecking structs that are
7366   // used again
7367   if (ValidTypes.count(PT.getTypePtr()))
7368     return;
7369 
7370   switch (getOpenCLKernelParameterType(PT)) {
7371   case PtrPtrKernelParam:
7372     // OpenCL v1.2 s6.9.a:
7373     // A kernel function argument cannot be declared as a
7374     // pointer to a pointer type.
7375     S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
7376     D.setInvalidType();
7377     return;
7378 
7379   case PrivatePtrKernelParam:
7380     // OpenCL v1.2 s6.9.a:
7381     // A kernel function argument cannot be declared as a
7382     // pointer to the private address space.
7383     S.Diag(Param->getLocation(), diag::err_opencl_private_ptr_kernel_param);
7384     D.setInvalidType();
7385     return;
7386 
7387     // OpenCL v1.2 s6.9.k:
7388     // Arguments to kernel functions in a program cannot be declared with the
7389     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
7390     // uintptr_t or a struct and/or union that contain fields declared to be
7391     // one of these built-in scalar types.
7392 
7393   case InvalidKernelParam:
7394     // OpenCL v1.2 s6.8 n:
7395     // A kernel function argument cannot be declared
7396     // of event_t type.
7397     S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
7398     D.setInvalidType();
7399     return;
7400 
7401   case PtrKernelParam:
7402   case ValidKernelParam:
7403     ValidTypes.insert(PT.getTypePtr());
7404     return;
7405 
7406   case RecordKernelParam:
7407     break;
7408   }
7409 
7410   // Track nested structs we will inspect
7411   SmallVector<const Decl *, 4> VisitStack;
7412 
7413   // Track where we are in the nested structs. Items will migrate from
7414   // VisitStack to HistoryStack as we do the DFS for bad field.
7415   SmallVector<const FieldDecl *, 4> HistoryStack;
7416   HistoryStack.push_back(nullptr);
7417 
7418   const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
7419   VisitStack.push_back(PD);
7420 
7421   assert(VisitStack.back() && "First decl null?");
7422 
7423   do {
7424     const Decl *Next = VisitStack.pop_back_val();
7425     if (!Next) {
7426       assert(!HistoryStack.empty());
7427       // Found a marker, we have gone up a level
7428       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
7429         ValidTypes.insert(Hist->getType().getTypePtr());
7430 
7431       continue;
7432     }
7433 
7434     // Adds everything except the original parameter declaration (which is not a
7435     // field itself) to the history stack.
7436     const RecordDecl *RD;
7437     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
7438       HistoryStack.push_back(Field);
7439       RD = Field->getType()->castAs<RecordType>()->getDecl();
7440     } else {
7441       RD = cast<RecordDecl>(Next);
7442     }
7443 
7444     // Add a null marker so we know when we've gone back up a level
7445     VisitStack.push_back(nullptr);
7446 
7447     for (const auto *FD : RD->fields()) {
7448       QualType QT = FD->getType();
7449 
7450       if (ValidTypes.count(QT.getTypePtr()))
7451         continue;
7452 
7453       OpenCLParamType ParamType = getOpenCLKernelParameterType(QT);
7454       if (ParamType == ValidKernelParam)
7455         continue;
7456 
7457       if (ParamType == RecordKernelParam) {
7458         VisitStack.push_back(FD);
7459         continue;
7460       }
7461 
7462       // OpenCL v1.2 s6.9.p:
7463       // Arguments to kernel functions that are declared to be a struct or union
7464       // do not allow OpenCL objects to be passed as elements of the struct or
7465       // union.
7466       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
7467           ParamType == PrivatePtrKernelParam) {
7468         S.Diag(Param->getLocation(),
7469                diag::err_record_with_pointers_kernel_param)
7470           << PT->isUnionType()
7471           << PT;
7472       } else {
7473         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
7474       }
7475 
7476       S.Diag(PD->getLocation(), diag::note_within_field_of_type)
7477         << PD->getDeclName();
7478 
7479       // We have an error, now let's go back up through history and show where
7480       // the offending field came from
7481       for (ArrayRef<const FieldDecl *>::const_iterator
7482                I = HistoryStack.begin() + 1,
7483                E = HistoryStack.end();
7484            I != E; ++I) {
7485         const FieldDecl *OuterField = *I;
7486         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
7487           << OuterField->getType();
7488       }
7489 
7490       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
7491         << QT->isPointerType()
7492         << QT;
7493       D.setInvalidType();
7494       return;
7495     }
7496   } while (!VisitStack.empty());
7497 }
7498 
7499 NamedDecl*
7500 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
7501                               TypeSourceInfo *TInfo, LookupResult &Previous,
7502                               MultiTemplateParamsArg TemplateParamLists,
7503                               bool &AddToScope) {
7504   QualType R = TInfo->getType();
7505 
7506   assert(R.getTypePtr()->isFunctionType());
7507 
7508   // TODO: consider using NameInfo for diagnostic.
7509   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7510   DeclarationName Name = NameInfo.getName();
7511   StorageClass SC = getFunctionStorageClass(*this, D);
7512 
7513   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
7514     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
7515          diag::err_invalid_thread)
7516       << DeclSpec::getSpecifierName(TSCS);
7517 
7518   if (D.isFirstDeclarationOfMember())
7519     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
7520                            D.getIdentifierLoc());
7521 
7522   bool isFriend = false;
7523   FunctionTemplateDecl *FunctionTemplate = nullptr;
7524   bool isExplicitSpecialization = false;
7525   bool isFunctionTemplateSpecialization = false;
7526 
7527   bool isDependentClassScopeExplicitSpecialization = false;
7528   bool HasExplicitTemplateArgs = false;
7529   TemplateArgumentListInfo TemplateArgs;
7530 
7531   bool isVirtualOkay = false;
7532 
7533   DeclContext *OriginalDC = DC;
7534   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
7535 
7536   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
7537                                               isVirtualOkay);
7538   if (!NewFD) return nullptr;
7539 
7540   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
7541     NewFD->setTopLevelDeclInObjCContainer();
7542 
7543   // Set the lexical context. If this is a function-scope declaration, or has a
7544   // C++ scope specifier, or is the object of a friend declaration, the lexical
7545   // context will be different from the semantic context.
7546   NewFD->setLexicalDeclContext(CurContext);
7547 
7548   if (IsLocalExternDecl)
7549     NewFD->setLocalExternDecl();
7550 
7551   if (getLangOpts().CPlusPlus) {
7552     bool isInline = D.getDeclSpec().isInlineSpecified();
7553     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
7554     bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7555     bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7556     bool isConcept = D.getDeclSpec().isConceptSpecified();
7557     isFriend = D.getDeclSpec().isFriendSpecified();
7558     if (isFriend && !isInline && D.isFunctionDefinition()) {
7559       // C++ [class.friend]p5
7560       //   A function can be defined in a friend declaration of a
7561       //   class . . . . Such a function is implicitly inline.
7562       NewFD->setImplicitlyInline();
7563     }
7564 
7565     // If this is a method defined in an __interface, and is not a constructor
7566     // or an overloaded operator, then set the pure flag (isVirtual will already
7567     // return true).
7568     if (const CXXRecordDecl *Parent =
7569           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
7570       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
7571         NewFD->setPure(true);
7572 
7573       // C++ [class.union]p2
7574       //   A union can have member functions, but not virtual functions.
7575       if (isVirtual && Parent->isUnion())
7576         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
7577     }
7578 
7579     SetNestedNameSpecifier(NewFD, D);
7580     isExplicitSpecialization = false;
7581     isFunctionTemplateSpecialization = false;
7582     if (D.isInvalidType())
7583       NewFD->setInvalidDecl();
7584 
7585     // Match up the template parameter lists with the scope specifier, then
7586     // determine whether we have a template or a template specialization.
7587     bool Invalid = false;
7588     if (TemplateParameterList *TemplateParams =
7589             MatchTemplateParametersToScopeSpecifier(
7590                 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
7591                 D.getCXXScopeSpec(),
7592                 D.getName().getKind() == UnqualifiedId::IK_TemplateId
7593                     ? D.getName().TemplateId
7594                     : nullptr,
7595                 TemplateParamLists, isFriend, isExplicitSpecialization,
7596                 Invalid)) {
7597       if (TemplateParams->size() > 0) {
7598         // This is a function template
7599 
7600         // Check that we can declare a template here.
7601         if (CheckTemplateDeclScope(S, TemplateParams))
7602           NewFD->setInvalidDecl();
7603 
7604         // A destructor cannot be a template.
7605         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7606           Diag(NewFD->getLocation(), diag::err_destructor_template);
7607           NewFD->setInvalidDecl();
7608         }
7609 
7610         // If we're adding a template to a dependent context, we may need to
7611         // rebuilding some of the types used within the template parameter list,
7612         // now that we know what the current instantiation is.
7613         if (DC->isDependentContext()) {
7614           ContextRAII SavedContext(*this, DC);
7615           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
7616             Invalid = true;
7617         }
7618 
7619         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
7620                                                         NewFD->getLocation(),
7621                                                         Name, TemplateParams,
7622                                                         NewFD);
7623         FunctionTemplate->setLexicalDeclContext(CurContext);
7624         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
7625 
7626         // For source fidelity, store the other template param lists.
7627         if (TemplateParamLists.size() > 1) {
7628           NewFD->setTemplateParameterListsInfo(Context,
7629                                                TemplateParamLists.drop_back(1));
7630         }
7631       } else {
7632         // This is a function template specialization.
7633         isFunctionTemplateSpecialization = true;
7634         // For source fidelity, store all the template param lists.
7635         if (TemplateParamLists.size() > 0)
7636           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
7637 
7638         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
7639         if (isFriend) {
7640           // We want to remove the "template<>", found here.
7641           SourceRange RemoveRange = TemplateParams->getSourceRange();
7642 
7643           // If we remove the template<> and the name is not a
7644           // template-id, we're actually silently creating a problem:
7645           // the friend declaration will refer to an untemplated decl,
7646           // and clearly the user wants a template specialization.  So
7647           // we need to insert '<>' after the name.
7648           SourceLocation InsertLoc;
7649           if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
7650             InsertLoc = D.getName().getSourceRange().getEnd();
7651             InsertLoc = getLocForEndOfToken(InsertLoc);
7652           }
7653 
7654           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
7655             << Name << RemoveRange
7656             << FixItHint::CreateRemoval(RemoveRange)
7657             << FixItHint::CreateInsertion(InsertLoc, "<>");
7658         }
7659       }
7660     }
7661     else {
7662       // All template param lists were matched against the scope specifier:
7663       // this is NOT (an explicit specialization of) a template.
7664       if (TemplateParamLists.size() > 0)
7665         // For source fidelity, store all the template param lists.
7666         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
7667     }
7668 
7669     if (Invalid) {
7670       NewFD->setInvalidDecl();
7671       if (FunctionTemplate)
7672         FunctionTemplate->setInvalidDecl();
7673     }
7674 
7675     // C++ [dcl.fct.spec]p5:
7676     //   The virtual specifier shall only be used in declarations of
7677     //   nonstatic class member functions that appear within a
7678     //   member-specification of a class declaration; see 10.3.
7679     //
7680     if (isVirtual && !NewFD->isInvalidDecl()) {
7681       if (!isVirtualOkay) {
7682         Diag(D.getDeclSpec().getVirtualSpecLoc(),
7683              diag::err_virtual_non_function);
7684       } else if (!CurContext->isRecord()) {
7685         // 'virtual' was specified outside of the class.
7686         Diag(D.getDeclSpec().getVirtualSpecLoc(),
7687              diag::err_virtual_out_of_class)
7688           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
7689       } else if (NewFD->getDescribedFunctionTemplate()) {
7690         // C++ [temp.mem]p3:
7691         //  A member function template shall not be virtual.
7692         Diag(D.getDeclSpec().getVirtualSpecLoc(),
7693              diag::err_virtual_member_function_template)
7694           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
7695       } else {
7696         // Okay: Add virtual to the method.
7697         NewFD->setVirtualAsWritten(true);
7698       }
7699 
7700       if (getLangOpts().CPlusPlus14 &&
7701           NewFD->getReturnType()->isUndeducedType())
7702         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
7703     }
7704 
7705     if (getLangOpts().CPlusPlus14 &&
7706         (NewFD->isDependentContext() ||
7707          (isFriend && CurContext->isDependentContext())) &&
7708         NewFD->getReturnType()->isUndeducedType()) {
7709       // If the function template is referenced directly (for instance, as a
7710       // member of the current instantiation), pretend it has a dependent type.
7711       // This is not really justified by the standard, but is the only sane
7712       // thing to do.
7713       // FIXME: For a friend function, we have not marked the function as being
7714       // a friend yet, so 'isDependentContext' on the FD doesn't work.
7715       const FunctionProtoType *FPT =
7716           NewFD->getType()->castAs<FunctionProtoType>();
7717       QualType Result =
7718           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
7719       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
7720                                              FPT->getExtProtoInfo()));
7721     }
7722 
7723     // C++ [dcl.fct.spec]p3:
7724     //  The inline specifier shall not appear on a block scope function
7725     //  declaration.
7726     if (isInline && !NewFD->isInvalidDecl()) {
7727       if (CurContext->isFunctionOrMethod()) {
7728         // 'inline' is not allowed on block scope function declaration.
7729         Diag(D.getDeclSpec().getInlineSpecLoc(),
7730              diag::err_inline_declaration_block_scope) << Name
7731           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
7732       }
7733     }
7734 
7735     // C++ [dcl.fct.spec]p6:
7736     //  The explicit specifier shall be used only in the declaration of a
7737     //  constructor or conversion function within its class definition;
7738     //  see 12.3.1 and 12.3.2.
7739     if (isExplicit && !NewFD->isInvalidDecl()) {
7740       if (!CurContext->isRecord()) {
7741         // 'explicit' was specified outside of the class.
7742         Diag(D.getDeclSpec().getExplicitSpecLoc(),
7743              diag::err_explicit_out_of_class)
7744           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
7745       } else if (!isa<CXXConstructorDecl>(NewFD) &&
7746                  !isa<CXXConversionDecl>(NewFD)) {
7747         // 'explicit' was specified on a function that wasn't a constructor
7748         // or conversion function.
7749         Diag(D.getDeclSpec().getExplicitSpecLoc(),
7750              diag::err_explicit_non_ctor_or_conv_function)
7751           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
7752       }
7753     }
7754 
7755     if (isConstexpr) {
7756       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
7757       // are implicitly inline.
7758       NewFD->setImplicitlyInline();
7759 
7760       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
7761       // be either constructors or to return a literal type. Therefore,
7762       // destructors cannot be declared constexpr.
7763       if (isa<CXXDestructorDecl>(NewFD))
7764         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
7765     }
7766 
7767     if (isConcept) {
7768       // This is a function concept.
7769       if (FunctionTemplateDecl *FTD = NewFD->getDescribedFunctionTemplate())
7770         FTD->setConcept();
7771 
7772       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
7773       // applied only to the definition of a function template [...]
7774       if (!D.isFunctionDefinition()) {
7775         Diag(D.getDeclSpec().getConceptSpecLoc(),
7776              diag::err_function_concept_not_defined);
7777         NewFD->setInvalidDecl();
7778       }
7779 
7780       // C++ Concepts TS [dcl.spec.concept]p1: [...] A function concept shall
7781       // have no exception-specification and is treated as if it were specified
7782       // with noexcept(true) (15.4). [...]
7783       if (const FunctionProtoType *FPT = R->getAs<FunctionProtoType>()) {
7784         if (FPT->hasExceptionSpec()) {
7785           SourceRange Range;
7786           if (D.isFunctionDeclarator())
7787             Range = D.getFunctionTypeInfo().getExceptionSpecRange();
7788           Diag(NewFD->getLocation(), diag::err_function_concept_exception_spec)
7789               << FixItHint::CreateRemoval(Range);
7790           NewFD->setInvalidDecl();
7791         } else {
7792           Context.adjustExceptionSpec(NewFD, EST_BasicNoexcept);
7793         }
7794 
7795         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
7796         // following restrictions:
7797         // - The declared return type shall have the type bool.
7798         if (!Context.hasSameType(FPT->getReturnType(), Context.BoolTy)) {
7799           Diag(D.getIdentifierLoc(), diag::err_function_concept_bool_ret);
7800           NewFD->setInvalidDecl();
7801         }
7802 
7803         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
7804         // following restrictions:
7805         // - The declaration's parameter list shall be equivalent to an empty
7806         //   parameter list.
7807         if (FPT->getNumParams() > 0 || FPT->isVariadic())
7808           Diag(NewFD->getLocation(), diag::err_function_concept_with_params);
7809       }
7810 
7811       // C++ Concepts TS [dcl.spec.concept]p2: Every concept definition is
7812       // implicity defined to be a constexpr declaration (implicitly inline)
7813       NewFD->setImplicitlyInline();
7814 
7815       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
7816       // be declared with the thread_local, inline, friend, or constexpr
7817       // specifiers, [...]
7818       if (isInline) {
7819         Diag(D.getDeclSpec().getInlineSpecLoc(),
7820              diag::err_concept_decl_invalid_specifiers)
7821             << 1 << 1;
7822         NewFD->setInvalidDecl(true);
7823       }
7824 
7825       if (isFriend) {
7826         Diag(D.getDeclSpec().getFriendSpecLoc(),
7827              diag::err_concept_decl_invalid_specifiers)
7828             << 1 << 2;
7829         NewFD->setInvalidDecl(true);
7830       }
7831 
7832       if (isConstexpr) {
7833         Diag(D.getDeclSpec().getConstexprSpecLoc(),
7834              diag::err_concept_decl_invalid_specifiers)
7835             << 1 << 3;
7836         NewFD->setInvalidDecl(true);
7837       }
7838 
7839       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
7840       // applied only to the definition of a function template or variable
7841       // template, declared in namespace scope.
7842       if (isFunctionTemplateSpecialization) {
7843         Diag(D.getDeclSpec().getConceptSpecLoc(),
7844              diag::err_concept_specified_specialization) << 1;
7845         NewFD->setInvalidDecl(true);
7846         return NewFD;
7847       }
7848     }
7849 
7850     // If __module_private__ was specified, mark the function accordingly.
7851     if (D.getDeclSpec().isModulePrivateSpecified()) {
7852       if (isFunctionTemplateSpecialization) {
7853         SourceLocation ModulePrivateLoc
7854           = D.getDeclSpec().getModulePrivateSpecLoc();
7855         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
7856           << 0
7857           << FixItHint::CreateRemoval(ModulePrivateLoc);
7858       } else {
7859         NewFD->setModulePrivate();
7860         if (FunctionTemplate)
7861           FunctionTemplate->setModulePrivate();
7862       }
7863     }
7864 
7865     if (isFriend) {
7866       if (FunctionTemplate) {
7867         FunctionTemplate->setObjectOfFriendDecl();
7868         FunctionTemplate->setAccess(AS_public);
7869       }
7870       NewFD->setObjectOfFriendDecl();
7871       NewFD->setAccess(AS_public);
7872     }
7873 
7874     // If a function is defined as defaulted or deleted, mark it as such now.
7875     // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
7876     // definition kind to FDK_Definition.
7877     switch (D.getFunctionDefinitionKind()) {
7878       case FDK_Declaration:
7879       case FDK_Definition:
7880         break;
7881 
7882       case FDK_Defaulted:
7883         NewFD->setDefaulted();
7884         break;
7885 
7886       case FDK_Deleted:
7887         NewFD->setDeletedAsWritten();
7888         break;
7889     }
7890 
7891     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
7892         D.isFunctionDefinition()) {
7893       // C++ [class.mfct]p2:
7894       //   A member function may be defined (8.4) in its class definition, in
7895       //   which case it is an inline member function (7.1.2)
7896       NewFD->setImplicitlyInline();
7897     }
7898 
7899     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
7900         !CurContext->isRecord()) {
7901       // C++ [class.static]p1:
7902       //   A data or function member of a class may be declared static
7903       //   in a class definition, in which case it is a static member of
7904       //   the class.
7905 
7906       // Complain about the 'static' specifier if it's on an out-of-line
7907       // member function definition.
7908       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7909            diag::err_static_out_of_line)
7910         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7911     }
7912 
7913     // C++11 [except.spec]p15:
7914     //   A deallocation function with no exception-specification is treated
7915     //   as if it were specified with noexcept(true).
7916     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
7917     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
7918          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
7919         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
7920       NewFD->setType(Context.getFunctionType(
7921           FPT->getReturnType(), FPT->getParamTypes(),
7922           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
7923   }
7924 
7925   // Filter out previous declarations that don't match the scope.
7926   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
7927                        D.getCXXScopeSpec().isNotEmpty() ||
7928                        isExplicitSpecialization ||
7929                        isFunctionTemplateSpecialization);
7930 
7931   // Handle GNU asm-label extension (encoded as an attribute).
7932   if (Expr *E = (Expr*) D.getAsmLabel()) {
7933     // The parser guarantees this is a string.
7934     StringLiteral *SE = cast<StringLiteral>(E);
7935     NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
7936                                                 SE->getString(), 0));
7937   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
7938     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
7939       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
7940     if (I != ExtnameUndeclaredIdentifiers.end()) {
7941       if (isDeclExternC(NewFD)) {
7942         NewFD->addAttr(I->second);
7943         ExtnameUndeclaredIdentifiers.erase(I);
7944       } else
7945         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
7946             << /*Variable*/0 << NewFD;
7947     }
7948   }
7949 
7950   // Copy the parameter declarations from the declarator D to the function
7951   // declaration NewFD, if they are available.  First scavenge them into Params.
7952   SmallVector<ParmVarDecl*, 16> Params;
7953   if (D.isFunctionDeclarator()) {
7954     DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7955 
7956     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
7957     // function that takes no arguments, not a function that takes a
7958     // single void argument.
7959     // We let through "const void" here because Sema::GetTypeForDeclarator
7960     // already checks for that case.
7961     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
7962       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
7963         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
7964         assert(Param->getDeclContext() != NewFD && "Was set before ?");
7965         Param->setDeclContext(NewFD);
7966         Params.push_back(Param);
7967 
7968         if (Param->isInvalidDecl())
7969           NewFD->setInvalidDecl();
7970       }
7971     }
7972   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
7973     // When we're declaring a function with a typedef, typeof, etc as in the
7974     // following example, we'll need to synthesize (unnamed)
7975     // parameters for use in the declaration.
7976     //
7977     // @code
7978     // typedef void fn(int);
7979     // fn f;
7980     // @endcode
7981 
7982     // Synthesize a parameter for each argument type.
7983     for (const auto &AI : FT->param_types()) {
7984       ParmVarDecl *Param =
7985           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
7986       Param->setScopeInfo(0, Params.size());
7987       Params.push_back(Param);
7988     }
7989   } else {
7990     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
7991            "Should not need args for typedef of non-prototype fn");
7992   }
7993 
7994   // Finally, we know we have the right number of parameters, install them.
7995   NewFD->setParams(Params);
7996 
7997   // Find all anonymous symbols defined during the declaration of this function
7998   // and add to NewFD. This lets us track decls such 'enum Y' in:
7999   //
8000   //   void f(enum Y {AA} x) {}
8001   //
8002   // which would otherwise incorrectly end up in the translation unit scope.
8003   NewFD->setDeclsInPrototypeScope(DeclsInPrototypeScope);
8004   DeclsInPrototypeScope.clear();
8005 
8006   if (D.getDeclSpec().isNoreturnSpecified())
8007     NewFD->addAttr(
8008         ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
8009                                        Context, 0));
8010 
8011   // Functions returning a variably modified type violate C99 6.7.5.2p2
8012   // because all functions have linkage.
8013   if (!NewFD->isInvalidDecl() &&
8014       NewFD->getReturnType()->isVariablyModifiedType()) {
8015     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
8016     NewFD->setInvalidDecl();
8017   }
8018 
8019   // Apply an implicit SectionAttr if #pragma code_seg is active.
8020   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
8021       !NewFD->hasAttr<SectionAttr>()) {
8022     NewFD->addAttr(
8023         SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
8024                                     CodeSegStack.CurrentValue->getString(),
8025                                     CodeSegStack.CurrentPragmaLocation));
8026     if (UnifySection(CodeSegStack.CurrentValue->getString(),
8027                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
8028                          ASTContext::PSF_Read,
8029                      NewFD))
8030       NewFD->dropAttr<SectionAttr>();
8031   }
8032 
8033   // Handle attributes.
8034   ProcessDeclAttributes(S, NewFD, D);
8035 
8036   if (getLangOpts().CUDA)
8037     maybeAddCUDAHostDeviceAttrs(S, NewFD, Previous);
8038 
8039   if (getLangOpts().OpenCL) {
8040     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
8041     // type declaration will generate a compilation error.
8042     unsigned AddressSpace = NewFD->getReturnType().getAddressSpace();
8043     if (AddressSpace == LangAS::opencl_local ||
8044         AddressSpace == LangAS::opencl_global ||
8045         AddressSpace == LangAS::opencl_constant) {
8046       Diag(NewFD->getLocation(),
8047            diag::err_opencl_return_value_with_address_space);
8048       NewFD->setInvalidDecl();
8049     }
8050   }
8051 
8052   if (!getLangOpts().CPlusPlus) {
8053     // Perform semantic checking on the function declaration.
8054     bool isExplicitSpecialization=false;
8055     if (!NewFD->isInvalidDecl() && NewFD->isMain())
8056       CheckMain(NewFD, D.getDeclSpec());
8057 
8058     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8059       CheckMSVCRTEntryPoint(NewFD);
8060 
8061     if (!NewFD->isInvalidDecl())
8062       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8063                                                   isExplicitSpecialization));
8064     else if (!Previous.empty())
8065       // Recover gracefully from an invalid redeclaration.
8066       D.setRedeclaration(true);
8067     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8068             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8069            "previous declaration set still overloaded");
8070 
8071     // Diagnose no-prototype function declarations with calling conventions that
8072     // don't support variadic calls. Only do this in C and do it after merging
8073     // possibly prototyped redeclarations.
8074     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
8075     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
8076       CallingConv CC = FT->getExtInfo().getCC();
8077       if (!supportsVariadicCall(CC)) {
8078         // Windows system headers sometimes accidentally use stdcall without
8079         // (void) parameters, so we relax this to a warning.
8080         int DiagID =
8081             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
8082         Diag(NewFD->getLocation(), DiagID)
8083             << FunctionType::getNameForCallConv(CC);
8084       }
8085     }
8086   } else {
8087     // C++11 [replacement.functions]p3:
8088     //  The program's definitions shall not be specified as inline.
8089     //
8090     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
8091     //
8092     // Suppress the diagnostic if the function is __attribute__((used)), since
8093     // that forces an external definition to be emitted.
8094     if (D.getDeclSpec().isInlineSpecified() &&
8095         NewFD->isReplaceableGlobalAllocationFunction() &&
8096         !NewFD->hasAttr<UsedAttr>())
8097       Diag(D.getDeclSpec().getInlineSpecLoc(),
8098            diag::ext_operator_new_delete_declared_inline)
8099         << NewFD->getDeclName();
8100 
8101     // If the declarator is a template-id, translate the parser's template
8102     // argument list into our AST format.
8103     if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
8104       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
8105       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
8106       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
8107       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
8108                                          TemplateId->NumArgs);
8109       translateTemplateArguments(TemplateArgsPtr,
8110                                  TemplateArgs);
8111 
8112       HasExplicitTemplateArgs = true;
8113 
8114       if (NewFD->isInvalidDecl()) {
8115         HasExplicitTemplateArgs = false;
8116       } else if (FunctionTemplate) {
8117         // Function template with explicit template arguments.
8118         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
8119           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
8120 
8121         HasExplicitTemplateArgs = false;
8122       } else {
8123         assert((isFunctionTemplateSpecialization ||
8124                 D.getDeclSpec().isFriendSpecified()) &&
8125                "should have a 'template<>' for this decl");
8126         // "friend void foo<>(int);" is an implicit specialization decl.
8127         isFunctionTemplateSpecialization = true;
8128       }
8129     } else if (isFriend && isFunctionTemplateSpecialization) {
8130       // This combination is only possible in a recovery case;  the user
8131       // wrote something like:
8132       //   template <> friend void foo(int);
8133       // which we're recovering from as if the user had written:
8134       //   friend void foo<>(int);
8135       // Go ahead and fake up a template id.
8136       HasExplicitTemplateArgs = true;
8137       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
8138       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
8139     }
8140 
8141     // If it's a friend (and only if it's a friend), it's possible
8142     // that either the specialized function type or the specialized
8143     // template is dependent, and therefore matching will fail.  In
8144     // this case, don't check the specialization yet.
8145     bool InstantiationDependent = false;
8146     if (isFunctionTemplateSpecialization && isFriend &&
8147         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
8148          TemplateSpecializationType::anyDependentTemplateArguments(
8149             TemplateArgs.getArgumentArray(), TemplateArgs.size(),
8150             InstantiationDependent))) {
8151       assert(HasExplicitTemplateArgs &&
8152              "friend function specialization without template args");
8153       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
8154                                                        Previous))
8155         NewFD->setInvalidDecl();
8156     } else if (isFunctionTemplateSpecialization) {
8157       if (CurContext->isDependentContext() && CurContext->isRecord()
8158           && !isFriend) {
8159         isDependentClassScopeExplicitSpecialization = true;
8160         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
8161           diag::ext_function_specialization_in_class :
8162           diag::err_function_specialization_in_class)
8163           << NewFD->getDeclName();
8164       } else if (CheckFunctionTemplateSpecialization(NewFD,
8165                                   (HasExplicitTemplateArgs ? &TemplateArgs
8166                                                            : nullptr),
8167                                                      Previous))
8168         NewFD->setInvalidDecl();
8169 
8170       // C++ [dcl.stc]p1:
8171       //   A storage-class-specifier shall not be specified in an explicit
8172       //   specialization (14.7.3)
8173       FunctionTemplateSpecializationInfo *Info =
8174           NewFD->getTemplateSpecializationInfo();
8175       if (Info && SC != SC_None) {
8176         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
8177           Diag(NewFD->getLocation(),
8178                diag::err_explicit_specialization_inconsistent_storage_class)
8179             << SC
8180             << FixItHint::CreateRemoval(
8181                                       D.getDeclSpec().getStorageClassSpecLoc());
8182 
8183         else
8184           Diag(NewFD->getLocation(),
8185                diag::ext_explicit_specialization_storage_class)
8186             << FixItHint::CreateRemoval(
8187                                       D.getDeclSpec().getStorageClassSpecLoc());
8188       }
8189     } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD)) {
8190       if (CheckMemberSpecialization(NewFD, Previous))
8191           NewFD->setInvalidDecl();
8192     }
8193 
8194     // Perform semantic checking on the function declaration.
8195     if (!isDependentClassScopeExplicitSpecialization) {
8196       if (!NewFD->isInvalidDecl() && NewFD->isMain())
8197         CheckMain(NewFD, D.getDeclSpec());
8198 
8199       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8200         CheckMSVCRTEntryPoint(NewFD);
8201 
8202       if (!NewFD->isInvalidDecl())
8203         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8204                                                     isExplicitSpecialization));
8205       else if (!Previous.empty())
8206         // Recover gracefully from an invalid redeclaration.
8207         D.setRedeclaration(true);
8208     }
8209 
8210     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8211             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8212            "previous declaration set still overloaded");
8213 
8214     NamedDecl *PrincipalDecl = (FunctionTemplate
8215                                 ? cast<NamedDecl>(FunctionTemplate)
8216                                 : NewFD);
8217 
8218     if (isFriend && D.isRedeclaration()) {
8219       AccessSpecifier Access = AS_public;
8220       if (!NewFD->isInvalidDecl())
8221         Access = NewFD->getPreviousDecl()->getAccess();
8222 
8223       NewFD->setAccess(Access);
8224       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
8225     }
8226 
8227     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
8228         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
8229       PrincipalDecl->setNonMemberOperator();
8230 
8231     // If we have a function template, check the template parameter
8232     // list. This will check and merge default template arguments.
8233     if (FunctionTemplate) {
8234       FunctionTemplateDecl *PrevTemplate =
8235                                      FunctionTemplate->getPreviousDecl();
8236       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
8237                        PrevTemplate ? PrevTemplate->getTemplateParameters()
8238                                     : nullptr,
8239                             D.getDeclSpec().isFriendSpecified()
8240                               ? (D.isFunctionDefinition()
8241                                    ? TPC_FriendFunctionTemplateDefinition
8242                                    : TPC_FriendFunctionTemplate)
8243                               : (D.getCXXScopeSpec().isSet() &&
8244                                  DC && DC->isRecord() &&
8245                                  DC->isDependentContext())
8246                                   ? TPC_ClassTemplateMember
8247                                   : TPC_FunctionTemplate);
8248     }
8249 
8250     if (NewFD->isInvalidDecl()) {
8251       // Ignore all the rest of this.
8252     } else if (!D.isRedeclaration()) {
8253       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
8254                                        AddToScope };
8255       // Fake up an access specifier if it's supposed to be a class member.
8256       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
8257         NewFD->setAccess(AS_public);
8258 
8259       // Qualified decls generally require a previous declaration.
8260       if (D.getCXXScopeSpec().isSet()) {
8261         // ...with the major exception of templated-scope or
8262         // dependent-scope friend declarations.
8263 
8264         // TODO: we currently also suppress this check in dependent
8265         // contexts because (1) the parameter depth will be off when
8266         // matching friend templates and (2) we might actually be
8267         // selecting a friend based on a dependent factor.  But there
8268         // are situations where these conditions don't apply and we
8269         // can actually do this check immediately.
8270         if (isFriend &&
8271             (TemplateParamLists.size() ||
8272              D.getCXXScopeSpec().getScopeRep()->isDependent() ||
8273              CurContext->isDependentContext())) {
8274           // ignore these
8275         } else {
8276           // The user tried to provide an out-of-line definition for a
8277           // function that is a member of a class or namespace, but there
8278           // was no such member function declared (C++ [class.mfct]p2,
8279           // C++ [namespace.memdef]p2). For example:
8280           //
8281           // class X {
8282           //   void f() const;
8283           // };
8284           //
8285           // void X::f() { } // ill-formed
8286           //
8287           // Complain about this problem, and attempt to suggest close
8288           // matches (e.g., those that differ only in cv-qualifiers and
8289           // whether the parameter types are references).
8290 
8291           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8292                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
8293             AddToScope = ExtraArgs.AddToScope;
8294             return Result;
8295           }
8296         }
8297 
8298         // Unqualified local friend declarations are required to resolve
8299         // to something.
8300       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
8301         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8302                 *this, Previous, NewFD, ExtraArgs, true, S)) {
8303           AddToScope = ExtraArgs.AddToScope;
8304           return Result;
8305         }
8306       }
8307     } else if (!D.isFunctionDefinition() &&
8308                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
8309                !isFriend && !isFunctionTemplateSpecialization &&
8310                !isExplicitSpecialization) {
8311       // An out-of-line member function declaration must also be a
8312       // definition (C++ [class.mfct]p2).
8313       // Note that this is not the case for explicit specializations of
8314       // function templates or member functions of class templates, per
8315       // C++ [temp.expl.spec]p2. We also allow these declarations as an
8316       // extension for compatibility with old SWIG code which likes to
8317       // generate them.
8318       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
8319         << D.getCXXScopeSpec().getRange();
8320     }
8321   }
8322 
8323   ProcessPragmaWeak(S, NewFD);
8324   checkAttributesAfterMerging(*this, *NewFD);
8325 
8326   AddKnownFunctionAttributes(NewFD);
8327 
8328   if (NewFD->hasAttr<OverloadableAttr>() &&
8329       !NewFD->getType()->getAs<FunctionProtoType>()) {
8330     Diag(NewFD->getLocation(),
8331          diag::err_attribute_overloadable_no_prototype)
8332       << NewFD;
8333 
8334     // Turn this into a variadic function with no parameters.
8335     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
8336     FunctionProtoType::ExtProtoInfo EPI(
8337         Context.getDefaultCallingConvention(true, false));
8338     EPI.Variadic = true;
8339     EPI.ExtInfo = FT->getExtInfo();
8340 
8341     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
8342     NewFD->setType(R);
8343   }
8344 
8345   // If there's a #pragma GCC visibility in scope, and this isn't a class
8346   // member, set the visibility of this function.
8347   if (!DC->isRecord() && NewFD->isExternallyVisible())
8348     AddPushedVisibilityAttribute(NewFD);
8349 
8350   // If there's a #pragma clang arc_cf_code_audited in scope, consider
8351   // marking the function.
8352   AddCFAuditedAttribute(NewFD);
8353 
8354   // If this is a function definition, check if we have to apply optnone due to
8355   // a pragma.
8356   if(D.isFunctionDefinition())
8357     AddRangeBasedOptnone(NewFD);
8358 
8359   // If this is the first declaration of an extern C variable, update
8360   // the map of such variables.
8361   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
8362       isIncompleteDeclExternC(*this, NewFD))
8363     RegisterLocallyScopedExternCDecl(NewFD, S);
8364 
8365   // Set this FunctionDecl's range up to the right paren.
8366   NewFD->setRangeEnd(D.getSourceRange().getEnd());
8367 
8368   if (D.isRedeclaration() && !Previous.empty()) {
8369     checkDLLAttributeRedeclaration(
8370         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD,
8371         isExplicitSpecialization || isFunctionTemplateSpecialization);
8372   }
8373 
8374   if (getLangOpts().CUDA) {
8375     IdentifierInfo *II = NewFD->getIdentifier();
8376     if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() &&
8377         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
8378       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
8379         Diag(NewFD->getLocation(), diag::err_config_scalar_return);
8380 
8381       Context.setcudaConfigureCallDecl(NewFD);
8382     }
8383 
8384     // Variadic functions, other than a *declaration* of printf, are not allowed
8385     // in device-side CUDA code, unless someone passed
8386     // -fcuda-allow-variadic-functions.
8387     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
8388         (NewFD->hasAttr<CUDADeviceAttr>() ||
8389          NewFD->hasAttr<CUDAGlobalAttr>()) &&
8390         !(II && II->isStr("printf") && NewFD->isExternC() &&
8391           !D.isFunctionDefinition())) {
8392       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
8393     }
8394   }
8395 
8396   if (getLangOpts().CPlusPlus) {
8397     if (FunctionTemplate) {
8398       if (NewFD->isInvalidDecl())
8399         FunctionTemplate->setInvalidDecl();
8400       return FunctionTemplate;
8401     }
8402   }
8403 
8404   if (NewFD->hasAttr<OpenCLKernelAttr>()) {
8405     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
8406     if ((getLangOpts().OpenCLVersion >= 120)
8407         && (SC == SC_Static)) {
8408       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
8409       D.setInvalidType();
8410     }
8411 
8412     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
8413     if (!NewFD->getReturnType()->isVoidType()) {
8414       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
8415       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
8416           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
8417                                 : FixItHint());
8418       D.setInvalidType();
8419     }
8420 
8421     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
8422     for (auto Param : NewFD->params())
8423       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
8424   }
8425   for (FunctionDecl::param_iterator PI = NewFD->param_begin(),
8426        PE = NewFD->param_end(); PI != PE; ++PI) {
8427     ParmVarDecl *Param = *PI;
8428     QualType PT = Param->getType();
8429 
8430     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
8431     // types.
8432     if (getLangOpts().OpenCLVersion >= 200) {
8433       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
8434         QualType ElemTy = PipeTy->getElementType();
8435           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
8436             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
8437             D.setInvalidType();
8438           }
8439       }
8440     }
8441   }
8442 
8443   MarkUnusedFileScopedDecl(NewFD);
8444 
8445   // Here we have an function template explicit specialization at class scope.
8446   // The actually specialization will be postponed to template instatiation
8447   // time via the ClassScopeFunctionSpecializationDecl node.
8448   if (isDependentClassScopeExplicitSpecialization) {
8449     ClassScopeFunctionSpecializationDecl *NewSpec =
8450                          ClassScopeFunctionSpecializationDecl::Create(
8451                                 Context, CurContext, SourceLocation(),
8452                                 cast<CXXMethodDecl>(NewFD),
8453                                 HasExplicitTemplateArgs, TemplateArgs);
8454     CurContext->addDecl(NewSpec);
8455     AddToScope = false;
8456   }
8457 
8458   return NewFD;
8459 }
8460 
8461 /// \brief Perform semantic checking of a new function declaration.
8462 ///
8463 /// Performs semantic analysis of the new function declaration
8464 /// NewFD. This routine performs all semantic checking that does not
8465 /// require the actual declarator involved in the declaration, and is
8466 /// used both for the declaration of functions as they are parsed
8467 /// (called via ActOnDeclarator) and for the declaration of functions
8468 /// that have been instantiated via C++ template instantiation (called
8469 /// via InstantiateDecl).
8470 ///
8471 /// \param IsExplicitSpecialization whether this new function declaration is
8472 /// an explicit specialization of the previous declaration.
8473 ///
8474 /// This sets NewFD->isInvalidDecl() to true if there was an error.
8475 ///
8476 /// \returns true if the function declaration is a redeclaration.
8477 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
8478                                     LookupResult &Previous,
8479                                     bool IsExplicitSpecialization) {
8480   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
8481          "Variably modified return types are not handled here");
8482 
8483   // Determine whether the type of this function should be merged with
8484   // a previous visible declaration. This never happens for functions in C++,
8485   // and always happens in C if the previous declaration was visible.
8486   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
8487                                !Previous.isShadowed();
8488 
8489   bool Redeclaration = false;
8490   NamedDecl *OldDecl = nullptr;
8491 
8492   // Merge or overload the declaration with an existing declaration of
8493   // the same name, if appropriate.
8494   if (!Previous.empty()) {
8495     // Determine whether NewFD is an overload of PrevDecl or
8496     // a declaration that requires merging. If it's an overload,
8497     // there's no more work to do here; we'll just add the new
8498     // function to the scope.
8499     if (!AllowOverloadingOfFunction(Previous, Context)) {
8500       NamedDecl *Candidate = Previous.getRepresentativeDecl();
8501       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
8502         Redeclaration = true;
8503         OldDecl = Candidate;
8504       }
8505     } else {
8506       switch (CheckOverload(S, NewFD, Previous, OldDecl,
8507                             /*NewIsUsingDecl*/ false)) {
8508       case Ovl_Match:
8509         Redeclaration = true;
8510         break;
8511 
8512       case Ovl_NonFunction:
8513         Redeclaration = true;
8514         break;
8515 
8516       case Ovl_Overload:
8517         Redeclaration = false;
8518         break;
8519       }
8520 
8521       if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
8522         // If a function name is overloadable in C, then every function
8523         // with that name must be marked "overloadable".
8524         Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
8525           << Redeclaration << NewFD;
8526         NamedDecl *OverloadedDecl = nullptr;
8527         if (Redeclaration)
8528           OverloadedDecl = OldDecl;
8529         else if (!Previous.empty())
8530           OverloadedDecl = Previous.getRepresentativeDecl();
8531         if (OverloadedDecl)
8532           Diag(OverloadedDecl->getLocation(),
8533                diag::note_attribute_overloadable_prev_overload);
8534         NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
8535       }
8536     }
8537   }
8538 
8539   // Check for a previous extern "C" declaration with this name.
8540   if (!Redeclaration &&
8541       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
8542     if (!Previous.empty()) {
8543       // This is an extern "C" declaration with the same name as a previous
8544       // declaration, and thus redeclares that entity...
8545       Redeclaration = true;
8546       OldDecl = Previous.getFoundDecl();
8547       MergeTypeWithPrevious = false;
8548 
8549       // ... except in the presence of __attribute__((overloadable)).
8550       if (OldDecl->hasAttr<OverloadableAttr>()) {
8551         if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
8552           Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
8553             << Redeclaration << NewFD;
8554           Diag(Previous.getFoundDecl()->getLocation(),
8555                diag::note_attribute_overloadable_prev_overload);
8556           NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
8557         }
8558         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
8559           Redeclaration = false;
8560           OldDecl = nullptr;
8561         }
8562       }
8563     }
8564   }
8565 
8566   // C++11 [dcl.constexpr]p8:
8567   //   A constexpr specifier for a non-static member function that is not
8568   //   a constructor declares that member function to be const.
8569   //
8570   // This needs to be delayed until we know whether this is an out-of-line
8571   // definition of a static member function.
8572   //
8573   // This rule is not present in C++1y, so we produce a backwards
8574   // compatibility warning whenever it happens in C++11.
8575   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
8576   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
8577       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
8578       (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
8579     CXXMethodDecl *OldMD = nullptr;
8580     if (OldDecl)
8581       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
8582     if (!OldMD || !OldMD->isStatic()) {
8583       const FunctionProtoType *FPT =
8584         MD->getType()->castAs<FunctionProtoType>();
8585       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8586       EPI.TypeQuals |= Qualifiers::Const;
8587       MD->setType(Context.getFunctionType(FPT->getReturnType(),
8588                                           FPT->getParamTypes(), EPI));
8589 
8590       // Warn that we did this, if we're not performing template instantiation.
8591       // In that case, we'll have warned already when the template was defined.
8592       if (ActiveTemplateInstantiations.empty()) {
8593         SourceLocation AddConstLoc;
8594         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
8595                 .IgnoreParens().getAs<FunctionTypeLoc>())
8596           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
8597 
8598         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
8599           << FixItHint::CreateInsertion(AddConstLoc, " const");
8600       }
8601     }
8602   }
8603 
8604   if (Redeclaration) {
8605     // NewFD and OldDecl represent declarations that need to be
8606     // merged.
8607     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
8608       NewFD->setInvalidDecl();
8609       return Redeclaration;
8610     }
8611 
8612     Previous.clear();
8613     Previous.addDecl(OldDecl);
8614 
8615     if (FunctionTemplateDecl *OldTemplateDecl
8616                                   = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
8617       NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
8618       FunctionTemplateDecl *NewTemplateDecl
8619         = NewFD->getDescribedFunctionTemplate();
8620       assert(NewTemplateDecl && "Template/non-template mismatch");
8621       if (CXXMethodDecl *Method
8622             = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
8623         Method->setAccess(OldTemplateDecl->getAccess());
8624         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
8625       }
8626 
8627       // If this is an explicit specialization of a member that is a function
8628       // template, mark it as a member specialization.
8629       if (IsExplicitSpecialization &&
8630           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
8631         NewTemplateDecl->setMemberSpecialization();
8632         assert(OldTemplateDecl->isMemberSpecialization());
8633       }
8634 
8635     } else {
8636       // This needs to happen first so that 'inline' propagates.
8637       NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
8638 
8639       if (isa<CXXMethodDecl>(NewFD))
8640         NewFD->setAccess(OldDecl->getAccess());
8641     }
8642   }
8643 
8644   // Semantic checking for this function declaration (in isolation).
8645 
8646   if (getLangOpts().CPlusPlus) {
8647     // C++-specific checks.
8648     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
8649       CheckConstructor(Constructor);
8650     } else if (CXXDestructorDecl *Destructor =
8651                 dyn_cast<CXXDestructorDecl>(NewFD)) {
8652       CXXRecordDecl *Record = Destructor->getParent();
8653       QualType ClassType = Context.getTypeDeclType(Record);
8654 
8655       // FIXME: Shouldn't we be able to perform this check even when the class
8656       // type is dependent? Both gcc and edg can handle that.
8657       if (!ClassType->isDependentType()) {
8658         DeclarationName Name
8659           = Context.DeclarationNames.getCXXDestructorName(
8660                                         Context.getCanonicalType(ClassType));
8661         if (NewFD->getDeclName() != Name) {
8662           Diag(NewFD->getLocation(), diag::err_destructor_name);
8663           NewFD->setInvalidDecl();
8664           return Redeclaration;
8665         }
8666       }
8667     } else if (CXXConversionDecl *Conversion
8668                = dyn_cast<CXXConversionDecl>(NewFD)) {
8669       ActOnConversionDeclarator(Conversion);
8670     }
8671 
8672     // Find any virtual functions that this function overrides.
8673     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
8674       if (!Method->isFunctionTemplateSpecialization() &&
8675           !Method->getDescribedFunctionTemplate() &&
8676           Method->isCanonicalDecl()) {
8677         if (AddOverriddenMethods(Method->getParent(), Method)) {
8678           // If the function was marked as "static", we have a problem.
8679           if (NewFD->getStorageClass() == SC_Static) {
8680             ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
8681           }
8682         }
8683       }
8684 
8685       if (Method->isStatic())
8686         checkThisInStaticMemberFunctionType(Method);
8687     }
8688 
8689     // Extra checking for C++ overloaded operators (C++ [over.oper]).
8690     if (NewFD->isOverloadedOperator() &&
8691         CheckOverloadedOperatorDeclaration(NewFD)) {
8692       NewFD->setInvalidDecl();
8693       return Redeclaration;
8694     }
8695 
8696     // Extra checking for C++0x literal operators (C++0x [over.literal]).
8697     if (NewFD->getLiteralIdentifier() &&
8698         CheckLiteralOperatorDeclaration(NewFD)) {
8699       NewFD->setInvalidDecl();
8700       return Redeclaration;
8701     }
8702 
8703     // In C++, check default arguments now that we have merged decls. Unless
8704     // the lexical context is the class, because in this case this is done
8705     // during delayed parsing anyway.
8706     if (!CurContext->isRecord())
8707       CheckCXXDefaultArguments(NewFD);
8708 
8709     // If this function declares a builtin function, check the type of this
8710     // declaration against the expected type for the builtin.
8711     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
8712       ASTContext::GetBuiltinTypeError Error;
8713       LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
8714       QualType T = Context.GetBuiltinType(BuiltinID, Error);
8715       if (!T.isNull() && !Context.hasSameType(T, NewFD->getType())) {
8716         // The type of this function differs from the type of the builtin,
8717         // so forget about the builtin entirely.
8718         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
8719       }
8720     }
8721 
8722     // If this function is declared as being extern "C", then check to see if
8723     // the function returns a UDT (class, struct, or union type) that is not C
8724     // compatible, and if it does, warn the user.
8725     // But, issue any diagnostic on the first declaration only.
8726     if (Previous.empty() && NewFD->isExternC()) {
8727       QualType R = NewFD->getReturnType();
8728       if (R->isIncompleteType() && !R->isVoidType())
8729         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
8730             << NewFD << R;
8731       else if (!R.isPODType(Context) && !R->isVoidType() &&
8732                !R->isObjCObjectPointerType())
8733         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
8734     }
8735   }
8736   return Redeclaration;
8737 }
8738 
8739 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
8740   // C++11 [basic.start.main]p3:
8741   //   A program that [...] declares main to be inline, static or
8742   //   constexpr is ill-formed.
8743   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
8744   //   appear in a declaration of main.
8745   // static main is not an error under C99, but we should warn about it.
8746   // We accept _Noreturn main as an extension.
8747   if (FD->getStorageClass() == SC_Static)
8748     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
8749          ? diag::err_static_main : diag::warn_static_main)
8750       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
8751   if (FD->isInlineSpecified())
8752     Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
8753       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
8754   if (DS.isNoreturnSpecified()) {
8755     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
8756     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
8757     Diag(NoreturnLoc, diag::ext_noreturn_main);
8758     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
8759       << FixItHint::CreateRemoval(NoreturnRange);
8760   }
8761   if (FD->isConstexpr()) {
8762     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
8763       << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
8764     FD->setConstexpr(false);
8765   }
8766 
8767   if (getLangOpts().OpenCL) {
8768     Diag(FD->getLocation(), diag::err_opencl_no_main)
8769         << FD->hasAttr<OpenCLKernelAttr>();
8770     FD->setInvalidDecl();
8771     return;
8772   }
8773 
8774   QualType T = FD->getType();
8775   assert(T->isFunctionType() && "function decl is not of function type");
8776   const FunctionType* FT = T->castAs<FunctionType>();
8777 
8778   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
8779     // In C with GNU extensions we allow main() to have non-integer return
8780     // type, but we should warn about the extension, and we disable the
8781     // implicit-return-zero rule.
8782 
8783     // GCC in C mode accepts qualified 'int'.
8784     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
8785       FD->setHasImplicitReturnZero(true);
8786     else {
8787       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
8788       SourceRange RTRange = FD->getReturnTypeSourceRange();
8789       if (RTRange.isValid())
8790         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
8791             << FixItHint::CreateReplacement(RTRange, "int");
8792     }
8793   } else {
8794     // In C and C++, main magically returns 0 if you fall off the end;
8795     // set the flag which tells us that.
8796     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
8797 
8798     // All the standards say that main() should return 'int'.
8799     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
8800       FD->setHasImplicitReturnZero(true);
8801     else {
8802       // Otherwise, this is just a flat-out error.
8803       SourceRange RTRange = FD->getReturnTypeSourceRange();
8804       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
8805           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
8806                                 : FixItHint());
8807       FD->setInvalidDecl(true);
8808     }
8809   }
8810 
8811   // Treat protoless main() as nullary.
8812   if (isa<FunctionNoProtoType>(FT)) return;
8813 
8814   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
8815   unsigned nparams = FTP->getNumParams();
8816   assert(FD->getNumParams() == nparams);
8817 
8818   bool HasExtraParameters = (nparams > 3);
8819 
8820   if (FTP->isVariadic()) {
8821     Diag(FD->getLocation(), diag::ext_variadic_main);
8822     // FIXME: if we had information about the location of the ellipsis, we
8823     // could add a FixIt hint to remove it as a parameter.
8824   }
8825 
8826   // Darwin passes an undocumented fourth argument of type char**.  If
8827   // other platforms start sprouting these, the logic below will start
8828   // getting shifty.
8829   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
8830     HasExtraParameters = false;
8831 
8832   if (HasExtraParameters) {
8833     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
8834     FD->setInvalidDecl(true);
8835     nparams = 3;
8836   }
8837 
8838   // FIXME: a lot of the following diagnostics would be improved
8839   // if we had some location information about types.
8840 
8841   QualType CharPP =
8842     Context.getPointerType(Context.getPointerType(Context.CharTy));
8843   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
8844 
8845   for (unsigned i = 0; i < nparams; ++i) {
8846     QualType AT = FTP->getParamType(i);
8847 
8848     bool mismatch = true;
8849 
8850     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
8851       mismatch = false;
8852     else if (Expected[i] == CharPP) {
8853       // As an extension, the following forms are okay:
8854       //   char const **
8855       //   char const * const *
8856       //   char * const *
8857 
8858       QualifierCollector qs;
8859       const PointerType* PT;
8860       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
8861           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
8862           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
8863                               Context.CharTy)) {
8864         qs.removeConst();
8865         mismatch = !qs.empty();
8866       }
8867     }
8868 
8869     if (mismatch) {
8870       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
8871       // TODO: suggest replacing given type with expected type
8872       FD->setInvalidDecl(true);
8873     }
8874   }
8875 
8876   if (nparams == 1 && !FD->isInvalidDecl()) {
8877     Diag(FD->getLocation(), diag::warn_main_one_arg);
8878   }
8879 
8880   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
8881     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
8882     FD->setInvalidDecl();
8883   }
8884 }
8885 
8886 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
8887   QualType T = FD->getType();
8888   assert(T->isFunctionType() && "function decl is not of function type");
8889   const FunctionType *FT = T->castAs<FunctionType>();
8890 
8891   // Set an implicit return of 'zero' if the function can return some integral,
8892   // enumeration, pointer or nullptr type.
8893   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
8894       FT->getReturnType()->isAnyPointerType() ||
8895       FT->getReturnType()->isNullPtrType())
8896     // DllMain is exempt because a return value of zero means it failed.
8897     if (FD->getName() != "DllMain")
8898       FD->setHasImplicitReturnZero(true);
8899 
8900   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
8901     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
8902     FD->setInvalidDecl();
8903   }
8904 }
8905 
8906 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
8907   // FIXME: Need strict checking.  In C89, we need to check for
8908   // any assignment, increment, decrement, function-calls, or
8909   // commas outside of a sizeof.  In C99, it's the same list,
8910   // except that the aforementioned are allowed in unevaluated
8911   // expressions.  Everything else falls under the
8912   // "may accept other forms of constant expressions" exception.
8913   // (We never end up here for C++, so the constant expression
8914   // rules there don't matter.)
8915   const Expr *Culprit;
8916   if (Init->isConstantInitializer(Context, false, &Culprit))
8917     return false;
8918   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
8919     << Culprit->getSourceRange();
8920   return true;
8921 }
8922 
8923 namespace {
8924   // Visits an initialization expression to see if OrigDecl is evaluated in
8925   // its own initialization and throws a warning if it does.
8926   class SelfReferenceChecker
8927       : public EvaluatedExprVisitor<SelfReferenceChecker> {
8928     Sema &S;
8929     Decl *OrigDecl;
8930     bool isRecordType;
8931     bool isPODType;
8932     bool isReferenceType;
8933 
8934     bool isInitList;
8935     llvm::SmallVector<unsigned, 4> InitFieldIndex;
8936 
8937   public:
8938     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
8939 
8940     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
8941                                                     S(S), OrigDecl(OrigDecl) {
8942       isPODType = false;
8943       isRecordType = false;
8944       isReferenceType = false;
8945       isInitList = false;
8946       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
8947         isPODType = VD->getType().isPODType(S.Context);
8948         isRecordType = VD->getType()->isRecordType();
8949         isReferenceType = VD->getType()->isReferenceType();
8950       }
8951     }
8952 
8953     // For most expressions, just call the visitor.  For initializer lists,
8954     // track the index of the field being initialized since fields are
8955     // initialized in order allowing use of previously initialized fields.
8956     void CheckExpr(Expr *E) {
8957       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
8958       if (!InitList) {
8959         Visit(E);
8960         return;
8961       }
8962 
8963       // Track and increment the index here.
8964       isInitList = true;
8965       InitFieldIndex.push_back(0);
8966       for (auto Child : InitList->children()) {
8967         CheckExpr(cast<Expr>(Child));
8968         ++InitFieldIndex.back();
8969       }
8970       InitFieldIndex.pop_back();
8971     }
8972 
8973     // Returns true if MemberExpr is checked and no futher checking is needed.
8974     // Returns false if additional checking is required.
8975     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
8976       llvm::SmallVector<FieldDecl*, 4> Fields;
8977       Expr *Base = E;
8978       bool ReferenceField = false;
8979 
8980       // Get the field memebers used.
8981       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
8982         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
8983         if (!FD)
8984           return false;
8985         Fields.push_back(FD);
8986         if (FD->getType()->isReferenceType())
8987           ReferenceField = true;
8988         Base = ME->getBase()->IgnoreParenImpCasts();
8989       }
8990 
8991       // Keep checking only if the base Decl is the same.
8992       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
8993       if (!DRE || DRE->getDecl() != OrigDecl)
8994         return false;
8995 
8996       // A reference field can be bound to an unininitialized field.
8997       if (CheckReference && !ReferenceField)
8998         return true;
8999 
9000       // Convert FieldDecls to their index number.
9001       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
9002       for (const FieldDecl *I : llvm::reverse(Fields))
9003         UsedFieldIndex.push_back(I->getFieldIndex());
9004 
9005       // See if a warning is needed by checking the first difference in index
9006       // numbers.  If field being used has index less than the field being
9007       // initialized, then the use is safe.
9008       for (auto UsedIter = UsedFieldIndex.begin(),
9009                 UsedEnd = UsedFieldIndex.end(),
9010                 OrigIter = InitFieldIndex.begin(),
9011                 OrigEnd = InitFieldIndex.end();
9012            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
9013         if (*UsedIter < *OrigIter)
9014           return true;
9015         if (*UsedIter > *OrigIter)
9016           break;
9017       }
9018 
9019       // TODO: Add a different warning which will print the field names.
9020       HandleDeclRefExpr(DRE);
9021       return true;
9022     }
9023 
9024     // For most expressions, the cast is directly above the DeclRefExpr.
9025     // For conditional operators, the cast can be outside the conditional
9026     // operator if both expressions are DeclRefExpr's.
9027     void HandleValue(Expr *E) {
9028       E = E->IgnoreParens();
9029       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
9030         HandleDeclRefExpr(DRE);
9031         return;
9032       }
9033 
9034       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
9035         Visit(CO->getCond());
9036         HandleValue(CO->getTrueExpr());
9037         HandleValue(CO->getFalseExpr());
9038         return;
9039       }
9040 
9041       if (BinaryConditionalOperator *BCO =
9042               dyn_cast<BinaryConditionalOperator>(E)) {
9043         Visit(BCO->getCond());
9044         HandleValue(BCO->getFalseExpr());
9045         return;
9046       }
9047 
9048       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
9049         HandleValue(OVE->getSourceExpr());
9050         return;
9051       }
9052 
9053       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
9054         if (BO->getOpcode() == BO_Comma) {
9055           Visit(BO->getLHS());
9056           HandleValue(BO->getRHS());
9057           return;
9058         }
9059       }
9060 
9061       if (isa<MemberExpr>(E)) {
9062         if (isInitList) {
9063           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
9064                                       false /*CheckReference*/))
9065             return;
9066         }
9067 
9068         Expr *Base = E->IgnoreParenImpCasts();
9069         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9070           // Check for static member variables and don't warn on them.
9071           if (!isa<FieldDecl>(ME->getMemberDecl()))
9072             return;
9073           Base = ME->getBase()->IgnoreParenImpCasts();
9074         }
9075         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
9076           HandleDeclRefExpr(DRE);
9077         return;
9078       }
9079 
9080       Visit(E);
9081     }
9082 
9083     // Reference types not handled in HandleValue are handled here since all
9084     // uses of references are bad, not just r-value uses.
9085     void VisitDeclRefExpr(DeclRefExpr *E) {
9086       if (isReferenceType)
9087         HandleDeclRefExpr(E);
9088     }
9089 
9090     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
9091       if (E->getCastKind() == CK_LValueToRValue) {
9092         HandleValue(E->getSubExpr());
9093         return;
9094       }
9095 
9096       Inherited::VisitImplicitCastExpr(E);
9097     }
9098 
9099     void VisitMemberExpr(MemberExpr *E) {
9100       if (isInitList) {
9101         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
9102           return;
9103       }
9104 
9105       // Don't warn on arrays since they can be treated as pointers.
9106       if (E->getType()->canDecayToPointerType()) return;
9107 
9108       // Warn when a non-static method call is followed by non-static member
9109       // field accesses, which is followed by a DeclRefExpr.
9110       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
9111       bool Warn = (MD && !MD->isStatic());
9112       Expr *Base = E->getBase()->IgnoreParenImpCasts();
9113       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9114         if (!isa<FieldDecl>(ME->getMemberDecl()))
9115           Warn = false;
9116         Base = ME->getBase()->IgnoreParenImpCasts();
9117       }
9118 
9119       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
9120         if (Warn)
9121           HandleDeclRefExpr(DRE);
9122         return;
9123       }
9124 
9125       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
9126       // Visit that expression.
9127       Visit(Base);
9128     }
9129 
9130     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
9131       Expr *Callee = E->getCallee();
9132 
9133       if (isa<UnresolvedLookupExpr>(Callee))
9134         return Inherited::VisitCXXOperatorCallExpr(E);
9135 
9136       Visit(Callee);
9137       for (auto Arg: E->arguments())
9138         HandleValue(Arg->IgnoreParenImpCasts());
9139     }
9140 
9141     void VisitUnaryOperator(UnaryOperator *E) {
9142       // For POD record types, addresses of its own members are well-defined.
9143       if (E->getOpcode() == UO_AddrOf && isRecordType &&
9144           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
9145         if (!isPODType)
9146           HandleValue(E->getSubExpr());
9147         return;
9148       }
9149 
9150       if (E->isIncrementDecrementOp()) {
9151         HandleValue(E->getSubExpr());
9152         return;
9153       }
9154 
9155       Inherited::VisitUnaryOperator(E);
9156     }
9157 
9158     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
9159 
9160     void VisitCXXConstructExpr(CXXConstructExpr *E) {
9161       if (E->getConstructor()->isCopyConstructor()) {
9162         Expr *ArgExpr = E->getArg(0);
9163         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
9164           if (ILE->getNumInits() == 1)
9165             ArgExpr = ILE->getInit(0);
9166         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
9167           if (ICE->getCastKind() == CK_NoOp)
9168             ArgExpr = ICE->getSubExpr();
9169         HandleValue(ArgExpr);
9170         return;
9171       }
9172       Inherited::VisitCXXConstructExpr(E);
9173     }
9174 
9175     void VisitCallExpr(CallExpr *E) {
9176       // Treat std::move as a use.
9177       if (E->getNumArgs() == 1) {
9178         if (FunctionDecl *FD = E->getDirectCallee()) {
9179           if (FD->isInStdNamespace() && FD->getIdentifier() &&
9180               FD->getIdentifier()->isStr("move")) {
9181             HandleValue(E->getArg(0));
9182             return;
9183           }
9184         }
9185       }
9186 
9187       Inherited::VisitCallExpr(E);
9188     }
9189 
9190     void VisitBinaryOperator(BinaryOperator *E) {
9191       if (E->isCompoundAssignmentOp()) {
9192         HandleValue(E->getLHS());
9193         Visit(E->getRHS());
9194         return;
9195       }
9196 
9197       Inherited::VisitBinaryOperator(E);
9198     }
9199 
9200     // A custom visitor for BinaryConditionalOperator is needed because the
9201     // regular visitor would check the condition and true expression separately
9202     // but both point to the same place giving duplicate diagnostics.
9203     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
9204       Visit(E->getCond());
9205       Visit(E->getFalseExpr());
9206     }
9207 
9208     void HandleDeclRefExpr(DeclRefExpr *DRE) {
9209       Decl* ReferenceDecl = DRE->getDecl();
9210       if (OrigDecl != ReferenceDecl) return;
9211       unsigned diag;
9212       if (isReferenceType) {
9213         diag = diag::warn_uninit_self_reference_in_reference_init;
9214       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
9215         diag = diag::warn_static_self_reference_in_init;
9216       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
9217                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
9218                  DRE->getDecl()->getType()->isRecordType()) {
9219         diag = diag::warn_uninit_self_reference_in_init;
9220       } else {
9221         // Local variables will be handled by the CFG analysis.
9222         return;
9223       }
9224 
9225       S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
9226                             S.PDiag(diag)
9227                               << DRE->getNameInfo().getName()
9228                               << OrigDecl->getLocation()
9229                               << DRE->getSourceRange());
9230     }
9231   };
9232 
9233   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
9234   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
9235                                  bool DirectInit) {
9236     // Parameters arguments are occassionially constructed with itself,
9237     // for instance, in recursive functions.  Skip them.
9238     if (isa<ParmVarDecl>(OrigDecl))
9239       return;
9240 
9241     E = E->IgnoreParens();
9242 
9243     // Skip checking T a = a where T is not a record or reference type.
9244     // Doing so is a way to silence uninitialized warnings.
9245     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
9246       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
9247         if (ICE->getCastKind() == CK_LValueToRValue)
9248           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
9249             if (DRE->getDecl() == OrigDecl)
9250               return;
9251 
9252     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
9253   }
9254 } // end anonymous namespace
9255 
9256 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
9257                                             DeclarationName Name, QualType Type,
9258                                             TypeSourceInfo *TSI,
9259                                             SourceRange Range, bool DirectInit,
9260                                             Expr *Init) {
9261   bool IsInitCapture = !VDecl;
9262   assert((!VDecl || !VDecl->isInitCapture()) &&
9263          "init captures are expected to be deduced prior to initialization");
9264 
9265   ArrayRef<Expr *> DeduceInits = Init;
9266   if (DirectInit) {
9267     if (auto *PL = dyn_cast<ParenListExpr>(Init))
9268       DeduceInits = PL->exprs();
9269     else if (auto *IL = dyn_cast<InitListExpr>(Init))
9270       DeduceInits = IL->inits();
9271   }
9272 
9273   // Deduction only works if we have exactly one source expression.
9274   if (DeduceInits.empty()) {
9275     // It isn't possible to write this directly, but it is possible to
9276     // end up in this situation with "auto x(some_pack...);"
9277     Diag(Init->getLocStart(), IsInitCapture
9278                                   ? diag::err_init_capture_no_expression
9279                                   : diag::err_auto_var_init_no_expression)
9280         << Name << Type << Range;
9281     return QualType();
9282   }
9283 
9284   if (DeduceInits.size() > 1) {
9285     Diag(DeduceInits[1]->getLocStart(),
9286          IsInitCapture ? diag::err_init_capture_multiple_expressions
9287                        : diag::err_auto_var_init_multiple_expressions)
9288         << Name << Type << Range;
9289     return QualType();
9290   }
9291 
9292   Expr *DeduceInit = DeduceInits[0];
9293   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
9294     Diag(Init->getLocStart(), IsInitCapture
9295                                   ? diag::err_init_capture_paren_braces
9296                                   : diag::err_auto_var_init_paren_braces)
9297         << isa<InitListExpr>(Init) << Name << Type << Range;
9298     return QualType();
9299   }
9300 
9301   // Expressions default to 'id' when we're in a debugger.
9302   bool DefaultedAnyToId = false;
9303   if (getLangOpts().DebuggerCastResultToId &&
9304       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
9305     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
9306     if (Result.isInvalid()) {
9307       return QualType();
9308     }
9309     Init = Result.get();
9310     DefaultedAnyToId = true;
9311   }
9312 
9313   QualType DeducedType;
9314   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
9315     if (!IsInitCapture)
9316       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
9317     else if (isa<InitListExpr>(Init))
9318       Diag(Range.getBegin(),
9319            diag::err_init_capture_deduction_failure_from_init_list)
9320           << Name
9321           << (DeduceInit->getType().isNull() ? TSI->getType()
9322                                              : DeduceInit->getType())
9323           << DeduceInit->getSourceRange();
9324     else
9325       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
9326           << Name << TSI->getType()
9327           << (DeduceInit->getType().isNull() ? TSI->getType()
9328                                              : DeduceInit->getType())
9329           << DeduceInit->getSourceRange();
9330   }
9331 
9332   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
9333   // 'id' instead of a specific object type prevents most of our usual
9334   // checks.
9335   // We only want to warn outside of template instantiations, though:
9336   // inside a template, the 'id' could have come from a parameter.
9337   if (ActiveTemplateInstantiations.empty() && !DefaultedAnyToId &&
9338       !IsInitCapture && !DeducedType.isNull() && DeducedType->isObjCIdType()) {
9339     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
9340     Diag(Loc, diag::warn_auto_var_is_id) << Name << Range;
9341   }
9342 
9343   return DeducedType;
9344 }
9345 
9346 /// AddInitializerToDecl - Adds the initializer Init to the
9347 /// declaration dcl. If DirectInit is true, this is C++ direct
9348 /// initialization rather than copy initialization.
9349 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init,
9350                                 bool DirectInit, bool TypeMayContainAuto) {
9351   // If there is no declaration, there was an error parsing it.  Just ignore
9352   // the initializer.
9353   if (!RealDecl || RealDecl->isInvalidDecl()) {
9354     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
9355     return;
9356   }
9357 
9358   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
9359     // Pure-specifiers are handled in ActOnPureSpecifier.
9360     Diag(Method->getLocation(), diag::err_member_function_initialization)
9361       << Method->getDeclName() << Init->getSourceRange();
9362     Method->setInvalidDecl();
9363     return;
9364   }
9365 
9366   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
9367   if (!VDecl) {
9368     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
9369     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
9370     RealDecl->setInvalidDecl();
9371     return;
9372   }
9373 
9374   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
9375   if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) {
9376     // Attempt typo correction early so that the type of the init expression can
9377     // be deduced based on the chosen correction if the original init contains a
9378     // TypoExpr.
9379     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
9380     if (!Res.isUsable()) {
9381       RealDecl->setInvalidDecl();
9382       return;
9383     }
9384     Init = Res.get();
9385 
9386     QualType DeducedType = deduceVarTypeFromInitializer(
9387         VDecl, VDecl->getDeclName(), VDecl->getType(),
9388         VDecl->getTypeSourceInfo(), VDecl->getSourceRange(), DirectInit, Init);
9389     if (DeducedType.isNull()) {
9390       RealDecl->setInvalidDecl();
9391       return;
9392     }
9393 
9394     VDecl->setType(DeducedType);
9395     assert(VDecl->isLinkageValid());
9396 
9397     // In ARC, infer lifetime.
9398     if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
9399       VDecl->setInvalidDecl();
9400 
9401     // If this is a redeclaration, check that the type we just deduced matches
9402     // the previously declared type.
9403     if (VarDecl *Old = VDecl->getPreviousDecl()) {
9404       // We never need to merge the type, because we cannot form an incomplete
9405       // array of auto, nor deduce such a type.
9406       MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
9407     }
9408 
9409     // Check the deduced type is valid for a variable declaration.
9410     CheckVariableDeclarationType(VDecl);
9411     if (VDecl->isInvalidDecl())
9412       return;
9413   }
9414 
9415   // dllimport cannot be used on variable definitions.
9416   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
9417     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
9418     VDecl->setInvalidDecl();
9419     return;
9420   }
9421 
9422   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
9423     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
9424     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
9425     VDecl->setInvalidDecl();
9426     return;
9427   }
9428 
9429   if (!VDecl->getType()->isDependentType()) {
9430     // A definition must end up with a complete type, which means it must be
9431     // complete with the restriction that an array type might be completed by
9432     // the initializer; note that later code assumes this restriction.
9433     QualType BaseDeclType = VDecl->getType();
9434     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
9435       BaseDeclType = Array->getElementType();
9436     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
9437                             diag::err_typecheck_decl_incomplete_type)) {
9438       RealDecl->setInvalidDecl();
9439       return;
9440     }
9441 
9442     // The variable can not have an abstract class type.
9443     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
9444                                diag::err_abstract_type_in_decl,
9445                                AbstractVariableType))
9446       VDecl->setInvalidDecl();
9447   }
9448 
9449   VarDecl *Def;
9450   if ((Def = VDecl->getDefinition()) && Def != VDecl) {
9451     NamedDecl *Hidden = nullptr;
9452     if (!hasVisibleDefinition(Def, &Hidden) &&
9453         (VDecl->getFormalLinkage() == InternalLinkage ||
9454          VDecl->getDescribedVarTemplate() ||
9455          VDecl->getNumTemplateParameterLists() ||
9456          VDecl->getDeclContext()->isDependentContext())) {
9457       // The previous definition is hidden, and multiple definitions are
9458       // permitted (in separate TUs). Form another definition of it.
9459     } else {
9460       Diag(VDecl->getLocation(), diag::err_redefinition)
9461         << VDecl->getDeclName();
9462       Diag(Def->getLocation(), diag::note_previous_definition);
9463       VDecl->setInvalidDecl();
9464       return;
9465     }
9466   }
9467 
9468   if (getLangOpts().CPlusPlus) {
9469     // C++ [class.static.data]p4
9470     //   If a static data member is of const integral or const
9471     //   enumeration type, its declaration in the class definition can
9472     //   specify a constant-initializer which shall be an integral
9473     //   constant expression (5.19). In that case, the member can appear
9474     //   in integral constant expressions. The member shall still be
9475     //   defined in a namespace scope if it is used in the program and the
9476     //   namespace scope definition shall not contain an initializer.
9477     //
9478     // We already performed a redefinition check above, but for static
9479     // data members we also need to check whether there was an in-class
9480     // declaration with an initializer.
9481     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
9482       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
9483           << VDecl->getDeclName();
9484       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
9485            diag::note_previous_initializer)
9486           << 0;
9487       return;
9488     }
9489 
9490     if (VDecl->hasLocalStorage())
9491       getCurFunction()->setHasBranchProtectedScope();
9492 
9493     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
9494       VDecl->setInvalidDecl();
9495       return;
9496     }
9497   }
9498 
9499   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
9500   // a kernel function cannot be initialized."
9501   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
9502     Diag(VDecl->getLocation(), diag::err_local_cant_init);
9503     VDecl->setInvalidDecl();
9504     return;
9505   }
9506 
9507   // Get the decls type and save a reference for later, since
9508   // CheckInitializerTypes may change it.
9509   QualType DclT = VDecl->getType(), SavT = DclT;
9510 
9511   // Expressions default to 'id' when we're in a debugger
9512   // and we are assigning it to a variable of Objective-C pointer type.
9513   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
9514       Init->getType() == Context.UnknownAnyTy) {
9515     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
9516     if (Result.isInvalid()) {
9517       VDecl->setInvalidDecl();
9518       return;
9519     }
9520     Init = Result.get();
9521   }
9522 
9523   // Perform the initialization.
9524   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
9525   if (!VDecl->isInvalidDecl()) {
9526     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
9527     InitializationKind Kind =
9528         DirectInit
9529             ? CXXDirectInit
9530                   ? InitializationKind::CreateDirect(VDecl->getLocation(),
9531                                                      Init->getLocStart(),
9532                                                      Init->getLocEnd())
9533                   : InitializationKind::CreateDirectList(VDecl->getLocation())
9534             : InitializationKind::CreateCopy(VDecl->getLocation(),
9535                                              Init->getLocStart());
9536 
9537     MultiExprArg Args = Init;
9538     if (CXXDirectInit)
9539       Args = MultiExprArg(CXXDirectInit->getExprs(),
9540                           CXXDirectInit->getNumExprs());
9541 
9542     // Try to correct any TypoExprs in the initialization arguments.
9543     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
9544       ExprResult Res = CorrectDelayedTyposInExpr(
9545           Args[Idx], VDecl, [this, Entity, Kind](Expr *E) {
9546             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
9547             return Init.Failed() ? ExprError() : E;
9548           });
9549       if (Res.isInvalid()) {
9550         VDecl->setInvalidDecl();
9551       } else if (Res.get() != Args[Idx]) {
9552         Args[Idx] = Res.get();
9553       }
9554     }
9555     if (VDecl->isInvalidDecl())
9556       return;
9557 
9558     InitializationSequence InitSeq(*this, Entity, Kind, Args,
9559                                    /*TopLevelOfInitList=*/false,
9560                                    /*TreatUnavailableAsInvalid=*/false);
9561     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
9562     if (Result.isInvalid()) {
9563       VDecl->setInvalidDecl();
9564       return;
9565     }
9566 
9567     Init = Result.getAs<Expr>();
9568   }
9569 
9570   // Check for self-references within variable initializers.
9571   // Variables declared within a function/method body (except for references)
9572   // are handled by a dataflow analysis.
9573   if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
9574       VDecl->getType()->isReferenceType()) {
9575     CheckSelfReference(*this, RealDecl, Init, DirectInit);
9576   }
9577 
9578   // If the type changed, it means we had an incomplete type that was
9579   // completed by the initializer. For example:
9580   //   int ary[] = { 1, 3, 5 };
9581   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
9582   if (!VDecl->isInvalidDecl() && (DclT != SavT))
9583     VDecl->setType(DclT);
9584 
9585   if (!VDecl->isInvalidDecl()) {
9586     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
9587 
9588     if (VDecl->hasAttr<BlocksAttr>())
9589       checkRetainCycles(VDecl, Init);
9590 
9591     // It is safe to assign a weak reference into a strong variable.
9592     // Although this code can still have problems:
9593     //   id x = self.weakProp;
9594     //   id y = self.weakProp;
9595     // we do not warn to warn spuriously when 'x' and 'y' are on separate
9596     // paths through the function. This should be revisited if
9597     // -Wrepeated-use-of-weak is made flow-sensitive.
9598     if (VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong &&
9599         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9600                          Init->getLocStart()))
9601       getCurFunction()->markSafeWeakUse(Init);
9602   }
9603 
9604   // The initialization is usually a full-expression.
9605   //
9606   // FIXME: If this is a braced initialization of an aggregate, it is not
9607   // an expression, and each individual field initializer is a separate
9608   // full-expression. For instance, in:
9609   //
9610   //   struct Temp { ~Temp(); };
9611   //   struct S { S(Temp); };
9612   //   struct T { S a, b; } t = { Temp(), Temp() }
9613   //
9614   // we should destroy the first Temp before constructing the second.
9615   ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
9616                                           false,
9617                                           VDecl->isConstexpr());
9618   if (Result.isInvalid()) {
9619     VDecl->setInvalidDecl();
9620     return;
9621   }
9622   Init = Result.get();
9623 
9624   // Attach the initializer to the decl.
9625   VDecl->setInit(Init);
9626 
9627   if (VDecl->isLocalVarDecl()) {
9628     // C99 6.7.8p4: All the expressions in an initializer for an object that has
9629     // static storage duration shall be constant expressions or string literals.
9630     // C++ does not have this restriction.
9631     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) {
9632       const Expr *Culprit;
9633       if (VDecl->getStorageClass() == SC_Static)
9634         CheckForConstantInitializer(Init, DclT);
9635       // C89 is stricter than C99 for non-static aggregate types.
9636       // C89 6.5.7p3: All the expressions [...] in an initializer list
9637       // for an object that has aggregate or union type shall be
9638       // constant expressions.
9639       else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
9640                isa<InitListExpr>(Init) &&
9641                !Init->isConstantInitializer(Context, false, &Culprit))
9642         Diag(Culprit->getExprLoc(),
9643              diag::ext_aggregate_init_not_constant)
9644           << Culprit->getSourceRange();
9645     }
9646   } else if (VDecl->isStaticDataMember() &&
9647              VDecl->getLexicalDeclContext()->isRecord()) {
9648     // This is an in-class initialization for a static data member, e.g.,
9649     //
9650     // struct S {
9651     //   static const int value = 17;
9652     // };
9653 
9654     // C++ [class.mem]p4:
9655     //   A member-declarator can contain a constant-initializer only
9656     //   if it declares a static member (9.4) of const integral or
9657     //   const enumeration type, see 9.4.2.
9658     //
9659     // C++11 [class.static.data]p3:
9660     //   If a non-volatile const static data member is of integral or
9661     //   enumeration type, its declaration in the class definition can
9662     //   specify a brace-or-equal-initializer in which every initalizer-clause
9663     //   that is an assignment-expression is a constant expression. A static
9664     //   data member of literal type can be declared in the class definition
9665     //   with the constexpr specifier; if so, its declaration shall specify a
9666     //   brace-or-equal-initializer in which every initializer-clause that is
9667     //   an assignment-expression is a constant expression.
9668 
9669     // Do nothing on dependent types.
9670     if (DclT->isDependentType()) {
9671 
9672     // Allow any 'static constexpr' members, whether or not they are of literal
9673     // type. We separately check that every constexpr variable is of literal
9674     // type.
9675     } else if (VDecl->isConstexpr()) {
9676 
9677     // Require constness.
9678     } else if (!DclT.isConstQualified()) {
9679       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
9680         << Init->getSourceRange();
9681       VDecl->setInvalidDecl();
9682 
9683     // We allow integer constant expressions in all cases.
9684     } else if (DclT->isIntegralOrEnumerationType()) {
9685       // Check whether the expression is a constant expression.
9686       SourceLocation Loc;
9687       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
9688         // In C++11, a non-constexpr const static data member with an
9689         // in-class initializer cannot be volatile.
9690         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
9691       else if (Init->isValueDependent())
9692         ; // Nothing to check.
9693       else if (Init->isIntegerConstantExpr(Context, &Loc))
9694         ; // Ok, it's an ICE!
9695       else if (Init->isEvaluatable(Context)) {
9696         // If we can constant fold the initializer through heroics, accept it,
9697         // but report this as a use of an extension for -pedantic.
9698         Diag(Loc, diag::ext_in_class_initializer_non_constant)
9699           << Init->getSourceRange();
9700       } else {
9701         // Otherwise, this is some crazy unknown case.  Report the issue at the
9702         // location provided by the isIntegerConstantExpr failed check.
9703         Diag(Loc, diag::err_in_class_initializer_non_constant)
9704           << Init->getSourceRange();
9705         VDecl->setInvalidDecl();
9706       }
9707 
9708     // We allow foldable floating-point constants as an extension.
9709     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
9710       // In C++98, this is a GNU extension. In C++11, it is not, but we support
9711       // it anyway and provide a fixit to add the 'constexpr'.
9712       if (getLangOpts().CPlusPlus11) {
9713         Diag(VDecl->getLocation(),
9714              diag::ext_in_class_initializer_float_type_cxx11)
9715             << DclT << Init->getSourceRange();
9716         Diag(VDecl->getLocStart(),
9717              diag::note_in_class_initializer_float_type_cxx11)
9718             << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
9719       } else {
9720         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
9721           << DclT << Init->getSourceRange();
9722 
9723         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
9724           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
9725             << Init->getSourceRange();
9726           VDecl->setInvalidDecl();
9727         }
9728       }
9729 
9730     // Suggest adding 'constexpr' in C++11 for literal types.
9731     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
9732       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
9733         << DclT << Init->getSourceRange()
9734         << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
9735       VDecl->setConstexpr(true);
9736 
9737     } else {
9738       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
9739         << DclT << Init->getSourceRange();
9740       VDecl->setInvalidDecl();
9741     }
9742   } else if (VDecl->isFileVarDecl()) {
9743     if (VDecl->getStorageClass() == SC_Extern &&
9744         (!getLangOpts().CPlusPlus ||
9745          !(Context.getBaseElementType(VDecl->getType()).isConstQualified() ||
9746            VDecl->isExternC())) &&
9747         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
9748       Diag(VDecl->getLocation(), diag::warn_extern_init);
9749 
9750     // C99 6.7.8p4. All file scoped initializers need to be constant.
9751     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
9752       CheckForConstantInitializer(Init, DclT);
9753   }
9754 
9755   // We will represent direct-initialization similarly to copy-initialization:
9756   //    int x(1);  -as-> int x = 1;
9757   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
9758   //
9759   // Clients that want to distinguish between the two forms, can check for
9760   // direct initializer using VarDecl::getInitStyle().
9761   // A major benefit is that clients that don't particularly care about which
9762   // exactly form was it (like the CodeGen) can handle both cases without
9763   // special case code.
9764 
9765   // C++ 8.5p11:
9766   // The form of initialization (using parentheses or '=') is generally
9767   // insignificant, but does matter when the entity being initialized has a
9768   // class type.
9769   if (CXXDirectInit) {
9770     assert(DirectInit && "Call-style initializer must be direct init.");
9771     VDecl->setInitStyle(VarDecl::CallInit);
9772   } else if (DirectInit) {
9773     // This must be list-initialization. No other way is direct-initialization.
9774     VDecl->setInitStyle(VarDecl::ListInit);
9775   }
9776 
9777   CheckCompleteVariableDeclaration(VDecl);
9778 }
9779 
9780 /// ActOnInitializerError - Given that there was an error parsing an
9781 /// initializer for the given declaration, try to return to some form
9782 /// of sanity.
9783 void Sema::ActOnInitializerError(Decl *D) {
9784   // Our main concern here is re-establishing invariants like "a
9785   // variable's type is either dependent or complete".
9786   if (!D || D->isInvalidDecl()) return;
9787 
9788   VarDecl *VD = dyn_cast<VarDecl>(D);
9789   if (!VD) return;
9790 
9791   // Auto types are meaningless if we can't make sense of the initializer.
9792   if (ParsingInitForAutoVars.count(D)) {
9793     D->setInvalidDecl();
9794     return;
9795   }
9796 
9797   QualType Ty = VD->getType();
9798   if (Ty->isDependentType()) return;
9799 
9800   // Require a complete type.
9801   if (RequireCompleteType(VD->getLocation(),
9802                           Context.getBaseElementType(Ty),
9803                           diag::err_typecheck_decl_incomplete_type)) {
9804     VD->setInvalidDecl();
9805     return;
9806   }
9807 
9808   // Require a non-abstract type.
9809   if (RequireNonAbstractType(VD->getLocation(), Ty,
9810                              diag::err_abstract_type_in_decl,
9811                              AbstractVariableType)) {
9812     VD->setInvalidDecl();
9813     return;
9814   }
9815 
9816   // Don't bother complaining about constructors or destructors,
9817   // though.
9818 }
9819 
9820 void Sema::ActOnUninitializedDecl(Decl *RealDecl,
9821                                   bool TypeMayContainAuto) {
9822   // If there is no declaration, there was an error parsing it. Just ignore it.
9823   if (!RealDecl)
9824     return;
9825 
9826   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
9827     QualType Type = Var->getType();
9828 
9829     // C++11 [dcl.spec.auto]p3
9830     if (TypeMayContainAuto && Type->getContainedAutoType()) {
9831       Diag(Var->getLocation(), diag::err_auto_var_requires_init)
9832         << Var->getDeclName() << Type;
9833       Var->setInvalidDecl();
9834       return;
9835     }
9836 
9837     // C++11 [class.static.data]p3: A static data member can be declared with
9838     // the constexpr specifier; if so, its declaration shall specify
9839     // a brace-or-equal-initializer.
9840     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
9841     // the definition of a variable [...] or the declaration of a static data
9842     // member.
9843     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition()) {
9844       if (Var->isStaticDataMember())
9845         Diag(Var->getLocation(),
9846              diag::err_constexpr_static_mem_var_requires_init)
9847           << Var->getDeclName();
9848       else
9849         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
9850       Var->setInvalidDecl();
9851       return;
9852     }
9853 
9854     // C++ Concepts TS [dcl.spec.concept]p1: [...]  A variable template
9855     // definition having the concept specifier is called a variable concept. A
9856     // concept definition refers to [...] a variable concept and its initializer.
9857     if (VarTemplateDecl *VTD = Var->getDescribedVarTemplate()) {
9858       if (VTD->isConcept()) {
9859         Diag(Var->getLocation(), diag::err_var_concept_not_initialized);
9860         Var->setInvalidDecl();
9861         return;
9862       }
9863     }
9864 
9865     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
9866     // be initialized.
9867     if (!Var->isInvalidDecl() &&
9868         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
9869         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
9870       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
9871       Var->setInvalidDecl();
9872       return;
9873     }
9874 
9875     switch (Var->isThisDeclarationADefinition()) {
9876     case VarDecl::Definition:
9877       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
9878         break;
9879 
9880       // We have an out-of-line definition of a static data member
9881       // that has an in-class initializer, so we type-check this like
9882       // a declaration.
9883       //
9884       // Fall through
9885 
9886     case VarDecl::DeclarationOnly:
9887       // It's only a declaration.
9888 
9889       // Block scope. C99 6.7p7: If an identifier for an object is
9890       // declared with no linkage (C99 6.2.2p6), the type for the
9891       // object shall be complete.
9892       if (!Type->isDependentType() && Var->isLocalVarDecl() &&
9893           !Var->hasLinkage() && !Var->isInvalidDecl() &&
9894           RequireCompleteType(Var->getLocation(), Type,
9895                               diag::err_typecheck_decl_incomplete_type))
9896         Var->setInvalidDecl();
9897 
9898       // Make sure that the type is not abstract.
9899       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
9900           RequireNonAbstractType(Var->getLocation(), Type,
9901                                  diag::err_abstract_type_in_decl,
9902                                  AbstractVariableType))
9903         Var->setInvalidDecl();
9904       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
9905           Var->getStorageClass() == SC_PrivateExtern) {
9906         Diag(Var->getLocation(), diag::warn_private_extern);
9907         Diag(Var->getLocation(), diag::note_private_extern);
9908       }
9909 
9910       return;
9911 
9912     case VarDecl::TentativeDefinition:
9913       // File scope. C99 6.9.2p2: A declaration of an identifier for an
9914       // object that has file scope without an initializer, and without a
9915       // storage-class specifier or with the storage-class specifier "static",
9916       // constitutes a tentative definition. Note: A tentative definition with
9917       // external linkage is valid (C99 6.2.2p5).
9918       if (!Var->isInvalidDecl()) {
9919         if (const IncompleteArrayType *ArrayT
9920                                     = Context.getAsIncompleteArrayType(Type)) {
9921           if (RequireCompleteType(Var->getLocation(),
9922                                   ArrayT->getElementType(),
9923                                   diag::err_illegal_decl_array_incomplete_type))
9924             Var->setInvalidDecl();
9925         } else if (Var->getStorageClass() == SC_Static) {
9926           // C99 6.9.2p3: If the declaration of an identifier for an object is
9927           // a tentative definition and has internal linkage (C99 6.2.2p3), the
9928           // declared type shall not be an incomplete type.
9929           // NOTE: code such as the following
9930           //     static struct s;
9931           //     struct s { int a; };
9932           // is accepted by gcc. Hence here we issue a warning instead of
9933           // an error and we do not invalidate the static declaration.
9934           // NOTE: to avoid multiple warnings, only check the first declaration.
9935           if (Var->isFirstDecl())
9936             RequireCompleteType(Var->getLocation(), Type,
9937                                 diag::ext_typecheck_decl_incomplete_type);
9938         }
9939       }
9940 
9941       // Record the tentative definition; we're done.
9942       if (!Var->isInvalidDecl())
9943         TentativeDefinitions.push_back(Var);
9944       return;
9945     }
9946 
9947     // Provide a specific diagnostic for uninitialized variable
9948     // definitions with incomplete array type.
9949     if (Type->isIncompleteArrayType()) {
9950       Diag(Var->getLocation(),
9951            diag::err_typecheck_incomplete_array_needs_initializer);
9952       Var->setInvalidDecl();
9953       return;
9954     }
9955 
9956     // Provide a specific diagnostic for uninitialized variable
9957     // definitions with reference type.
9958     if (Type->isReferenceType()) {
9959       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
9960         << Var->getDeclName()
9961         << SourceRange(Var->getLocation(), Var->getLocation());
9962       Var->setInvalidDecl();
9963       return;
9964     }
9965 
9966     // Do not attempt to type-check the default initializer for a
9967     // variable with dependent type.
9968     if (Type->isDependentType())
9969       return;
9970 
9971     if (Var->isInvalidDecl())
9972       return;
9973 
9974     if (!Var->hasAttr<AliasAttr>()) {
9975       if (RequireCompleteType(Var->getLocation(),
9976                               Context.getBaseElementType(Type),
9977                               diag::err_typecheck_decl_incomplete_type)) {
9978         Var->setInvalidDecl();
9979         return;
9980       }
9981     } else {
9982       return;
9983     }
9984 
9985     // The variable can not have an abstract class type.
9986     if (RequireNonAbstractType(Var->getLocation(), Type,
9987                                diag::err_abstract_type_in_decl,
9988                                AbstractVariableType)) {
9989       Var->setInvalidDecl();
9990       return;
9991     }
9992 
9993     // Check for jumps past the implicit initializer.  C++0x
9994     // clarifies that this applies to a "variable with automatic
9995     // storage duration", not a "local variable".
9996     // C++11 [stmt.dcl]p3
9997     //   A program that jumps from a point where a variable with automatic
9998     //   storage duration is not in scope to a point where it is in scope is
9999     //   ill-formed unless the variable has scalar type, class type with a
10000     //   trivial default constructor and a trivial destructor, a cv-qualified
10001     //   version of one of these types, or an array of one of the preceding
10002     //   types and is declared without an initializer.
10003     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
10004       if (const RecordType *Record
10005             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
10006         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
10007         // Mark the function for further checking even if the looser rules of
10008         // C++11 do not require such checks, so that we can diagnose
10009         // incompatibilities with C++98.
10010         if (!CXXRecord->isPOD())
10011           getCurFunction()->setHasBranchProtectedScope();
10012       }
10013     }
10014 
10015     // C++03 [dcl.init]p9:
10016     //   If no initializer is specified for an object, and the
10017     //   object is of (possibly cv-qualified) non-POD class type (or
10018     //   array thereof), the object shall be default-initialized; if
10019     //   the object is of const-qualified type, the underlying class
10020     //   type shall have a user-declared default
10021     //   constructor. Otherwise, if no initializer is specified for
10022     //   a non- static object, the object and its subobjects, if
10023     //   any, have an indeterminate initial value); if the object
10024     //   or any of its subobjects are of const-qualified type, the
10025     //   program is ill-formed.
10026     // C++0x [dcl.init]p11:
10027     //   If no initializer is specified for an object, the object is
10028     //   default-initialized; [...].
10029     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
10030     InitializationKind Kind
10031       = InitializationKind::CreateDefault(Var->getLocation());
10032 
10033     InitializationSequence InitSeq(*this, Entity, Kind, None);
10034     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
10035     if (Init.isInvalid())
10036       Var->setInvalidDecl();
10037     else if (Init.get()) {
10038       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
10039       // This is important for template substitution.
10040       Var->setInitStyle(VarDecl::CallInit);
10041     }
10042 
10043     CheckCompleteVariableDeclaration(Var);
10044   }
10045 }
10046 
10047 void Sema::ActOnCXXForRangeDecl(Decl *D) {
10048   // If there is no declaration, there was an error parsing it. Ignore it.
10049   if (!D)
10050     return;
10051 
10052   VarDecl *VD = dyn_cast<VarDecl>(D);
10053   if (!VD) {
10054     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
10055     D->setInvalidDecl();
10056     return;
10057   }
10058 
10059   VD->setCXXForRangeDecl(true);
10060 
10061   // for-range-declaration cannot be given a storage class specifier.
10062   int Error = -1;
10063   switch (VD->getStorageClass()) {
10064   case SC_None:
10065     break;
10066   case SC_Extern:
10067     Error = 0;
10068     break;
10069   case SC_Static:
10070     Error = 1;
10071     break;
10072   case SC_PrivateExtern:
10073     Error = 2;
10074     break;
10075   case SC_Auto:
10076     Error = 3;
10077     break;
10078   case SC_Register:
10079     Error = 4;
10080     break;
10081   }
10082   if (Error != -1) {
10083     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
10084       << VD->getDeclName() << Error;
10085     D->setInvalidDecl();
10086   }
10087 }
10088 
10089 StmtResult
10090 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
10091                                  IdentifierInfo *Ident,
10092                                  ParsedAttributes &Attrs,
10093                                  SourceLocation AttrEnd) {
10094   // C++1y [stmt.iter]p1:
10095   //   A range-based for statement of the form
10096   //      for ( for-range-identifier : for-range-initializer ) statement
10097   //   is equivalent to
10098   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
10099   DeclSpec DS(Attrs.getPool().getFactory());
10100 
10101   const char *PrevSpec;
10102   unsigned DiagID;
10103   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
10104                      getPrintingPolicy());
10105 
10106   Declarator D(DS, Declarator::ForContext);
10107   D.SetIdentifier(Ident, IdentLoc);
10108   D.takeAttributes(Attrs, AttrEnd);
10109 
10110   ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory());
10111   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
10112                 EmptyAttrs, IdentLoc);
10113   Decl *Var = ActOnDeclarator(S, D);
10114   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
10115   FinalizeDeclaration(Var);
10116   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
10117                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
10118 }
10119 
10120 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
10121   if (var->isInvalidDecl()) return;
10122 
10123   if (getLangOpts().OpenCL) {
10124     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
10125     // initialiser
10126     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
10127         !var->hasInit()) {
10128       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
10129           << 1 /*Init*/;
10130       var->setInvalidDecl();
10131       return;
10132     }
10133   }
10134 
10135   // In Objective-C, don't allow jumps past the implicit initialization of a
10136   // local retaining variable.
10137   if (getLangOpts().ObjC1 &&
10138       var->hasLocalStorage()) {
10139     switch (var->getType().getObjCLifetime()) {
10140     case Qualifiers::OCL_None:
10141     case Qualifiers::OCL_ExplicitNone:
10142     case Qualifiers::OCL_Autoreleasing:
10143       break;
10144 
10145     case Qualifiers::OCL_Weak:
10146     case Qualifiers::OCL_Strong:
10147       getCurFunction()->setHasBranchProtectedScope();
10148       break;
10149     }
10150   }
10151 
10152   // Warn about externally-visible variables being defined without a
10153   // prior declaration.  We only want to do this for global
10154   // declarations, but we also specifically need to avoid doing it for
10155   // class members because the linkage of an anonymous class can
10156   // change if it's later given a typedef name.
10157   if (var->isThisDeclarationADefinition() &&
10158       var->getDeclContext()->getRedeclContext()->isFileContext() &&
10159       var->isExternallyVisible() && var->hasLinkage() &&
10160       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
10161                                   var->getLocation())) {
10162     // Find a previous declaration that's not a definition.
10163     VarDecl *prev = var->getPreviousDecl();
10164     while (prev && prev->isThisDeclarationADefinition())
10165       prev = prev->getPreviousDecl();
10166 
10167     if (!prev)
10168       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
10169   }
10170 
10171   if (var->getTLSKind() == VarDecl::TLS_Static) {
10172     const Expr *Culprit;
10173     if (var->getType().isDestructedType()) {
10174       // GNU C++98 edits for __thread, [basic.start.term]p3:
10175       //   The type of an object with thread storage duration shall not
10176       //   have a non-trivial destructor.
10177       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
10178       if (getLangOpts().CPlusPlus11)
10179         Diag(var->getLocation(), diag::note_use_thread_local);
10180     } else if (getLangOpts().CPlusPlus && var->hasInit() &&
10181                !var->getInit()->isConstantInitializer(
10182                    Context, var->getType()->isReferenceType(), &Culprit)) {
10183       // GNU C++98 edits for __thread, [basic.start.init]p4:
10184       //   An object of thread storage duration shall not require dynamic
10185       //   initialization.
10186       // FIXME: Need strict checking here.
10187       Diag(Culprit->getExprLoc(), diag::err_thread_dynamic_init)
10188         << Culprit->getSourceRange();
10189       if (getLangOpts().CPlusPlus11)
10190         Diag(var->getLocation(), diag::note_use_thread_local);
10191     }
10192   }
10193 
10194   // Apply section attributes and pragmas to global variables.
10195   bool GlobalStorage = var->hasGlobalStorage();
10196   if (GlobalStorage && var->isThisDeclarationADefinition() &&
10197       ActiveTemplateInstantiations.empty()) {
10198     PragmaStack<StringLiteral *> *Stack = nullptr;
10199     int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read;
10200     if (var->getType().isConstQualified())
10201       Stack = &ConstSegStack;
10202     else if (!var->getInit()) {
10203       Stack = &BSSSegStack;
10204       SectionFlags |= ASTContext::PSF_Write;
10205     } else {
10206       Stack = &DataSegStack;
10207       SectionFlags |= ASTContext::PSF_Write;
10208     }
10209     if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) {
10210       var->addAttr(SectionAttr::CreateImplicit(
10211           Context, SectionAttr::Declspec_allocate,
10212           Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation));
10213     }
10214     if (const SectionAttr *SA = var->getAttr<SectionAttr>())
10215       if (UnifySection(SA->getName(), SectionFlags, var))
10216         var->dropAttr<SectionAttr>();
10217 
10218     // Apply the init_seg attribute if this has an initializer.  If the
10219     // initializer turns out to not be dynamic, we'll end up ignoring this
10220     // attribute.
10221     if (CurInitSeg && var->getInit())
10222       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
10223                                                CurInitSegLoc));
10224   }
10225 
10226   // All the following checks are C++ only.
10227   if (!getLangOpts().CPlusPlus) return;
10228 
10229   QualType type = var->getType();
10230   if (type->isDependentType()) return;
10231 
10232   // __block variables might require us to capture a copy-initializer.
10233   if (var->hasAttr<BlocksAttr>()) {
10234     // It's currently invalid to ever have a __block variable with an
10235     // array type; should we diagnose that here?
10236 
10237     // Regardless, we don't want to ignore array nesting when
10238     // constructing this copy.
10239     if (type->isStructureOrClassType()) {
10240       EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
10241       SourceLocation poi = var->getLocation();
10242       Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
10243       ExprResult result
10244         = PerformMoveOrCopyInitialization(
10245             InitializedEntity::InitializeBlock(poi, type, false),
10246             var, var->getType(), varRef, /*AllowNRVO=*/true);
10247       if (!result.isInvalid()) {
10248         result = MaybeCreateExprWithCleanups(result);
10249         Expr *init = result.getAs<Expr>();
10250         Context.setBlockVarCopyInits(var, init);
10251       }
10252     }
10253   }
10254 
10255   Expr *Init = var->getInit();
10256   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
10257   QualType baseType = Context.getBaseElementType(type);
10258 
10259   if (!var->getDeclContext()->isDependentContext() &&
10260       Init && !Init->isValueDependent()) {
10261     if (IsGlobal && !var->isConstexpr() &&
10262         !getDiagnostics().isIgnored(diag::warn_global_constructor,
10263                                     var->getLocation())) {
10264       // Warn about globals which don't have a constant initializer.  Don't
10265       // warn about globals with a non-trivial destructor because we already
10266       // warned about them.
10267       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
10268       if (!(RD && !RD->hasTrivialDestructor()) &&
10269           !Init->isConstantInitializer(Context, baseType->isReferenceType()))
10270         Diag(var->getLocation(), diag::warn_global_constructor)
10271           << Init->getSourceRange();
10272     }
10273 
10274     if (var->isConstexpr()) {
10275       SmallVector<PartialDiagnosticAt, 8> Notes;
10276       if (!var->evaluateValue(Notes) || !var->isInitICE()) {
10277         SourceLocation DiagLoc = var->getLocation();
10278         // If the note doesn't add any useful information other than a source
10279         // location, fold it into the primary diagnostic.
10280         if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
10281               diag::note_invalid_subexpr_in_const_expr) {
10282           DiagLoc = Notes[0].first;
10283           Notes.clear();
10284         }
10285         Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
10286           << var << Init->getSourceRange();
10287         for (unsigned I = 0, N = Notes.size(); I != N; ++I)
10288           Diag(Notes[I].first, Notes[I].second);
10289       }
10290     } else if (var->isUsableInConstantExpressions(Context)) {
10291       // Check whether the initializer of a const variable of integral or
10292       // enumeration type is an ICE now, since we can't tell whether it was
10293       // initialized by a constant expression if we check later.
10294       var->checkInitIsICE();
10295     }
10296   }
10297 
10298   // Require the destructor.
10299   if (const RecordType *recordType = baseType->getAs<RecordType>())
10300     FinalizeVarWithDestructor(var, recordType);
10301 }
10302 
10303 /// \brief Determines if a variable's alignment is dependent.
10304 static bool hasDependentAlignment(VarDecl *VD) {
10305   if (VD->getType()->isDependentType())
10306     return true;
10307   for (auto *I : VD->specific_attrs<AlignedAttr>())
10308     if (I->isAlignmentDependent())
10309       return true;
10310   return false;
10311 }
10312 
10313 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
10314 /// any semantic actions necessary after any initializer has been attached.
10315 void
10316 Sema::FinalizeDeclaration(Decl *ThisDecl) {
10317   // Note that we are no longer parsing the initializer for this declaration.
10318   ParsingInitForAutoVars.erase(ThisDecl);
10319 
10320   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
10321   if (!VD)
10322     return;
10323 
10324   checkAttributesAfterMerging(*this, *VD);
10325 
10326   // Perform TLS alignment check here after attributes attached to the variable
10327   // which may affect the alignment have been processed. Only perform the check
10328   // if the target has a maximum TLS alignment (zero means no constraints).
10329   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
10330     // Protect the check so that it's not performed on dependent types and
10331     // dependent alignments (we can't determine the alignment in that case).
10332     if (VD->getTLSKind() && !hasDependentAlignment(VD)) {
10333       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
10334       if (Context.getDeclAlign(VD) > MaxAlignChars) {
10335         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
10336           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
10337           << (unsigned)MaxAlignChars.getQuantity();
10338       }
10339     }
10340   }
10341 
10342   // Static locals inherit dll attributes from their function.
10343   if (VD->isStaticLocal()) {
10344     if (FunctionDecl *FD =
10345             dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) {
10346       if (Attr *A = getDLLAttr(FD)) {
10347         auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
10348         NewAttr->setInherited(true);
10349         VD->addAttr(NewAttr);
10350       }
10351     }
10352   }
10353 
10354   // Perform check for initializers of device-side global variables.
10355   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
10356   // 7.5). CUDA also allows constant initializers for __constant__ and
10357   // __device__ variables.
10358   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
10359     const Expr *Init = VD->getInit();
10360     const bool IsGlobal = VD->hasGlobalStorage() && !VD->isStaticLocal();
10361     if (Init && IsGlobal &&
10362         (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
10363          VD->hasAttr<CUDASharedAttr>())) {
10364       bool AllowedInit = false;
10365       if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
10366         AllowedInit =
10367             isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
10368       // We'll allow constant initializers even if it's a non-empty
10369       // constructor according to CUDA rules. This deviates from NVCC,
10370       // but allows us to handle things like constexpr constructors.
10371       if (!AllowedInit &&
10372           (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>()))
10373         AllowedInit = VD->getInit()->isConstantInitializer(
10374             Context, VD->getType()->isReferenceType());
10375 
10376       if (!AllowedInit) {
10377         Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
10378                                     ? diag::err_shared_var_init
10379                                     : diag::err_dynamic_var_init)
10380             << Init->getSourceRange();
10381         VD->setInvalidDecl();
10382       }
10383     }
10384   }
10385 
10386   // Grab the dllimport or dllexport attribute off of the VarDecl.
10387   const InheritableAttr *DLLAttr = getDLLAttr(VD);
10388 
10389   // Imported static data members cannot be defined out-of-line.
10390   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
10391     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
10392         VD->isThisDeclarationADefinition()) {
10393       // We allow definitions of dllimport class template static data members
10394       // with a warning.
10395       CXXRecordDecl *Context =
10396         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
10397       bool IsClassTemplateMember =
10398           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
10399           Context->getDescribedClassTemplate();
10400 
10401       Diag(VD->getLocation(),
10402            IsClassTemplateMember
10403                ? diag::warn_attribute_dllimport_static_field_definition
10404                : diag::err_attribute_dllimport_static_field_definition);
10405       Diag(IA->getLocation(), diag::note_attribute);
10406       if (!IsClassTemplateMember)
10407         VD->setInvalidDecl();
10408     }
10409   }
10410 
10411   // dllimport/dllexport variables cannot be thread local, their TLS index
10412   // isn't exported with the variable.
10413   if (DLLAttr && VD->getTLSKind()) {
10414     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
10415     if (F && getDLLAttr(F)) {
10416       assert(VD->isStaticLocal());
10417       // But if this is a static local in a dlimport/dllexport function, the
10418       // function will never be inlined, which means the var would never be
10419       // imported, so having it marked import/export is safe.
10420     } else {
10421       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
10422                                                                     << DLLAttr;
10423       VD->setInvalidDecl();
10424     }
10425   }
10426 
10427   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
10428     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
10429       Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
10430       VD->dropAttr<UsedAttr>();
10431     }
10432   }
10433 
10434   const DeclContext *DC = VD->getDeclContext();
10435   // If there's a #pragma GCC visibility in scope, and this isn't a class
10436   // member, set the visibility of this variable.
10437   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
10438     AddPushedVisibilityAttribute(VD);
10439 
10440   // FIXME: Warn on unused templates.
10441   if (VD->isFileVarDecl() && !VD->getDescribedVarTemplate() &&
10442       !isa<VarTemplatePartialSpecializationDecl>(VD))
10443     MarkUnusedFileScopedDecl(VD);
10444 
10445   // Now we have parsed the initializer and can update the table of magic
10446   // tag values.
10447   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
10448       !VD->getType()->isIntegralOrEnumerationType())
10449     return;
10450 
10451   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
10452     const Expr *MagicValueExpr = VD->getInit();
10453     if (!MagicValueExpr) {
10454       continue;
10455     }
10456     llvm::APSInt MagicValueInt;
10457     if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
10458       Diag(I->getRange().getBegin(),
10459            diag::err_type_tag_for_datatype_not_ice)
10460         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
10461       continue;
10462     }
10463     if (MagicValueInt.getActiveBits() > 64) {
10464       Diag(I->getRange().getBegin(),
10465            diag::err_type_tag_for_datatype_too_large)
10466         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
10467       continue;
10468     }
10469     uint64_t MagicValue = MagicValueInt.getZExtValue();
10470     RegisterTypeTagForDatatype(I->getArgumentKind(),
10471                                MagicValue,
10472                                I->getMatchingCType(),
10473                                I->getLayoutCompatible(),
10474                                I->getMustBeNull());
10475   }
10476 }
10477 
10478 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
10479                                                    ArrayRef<Decl *> Group) {
10480   SmallVector<Decl*, 8> Decls;
10481 
10482   if (DS.isTypeSpecOwned())
10483     Decls.push_back(DS.getRepAsDecl());
10484 
10485   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
10486   for (unsigned i = 0, e = Group.size(); i != e; ++i)
10487     if (Decl *D = Group[i]) {
10488       if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D))
10489         if (!FirstDeclaratorInGroup)
10490           FirstDeclaratorInGroup = DD;
10491       Decls.push_back(D);
10492     }
10493 
10494   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
10495     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
10496       handleTagNumbering(Tag, S);
10497       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
10498           getLangOpts().CPlusPlus)
10499         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
10500     }
10501   }
10502 
10503   return BuildDeclaratorGroup(Decls, DS.containsPlaceholderType());
10504 }
10505 
10506 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
10507 /// group, performing any necessary semantic checking.
10508 Sema::DeclGroupPtrTy
10509 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group,
10510                            bool TypeMayContainAuto) {
10511   // C++0x [dcl.spec.auto]p7:
10512   //   If the type deduced for the template parameter U is not the same in each
10513   //   deduction, the program is ill-formed.
10514   // FIXME: When initializer-list support is added, a distinction is needed
10515   // between the deduced type U and the deduced type which 'auto' stands for.
10516   //   auto a = 0, b = { 1, 2, 3 };
10517   // is legal because the deduced type U is 'int' in both cases.
10518   if (TypeMayContainAuto && Group.size() > 1) {
10519     QualType Deduced;
10520     CanQualType DeducedCanon;
10521     VarDecl *DeducedDecl = nullptr;
10522     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
10523       if (VarDecl *D = dyn_cast<VarDecl>(Group[i])) {
10524         AutoType *AT = D->getType()->getContainedAutoType();
10525         // Don't reissue diagnostics when instantiating a template.
10526         if (AT && D->isInvalidDecl())
10527           break;
10528         QualType U = AT ? AT->getDeducedType() : QualType();
10529         if (!U.isNull()) {
10530           CanQualType UCanon = Context.getCanonicalType(U);
10531           if (Deduced.isNull()) {
10532             Deduced = U;
10533             DeducedCanon = UCanon;
10534             DeducedDecl = D;
10535           } else if (DeducedCanon != UCanon) {
10536             Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
10537                  diag::err_auto_different_deductions)
10538               << (unsigned)AT->getKeyword()
10539               << Deduced << DeducedDecl->getDeclName()
10540               << U << D->getDeclName()
10541               << DeducedDecl->getInit()->getSourceRange()
10542               << D->getInit()->getSourceRange();
10543             D->setInvalidDecl();
10544             break;
10545           }
10546         }
10547       }
10548     }
10549   }
10550 
10551   ActOnDocumentableDecls(Group);
10552 
10553   return DeclGroupPtrTy::make(
10554       DeclGroupRef::Create(Context, Group.data(), Group.size()));
10555 }
10556 
10557 void Sema::ActOnDocumentableDecl(Decl *D) {
10558   ActOnDocumentableDecls(D);
10559 }
10560 
10561 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
10562   // Don't parse the comment if Doxygen diagnostics are ignored.
10563   if (Group.empty() || !Group[0])
10564     return;
10565 
10566   if (Diags.isIgnored(diag::warn_doc_param_not_found,
10567                       Group[0]->getLocation()) &&
10568       Diags.isIgnored(diag::warn_unknown_comment_command_name,
10569                       Group[0]->getLocation()))
10570     return;
10571 
10572   if (Group.size() >= 2) {
10573     // This is a decl group.  Normally it will contain only declarations
10574     // produced from declarator list.  But in case we have any definitions or
10575     // additional declaration references:
10576     //   'typedef struct S {} S;'
10577     //   'typedef struct S *S;'
10578     //   'struct S *pS;'
10579     // FinalizeDeclaratorGroup adds these as separate declarations.
10580     Decl *MaybeTagDecl = Group[0];
10581     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
10582       Group = Group.slice(1);
10583     }
10584   }
10585 
10586   // See if there are any new comments that are not attached to a decl.
10587   ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
10588   if (!Comments.empty() &&
10589       !Comments.back()->isAttached()) {
10590     // There is at least one comment that not attached to a decl.
10591     // Maybe it should be attached to one of these decls?
10592     //
10593     // Note that this way we pick up not only comments that precede the
10594     // declaration, but also comments that *follow* the declaration -- thanks to
10595     // the lookahead in the lexer: we've consumed the semicolon and looked
10596     // ahead through comments.
10597     for (unsigned i = 0, e = Group.size(); i != e; ++i)
10598       Context.getCommentForDecl(Group[i], &PP);
10599   }
10600 }
10601 
10602 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
10603 /// to introduce parameters into function prototype scope.
10604 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
10605   const DeclSpec &DS = D.getDeclSpec();
10606 
10607   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
10608 
10609   // C++03 [dcl.stc]p2 also permits 'auto'.
10610   StorageClass SC = SC_None;
10611   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
10612     SC = SC_Register;
10613   } else if (getLangOpts().CPlusPlus &&
10614              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
10615     SC = SC_Auto;
10616   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
10617     Diag(DS.getStorageClassSpecLoc(),
10618          diag::err_invalid_storage_class_in_func_decl);
10619     D.getMutableDeclSpec().ClearStorageClassSpecs();
10620   }
10621 
10622   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
10623     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
10624       << DeclSpec::getSpecifierName(TSCS);
10625   if (DS.isConstexprSpecified())
10626     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
10627       << 0;
10628   if (DS.isConceptSpecified())
10629     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
10630 
10631   DiagnoseFunctionSpecifiers(DS);
10632 
10633   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
10634   QualType parmDeclType = TInfo->getType();
10635 
10636   if (getLangOpts().CPlusPlus) {
10637     // Check that there are no default arguments inside the type of this
10638     // parameter.
10639     CheckExtraCXXDefaultArguments(D);
10640 
10641     // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
10642     if (D.getCXXScopeSpec().isSet()) {
10643       Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
10644         << D.getCXXScopeSpec().getRange();
10645       D.getCXXScopeSpec().clear();
10646     }
10647   }
10648 
10649   // Ensure we have a valid name
10650   IdentifierInfo *II = nullptr;
10651   if (D.hasName()) {
10652     II = D.getIdentifier();
10653     if (!II) {
10654       Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
10655         << GetNameForDeclarator(D).getName();
10656       D.setInvalidType(true);
10657     }
10658   }
10659 
10660   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
10661   if (II) {
10662     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
10663                    ForRedeclaration);
10664     LookupName(R, S);
10665     if (R.isSingleResult()) {
10666       NamedDecl *PrevDecl = R.getFoundDecl();
10667       if (PrevDecl->isTemplateParameter()) {
10668         // Maybe we will complain about the shadowed template parameter.
10669         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
10670         // Just pretend that we didn't see the previous declaration.
10671         PrevDecl = nullptr;
10672       } else if (S->isDeclScope(PrevDecl)) {
10673         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
10674         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
10675 
10676         // Recover by removing the name
10677         II = nullptr;
10678         D.SetIdentifier(nullptr, D.getIdentifierLoc());
10679         D.setInvalidType(true);
10680       }
10681     }
10682   }
10683 
10684   // Temporarily put parameter variables in the translation unit, not
10685   // the enclosing context.  This prevents them from accidentally
10686   // looking like class members in C++.
10687   ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
10688                                     D.getLocStart(),
10689                                     D.getIdentifierLoc(), II,
10690                                     parmDeclType, TInfo,
10691                                     SC);
10692 
10693   if (D.isInvalidType())
10694     New->setInvalidDecl();
10695 
10696   assert(S->isFunctionPrototypeScope());
10697   assert(S->getFunctionPrototypeDepth() >= 1);
10698   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
10699                     S->getNextFunctionPrototypeIndex());
10700 
10701   // Add the parameter declaration into this scope.
10702   S->AddDecl(New);
10703   if (II)
10704     IdResolver.AddDecl(New);
10705 
10706   ProcessDeclAttributes(S, New, D);
10707 
10708   if (D.getDeclSpec().isModulePrivateSpecified())
10709     Diag(New->getLocation(), diag::err_module_private_local)
10710       << 1 << New->getDeclName()
10711       << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
10712       << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
10713 
10714   if (New->hasAttr<BlocksAttr>()) {
10715     Diag(New->getLocation(), diag::err_block_on_nonlocal);
10716   }
10717   return New;
10718 }
10719 
10720 /// \brief Synthesizes a variable for a parameter arising from a
10721 /// typedef.
10722 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
10723                                               SourceLocation Loc,
10724                                               QualType T) {
10725   /* FIXME: setting StartLoc == Loc.
10726      Would it be worth to modify callers so as to provide proper source
10727      location for the unnamed parameters, embedding the parameter's type? */
10728   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
10729                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
10730                                            SC_None, nullptr);
10731   Param->setImplicit();
10732   return Param;
10733 }
10734 
10735 void Sema::DiagnoseUnusedParameters(ParmVarDecl * const *Param,
10736                                     ParmVarDecl * const *ParamEnd) {
10737   // Don't diagnose unused-parameter errors in template instantiations; we
10738   // will already have done so in the template itself.
10739   if (!ActiveTemplateInstantiations.empty())
10740     return;
10741 
10742   for (; Param != ParamEnd; ++Param) {
10743     if (!(*Param)->isReferenced() && (*Param)->getDeclName() &&
10744         !(*Param)->hasAttr<UnusedAttr>()) {
10745       Diag((*Param)->getLocation(), diag::warn_unused_parameter)
10746         << (*Param)->getDeclName();
10747     }
10748   }
10749 }
10750 
10751 void Sema::DiagnoseSizeOfParametersAndReturnValue(ParmVarDecl * const *Param,
10752                                                   ParmVarDecl * const *ParamEnd,
10753                                                   QualType ReturnTy,
10754                                                   NamedDecl *D) {
10755   if (LangOpts.NumLargeByValueCopy == 0) // No check.
10756     return;
10757 
10758   // Warn if the return value is pass-by-value and larger than the specified
10759   // threshold.
10760   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
10761     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
10762     if (Size > LangOpts.NumLargeByValueCopy)
10763       Diag(D->getLocation(), diag::warn_return_value_size)
10764           << D->getDeclName() << Size;
10765   }
10766 
10767   // Warn if any parameter is pass-by-value and larger than the specified
10768   // threshold.
10769   for (; Param != ParamEnd; ++Param) {
10770     QualType T = (*Param)->getType();
10771     if (T->isDependentType() || !T.isPODType(Context))
10772       continue;
10773     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
10774     if (Size > LangOpts.NumLargeByValueCopy)
10775       Diag((*Param)->getLocation(), diag::warn_parameter_size)
10776           << (*Param)->getDeclName() << Size;
10777   }
10778 }
10779 
10780 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
10781                                   SourceLocation NameLoc, IdentifierInfo *Name,
10782                                   QualType T, TypeSourceInfo *TSInfo,
10783                                   StorageClass SC) {
10784   // In ARC, infer a lifetime qualifier for appropriate parameter types.
10785   if (getLangOpts().ObjCAutoRefCount &&
10786       T.getObjCLifetime() == Qualifiers::OCL_None &&
10787       T->isObjCLifetimeType()) {
10788 
10789     Qualifiers::ObjCLifetime lifetime;
10790 
10791     // Special cases for arrays:
10792     //   - if it's const, use __unsafe_unretained
10793     //   - otherwise, it's an error
10794     if (T->isArrayType()) {
10795       if (!T.isConstQualified()) {
10796         DelayedDiagnostics.add(
10797             sema::DelayedDiagnostic::makeForbiddenType(
10798             NameLoc, diag::err_arc_array_param_no_ownership, T, false));
10799       }
10800       lifetime = Qualifiers::OCL_ExplicitNone;
10801     } else {
10802       lifetime = T->getObjCARCImplicitLifetime();
10803     }
10804     T = Context.getLifetimeQualifiedType(T, lifetime);
10805   }
10806 
10807   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
10808                                          Context.getAdjustedParameterType(T),
10809                                          TSInfo, SC, nullptr);
10810 
10811   // Parameters can not be abstract class types.
10812   // For record types, this is done by the AbstractClassUsageDiagnoser once
10813   // the class has been completely parsed.
10814   if (!CurContext->isRecord() &&
10815       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
10816                              AbstractParamType))
10817     New->setInvalidDecl();
10818 
10819   // Parameter declarators cannot be interface types. All ObjC objects are
10820   // passed by reference.
10821   if (T->isObjCObjectType()) {
10822     SourceLocation TypeEndLoc = TSInfo->getTypeLoc().getLocEnd();
10823     Diag(NameLoc,
10824          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
10825       << FixItHint::CreateInsertion(TypeEndLoc, "*");
10826     T = Context.getObjCObjectPointerType(T);
10827     New->setType(T);
10828   }
10829 
10830   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
10831   // duration shall not be qualified by an address-space qualifier."
10832   // Since all parameters have automatic store duration, they can not have
10833   // an address space.
10834   if (T.getAddressSpace() != 0) {
10835     // OpenCL allows function arguments declared to be an array of a type
10836     // to be qualified with an address space.
10837     if (!(getLangOpts().OpenCL && T->isArrayType())) {
10838       Diag(NameLoc, diag::err_arg_with_address_space);
10839       New->setInvalidDecl();
10840     }
10841   }
10842 
10843   // OpenCL v2.0 s6.9b - Pointer to image/sampler cannot be used.
10844   // OpenCL v2.0 s6.13.16.1 - Pointer to pipe cannot be used.
10845   if (getLangOpts().OpenCL && T->isPointerType()) {
10846     const QualType PTy = T->getPointeeType();
10847     if (PTy->isImageType() || PTy->isSamplerT() || PTy->isPipeType()) {
10848       Diag(NameLoc, diag::err_opencl_pointer_to_type) << PTy;
10849       New->setInvalidDecl();
10850     }
10851   }
10852 
10853   return New;
10854 }
10855 
10856 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
10857                                            SourceLocation LocAfterDecls) {
10858   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
10859 
10860   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
10861   // for a K&R function.
10862   if (!FTI.hasPrototype) {
10863     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
10864       --i;
10865       if (FTI.Params[i].Param == nullptr) {
10866         SmallString<256> Code;
10867         llvm::raw_svector_ostream(Code)
10868             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
10869         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
10870             << FTI.Params[i].Ident
10871             << FixItHint::CreateInsertion(LocAfterDecls, Code);
10872 
10873         // Implicitly declare the argument as type 'int' for lack of a better
10874         // type.
10875         AttributeFactory attrs;
10876         DeclSpec DS(attrs);
10877         const char* PrevSpec; // unused
10878         unsigned DiagID; // unused
10879         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
10880                            DiagID, Context.getPrintingPolicy());
10881         // Use the identifier location for the type source range.
10882         DS.SetRangeStart(FTI.Params[i].IdentLoc);
10883         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
10884         Declarator ParamD(DS, Declarator::KNRTypeListContext);
10885         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
10886         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
10887       }
10888     }
10889   }
10890 }
10891 
10892 Decl *
10893 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
10894                               MultiTemplateParamsArg TemplateParameterLists,
10895                               SkipBodyInfo *SkipBody) {
10896   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
10897   assert(D.isFunctionDeclarator() && "Not a function declarator!");
10898   Scope *ParentScope = FnBodyScope->getParent();
10899 
10900   D.setFunctionDefinitionKind(FDK_Definition);
10901   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
10902   return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
10903 }
10904 
10905 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) {
10906   Consumer.HandleInlineFunctionDefinition(D);
10907 }
10908 
10909 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
10910                              const FunctionDecl*& PossibleZeroParamPrototype) {
10911   // Don't warn about invalid declarations.
10912   if (FD->isInvalidDecl())
10913     return false;
10914 
10915   // Or declarations that aren't global.
10916   if (!FD->isGlobal())
10917     return false;
10918 
10919   // Don't warn about C++ member functions.
10920   if (isa<CXXMethodDecl>(FD))
10921     return false;
10922 
10923   // Don't warn about 'main'.
10924   if (FD->isMain())
10925     return false;
10926 
10927   // Don't warn about inline functions.
10928   if (FD->isInlined())
10929     return false;
10930 
10931   // Don't warn about function templates.
10932   if (FD->getDescribedFunctionTemplate())
10933     return false;
10934 
10935   // Don't warn about function template specializations.
10936   if (FD->isFunctionTemplateSpecialization())
10937     return false;
10938 
10939   // Don't warn for OpenCL kernels.
10940   if (FD->hasAttr<OpenCLKernelAttr>())
10941     return false;
10942 
10943   // Don't warn on explicitly deleted functions.
10944   if (FD->isDeleted())
10945     return false;
10946 
10947   bool MissingPrototype = true;
10948   for (const FunctionDecl *Prev = FD->getPreviousDecl();
10949        Prev; Prev = Prev->getPreviousDecl()) {
10950     // Ignore any declarations that occur in function or method
10951     // scope, because they aren't visible from the header.
10952     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
10953       continue;
10954 
10955     MissingPrototype = !Prev->getType()->isFunctionProtoType();
10956     if (FD->getNumParams() == 0)
10957       PossibleZeroParamPrototype = Prev;
10958     break;
10959   }
10960 
10961   return MissingPrototype;
10962 }
10963 
10964 void
10965 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
10966                                    const FunctionDecl *EffectiveDefinition,
10967                                    SkipBodyInfo *SkipBody) {
10968   // Don't complain if we're in GNU89 mode and the previous definition
10969   // was an extern inline function.
10970   const FunctionDecl *Definition = EffectiveDefinition;
10971   if (!Definition)
10972     if (!FD->isDefined(Definition))
10973       return;
10974 
10975   if (canRedefineFunction(Definition, getLangOpts()))
10976     return;
10977 
10978   // If we don't have a visible definition of the function, and it's inline or
10979   // a template, skip the new definition.
10980   if (SkipBody && !hasVisibleDefinition(Definition) &&
10981       (Definition->getFormalLinkage() == InternalLinkage ||
10982        Definition->isInlined() ||
10983        Definition->getDescribedFunctionTemplate() ||
10984        Definition->getNumTemplateParameterLists())) {
10985     SkipBody->ShouldSkip = true;
10986     if (auto *TD = Definition->getDescribedFunctionTemplate())
10987       makeMergedDefinitionVisible(TD, FD->getLocation());
10988     else
10989       makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition),
10990                                   FD->getLocation());
10991     return;
10992   }
10993 
10994   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
10995       Definition->getStorageClass() == SC_Extern)
10996     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
10997         << FD->getDeclName() << getLangOpts().CPlusPlus;
10998   else
10999     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
11000 
11001   Diag(Definition->getLocation(), diag::note_previous_definition);
11002   FD->setInvalidDecl();
11003 }
11004 
11005 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
11006                                    Sema &S) {
11007   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
11008 
11009   LambdaScopeInfo *LSI = S.PushLambdaScope();
11010   LSI->CallOperator = CallOperator;
11011   LSI->Lambda = LambdaClass;
11012   LSI->ReturnType = CallOperator->getReturnType();
11013   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
11014 
11015   if (LCD == LCD_None)
11016     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
11017   else if (LCD == LCD_ByCopy)
11018     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
11019   else if (LCD == LCD_ByRef)
11020     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
11021   DeclarationNameInfo DNI = CallOperator->getNameInfo();
11022 
11023   LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
11024   LSI->Mutable = !CallOperator->isConst();
11025 
11026   // Add the captures to the LSI so they can be noted as already
11027   // captured within tryCaptureVar.
11028   auto I = LambdaClass->field_begin();
11029   for (const auto &C : LambdaClass->captures()) {
11030     if (C.capturesVariable()) {
11031       VarDecl *VD = C.getCapturedVar();
11032       if (VD->isInitCapture())
11033         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
11034       QualType CaptureType = VD->getType();
11035       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
11036       LSI->addCapture(VD, /*IsBlock*/false, ByRef,
11037           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
11038           /*EllipsisLoc*/C.isPackExpansion()
11039                          ? C.getEllipsisLoc() : SourceLocation(),
11040           CaptureType, /*Expr*/ nullptr);
11041 
11042     } else if (C.capturesThis()) {
11043       LSI->addThisCapture(/*Nested*/ false, C.getLocation(),
11044                               S.getCurrentThisType(), /*Expr*/ nullptr,
11045                               C.getCaptureKind() == LCK_StarThis);
11046     } else {
11047       LSI->addVLATypeCapture(C.getLocation(), I->getType());
11048     }
11049     ++I;
11050   }
11051 }
11052 
11053 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
11054                                     SkipBodyInfo *SkipBody) {
11055   // Clear the last template instantiation error context.
11056   LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation();
11057 
11058   if (!D)
11059     return D;
11060   FunctionDecl *FD = nullptr;
11061 
11062   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
11063     FD = FunTmpl->getTemplatedDecl();
11064   else
11065     FD = cast<FunctionDecl>(D);
11066 
11067   // See if this is a redefinition.
11068   if (!FD->isLateTemplateParsed()) {
11069     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
11070 
11071     // If we're skipping the body, we're done. Don't enter the scope.
11072     if (SkipBody && SkipBody->ShouldSkip)
11073       return D;
11074   }
11075 
11076   // If we are instantiating a generic lambda call operator, push
11077   // a LambdaScopeInfo onto the function stack.  But use the information
11078   // that's already been calculated (ActOnLambdaExpr) to prime the current
11079   // LambdaScopeInfo.
11080   // When the template operator is being specialized, the LambdaScopeInfo,
11081   // has to be properly restored so that tryCaptureVariable doesn't try
11082   // and capture any new variables. In addition when calculating potential
11083   // captures during transformation of nested lambdas, it is necessary to
11084   // have the LSI properly restored.
11085   if (isGenericLambdaCallOperatorSpecialization(FD)) {
11086     assert(ActiveTemplateInstantiations.size() &&
11087       "There should be an active template instantiation on the stack "
11088       "when instantiating a generic lambda!");
11089     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
11090   }
11091   else
11092     // Enter a new function scope
11093     PushFunctionScope();
11094 
11095   // Builtin functions cannot be defined.
11096   if (unsigned BuiltinID = FD->getBuiltinID()) {
11097     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
11098         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
11099       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
11100       FD->setInvalidDecl();
11101     }
11102   }
11103 
11104   // The return type of a function definition must be complete
11105   // (C99 6.9.1p3, C++ [dcl.fct]p6).
11106   QualType ResultType = FD->getReturnType();
11107   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
11108       !FD->isInvalidDecl() &&
11109       RequireCompleteType(FD->getLocation(), ResultType,
11110                           diag::err_func_def_incomplete_result))
11111     FD->setInvalidDecl();
11112 
11113   if (FnBodyScope)
11114     PushDeclContext(FnBodyScope, FD);
11115 
11116   // Check the validity of our function parameters
11117   CheckParmsForFunctionDef(FD->param_begin(), FD->param_end(),
11118                            /*CheckParameterNames=*/true);
11119 
11120   // Introduce our parameters into the function scope
11121   for (auto Param : FD->params()) {
11122     Param->setOwningFunction(FD);
11123 
11124     // If this has an identifier, add it to the scope stack.
11125     if (Param->getIdentifier() && FnBodyScope) {
11126       CheckShadow(FnBodyScope, Param);
11127 
11128       PushOnScopeChains(Param, FnBodyScope);
11129     }
11130   }
11131 
11132   // If we had any tags defined in the function prototype,
11133   // introduce them into the function scope.
11134   if (FnBodyScope) {
11135     for (ArrayRef<NamedDecl *>::iterator
11136              I = FD->getDeclsInPrototypeScope().begin(),
11137              E = FD->getDeclsInPrototypeScope().end();
11138          I != E; ++I) {
11139       NamedDecl *D = *I;
11140 
11141       // Some of these decls (like enums) may have been pinned to the
11142       // translation unit for lack of a real context earlier. If so, remove
11143       // from the translation unit and reattach to the current context.
11144       if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) {
11145         // Is the decl actually in the context?
11146         if (Context.getTranslationUnitDecl()->containsDecl(D))
11147           Context.getTranslationUnitDecl()->removeDecl(D);
11148         // Either way, reassign the lexical decl context to our FunctionDecl.
11149         D->setLexicalDeclContext(CurContext);
11150       }
11151 
11152       // If the decl has a non-null name, make accessible in the current scope.
11153       if (!D->getName().empty())
11154         PushOnScopeChains(D, FnBodyScope, /*AddToContext=*/false);
11155 
11156       // Similarly, dive into enums and fish their constants out, making them
11157       // accessible in this scope.
11158       if (auto *ED = dyn_cast<EnumDecl>(D)) {
11159         for (auto *EI : ED->enumerators())
11160           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
11161       }
11162     }
11163   }
11164 
11165   // Ensure that the function's exception specification is instantiated.
11166   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
11167     ResolveExceptionSpec(D->getLocation(), FPT);
11168 
11169   // dllimport cannot be applied to non-inline function definitions.
11170   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
11171       !FD->isTemplateInstantiation()) {
11172     assert(!FD->hasAttr<DLLExportAttr>());
11173     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
11174     FD->setInvalidDecl();
11175     return D;
11176   }
11177   // We want to attach documentation to original Decl (which might be
11178   // a function template).
11179   ActOnDocumentableDecl(D);
11180   if (getCurLexicalContext()->isObjCContainer() &&
11181       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
11182       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
11183     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
11184 
11185   return D;
11186 }
11187 
11188 /// \brief Given the set of return statements within a function body,
11189 /// compute the variables that are subject to the named return value
11190 /// optimization.
11191 ///
11192 /// Each of the variables that is subject to the named return value
11193 /// optimization will be marked as NRVO variables in the AST, and any
11194 /// return statement that has a marked NRVO variable as its NRVO candidate can
11195 /// use the named return value optimization.
11196 ///
11197 /// This function applies a very simplistic algorithm for NRVO: if every return
11198 /// statement in the scope of a variable has the same NRVO candidate, that
11199 /// candidate is an NRVO variable.
11200 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
11201   ReturnStmt **Returns = Scope->Returns.data();
11202 
11203   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
11204     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
11205       if (!NRVOCandidate->isNRVOVariable())
11206         Returns[I]->setNRVOCandidate(nullptr);
11207     }
11208   }
11209 }
11210 
11211 bool Sema::canDelayFunctionBody(const Declarator &D) {
11212   // We can't delay parsing the body of a constexpr function template (yet).
11213   if (D.getDeclSpec().isConstexprSpecified())
11214     return false;
11215 
11216   // We can't delay parsing the body of a function template with a deduced
11217   // return type (yet).
11218   if (D.getDeclSpec().containsPlaceholderType()) {
11219     // If the placeholder introduces a non-deduced trailing return type,
11220     // we can still delay parsing it.
11221     if (D.getNumTypeObjects()) {
11222       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
11223       if (Outer.Kind == DeclaratorChunk::Function &&
11224           Outer.Fun.hasTrailingReturnType()) {
11225         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
11226         return Ty.isNull() || !Ty->isUndeducedType();
11227       }
11228     }
11229     return false;
11230   }
11231 
11232   return true;
11233 }
11234 
11235 bool Sema::canSkipFunctionBody(Decl *D) {
11236   // We cannot skip the body of a function (or function template) which is
11237   // constexpr, since we may need to evaluate its body in order to parse the
11238   // rest of the file.
11239   // We cannot skip the body of a function with an undeduced return type,
11240   // because any callers of that function need to know the type.
11241   if (const FunctionDecl *FD = D->getAsFunction())
11242     if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
11243       return false;
11244   return Consumer.shouldSkipFunctionBody(D);
11245 }
11246 
11247 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
11248   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl))
11249     FD->setHasSkippedBody();
11250   else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl))
11251     MD->setHasSkippedBody();
11252   return ActOnFinishFunctionBody(Decl, nullptr);
11253 }
11254 
11255 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
11256   return ActOnFinishFunctionBody(D, BodyArg, false);
11257 }
11258 
11259 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
11260                                     bool IsInstantiation) {
11261   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
11262 
11263   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
11264   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
11265 
11266   if (getLangOpts().Coroutines && !getCurFunction()->CoroutineStmts.empty())
11267     CheckCompletedCoroutineBody(FD, Body);
11268 
11269   if (FD) {
11270     FD->setBody(Body);
11271 
11272     if (getLangOpts().CPlusPlus14) {
11273       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
11274           FD->getReturnType()->isUndeducedType()) {
11275         // If the function has a deduced result type but contains no 'return'
11276         // statements, the result type as written must be exactly 'auto', and
11277         // the deduced result type is 'void'.
11278         if (!FD->getReturnType()->getAs<AutoType>()) {
11279           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
11280               << FD->getReturnType();
11281           FD->setInvalidDecl();
11282         } else {
11283           // Substitute 'void' for the 'auto' in the type.
11284           TypeLoc ResultType = getReturnTypeLoc(FD);
11285           Context.adjustDeducedFunctionResultType(
11286               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
11287         }
11288       }
11289     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
11290       // In C++11, we don't use 'auto' deduction rules for lambda call
11291       // operators because we don't support return type deduction.
11292       auto *LSI = getCurLambda();
11293       if (LSI->HasImplicitReturnType) {
11294         deduceClosureReturnType(*LSI);
11295 
11296         // C++11 [expr.prim.lambda]p4:
11297         //   [...] if there are no return statements in the compound-statement
11298         //   [the deduced type is] the type void
11299         QualType RetType =
11300             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
11301 
11302         // Update the return type to the deduced type.
11303         const FunctionProtoType *Proto =
11304             FD->getType()->getAs<FunctionProtoType>();
11305         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
11306                                             Proto->getExtProtoInfo()));
11307       }
11308     }
11309 
11310     // The only way to be included in UndefinedButUsed is if there is an
11311     // ODR use before the definition. Avoid the expensive map lookup if this
11312     // is the first declaration.
11313     if (!FD->isFirstDecl() && FD->getPreviousDecl()->isUsed()) {
11314       if (!FD->isExternallyVisible())
11315         UndefinedButUsed.erase(FD);
11316       else if (FD->isInlined() &&
11317                !LangOpts.GNUInline &&
11318                (!FD->getPreviousDecl()->hasAttr<GNUInlineAttr>()))
11319         UndefinedButUsed.erase(FD);
11320     }
11321 
11322     // If the function implicitly returns zero (like 'main') or is naked,
11323     // don't complain about missing return statements.
11324     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
11325       WP.disableCheckFallThrough();
11326 
11327     // MSVC permits the use of pure specifier (=0) on function definition,
11328     // defined at class scope, warn about this non-standard construct.
11329     if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
11330       Diag(FD->getLocation(), diag::ext_pure_function_definition);
11331 
11332     if (!FD->isInvalidDecl()) {
11333       // Don't diagnose unused parameters of defaulted or deleted functions.
11334       if (!FD->isDeleted() && !FD->isDefaulted())
11335         DiagnoseUnusedParameters(FD->param_begin(), FD->param_end());
11336       DiagnoseSizeOfParametersAndReturnValue(FD->param_begin(), FD->param_end(),
11337                                              FD->getReturnType(), FD);
11338 
11339       // If this is a structor, we need a vtable.
11340       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
11341         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
11342       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
11343         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
11344 
11345       // Try to apply the named return value optimization. We have to check
11346       // if we can do this here because lambdas keep return statements around
11347       // to deduce an implicit return type.
11348       if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
11349           !FD->isDependentContext())
11350         computeNRVO(Body, getCurFunction());
11351     }
11352 
11353     // GNU warning -Wmissing-prototypes:
11354     //   Warn if a global function is defined without a previous
11355     //   prototype declaration. This warning is issued even if the
11356     //   definition itself provides a prototype. The aim is to detect
11357     //   global functions that fail to be declared in header files.
11358     const FunctionDecl *PossibleZeroParamPrototype = nullptr;
11359     if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
11360       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
11361 
11362       if (PossibleZeroParamPrototype) {
11363         // We found a declaration that is not a prototype,
11364         // but that could be a zero-parameter prototype
11365         if (TypeSourceInfo *TI =
11366                 PossibleZeroParamPrototype->getTypeSourceInfo()) {
11367           TypeLoc TL = TI->getTypeLoc();
11368           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
11369             Diag(PossibleZeroParamPrototype->getLocation(),
11370                  diag::note_declaration_not_a_prototype)
11371                 << PossibleZeroParamPrototype
11372                 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
11373         }
11374       }
11375     }
11376 
11377     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
11378       const CXXMethodDecl *KeyFunction;
11379       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
11380           MD->isVirtual() &&
11381           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
11382           MD == KeyFunction->getCanonicalDecl()) {
11383         // Update the key-function state if necessary for this ABI.
11384         if (FD->isInlined() &&
11385             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
11386           Context.setNonKeyFunction(MD);
11387 
11388           // If the newly-chosen key function is already defined, then we
11389           // need to mark the vtable as used retroactively.
11390           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
11391           const FunctionDecl *Definition;
11392           if (KeyFunction && KeyFunction->isDefined(Definition))
11393             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
11394         } else {
11395           // We just defined they key function; mark the vtable as used.
11396           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
11397         }
11398       }
11399     }
11400 
11401     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
11402            "Function parsing confused");
11403   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
11404     assert(MD == getCurMethodDecl() && "Method parsing confused");
11405     MD->setBody(Body);
11406     if (!MD->isInvalidDecl()) {
11407       DiagnoseUnusedParameters(MD->param_begin(), MD->param_end());
11408       DiagnoseSizeOfParametersAndReturnValue(MD->param_begin(), MD->param_end(),
11409                                              MD->getReturnType(), MD);
11410 
11411       if (Body)
11412         computeNRVO(Body, getCurFunction());
11413     }
11414     if (getCurFunction()->ObjCShouldCallSuper) {
11415       Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
11416         << MD->getSelector().getAsString();
11417       getCurFunction()->ObjCShouldCallSuper = false;
11418     }
11419     if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
11420       const ObjCMethodDecl *InitMethod = nullptr;
11421       bool isDesignated =
11422           MD->isDesignatedInitializerForTheInterface(&InitMethod);
11423       assert(isDesignated && InitMethod);
11424       (void)isDesignated;
11425 
11426       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
11427         auto IFace = MD->getClassInterface();
11428         if (!IFace)
11429           return false;
11430         auto SuperD = IFace->getSuperClass();
11431         if (!SuperD)
11432           return false;
11433         return SuperD->getIdentifier() ==
11434             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
11435       };
11436       // Don't issue this warning for unavailable inits or direct subclasses
11437       // of NSObject.
11438       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
11439         Diag(MD->getLocation(),
11440              diag::warn_objc_designated_init_missing_super_call);
11441         Diag(InitMethod->getLocation(),
11442              diag::note_objc_designated_init_marked_here);
11443       }
11444       getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
11445     }
11446     if (getCurFunction()->ObjCWarnForNoInitDelegation) {
11447       // Don't issue this warning for unavaialable inits.
11448       if (!MD->isUnavailable())
11449         Diag(MD->getLocation(),
11450              diag::warn_objc_secondary_init_missing_init_call);
11451       getCurFunction()->ObjCWarnForNoInitDelegation = false;
11452     }
11453   } else {
11454     return nullptr;
11455   }
11456 
11457   assert(!getCurFunction()->ObjCShouldCallSuper &&
11458          "This should only be set for ObjC methods, which should have been "
11459          "handled in the block above.");
11460 
11461   // Verify and clean out per-function state.
11462   if (Body && (!FD || !FD->isDefaulted())) {
11463     // C++ constructors that have function-try-blocks can't have return
11464     // statements in the handlers of that block. (C++ [except.handle]p14)
11465     // Verify this.
11466     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
11467       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
11468 
11469     // Verify that gotos and switch cases don't jump into scopes illegally.
11470     if (getCurFunction()->NeedsScopeChecking() &&
11471         !PP.isCodeCompletionEnabled())
11472       DiagnoseInvalidJumps(Body);
11473 
11474     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
11475       if (!Destructor->getParent()->isDependentType())
11476         CheckDestructor(Destructor);
11477 
11478       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
11479                                              Destructor->getParent());
11480     }
11481 
11482     // If any errors have occurred, clear out any temporaries that may have
11483     // been leftover. This ensures that these temporaries won't be picked up for
11484     // deletion in some later function.
11485     if (getDiagnostics().hasErrorOccurred() ||
11486         getDiagnostics().getSuppressAllDiagnostics()) {
11487       DiscardCleanupsInEvaluationContext();
11488     }
11489     if (!getDiagnostics().hasUncompilableErrorOccurred() &&
11490         !isa<FunctionTemplateDecl>(dcl)) {
11491       // Since the body is valid, issue any analysis-based warnings that are
11492       // enabled.
11493       ActivePolicy = &WP;
11494     }
11495 
11496     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
11497         (!CheckConstexprFunctionDecl(FD) ||
11498          !CheckConstexprFunctionBody(FD, Body)))
11499       FD->setInvalidDecl();
11500 
11501     if (FD && FD->hasAttr<NakedAttr>()) {
11502       for (const Stmt *S : Body->children()) {
11503         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
11504           Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function);
11505           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
11506           FD->setInvalidDecl();
11507           break;
11508         }
11509       }
11510     }
11511 
11512     assert(ExprCleanupObjects.size() ==
11513                ExprEvalContexts.back().NumCleanupObjects &&
11514            "Leftover temporaries in function");
11515     assert(!ExprNeedsCleanups && "Unaccounted cleanups in function");
11516     assert(MaybeODRUseExprs.empty() &&
11517            "Leftover expressions for odr-use checking");
11518   }
11519 
11520   if (!IsInstantiation)
11521     PopDeclContext();
11522 
11523   PopFunctionScopeInfo(ActivePolicy, dcl);
11524   // If any errors have occurred, clear out any temporaries that may have
11525   // been leftover. This ensures that these temporaries won't be picked up for
11526   // deletion in some later function.
11527   if (getDiagnostics().hasErrorOccurred()) {
11528     DiscardCleanupsInEvaluationContext();
11529   }
11530 
11531   return dcl;
11532 }
11533 
11534 /// When we finish delayed parsing of an attribute, we must attach it to the
11535 /// relevant Decl.
11536 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
11537                                        ParsedAttributes &Attrs) {
11538   // Always attach attributes to the underlying decl.
11539   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
11540     D = TD->getTemplatedDecl();
11541   ProcessDeclAttributeList(S, D, Attrs.getList());
11542 
11543   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
11544     if (Method->isStatic())
11545       checkThisInStaticMemberFunctionAttributes(Method);
11546 }
11547 
11548 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
11549 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
11550 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
11551                                           IdentifierInfo &II, Scope *S) {
11552   // Before we produce a declaration for an implicitly defined
11553   // function, see whether there was a locally-scoped declaration of
11554   // this name as a function or variable. If so, use that
11555   // (non-visible) declaration, and complain about it.
11556   if (NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II)) {
11557     Diag(Loc, diag::warn_use_out_of_scope_declaration) << ExternCPrev;
11558     Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
11559     return ExternCPrev;
11560   }
11561 
11562   // Extension in C99.  Legal in C90, but warn about it.
11563   unsigned diag_id;
11564   if (II.getName().startswith("__builtin_"))
11565     diag_id = diag::warn_builtin_unknown;
11566   else if (getLangOpts().C99)
11567     diag_id = diag::ext_implicit_function_decl;
11568   else
11569     diag_id = diag::warn_implicit_function_decl;
11570   Diag(Loc, diag_id) << &II;
11571 
11572   // Because typo correction is expensive, only do it if the implicit
11573   // function declaration is going to be treated as an error.
11574   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
11575     TypoCorrection Corrected;
11576     if (S &&
11577         (Corrected = CorrectTypo(
11578              DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr,
11579              llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError)))
11580       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
11581                    /*ErrorRecovery*/false);
11582   }
11583 
11584   // Set a Declarator for the implicit definition: int foo();
11585   const char *Dummy;
11586   AttributeFactory attrFactory;
11587   DeclSpec DS(attrFactory);
11588   unsigned DiagID;
11589   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
11590                                   Context.getPrintingPolicy());
11591   (void)Error; // Silence warning.
11592   assert(!Error && "Error setting up implicit decl!");
11593   SourceLocation NoLoc;
11594   Declarator D(DS, Declarator::BlockContext);
11595   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
11596                                              /*IsAmbiguous=*/false,
11597                                              /*LParenLoc=*/NoLoc,
11598                                              /*Params=*/nullptr,
11599                                              /*NumParams=*/0,
11600                                              /*EllipsisLoc=*/NoLoc,
11601                                              /*RParenLoc=*/NoLoc,
11602                                              /*TypeQuals=*/0,
11603                                              /*RefQualifierIsLvalueRef=*/true,
11604                                              /*RefQualifierLoc=*/NoLoc,
11605                                              /*ConstQualifierLoc=*/NoLoc,
11606                                              /*VolatileQualifierLoc=*/NoLoc,
11607                                              /*RestrictQualifierLoc=*/NoLoc,
11608                                              /*MutableLoc=*/NoLoc,
11609                                              EST_None,
11610                                              /*ESpecRange=*/SourceRange(),
11611                                              /*Exceptions=*/nullptr,
11612                                              /*ExceptionRanges=*/nullptr,
11613                                              /*NumExceptions=*/0,
11614                                              /*NoexceptExpr=*/nullptr,
11615                                              /*ExceptionSpecTokens=*/nullptr,
11616                                              Loc, Loc, D),
11617                 DS.getAttributes(),
11618                 SourceLocation());
11619   D.SetIdentifier(&II, Loc);
11620 
11621   // Insert this function into translation-unit scope.
11622 
11623   DeclContext *PrevDC = CurContext;
11624   CurContext = Context.getTranslationUnitDecl();
11625 
11626   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(TUScope, D));
11627   FD->setImplicit();
11628 
11629   CurContext = PrevDC;
11630 
11631   AddKnownFunctionAttributes(FD);
11632 
11633   return FD;
11634 }
11635 
11636 /// \brief Adds any function attributes that we know a priori based on
11637 /// the declaration of this function.
11638 ///
11639 /// These attributes can apply both to implicitly-declared builtins
11640 /// (like __builtin___printf_chk) or to library-declared functions
11641 /// like NSLog or printf.
11642 ///
11643 /// We need to check for duplicate attributes both here and where user-written
11644 /// attributes are applied to declarations.
11645 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
11646   if (FD->isInvalidDecl())
11647     return;
11648 
11649   // If this is a built-in function, map its builtin attributes to
11650   // actual attributes.
11651   if (unsigned BuiltinID = FD->getBuiltinID()) {
11652     // Handle printf-formatting attributes.
11653     unsigned FormatIdx;
11654     bool HasVAListArg;
11655     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
11656       if (!FD->hasAttr<FormatAttr>()) {
11657         const char *fmt = "printf";
11658         unsigned int NumParams = FD->getNumParams();
11659         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
11660             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
11661           fmt = "NSString";
11662         FD->addAttr(FormatAttr::CreateImplicit(Context,
11663                                                &Context.Idents.get(fmt),
11664                                                FormatIdx+1,
11665                                                HasVAListArg ? 0 : FormatIdx+2,
11666                                                FD->getLocation()));
11667       }
11668     }
11669     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
11670                                              HasVAListArg)) {
11671      if (!FD->hasAttr<FormatAttr>())
11672        FD->addAttr(FormatAttr::CreateImplicit(Context,
11673                                               &Context.Idents.get("scanf"),
11674                                               FormatIdx+1,
11675                                               HasVAListArg ? 0 : FormatIdx+2,
11676                                               FD->getLocation()));
11677     }
11678 
11679     // Mark const if we don't care about errno and that is the only
11680     // thing preventing the function from being const. This allows
11681     // IRgen to use LLVM intrinsics for such functions.
11682     if (!getLangOpts().MathErrno &&
11683         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
11684       if (!FD->hasAttr<ConstAttr>())
11685         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
11686     }
11687 
11688     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
11689         !FD->hasAttr<ReturnsTwiceAttr>())
11690       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
11691                                          FD->getLocation()));
11692     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
11693       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
11694     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
11695       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
11696     if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
11697         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
11698       // Add the appropriate attribute, depending on the CUDA compilation mode
11699       // and which target the builtin belongs to. For example, during host
11700       // compilation, aux builtins are __device__, while the rest are __host__.
11701       if (getLangOpts().CUDAIsDevice !=
11702           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
11703         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
11704       else
11705         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
11706     }
11707   }
11708 
11709   // If C++ exceptions are enabled but we are told extern "C" functions cannot
11710   // throw, add an implicit nothrow attribute to any extern "C" function we come
11711   // across.
11712   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
11713       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
11714     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
11715     if (!FPT || FPT->getExceptionSpecType() == EST_None)
11716       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
11717   }
11718 
11719   IdentifierInfo *Name = FD->getIdentifier();
11720   if (!Name)
11721     return;
11722   if ((!getLangOpts().CPlusPlus &&
11723        FD->getDeclContext()->isTranslationUnit()) ||
11724       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
11725        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
11726        LinkageSpecDecl::lang_c)) {
11727     // Okay: this could be a libc/libm/Objective-C function we know
11728     // about.
11729   } else
11730     return;
11731 
11732   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
11733     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
11734     // target-specific builtins, perhaps?
11735     if (!FD->hasAttr<FormatAttr>())
11736       FD->addAttr(FormatAttr::CreateImplicit(Context,
11737                                              &Context.Idents.get("printf"), 2,
11738                                              Name->isStr("vasprintf") ? 0 : 3,
11739                                              FD->getLocation()));
11740   }
11741 
11742   if (Name->isStr("__CFStringMakeConstantString")) {
11743     // We already have a __builtin___CFStringMakeConstantString,
11744     // but builds that use -fno-constant-cfstrings don't go through that.
11745     if (!FD->hasAttr<FormatArgAttr>())
11746       FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1,
11747                                                 FD->getLocation()));
11748   }
11749 }
11750 
11751 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
11752                                     TypeSourceInfo *TInfo) {
11753   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
11754   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
11755 
11756   if (!TInfo) {
11757     assert(D.isInvalidType() && "no declarator info for valid type");
11758     TInfo = Context.getTrivialTypeSourceInfo(T);
11759   }
11760 
11761   // Scope manipulation handled by caller.
11762   TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
11763                                            D.getLocStart(),
11764                                            D.getIdentifierLoc(),
11765                                            D.getIdentifier(),
11766                                            TInfo);
11767 
11768   // Bail out immediately if we have an invalid declaration.
11769   if (D.isInvalidType()) {
11770     NewTD->setInvalidDecl();
11771     return NewTD;
11772   }
11773 
11774   if (D.getDeclSpec().isModulePrivateSpecified()) {
11775     if (CurContext->isFunctionOrMethod())
11776       Diag(NewTD->getLocation(), diag::err_module_private_local)
11777         << 2 << NewTD->getDeclName()
11778         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
11779         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
11780     else
11781       NewTD->setModulePrivate();
11782   }
11783 
11784   // C++ [dcl.typedef]p8:
11785   //   If the typedef declaration defines an unnamed class (or
11786   //   enum), the first typedef-name declared by the declaration
11787   //   to be that class type (or enum type) is used to denote the
11788   //   class type (or enum type) for linkage purposes only.
11789   // We need to check whether the type was declared in the declaration.
11790   switch (D.getDeclSpec().getTypeSpecType()) {
11791   case TST_enum:
11792   case TST_struct:
11793   case TST_interface:
11794   case TST_union:
11795   case TST_class: {
11796     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
11797     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
11798     break;
11799   }
11800 
11801   default:
11802     break;
11803   }
11804 
11805   return NewTD;
11806 }
11807 
11808 /// \brief Check that this is a valid underlying type for an enum declaration.
11809 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
11810   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
11811   QualType T = TI->getType();
11812 
11813   if (T->isDependentType())
11814     return false;
11815 
11816   if (const BuiltinType *BT = T->getAs<BuiltinType>())
11817     if (BT->isInteger())
11818       return false;
11819 
11820   Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
11821   return true;
11822 }
11823 
11824 /// Check whether this is a valid redeclaration of a previous enumeration.
11825 /// \return true if the redeclaration was invalid.
11826 bool Sema::CheckEnumRedeclaration(
11827     SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy,
11828     bool EnumUnderlyingIsImplicit, const EnumDecl *Prev) {
11829   bool IsFixed = !EnumUnderlyingTy.isNull();
11830 
11831   if (IsScoped != Prev->isScoped()) {
11832     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
11833       << Prev->isScoped();
11834     Diag(Prev->getLocation(), diag::note_previous_declaration);
11835     return true;
11836   }
11837 
11838   if (IsFixed && Prev->isFixed()) {
11839     if (!EnumUnderlyingTy->isDependentType() &&
11840         !Prev->getIntegerType()->isDependentType() &&
11841         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
11842                                         Prev->getIntegerType())) {
11843       // TODO: Highlight the underlying type of the redeclaration.
11844       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
11845         << EnumUnderlyingTy << Prev->getIntegerType();
11846       Diag(Prev->getLocation(), diag::note_previous_declaration)
11847           << Prev->getIntegerTypeRange();
11848       return true;
11849     }
11850   } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) {
11851     ;
11852   } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) {
11853     ;
11854   } else if (IsFixed != Prev->isFixed()) {
11855     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
11856       << Prev->isFixed();
11857     Diag(Prev->getLocation(), diag::note_previous_declaration);
11858     return true;
11859   }
11860 
11861   return false;
11862 }
11863 
11864 /// \brief Get diagnostic %select index for tag kind for
11865 /// redeclaration diagnostic message.
11866 /// WARNING: Indexes apply to particular diagnostics only!
11867 ///
11868 /// \returns diagnostic %select index.
11869 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
11870   switch (Tag) {
11871   case TTK_Struct: return 0;
11872   case TTK_Interface: return 1;
11873   case TTK_Class:  return 2;
11874   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
11875   }
11876 }
11877 
11878 /// \brief Determine if tag kind is a class-key compatible with
11879 /// class for redeclaration (class, struct, or __interface).
11880 ///
11881 /// \returns true iff the tag kind is compatible.
11882 static bool isClassCompatTagKind(TagTypeKind Tag)
11883 {
11884   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
11885 }
11886 
11887 /// \brief Determine whether a tag with a given kind is acceptable
11888 /// as a redeclaration of the given tag declaration.
11889 ///
11890 /// \returns true if the new tag kind is acceptable, false otherwise.
11891 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
11892                                         TagTypeKind NewTag, bool isDefinition,
11893                                         SourceLocation NewTagLoc,
11894                                         const IdentifierInfo *Name) {
11895   // C++ [dcl.type.elab]p3:
11896   //   The class-key or enum keyword present in the
11897   //   elaborated-type-specifier shall agree in kind with the
11898   //   declaration to which the name in the elaborated-type-specifier
11899   //   refers. This rule also applies to the form of
11900   //   elaborated-type-specifier that declares a class-name or
11901   //   friend class since it can be construed as referring to the
11902   //   definition of the class. Thus, in any
11903   //   elaborated-type-specifier, the enum keyword shall be used to
11904   //   refer to an enumeration (7.2), the union class-key shall be
11905   //   used to refer to a union (clause 9), and either the class or
11906   //   struct class-key shall be used to refer to a class (clause 9)
11907   //   declared using the class or struct class-key.
11908   TagTypeKind OldTag = Previous->getTagKind();
11909   if (!isDefinition || !isClassCompatTagKind(NewTag))
11910     if (OldTag == NewTag)
11911       return true;
11912 
11913   if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
11914     // Warn about the struct/class tag mismatch.
11915     bool isTemplate = false;
11916     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
11917       isTemplate = Record->getDescribedClassTemplate();
11918 
11919     if (!ActiveTemplateInstantiations.empty()) {
11920       // In a template instantiation, do not offer fix-its for tag mismatches
11921       // since they usually mess up the template instead of fixing the problem.
11922       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
11923         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11924         << getRedeclDiagFromTagKind(OldTag);
11925       return true;
11926     }
11927 
11928     if (isDefinition) {
11929       // On definitions, check previous tags and issue a fix-it for each
11930       // one that doesn't match the current tag.
11931       if (Previous->getDefinition()) {
11932         // Don't suggest fix-its for redefinitions.
11933         return true;
11934       }
11935 
11936       bool previousMismatch = false;
11937       for (auto I : Previous->redecls()) {
11938         if (I->getTagKind() != NewTag) {
11939           if (!previousMismatch) {
11940             previousMismatch = true;
11941             Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
11942               << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11943               << getRedeclDiagFromTagKind(I->getTagKind());
11944           }
11945           Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
11946             << getRedeclDiagFromTagKind(NewTag)
11947             << FixItHint::CreateReplacement(I->getInnerLocStart(),
11948                  TypeWithKeyword::getTagTypeKindName(NewTag));
11949         }
11950       }
11951       return true;
11952     }
11953 
11954     // Check for a previous definition.  If current tag and definition
11955     // are same type, do nothing.  If no definition, but disagree with
11956     // with previous tag type, give a warning, but no fix-it.
11957     const TagDecl *Redecl = Previous->getDefinition() ?
11958                             Previous->getDefinition() : Previous;
11959     if (Redecl->getTagKind() == NewTag) {
11960       return true;
11961     }
11962 
11963     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
11964       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11965       << getRedeclDiagFromTagKind(OldTag);
11966     Diag(Redecl->getLocation(), diag::note_previous_use);
11967 
11968     // If there is a previous definition, suggest a fix-it.
11969     if (Previous->getDefinition()) {
11970         Diag(NewTagLoc, diag::note_struct_class_suggestion)
11971           << getRedeclDiagFromTagKind(Redecl->getTagKind())
11972           << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
11973                TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
11974     }
11975 
11976     return true;
11977   }
11978   return false;
11979 }
11980 
11981 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
11982 /// from an outer enclosing namespace or file scope inside a friend declaration.
11983 /// This should provide the commented out code in the following snippet:
11984 ///   namespace N {
11985 ///     struct X;
11986 ///     namespace M {
11987 ///       struct Y { friend struct /*N::*/ X; };
11988 ///     }
11989 ///   }
11990 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
11991                                          SourceLocation NameLoc) {
11992   // While the decl is in a namespace, do repeated lookup of that name and see
11993   // if we get the same namespace back.  If we do not, continue until
11994   // translation unit scope, at which point we have a fully qualified NNS.
11995   SmallVector<IdentifierInfo *, 4> Namespaces;
11996   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
11997   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
11998     // This tag should be declared in a namespace, which can only be enclosed by
11999     // other namespaces.  Bail if there's an anonymous namespace in the chain.
12000     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
12001     if (!Namespace || Namespace->isAnonymousNamespace())
12002       return FixItHint();
12003     IdentifierInfo *II = Namespace->getIdentifier();
12004     Namespaces.push_back(II);
12005     NamedDecl *Lookup = SemaRef.LookupSingleName(
12006         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
12007     if (Lookup == Namespace)
12008       break;
12009   }
12010 
12011   // Once we have all the namespaces, reverse them to go outermost first, and
12012   // build an NNS.
12013   SmallString<64> Insertion;
12014   llvm::raw_svector_ostream OS(Insertion);
12015   if (DC->isTranslationUnit())
12016     OS << "::";
12017   std::reverse(Namespaces.begin(), Namespaces.end());
12018   for (auto *II : Namespaces)
12019     OS << II->getName() << "::";
12020   return FixItHint::CreateInsertion(NameLoc, Insertion);
12021 }
12022 
12023 /// \brief Determine whether a tag originally declared in context \p OldDC can
12024 /// be redeclared with an unqualfied name in \p NewDC (assuming name lookup
12025 /// found a declaration in \p OldDC as a previous decl, perhaps through a
12026 /// using-declaration).
12027 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
12028                                          DeclContext *NewDC) {
12029   OldDC = OldDC->getRedeclContext();
12030   NewDC = NewDC->getRedeclContext();
12031 
12032   if (OldDC->Equals(NewDC))
12033     return true;
12034 
12035   // In MSVC mode, we allow a redeclaration if the contexts are related (either
12036   // encloses the other).
12037   if (S.getLangOpts().MSVCCompat &&
12038       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
12039     return true;
12040 
12041   return false;
12042 }
12043 
12044 /// Find the DeclContext in which a tag is implicitly declared if we see an
12045 /// elaborated type specifier in the specified context, and lookup finds
12046 /// nothing.
12047 static DeclContext *getTagInjectionContext(DeclContext *DC) {
12048   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
12049     DC = DC->getParent();
12050   return DC;
12051 }
12052 
12053 /// Find the Scope in which a tag is implicitly declared if we see an
12054 /// elaborated type specifier in the specified context, and lookup finds
12055 /// nothing.
12056 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
12057   while (S->isClassScope() ||
12058          (LangOpts.CPlusPlus &&
12059           S->isFunctionPrototypeScope()) ||
12060          ((S->getFlags() & Scope::DeclScope) == 0) ||
12061          (S->getEntity() && S->getEntity()->isTransparentContext()))
12062     S = S->getParent();
12063   return S;
12064 }
12065 
12066 /// \brief This is invoked when we see 'struct foo' or 'struct {'.  In the
12067 /// former case, Name will be non-null.  In the later case, Name will be null.
12068 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
12069 /// reference/declaration/definition of a tag.
12070 ///
12071 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
12072 /// trailing-type-specifier) other than one in an alias-declaration.
12073 ///
12074 /// \param SkipBody If non-null, will be set to indicate if the caller should
12075 /// skip the definition of this tag and treat it as if it were a declaration.
12076 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
12077                      SourceLocation KWLoc, CXXScopeSpec &SS,
12078                      IdentifierInfo *Name, SourceLocation NameLoc,
12079                      AttributeList *Attr, AccessSpecifier AS,
12080                      SourceLocation ModulePrivateLoc,
12081                      MultiTemplateParamsArg TemplateParameterLists,
12082                      bool &OwnedDecl, bool &IsDependent,
12083                      SourceLocation ScopedEnumKWLoc,
12084                      bool ScopedEnumUsesClassTag,
12085                      TypeResult UnderlyingType,
12086                      bool IsTypeSpecifier, SkipBodyInfo *SkipBody) {
12087   // If this is not a definition, it must have a name.
12088   IdentifierInfo *OrigName = Name;
12089   assert((Name != nullptr || TUK == TUK_Definition) &&
12090          "Nameless record must be a definition!");
12091   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
12092 
12093   OwnedDecl = false;
12094   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
12095   bool ScopedEnum = ScopedEnumKWLoc.isValid();
12096 
12097   // FIXME: Check explicit specializations more carefully.
12098   bool isExplicitSpecialization = false;
12099   bool Invalid = false;
12100 
12101   // We only need to do this matching if we have template parameters
12102   // or a scope specifier, which also conveniently avoids this work
12103   // for non-C++ cases.
12104   if (TemplateParameterLists.size() > 0 ||
12105       (SS.isNotEmpty() && TUK != TUK_Reference)) {
12106     if (TemplateParameterList *TemplateParams =
12107             MatchTemplateParametersToScopeSpecifier(
12108                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
12109                 TUK == TUK_Friend, isExplicitSpecialization, Invalid)) {
12110       if (Kind == TTK_Enum) {
12111         Diag(KWLoc, diag::err_enum_template);
12112         return nullptr;
12113       }
12114 
12115       if (TemplateParams->size() > 0) {
12116         // This is a declaration or definition of a class template (which may
12117         // be a member of another template).
12118 
12119         if (Invalid)
12120           return nullptr;
12121 
12122         OwnedDecl = false;
12123         DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
12124                                                SS, Name, NameLoc, Attr,
12125                                                TemplateParams, AS,
12126                                                ModulePrivateLoc,
12127                                                /*FriendLoc*/SourceLocation(),
12128                                                TemplateParameterLists.size()-1,
12129                                                TemplateParameterLists.data(),
12130                                                SkipBody);
12131         return Result.get();
12132       } else {
12133         // The "template<>" header is extraneous.
12134         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
12135           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
12136         isExplicitSpecialization = true;
12137       }
12138     }
12139   }
12140 
12141   // Figure out the underlying type if this a enum declaration. We need to do
12142   // this early, because it's needed to detect if this is an incompatible
12143   // redeclaration.
12144   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
12145   bool EnumUnderlyingIsImplicit = false;
12146 
12147   if (Kind == TTK_Enum) {
12148     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum))
12149       // No underlying type explicitly specified, or we failed to parse the
12150       // type, default to int.
12151       EnumUnderlying = Context.IntTy.getTypePtr();
12152     else if (UnderlyingType.get()) {
12153       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
12154       // integral type; any cv-qualification is ignored.
12155       TypeSourceInfo *TI = nullptr;
12156       GetTypeFromParser(UnderlyingType.get(), &TI);
12157       EnumUnderlying = TI;
12158 
12159       if (CheckEnumUnderlyingType(TI))
12160         // Recover by falling back to int.
12161         EnumUnderlying = Context.IntTy.getTypePtr();
12162 
12163       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
12164                                           UPPC_FixedUnderlyingType))
12165         EnumUnderlying = Context.IntTy.getTypePtr();
12166 
12167     } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
12168       if (getLangOpts().MSVCCompat || TUK == TUK_Definition) {
12169         // Microsoft enums are always of int type.
12170         EnumUnderlying = Context.IntTy.getTypePtr();
12171         EnumUnderlyingIsImplicit = true;
12172       }
12173     }
12174   }
12175 
12176   DeclContext *SearchDC = CurContext;
12177   DeclContext *DC = CurContext;
12178   bool isStdBadAlloc = false;
12179 
12180   RedeclarationKind Redecl = ForRedeclaration;
12181   if (TUK == TUK_Friend || TUK == TUK_Reference)
12182     Redecl = NotForRedeclaration;
12183 
12184   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
12185   if (Name && SS.isNotEmpty()) {
12186     // We have a nested-name tag ('struct foo::bar').
12187 
12188     // Check for invalid 'foo::'.
12189     if (SS.isInvalid()) {
12190       Name = nullptr;
12191       goto CreateNewDecl;
12192     }
12193 
12194     // If this is a friend or a reference to a class in a dependent
12195     // context, don't try to make a decl for it.
12196     if (TUK == TUK_Friend || TUK == TUK_Reference) {
12197       DC = computeDeclContext(SS, false);
12198       if (!DC) {
12199         IsDependent = true;
12200         return nullptr;
12201       }
12202     } else {
12203       DC = computeDeclContext(SS, true);
12204       if (!DC) {
12205         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
12206           << SS.getRange();
12207         return nullptr;
12208       }
12209     }
12210 
12211     if (RequireCompleteDeclContext(SS, DC))
12212       return nullptr;
12213 
12214     SearchDC = DC;
12215     // Look-up name inside 'foo::'.
12216     LookupQualifiedName(Previous, DC);
12217 
12218     if (Previous.isAmbiguous())
12219       return nullptr;
12220 
12221     if (Previous.empty()) {
12222       // Name lookup did not find anything. However, if the
12223       // nested-name-specifier refers to the current instantiation,
12224       // and that current instantiation has any dependent base
12225       // classes, we might find something at instantiation time: treat
12226       // this as a dependent elaborated-type-specifier.
12227       // But this only makes any sense for reference-like lookups.
12228       if (Previous.wasNotFoundInCurrentInstantiation() &&
12229           (TUK == TUK_Reference || TUK == TUK_Friend)) {
12230         IsDependent = true;
12231         return nullptr;
12232       }
12233 
12234       // A tag 'foo::bar' must already exist.
12235       Diag(NameLoc, diag::err_not_tag_in_scope)
12236         << Kind << Name << DC << SS.getRange();
12237       Name = nullptr;
12238       Invalid = true;
12239       goto CreateNewDecl;
12240     }
12241   } else if (Name) {
12242     // C++14 [class.mem]p14:
12243     //   If T is the name of a class, then each of the following shall have a
12244     //   name different from T:
12245     //    -- every member of class T that is itself a type
12246     if (TUK != TUK_Reference && TUK != TUK_Friend &&
12247         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
12248       return nullptr;
12249 
12250     // If this is a named struct, check to see if there was a previous forward
12251     // declaration or definition.
12252     // FIXME: We're looking into outer scopes here, even when we
12253     // shouldn't be. Doing so can result in ambiguities that we
12254     // shouldn't be diagnosing.
12255     LookupName(Previous, S);
12256 
12257     // When declaring or defining a tag, ignore ambiguities introduced
12258     // by types using'ed into this scope.
12259     if (Previous.isAmbiguous() &&
12260         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
12261       LookupResult::Filter F = Previous.makeFilter();
12262       while (F.hasNext()) {
12263         NamedDecl *ND = F.next();
12264         if (ND->getDeclContext()->getRedeclContext() != SearchDC)
12265           F.erase();
12266       }
12267       F.done();
12268     }
12269 
12270     // C++11 [namespace.memdef]p3:
12271     //   If the name in a friend declaration is neither qualified nor
12272     //   a template-id and the declaration is a function or an
12273     //   elaborated-type-specifier, the lookup to determine whether
12274     //   the entity has been previously declared shall not consider
12275     //   any scopes outside the innermost enclosing namespace.
12276     //
12277     // MSVC doesn't implement the above rule for types, so a friend tag
12278     // declaration may be a redeclaration of a type declared in an enclosing
12279     // scope.  They do implement this rule for friend functions.
12280     //
12281     // Does it matter that this should be by scope instead of by
12282     // semantic context?
12283     if (!Previous.empty() && TUK == TUK_Friend) {
12284       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
12285       LookupResult::Filter F = Previous.makeFilter();
12286       bool FriendSawTagOutsideEnclosingNamespace = false;
12287       while (F.hasNext()) {
12288         NamedDecl *ND = F.next();
12289         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
12290         if (DC->isFileContext() &&
12291             !EnclosingNS->Encloses(ND->getDeclContext())) {
12292           if (getLangOpts().MSVCCompat)
12293             FriendSawTagOutsideEnclosingNamespace = true;
12294           else
12295             F.erase();
12296         }
12297       }
12298       F.done();
12299 
12300       // Diagnose this MSVC extension in the easy case where lookup would have
12301       // unambiguously found something outside the enclosing namespace.
12302       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
12303         NamedDecl *ND = Previous.getFoundDecl();
12304         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
12305             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
12306       }
12307     }
12308 
12309     // Note:  there used to be some attempt at recovery here.
12310     if (Previous.isAmbiguous())
12311       return nullptr;
12312 
12313     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
12314       // FIXME: This makes sure that we ignore the contexts associated
12315       // with C structs, unions, and enums when looking for a matching
12316       // tag declaration or definition. See the similar lookup tweak
12317       // in Sema::LookupName; is there a better way to deal with this?
12318       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
12319         SearchDC = SearchDC->getParent();
12320     }
12321   }
12322 
12323   if (Previous.isSingleResult() &&
12324       Previous.getFoundDecl()->isTemplateParameter()) {
12325     // Maybe we will complain about the shadowed template parameter.
12326     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
12327     // Just pretend that we didn't see the previous declaration.
12328     Previous.clear();
12329   }
12330 
12331   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
12332       DC->Equals(getStdNamespace()) && Name->isStr("bad_alloc")) {
12333     // This is a declaration of or a reference to "std::bad_alloc".
12334     isStdBadAlloc = true;
12335 
12336     if (Previous.empty() && StdBadAlloc) {
12337       // std::bad_alloc has been implicitly declared (but made invisible to
12338       // name lookup). Fill in this implicit declaration as the previous
12339       // declaration, so that the declarations get chained appropriately.
12340       Previous.addDecl(getStdBadAlloc());
12341     }
12342   }
12343 
12344   // If we didn't find a previous declaration, and this is a reference
12345   // (or friend reference), move to the correct scope.  In C++, we
12346   // also need to do a redeclaration lookup there, just in case
12347   // there's a shadow friend decl.
12348   if (Name && Previous.empty() &&
12349       (TUK == TUK_Reference || TUK == TUK_Friend)) {
12350     if (Invalid) goto CreateNewDecl;
12351     assert(SS.isEmpty());
12352 
12353     if (TUK == TUK_Reference) {
12354       // C++ [basic.scope.pdecl]p5:
12355       //   -- for an elaborated-type-specifier of the form
12356       //
12357       //          class-key identifier
12358       //
12359       //      if the elaborated-type-specifier is used in the
12360       //      decl-specifier-seq or parameter-declaration-clause of a
12361       //      function defined in namespace scope, the identifier is
12362       //      declared as a class-name in the namespace that contains
12363       //      the declaration; otherwise, except as a friend
12364       //      declaration, the identifier is declared in the smallest
12365       //      non-class, non-function-prototype scope that contains the
12366       //      declaration.
12367       //
12368       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
12369       // C structs and unions.
12370       //
12371       // It is an error in C++ to declare (rather than define) an enum
12372       // type, including via an elaborated type specifier.  We'll
12373       // diagnose that later; for now, declare the enum in the same
12374       // scope as we would have picked for any other tag type.
12375       //
12376       // GNU C also supports this behavior as part of its incomplete
12377       // enum types extension, while GNU C++ does not.
12378       //
12379       // Find the context where we'll be declaring the tag.
12380       // FIXME: We would like to maintain the current DeclContext as the
12381       // lexical context,
12382       SearchDC = getTagInjectionContext(SearchDC);
12383 
12384       // Find the scope where we'll be declaring the tag.
12385       S = getTagInjectionScope(S, getLangOpts());
12386     } else {
12387       assert(TUK == TUK_Friend);
12388       // C++ [namespace.memdef]p3:
12389       //   If a friend declaration in a non-local class first declares a
12390       //   class or function, the friend class or function is a member of
12391       //   the innermost enclosing namespace.
12392       SearchDC = SearchDC->getEnclosingNamespaceContext();
12393     }
12394 
12395     // In C++, we need to do a redeclaration lookup to properly
12396     // diagnose some problems.
12397     // FIXME: redeclaration lookup is also used (with and without C++) to find a
12398     // hidden declaration so that we don't get ambiguity errors when using a
12399     // type declared by an elaborated-type-specifier.  In C that is not correct
12400     // and we should instead merge compatible types found by lookup.
12401     if (getLangOpts().CPlusPlus) {
12402       Previous.setRedeclarationKind(ForRedeclaration);
12403       LookupQualifiedName(Previous, SearchDC);
12404     } else {
12405       Previous.setRedeclarationKind(ForRedeclaration);
12406       LookupName(Previous, S);
12407     }
12408   }
12409 
12410   // If we have a known previous declaration to use, then use it.
12411   if (Previous.empty() && SkipBody && SkipBody->Previous)
12412     Previous.addDecl(SkipBody->Previous);
12413 
12414   if (!Previous.empty()) {
12415     NamedDecl *PrevDecl = Previous.getFoundDecl();
12416     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
12417 
12418     // It's okay to have a tag decl in the same scope as a typedef
12419     // which hides a tag decl in the same scope.  Finding this
12420     // insanity with a redeclaration lookup can only actually happen
12421     // in C++.
12422     //
12423     // This is also okay for elaborated-type-specifiers, which is
12424     // technically forbidden by the current standard but which is
12425     // okay according to the likely resolution of an open issue;
12426     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
12427     if (getLangOpts().CPlusPlus) {
12428       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
12429         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
12430           TagDecl *Tag = TT->getDecl();
12431           if (Tag->getDeclName() == Name &&
12432               Tag->getDeclContext()->getRedeclContext()
12433                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
12434             PrevDecl = Tag;
12435             Previous.clear();
12436             Previous.addDecl(Tag);
12437             Previous.resolveKind();
12438           }
12439         }
12440       }
12441     }
12442 
12443     // If this is a redeclaration of a using shadow declaration, it must
12444     // declare a tag in the same context. In MSVC mode, we allow a
12445     // redefinition if either context is within the other.
12446     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
12447       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
12448       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
12449           isDeclInScope(Shadow, SearchDC, S, isExplicitSpecialization) &&
12450           !(OldTag && isAcceptableTagRedeclContext(
12451                           *this, OldTag->getDeclContext(), SearchDC))) {
12452         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
12453         Diag(Shadow->getTargetDecl()->getLocation(),
12454              diag::note_using_decl_target);
12455         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
12456             << 0;
12457         // Recover by ignoring the old declaration.
12458         Previous.clear();
12459         goto CreateNewDecl;
12460       }
12461     }
12462 
12463     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
12464       // If this is a use of a previous tag, or if the tag is already declared
12465       // in the same scope (so that the definition/declaration completes or
12466       // rementions the tag), reuse the decl.
12467       if (TUK == TUK_Reference || TUK == TUK_Friend ||
12468           isDeclInScope(DirectPrevDecl, SearchDC, S,
12469                         SS.isNotEmpty() || isExplicitSpecialization)) {
12470         // Make sure that this wasn't declared as an enum and now used as a
12471         // struct or something similar.
12472         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
12473                                           TUK == TUK_Definition, KWLoc,
12474                                           Name)) {
12475           bool SafeToContinue
12476             = (PrevTagDecl->getTagKind() != TTK_Enum &&
12477                Kind != TTK_Enum);
12478           if (SafeToContinue)
12479             Diag(KWLoc, diag::err_use_with_wrong_tag)
12480               << Name
12481               << FixItHint::CreateReplacement(SourceRange(KWLoc),
12482                                               PrevTagDecl->getKindName());
12483           else
12484             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
12485           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
12486 
12487           if (SafeToContinue)
12488             Kind = PrevTagDecl->getTagKind();
12489           else {
12490             // Recover by making this an anonymous redefinition.
12491             Name = nullptr;
12492             Previous.clear();
12493             Invalid = true;
12494           }
12495         }
12496 
12497         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
12498           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
12499 
12500           // If this is an elaborated-type-specifier for a scoped enumeration,
12501           // the 'class' keyword is not necessary and not permitted.
12502           if (TUK == TUK_Reference || TUK == TUK_Friend) {
12503             if (ScopedEnum)
12504               Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
12505                 << PrevEnum->isScoped()
12506                 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
12507             return PrevTagDecl;
12508           }
12509 
12510           QualType EnumUnderlyingTy;
12511           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
12512             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
12513           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
12514             EnumUnderlyingTy = QualType(T, 0);
12515 
12516           // All conflicts with previous declarations are recovered by
12517           // returning the previous declaration, unless this is a definition,
12518           // in which case we want the caller to bail out.
12519           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
12520                                      ScopedEnum, EnumUnderlyingTy,
12521                                      EnumUnderlyingIsImplicit, PrevEnum))
12522             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
12523         }
12524 
12525         // C++11 [class.mem]p1:
12526         //   A member shall not be declared twice in the member-specification,
12527         //   except that a nested class or member class template can be declared
12528         //   and then later defined.
12529         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
12530             S->isDeclScope(PrevDecl)) {
12531           Diag(NameLoc, diag::ext_member_redeclared);
12532           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
12533         }
12534 
12535         if (!Invalid) {
12536           // If this is a use, just return the declaration we found, unless
12537           // we have attributes.
12538           if (TUK == TUK_Reference || TUK == TUK_Friend) {
12539             if (Attr) {
12540               // FIXME: Diagnose these attributes. For now, we create a new
12541               // declaration to hold them.
12542             } else if (TUK == TUK_Reference &&
12543                        (PrevTagDecl->getFriendObjectKind() ==
12544                             Decl::FOK_Undeclared ||
12545                         PP.getModuleContainingLocation(
12546                             PrevDecl->getLocation()) !=
12547                             PP.getModuleContainingLocation(KWLoc)) &&
12548                        SS.isEmpty()) {
12549               // This declaration is a reference to an existing entity, but
12550               // has different visibility from that entity: it either makes
12551               // a friend visible or it makes a type visible in a new module.
12552               // In either case, create a new declaration. We only do this if
12553               // the declaration would have meant the same thing if no prior
12554               // declaration were found, that is, if it was found in the same
12555               // scope where we would have injected a declaration.
12556               if (!getTagInjectionContext(CurContext)->getRedeclContext()
12557                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
12558                 return PrevTagDecl;
12559               // This is in the injected scope, create a new declaration in
12560               // that scope.
12561               S = getTagInjectionScope(S, getLangOpts());
12562             } else {
12563               return PrevTagDecl;
12564             }
12565           }
12566 
12567           // Diagnose attempts to redefine a tag.
12568           if (TUK == TUK_Definition) {
12569             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
12570               // If we're defining a specialization and the previous definition
12571               // is from an implicit instantiation, don't emit an error
12572               // here; we'll catch this in the general case below.
12573               bool IsExplicitSpecializationAfterInstantiation = false;
12574               if (isExplicitSpecialization) {
12575                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
12576                   IsExplicitSpecializationAfterInstantiation =
12577                     RD->getTemplateSpecializationKind() !=
12578                     TSK_ExplicitSpecialization;
12579                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
12580                   IsExplicitSpecializationAfterInstantiation =
12581                     ED->getTemplateSpecializationKind() !=
12582                     TSK_ExplicitSpecialization;
12583               }
12584 
12585               NamedDecl *Hidden = nullptr;
12586               if (SkipBody && getLangOpts().CPlusPlus &&
12587                   !hasVisibleDefinition(Def, &Hidden)) {
12588                 // There is a definition of this tag, but it is not visible. We
12589                 // explicitly make use of C++'s one definition rule here, and
12590                 // assume that this definition is identical to the hidden one
12591                 // we already have. Make the existing definition visible and
12592                 // use it in place of this one.
12593                 SkipBody->ShouldSkip = true;
12594                 makeMergedDefinitionVisible(Hidden, KWLoc);
12595                 return Def;
12596               } else if (!IsExplicitSpecializationAfterInstantiation) {
12597                 // A redeclaration in function prototype scope in C isn't
12598                 // visible elsewhere, so merely issue a warning.
12599                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
12600                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
12601                 else
12602                   Diag(NameLoc, diag::err_redefinition) << Name;
12603                 Diag(Def->getLocation(), diag::note_previous_definition);
12604                 // If this is a redefinition, recover by making this
12605                 // struct be anonymous, which will make any later
12606                 // references get the previous definition.
12607                 Name = nullptr;
12608                 Previous.clear();
12609                 Invalid = true;
12610               }
12611             } else {
12612               // If the type is currently being defined, complain
12613               // about a nested redefinition.
12614               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
12615               if (TD->isBeingDefined()) {
12616                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
12617                 Diag(PrevTagDecl->getLocation(),
12618                      diag::note_previous_definition);
12619                 Name = nullptr;
12620                 Previous.clear();
12621                 Invalid = true;
12622               }
12623             }
12624 
12625             // Okay, this is definition of a previously declared or referenced
12626             // tag. We're going to create a new Decl for it.
12627           }
12628 
12629           // Okay, we're going to make a redeclaration.  If this is some kind
12630           // of reference, make sure we build the redeclaration in the same DC
12631           // as the original, and ignore the current access specifier.
12632           if (TUK == TUK_Friend || TUK == TUK_Reference) {
12633             SearchDC = PrevTagDecl->getDeclContext();
12634             AS = AS_none;
12635           }
12636         }
12637         // If we get here we have (another) forward declaration or we
12638         // have a definition.  Just create a new decl.
12639 
12640       } else {
12641         // If we get here, this is a definition of a new tag type in a nested
12642         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
12643         // new decl/type.  We set PrevDecl to NULL so that the entities
12644         // have distinct types.
12645         Previous.clear();
12646       }
12647       // If we get here, we're going to create a new Decl. If PrevDecl
12648       // is non-NULL, it's a definition of the tag declared by
12649       // PrevDecl. If it's NULL, we have a new definition.
12650 
12651     // Otherwise, PrevDecl is not a tag, but was found with tag
12652     // lookup.  This is only actually possible in C++, where a few
12653     // things like templates still live in the tag namespace.
12654     } else {
12655       // Use a better diagnostic if an elaborated-type-specifier
12656       // found the wrong kind of type on the first
12657       // (non-redeclaration) lookup.
12658       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
12659           !Previous.isForRedeclaration()) {
12660         unsigned Kind = 0;
12661         if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
12662         else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
12663         else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
12664         Diag(NameLoc, diag::err_tag_reference_non_tag) << Kind;
12665         Diag(PrevDecl->getLocation(), diag::note_declared_at);
12666         Invalid = true;
12667 
12668       // Otherwise, only diagnose if the declaration is in scope.
12669       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
12670                                 SS.isNotEmpty() || isExplicitSpecialization)) {
12671         // do nothing
12672 
12673       // Diagnose implicit declarations introduced by elaborated types.
12674       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
12675         unsigned Kind = 0;
12676         if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
12677         else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
12678         else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
12679         Diag(NameLoc, diag::err_tag_reference_conflict) << Kind;
12680         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
12681         Invalid = true;
12682 
12683       // Otherwise it's a declaration.  Call out a particularly common
12684       // case here.
12685       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
12686         unsigned Kind = 0;
12687         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
12688         Diag(NameLoc, diag::err_tag_definition_of_typedef)
12689           << Name << Kind << TND->getUnderlyingType();
12690         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
12691         Invalid = true;
12692 
12693       // Otherwise, diagnose.
12694       } else {
12695         // The tag name clashes with something else in the target scope,
12696         // issue an error and recover by making this tag be anonymous.
12697         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
12698         Diag(PrevDecl->getLocation(), diag::note_previous_definition);
12699         Name = nullptr;
12700         Invalid = true;
12701       }
12702 
12703       // The existing declaration isn't relevant to us; we're in a
12704       // new scope, so clear out the previous declaration.
12705       Previous.clear();
12706     }
12707   }
12708 
12709 CreateNewDecl:
12710 
12711   TagDecl *PrevDecl = nullptr;
12712   if (Previous.isSingleResult())
12713     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
12714 
12715   // If there is an identifier, use the location of the identifier as the
12716   // location of the decl, otherwise use the location of the struct/union
12717   // keyword.
12718   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
12719 
12720   // Otherwise, create a new declaration. If there is a previous
12721   // declaration of the same entity, the two will be linked via
12722   // PrevDecl.
12723   TagDecl *New;
12724 
12725   bool IsForwardReference = false;
12726   if (Kind == TTK_Enum) {
12727     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
12728     // enum X { A, B, C } D;    D should chain to X.
12729     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
12730                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
12731                            ScopedEnumUsesClassTag, !EnumUnderlying.isNull());
12732     // If this is an undefined enum, warn.
12733     if (TUK != TUK_Definition && !Invalid) {
12734       TagDecl *Def;
12735       if ((getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
12736           cast<EnumDecl>(New)->isFixed()) {
12737         // C++0x: 7.2p2: opaque-enum-declaration.
12738         // Conflicts are diagnosed above. Do nothing.
12739       }
12740       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
12741         Diag(Loc, diag::ext_forward_ref_enum_def)
12742           << New;
12743         Diag(Def->getLocation(), diag::note_previous_definition);
12744       } else {
12745         unsigned DiagID = diag::ext_forward_ref_enum;
12746         if (getLangOpts().MSVCCompat)
12747           DiagID = diag::ext_ms_forward_ref_enum;
12748         else if (getLangOpts().CPlusPlus)
12749           DiagID = diag::err_forward_ref_enum;
12750         Diag(Loc, DiagID);
12751 
12752         // If this is a forward-declared reference to an enumeration, make a
12753         // note of it; we won't actually be introducing the declaration into
12754         // the declaration context.
12755         if (TUK == TUK_Reference)
12756           IsForwardReference = true;
12757       }
12758     }
12759 
12760     if (EnumUnderlying) {
12761       EnumDecl *ED = cast<EnumDecl>(New);
12762       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
12763         ED->setIntegerTypeSourceInfo(TI);
12764       else
12765         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
12766       ED->setPromotionType(ED->getIntegerType());
12767     }
12768   } else {
12769     // struct/union/class
12770 
12771     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
12772     // struct X { int A; } D;    D should chain to X.
12773     if (getLangOpts().CPlusPlus) {
12774       // FIXME: Look for a way to use RecordDecl for simple structs.
12775       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
12776                                   cast_or_null<CXXRecordDecl>(PrevDecl));
12777 
12778       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
12779         StdBadAlloc = cast<CXXRecordDecl>(New);
12780     } else
12781       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
12782                                cast_or_null<RecordDecl>(PrevDecl));
12783   }
12784 
12785   // C++11 [dcl.type]p3:
12786   //   A type-specifier-seq shall not define a class or enumeration [...].
12787   if (getLangOpts().CPlusPlus && IsTypeSpecifier && TUK == TUK_Definition) {
12788     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
12789       << Context.getTagDeclType(New);
12790     Invalid = true;
12791   }
12792 
12793   // Maybe add qualifier info.
12794   if (SS.isNotEmpty()) {
12795     if (SS.isSet()) {
12796       // If this is either a declaration or a definition, check the
12797       // nested-name-specifier against the current context. We don't do this
12798       // for explicit specializations, because they have similar checking
12799       // (with more specific diagnostics) in the call to
12800       // CheckMemberSpecialization, below.
12801       if (!isExplicitSpecialization &&
12802           (TUK == TUK_Definition || TUK == TUK_Declaration) &&
12803           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc))
12804         Invalid = true;
12805 
12806       New->setQualifierInfo(SS.getWithLocInContext(Context));
12807       if (TemplateParameterLists.size() > 0) {
12808         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
12809       }
12810     }
12811     else
12812       Invalid = true;
12813   }
12814 
12815   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
12816     // Add alignment attributes if necessary; these attributes are checked when
12817     // the ASTContext lays out the structure.
12818     //
12819     // It is important for implementing the correct semantics that this
12820     // happen here (in act on tag decl). The #pragma pack stack is
12821     // maintained as a result of parser callbacks which can occur at
12822     // many points during the parsing of a struct declaration (because
12823     // the #pragma tokens are effectively skipped over during the
12824     // parsing of the struct).
12825     if (TUK == TUK_Definition) {
12826       AddAlignmentAttributesForRecord(RD);
12827       AddMsStructLayoutForRecord(RD);
12828     }
12829   }
12830 
12831   if (ModulePrivateLoc.isValid()) {
12832     if (isExplicitSpecialization)
12833       Diag(New->getLocation(), diag::err_module_private_specialization)
12834         << 2
12835         << FixItHint::CreateRemoval(ModulePrivateLoc);
12836     // __module_private__ does not apply to local classes. However, we only
12837     // diagnose this as an error when the declaration specifiers are
12838     // freestanding. Here, we just ignore the __module_private__.
12839     else if (!SearchDC->isFunctionOrMethod())
12840       New->setModulePrivate();
12841   }
12842 
12843   // If this is a specialization of a member class (of a class template),
12844   // check the specialization.
12845   if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous))
12846     Invalid = true;
12847 
12848   // If we're declaring or defining a tag in function prototype scope in C,
12849   // note that this type can only be used within the function and add it to
12850   // the list of decls to inject into the function definition scope.
12851   if ((Name || Kind == TTK_Enum) &&
12852       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
12853     if (getLangOpts().CPlusPlus) {
12854       // C++ [dcl.fct]p6:
12855       //   Types shall not be defined in return or parameter types.
12856       if (TUK == TUK_Definition && !IsTypeSpecifier) {
12857         Diag(Loc, diag::err_type_defined_in_param_type)
12858             << Name;
12859         Invalid = true;
12860       }
12861     } else if (!PrevDecl) {
12862       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
12863     }
12864     DeclsInPrototypeScope.push_back(New);
12865   }
12866 
12867   if (Invalid)
12868     New->setInvalidDecl();
12869 
12870   if (Attr)
12871     ProcessDeclAttributeList(S, New, Attr);
12872 
12873   // Set the lexical context. If the tag has a C++ scope specifier, the
12874   // lexical context will be different from the semantic context.
12875   New->setLexicalDeclContext(CurContext);
12876 
12877   // Mark this as a friend decl if applicable.
12878   // In Microsoft mode, a friend declaration also acts as a forward
12879   // declaration so we always pass true to setObjectOfFriendDecl to make
12880   // the tag name visible.
12881   if (TUK == TUK_Friend)
12882     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
12883 
12884   // Set the access specifier.
12885   if (!Invalid && SearchDC->isRecord())
12886     SetMemberAccessSpecifier(New, PrevDecl, AS);
12887 
12888   if (TUK == TUK_Definition)
12889     New->startDefinition();
12890 
12891   // If this has an identifier, add it to the scope stack.
12892   if (TUK == TUK_Friend) {
12893     // We might be replacing an existing declaration in the lookup tables;
12894     // if so, borrow its access specifier.
12895     if (PrevDecl)
12896       New->setAccess(PrevDecl->getAccess());
12897 
12898     DeclContext *DC = New->getDeclContext()->getRedeclContext();
12899     DC->makeDeclVisibleInContext(New);
12900     if (Name) // can be null along some error paths
12901       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
12902         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
12903   } else if (Name) {
12904     S = getNonFieldDeclScope(S);
12905     PushOnScopeChains(New, S, !IsForwardReference);
12906     if (IsForwardReference)
12907       SearchDC->makeDeclVisibleInContext(New);
12908   } else {
12909     CurContext->addDecl(New);
12910   }
12911 
12912   // If this is the C FILE type, notify the AST context.
12913   if (IdentifierInfo *II = New->getIdentifier())
12914     if (!New->isInvalidDecl() &&
12915         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
12916         II->isStr("FILE"))
12917       Context.setFILEDecl(New);
12918 
12919   if (PrevDecl)
12920     mergeDeclAttributes(New, PrevDecl);
12921 
12922   // If there's a #pragma GCC visibility in scope, set the visibility of this
12923   // record.
12924   AddPushedVisibilityAttribute(New);
12925 
12926   OwnedDecl = true;
12927   // In C++, don't return an invalid declaration. We can't recover well from
12928   // the cases where we make the type anonymous.
12929   return (Invalid && getLangOpts().CPlusPlus) ? nullptr : New;
12930 }
12931 
12932 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
12933   AdjustDeclIfTemplate(TagD);
12934   TagDecl *Tag = cast<TagDecl>(TagD);
12935 
12936   // Enter the tag context.
12937   PushDeclContext(S, Tag);
12938 
12939   ActOnDocumentableDecl(TagD);
12940 
12941   // If there's a #pragma GCC visibility in scope, set the visibility of this
12942   // record.
12943   AddPushedVisibilityAttribute(Tag);
12944 }
12945 
12946 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
12947   assert(isa<ObjCContainerDecl>(IDecl) &&
12948          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
12949   DeclContext *OCD = cast<DeclContext>(IDecl);
12950   assert(getContainingDC(OCD) == CurContext &&
12951       "The next DeclContext should be lexically contained in the current one.");
12952   CurContext = OCD;
12953   return IDecl;
12954 }
12955 
12956 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
12957                                            SourceLocation FinalLoc,
12958                                            bool IsFinalSpelledSealed,
12959                                            SourceLocation LBraceLoc) {
12960   AdjustDeclIfTemplate(TagD);
12961   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
12962 
12963   FieldCollector->StartClass();
12964 
12965   if (!Record->getIdentifier())
12966     return;
12967 
12968   if (FinalLoc.isValid())
12969     Record->addAttr(new (Context)
12970                     FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
12971 
12972   // C++ [class]p2:
12973   //   [...] The class-name is also inserted into the scope of the
12974   //   class itself; this is known as the injected-class-name. For
12975   //   purposes of access checking, the injected-class-name is treated
12976   //   as if it were a public member name.
12977   CXXRecordDecl *InjectedClassName
12978     = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
12979                             Record->getLocStart(), Record->getLocation(),
12980                             Record->getIdentifier(),
12981                             /*PrevDecl=*/nullptr,
12982                             /*DelayTypeCreation=*/true);
12983   Context.getTypeDeclType(InjectedClassName, Record);
12984   InjectedClassName->setImplicit();
12985   InjectedClassName->setAccess(AS_public);
12986   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
12987       InjectedClassName->setDescribedClassTemplate(Template);
12988   PushOnScopeChains(InjectedClassName, S);
12989   assert(InjectedClassName->isInjectedClassName() &&
12990          "Broken injected-class-name");
12991 }
12992 
12993 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
12994                                     SourceLocation RBraceLoc) {
12995   AdjustDeclIfTemplate(TagD);
12996   TagDecl *Tag = cast<TagDecl>(TagD);
12997   Tag->setRBraceLoc(RBraceLoc);
12998 
12999   // Make sure we "complete" the definition even it is invalid.
13000   if (Tag->isBeingDefined()) {
13001     assert(Tag->isInvalidDecl() && "We should already have completed it");
13002     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
13003       RD->completeDefinition();
13004   }
13005 
13006   if (isa<CXXRecordDecl>(Tag))
13007     FieldCollector->FinishClass();
13008 
13009   // Exit this scope of this tag's definition.
13010   PopDeclContext();
13011 
13012   if (getCurLexicalContext()->isObjCContainer() &&
13013       Tag->getDeclContext()->isFileContext())
13014     Tag->setTopLevelDeclInObjCContainer();
13015 
13016   // Notify the consumer that we've defined a tag.
13017   if (!Tag->isInvalidDecl())
13018     Consumer.HandleTagDeclDefinition(Tag);
13019 }
13020 
13021 void Sema::ActOnObjCContainerFinishDefinition() {
13022   // Exit this scope of this interface definition.
13023   PopDeclContext();
13024 }
13025 
13026 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
13027   assert(DC == CurContext && "Mismatch of container contexts");
13028   OriginalLexicalContext = DC;
13029   ActOnObjCContainerFinishDefinition();
13030 }
13031 
13032 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
13033   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
13034   OriginalLexicalContext = nullptr;
13035 }
13036 
13037 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
13038   AdjustDeclIfTemplate(TagD);
13039   TagDecl *Tag = cast<TagDecl>(TagD);
13040   Tag->setInvalidDecl();
13041 
13042   // Make sure we "complete" the definition even it is invalid.
13043   if (Tag->isBeingDefined()) {
13044     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
13045       RD->completeDefinition();
13046   }
13047 
13048   // We're undoing ActOnTagStartDefinition here, not
13049   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
13050   // the FieldCollector.
13051 
13052   PopDeclContext();
13053 }
13054 
13055 // Note that FieldName may be null for anonymous bitfields.
13056 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
13057                                 IdentifierInfo *FieldName,
13058                                 QualType FieldTy, bool IsMsStruct,
13059                                 Expr *BitWidth, bool *ZeroWidth) {
13060   // Default to true; that shouldn't confuse checks for emptiness
13061   if (ZeroWidth)
13062     *ZeroWidth = true;
13063 
13064   // C99 6.7.2.1p4 - verify the field type.
13065   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
13066   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
13067     // Handle incomplete types with specific error.
13068     if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
13069       return ExprError();
13070     if (FieldName)
13071       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
13072         << FieldName << FieldTy << BitWidth->getSourceRange();
13073     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
13074       << FieldTy << BitWidth->getSourceRange();
13075   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
13076                                              UPPC_BitFieldWidth))
13077     return ExprError();
13078 
13079   // If the bit-width is type- or value-dependent, don't try to check
13080   // it now.
13081   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
13082     return BitWidth;
13083 
13084   llvm::APSInt Value;
13085   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
13086   if (ICE.isInvalid())
13087     return ICE;
13088   BitWidth = ICE.get();
13089 
13090   if (Value != 0 && ZeroWidth)
13091     *ZeroWidth = false;
13092 
13093   // Zero-width bitfield is ok for anonymous field.
13094   if (Value == 0 && FieldName)
13095     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
13096 
13097   if (Value.isSigned() && Value.isNegative()) {
13098     if (FieldName)
13099       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
13100                << FieldName << Value.toString(10);
13101     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
13102       << Value.toString(10);
13103   }
13104 
13105   if (!FieldTy->isDependentType()) {
13106     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
13107     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
13108     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
13109 
13110     // Over-wide bitfields are an error in C or when using the MSVC bitfield
13111     // ABI.
13112     bool CStdConstraintViolation =
13113         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
13114     bool MSBitfieldViolation =
13115         Value.ugt(TypeStorageSize) &&
13116         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
13117     if (CStdConstraintViolation || MSBitfieldViolation) {
13118       unsigned DiagWidth =
13119           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
13120       if (FieldName)
13121         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
13122                << FieldName << (unsigned)Value.getZExtValue()
13123                << !CStdConstraintViolation << DiagWidth;
13124 
13125       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
13126              << (unsigned)Value.getZExtValue() << !CStdConstraintViolation
13127              << DiagWidth;
13128     }
13129 
13130     // Warn on types where the user might conceivably expect to get all
13131     // specified bits as value bits: that's all integral types other than
13132     // 'bool'.
13133     if (BitfieldIsOverwide && !FieldTy->isBooleanType()) {
13134       if (FieldName)
13135         Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
13136             << FieldName << (unsigned)Value.getZExtValue()
13137             << (unsigned)TypeWidth;
13138       else
13139         Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)
13140             << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;
13141     }
13142   }
13143 
13144   return BitWidth;
13145 }
13146 
13147 /// ActOnField - Each field of a C struct/union is passed into this in order
13148 /// to create a FieldDecl object for it.
13149 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
13150                        Declarator &D, Expr *BitfieldWidth) {
13151   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
13152                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
13153                                /*InitStyle=*/ICIS_NoInit, AS_public);
13154   return Res;
13155 }
13156 
13157 /// HandleField - Analyze a field of a C struct or a C++ data member.
13158 ///
13159 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
13160                              SourceLocation DeclStart,
13161                              Declarator &D, Expr *BitWidth,
13162                              InClassInitStyle InitStyle,
13163                              AccessSpecifier AS) {
13164   IdentifierInfo *II = D.getIdentifier();
13165   SourceLocation Loc = DeclStart;
13166   if (II) Loc = D.getIdentifierLoc();
13167 
13168   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13169   QualType T = TInfo->getType();
13170   if (getLangOpts().CPlusPlus) {
13171     CheckExtraCXXDefaultArguments(D);
13172 
13173     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13174                                         UPPC_DataMemberType)) {
13175       D.setInvalidType();
13176       T = Context.IntTy;
13177       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
13178     }
13179   }
13180 
13181   // TR 18037 does not allow fields to be declared with address spaces.
13182   if (T.getQualifiers().hasAddressSpace()) {
13183     Diag(Loc, diag::err_field_with_address_space);
13184     D.setInvalidType();
13185   }
13186 
13187   // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
13188   // used as structure or union field: image, sampler, event or block types.
13189   if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() ||
13190                           T->isSamplerT() || T->isBlockPointerType())) {
13191     Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
13192     D.setInvalidType();
13193   }
13194 
13195   DiagnoseFunctionSpecifiers(D.getDeclSpec());
13196 
13197   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
13198     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
13199          diag::err_invalid_thread)
13200       << DeclSpec::getSpecifierName(TSCS);
13201 
13202   // Check to see if this name was declared as a member previously
13203   NamedDecl *PrevDecl = nullptr;
13204   LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
13205   LookupName(Previous, S);
13206   switch (Previous.getResultKind()) {
13207     case LookupResult::Found:
13208     case LookupResult::FoundUnresolvedValue:
13209       PrevDecl = Previous.getAsSingle<NamedDecl>();
13210       break;
13211 
13212     case LookupResult::FoundOverloaded:
13213       PrevDecl = Previous.getRepresentativeDecl();
13214       break;
13215 
13216     case LookupResult::NotFound:
13217     case LookupResult::NotFoundInCurrentInstantiation:
13218     case LookupResult::Ambiguous:
13219       break;
13220   }
13221   Previous.suppressDiagnostics();
13222 
13223   if (PrevDecl && PrevDecl->isTemplateParameter()) {
13224     // Maybe we will complain about the shadowed template parameter.
13225     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13226     // Just pretend that we didn't see the previous declaration.
13227     PrevDecl = nullptr;
13228   }
13229 
13230   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
13231     PrevDecl = nullptr;
13232 
13233   bool Mutable
13234     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
13235   SourceLocation TSSL = D.getLocStart();
13236   FieldDecl *NewFD
13237     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
13238                      TSSL, AS, PrevDecl, &D);
13239 
13240   if (NewFD->isInvalidDecl())
13241     Record->setInvalidDecl();
13242 
13243   if (D.getDeclSpec().isModulePrivateSpecified())
13244     NewFD->setModulePrivate();
13245 
13246   if (NewFD->isInvalidDecl() && PrevDecl) {
13247     // Don't introduce NewFD into scope; there's already something
13248     // with the same name in the same scope.
13249   } else if (II) {
13250     PushOnScopeChains(NewFD, S);
13251   } else
13252     Record->addDecl(NewFD);
13253 
13254   return NewFD;
13255 }
13256 
13257 /// \brief Build a new FieldDecl and check its well-formedness.
13258 ///
13259 /// This routine builds a new FieldDecl given the fields name, type,
13260 /// record, etc. \p PrevDecl should refer to any previous declaration
13261 /// with the same name and in the same scope as the field to be
13262 /// created.
13263 ///
13264 /// \returns a new FieldDecl.
13265 ///
13266 /// \todo The Declarator argument is a hack. It will be removed once
13267 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
13268                                 TypeSourceInfo *TInfo,
13269                                 RecordDecl *Record, SourceLocation Loc,
13270                                 bool Mutable, Expr *BitWidth,
13271                                 InClassInitStyle InitStyle,
13272                                 SourceLocation TSSL,
13273                                 AccessSpecifier AS, NamedDecl *PrevDecl,
13274                                 Declarator *D) {
13275   IdentifierInfo *II = Name.getAsIdentifierInfo();
13276   bool InvalidDecl = false;
13277   if (D) InvalidDecl = D->isInvalidType();
13278 
13279   // If we receive a broken type, recover by assuming 'int' and
13280   // marking this declaration as invalid.
13281   if (T.isNull()) {
13282     InvalidDecl = true;
13283     T = Context.IntTy;
13284   }
13285 
13286   QualType EltTy = Context.getBaseElementType(T);
13287   if (!EltTy->isDependentType()) {
13288     if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
13289       // Fields of incomplete type force their record to be invalid.
13290       Record->setInvalidDecl();
13291       InvalidDecl = true;
13292     } else {
13293       NamedDecl *Def;
13294       EltTy->isIncompleteType(&Def);
13295       if (Def && Def->isInvalidDecl()) {
13296         Record->setInvalidDecl();
13297         InvalidDecl = true;
13298       }
13299     }
13300   }
13301 
13302   // OpenCL v1.2 s6.9.c: bitfields are not supported.
13303   if (BitWidth && getLangOpts().OpenCL) {
13304     Diag(Loc, diag::err_opencl_bitfields);
13305     InvalidDecl = true;
13306   }
13307 
13308   // C99 6.7.2.1p8: A member of a structure or union may have any type other
13309   // than a variably modified type.
13310   if (!InvalidDecl && T->isVariablyModifiedType()) {
13311     bool SizeIsNegative;
13312     llvm::APSInt Oversized;
13313 
13314     TypeSourceInfo *FixedTInfo =
13315       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
13316                                                     SizeIsNegative,
13317                                                     Oversized);
13318     if (FixedTInfo) {
13319       Diag(Loc, diag::warn_illegal_constant_array_size);
13320       TInfo = FixedTInfo;
13321       T = FixedTInfo->getType();
13322     } else {
13323       if (SizeIsNegative)
13324         Diag(Loc, diag::err_typecheck_negative_array_size);
13325       else if (Oversized.getBoolValue())
13326         Diag(Loc, diag::err_array_too_large)
13327           << Oversized.toString(10);
13328       else
13329         Diag(Loc, diag::err_typecheck_field_variable_size);
13330       InvalidDecl = true;
13331     }
13332   }
13333 
13334   // Fields can not have abstract class types
13335   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
13336                                              diag::err_abstract_type_in_decl,
13337                                              AbstractFieldType))
13338     InvalidDecl = true;
13339 
13340   bool ZeroWidth = false;
13341   if (InvalidDecl)
13342     BitWidth = nullptr;
13343   // If this is declared as a bit-field, check the bit-field.
13344   if (BitWidth) {
13345     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
13346                               &ZeroWidth).get();
13347     if (!BitWidth) {
13348       InvalidDecl = true;
13349       BitWidth = nullptr;
13350       ZeroWidth = false;
13351     }
13352   }
13353 
13354   // Check that 'mutable' is consistent with the type of the declaration.
13355   if (!InvalidDecl && Mutable) {
13356     unsigned DiagID = 0;
13357     if (T->isReferenceType())
13358       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
13359                                         : diag::err_mutable_reference;
13360     else if (T.isConstQualified())
13361       DiagID = diag::err_mutable_const;
13362 
13363     if (DiagID) {
13364       SourceLocation ErrLoc = Loc;
13365       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
13366         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
13367       Diag(ErrLoc, DiagID);
13368       if (DiagID != diag::ext_mutable_reference) {
13369         Mutable = false;
13370         InvalidDecl = true;
13371       }
13372     }
13373   }
13374 
13375   // C++11 [class.union]p8 (DR1460):
13376   //   At most one variant member of a union may have a
13377   //   brace-or-equal-initializer.
13378   if (InitStyle != ICIS_NoInit)
13379     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
13380 
13381   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
13382                                        BitWidth, Mutable, InitStyle);
13383   if (InvalidDecl)
13384     NewFD->setInvalidDecl();
13385 
13386   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
13387     Diag(Loc, diag::err_duplicate_member) << II;
13388     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
13389     NewFD->setInvalidDecl();
13390   }
13391 
13392   if (!InvalidDecl && getLangOpts().CPlusPlus) {
13393     if (Record->isUnion()) {
13394       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
13395         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
13396         if (RDecl->getDefinition()) {
13397           // C++ [class.union]p1: An object of a class with a non-trivial
13398           // constructor, a non-trivial copy constructor, a non-trivial
13399           // destructor, or a non-trivial copy assignment operator
13400           // cannot be a member of a union, nor can an array of such
13401           // objects.
13402           if (CheckNontrivialField(NewFD))
13403             NewFD->setInvalidDecl();
13404         }
13405       }
13406 
13407       // C++ [class.union]p1: If a union contains a member of reference type,
13408       // the program is ill-formed, except when compiling with MSVC extensions
13409       // enabled.
13410       if (EltTy->isReferenceType()) {
13411         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
13412                                     diag::ext_union_member_of_reference_type :
13413                                     diag::err_union_member_of_reference_type)
13414           << NewFD->getDeclName() << EltTy;
13415         if (!getLangOpts().MicrosoftExt)
13416           NewFD->setInvalidDecl();
13417       }
13418     }
13419   }
13420 
13421   // FIXME: We need to pass in the attributes given an AST
13422   // representation, not a parser representation.
13423   if (D) {
13424     // FIXME: The current scope is almost... but not entirely... correct here.
13425     ProcessDeclAttributes(getCurScope(), NewFD, *D);
13426 
13427     if (NewFD->hasAttrs())
13428       CheckAlignasUnderalignment(NewFD);
13429   }
13430 
13431   // In auto-retain/release, infer strong retension for fields of
13432   // retainable type.
13433   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
13434     NewFD->setInvalidDecl();
13435 
13436   if (T.isObjCGCWeak())
13437     Diag(Loc, diag::warn_attribute_weak_on_field);
13438 
13439   NewFD->setAccess(AS);
13440   return NewFD;
13441 }
13442 
13443 bool Sema::CheckNontrivialField(FieldDecl *FD) {
13444   assert(FD);
13445   assert(getLangOpts().CPlusPlus && "valid check only for C++");
13446 
13447   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
13448     return false;
13449 
13450   QualType EltTy = Context.getBaseElementType(FD->getType());
13451   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
13452     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
13453     if (RDecl->getDefinition()) {
13454       // We check for copy constructors before constructors
13455       // because otherwise we'll never get complaints about
13456       // copy constructors.
13457 
13458       CXXSpecialMember member = CXXInvalid;
13459       // We're required to check for any non-trivial constructors. Since the
13460       // implicit default constructor is suppressed if there are any
13461       // user-declared constructors, we just need to check that there is a
13462       // trivial default constructor and a trivial copy constructor. (We don't
13463       // worry about move constructors here, since this is a C++98 check.)
13464       if (RDecl->hasNonTrivialCopyConstructor())
13465         member = CXXCopyConstructor;
13466       else if (!RDecl->hasTrivialDefaultConstructor())
13467         member = CXXDefaultConstructor;
13468       else if (RDecl->hasNonTrivialCopyAssignment())
13469         member = CXXCopyAssignment;
13470       else if (RDecl->hasNonTrivialDestructor())
13471         member = CXXDestructor;
13472 
13473       if (member != CXXInvalid) {
13474         if (!getLangOpts().CPlusPlus11 &&
13475             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
13476           // Objective-C++ ARC: it is an error to have a non-trivial field of
13477           // a union. However, system headers in Objective-C programs
13478           // occasionally have Objective-C lifetime objects within unions,
13479           // and rather than cause the program to fail, we make those
13480           // members unavailable.
13481           SourceLocation Loc = FD->getLocation();
13482           if (getSourceManager().isInSystemHeader(Loc)) {
13483             if (!FD->hasAttr<UnavailableAttr>())
13484               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
13485                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
13486             return false;
13487           }
13488         }
13489 
13490         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
13491                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
13492                diag::err_illegal_union_or_anon_struct_member)
13493           << FD->getParent()->isUnion() << FD->getDeclName() << member;
13494         DiagnoseNontrivial(RDecl, member);
13495         return !getLangOpts().CPlusPlus11;
13496       }
13497     }
13498   }
13499 
13500   return false;
13501 }
13502 
13503 /// TranslateIvarVisibility - Translate visibility from a token ID to an
13504 ///  AST enum value.
13505 static ObjCIvarDecl::AccessControl
13506 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
13507   switch (ivarVisibility) {
13508   default: llvm_unreachable("Unknown visitibility kind");
13509   case tok::objc_private: return ObjCIvarDecl::Private;
13510   case tok::objc_public: return ObjCIvarDecl::Public;
13511   case tok::objc_protected: return ObjCIvarDecl::Protected;
13512   case tok::objc_package: return ObjCIvarDecl::Package;
13513   }
13514 }
13515 
13516 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
13517 /// in order to create an IvarDecl object for it.
13518 Decl *Sema::ActOnIvar(Scope *S,
13519                                 SourceLocation DeclStart,
13520                                 Declarator &D, Expr *BitfieldWidth,
13521                                 tok::ObjCKeywordKind Visibility) {
13522 
13523   IdentifierInfo *II = D.getIdentifier();
13524   Expr *BitWidth = (Expr*)BitfieldWidth;
13525   SourceLocation Loc = DeclStart;
13526   if (II) Loc = D.getIdentifierLoc();
13527 
13528   // FIXME: Unnamed fields can be handled in various different ways, for
13529   // example, unnamed unions inject all members into the struct namespace!
13530 
13531   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13532   QualType T = TInfo->getType();
13533 
13534   if (BitWidth) {
13535     // 6.7.2.1p3, 6.7.2.1p4
13536     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
13537     if (!BitWidth)
13538       D.setInvalidType();
13539   } else {
13540     // Not a bitfield.
13541 
13542     // validate II.
13543 
13544   }
13545   if (T->isReferenceType()) {
13546     Diag(Loc, diag::err_ivar_reference_type);
13547     D.setInvalidType();
13548   }
13549   // C99 6.7.2.1p8: A member of a structure or union may have any type other
13550   // than a variably modified type.
13551   else if (T->isVariablyModifiedType()) {
13552     Diag(Loc, diag::err_typecheck_ivar_variable_size);
13553     D.setInvalidType();
13554   }
13555 
13556   // Get the visibility (access control) for this ivar.
13557   ObjCIvarDecl::AccessControl ac =
13558     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
13559                                         : ObjCIvarDecl::None;
13560   // Must set ivar's DeclContext to its enclosing interface.
13561   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
13562   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
13563     return nullptr;
13564   ObjCContainerDecl *EnclosingContext;
13565   if (ObjCImplementationDecl *IMPDecl =
13566       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
13567     if (LangOpts.ObjCRuntime.isFragile()) {
13568     // Case of ivar declared in an implementation. Context is that of its class.
13569       EnclosingContext = IMPDecl->getClassInterface();
13570       assert(EnclosingContext && "Implementation has no class interface!");
13571     }
13572     else
13573       EnclosingContext = EnclosingDecl;
13574   } else {
13575     if (ObjCCategoryDecl *CDecl =
13576         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
13577       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
13578         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
13579         return nullptr;
13580       }
13581     }
13582     EnclosingContext = EnclosingDecl;
13583   }
13584 
13585   // Construct the decl.
13586   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
13587                                              DeclStart, Loc, II, T,
13588                                              TInfo, ac, (Expr *)BitfieldWidth);
13589 
13590   if (II) {
13591     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
13592                                            ForRedeclaration);
13593     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
13594         && !isa<TagDecl>(PrevDecl)) {
13595       Diag(Loc, diag::err_duplicate_member) << II;
13596       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
13597       NewID->setInvalidDecl();
13598     }
13599   }
13600 
13601   // Process attributes attached to the ivar.
13602   ProcessDeclAttributes(S, NewID, D);
13603 
13604   if (D.isInvalidType())
13605     NewID->setInvalidDecl();
13606 
13607   // In ARC, infer 'retaining' for ivars of retainable type.
13608   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
13609     NewID->setInvalidDecl();
13610 
13611   if (D.getDeclSpec().isModulePrivateSpecified())
13612     NewID->setModulePrivate();
13613 
13614   if (II) {
13615     // FIXME: When interfaces are DeclContexts, we'll need to add
13616     // these to the interface.
13617     S->AddDecl(NewID);
13618     IdResolver.AddDecl(NewID);
13619   }
13620 
13621   if (LangOpts.ObjCRuntime.isNonFragile() &&
13622       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
13623     Diag(Loc, diag::warn_ivars_in_interface);
13624 
13625   return NewID;
13626 }
13627 
13628 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for
13629 /// class and class extensions. For every class \@interface and class
13630 /// extension \@interface, if the last ivar is a bitfield of any type,
13631 /// then add an implicit `char :0` ivar to the end of that interface.
13632 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
13633                              SmallVectorImpl<Decl *> &AllIvarDecls) {
13634   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
13635     return;
13636 
13637   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
13638   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
13639 
13640   if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
13641     return;
13642   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
13643   if (!ID) {
13644     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
13645       if (!CD->IsClassExtension())
13646         return;
13647     }
13648     // No need to add this to end of @implementation.
13649     else
13650       return;
13651   }
13652   // All conditions are met. Add a new bitfield to the tail end of ivars.
13653   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
13654   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
13655 
13656   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
13657                               DeclLoc, DeclLoc, nullptr,
13658                               Context.CharTy,
13659                               Context.getTrivialTypeSourceInfo(Context.CharTy,
13660                                                                DeclLoc),
13661                               ObjCIvarDecl::Private, BW,
13662                               true);
13663   AllIvarDecls.push_back(Ivar);
13664 }
13665 
13666 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
13667                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
13668                        SourceLocation RBrac, AttributeList *Attr) {
13669   assert(EnclosingDecl && "missing record or interface decl");
13670 
13671   // If this is an Objective-C @implementation or category and we have
13672   // new fields here we should reset the layout of the interface since
13673   // it will now change.
13674   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
13675     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
13676     switch (DC->getKind()) {
13677     default: break;
13678     case Decl::ObjCCategory:
13679       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
13680       break;
13681     case Decl::ObjCImplementation:
13682       Context.
13683         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
13684       break;
13685     }
13686   }
13687 
13688   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
13689 
13690   // Start counting up the number of named members; make sure to include
13691   // members of anonymous structs and unions in the total.
13692   unsigned NumNamedMembers = 0;
13693   if (Record) {
13694     for (const auto *I : Record->decls()) {
13695       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
13696         if (IFD->getDeclName())
13697           ++NumNamedMembers;
13698     }
13699   }
13700 
13701   // Verify that all the fields are okay.
13702   SmallVector<FieldDecl*, 32> RecFields;
13703 
13704   bool ARCErrReported = false;
13705   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
13706        i != end; ++i) {
13707     FieldDecl *FD = cast<FieldDecl>(*i);
13708 
13709     // Get the type for the field.
13710     const Type *FDTy = FD->getType().getTypePtr();
13711 
13712     if (!FD->isAnonymousStructOrUnion()) {
13713       // Remember all fields written by the user.
13714       RecFields.push_back(FD);
13715     }
13716 
13717     // If the field is already invalid for some reason, don't emit more
13718     // diagnostics about it.
13719     if (FD->isInvalidDecl()) {
13720       EnclosingDecl->setInvalidDecl();
13721       continue;
13722     }
13723 
13724     // C99 6.7.2.1p2:
13725     //   A structure or union shall not contain a member with
13726     //   incomplete or function type (hence, a structure shall not
13727     //   contain an instance of itself, but may contain a pointer to
13728     //   an instance of itself), except that the last member of a
13729     //   structure with more than one named member may have incomplete
13730     //   array type; such a structure (and any union containing,
13731     //   possibly recursively, a member that is such a structure)
13732     //   shall not be a member of a structure or an element of an
13733     //   array.
13734     if (FDTy->isFunctionType()) {
13735       // Field declared as a function.
13736       Diag(FD->getLocation(), diag::err_field_declared_as_function)
13737         << FD->getDeclName();
13738       FD->setInvalidDecl();
13739       EnclosingDecl->setInvalidDecl();
13740       continue;
13741     } else if (FDTy->isIncompleteArrayType() && Record &&
13742                ((i + 1 == Fields.end() && !Record->isUnion()) ||
13743                 ((getLangOpts().MicrosoftExt ||
13744                   getLangOpts().CPlusPlus) &&
13745                  (i + 1 == Fields.end() || Record->isUnion())))) {
13746       // Flexible array member.
13747       // Microsoft and g++ is more permissive regarding flexible array.
13748       // It will accept flexible array in union and also
13749       // as the sole element of a struct/class.
13750       unsigned DiagID = 0;
13751       if (Record->isUnion())
13752         DiagID = getLangOpts().MicrosoftExt
13753                      ? diag::ext_flexible_array_union_ms
13754                      : getLangOpts().CPlusPlus
13755                            ? diag::ext_flexible_array_union_gnu
13756                            : diag::err_flexible_array_union;
13757       else if (Fields.size() == 1)
13758         DiagID = getLangOpts().MicrosoftExt
13759                      ? diag::ext_flexible_array_empty_aggregate_ms
13760                      : getLangOpts().CPlusPlus
13761                            ? diag::ext_flexible_array_empty_aggregate_gnu
13762                            : NumNamedMembers < 1
13763                                  ? diag::err_flexible_array_empty_aggregate
13764                                  : 0;
13765 
13766       if (DiagID)
13767         Diag(FD->getLocation(), DiagID) << FD->getDeclName()
13768                                         << Record->getTagKind();
13769       // While the layout of types that contain virtual bases is not specified
13770       // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
13771       // virtual bases after the derived members.  This would make a flexible
13772       // array member declared at the end of an object not adjacent to the end
13773       // of the type.
13774       if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
13775         if (RD->getNumVBases() != 0)
13776           Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
13777             << FD->getDeclName() << Record->getTagKind();
13778       if (!getLangOpts().C99)
13779         Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
13780           << FD->getDeclName() << Record->getTagKind();
13781 
13782       // If the element type has a non-trivial destructor, we would not
13783       // implicitly destroy the elements, so disallow it for now.
13784       //
13785       // FIXME: GCC allows this. We should probably either implicitly delete
13786       // the destructor of the containing class, or just allow this.
13787       QualType BaseElem = Context.getBaseElementType(FD->getType());
13788       if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
13789         Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
13790           << FD->getDeclName() << FD->getType();
13791         FD->setInvalidDecl();
13792         EnclosingDecl->setInvalidDecl();
13793         continue;
13794       }
13795       // Okay, we have a legal flexible array member at the end of the struct.
13796       Record->setHasFlexibleArrayMember(true);
13797     } else if (!FDTy->isDependentType() &&
13798                RequireCompleteType(FD->getLocation(), FD->getType(),
13799                                    diag::err_field_incomplete)) {
13800       // Incomplete type
13801       FD->setInvalidDecl();
13802       EnclosingDecl->setInvalidDecl();
13803       continue;
13804     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
13805       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
13806         // A type which contains a flexible array member is considered to be a
13807         // flexible array member.
13808         Record->setHasFlexibleArrayMember(true);
13809         if (!Record->isUnion()) {
13810           // If this is a struct/class and this is not the last element, reject
13811           // it.  Note that GCC supports variable sized arrays in the middle of
13812           // structures.
13813           if (i + 1 != Fields.end())
13814             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
13815               << FD->getDeclName() << FD->getType();
13816           else {
13817             // We support flexible arrays at the end of structs in
13818             // other structs as an extension.
13819             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
13820               << FD->getDeclName();
13821           }
13822         }
13823       }
13824       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
13825           RequireNonAbstractType(FD->getLocation(), FD->getType(),
13826                                  diag::err_abstract_type_in_decl,
13827                                  AbstractIvarType)) {
13828         // Ivars can not have abstract class types
13829         FD->setInvalidDecl();
13830       }
13831       if (Record && FDTTy->getDecl()->hasObjectMember())
13832         Record->setHasObjectMember(true);
13833       if (Record && FDTTy->getDecl()->hasVolatileMember())
13834         Record->setHasVolatileMember(true);
13835     } else if (FDTy->isObjCObjectType()) {
13836       /// A field cannot be an Objective-c object
13837       Diag(FD->getLocation(), diag::err_statically_allocated_object)
13838         << FixItHint::CreateInsertion(FD->getLocation(), "*");
13839       QualType T = Context.getObjCObjectPointerType(FD->getType());
13840       FD->setType(T);
13841     } else if (getLangOpts().ObjCAutoRefCount && Record && !ARCErrReported &&
13842                (!getLangOpts().CPlusPlus || Record->isUnion())) {
13843       // It's an error in ARC if a field has lifetime.
13844       // We don't want to report this in a system header, though,
13845       // so we just make the field unavailable.
13846       // FIXME: that's really not sufficient; we need to make the type
13847       // itself invalid to, say, initialize or copy.
13848       QualType T = FD->getType();
13849       Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime();
13850       if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone) {
13851         SourceLocation loc = FD->getLocation();
13852         if (getSourceManager().isInSystemHeader(loc)) {
13853           if (!FD->hasAttr<UnavailableAttr>()) {
13854             FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
13855                           UnavailableAttr::IR_ARCFieldWithOwnership, loc));
13856           }
13857         } else {
13858           Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag)
13859             << T->isBlockPointerType() << Record->getTagKind();
13860         }
13861         ARCErrReported = true;
13862       }
13863     } else if (getLangOpts().ObjC1 &&
13864                getLangOpts().getGC() != LangOptions::NonGC &&
13865                Record && !Record->hasObjectMember()) {
13866       if (FD->getType()->isObjCObjectPointerType() ||
13867           FD->getType().isObjCGCStrong())
13868         Record->setHasObjectMember(true);
13869       else if (Context.getAsArrayType(FD->getType())) {
13870         QualType BaseType = Context.getBaseElementType(FD->getType());
13871         if (BaseType->isRecordType() &&
13872             BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
13873           Record->setHasObjectMember(true);
13874         else if (BaseType->isObjCObjectPointerType() ||
13875                  BaseType.isObjCGCStrong())
13876                Record->setHasObjectMember(true);
13877       }
13878     }
13879     if (Record && FD->getType().isVolatileQualified())
13880       Record->setHasVolatileMember(true);
13881     // Keep track of the number of named members.
13882     if (FD->getIdentifier())
13883       ++NumNamedMembers;
13884   }
13885 
13886   // Okay, we successfully defined 'Record'.
13887   if (Record) {
13888     bool Completed = false;
13889     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
13890       if (!CXXRecord->isInvalidDecl()) {
13891         // Set access bits correctly on the directly-declared conversions.
13892         for (CXXRecordDecl::conversion_iterator
13893                I = CXXRecord->conversion_begin(),
13894                E = CXXRecord->conversion_end(); I != E; ++I)
13895           I.setAccess((*I)->getAccess());
13896       }
13897 
13898       if (!CXXRecord->isDependentType()) {
13899         if (CXXRecord->hasUserDeclaredDestructor()) {
13900           // Adjust user-defined destructor exception spec.
13901           if (getLangOpts().CPlusPlus11)
13902             AdjustDestructorExceptionSpec(CXXRecord,
13903                                           CXXRecord->getDestructor());
13904         }
13905 
13906         if (!CXXRecord->isInvalidDecl()) {
13907           // Add any implicitly-declared members to this class.
13908           AddImplicitlyDeclaredMembersToClass(CXXRecord);
13909 
13910           // If we have virtual base classes, we may end up finding multiple
13911           // final overriders for a given virtual function. Check for this
13912           // problem now.
13913           if (CXXRecord->getNumVBases()) {
13914             CXXFinalOverriderMap FinalOverriders;
13915             CXXRecord->getFinalOverriders(FinalOverriders);
13916 
13917             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
13918                                              MEnd = FinalOverriders.end();
13919                  M != MEnd; ++M) {
13920               for (OverridingMethods::iterator SO = M->second.begin(),
13921                                             SOEnd = M->second.end();
13922                    SO != SOEnd; ++SO) {
13923                 assert(SO->second.size() > 0 &&
13924                        "Virtual function without overridding functions?");
13925                 if (SO->second.size() == 1)
13926                   continue;
13927 
13928                 // C++ [class.virtual]p2:
13929                 //   In a derived class, if a virtual member function of a base
13930                 //   class subobject has more than one final overrider the
13931                 //   program is ill-formed.
13932                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
13933                   << (const NamedDecl *)M->first << Record;
13934                 Diag(M->first->getLocation(),
13935                      diag::note_overridden_virtual_function);
13936                 for (OverridingMethods::overriding_iterator
13937                           OM = SO->second.begin(),
13938                        OMEnd = SO->second.end();
13939                      OM != OMEnd; ++OM)
13940                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
13941                     << (const NamedDecl *)M->first << OM->Method->getParent();
13942 
13943                 Record->setInvalidDecl();
13944               }
13945             }
13946             CXXRecord->completeDefinition(&FinalOverriders);
13947             Completed = true;
13948           }
13949         }
13950       }
13951     }
13952 
13953     if (!Completed)
13954       Record->completeDefinition();
13955 
13956     if (Record->hasAttrs()) {
13957       CheckAlignasUnderalignment(Record);
13958 
13959       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
13960         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
13961                                            IA->getRange(), IA->getBestCase(),
13962                                            IA->getSemanticSpelling());
13963     }
13964 
13965     // Check if the structure/union declaration is a type that can have zero
13966     // size in C. For C this is a language extension, for C++ it may cause
13967     // compatibility problems.
13968     bool CheckForZeroSize;
13969     if (!getLangOpts().CPlusPlus) {
13970       CheckForZeroSize = true;
13971     } else {
13972       // For C++ filter out types that cannot be referenced in C code.
13973       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
13974       CheckForZeroSize =
13975           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
13976           !CXXRecord->isDependentType() &&
13977           CXXRecord->isCLike();
13978     }
13979     if (CheckForZeroSize) {
13980       bool ZeroSize = true;
13981       bool IsEmpty = true;
13982       unsigned NonBitFields = 0;
13983       for (RecordDecl::field_iterator I = Record->field_begin(),
13984                                       E = Record->field_end();
13985            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
13986         IsEmpty = false;
13987         if (I->isUnnamedBitfield()) {
13988           if (I->getBitWidthValue(Context) > 0)
13989             ZeroSize = false;
13990         } else {
13991           ++NonBitFields;
13992           QualType FieldType = I->getType();
13993           if (FieldType->isIncompleteType() ||
13994               !Context.getTypeSizeInChars(FieldType).isZero())
13995             ZeroSize = false;
13996         }
13997       }
13998 
13999       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
14000       // allowed in C++, but warn if its declaration is inside
14001       // extern "C" block.
14002       if (ZeroSize) {
14003         Diag(RecLoc, getLangOpts().CPlusPlus ?
14004                          diag::warn_zero_size_struct_union_in_extern_c :
14005                          diag::warn_zero_size_struct_union_compat)
14006           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
14007       }
14008 
14009       // Structs without named members are extension in C (C99 6.7.2.1p7),
14010       // but are accepted by GCC.
14011       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
14012         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
14013                                diag::ext_no_named_members_in_struct_union)
14014           << Record->isUnion();
14015       }
14016     }
14017   } else {
14018     ObjCIvarDecl **ClsFields =
14019       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
14020     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
14021       ID->setEndOfDefinitionLoc(RBrac);
14022       // Add ivar's to class's DeclContext.
14023       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
14024         ClsFields[i]->setLexicalDeclContext(ID);
14025         ID->addDecl(ClsFields[i]);
14026       }
14027       // Must enforce the rule that ivars in the base classes may not be
14028       // duplicates.
14029       if (ID->getSuperClass())
14030         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
14031     } else if (ObjCImplementationDecl *IMPDecl =
14032                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
14033       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
14034       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
14035         // Ivar declared in @implementation never belongs to the implementation.
14036         // Only it is in implementation's lexical context.
14037         ClsFields[I]->setLexicalDeclContext(IMPDecl);
14038       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
14039       IMPDecl->setIvarLBraceLoc(LBrac);
14040       IMPDecl->setIvarRBraceLoc(RBrac);
14041     } else if (ObjCCategoryDecl *CDecl =
14042                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
14043       // case of ivars in class extension; all other cases have been
14044       // reported as errors elsewhere.
14045       // FIXME. Class extension does not have a LocEnd field.
14046       // CDecl->setLocEnd(RBrac);
14047       // Add ivar's to class extension's DeclContext.
14048       // Diagnose redeclaration of private ivars.
14049       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
14050       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
14051         if (IDecl) {
14052           if (const ObjCIvarDecl *ClsIvar =
14053               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
14054             Diag(ClsFields[i]->getLocation(),
14055                  diag::err_duplicate_ivar_declaration);
14056             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
14057             continue;
14058           }
14059           for (const auto *Ext : IDecl->known_extensions()) {
14060             if (const ObjCIvarDecl *ClsExtIvar
14061                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
14062               Diag(ClsFields[i]->getLocation(),
14063                    diag::err_duplicate_ivar_declaration);
14064               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
14065               continue;
14066             }
14067           }
14068         }
14069         ClsFields[i]->setLexicalDeclContext(CDecl);
14070         CDecl->addDecl(ClsFields[i]);
14071       }
14072       CDecl->setIvarLBraceLoc(LBrac);
14073       CDecl->setIvarRBraceLoc(RBrac);
14074     }
14075   }
14076 
14077   if (Attr)
14078     ProcessDeclAttributeList(S, Record, Attr);
14079 }
14080 
14081 /// \brief Determine whether the given integral value is representable within
14082 /// the given type T.
14083 static bool isRepresentableIntegerValue(ASTContext &Context,
14084                                         llvm::APSInt &Value,
14085                                         QualType T) {
14086   assert(T->isIntegralType(Context) && "Integral type required!");
14087   unsigned BitWidth = Context.getIntWidth(T);
14088 
14089   if (Value.isUnsigned() || Value.isNonNegative()) {
14090     if (T->isSignedIntegerOrEnumerationType())
14091       --BitWidth;
14092     return Value.getActiveBits() <= BitWidth;
14093   }
14094   return Value.getMinSignedBits() <= BitWidth;
14095 }
14096 
14097 // \brief Given an integral type, return the next larger integral type
14098 // (or a NULL type of no such type exists).
14099 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
14100   // FIXME: Int128/UInt128 support, which also needs to be introduced into
14101   // enum checking below.
14102   assert(T->isIntegralType(Context) && "Integral type required!");
14103   const unsigned NumTypes = 4;
14104   QualType SignedIntegralTypes[NumTypes] = {
14105     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
14106   };
14107   QualType UnsignedIntegralTypes[NumTypes] = {
14108     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
14109     Context.UnsignedLongLongTy
14110   };
14111 
14112   unsigned BitWidth = Context.getTypeSize(T);
14113   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
14114                                                         : UnsignedIntegralTypes;
14115   for (unsigned I = 0; I != NumTypes; ++I)
14116     if (Context.getTypeSize(Types[I]) > BitWidth)
14117       return Types[I];
14118 
14119   return QualType();
14120 }
14121 
14122 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
14123                                           EnumConstantDecl *LastEnumConst,
14124                                           SourceLocation IdLoc,
14125                                           IdentifierInfo *Id,
14126                                           Expr *Val) {
14127   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
14128   llvm::APSInt EnumVal(IntWidth);
14129   QualType EltTy;
14130 
14131   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
14132     Val = nullptr;
14133 
14134   if (Val)
14135     Val = DefaultLvalueConversion(Val).get();
14136 
14137   if (Val) {
14138     if (Enum->isDependentType() || Val->isTypeDependent())
14139       EltTy = Context.DependentTy;
14140     else {
14141       SourceLocation ExpLoc;
14142       if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
14143           !getLangOpts().MSVCCompat) {
14144         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
14145         // constant-expression in the enumerator-definition shall be a converted
14146         // constant expression of the underlying type.
14147         EltTy = Enum->getIntegerType();
14148         ExprResult Converted =
14149           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
14150                                            CCEK_Enumerator);
14151         if (Converted.isInvalid())
14152           Val = nullptr;
14153         else
14154           Val = Converted.get();
14155       } else if (!Val->isValueDependent() &&
14156                  !(Val = VerifyIntegerConstantExpression(Val,
14157                                                          &EnumVal).get())) {
14158         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
14159       } else {
14160         if (Enum->isFixed()) {
14161           EltTy = Enum->getIntegerType();
14162 
14163           // In Obj-C and Microsoft mode, require the enumeration value to be
14164           // representable in the underlying type of the enumeration. In C++11,
14165           // we perform a non-narrowing conversion as part of converted constant
14166           // expression checking.
14167           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
14168             if (getLangOpts().MSVCCompat) {
14169               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
14170               Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
14171             } else
14172               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
14173           } else
14174             Val = ImpCastExprToType(Val, EltTy,
14175                                     EltTy->isBooleanType() ?
14176                                     CK_IntegralToBoolean : CK_IntegralCast)
14177                     .get();
14178         } else if (getLangOpts().CPlusPlus) {
14179           // C++11 [dcl.enum]p5:
14180           //   If the underlying type is not fixed, the type of each enumerator
14181           //   is the type of its initializing value:
14182           //     - If an initializer is specified for an enumerator, the
14183           //       initializing value has the same type as the expression.
14184           EltTy = Val->getType();
14185         } else {
14186           // C99 6.7.2.2p2:
14187           //   The expression that defines the value of an enumeration constant
14188           //   shall be an integer constant expression that has a value
14189           //   representable as an int.
14190 
14191           // Complain if the value is not representable in an int.
14192           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
14193             Diag(IdLoc, diag::ext_enum_value_not_int)
14194               << EnumVal.toString(10) << Val->getSourceRange()
14195               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
14196           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
14197             // Force the type of the expression to 'int'.
14198             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
14199           }
14200           EltTy = Val->getType();
14201         }
14202       }
14203     }
14204   }
14205 
14206   if (!Val) {
14207     if (Enum->isDependentType())
14208       EltTy = Context.DependentTy;
14209     else if (!LastEnumConst) {
14210       // C++0x [dcl.enum]p5:
14211       //   If the underlying type is not fixed, the type of each enumerator
14212       //   is the type of its initializing value:
14213       //     - If no initializer is specified for the first enumerator, the
14214       //       initializing value has an unspecified integral type.
14215       //
14216       // GCC uses 'int' for its unspecified integral type, as does
14217       // C99 6.7.2.2p3.
14218       if (Enum->isFixed()) {
14219         EltTy = Enum->getIntegerType();
14220       }
14221       else {
14222         EltTy = Context.IntTy;
14223       }
14224     } else {
14225       // Assign the last value + 1.
14226       EnumVal = LastEnumConst->getInitVal();
14227       ++EnumVal;
14228       EltTy = LastEnumConst->getType();
14229 
14230       // Check for overflow on increment.
14231       if (EnumVal < LastEnumConst->getInitVal()) {
14232         // C++0x [dcl.enum]p5:
14233         //   If the underlying type is not fixed, the type of each enumerator
14234         //   is the type of its initializing value:
14235         //
14236         //     - Otherwise the type of the initializing value is the same as
14237         //       the type of the initializing value of the preceding enumerator
14238         //       unless the incremented value is not representable in that type,
14239         //       in which case the type is an unspecified integral type
14240         //       sufficient to contain the incremented value. If no such type
14241         //       exists, the program is ill-formed.
14242         QualType T = getNextLargerIntegralType(Context, EltTy);
14243         if (T.isNull() || Enum->isFixed()) {
14244           // There is no integral type larger enough to represent this
14245           // value. Complain, then allow the value to wrap around.
14246           EnumVal = LastEnumConst->getInitVal();
14247           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
14248           ++EnumVal;
14249           if (Enum->isFixed())
14250             // When the underlying type is fixed, this is ill-formed.
14251             Diag(IdLoc, diag::err_enumerator_wrapped)
14252               << EnumVal.toString(10)
14253               << EltTy;
14254           else
14255             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
14256               << EnumVal.toString(10);
14257         } else {
14258           EltTy = T;
14259         }
14260 
14261         // Retrieve the last enumerator's value, extent that type to the
14262         // type that is supposed to be large enough to represent the incremented
14263         // value, then increment.
14264         EnumVal = LastEnumConst->getInitVal();
14265         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
14266         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
14267         ++EnumVal;
14268 
14269         // If we're not in C++, diagnose the overflow of enumerator values,
14270         // which in C99 means that the enumerator value is not representable in
14271         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
14272         // permits enumerator values that are representable in some larger
14273         // integral type.
14274         if (!getLangOpts().CPlusPlus && !T.isNull())
14275           Diag(IdLoc, diag::warn_enum_value_overflow);
14276       } else if (!getLangOpts().CPlusPlus &&
14277                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
14278         // Enforce C99 6.7.2.2p2 even when we compute the next value.
14279         Diag(IdLoc, diag::ext_enum_value_not_int)
14280           << EnumVal.toString(10) << 1;
14281       }
14282     }
14283   }
14284 
14285   if (!EltTy->isDependentType()) {
14286     // Make the enumerator value match the signedness and size of the
14287     // enumerator's type.
14288     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
14289     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
14290   }
14291 
14292   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
14293                                   Val, EnumVal);
14294 }
14295 
14296 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
14297                                                 SourceLocation IILoc) {
14298   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
14299       !getLangOpts().CPlusPlus)
14300     return SkipBodyInfo();
14301 
14302   // We have an anonymous enum definition. Look up the first enumerator to
14303   // determine if we should merge the definition with an existing one and
14304   // skip the body.
14305   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
14306                                          ForRedeclaration);
14307   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
14308   if (!PrevECD)
14309     return SkipBodyInfo();
14310 
14311   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
14312   NamedDecl *Hidden;
14313   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
14314     SkipBodyInfo Skip;
14315     Skip.Previous = Hidden;
14316     return Skip;
14317   }
14318 
14319   return SkipBodyInfo();
14320 }
14321 
14322 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
14323                               SourceLocation IdLoc, IdentifierInfo *Id,
14324                               AttributeList *Attr,
14325                               SourceLocation EqualLoc, Expr *Val) {
14326   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
14327   EnumConstantDecl *LastEnumConst =
14328     cast_or_null<EnumConstantDecl>(lastEnumConst);
14329 
14330   // The scope passed in may not be a decl scope.  Zip up the scope tree until
14331   // we find one that is.
14332   S = getNonFieldDeclScope(S);
14333 
14334   // Verify that there isn't already something declared with this name in this
14335   // scope.
14336   NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
14337                                          ForRedeclaration);
14338   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14339     // Maybe we will complain about the shadowed template parameter.
14340     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
14341     // Just pretend that we didn't see the previous declaration.
14342     PrevDecl = nullptr;
14343   }
14344 
14345   // C++ [class.mem]p15:
14346   // If T is the name of a class, then each of the following shall have a name
14347   // different from T:
14348   // - every enumerator of every member of class T that is an unscoped
14349   // enumerated type
14350   if (!TheEnumDecl->isScoped())
14351     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
14352                             DeclarationNameInfo(Id, IdLoc));
14353 
14354   EnumConstantDecl *New =
14355     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
14356   if (!New)
14357     return nullptr;
14358 
14359   if (PrevDecl) {
14360     // When in C++, we may get a TagDecl with the same name; in this case the
14361     // enum constant will 'hide' the tag.
14362     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
14363            "Received TagDecl when not in C++!");
14364     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S) &&
14365         shouldLinkPossiblyHiddenDecl(PrevDecl, New)) {
14366       if (isa<EnumConstantDecl>(PrevDecl))
14367         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
14368       else
14369         Diag(IdLoc, diag::err_redefinition) << Id;
14370       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
14371       return nullptr;
14372     }
14373   }
14374 
14375   // Process attributes.
14376   if (Attr) ProcessDeclAttributeList(S, New, Attr);
14377 
14378   // Register this decl in the current scope stack.
14379   New->setAccess(TheEnumDecl->getAccess());
14380   PushOnScopeChains(New, S);
14381 
14382   ActOnDocumentableDecl(New);
14383 
14384   return New;
14385 }
14386 
14387 // Returns true when the enum initial expression does not trigger the
14388 // duplicate enum warning.  A few common cases are exempted as follows:
14389 // Element2 = Element1
14390 // Element2 = Element1 + 1
14391 // Element2 = Element1 - 1
14392 // Where Element2 and Element1 are from the same enum.
14393 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
14394   Expr *InitExpr = ECD->getInitExpr();
14395   if (!InitExpr)
14396     return true;
14397   InitExpr = InitExpr->IgnoreImpCasts();
14398 
14399   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
14400     if (!BO->isAdditiveOp())
14401       return true;
14402     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
14403     if (!IL)
14404       return true;
14405     if (IL->getValue() != 1)
14406       return true;
14407 
14408     InitExpr = BO->getLHS();
14409   }
14410 
14411   // This checks if the elements are from the same enum.
14412   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
14413   if (!DRE)
14414     return true;
14415 
14416   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
14417   if (!EnumConstant)
14418     return true;
14419 
14420   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
14421       Enum)
14422     return true;
14423 
14424   return false;
14425 }
14426 
14427 namespace {
14428 struct DupKey {
14429   int64_t val;
14430   bool isTombstoneOrEmptyKey;
14431   DupKey(int64_t val, bool isTombstoneOrEmptyKey)
14432     : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
14433 };
14434 
14435 static DupKey GetDupKey(const llvm::APSInt& Val) {
14436   return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
14437                 false);
14438 }
14439 
14440 struct DenseMapInfoDupKey {
14441   static DupKey getEmptyKey() { return DupKey(0, true); }
14442   static DupKey getTombstoneKey() { return DupKey(1, true); }
14443   static unsigned getHashValue(const DupKey Key) {
14444     return (unsigned)(Key.val * 37);
14445   }
14446   static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
14447     return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
14448            LHS.val == RHS.val;
14449   }
14450 };
14451 } // end anonymous namespace
14452 
14453 // Emits a warning when an element is implicitly set a value that
14454 // a previous element has already been set to.
14455 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
14456                                         EnumDecl *Enum,
14457                                         QualType EnumType) {
14458   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
14459     return;
14460   // Avoid anonymous enums
14461   if (!Enum->getIdentifier())
14462     return;
14463 
14464   // Only check for small enums.
14465   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
14466     return;
14467 
14468   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
14469   typedef SmallVector<ECDVector *, 3> DuplicatesVector;
14470 
14471   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
14472   typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
14473           ValueToVectorMap;
14474 
14475   DuplicatesVector DupVector;
14476   ValueToVectorMap EnumMap;
14477 
14478   // Populate the EnumMap with all values represented by enum constants without
14479   // an initialier.
14480   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14481     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
14482 
14483     // Null EnumConstantDecl means a previous diagnostic has been emitted for
14484     // this constant.  Skip this enum since it may be ill-formed.
14485     if (!ECD) {
14486       return;
14487     }
14488 
14489     if (ECD->getInitExpr())
14490       continue;
14491 
14492     DupKey Key = GetDupKey(ECD->getInitVal());
14493     DeclOrVector &Entry = EnumMap[Key];
14494 
14495     // First time encountering this value.
14496     if (Entry.isNull())
14497       Entry = ECD;
14498   }
14499 
14500   // Create vectors for any values that has duplicates.
14501   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14502     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
14503     if (!ValidDuplicateEnum(ECD, Enum))
14504       continue;
14505 
14506     DupKey Key = GetDupKey(ECD->getInitVal());
14507 
14508     DeclOrVector& Entry = EnumMap[Key];
14509     if (Entry.isNull())
14510       continue;
14511 
14512     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
14513       // Ensure constants are different.
14514       if (D == ECD)
14515         continue;
14516 
14517       // Create new vector and push values onto it.
14518       ECDVector *Vec = new ECDVector();
14519       Vec->push_back(D);
14520       Vec->push_back(ECD);
14521 
14522       // Update entry to point to the duplicates vector.
14523       Entry = Vec;
14524 
14525       // Store the vector somewhere we can consult later for quick emission of
14526       // diagnostics.
14527       DupVector.push_back(Vec);
14528       continue;
14529     }
14530 
14531     ECDVector *Vec = Entry.get<ECDVector*>();
14532     // Make sure constants are not added more than once.
14533     if (*Vec->begin() == ECD)
14534       continue;
14535 
14536     Vec->push_back(ECD);
14537   }
14538 
14539   // Emit diagnostics.
14540   for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
14541                                   DupVectorEnd = DupVector.end();
14542        DupVectorIter != DupVectorEnd; ++DupVectorIter) {
14543     ECDVector *Vec = *DupVectorIter;
14544     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
14545 
14546     // Emit warning for one enum constant.
14547     ECDVector::iterator I = Vec->begin();
14548     S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
14549       << (*I)->getName() << (*I)->getInitVal().toString(10)
14550       << (*I)->getSourceRange();
14551     ++I;
14552 
14553     // Emit one note for each of the remaining enum constants with
14554     // the same value.
14555     for (ECDVector::iterator E = Vec->end(); I != E; ++I)
14556       S.Diag((*I)->getLocation(), diag::note_duplicate_element)
14557         << (*I)->getName() << (*I)->getInitVal().toString(10)
14558         << (*I)->getSourceRange();
14559     delete Vec;
14560   }
14561 }
14562 
14563 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
14564                              bool AllowMask) const {
14565   assert(ED->hasAttr<FlagEnumAttr>() && "looking for value in non-flag enum");
14566   assert(ED->isCompleteDefinition() && "expected enum definition");
14567 
14568   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
14569   llvm::APInt &FlagBits = R.first->second;
14570 
14571   if (R.second) {
14572     for (auto *E : ED->enumerators()) {
14573       const auto &EVal = E->getInitVal();
14574       // Only single-bit enumerators introduce new flag values.
14575       if (EVal.isPowerOf2())
14576         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
14577     }
14578   }
14579 
14580   // A value is in a flag enum if either its bits are a subset of the enum's
14581   // flag bits (the first condition) or we are allowing masks and the same is
14582   // true of its complement (the second condition). When masks are allowed, we
14583   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
14584   //
14585   // While it's true that any value could be used as a mask, the assumption is
14586   // that a mask will have all of the insignificant bits set. Anything else is
14587   // likely a logic error.
14588   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
14589   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
14590 }
14591 
14592 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
14593                          SourceLocation RBraceLoc, Decl *EnumDeclX,
14594                          ArrayRef<Decl *> Elements,
14595                          Scope *S, AttributeList *Attr) {
14596   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
14597   QualType EnumType = Context.getTypeDeclType(Enum);
14598 
14599   if (Attr)
14600     ProcessDeclAttributeList(S, Enum, Attr);
14601 
14602   if (Enum->isDependentType()) {
14603     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14604       EnumConstantDecl *ECD =
14605         cast_or_null<EnumConstantDecl>(Elements[i]);
14606       if (!ECD) continue;
14607 
14608       ECD->setType(EnumType);
14609     }
14610 
14611     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
14612     return;
14613   }
14614 
14615   // TODO: If the result value doesn't fit in an int, it must be a long or long
14616   // long value.  ISO C does not support this, but GCC does as an extension,
14617   // emit a warning.
14618   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
14619   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
14620   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
14621 
14622   // Verify that all the values are okay, compute the size of the values, and
14623   // reverse the list.
14624   unsigned NumNegativeBits = 0;
14625   unsigned NumPositiveBits = 0;
14626 
14627   // Keep track of whether all elements have type int.
14628   bool AllElementsInt = true;
14629 
14630   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14631     EnumConstantDecl *ECD =
14632       cast_or_null<EnumConstantDecl>(Elements[i]);
14633     if (!ECD) continue;  // Already issued a diagnostic.
14634 
14635     const llvm::APSInt &InitVal = ECD->getInitVal();
14636 
14637     // Keep track of the size of positive and negative values.
14638     if (InitVal.isUnsigned() || InitVal.isNonNegative())
14639       NumPositiveBits = std::max(NumPositiveBits,
14640                                  (unsigned)InitVal.getActiveBits());
14641     else
14642       NumNegativeBits = std::max(NumNegativeBits,
14643                                  (unsigned)InitVal.getMinSignedBits());
14644 
14645     // Keep track of whether every enum element has type int (very commmon).
14646     if (AllElementsInt)
14647       AllElementsInt = ECD->getType() == Context.IntTy;
14648   }
14649 
14650   // Figure out the type that should be used for this enum.
14651   QualType BestType;
14652   unsigned BestWidth;
14653 
14654   // C++0x N3000 [conv.prom]p3:
14655   //   An rvalue of an unscoped enumeration type whose underlying
14656   //   type is not fixed can be converted to an rvalue of the first
14657   //   of the following types that can represent all the values of
14658   //   the enumeration: int, unsigned int, long int, unsigned long
14659   //   int, long long int, or unsigned long long int.
14660   // C99 6.4.4.3p2:
14661   //   An identifier declared as an enumeration constant has type int.
14662   // The C99 rule is modified by a gcc extension
14663   QualType BestPromotionType;
14664 
14665   bool Packed = Enum->hasAttr<PackedAttr>();
14666   // -fshort-enums is the equivalent to specifying the packed attribute on all
14667   // enum definitions.
14668   if (LangOpts.ShortEnums)
14669     Packed = true;
14670 
14671   if (Enum->isFixed()) {
14672     BestType = Enum->getIntegerType();
14673     if (BestType->isPromotableIntegerType())
14674       BestPromotionType = Context.getPromotedIntegerType(BestType);
14675     else
14676       BestPromotionType = BestType;
14677 
14678     BestWidth = Context.getIntWidth(BestType);
14679   }
14680   else if (NumNegativeBits) {
14681     // If there is a negative value, figure out the smallest integer type (of
14682     // int/long/longlong) that fits.
14683     // If it's packed, check also if it fits a char or a short.
14684     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
14685       BestType = Context.SignedCharTy;
14686       BestWidth = CharWidth;
14687     } else if (Packed && NumNegativeBits <= ShortWidth &&
14688                NumPositiveBits < ShortWidth) {
14689       BestType = Context.ShortTy;
14690       BestWidth = ShortWidth;
14691     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
14692       BestType = Context.IntTy;
14693       BestWidth = IntWidth;
14694     } else {
14695       BestWidth = Context.getTargetInfo().getLongWidth();
14696 
14697       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
14698         BestType = Context.LongTy;
14699       } else {
14700         BestWidth = Context.getTargetInfo().getLongLongWidth();
14701 
14702         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
14703           Diag(Enum->getLocation(), diag::ext_enum_too_large);
14704         BestType = Context.LongLongTy;
14705       }
14706     }
14707     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
14708   } else {
14709     // If there is no negative value, figure out the smallest type that fits
14710     // all of the enumerator values.
14711     // If it's packed, check also if it fits a char or a short.
14712     if (Packed && NumPositiveBits <= CharWidth) {
14713       BestType = Context.UnsignedCharTy;
14714       BestPromotionType = Context.IntTy;
14715       BestWidth = CharWidth;
14716     } else if (Packed && NumPositiveBits <= ShortWidth) {
14717       BestType = Context.UnsignedShortTy;
14718       BestPromotionType = Context.IntTy;
14719       BestWidth = ShortWidth;
14720     } else if (NumPositiveBits <= IntWidth) {
14721       BestType = Context.UnsignedIntTy;
14722       BestWidth = IntWidth;
14723       BestPromotionType
14724         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14725                            ? Context.UnsignedIntTy : Context.IntTy;
14726     } else if (NumPositiveBits <=
14727                (BestWidth = Context.getTargetInfo().getLongWidth())) {
14728       BestType = Context.UnsignedLongTy;
14729       BestPromotionType
14730         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14731                            ? Context.UnsignedLongTy : Context.LongTy;
14732     } else {
14733       BestWidth = Context.getTargetInfo().getLongLongWidth();
14734       assert(NumPositiveBits <= BestWidth &&
14735              "How could an initializer get larger than ULL?");
14736       BestType = Context.UnsignedLongLongTy;
14737       BestPromotionType
14738         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14739                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
14740     }
14741   }
14742 
14743   // Loop over all of the enumerator constants, changing their types to match
14744   // the type of the enum if needed.
14745   for (auto *D : Elements) {
14746     auto *ECD = cast_or_null<EnumConstantDecl>(D);
14747     if (!ECD) continue;  // Already issued a diagnostic.
14748 
14749     // Standard C says the enumerators have int type, but we allow, as an
14750     // extension, the enumerators to be larger than int size.  If each
14751     // enumerator value fits in an int, type it as an int, otherwise type it the
14752     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
14753     // that X has type 'int', not 'unsigned'.
14754 
14755     // Determine whether the value fits into an int.
14756     llvm::APSInt InitVal = ECD->getInitVal();
14757 
14758     // If it fits into an integer type, force it.  Otherwise force it to match
14759     // the enum decl type.
14760     QualType NewTy;
14761     unsigned NewWidth;
14762     bool NewSign;
14763     if (!getLangOpts().CPlusPlus &&
14764         !Enum->isFixed() &&
14765         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
14766       NewTy = Context.IntTy;
14767       NewWidth = IntWidth;
14768       NewSign = true;
14769     } else if (ECD->getType() == BestType) {
14770       // Already the right type!
14771       if (getLangOpts().CPlusPlus)
14772         // C++ [dcl.enum]p4: Following the closing brace of an
14773         // enum-specifier, each enumerator has the type of its
14774         // enumeration.
14775         ECD->setType(EnumType);
14776       continue;
14777     } else {
14778       NewTy = BestType;
14779       NewWidth = BestWidth;
14780       NewSign = BestType->isSignedIntegerOrEnumerationType();
14781     }
14782 
14783     // Adjust the APSInt value.
14784     InitVal = InitVal.extOrTrunc(NewWidth);
14785     InitVal.setIsSigned(NewSign);
14786     ECD->setInitVal(InitVal);
14787 
14788     // Adjust the Expr initializer and type.
14789     if (ECD->getInitExpr() &&
14790         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
14791       ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
14792                                                 CK_IntegralCast,
14793                                                 ECD->getInitExpr(),
14794                                                 /*base paths*/ nullptr,
14795                                                 VK_RValue));
14796     if (getLangOpts().CPlusPlus)
14797       // C++ [dcl.enum]p4: Following the closing brace of an
14798       // enum-specifier, each enumerator has the type of its
14799       // enumeration.
14800       ECD->setType(EnumType);
14801     else
14802       ECD->setType(NewTy);
14803   }
14804 
14805   Enum->completeDefinition(BestType, BestPromotionType,
14806                            NumPositiveBits, NumNegativeBits);
14807 
14808   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
14809 
14810   if (Enum->hasAttr<FlagEnumAttr>()) {
14811     for (Decl *D : Elements) {
14812       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
14813       if (!ECD) continue;  // Already issued a diagnostic.
14814 
14815       llvm::APSInt InitVal = ECD->getInitVal();
14816       if (InitVal != 0 && !InitVal.isPowerOf2() &&
14817           !IsValueInFlagEnum(Enum, InitVal, true))
14818         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
14819           << ECD << Enum;
14820     }
14821   }
14822 
14823   // Now that the enum type is defined, ensure it's not been underaligned.
14824   if (Enum->hasAttrs())
14825     CheckAlignasUnderalignment(Enum);
14826 }
14827 
14828 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
14829                                   SourceLocation StartLoc,
14830                                   SourceLocation EndLoc) {
14831   StringLiteral *AsmString = cast<StringLiteral>(expr);
14832 
14833   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
14834                                                    AsmString, StartLoc,
14835                                                    EndLoc);
14836   CurContext->addDecl(New);
14837   return New;
14838 }
14839 
14840 static void checkModuleImportContext(Sema &S, Module *M,
14841                                      SourceLocation ImportLoc, DeclContext *DC,
14842                                      bool FromInclude = false) {
14843   SourceLocation ExternCLoc;
14844 
14845   if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
14846     switch (LSD->getLanguage()) {
14847     case LinkageSpecDecl::lang_c:
14848       if (ExternCLoc.isInvalid())
14849         ExternCLoc = LSD->getLocStart();
14850       break;
14851     case LinkageSpecDecl::lang_cxx:
14852       break;
14853     }
14854     DC = LSD->getParent();
14855   }
14856 
14857   while (isa<LinkageSpecDecl>(DC))
14858     DC = DC->getParent();
14859 
14860   if (!isa<TranslationUnitDecl>(DC)) {
14861     S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M))
14862                           ? diag::ext_module_import_not_at_top_level_noop
14863                           : diag::err_module_import_not_at_top_level_fatal)
14864         << M->getFullModuleName() << DC;
14865     S.Diag(cast<Decl>(DC)->getLocStart(),
14866            diag::note_module_import_not_at_top_level) << DC;
14867   } else if (!M->IsExternC && ExternCLoc.isValid()) {
14868     S.Diag(ImportLoc, diag::ext_module_import_in_extern_c)
14869       << M->getFullModuleName();
14870     S.Diag(ExternCLoc, diag::note_module_import_in_extern_c);
14871   }
14872 }
14873 
14874 void Sema::diagnoseMisplacedModuleImport(Module *M, SourceLocation ImportLoc) {
14875   return checkModuleImportContext(*this, M, ImportLoc, CurContext);
14876 }
14877 
14878 DeclResult Sema::ActOnModuleImport(SourceLocation AtLoc,
14879                                    SourceLocation ImportLoc,
14880                                    ModuleIdPath Path) {
14881   Module *Mod =
14882       getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
14883                                    /*IsIncludeDirective=*/false);
14884   if (!Mod)
14885     return true;
14886 
14887   VisibleModules.setVisible(Mod, ImportLoc);
14888 
14889   checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
14890 
14891   // FIXME: we should support importing a submodule within a different submodule
14892   // of the same top-level module. Until we do, make it an error rather than
14893   // silently ignoring the import.
14894   if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule)
14895     Diag(ImportLoc, getLangOpts().CompilingModule
14896                         ? diag::err_module_self_import
14897                         : diag::err_module_import_in_implementation)
14898         << Mod->getFullModuleName() << getLangOpts().CurrentModule;
14899 
14900   SmallVector<SourceLocation, 2> IdentifierLocs;
14901   Module *ModCheck = Mod;
14902   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
14903     // If we've run out of module parents, just drop the remaining identifiers.
14904     // We need the length to be consistent.
14905     if (!ModCheck)
14906       break;
14907     ModCheck = ModCheck->Parent;
14908 
14909     IdentifierLocs.push_back(Path[I].second);
14910   }
14911 
14912   ImportDecl *Import = ImportDecl::Create(Context,
14913                                           Context.getTranslationUnitDecl(),
14914                                           AtLoc.isValid()? AtLoc : ImportLoc,
14915                                           Mod, IdentifierLocs);
14916   Context.getTranslationUnitDecl()->addDecl(Import);
14917   return Import;
14918 }
14919 
14920 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
14921   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
14922 
14923   // Determine whether we're in the #include buffer for a module. The #includes
14924   // in that buffer do not qualify as module imports; they're just an
14925   // implementation detail of us building the module.
14926   //
14927   // FIXME: Should we even get ActOnModuleInclude calls for those?
14928   bool IsInModuleIncludes =
14929       TUKind == TU_Module &&
14930       getSourceManager().isWrittenInMainFile(DirectiveLoc);
14931 
14932   // Similarly, if we're in the implementation of a module, don't
14933   // synthesize an illegal module import. FIXME: Why not?
14934   bool ShouldAddImport =
14935       !IsInModuleIncludes &&
14936       (getLangOpts().CompilingModule ||
14937        getLangOpts().CurrentModule.empty() ||
14938        getLangOpts().CurrentModule != Mod->getTopLevelModuleName());
14939 
14940   // If this module import was due to an inclusion directive, create an
14941   // implicit import declaration to capture it in the AST.
14942   if (ShouldAddImport) {
14943     TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
14944     ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
14945                                                      DirectiveLoc, Mod,
14946                                                      DirectiveLoc);
14947     TU->addDecl(ImportD);
14948     Consumer.HandleImplicitImportDecl(ImportD);
14949   }
14950 
14951   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc);
14952   VisibleModules.setVisible(Mod, DirectiveLoc);
14953 }
14954 
14955 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) {
14956   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext);
14957 
14958   if (getLangOpts().ModulesLocalVisibility)
14959     VisibleModulesStack.push_back(std::move(VisibleModules));
14960   VisibleModules.setVisible(Mod, DirectiveLoc);
14961 }
14962 
14963 void Sema::ActOnModuleEnd(SourceLocation DirectiveLoc, Module *Mod) {
14964   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext);
14965 
14966   if (getLangOpts().ModulesLocalVisibility) {
14967     VisibleModules = std::move(VisibleModulesStack.back());
14968     VisibleModulesStack.pop_back();
14969     VisibleModules.setVisible(Mod, DirectiveLoc);
14970     // Leaving a module hides namespace names, so our visible namespace cache
14971     // is now out of date.
14972     VisibleNamespaceCache.clear();
14973   }
14974 }
14975 
14976 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
14977                                                       Module *Mod) {
14978   // Bail if we're not allowed to implicitly import a module here.
14979   if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery)
14980     return;
14981 
14982   // Create the implicit import declaration.
14983   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
14984   ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
14985                                                    Loc, Mod, Loc);
14986   TU->addDecl(ImportD);
14987   Consumer.HandleImplicitImportDecl(ImportD);
14988 
14989   // Make the module visible.
14990   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc);
14991   VisibleModules.setVisible(Mod, Loc);
14992 }
14993 
14994 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
14995                                       IdentifierInfo* AliasName,
14996                                       SourceLocation PragmaLoc,
14997                                       SourceLocation NameLoc,
14998                                       SourceLocation AliasNameLoc) {
14999   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
15000                                          LookupOrdinaryName);
15001   AsmLabelAttr *Attr =
15002       AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc);
15003 
15004   // If a declaration that:
15005   // 1) declares a function or a variable
15006   // 2) has external linkage
15007   // already exists, add a label attribute to it.
15008   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
15009     if (isDeclExternC(PrevDecl))
15010       PrevDecl->addAttr(Attr);
15011     else
15012       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
15013           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
15014   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
15015   } else
15016     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
15017 }
15018 
15019 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
15020                              SourceLocation PragmaLoc,
15021                              SourceLocation NameLoc) {
15022   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
15023 
15024   if (PrevDecl) {
15025     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
15026   } else {
15027     (void)WeakUndeclaredIdentifiers.insert(
15028       std::pair<IdentifierInfo*,WeakInfo>
15029         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
15030   }
15031 }
15032 
15033 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
15034                                 IdentifierInfo* AliasName,
15035                                 SourceLocation PragmaLoc,
15036                                 SourceLocation NameLoc,
15037                                 SourceLocation AliasNameLoc) {
15038   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
15039                                     LookupOrdinaryName);
15040   WeakInfo W = WeakInfo(Name, NameLoc);
15041 
15042   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
15043     if (!PrevDecl->hasAttr<AliasAttr>())
15044       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
15045         DeclApplyPragmaWeak(TUScope, ND, W);
15046   } else {
15047     (void)WeakUndeclaredIdentifiers.insert(
15048       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
15049   }
15050 }
15051 
15052 Decl *Sema::getObjCDeclContext() const {
15053   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
15054 }
15055 
15056 AvailabilityResult Sema::getCurContextAvailability() const {
15057   const Decl *D = cast_or_null<Decl>(getCurObjCLexicalContext());
15058   if (!D)
15059     return AR_Available;
15060 
15061   // If we are within an Objective-C method, we should consult
15062   // both the availability of the method as well as the
15063   // enclosing class.  If the class is (say) deprecated,
15064   // the entire method is considered deprecated from the
15065   // purpose of checking if the current context is deprecated.
15066   if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
15067     AvailabilityResult R = MD->getAvailability();
15068     if (R != AR_Available)
15069       return R;
15070     D = MD->getClassInterface();
15071   }
15072   // If we are within an Objective-c @implementation, it
15073   // gets the same availability context as the @interface.
15074   else if (const ObjCImplementationDecl *ID =
15075             dyn_cast<ObjCImplementationDecl>(D)) {
15076     D = ID->getClassInterface();
15077   }
15078   // Recover from user error.
15079   return D ? D->getAvailability() : AR_Available;
15080 }
15081