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 "TypeLocBuilder.h"
15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTLambda.h"
18 #include "clang/AST/CXXInheritance.h"
19 #include "clang/AST/CharUnits.h"
20 #include "clang/AST/CommentDiagnostic.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclTemplate.h"
24 #include "clang/AST/EvaluatedExprVisitor.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/StmtCXX.h"
27 #include "clang/Basic/Builtins.h"
28 #include "clang/Basic/PartialDiagnostic.h"
29 #include "clang/Basic/SourceManager.h"
30 #include "clang/Basic/TargetInfo.h"
31 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
32 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
33 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
34 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
35 #include "clang/Sema/CXXFieldCollector.h"
36 #include "clang/Sema/DeclSpec.h"
37 #include "clang/Sema/DelayedDiagnostic.h"
38 #include "clang/Sema/Initialization.h"
39 #include "clang/Sema/Lookup.h"
40 #include "clang/Sema/ParsedTemplate.h"
41 #include "clang/Sema/Scope.h"
42 #include "clang/Sema/ScopeInfo.h"
43 #include "clang/Sema/SemaInternal.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                         bool AllowNonTemplates = true)
70        : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
71          AllowTemplates(AllowTemplates), AllowNonTemplates(AllowNonTemplates) {
72      WantExpressionKeywords = false;
73      WantCXXNamedCasts = false;
74      WantRemainingKeywords = false;
75   }
76 
77   bool ValidateCandidate(const TypoCorrection &candidate) override {
78     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
79       if (!AllowInvalidDecl && ND->isInvalidDecl())
80         return false;
81 
82       if (getAsTypeTemplateDecl(ND))
83         return AllowTemplates;
84 
85       bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
86       if (!IsType)
87         return false;
88 
89       if (AllowNonTemplates)
90         return true;
91 
92       // An injected-class-name of a class template (specialization) is valid
93       // as a template or as a non-template.
94       if (AllowTemplates) {
95         auto *RD = dyn_cast<CXXRecordDecl>(ND);
96         if (!RD || !RD->isInjectedClassName())
97           return false;
98         RD = cast<CXXRecordDecl>(RD->getDeclContext());
99         return RD->getDescribedClassTemplate() ||
100                isa<ClassTemplateSpecializationDecl>(RD);
101       }
102 
103       return false;
104     }
105 
106     return !WantClassName && candidate.isKeyword();
107   }
108 
109  private:
110   bool AllowInvalidDecl;
111   bool WantClassName;
112   bool AllowTemplates;
113   bool AllowNonTemplates;
114 };
115 
116 } // end anonymous namespace
117 
118 /// \brief Determine whether the token kind starts a simple-type-specifier.
119 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
120   switch (Kind) {
121   // FIXME: Take into account the current language when deciding whether a
122   // token kind is a valid type specifier
123   case tok::kw_short:
124   case tok::kw_long:
125   case tok::kw___int64:
126   case tok::kw___int128:
127   case tok::kw_signed:
128   case tok::kw_unsigned:
129   case tok::kw_void:
130   case tok::kw_char:
131   case tok::kw_int:
132   case tok::kw_half:
133   case tok::kw_float:
134   case tok::kw_double:
135   case tok::kw__Float16:
136   case tok::kw___float128:
137   case tok::kw_wchar_t:
138   case tok::kw_bool:
139   case tok::kw___underlying_type:
140   case tok::kw___auto_type:
141     return true;
142 
143   case tok::annot_typename:
144   case tok::kw_char16_t:
145   case tok::kw_char32_t:
146   case tok::kw_typeof:
147   case tok::annot_decltype:
148   case tok::kw_decltype:
149     return getLangOpts().CPlusPlus;
150 
151   default:
152     break;
153   }
154 
155   return false;
156 }
157 
158 namespace {
159 enum class UnqualifiedTypeNameLookupResult {
160   NotFound,
161   FoundNonType,
162   FoundType
163 };
164 } // end anonymous namespace
165 
166 /// \brief Tries to perform unqualified lookup of the type decls in bases for
167 /// dependent class.
168 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
169 /// type decl, \a FoundType if only type decls are found.
170 static UnqualifiedTypeNameLookupResult
171 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II,
172                                 SourceLocation NameLoc,
173                                 const CXXRecordDecl *RD) {
174   if (!RD->hasDefinition())
175     return UnqualifiedTypeNameLookupResult::NotFound;
176   // Look for type decls in base classes.
177   UnqualifiedTypeNameLookupResult FoundTypeDecl =
178       UnqualifiedTypeNameLookupResult::NotFound;
179   for (const auto &Base : RD->bases()) {
180     const CXXRecordDecl *BaseRD = nullptr;
181     if (auto *BaseTT = Base.getType()->getAs<TagType>())
182       BaseRD = BaseTT->getAsCXXRecordDecl();
183     else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
184       // Look for type decls in dependent base classes that have known primary
185       // templates.
186       if (!TST || !TST->isDependentType())
187         continue;
188       auto *TD = TST->getTemplateName().getAsTemplateDecl();
189       if (!TD)
190         continue;
191       if (auto *BasePrimaryTemplate =
192           dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) {
193         if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl())
194           BaseRD = BasePrimaryTemplate;
195         else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) {
196           if (const ClassTemplatePartialSpecializationDecl *PS =
197                   CTD->findPartialSpecialization(Base.getType()))
198             if (PS->getCanonicalDecl() != RD->getCanonicalDecl())
199               BaseRD = PS;
200         }
201       }
202     }
203     if (BaseRD) {
204       for (NamedDecl *ND : BaseRD->lookup(&II)) {
205         if (!isa<TypeDecl>(ND))
206           return UnqualifiedTypeNameLookupResult::FoundNonType;
207         FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
208       }
209       if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) {
210         switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
211         case UnqualifiedTypeNameLookupResult::FoundNonType:
212           return UnqualifiedTypeNameLookupResult::FoundNonType;
213         case UnqualifiedTypeNameLookupResult::FoundType:
214           FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
215           break;
216         case UnqualifiedTypeNameLookupResult::NotFound:
217           break;
218         }
219       }
220     }
221   }
222 
223   return FoundTypeDecl;
224 }
225 
226 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S,
227                                                       const IdentifierInfo &II,
228                                                       SourceLocation NameLoc) {
229   // Lookup in the parent class template context, if any.
230   const CXXRecordDecl *RD = nullptr;
231   UnqualifiedTypeNameLookupResult FoundTypeDecl =
232       UnqualifiedTypeNameLookupResult::NotFound;
233   for (DeclContext *DC = S.CurContext;
234        DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound;
235        DC = DC->getParent()) {
236     // Look for type decls in dependent base classes that have known primary
237     // templates.
238     RD = dyn_cast<CXXRecordDecl>(DC);
239     if (RD && RD->getDescribedClassTemplate())
240       FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
241   }
242   if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType)
243     return nullptr;
244 
245   // We found some types in dependent base classes.  Recover as if the user
246   // wrote 'typename MyClass::II' instead of 'II'.  We'll fully resolve the
247   // lookup during template instantiation.
248   S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
249 
250   ASTContext &Context = S.Context;
251   auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false,
252                                           cast<Type>(Context.getRecordType(RD)));
253   QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
254 
255   CXXScopeSpec SS;
256   SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
257 
258   TypeLocBuilder Builder;
259   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
260   DepTL.setNameLoc(NameLoc);
261   DepTL.setElaboratedKeywordLoc(SourceLocation());
262   DepTL.setQualifierLoc(SS.getWithLocInContext(Context));
263   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
264 }
265 
266 /// \brief If the identifier refers to a type name within this scope,
267 /// return the declaration of that type.
268 ///
269 /// This routine performs ordinary name lookup of the identifier II
270 /// within the given scope, with optional C++ scope specifier SS, to
271 /// determine whether the name refers to a type. If so, returns an
272 /// opaque pointer (actually a QualType) corresponding to that
273 /// type. Otherwise, returns NULL.
274 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
275                              Scope *S, CXXScopeSpec *SS,
276                              bool isClassName, bool HasTrailingDot,
277                              ParsedType ObjectTypePtr,
278                              bool IsCtorOrDtorName,
279                              bool WantNontrivialTypeSourceInfo,
280                              bool IsClassTemplateDeductionContext,
281                              IdentifierInfo **CorrectedII) {
282   // FIXME: Consider allowing this outside C++1z mode as an extension.
283   bool AllowDeducedTemplate = IsClassTemplateDeductionContext &&
284                               getLangOpts().CPlusPlus17 && !IsCtorOrDtorName &&
285                               !isClassName && !HasTrailingDot;
286 
287   // Determine where we will perform name lookup.
288   DeclContext *LookupCtx = nullptr;
289   if (ObjectTypePtr) {
290     QualType ObjectType = ObjectTypePtr.get();
291     if (ObjectType->isRecordType())
292       LookupCtx = computeDeclContext(ObjectType);
293   } else if (SS && SS->isNotEmpty()) {
294     LookupCtx = computeDeclContext(*SS, false);
295 
296     if (!LookupCtx) {
297       if (isDependentScopeSpecifier(*SS)) {
298         // C++ [temp.res]p3:
299         //   A qualified-id that refers to a type and in which the
300         //   nested-name-specifier depends on a template-parameter (14.6.2)
301         //   shall be prefixed by the keyword typename to indicate that the
302         //   qualified-id denotes a type, forming an
303         //   elaborated-type-specifier (7.1.5.3).
304         //
305         // We therefore do not perform any name lookup if the result would
306         // refer to a member of an unknown specialization.
307         if (!isClassName && !IsCtorOrDtorName)
308           return nullptr;
309 
310         // We know from the grammar that this name refers to a type,
311         // so build a dependent node to describe the type.
312         if (WantNontrivialTypeSourceInfo)
313           return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
314 
315         NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
316         QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
317                                        II, NameLoc);
318         return ParsedType::make(T);
319       }
320 
321       return nullptr;
322     }
323 
324     if (!LookupCtx->isDependentContext() &&
325         RequireCompleteDeclContext(*SS, LookupCtx))
326       return nullptr;
327   }
328 
329   // FIXME: LookupNestedNameSpecifierName isn't the right kind of
330   // lookup for class-names.
331   LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
332                                       LookupOrdinaryName;
333   LookupResult Result(*this, &II, NameLoc, Kind);
334   if (LookupCtx) {
335     // Perform "qualified" name lookup into the declaration context we
336     // computed, which is either the type of the base of a member access
337     // expression or the declaration context associated with a prior
338     // nested-name-specifier.
339     LookupQualifiedName(Result, LookupCtx);
340 
341     if (ObjectTypePtr && Result.empty()) {
342       // C++ [basic.lookup.classref]p3:
343       //   If the unqualified-id is ~type-name, the type-name is looked up
344       //   in the context of the entire postfix-expression. If the type T of
345       //   the object expression is of a class type C, the type-name is also
346       //   looked up in the scope of class C. At least one of the lookups shall
347       //   find a name that refers to (possibly cv-qualified) T.
348       LookupName(Result, S);
349     }
350   } else {
351     // Perform unqualified name lookup.
352     LookupName(Result, S);
353 
354     // For unqualified lookup in a class template in MSVC mode, look into
355     // dependent base classes where the primary class template is known.
356     if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) {
357       if (ParsedType TypeInBase =
358               recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
359         return TypeInBase;
360     }
361   }
362 
363   NamedDecl *IIDecl = nullptr;
364   switch (Result.getResultKind()) {
365   case LookupResult::NotFound:
366   case LookupResult::NotFoundInCurrentInstantiation:
367     if (CorrectedII) {
368       TypoCorrection Correction =
369           CorrectTypo(Result.getLookupNameInfo(), Kind, S, SS,
370                       llvm::make_unique<TypeNameValidatorCCC>(
371                           true, isClassName, AllowDeducedTemplate),
372                       CTK_ErrorRecovery);
373       IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
374       TemplateTy Template;
375       bool MemberOfUnknownSpecialization;
376       UnqualifiedId TemplateName;
377       TemplateName.setIdentifier(NewII, NameLoc);
378       NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
379       CXXScopeSpec NewSS, *NewSSPtr = SS;
380       if (SS && NNS) {
381         NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
382         NewSSPtr = &NewSS;
383       }
384       if (Correction && (NNS || NewII != &II) &&
385           // Ignore a correction to a template type as the to-be-corrected
386           // identifier is not a template (typo correction for template names
387           // is handled elsewhere).
388           !(getLangOpts().CPlusPlus && NewSSPtr &&
389             isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false,
390                            Template, MemberOfUnknownSpecialization))) {
391         ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
392                                     isClassName, HasTrailingDot, ObjectTypePtr,
393                                     IsCtorOrDtorName,
394                                     WantNontrivialTypeSourceInfo,
395                                     IsClassTemplateDeductionContext);
396         if (Ty) {
397           diagnoseTypo(Correction,
398                        PDiag(diag::err_unknown_type_or_class_name_suggest)
399                          << Result.getLookupName() << isClassName);
400           if (SS && NNS)
401             SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
402           *CorrectedII = NewII;
403           return Ty;
404         }
405       }
406     }
407     // If typo correction failed or was not performed, fall through
408     LLVM_FALLTHROUGH;
409   case LookupResult::FoundOverloaded:
410   case LookupResult::FoundUnresolvedValue:
411     Result.suppressDiagnostics();
412     return nullptr;
413 
414   case LookupResult::Ambiguous:
415     // Recover from type-hiding ambiguities by hiding the type.  We'll
416     // do the lookup again when looking for an object, and we can
417     // diagnose the error then.  If we don't do this, then the error
418     // about hiding the type will be immediately followed by an error
419     // that only makes sense if the identifier was treated like a type.
420     if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
421       Result.suppressDiagnostics();
422       return nullptr;
423     }
424 
425     // Look to see if we have a type anywhere in the list of results.
426     for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
427          Res != ResEnd; ++Res) {
428       if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res) ||
429           (AllowDeducedTemplate && getAsTypeTemplateDecl(*Res))) {
430         if (!IIDecl ||
431             (*Res)->getLocation().getRawEncoding() <
432               IIDecl->getLocation().getRawEncoding())
433           IIDecl = *Res;
434       }
435     }
436 
437     if (!IIDecl) {
438       // None of the entities we found is a type, so there is no way
439       // to even assume that the result is a type. In this case, don't
440       // complain about the ambiguity. The parser will either try to
441       // perform this lookup again (e.g., as an object name), which
442       // will produce the ambiguity, or will complain that it expected
443       // a type name.
444       Result.suppressDiagnostics();
445       return nullptr;
446     }
447 
448     // We found a type within the ambiguous lookup; diagnose the
449     // ambiguity and then return that type. This might be the right
450     // answer, or it might not be, but it suppresses any attempt to
451     // perform the name lookup again.
452     break;
453 
454   case LookupResult::Found:
455     IIDecl = Result.getFoundDecl();
456     break;
457   }
458 
459   assert(IIDecl && "Didn't find decl");
460 
461   QualType T;
462   if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
463     // C++ [class.qual]p2: A lookup that would find the injected-class-name
464     // instead names the constructors of the class, except when naming a class.
465     // This is ill-formed when we're not actually forming a ctor or dtor name.
466     auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);
467     auto *FoundRD = dyn_cast<CXXRecordDecl>(TD);
468     if (!isClassName && !IsCtorOrDtorName && LookupRD && FoundRD &&
469         FoundRD->isInjectedClassName() &&
470         declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent())))
471       Diag(NameLoc, diag::err_out_of_line_qualified_id_type_names_constructor)
472           << &II << /*Type*/1;
473 
474     DiagnoseUseOfDecl(IIDecl, NameLoc);
475 
476     T = Context.getTypeDeclType(TD);
477     MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
478   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
479     (void)DiagnoseUseOfDecl(IDecl, NameLoc);
480     if (!HasTrailingDot)
481       T = Context.getObjCInterfaceType(IDecl);
482   } else if (AllowDeducedTemplate) {
483     if (auto *TD = getAsTypeTemplateDecl(IIDecl))
484       T = Context.getDeducedTemplateSpecializationType(TemplateName(TD),
485                                                        QualType(), false);
486   }
487 
488   if (T.isNull()) {
489     // If it's not plausibly a type, suppress diagnostics.
490     Result.suppressDiagnostics();
491     return nullptr;
492   }
493 
494   // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
495   // constructor or destructor name (in such a case, the scope specifier
496   // will be attached to the enclosing Expr or Decl node).
497   if (SS && SS->isNotEmpty() && !IsCtorOrDtorName &&
498       !isa<ObjCInterfaceDecl>(IIDecl)) {
499     if (WantNontrivialTypeSourceInfo) {
500       // Construct a type with type-source information.
501       TypeLocBuilder Builder;
502       Builder.pushTypeSpec(T).setNameLoc(NameLoc);
503 
504       T = getElaboratedType(ETK_None, *SS, T);
505       ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
506       ElabTL.setElaboratedKeywordLoc(SourceLocation());
507       ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
508       return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
509     } else {
510       T = getElaboratedType(ETK_None, *SS, T);
511     }
512   }
513 
514   return ParsedType::make(T);
515 }
516 
517 // Builds a fake NNS for the given decl context.
518 static NestedNameSpecifier *
519 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) {
520   for (;; DC = DC->getLookupParent()) {
521     DC = DC->getPrimaryContext();
522     auto *ND = dyn_cast<NamespaceDecl>(DC);
523     if (ND && !ND->isInline() && !ND->isAnonymousNamespace())
524       return NestedNameSpecifier::Create(Context, nullptr, ND);
525     else if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
526       return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
527                                          RD->getTypeForDecl());
528     else if (isa<TranslationUnitDecl>(DC))
529       return NestedNameSpecifier::GlobalSpecifier(Context);
530   }
531   llvm_unreachable("something isn't in TU scope?");
532 }
533 
534 /// Find the parent class with dependent bases of the innermost enclosing method
535 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end
536 /// up allowing unqualified dependent type names at class-level, which MSVC
537 /// correctly rejects.
538 static const CXXRecordDecl *
539 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) {
540   for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) {
541     DC = DC->getPrimaryContext();
542     if (const auto *MD = dyn_cast<CXXMethodDecl>(DC))
543       if (MD->getParent()->hasAnyDependentBases())
544         return MD->getParent();
545   }
546   return nullptr;
547 }
548 
549 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II,
550                                           SourceLocation NameLoc,
551                                           bool IsTemplateTypeArg) {
552   assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode");
553 
554   NestedNameSpecifier *NNS = nullptr;
555   if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) {
556     // If we weren't able to parse a default template argument, delay lookup
557     // until instantiation time by making a non-dependent DependentTypeName. We
558     // pretend we saw a NestedNameSpecifier referring to the current scope, and
559     // lookup is retried.
560     // FIXME: This hurts our diagnostic quality, since we get errors like "no
561     // type named 'Foo' in 'current_namespace'" when the user didn't write any
562     // name specifiers.
563     NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext);
564     Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
565   } else if (const CXXRecordDecl *RD =
566                  findRecordWithDependentBasesOfEnclosingMethod(CurContext)) {
567     // Build a DependentNameType that will perform lookup into RD at
568     // instantiation time.
569     NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
570                                       RD->getTypeForDecl());
571 
572     // Diagnose that this identifier was undeclared, and retry the lookup during
573     // template instantiation.
574     Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II
575                                                                       << RD;
576   } else {
577     // This is not a situation that we should recover from.
578     return ParsedType();
579   }
580 
581   QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
582 
583   // Build type location information.  We synthesized the qualifier, so we have
584   // to build a fake NestedNameSpecifierLoc.
585   NestedNameSpecifierLocBuilder NNSLocBuilder;
586   NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc));
587   NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context);
588 
589   TypeLocBuilder Builder;
590   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
591   DepTL.setNameLoc(NameLoc);
592   DepTL.setElaboratedKeywordLoc(SourceLocation());
593   DepTL.setQualifierLoc(QualifierLoc);
594   return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
595 }
596 
597 /// isTagName() - This method is called *for error recovery purposes only*
598 /// to determine if the specified name is a valid tag name ("struct foo").  If
599 /// so, this returns the TST for the tag corresponding to it (TST_enum,
600 /// TST_union, TST_struct, TST_interface, TST_class).  This is used to diagnose
601 /// cases in C where the user forgot to specify the tag.
602 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
603   // Do a tag name lookup in this scope.
604   LookupResult R(*this, &II, SourceLocation(), LookupTagName);
605   LookupName(R, S, false);
606   R.suppressDiagnostics();
607   if (R.getResultKind() == LookupResult::Found)
608     if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
609       switch (TD->getTagKind()) {
610       case TTK_Struct: return DeclSpec::TST_struct;
611       case TTK_Interface: return DeclSpec::TST_interface;
612       case TTK_Union:  return DeclSpec::TST_union;
613       case TTK_Class:  return DeclSpec::TST_class;
614       case TTK_Enum:   return DeclSpec::TST_enum;
615       }
616     }
617 
618   return DeclSpec::TST_unspecified;
619 }
620 
621 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
622 /// if a CXXScopeSpec's type is equal to the type of one of the base classes
623 /// then downgrade the missing typename error to a warning.
624 /// This is needed for MSVC compatibility; Example:
625 /// @code
626 /// template<class T> class A {
627 /// public:
628 ///   typedef int TYPE;
629 /// };
630 /// template<class T> class B : public A<T> {
631 /// public:
632 ///   A<T>::TYPE a; // no typename required because A<T> is a base class.
633 /// };
634 /// @endcode
635 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
636   if (CurContext->isRecord()) {
637     if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
638       return true;
639 
640     const Type *Ty = SS->getScopeRep()->getAsType();
641 
642     CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
643     for (const auto &Base : RD->bases())
644       if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
645         return true;
646     return S->isFunctionPrototypeScope();
647   }
648   return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
649 }
650 
651 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
652                                    SourceLocation IILoc,
653                                    Scope *S,
654                                    CXXScopeSpec *SS,
655                                    ParsedType &SuggestedType,
656                                    bool IsTemplateName) {
657   // Don't report typename errors for editor placeholders.
658   if (II->isEditorPlaceholder())
659     return;
660   // We don't have anything to suggest (yet).
661   SuggestedType = nullptr;
662 
663   // There may have been a typo in the name of the type. Look up typo
664   // results, in case we have something that we can suggest.
665   if (TypoCorrection Corrected =
666           CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS,
667                       llvm::make_unique<TypeNameValidatorCCC>(
668                           false, false, IsTemplateName, !IsTemplateName),
669                       CTK_ErrorRecovery)) {
670     // FIXME: Support error recovery for the template-name case.
671     bool CanRecover = !IsTemplateName;
672     if (Corrected.isKeyword()) {
673       // We corrected to a keyword.
674       diagnoseTypo(Corrected,
675                    PDiag(IsTemplateName ? diag::err_no_template_suggest
676                                         : diag::err_unknown_typename_suggest)
677                        << II);
678       II = Corrected.getCorrectionAsIdentifierInfo();
679     } else {
680       // We found a similarly-named type or interface; suggest that.
681       if (!SS || !SS->isSet()) {
682         diagnoseTypo(Corrected,
683                      PDiag(IsTemplateName ? diag::err_no_template_suggest
684                                           : diag::err_unknown_typename_suggest)
685                          << II, CanRecover);
686       } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
687         std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
688         bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
689                                 II->getName().equals(CorrectedStr);
690         diagnoseTypo(Corrected,
691                      PDiag(IsTemplateName
692                                ? diag::err_no_member_template_suggest
693                                : diag::err_unknown_nested_typename_suggest)
694                          << II << DC << DroppedSpecifier << SS->getRange(),
695                      CanRecover);
696       } else {
697         llvm_unreachable("could not have corrected a typo here");
698       }
699 
700       if (!CanRecover)
701         return;
702 
703       CXXScopeSpec tmpSS;
704       if (Corrected.getCorrectionSpecifier())
705         tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
706                           SourceRange(IILoc));
707       // FIXME: Support class template argument deduction here.
708       SuggestedType =
709           getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S,
710                       tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
711                       /*IsCtorOrDtorName=*/false,
712                       /*NonTrivialTypeSourceInfo=*/true);
713     }
714     return;
715   }
716 
717   if (getLangOpts().CPlusPlus && !IsTemplateName) {
718     // See if II is a class template that the user forgot to pass arguments to.
719     UnqualifiedId Name;
720     Name.setIdentifier(II, IILoc);
721     CXXScopeSpec EmptySS;
722     TemplateTy TemplateResult;
723     bool MemberOfUnknownSpecialization;
724     if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
725                        Name, nullptr, true, TemplateResult,
726                        MemberOfUnknownSpecialization) == TNK_Type_template) {
727       TemplateName TplName = TemplateResult.get();
728       Diag(IILoc, diag::err_template_missing_args)
729         << (int)getTemplateNameKindForDiagnostics(TplName) << TplName;
730       if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) {
731         Diag(TplDecl->getLocation(), diag::note_template_decl_here)
732           << TplDecl->getTemplateParameters()->getSourceRange();
733       }
734       return;
735     }
736   }
737 
738   // FIXME: Should we move the logic that tries to recover from a missing tag
739   // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
740 
741   if (!SS || (!SS->isSet() && !SS->isInvalid()))
742     Diag(IILoc, IsTemplateName ? diag::err_no_template
743                                : diag::err_unknown_typename)
744         << II;
745   else if (DeclContext *DC = computeDeclContext(*SS, false))
746     Diag(IILoc, IsTemplateName ? diag::err_no_member_template
747                                : diag::err_typename_nested_not_found)
748         << II << DC << SS->getRange();
749   else if (isDependentScopeSpecifier(*SS)) {
750     unsigned DiagID = diag::err_typename_missing;
751     if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
752       DiagID = diag::ext_typename_missing;
753 
754     Diag(SS->getRange().getBegin(), DiagID)
755       << SS->getScopeRep() << II->getName()
756       << SourceRange(SS->getRange().getBegin(), IILoc)
757       << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
758     SuggestedType = ActOnTypenameType(S, SourceLocation(),
759                                       *SS, *II, IILoc).get();
760   } else {
761     assert(SS && SS->isInvalid() &&
762            "Invalid scope specifier has already been diagnosed");
763   }
764 }
765 
766 /// \brief Determine whether the given result set contains either a type name
767 /// or
768 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
769   bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
770                        NextToken.is(tok::less);
771 
772   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
773     if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
774       return true;
775 
776     if (CheckTemplate && isa<TemplateDecl>(*I))
777       return true;
778   }
779 
780   return false;
781 }
782 
783 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
784                                     Scope *S, CXXScopeSpec &SS,
785                                     IdentifierInfo *&Name,
786                                     SourceLocation NameLoc) {
787   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
788   SemaRef.LookupParsedName(R, S, &SS);
789   if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
790     StringRef FixItTagName;
791     switch (Tag->getTagKind()) {
792       case TTK_Class:
793         FixItTagName = "class ";
794         break;
795 
796       case TTK_Enum:
797         FixItTagName = "enum ";
798         break;
799 
800       case TTK_Struct:
801         FixItTagName = "struct ";
802         break;
803 
804       case TTK_Interface:
805         FixItTagName = "__interface ";
806         break;
807 
808       case TTK_Union:
809         FixItTagName = "union ";
810         break;
811     }
812 
813     StringRef TagName = FixItTagName.drop_back();
814     SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
815       << Name << TagName << SemaRef.getLangOpts().CPlusPlus
816       << FixItHint::CreateInsertion(NameLoc, FixItTagName);
817 
818     for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
819          I != IEnd; ++I)
820       SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
821         << Name << TagName;
822 
823     // Replace lookup results with just the tag decl.
824     Result.clear(Sema::LookupTagName);
825     SemaRef.LookupParsedName(Result, S, &SS);
826     return true;
827   }
828 
829   return false;
830 }
831 
832 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
833 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
834                                   QualType T, SourceLocation NameLoc) {
835   ASTContext &Context = S.Context;
836 
837   TypeLocBuilder Builder;
838   Builder.pushTypeSpec(T).setNameLoc(NameLoc);
839 
840   T = S.getElaboratedType(ETK_None, SS, T);
841   ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
842   ElabTL.setElaboratedKeywordLoc(SourceLocation());
843   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
844   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
845 }
846 
847 Sema::NameClassification
848 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name,
849                    SourceLocation NameLoc, const Token &NextToken,
850                    bool IsAddressOfOperand,
851                    std::unique_ptr<CorrectionCandidateCallback> CCC) {
852   DeclarationNameInfo NameInfo(Name, NameLoc);
853   ObjCMethodDecl *CurMethod = getCurMethodDecl();
854 
855   if (NextToken.is(tok::coloncolon)) {
856     NestedNameSpecInfo IdInfo(Name, NameLoc, NextToken.getLocation());
857     BuildCXXNestedNameSpecifier(S, IdInfo, false, SS, nullptr, false);
858   } else if (getLangOpts().CPlusPlus && SS.isSet() &&
859              isCurrentClassName(*Name, S, &SS)) {
860     // Per [class.qual]p2, this names the constructors of SS, not the
861     // injected-class-name. We don't have a classification for that.
862     // There's not much point caching this result, since the parser
863     // will reject it later.
864     return NameClassification::Unknown();
865   }
866 
867   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
868   LookupParsedName(Result, S, &SS, !CurMethod);
869 
870   // For unqualified lookup in a class template in MSVC mode, look into
871   // dependent base classes where the primary class template is known.
872   if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) {
873     if (ParsedType TypeInBase =
874             recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc))
875       return TypeInBase;
876   }
877 
878   // Perform lookup for Objective-C instance variables (including automatically
879   // synthesized instance variables), if we're in an Objective-C method.
880   // FIXME: This lookup really, really needs to be folded in to the normal
881   // unqualified lookup mechanism.
882   if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
883     ExprResult E = LookupInObjCMethod(Result, S, Name, true);
884     if (E.get() || E.isInvalid())
885       return E;
886   }
887 
888   bool SecondTry = false;
889   bool IsFilteredTemplateName = false;
890 
891 Corrected:
892   switch (Result.getResultKind()) {
893   case LookupResult::NotFound:
894     // If an unqualified-id is followed by a '(', then we have a function
895     // call.
896     if (!SS.isSet() && NextToken.is(tok::l_paren)) {
897       // In C++, this is an ADL-only call.
898       // FIXME: Reference?
899       if (getLangOpts().CPlusPlus)
900         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
901 
902       // C90 6.3.2.2:
903       //   If the expression that precedes the parenthesized argument list in a
904       //   function call consists solely of an identifier, and if no
905       //   declaration is visible for this identifier, the identifier is
906       //   implicitly declared exactly as if, in the innermost block containing
907       //   the function call, the declaration
908       //
909       //     extern int identifier ();
910       //
911       //   appeared.
912       //
913       // We also allow this in C99 as an extension.
914       if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
915         Result.addDecl(D);
916         Result.resolveKind();
917         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false);
918       }
919     }
920 
921     // In C, we first see whether there is a tag type by the same name, in
922     // which case it's likely that the user just forgot to write "enum",
923     // "struct", or "union".
924     if (!getLangOpts().CPlusPlus && !SecondTry &&
925         isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
926       break;
927     }
928 
929     // Perform typo correction to determine if there is another name that is
930     // close to this name.
931     if (!SecondTry && CCC) {
932       SecondTry = true;
933       if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(),
934                                                  Result.getLookupKind(), S,
935                                                  &SS, std::move(CCC),
936                                                  CTK_ErrorRecovery)) {
937         unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
938         unsigned QualifiedDiag = diag::err_no_member_suggest;
939 
940         NamedDecl *FirstDecl = Corrected.getFoundDecl();
941         NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl();
942         if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
943             UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
944           UnqualifiedDiag = diag::err_no_template_suggest;
945           QualifiedDiag = diag::err_no_member_template_suggest;
946         } else if (UnderlyingFirstDecl &&
947                    (isa<TypeDecl>(UnderlyingFirstDecl) ||
948                     isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
949                     isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
950           UnqualifiedDiag = diag::err_unknown_typename_suggest;
951           QualifiedDiag = diag::err_unknown_nested_typename_suggest;
952         }
953 
954         if (SS.isEmpty()) {
955           diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
956         } else {// FIXME: is this even reachable? Test it.
957           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
958           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
959                                   Name->getName().equals(CorrectedStr);
960           diagnoseTypo(Corrected, PDiag(QualifiedDiag)
961                                     << Name << computeDeclContext(SS, false)
962                                     << DroppedSpecifier << SS.getRange());
963         }
964 
965         // Update the name, so that the caller has the new name.
966         Name = Corrected.getCorrectionAsIdentifierInfo();
967 
968         // Typo correction corrected to a keyword.
969         if (Corrected.isKeyword())
970           return Name;
971 
972         // Also update the LookupResult...
973         // FIXME: This should probably go away at some point
974         Result.clear();
975         Result.setLookupName(Corrected.getCorrection());
976         if (FirstDecl)
977           Result.addDecl(FirstDecl);
978 
979         // If we found an Objective-C instance variable, let
980         // LookupInObjCMethod build the appropriate expression to
981         // reference the ivar.
982         // FIXME: This is a gross hack.
983         if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
984           Result.clear();
985           ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
986           return E;
987         }
988 
989         goto Corrected;
990       }
991     }
992 
993     // We failed to correct; just fall through and let the parser deal with it.
994     Result.suppressDiagnostics();
995     return NameClassification::Unknown();
996 
997   case LookupResult::NotFoundInCurrentInstantiation: {
998     // We performed name lookup into the current instantiation, and there were
999     // dependent bases, so we treat this result the same way as any other
1000     // dependent nested-name-specifier.
1001 
1002     // C++ [temp.res]p2:
1003     //   A name used in a template declaration or definition and that is
1004     //   dependent on a template-parameter is assumed not to name a type
1005     //   unless the applicable name lookup finds a type name or the name is
1006     //   qualified by the keyword typename.
1007     //
1008     // FIXME: If the next token is '<', we might want to ask the parser to
1009     // perform some heroics to see if we actually have a
1010     // template-argument-list, which would indicate a missing 'template'
1011     // keyword here.
1012     return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
1013                                       NameInfo, IsAddressOfOperand,
1014                                       /*TemplateArgs=*/nullptr);
1015   }
1016 
1017   case LookupResult::Found:
1018   case LookupResult::FoundOverloaded:
1019   case LookupResult::FoundUnresolvedValue:
1020     break;
1021 
1022   case LookupResult::Ambiguous:
1023     if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1024         hasAnyAcceptableTemplateNames(Result)) {
1025       // C++ [temp.local]p3:
1026       //   A lookup that finds an injected-class-name (10.2) can result in an
1027       //   ambiguity in certain cases (for example, if it is found in more than
1028       //   one base class). If all of the injected-class-names that are found
1029       //   refer to specializations of the same class template, and if the name
1030       //   is followed by a template-argument-list, the reference refers to the
1031       //   class template itself and not a specialization thereof, and is not
1032       //   ambiguous.
1033       //
1034       // This filtering can make an ambiguous result into an unambiguous one,
1035       // so try again after filtering out template names.
1036       FilterAcceptableTemplateNames(Result);
1037       if (!Result.isAmbiguous()) {
1038         IsFilteredTemplateName = true;
1039         break;
1040       }
1041     }
1042 
1043     // Diagnose the ambiguity and return an error.
1044     return NameClassification::Error();
1045   }
1046 
1047   if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1048       (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) {
1049     // C++ [temp.names]p3:
1050     //   After name lookup (3.4) finds that a name is a template-name or that
1051     //   an operator-function-id or a literal- operator-id refers to a set of
1052     //   overloaded functions any member of which is a function template if
1053     //   this is followed by a <, the < is always taken as the delimiter of a
1054     //   template-argument-list and never as the less-than operator.
1055     if (!IsFilteredTemplateName)
1056       FilterAcceptableTemplateNames(Result);
1057 
1058     if (!Result.empty()) {
1059       bool IsFunctionTemplate;
1060       bool IsVarTemplate;
1061       TemplateName Template;
1062       if (Result.end() - Result.begin() > 1) {
1063         IsFunctionTemplate = true;
1064         Template = Context.getOverloadedTemplateName(Result.begin(),
1065                                                      Result.end());
1066       } else {
1067         TemplateDecl *TD
1068           = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl());
1069         IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
1070         IsVarTemplate = isa<VarTemplateDecl>(TD);
1071 
1072         if (SS.isSet() && !SS.isInvalid())
1073           Template = Context.getQualifiedTemplateName(SS.getScopeRep(),
1074                                                     /*TemplateKeyword=*/false,
1075                                                       TD);
1076         else
1077           Template = TemplateName(TD);
1078       }
1079 
1080       if (IsFunctionTemplate) {
1081         // Function templates always go through overload resolution, at which
1082         // point we'll perform the various checks (e.g., accessibility) we need
1083         // to based on which function we selected.
1084         Result.suppressDiagnostics();
1085 
1086         return NameClassification::FunctionTemplate(Template);
1087       }
1088 
1089       return IsVarTemplate ? NameClassification::VarTemplate(Template)
1090                            : NameClassification::TypeTemplate(Template);
1091     }
1092   }
1093 
1094   NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
1095   if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
1096     DiagnoseUseOfDecl(Type, NameLoc);
1097     MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
1098     QualType T = Context.getTypeDeclType(Type);
1099     if (SS.isNotEmpty())
1100       return buildNestedType(*this, SS, T, NameLoc);
1101     return ParsedType::make(T);
1102   }
1103 
1104   ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
1105   if (!Class) {
1106     // FIXME: It's unfortunate that we don't have a Type node for handling this.
1107     if (ObjCCompatibleAliasDecl *Alias =
1108             dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
1109       Class = Alias->getClassInterface();
1110   }
1111 
1112   if (Class) {
1113     DiagnoseUseOfDecl(Class, NameLoc);
1114 
1115     if (NextToken.is(tok::period)) {
1116       // Interface. <something> is parsed as a property reference expression.
1117       // Just return "unknown" as a fall-through for now.
1118       Result.suppressDiagnostics();
1119       return NameClassification::Unknown();
1120     }
1121 
1122     QualType T = Context.getObjCInterfaceType(Class);
1123     return ParsedType::make(T);
1124   }
1125 
1126   // We can have a type template here if we're classifying a template argument.
1127   if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) &&
1128       !isa<VarTemplateDecl>(FirstDecl))
1129     return NameClassification::TypeTemplate(
1130         TemplateName(cast<TemplateDecl>(FirstDecl)));
1131 
1132   // Check for a tag type hidden by a non-type decl in a few cases where it
1133   // seems likely a type is wanted instead of the non-type that was found.
1134   bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star);
1135   if ((NextToken.is(tok::identifier) ||
1136        (NextIsOp &&
1137         FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
1138       isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
1139     TypeDecl *Type = Result.getAsSingle<TypeDecl>();
1140     DiagnoseUseOfDecl(Type, NameLoc);
1141     QualType T = Context.getTypeDeclType(Type);
1142     if (SS.isNotEmpty())
1143       return buildNestedType(*this, SS, T, NameLoc);
1144     return ParsedType::make(T);
1145   }
1146 
1147   if (FirstDecl->isCXXClassMember())
1148     return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
1149                                            nullptr, S);
1150 
1151   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1152   return BuildDeclarationNameExpr(SS, Result, ADL);
1153 }
1154 
1155 Sema::TemplateNameKindForDiagnostics
1156 Sema::getTemplateNameKindForDiagnostics(TemplateName Name) {
1157   auto *TD = Name.getAsTemplateDecl();
1158   if (!TD)
1159     return TemplateNameKindForDiagnostics::DependentTemplate;
1160   if (isa<ClassTemplateDecl>(TD))
1161     return TemplateNameKindForDiagnostics::ClassTemplate;
1162   if (isa<FunctionTemplateDecl>(TD))
1163     return TemplateNameKindForDiagnostics::FunctionTemplate;
1164   if (isa<VarTemplateDecl>(TD))
1165     return TemplateNameKindForDiagnostics::VarTemplate;
1166   if (isa<TypeAliasTemplateDecl>(TD))
1167     return TemplateNameKindForDiagnostics::AliasTemplate;
1168   if (isa<TemplateTemplateParmDecl>(TD))
1169     return TemplateNameKindForDiagnostics::TemplateTemplateParam;
1170   return TemplateNameKindForDiagnostics::DependentTemplate;
1171 }
1172 
1173 // Determines the context to return to after temporarily entering a
1174 // context.  This depends in an unnecessarily complicated way on the
1175 // exact ordering of callbacks from the parser.
1176 DeclContext *Sema::getContainingDC(DeclContext *DC) {
1177 
1178   // Functions defined inline within classes aren't parsed until we've
1179   // finished parsing the top-level class, so the top-level class is
1180   // the context we'll need to return to.
1181   // A Lambda call operator whose parent is a class must not be treated
1182   // as an inline member function.  A Lambda can be used legally
1183   // either as an in-class member initializer or a default argument.  These
1184   // are parsed once the class has been marked complete and so the containing
1185   // context would be the nested class (when the lambda is defined in one);
1186   // If the class is not complete, then the lambda is being used in an
1187   // ill-formed fashion (such as to specify the width of a bit-field, or
1188   // in an array-bound) - in which case we still want to return the
1189   // lexically containing DC (which could be a nested class).
1190   if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) {
1191     DC = DC->getLexicalParent();
1192 
1193     // A function not defined within a class will always return to its
1194     // lexical context.
1195     if (!isa<CXXRecordDecl>(DC))
1196       return DC;
1197 
1198     // A C++ inline method/friend is parsed *after* the topmost class
1199     // it was declared in is fully parsed ("complete");  the topmost
1200     // class is the context we need to return to.
1201     while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
1202       DC = RD;
1203 
1204     // Return the declaration context of the topmost class the inline method is
1205     // declared in.
1206     return DC;
1207   }
1208 
1209   return DC->getLexicalParent();
1210 }
1211 
1212 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1213   assert(getContainingDC(DC) == CurContext &&
1214       "The next DeclContext should be lexically contained in the current one.");
1215   CurContext = DC;
1216   S->setEntity(DC);
1217 }
1218 
1219 void Sema::PopDeclContext() {
1220   assert(CurContext && "DeclContext imbalance!");
1221 
1222   CurContext = getContainingDC(CurContext);
1223   assert(CurContext && "Popped translation unit!");
1224 }
1225 
1226 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S,
1227                                                                     Decl *D) {
1228   // Unlike PushDeclContext, the context to which we return is not necessarily
1229   // the containing DC of TD, because the new context will be some pre-existing
1230   // TagDecl definition instead of a fresh one.
1231   auto Result = static_cast<SkippedDefinitionContext>(CurContext);
1232   CurContext = cast<TagDecl>(D)->getDefinition();
1233   assert(CurContext && "skipping definition of undefined tag");
1234   // Start lookups from the parent of the current context; we don't want to look
1235   // into the pre-existing complete definition.
1236   S->setEntity(CurContext->getLookupParent());
1237   return Result;
1238 }
1239 
1240 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) {
1241   CurContext = static_cast<decltype(CurContext)>(Context);
1242 }
1243 
1244 /// EnterDeclaratorContext - Used when we must lookup names in the context
1245 /// of a declarator's nested name specifier.
1246 ///
1247 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1248   // C++0x [basic.lookup.unqual]p13:
1249   //   A name used in the definition of a static data member of class
1250   //   X (after the qualified-id of the static member) is looked up as
1251   //   if the name was used in a member function of X.
1252   // C++0x [basic.lookup.unqual]p14:
1253   //   If a variable member of a namespace is defined outside of the
1254   //   scope of its namespace then any name used in the definition of
1255   //   the variable member (after the declarator-id) is looked up as
1256   //   if the definition of the variable member occurred in its
1257   //   namespace.
1258   // Both of these imply that we should push a scope whose context
1259   // is the semantic context of the declaration.  We can't use
1260   // PushDeclContext here because that context is not necessarily
1261   // lexically contained in the current context.  Fortunately,
1262   // the containing scope should have the appropriate information.
1263 
1264   assert(!S->getEntity() && "scope already has entity");
1265 
1266 #ifndef NDEBUG
1267   Scope *Ancestor = S->getParent();
1268   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1269   assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
1270 #endif
1271 
1272   CurContext = DC;
1273   S->setEntity(DC);
1274 }
1275 
1276 void Sema::ExitDeclaratorContext(Scope *S) {
1277   assert(S->getEntity() == CurContext && "Context imbalance!");
1278 
1279   // Switch back to the lexical context.  The safety of this is
1280   // enforced by an assert in EnterDeclaratorContext.
1281   Scope *Ancestor = S->getParent();
1282   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1283   CurContext = Ancestor->getEntity();
1284 
1285   // We don't need to do anything with the scope, which is going to
1286   // disappear.
1287 }
1288 
1289 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
1290   // We assume that the caller has already called
1291   // ActOnReenterTemplateScope so getTemplatedDecl() works.
1292   FunctionDecl *FD = D->getAsFunction();
1293   if (!FD)
1294     return;
1295 
1296   // Same implementation as PushDeclContext, but enters the context
1297   // from the lexical parent, rather than the top-level class.
1298   assert(CurContext == FD->getLexicalParent() &&
1299     "The next DeclContext should be lexically contained in the current one.");
1300   CurContext = FD;
1301   S->setEntity(CurContext);
1302 
1303   for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
1304     ParmVarDecl *Param = FD->getParamDecl(P);
1305     // If the parameter has an identifier, then add it to the scope
1306     if (Param->getIdentifier()) {
1307       S->AddDecl(Param);
1308       IdResolver.AddDecl(Param);
1309     }
1310   }
1311 }
1312 
1313 void Sema::ActOnExitFunctionContext() {
1314   // Same implementation as PopDeclContext, but returns to the lexical parent,
1315   // rather than the top-level class.
1316   assert(CurContext && "DeclContext imbalance!");
1317   CurContext = CurContext->getLexicalParent();
1318   assert(CurContext && "Popped translation unit!");
1319 }
1320 
1321 /// \brief Determine whether we allow overloading of the function
1322 /// PrevDecl with another declaration.
1323 ///
1324 /// This routine determines whether overloading is possible, not
1325 /// whether some new function is actually an overload. It will return
1326 /// true in C++ (where we can always provide overloads) or, as an
1327 /// extension, in C when the previous function is already an
1328 /// overloaded function declaration or has the "overloadable"
1329 /// attribute.
1330 static bool AllowOverloadingOfFunction(LookupResult &Previous,
1331                                        ASTContext &Context,
1332                                        const FunctionDecl *New) {
1333   if (Context.getLangOpts().CPlusPlus)
1334     return true;
1335 
1336   if (Previous.getResultKind() == LookupResult::FoundOverloaded)
1337     return true;
1338 
1339   return Previous.getResultKind() == LookupResult::Found &&
1340          (Previous.getFoundDecl()->hasAttr<OverloadableAttr>() ||
1341           New->hasAttr<OverloadableAttr>());
1342 }
1343 
1344 /// Add this decl to the scope shadowed decl chains.
1345 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
1346   // Move up the scope chain until we find the nearest enclosing
1347   // non-transparent context. The declaration will be introduced into this
1348   // scope.
1349   while (S->getEntity() && S->getEntity()->isTransparentContext())
1350     S = S->getParent();
1351 
1352   // Add scoped declarations into their context, so that they can be
1353   // found later. Declarations without a context won't be inserted
1354   // into any context.
1355   if (AddToContext)
1356     CurContext->addDecl(D);
1357 
1358   // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1359   // are function-local declarations.
1360   if (getLangOpts().CPlusPlus && D->isOutOfLine() &&
1361       !D->getDeclContext()->getRedeclContext()->Equals(
1362         D->getLexicalDeclContext()->getRedeclContext()) &&
1363       !D->getLexicalDeclContext()->isFunctionOrMethod())
1364     return;
1365 
1366   // Template instantiations should also not be pushed into scope.
1367   if (isa<FunctionDecl>(D) &&
1368       cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
1369     return;
1370 
1371   // If this replaces anything in the current scope,
1372   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1373                                IEnd = IdResolver.end();
1374   for (; I != IEnd; ++I) {
1375     if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1376       S->RemoveDecl(*I);
1377       IdResolver.RemoveDecl(*I);
1378 
1379       // Should only need to replace one decl.
1380       break;
1381     }
1382   }
1383 
1384   S->AddDecl(D);
1385 
1386   if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1387     // Implicitly-generated labels may end up getting generated in an order that
1388     // isn't strictly lexical, which breaks name lookup. Be careful to insert
1389     // the label at the appropriate place in the identifier chain.
1390     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
1391       DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
1392       if (IDC == CurContext) {
1393         if (!S->isDeclScope(*I))
1394           continue;
1395       } else if (IDC->Encloses(CurContext))
1396         break;
1397     }
1398 
1399     IdResolver.InsertDeclAfter(I, D);
1400   } else {
1401     IdResolver.AddDecl(D);
1402   }
1403 }
1404 
1405 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
1406   if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope)
1407     TUScope->AddDecl(D);
1408 }
1409 
1410 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
1411                          bool AllowInlineNamespace) {
1412   return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
1413 }
1414 
1415 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1416   DeclContext *TargetDC = DC->getPrimaryContext();
1417   do {
1418     if (DeclContext *ScopeDC = S->getEntity())
1419       if (ScopeDC->getPrimaryContext() == TargetDC)
1420         return S;
1421   } while ((S = S->getParent()));
1422 
1423   return nullptr;
1424 }
1425 
1426 static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1427                                             DeclContext*,
1428                                             ASTContext&);
1429 
1430 /// Filters out lookup results that don't fall within the given scope
1431 /// as determined by isDeclInScope.
1432 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1433                                 bool ConsiderLinkage,
1434                                 bool AllowInlineNamespace) {
1435   LookupResult::Filter F = R.makeFilter();
1436   while (F.hasNext()) {
1437     NamedDecl *D = F.next();
1438 
1439     if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
1440       continue;
1441 
1442     if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
1443       continue;
1444 
1445     F.erase();
1446   }
1447 
1448   F.done();
1449 }
1450 
1451 /// We've determined that \p New is a redeclaration of \p Old. Check that they
1452 /// have compatible owning modules.
1453 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) {
1454   // FIXME: The Modules TS is not clear about how friend declarations are
1455   // to be treated. It's not meaningful to have different owning modules for
1456   // linkage in redeclarations of the same entity, so for now allow the
1457   // redeclaration and change the owning modules to match.
1458   if (New->getFriendObjectKind() &&
1459       Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) {
1460     New->setLocalOwningModule(Old->getOwningModule());
1461     makeMergedDefinitionVisible(New);
1462     return false;
1463   }
1464 
1465   Module *NewM = New->getOwningModule();
1466   Module *OldM = Old->getOwningModule();
1467   if (NewM == OldM)
1468     return false;
1469 
1470   // FIXME: Check proclaimed-ownership-declarations here too.
1471   bool NewIsModuleInterface = NewM && NewM->Kind == Module::ModuleInterfaceUnit;
1472   bool OldIsModuleInterface = OldM && OldM->Kind == Module::ModuleInterfaceUnit;
1473   if (NewIsModuleInterface || OldIsModuleInterface) {
1474     // C++ Modules TS [basic.def.odr] 6.2/6.7 [sic]:
1475     //   if a declaration of D [...] appears in the purview of a module, all
1476     //   other such declarations shall appear in the purview of the same module
1477     Diag(New->getLocation(), diag::err_mismatched_owning_module)
1478       << New
1479       << NewIsModuleInterface
1480       << (NewIsModuleInterface ? NewM->getFullModuleName() : "")
1481       << OldIsModuleInterface
1482       << (OldIsModuleInterface ? OldM->getFullModuleName() : "");
1483     Diag(Old->getLocation(), diag::note_previous_declaration);
1484     New->setInvalidDecl();
1485     return true;
1486   }
1487 
1488   return false;
1489 }
1490 
1491 static bool isUsingDecl(NamedDecl *D) {
1492   return isa<UsingShadowDecl>(D) ||
1493          isa<UnresolvedUsingTypenameDecl>(D) ||
1494          isa<UnresolvedUsingValueDecl>(D);
1495 }
1496 
1497 /// Removes using shadow declarations from the lookup results.
1498 static void RemoveUsingDecls(LookupResult &R) {
1499   LookupResult::Filter F = R.makeFilter();
1500   while (F.hasNext())
1501     if (isUsingDecl(F.next()))
1502       F.erase();
1503 
1504   F.done();
1505 }
1506 
1507 /// \brief Check for this common pattern:
1508 /// @code
1509 /// class S {
1510 ///   S(const S&); // DO NOT IMPLEMENT
1511 ///   void operator=(const S&); // DO NOT IMPLEMENT
1512 /// };
1513 /// @endcode
1514 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1515   // FIXME: Should check for private access too but access is set after we get
1516   // the decl here.
1517   if (D->doesThisDeclarationHaveABody())
1518     return false;
1519 
1520   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1521     return CD->isCopyConstructor();
1522   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1523     return Method->isCopyAssignmentOperator();
1524   return false;
1525 }
1526 
1527 // We need this to handle
1528 //
1529 // typedef struct {
1530 //   void *foo() { return 0; }
1531 // } A;
1532 //
1533 // When we see foo we don't know if after the typedef we will get 'A' or '*A'
1534 // for example. If 'A', foo will have external linkage. If we have '*A',
1535 // foo will have no linkage. Since we can't know until we get to the end
1536 // of the typedef, this function finds out if D might have non-external linkage.
1537 // Callers should verify at the end of the TU if it D has external linkage or
1538 // not.
1539 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1540   const DeclContext *DC = D->getDeclContext();
1541   while (!DC->isTranslationUnit()) {
1542     if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1543       if (!RD->hasNameForLinkage())
1544         return true;
1545     }
1546     DC = DC->getParent();
1547   }
1548 
1549   return !D->isExternallyVisible();
1550 }
1551 
1552 // FIXME: This needs to be refactored; some other isInMainFile users want
1553 // these semantics.
1554 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1555   if (S.TUKind != TU_Complete)
1556     return false;
1557   return S.SourceMgr.isInMainFile(Loc);
1558 }
1559 
1560 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1561   assert(D);
1562 
1563   if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1564     return false;
1565 
1566   // Ignore all entities declared within templates, and out-of-line definitions
1567   // of members of class templates.
1568   if (D->getDeclContext()->isDependentContext() ||
1569       D->getLexicalDeclContext()->isDependentContext())
1570     return false;
1571 
1572   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1573     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1574       return false;
1575     // A non-out-of-line declaration of a member specialization was implicitly
1576     // instantiated; it's the out-of-line declaration that we're interested in.
1577     if (FD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1578         FD->getMemberSpecializationInfo() && !FD->isOutOfLine())
1579       return false;
1580 
1581     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1582       if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1583         return false;
1584     } else {
1585       // 'static inline' functions are defined in headers; don't warn.
1586       if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
1587         return false;
1588     }
1589 
1590     if (FD->doesThisDeclarationHaveABody() &&
1591         Context.DeclMustBeEmitted(FD))
1592       return false;
1593   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1594     // Constants and utility variables are defined in headers with internal
1595     // linkage; don't warn.  (Unlike functions, there isn't a convenient marker
1596     // like "inline".)
1597     if (!isMainFileLoc(*this, VD->getLocation()))
1598       return false;
1599 
1600     if (Context.DeclMustBeEmitted(VD))
1601       return false;
1602 
1603     if (VD->isStaticDataMember() &&
1604         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1605       return false;
1606     if (VD->isStaticDataMember() &&
1607         VD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1608         VD->getMemberSpecializationInfo() && !VD->isOutOfLine())
1609       return false;
1610 
1611     if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation()))
1612       return false;
1613   } else {
1614     return false;
1615   }
1616 
1617   // Only warn for unused decls internal to the translation unit.
1618   // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1619   // for inline functions defined in the main source file, for instance.
1620   return mightHaveNonExternalLinkage(D);
1621 }
1622 
1623 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
1624   if (!D)
1625     return;
1626 
1627   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1628     const FunctionDecl *First = FD->getFirstDecl();
1629     if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1630       return; // First should already be in the vector.
1631   }
1632 
1633   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1634     const VarDecl *First = VD->getFirstDecl();
1635     if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1636       return; // First should already be in the vector.
1637   }
1638 
1639   if (ShouldWarnIfUnusedFileScopedDecl(D))
1640     UnusedFileScopedDecls.push_back(D);
1641 }
1642 
1643 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
1644   if (D->isInvalidDecl())
1645     return false;
1646 
1647   bool Referenced = false;
1648   if (auto *DD = dyn_cast<DecompositionDecl>(D)) {
1649     // For a decomposition declaration, warn if none of the bindings are
1650     // referenced, instead of if the variable itself is referenced (which
1651     // it is, by the bindings' expressions).
1652     for (auto *BD : DD->bindings()) {
1653       if (BD->isReferenced()) {
1654         Referenced = true;
1655         break;
1656       }
1657     }
1658   } else if (!D->getDeclName()) {
1659     return false;
1660   } else if (D->isReferenced() || D->isUsed()) {
1661     Referenced = true;
1662   }
1663 
1664   if (Referenced || D->hasAttr<UnusedAttr>() ||
1665       D->hasAttr<ObjCPreciseLifetimeAttr>())
1666     return false;
1667 
1668   if (isa<LabelDecl>(D))
1669     return true;
1670 
1671   // Except for labels, we only care about unused decls that are local to
1672   // functions.
1673   bool WithinFunction = D->getDeclContext()->isFunctionOrMethod();
1674   if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext()))
1675     // For dependent types, the diagnostic is deferred.
1676     WithinFunction =
1677         WithinFunction || (R->isLocalClass() && !R->isDependentType());
1678   if (!WithinFunction)
1679     return false;
1680 
1681   if (isa<TypedefNameDecl>(D))
1682     return true;
1683 
1684   // White-list anything that isn't a local variable.
1685   if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D))
1686     return false;
1687 
1688   // Types of valid local variables should be complete, so this should succeed.
1689   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1690 
1691     // White-list anything with an __attribute__((unused)) type.
1692     const auto *Ty = VD->getType().getTypePtr();
1693 
1694     // Only look at the outermost level of typedef.
1695     if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
1696       if (TT->getDecl()->hasAttr<UnusedAttr>())
1697         return false;
1698     }
1699 
1700     // If we failed to complete the type for some reason, or if the type is
1701     // dependent, don't diagnose the variable.
1702     if (Ty->isIncompleteType() || Ty->isDependentType())
1703       return false;
1704 
1705     // Look at the element type to ensure that the warning behaviour is
1706     // consistent for both scalars and arrays.
1707     Ty = Ty->getBaseElementTypeUnsafe();
1708 
1709     if (const TagType *TT = Ty->getAs<TagType>()) {
1710       const TagDecl *Tag = TT->getDecl();
1711       if (Tag->hasAttr<UnusedAttr>())
1712         return false;
1713 
1714       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
1715         if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
1716           return false;
1717 
1718         if (const Expr *Init = VD->getInit()) {
1719           if (const ExprWithCleanups *Cleanups =
1720                   dyn_cast<ExprWithCleanups>(Init))
1721             Init = Cleanups->getSubExpr();
1722           const CXXConstructExpr *Construct =
1723             dyn_cast<CXXConstructExpr>(Init);
1724           if (Construct && !Construct->isElidable()) {
1725             CXXConstructorDecl *CD = Construct->getConstructor();
1726             if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() &&
1727                 (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
1728               return false;
1729           }
1730         }
1731       }
1732     }
1733 
1734     // TODO: __attribute__((unused)) templates?
1735   }
1736 
1737   return true;
1738 }
1739 
1740 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1741                                      FixItHint &Hint) {
1742   if (isa<LabelDecl>(D)) {
1743     SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
1744                 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
1745     if (AfterColon.isInvalid())
1746       return;
1747     Hint = FixItHint::CreateRemoval(CharSourceRange::
1748                                     getCharRange(D->getLocStart(), AfterColon));
1749   }
1750 }
1751 
1752 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1753   if (D->getTypeForDecl()->isDependentType())
1754     return;
1755 
1756   for (auto *TmpD : D->decls()) {
1757     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1758       DiagnoseUnusedDecl(T);
1759     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1760       DiagnoseUnusedNestedTypedefs(R);
1761   }
1762 }
1763 
1764 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1765 /// unless they are marked attr(unused).
1766 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1767   if (!ShouldDiagnoseUnusedDecl(D))
1768     return;
1769 
1770   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1771     // typedefs can be referenced later on, so the diagnostics are emitted
1772     // at end-of-translation-unit.
1773     UnusedLocalTypedefNameCandidates.insert(TD);
1774     return;
1775   }
1776 
1777   FixItHint Hint;
1778   GenerateFixForUnusedDecl(D, Context, Hint);
1779 
1780   unsigned DiagID;
1781   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1782     DiagID = diag::warn_unused_exception_param;
1783   else if (isa<LabelDecl>(D))
1784     DiagID = diag::warn_unused_label;
1785   else
1786     DiagID = diag::warn_unused_variable;
1787 
1788   Diag(D->getLocation(), DiagID) << D << Hint;
1789 }
1790 
1791 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1792   // Verify that we have no forward references left.  If so, there was a goto
1793   // or address of a label taken, but no definition of it.  Label fwd
1794   // definitions are indicated with a null substmt which is also not a resolved
1795   // MS inline assembly label name.
1796   bool Diagnose = false;
1797   if (L->isMSAsmLabel())
1798     Diagnose = !L->isResolvedMSAsmLabel();
1799   else
1800     Diagnose = L->getStmt() == nullptr;
1801   if (Diagnose)
1802     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1803 }
1804 
1805 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1806   S->mergeNRVOIntoParent();
1807 
1808   if (S->decl_empty()) return;
1809   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1810          "Scope shouldn't contain decls!");
1811 
1812   for (auto *TmpD : S->decls()) {
1813     assert(TmpD && "This decl didn't get pushed??");
1814 
1815     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1816     NamedDecl *D = cast<NamedDecl>(TmpD);
1817 
1818     // Diagnose unused variables in this scope.
1819     if (!S->hasUnrecoverableErrorOccurred()) {
1820       DiagnoseUnusedDecl(D);
1821       if (const auto *RD = dyn_cast<RecordDecl>(D))
1822         DiagnoseUnusedNestedTypedefs(RD);
1823     }
1824 
1825     if (!D->getDeclName()) continue;
1826 
1827     // If this was a forward reference to a label, verify it was defined.
1828     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1829       CheckPoppedLabel(LD, *this);
1830 
1831     // Remove this name from our lexical scope, and warn on it if we haven't
1832     // already.
1833     IdResolver.RemoveDecl(D);
1834     auto ShadowI = ShadowingDecls.find(D);
1835     if (ShadowI != ShadowingDecls.end()) {
1836       if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) {
1837         Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field)
1838             << D << FD << FD->getParent();
1839         Diag(FD->getLocation(), diag::note_previous_declaration);
1840       }
1841       ShadowingDecls.erase(ShadowI);
1842     }
1843   }
1844 }
1845 
1846 /// \brief Look for an Objective-C class in the translation unit.
1847 ///
1848 /// \param Id The name of the Objective-C class we're looking for. If
1849 /// typo-correction fixes this name, the Id will be updated
1850 /// to the fixed name.
1851 ///
1852 /// \param IdLoc The location of the name in the translation unit.
1853 ///
1854 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1855 /// if there is no class with the given name.
1856 ///
1857 /// \returns The declaration of the named Objective-C class, or NULL if the
1858 /// class could not be found.
1859 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1860                                               SourceLocation IdLoc,
1861                                               bool DoTypoCorrection) {
1862   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1863   // creation from this context.
1864   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1865 
1866   if (!IDecl && DoTypoCorrection) {
1867     // Perform typo correction at the given location, but only if we
1868     // find an Objective-C class name.
1869     if (TypoCorrection C = CorrectTypo(
1870             DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr,
1871             llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(),
1872             CTK_ErrorRecovery)) {
1873       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1874       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1875       Id = IDecl->getIdentifier();
1876     }
1877   }
1878   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1879   // This routine must always return a class definition, if any.
1880   if (Def && Def->getDefinition())
1881       Def = Def->getDefinition();
1882   return Def;
1883 }
1884 
1885 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
1886 /// from S, where a non-field would be declared. This routine copes
1887 /// with the difference between C and C++ scoping rules in structs and
1888 /// unions. For example, the following code is well-formed in C but
1889 /// ill-formed in C++:
1890 /// @code
1891 /// struct S6 {
1892 ///   enum { BAR } e;
1893 /// };
1894 ///
1895 /// void test_S6() {
1896 ///   struct S6 a;
1897 ///   a.e = BAR;
1898 /// }
1899 /// @endcode
1900 /// For the declaration of BAR, this routine will return a different
1901 /// scope. The scope S will be the scope of the unnamed enumeration
1902 /// within S6. In C++, this routine will return the scope associated
1903 /// with S6, because the enumeration's scope is a transparent
1904 /// context but structures can contain non-field names. In C, this
1905 /// routine will return the translation unit scope, since the
1906 /// enumeration's scope is a transparent context and structures cannot
1907 /// contain non-field names.
1908 Scope *Sema::getNonFieldDeclScope(Scope *S) {
1909   while (((S->getFlags() & Scope::DeclScope) == 0) ||
1910          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
1911          (S->isClassScope() && !getLangOpts().CPlusPlus))
1912     S = S->getParent();
1913   return S;
1914 }
1915 
1916 /// \brief Looks up the declaration of "struct objc_super" and
1917 /// saves it for later use in building builtin declaration of
1918 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1919 /// pre-existing declaration exists no action takes place.
1920 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1921                                         IdentifierInfo *II) {
1922   if (!II->isStr("objc_msgSendSuper"))
1923     return;
1924   ASTContext &Context = ThisSema.Context;
1925 
1926   LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1927                       SourceLocation(), Sema::LookupTagName);
1928   ThisSema.LookupName(Result, S);
1929   if (Result.getResultKind() == LookupResult::Found)
1930     if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1931       Context.setObjCSuperType(Context.getTagDeclType(TD));
1932 }
1933 
1934 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) {
1935   switch (Error) {
1936   case ASTContext::GE_None:
1937     return "";
1938   case ASTContext::GE_Missing_stdio:
1939     return "stdio.h";
1940   case ASTContext::GE_Missing_setjmp:
1941     return "setjmp.h";
1942   case ASTContext::GE_Missing_ucontext:
1943     return "ucontext.h";
1944   }
1945   llvm_unreachable("unhandled error kind");
1946 }
1947 
1948 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1949 /// file scope.  lazily create a decl for it. ForRedeclaration is true
1950 /// if we're creating this built-in in anticipation of redeclaring the
1951 /// built-in.
1952 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1953                                      Scope *S, bool ForRedeclaration,
1954                                      SourceLocation Loc) {
1955   LookupPredefedObjCSuperType(*this, S, II);
1956 
1957   ASTContext::GetBuiltinTypeError Error;
1958   QualType R = Context.GetBuiltinType(ID, Error);
1959   if (Error) {
1960     if (ForRedeclaration)
1961       Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
1962           << getHeaderName(Error) << Context.BuiltinInfo.getName(ID);
1963     return nullptr;
1964   }
1965 
1966   if (!ForRedeclaration &&
1967       (Context.BuiltinInfo.isPredefinedLibFunction(ID) ||
1968        Context.BuiltinInfo.isHeaderDependentFunction(ID))) {
1969     Diag(Loc, diag::ext_implicit_lib_function_decl)
1970         << Context.BuiltinInfo.getName(ID) << R;
1971     if (Context.BuiltinInfo.getHeaderName(ID) &&
1972         !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc))
1973       Diag(Loc, diag::note_include_header_or_declare)
1974           << Context.BuiltinInfo.getHeaderName(ID)
1975           << Context.BuiltinInfo.getName(ID);
1976   }
1977 
1978   if (R.isNull())
1979     return nullptr;
1980 
1981   DeclContext *Parent = Context.getTranslationUnitDecl();
1982   if (getLangOpts().CPlusPlus) {
1983     LinkageSpecDecl *CLinkageDecl =
1984         LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1985                                 LinkageSpecDecl::lang_c, false);
1986     CLinkageDecl->setImplicit();
1987     Parent->addDecl(CLinkageDecl);
1988     Parent = CLinkageDecl;
1989   }
1990 
1991   FunctionDecl *New = FunctionDecl::Create(Context,
1992                                            Parent,
1993                                            Loc, Loc, II, R, /*TInfo=*/nullptr,
1994                                            SC_Extern,
1995                                            false,
1996                                            R->isFunctionProtoType());
1997   New->setImplicit();
1998 
1999   // Create Decl objects for each parameter, adding them to the
2000   // FunctionDecl.
2001   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
2002     SmallVector<ParmVarDecl*, 16> Params;
2003     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2004       ParmVarDecl *parm =
2005           ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
2006                               nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
2007                               SC_None, nullptr);
2008       parm->setScopeInfo(0, i);
2009       Params.push_back(parm);
2010     }
2011     New->setParams(Params);
2012   }
2013 
2014   AddKnownFunctionAttributes(New);
2015   RegisterLocallyScopedExternCDecl(New, S);
2016 
2017   // TUScope is the translation-unit scope to insert this function into.
2018   // FIXME: This is hideous. We need to teach PushOnScopeChains to
2019   // relate Scopes to DeclContexts, and probably eliminate CurContext
2020   // entirely, but we're not there yet.
2021   DeclContext *SavedContext = CurContext;
2022   CurContext = Parent;
2023   PushOnScopeChains(New, TUScope);
2024   CurContext = SavedContext;
2025   return New;
2026 }
2027 
2028 /// Typedef declarations don't have linkage, but they still denote the same
2029 /// entity if their types are the same.
2030 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
2031 /// isSameEntity.
2032 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
2033                                                      TypedefNameDecl *Decl,
2034                                                      LookupResult &Previous) {
2035   // This is only interesting when modules are enabled.
2036   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
2037     return;
2038 
2039   // Empty sets are uninteresting.
2040   if (Previous.empty())
2041     return;
2042 
2043   LookupResult::Filter Filter = Previous.makeFilter();
2044   while (Filter.hasNext()) {
2045     NamedDecl *Old = Filter.next();
2046 
2047     // Non-hidden declarations are never ignored.
2048     if (S.isVisible(Old))
2049       continue;
2050 
2051     // Declarations of the same entity are not ignored, even if they have
2052     // different linkages.
2053     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2054       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
2055                                 Decl->getUnderlyingType()))
2056         continue;
2057 
2058       // If both declarations give a tag declaration a typedef name for linkage
2059       // purposes, then they declare the same entity.
2060       if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
2061           Decl->getAnonDeclWithTypedefName())
2062         continue;
2063     }
2064 
2065     Filter.erase();
2066   }
2067 
2068   Filter.done();
2069 }
2070 
2071 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
2072   QualType OldType;
2073   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
2074     OldType = OldTypedef->getUnderlyingType();
2075   else
2076     OldType = Context.getTypeDeclType(Old);
2077   QualType NewType = New->getUnderlyingType();
2078 
2079   if (NewType->isVariablyModifiedType()) {
2080     // Must not redefine a typedef with a variably-modified type.
2081     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2082     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
2083       << Kind << NewType;
2084     if (Old->getLocation().isValid())
2085       notePreviousDefinition(Old, New->getLocation());
2086     New->setInvalidDecl();
2087     return true;
2088   }
2089 
2090   if (OldType != NewType &&
2091       !OldType->isDependentType() &&
2092       !NewType->isDependentType() &&
2093       !Context.hasSameType(OldType, NewType)) {
2094     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2095     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
2096       << Kind << NewType << OldType;
2097     if (Old->getLocation().isValid())
2098       notePreviousDefinition(Old, New->getLocation());
2099     New->setInvalidDecl();
2100     return true;
2101   }
2102   return false;
2103 }
2104 
2105 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
2106 /// same name and scope as a previous declaration 'Old'.  Figure out
2107 /// how to resolve this situation, merging decls or emitting
2108 /// diagnostics as appropriate. If there was an error, set New to be invalid.
2109 ///
2110 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
2111                                 LookupResult &OldDecls) {
2112   // If the new decl is known invalid already, don't bother doing any
2113   // merging checks.
2114   if (New->isInvalidDecl()) return;
2115 
2116   // Allow multiple definitions for ObjC built-in typedefs.
2117   // FIXME: Verify the underlying types are equivalent!
2118   if (getLangOpts().ObjC1) {
2119     const IdentifierInfo *TypeID = New->getIdentifier();
2120     switch (TypeID->getLength()) {
2121     default: break;
2122     case 2:
2123       {
2124         if (!TypeID->isStr("id"))
2125           break;
2126         QualType T = New->getUnderlyingType();
2127         if (!T->isPointerType())
2128           break;
2129         if (!T->isVoidPointerType()) {
2130           QualType PT = T->getAs<PointerType>()->getPointeeType();
2131           if (!PT->isStructureType())
2132             break;
2133         }
2134         Context.setObjCIdRedefinitionType(T);
2135         // Install the built-in type for 'id', ignoring the current definition.
2136         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
2137         return;
2138       }
2139     case 5:
2140       if (!TypeID->isStr("Class"))
2141         break;
2142       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
2143       // Install the built-in type for 'Class', ignoring the current definition.
2144       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
2145       return;
2146     case 3:
2147       if (!TypeID->isStr("SEL"))
2148         break;
2149       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
2150       // Install the built-in type for 'SEL', ignoring the current definition.
2151       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
2152       return;
2153     }
2154     // Fall through - the typedef name was not a builtin type.
2155   }
2156 
2157   // Verify the old decl was also a type.
2158   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
2159   if (!Old) {
2160     Diag(New->getLocation(), diag::err_redefinition_different_kind)
2161       << New->getDeclName();
2162 
2163     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
2164     if (OldD->getLocation().isValid())
2165       notePreviousDefinition(OldD, New->getLocation());
2166 
2167     return New->setInvalidDecl();
2168   }
2169 
2170   // If the old declaration is invalid, just give up here.
2171   if (Old->isInvalidDecl())
2172     return New->setInvalidDecl();
2173 
2174   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2175     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
2176     auto *NewTag = New->getAnonDeclWithTypedefName();
2177     NamedDecl *Hidden = nullptr;
2178     if (OldTag && NewTag &&
2179         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
2180         !hasVisibleDefinition(OldTag, &Hidden)) {
2181       // There is a definition of this tag, but it is not visible. Use it
2182       // instead of our tag.
2183       New->setTypeForDecl(OldTD->getTypeForDecl());
2184       if (OldTD->isModed())
2185         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
2186                                     OldTD->getUnderlyingType());
2187       else
2188         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
2189 
2190       // Make the old tag definition visible.
2191       makeMergedDefinitionVisible(Hidden);
2192 
2193       // If this was an unscoped enumeration, yank all of its enumerators
2194       // out of the scope.
2195       if (isa<EnumDecl>(NewTag)) {
2196         Scope *EnumScope = getNonFieldDeclScope(S);
2197         for (auto *D : NewTag->decls()) {
2198           auto *ED = cast<EnumConstantDecl>(D);
2199           assert(EnumScope->isDeclScope(ED));
2200           EnumScope->RemoveDecl(ED);
2201           IdResolver.RemoveDecl(ED);
2202           ED->getLexicalDeclContext()->removeDecl(ED);
2203         }
2204       }
2205     }
2206   }
2207 
2208   // If the typedef types are not identical, reject them in all languages and
2209   // with any extensions enabled.
2210   if (isIncompatibleTypedef(Old, New))
2211     return;
2212 
2213   // The types match.  Link up the redeclaration chain and merge attributes if
2214   // the old declaration was a typedef.
2215   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
2216     New->setPreviousDecl(Typedef);
2217     mergeDeclAttributes(New, Old);
2218   }
2219 
2220   if (getLangOpts().MicrosoftExt)
2221     return;
2222 
2223   if (getLangOpts().CPlusPlus) {
2224     // C++ [dcl.typedef]p2:
2225     //   In a given non-class scope, a typedef specifier can be used to
2226     //   redefine the name of any type declared in that scope to refer
2227     //   to the type to which it already refers.
2228     if (!isa<CXXRecordDecl>(CurContext))
2229       return;
2230 
2231     // C++0x [dcl.typedef]p4:
2232     //   In a given class scope, a typedef specifier can be used to redefine
2233     //   any class-name declared in that scope that is not also a typedef-name
2234     //   to refer to the type to which it already refers.
2235     //
2236     // This wording came in via DR424, which was a correction to the
2237     // wording in DR56, which accidentally banned code like:
2238     //
2239     //   struct S {
2240     //     typedef struct A { } A;
2241     //   };
2242     //
2243     // in the C++03 standard. We implement the C++0x semantics, which
2244     // allow the above but disallow
2245     //
2246     //   struct S {
2247     //     typedef int I;
2248     //     typedef int I;
2249     //   };
2250     //
2251     // since that was the intent of DR56.
2252     if (!isa<TypedefNameDecl>(Old))
2253       return;
2254 
2255     Diag(New->getLocation(), diag::err_redefinition)
2256       << New->getDeclName();
2257     notePreviousDefinition(Old, New->getLocation());
2258     return New->setInvalidDecl();
2259   }
2260 
2261   // Modules always permit redefinition of typedefs, as does C11.
2262   if (getLangOpts().Modules || getLangOpts().C11)
2263     return;
2264 
2265   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2266   // is normally mapped to an error, but can be controlled with
2267   // -Wtypedef-redefinition.  If either the original or the redefinition is
2268   // in a system header, don't emit this for compatibility with GCC.
2269   if (getDiagnostics().getSuppressSystemWarnings() &&
2270       // Some standard types are defined implicitly in Clang (e.g. OpenCL).
2271       (Old->isImplicit() ||
2272        Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2273        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2274     return;
2275 
2276   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2277     << New->getDeclName();
2278   notePreviousDefinition(Old, New->getLocation());
2279 }
2280 
2281 /// DeclhasAttr - returns true if decl Declaration already has the target
2282 /// attribute.
2283 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2284   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2285   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2286   for (const auto *i : D->attrs())
2287     if (i->getKind() == A->getKind()) {
2288       if (Ann) {
2289         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2290           return true;
2291         continue;
2292       }
2293       // FIXME: Don't hardcode this check
2294       if (OA && isa<OwnershipAttr>(i))
2295         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2296       return true;
2297     }
2298 
2299   return false;
2300 }
2301 
2302 static bool isAttributeTargetADefinition(Decl *D) {
2303   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2304     return VD->isThisDeclarationADefinition();
2305   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2306     return TD->isCompleteDefinition() || TD->isBeingDefined();
2307   return true;
2308 }
2309 
2310 /// Merge alignment attributes from \p Old to \p New, taking into account the
2311 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2312 ///
2313 /// \return \c true if any attributes were added to \p New.
2314 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2315   // Look for alignas attributes on Old, and pick out whichever attribute
2316   // specifies the strictest alignment requirement.
2317   AlignedAttr *OldAlignasAttr = nullptr;
2318   AlignedAttr *OldStrictestAlignAttr = nullptr;
2319   unsigned OldAlign = 0;
2320   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2321     // FIXME: We have no way of representing inherited dependent alignments
2322     // in a case like:
2323     //   template<int A, int B> struct alignas(A) X;
2324     //   template<int A, int B> struct alignas(B) X {};
2325     // For now, we just ignore any alignas attributes which are not on the
2326     // definition in such a case.
2327     if (I->isAlignmentDependent())
2328       return false;
2329 
2330     if (I->isAlignas())
2331       OldAlignasAttr = I;
2332 
2333     unsigned Align = I->getAlignment(S.Context);
2334     if (Align > OldAlign) {
2335       OldAlign = Align;
2336       OldStrictestAlignAttr = I;
2337     }
2338   }
2339 
2340   // Look for alignas attributes on New.
2341   AlignedAttr *NewAlignasAttr = nullptr;
2342   unsigned NewAlign = 0;
2343   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2344     if (I->isAlignmentDependent())
2345       return false;
2346 
2347     if (I->isAlignas())
2348       NewAlignasAttr = I;
2349 
2350     unsigned Align = I->getAlignment(S.Context);
2351     if (Align > NewAlign)
2352       NewAlign = Align;
2353   }
2354 
2355   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2356     // Both declarations have 'alignas' attributes. We require them to match.
2357     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2358     // fall short. (If two declarations both have alignas, they must both match
2359     // every definition, and so must match each other if there is a definition.)
2360 
2361     // If either declaration only contains 'alignas(0)' specifiers, then it
2362     // specifies the natural alignment for the type.
2363     if (OldAlign == 0 || NewAlign == 0) {
2364       QualType Ty;
2365       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2366         Ty = VD->getType();
2367       else
2368         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2369 
2370       if (OldAlign == 0)
2371         OldAlign = S.Context.getTypeAlign(Ty);
2372       if (NewAlign == 0)
2373         NewAlign = S.Context.getTypeAlign(Ty);
2374     }
2375 
2376     if (OldAlign != NewAlign) {
2377       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2378         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2379         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2380       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2381     }
2382   }
2383 
2384   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2385     // C++11 [dcl.align]p6:
2386     //   if any declaration of an entity has an alignment-specifier,
2387     //   every defining declaration of that entity shall specify an
2388     //   equivalent alignment.
2389     // C11 6.7.5/7:
2390     //   If the definition of an object does not have an alignment
2391     //   specifier, any other declaration of that object shall also
2392     //   have no alignment specifier.
2393     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2394       << OldAlignasAttr;
2395     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2396       << OldAlignasAttr;
2397   }
2398 
2399   bool AnyAdded = false;
2400 
2401   // Ensure we have an attribute representing the strictest alignment.
2402   if (OldAlign > NewAlign) {
2403     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2404     Clone->setInherited(true);
2405     New->addAttr(Clone);
2406     AnyAdded = true;
2407   }
2408 
2409   // Ensure we have an alignas attribute if the old declaration had one.
2410   if (OldAlignasAttr && !NewAlignasAttr &&
2411       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2412     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2413     Clone->setInherited(true);
2414     New->addAttr(Clone);
2415     AnyAdded = true;
2416   }
2417 
2418   return AnyAdded;
2419 }
2420 
2421 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2422                                const InheritableAttr *Attr,
2423                                Sema::AvailabilityMergeKind AMK) {
2424   // This function copies an attribute Attr from a previous declaration to the
2425   // new declaration D if the new declaration doesn't itself have that attribute
2426   // yet or if that attribute allows duplicates.
2427   // If you're adding a new attribute that requires logic different from
2428   // "use explicit attribute on decl if present, else use attribute from
2429   // previous decl", for example if the attribute needs to be consistent
2430   // between redeclarations, you need to call a custom merge function here.
2431   InheritableAttr *NewAttr = nullptr;
2432   unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
2433   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2434     NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
2435                                       AA->isImplicit(), AA->getIntroduced(),
2436                                       AA->getDeprecated(),
2437                                       AA->getObsoleted(), AA->getUnavailable(),
2438                                       AA->getMessage(), AA->getStrict(),
2439                                       AA->getReplacement(), AMK,
2440                                       AttrSpellingListIndex);
2441   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2442     NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2443                                     AttrSpellingListIndex);
2444   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2445     NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2446                                         AttrSpellingListIndex);
2447   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2448     NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
2449                                    AttrSpellingListIndex);
2450   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2451     NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
2452                                    AttrSpellingListIndex);
2453   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2454     NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
2455                                 FA->getFormatIdx(), FA->getFirstArg(),
2456                                 AttrSpellingListIndex);
2457   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2458     NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
2459                                  AttrSpellingListIndex);
2460   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2461     NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
2462                                        AttrSpellingListIndex,
2463                                        IA->getSemanticSpelling());
2464   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2465     NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(),
2466                                       &S.Context.Idents.get(AA->getSpelling()),
2467                                       AttrSpellingListIndex);
2468   else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) &&
2469            (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) ||
2470             isa<CUDAGlobalAttr>(Attr))) {
2471     // CUDA target attributes are part of function signature for
2472     // overloading purposes and must not be merged.
2473     return false;
2474   } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2475     NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex);
2476   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2477     NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex);
2478   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2479     NewAttr = S.mergeInternalLinkageAttr(
2480         D, InternalLinkageA->getRange(),
2481         &S.Context.Idents.get(InternalLinkageA->getSpelling()),
2482         AttrSpellingListIndex);
2483   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2484     NewAttr = S.mergeCommonAttr(D, CommonA->getRange(),
2485                                 &S.Context.Idents.get(CommonA->getSpelling()),
2486                                 AttrSpellingListIndex);
2487   else if (isa<AlignedAttr>(Attr))
2488     // AlignedAttrs are handled separately, because we need to handle all
2489     // such attributes on a declaration at the same time.
2490     NewAttr = nullptr;
2491   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2492            (AMK == Sema::AMK_Override ||
2493             AMK == Sema::AMK_ProtocolImplementation))
2494     NewAttr = nullptr;
2495   else if (const auto *UA = dyn_cast<UuidAttr>(Attr))
2496     NewAttr = S.mergeUuidAttr(D, UA->getRange(), AttrSpellingListIndex,
2497                               UA->getGuid());
2498   else if (Attr->shouldInheritEvenIfAlreadyPresent() || !DeclHasAttr(D, Attr))
2499     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2500 
2501   if (NewAttr) {
2502     NewAttr->setInherited(true);
2503     D->addAttr(NewAttr);
2504     if (isa<MSInheritanceAttr>(NewAttr))
2505       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2506     return true;
2507   }
2508 
2509   return false;
2510 }
2511 
2512 static const NamedDecl *getDefinition(const Decl *D) {
2513   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2514     return TD->getDefinition();
2515   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2516     const VarDecl *Def = VD->getDefinition();
2517     if (Def)
2518       return Def;
2519     return VD->getActingDefinition();
2520   }
2521   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2522     return FD->getDefinition();
2523   return nullptr;
2524 }
2525 
2526 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2527   for (const auto *Attribute : D->attrs())
2528     if (Attribute->getKind() == Kind)
2529       return true;
2530   return false;
2531 }
2532 
2533 /// checkNewAttributesAfterDef - If we already have a definition, check that
2534 /// there are no new attributes in this declaration.
2535 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2536   if (!New->hasAttrs())
2537     return;
2538 
2539   const NamedDecl *Def = getDefinition(Old);
2540   if (!Def || Def == New)
2541     return;
2542 
2543   AttrVec &NewAttributes = New->getAttrs();
2544   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2545     const Attr *NewAttribute = NewAttributes[I];
2546 
2547     if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) {
2548       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2549         Sema::SkipBodyInfo SkipBody;
2550         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2551 
2552         // If we're skipping this definition, drop the "alias" attribute.
2553         if (SkipBody.ShouldSkip) {
2554           NewAttributes.erase(NewAttributes.begin() + I);
2555           --E;
2556           continue;
2557         }
2558       } else {
2559         VarDecl *VD = cast<VarDecl>(New);
2560         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2561                                 VarDecl::TentativeDefinition
2562                             ? diag::err_alias_after_tentative
2563                             : diag::err_redefinition;
2564         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2565         if (Diag == diag::err_redefinition)
2566           S.notePreviousDefinition(Def, VD->getLocation());
2567         else
2568           S.Diag(Def->getLocation(), diag::note_previous_definition);
2569         VD->setInvalidDecl();
2570       }
2571       ++I;
2572       continue;
2573     }
2574 
2575     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2576       // Tentative definitions are only interesting for the alias check above.
2577       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2578         ++I;
2579         continue;
2580       }
2581     }
2582 
2583     if (hasAttribute(Def, NewAttribute->getKind())) {
2584       ++I;
2585       continue; // regular attr merging will take care of validating this.
2586     }
2587 
2588     if (isa<C11NoReturnAttr>(NewAttribute)) {
2589       // C's _Noreturn is allowed to be added to a function after it is defined.
2590       ++I;
2591       continue;
2592     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2593       if (AA->isAlignas()) {
2594         // C++11 [dcl.align]p6:
2595         //   if any declaration of an entity has an alignment-specifier,
2596         //   every defining declaration of that entity shall specify an
2597         //   equivalent alignment.
2598         // C11 6.7.5/7:
2599         //   If the definition of an object does not have an alignment
2600         //   specifier, any other declaration of that object shall also
2601         //   have no alignment specifier.
2602         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2603           << AA;
2604         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2605           << AA;
2606         NewAttributes.erase(NewAttributes.begin() + I);
2607         --E;
2608         continue;
2609       }
2610     }
2611 
2612     S.Diag(NewAttribute->getLocation(),
2613            diag::warn_attribute_precede_definition);
2614     S.Diag(Def->getLocation(), diag::note_previous_definition);
2615     NewAttributes.erase(NewAttributes.begin() + I);
2616     --E;
2617   }
2618 }
2619 
2620 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2621 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2622                                AvailabilityMergeKind AMK) {
2623   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2624     UsedAttr *NewAttr = OldAttr->clone(Context);
2625     NewAttr->setInherited(true);
2626     New->addAttr(NewAttr);
2627   }
2628 
2629   if (!Old->hasAttrs() && !New->hasAttrs())
2630     return;
2631 
2632   // Attributes declared post-definition are currently ignored.
2633   checkNewAttributesAfterDef(*this, New, Old);
2634 
2635   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2636     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2637       if (OldA->getLabel() != NewA->getLabel()) {
2638         // This redeclaration changes __asm__ label.
2639         Diag(New->getLocation(), diag::err_different_asm_label);
2640         Diag(OldA->getLocation(), diag::note_previous_declaration);
2641       }
2642     } else if (Old->isUsed()) {
2643       // This redeclaration adds an __asm__ label to a declaration that has
2644       // already been ODR-used.
2645       Diag(New->getLocation(), diag::err_late_asm_label_name)
2646         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2647     }
2648   }
2649 
2650   // Re-declaration cannot add abi_tag's.
2651   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2652     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2653       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2654         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2655                       NewTag) == OldAbiTagAttr->tags_end()) {
2656           Diag(NewAbiTagAttr->getLocation(),
2657                diag::err_new_abi_tag_on_redeclaration)
2658               << NewTag;
2659           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2660         }
2661       }
2662     } else {
2663       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2664       Diag(Old->getLocation(), diag::note_previous_declaration);
2665     }
2666   }
2667 
2668   // This redeclaration adds a section attribute.
2669   if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) {
2670     if (auto *VD = dyn_cast<VarDecl>(New)) {
2671       if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) {
2672         Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration);
2673         Diag(Old->getLocation(), diag::note_previous_declaration);
2674       }
2675     }
2676   }
2677 
2678   if (!Old->hasAttrs())
2679     return;
2680 
2681   bool foundAny = New->hasAttrs();
2682 
2683   // Ensure that any moving of objects within the allocated map is done before
2684   // we process them.
2685   if (!foundAny) New->setAttrs(AttrVec());
2686 
2687   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2688     // Ignore deprecated/unavailable/availability attributes if requested.
2689     AvailabilityMergeKind LocalAMK = AMK_None;
2690     if (isa<DeprecatedAttr>(I) ||
2691         isa<UnavailableAttr>(I) ||
2692         isa<AvailabilityAttr>(I)) {
2693       switch (AMK) {
2694       case AMK_None:
2695         continue;
2696 
2697       case AMK_Redeclaration:
2698       case AMK_Override:
2699       case AMK_ProtocolImplementation:
2700         LocalAMK = AMK;
2701         break;
2702       }
2703     }
2704 
2705     // Already handled.
2706     if (isa<UsedAttr>(I))
2707       continue;
2708 
2709     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2710       foundAny = true;
2711   }
2712 
2713   if (mergeAlignedAttrs(*this, New, Old))
2714     foundAny = true;
2715 
2716   if (!foundAny) New->dropAttrs();
2717 }
2718 
2719 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2720 /// to the new one.
2721 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2722                                      const ParmVarDecl *oldDecl,
2723                                      Sema &S) {
2724   // C++11 [dcl.attr.depend]p2:
2725   //   The first declaration of a function shall specify the
2726   //   carries_dependency attribute for its declarator-id if any declaration
2727   //   of the function specifies the carries_dependency attribute.
2728   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2729   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2730     S.Diag(CDA->getLocation(),
2731            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2732     // Find the first declaration of the parameter.
2733     // FIXME: Should we build redeclaration chains for function parameters?
2734     const FunctionDecl *FirstFD =
2735       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2736     const ParmVarDecl *FirstVD =
2737       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2738     S.Diag(FirstVD->getLocation(),
2739            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2740   }
2741 
2742   if (!oldDecl->hasAttrs())
2743     return;
2744 
2745   bool foundAny = newDecl->hasAttrs();
2746 
2747   // Ensure that any moving of objects within the allocated map is
2748   // done before we process them.
2749   if (!foundAny) newDecl->setAttrs(AttrVec());
2750 
2751   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2752     if (!DeclHasAttr(newDecl, I)) {
2753       InheritableAttr *newAttr =
2754         cast<InheritableParamAttr>(I->clone(S.Context));
2755       newAttr->setInherited(true);
2756       newDecl->addAttr(newAttr);
2757       foundAny = true;
2758     }
2759   }
2760 
2761   if (!foundAny) newDecl->dropAttrs();
2762 }
2763 
2764 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
2765                                 const ParmVarDecl *OldParam,
2766                                 Sema &S) {
2767   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
2768     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
2769       if (*Oldnullability != *Newnullability) {
2770         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
2771           << DiagNullabilityKind(
2772                *Newnullability,
2773                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2774                 != 0))
2775           << DiagNullabilityKind(
2776                *Oldnullability,
2777                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2778                 != 0));
2779         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
2780       }
2781     } else {
2782       QualType NewT = NewParam->getType();
2783       NewT = S.Context.getAttributedType(
2784                          AttributedType::getNullabilityAttrKind(*Oldnullability),
2785                          NewT, NewT);
2786       NewParam->setType(NewT);
2787     }
2788   }
2789 }
2790 
2791 namespace {
2792 
2793 /// Used in MergeFunctionDecl to keep track of function parameters in
2794 /// C.
2795 struct GNUCompatibleParamWarning {
2796   ParmVarDecl *OldParm;
2797   ParmVarDecl *NewParm;
2798   QualType PromotedType;
2799 };
2800 
2801 } // end anonymous namespace
2802 
2803 /// getSpecialMember - get the special member enum for a method.
2804 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
2805   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
2806     if (Ctor->isDefaultConstructor())
2807       return Sema::CXXDefaultConstructor;
2808 
2809     if (Ctor->isCopyConstructor())
2810       return Sema::CXXCopyConstructor;
2811 
2812     if (Ctor->isMoveConstructor())
2813       return Sema::CXXMoveConstructor;
2814   } else if (isa<CXXDestructorDecl>(MD)) {
2815     return Sema::CXXDestructor;
2816   } else if (MD->isCopyAssignmentOperator()) {
2817     return Sema::CXXCopyAssignment;
2818   } else if (MD->isMoveAssignmentOperator()) {
2819     return Sema::CXXMoveAssignment;
2820   }
2821 
2822   return Sema::CXXInvalid;
2823 }
2824 
2825 // Determine whether the previous declaration was a definition, implicit
2826 // declaration, or a declaration.
2827 template <typename T>
2828 static std::pair<diag::kind, SourceLocation>
2829 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
2830   diag::kind PrevDiag;
2831   SourceLocation OldLocation = Old->getLocation();
2832   if (Old->isThisDeclarationADefinition())
2833     PrevDiag = diag::note_previous_definition;
2834   else if (Old->isImplicit()) {
2835     PrevDiag = diag::note_previous_implicit_declaration;
2836     if (OldLocation.isInvalid())
2837       OldLocation = New->getLocation();
2838   } else
2839     PrevDiag = diag::note_previous_declaration;
2840   return std::make_pair(PrevDiag, OldLocation);
2841 }
2842 
2843 /// canRedefineFunction - checks if a function can be redefined. Currently,
2844 /// only extern inline functions can be redefined, and even then only in
2845 /// GNU89 mode.
2846 static bool canRedefineFunction(const FunctionDecl *FD,
2847                                 const LangOptions& LangOpts) {
2848   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2849           !LangOpts.CPlusPlus &&
2850           FD->isInlineSpecified() &&
2851           FD->getStorageClass() == SC_Extern);
2852 }
2853 
2854 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2855   const AttributedType *AT = T->getAs<AttributedType>();
2856   while (AT && !AT->isCallingConv())
2857     AT = AT->getModifiedType()->getAs<AttributedType>();
2858   return AT;
2859 }
2860 
2861 template <typename T>
2862 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
2863   const DeclContext *DC = Old->getDeclContext();
2864   if (DC->isRecord())
2865     return false;
2866 
2867   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
2868   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
2869     return true;
2870   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
2871     return true;
2872   return false;
2873 }
2874 
2875 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
2876 static bool isExternC(VarTemplateDecl *) { return false; }
2877 
2878 /// \brief Check whether a redeclaration of an entity introduced by a
2879 /// using-declaration is valid, given that we know it's not an overload
2880 /// (nor a hidden tag declaration).
2881 template<typename ExpectedDecl>
2882 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
2883                                    ExpectedDecl *New) {
2884   // C++11 [basic.scope.declarative]p4:
2885   //   Given a set of declarations in a single declarative region, each of
2886   //   which specifies the same unqualified name,
2887   //   -- they shall all refer to the same entity, or all refer to functions
2888   //      and function templates; or
2889   //   -- exactly one declaration shall declare a class name or enumeration
2890   //      name that is not a typedef name and the other declarations shall all
2891   //      refer to the same variable or enumerator, or all refer to functions
2892   //      and function templates; in this case the class name or enumeration
2893   //      name is hidden (3.3.10).
2894 
2895   // C++11 [namespace.udecl]p14:
2896   //   If a function declaration in namespace scope or block scope has the
2897   //   same name and the same parameter-type-list as a function introduced
2898   //   by a using-declaration, and the declarations do not declare the same
2899   //   function, the program is ill-formed.
2900 
2901   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
2902   if (Old &&
2903       !Old->getDeclContext()->getRedeclContext()->Equals(
2904           New->getDeclContext()->getRedeclContext()) &&
2905       !(isExternC(Old) && isExternC(New)))
2906     Old = nullptr;
2907 
2908   if (!Old) {
2909     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2910     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
2911     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2912     return true;
2913   }
2914   return false;
2915 }
2916 
2917 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
2918                                             const FunctionDecl *B) {
2919   assert(A->getNumParams() == B->getNumParams());
2920 
2921   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
2922     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
2923     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
2924     if (AttrA == AttrB)
2925       return true;
2926     return AttrA && AttrB && AttrA->getType() == AttrB->getType();
2927   };
2928 
2929   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
2930 }
2931 
2932 /// If necessary, adjust the semantic declaration context for a qualified
2933 /// declaration to name the correct inline namespace within the qualifier.
2934 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD,
2935                                                DeclaratorDecl *OldD) {
2936   // The only case where we need to update the DeclContext is when
2937   // redeclaration lookup for a qualified name finds a declaration
2938   // in an inline namespace within the context named by the qualifier:
2939   //
2940   //   inline namespace N { int f(); }
2941   //   int ::f(); // Sema DC needs adjusting from :: to N::.
2942   //
2943   // For unqualified declarations, the semantic context *can* change
2944   // along the redeclaration chain (for local extern declarations,
2945   // extern "C" declarations, and friend declarations in particular).
2946   if (!NewD->getQualifier())
2947     return;
2948 
2949   // NewD is probably already in the right context.
2950   auto *NamedDC = NewD->getDeclContext()->getRedeclContext();
2951   auto *SemaDC = OldD->getDeclContext()->getRedeclContext();
2952   if (NamedDC->Equals(SemaDC))
2953     return;
2954 
2955   assert((NamedDC->InEnclosingNamespaceSetOf(SemaDC) ||
2956           NewD->isInvalidDecl() || OldD->isInvalidDecl()) &&
2957          "unexpected context for redeclaration");
2958 
2959   auto *LexDC = NewD->getLexicalDeclContext();
2960   auto FixSemaDC = [=](NamedDecl *D) {
2961     if (!D)
2962       return;
2963     D->setDeclContext(SemaDC);
2964     D->setLexicalDeclContext(LexDC);
2965   };
2966 
2967   FixSemaDC(NewD);
2968   if (auto *FD = dyn_cast<FunctionDecl>(NewD))
2969     FixSemaDC(FD->getDescribedFunctionTemplate());
2970   else if (auto *VD = dyn_cast<VarDecl>(NewD))
2971     FixSemaDC(VD->getDescribedVarTemplate());
2972 }
2973 
2974 /// MergeFunctionDecl - We just parsed a function 'New' from
2975 /// declarator D which has the same name and scope as a previous
2976 /// declaration 'Old'.  Figure out how to resolve this situation,
2977 /// merging decls or emitting diagnostics as appropriate.
2978 ///
2979 /// In C++, New and Old must be declarations that are not
2980 /// overloaded. Use IsOverload to determine whether New and Old are
2981 /// overloaded, and to select the Old declaration that New should be
2982 /// merged with.
2983 ///
2984 /// Returns true if there was an error, false otherwise.
2985 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2986                              Scope *S, bool MergeTypeWithOld) {
2987   // Verify the old decl was also a function.
2988   FunctionDecl *Old = OldD->getAsFunction();
2989   if (!Old) {
2990     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
2991       if (New->getFriendObjectKind()) {
2992         Diag(New->getLocation(), diag::err_using_decl_friend);
2993         Diag(Shadow->getTargetDecl()->getLocation(),
2994              diag::note_using_decl_target);
2995         Diag(Shadow->getUsingDecl()->getLocation(),
2996              diag::note_using_decl) << 0;
2997         return true;
2998       }
2999 
3000       // Check whether the two declarations might declare the same function.
3001       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
3002         return true;
3003       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
3004     } else {
3005       Diag(New->getLocation(), diag::err_redefinition_different_kind)
3006         << New->getDeclName();
3007       notePreviousDefinition(OldD, New->getLocation());
3008       return true;
3009     }
3010   }
3011 
3012   // If the old declaration is invalid, just give up here.
3013   if (Old->isInvalidDecl())
3014     return true;
3015 
3016   diag::kind PrevDiag;
3017   SourceLocation OldLocation;
3018   std::tie(PrevDiag, OldLocation) =
3019       getNoteDiagForInvalidRedeclaration(Old, New);
3020 
3021   // Don't complain about this if we're in GNU89 mode and the old function
3022   // is an extern inline function.
3023   // Don't complain about specializations. They are not supposed to have
3024   // storage classes.
3025   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
3026       New->getStorageClass() == SC_Static &&
3027       Old->hasExternalFormalLinkage() &&
3028       !New->getTemplateSpecializationInfo() &&
3029       !canRedefineFunction(Old, getLangOpts())) {
3030     if (getLangOpts().MicrosoftExt) {
3031       Diag(New->getLocation(), diag::ext_static_non_static) << New;
3032       Diag(OldLocation, PrevDiag);
3033     } else {
3034       Diag(New->getLocation(), diag::err_static_non_static) << New;
3035       Diag(OldLocation, PrevDiag);
3036       return true;
3037     }
3038   }
3039 
3040   if (New->hasAttr<InternalLinkageAttr>() &&
3041       !Old->hasAttr<InternalLinkageAttr>()) {
3042     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3043         << New->getDeclName();
3044     notePreviousDefinition(Old, New->getLocation());
3045     New->dropAttr<InternalLinkageAttr>();
3046   }
3047 
3048   if (CheckRedeclarationModuleOwnership(New, Old))
3049     return true;
3050 
3051   if (!getLangOpts().CPlusPlus) {
3052     bool OldOvl = Old->hasAttr<OverloadableAttr>();
3053     if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) {
3054       Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch)
3055         << New << OldOvl;
3056 
3057       // Try our best to find a decl that actually has the overloadable
3058       // attribute for the note. In most cases (e.g. programs with only one
3059       // broken declaration/definition), this won't matter.
3060       //
3061       // FIXME: We could do this if we juggled some extra state in
3062       // OverloadableAttr, rather than just removing it.
3063       const Decl *DiagOld = Old;
3064       if (OldOvl) {
3065         auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) {
3066           const auto *A = D->getAttr<OverloadableAttr>();
3067           return A && !A->isImplicit();
3068         });
3069         // If we've implicitly added *all* of the overloadable attrs to this
3070         // chain, emitting a "previous redecl" note is pointless.
3071         DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter;
3072       }
3073 
3074       if (DiagOld)
3075         Diag(DiagOld->getLocation(),
3076              diag::note_attribute_overloadable_prev_overload)
3077           << OldOvl;
3078 
3079       if (OldOvl)
3080         New->addAttr(OverloadableAttr::CreateImplicit(Context));
3081       else
3082         New->dropAttr<OverloadableAttr>();
3083     }
3084   }
3085 
3086   // If a function is first declared with a calling convention, but is later
3087   // declared or defined without one, all following decls assume the calling
3088   // convention of the first.
3089   //
3090   // It's OK if a function is first declared without a calling convention,
3091   // but is later declared or defined with the default calling convention.
3092   //
3093   // To test if either decl has an explicit calling convention, we look for
3094   // AttributedType sugar nodes on the type as written.  If they are missing or
3095   // were canonicalized away, we assume the calling convention was implicit.
3096   //
3097   // Note also that we DO NOT return at this point, because we still have
3098   // other tests to run.
3099   QualType OldQType = Context.getCanonicalType(Old->getType());
3100   QualType NewQType = Context.getCanonicalType(New->getType());
3101   const FunctionType *OldType = cast<FunctionType>(OldQType);
3102   const FunctionType *NewType = cast<FunctionType>(NewQType);
3103   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
3104   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
3105   bool RequiresAdjustment = false;
3106 
3107   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
3108     FunctionDecl *First = Old->getFirstDecl();
3109     const FunctionType *FT =
3110         First->getType().getCanonicalType()->castAs<FunctionType>();
3111     FunctionType::ExtInfo FI = FT->getExtInfo();
3112     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
3113     if (!NewCCExplicit) {
3114       // Inherit the CC from the previous declaration if it was specified
3115       // there but not here.
3116       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
3117       RequiresAdjustment = true;
3118     } else {
3119       // Calling conventions aren't compatible, so complain.
3120       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
3121       Diag(New->getLocation(), diag::err_cconv_change)
3122         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
3123         << !FirstCCExplicit
3124         << (!FirstCCExplicit ? "" :
3125             FunctionType::getNameForCallConv(FI.getCC()));
3126 
3127       // Put the note on the first decl, since it is the one that matters.
3128       Diag(First->getLocation(), diag::note_previous_declaration);
3129       return true;
3130     }
3131   }
3132 
3133   // FIXME: diagnose the other way around?
3134   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
3135     NewTypeInfo = NewTypeInfo.withNoReturn(true);
3136     RequiresAdjustment = true;
3137   }
3138 
3139   // Merge regparm attribute.
3140   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
3141       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
3142     if (NewTypeInfo.getHasRegParm()) {
3143       Diag(New->getLocation(), diag::err_regparm_mismatch)
3144         << NewType->getRegParmType()
3145         << OldType->getRegParmType();
3146       Diag(OldLocation, diag::note_previous_declaration);
3147       return true;
3148     }
3149 
3150     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
3151     RequiresAdjustment = true;
3152   }
3153 
3154   // Merge ns_returns_retained attribute.
3155   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
3156     if (NewTypeInfo.getProducesResult()) {
3157       Diag(New->getLocation(), diag::err_function_attribute_mismatch)
3158           << "'ns_returns_retained'";
3159       Diag(OldLocation, diag::note_previous_declaration);
3160       return true;
3161     }
3162 
3163     NewTypeInfo = NewTypeInfo.withProducesResult(true);
3164     RequiresAdjustment = true;
3165   }
3166 
3167   if (OldTypeInfo.getNoCallerSavedRegs() !=
3168       NewTypeInfo.getNoCallerSavedRegs()) {
3169     if (NewTypeInfo.getNoCallerSavedRegs()) {
3170       AnyX86NoCallerSavedRegistersAttr *Attr =
3171         New->getAttr<AnyX86NoCallerSavedRegistersAttr>();
3172       Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr;
3173       Diag(OldLocation, diag::note_previous_declaration);
3174       return true;
3175     }
3176 
3177     NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true);
3178     RequiresAdjustment = true;
3179   }
3180 
3181   if (RequiresAdjustment) {
3182     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
3183     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
3184     New->setType(QualType(AdjustedType, 0));
3185     NewQType = Context.getCanonicalType(New->getType());
3186     NewType = cast<FunctionType>(NewQType);
3187   }
3188 
3189   // If this redeclaration makes the function inline, we may need to add it to
3190   // UndefinedButUsed.
3191   if (!Old->isInlined() && New->isInlined() &&
3192       !New->hasAttr<GNUInlineAttr>() &&
3193       !getLangOpts().GNUInline &&
3194       Old->isUsed(false) &&
3195       !Old->isDefined() && !New->isThisDeclarationADefinition())
3196     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3197                                            SourceLocation()));
3198 
3199   // If this redeclaration makes it newly gnu_inline, we don't want to warn
3200   // about it.
3201   if (New->hasAttr<GNUInlineAttr>() &&
3202       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
3203     UndefinedButUsed.erase(Old->getCanonicalDecl());
3204   }
3205 
3206   // If pass_object_size params don't match up perfectly, this isn't a valid
3207   // redeclaration.
3208   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
3209       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
3210     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
3211         << New->getDeclName();
3212     Diag(OldLocation, PrevDiag) << Old << Old->getType();
3213     return true;
3214   }
3215 
3216   if (getLangOpts().CPlusPlus) {
3217     // C++1z [over.load]p2
3218     //   Certain function declarations cannot be overloaded:
3219     //     -- Function declarations that differ only in the return type,
3220     //        the exception specification, or both cannot be overloaded.
3221 
3222     // Check the exception specifications match. This may recompute the type of
3223     // both Old and New if it resolved exception specifications, so grab the
3224     // types again after this. Because this updates the type, we do this before
3225     // any of the other checks below, which may update the "de facto" NewQType
3226     // but do not necessarily update the type of New.
3227     if (CheckEquivalentExceptionSpec(Old, New))
3228       return true;
3229     OldQType = Context.getCanonicalType(Old->getType());
3230     NewQType = Context.getCanonicalType(New->getType());
3231 
3232     // Go back to the type source info to compare the declared return types,
3233     // per C++1y [dcl.type.auto]p13:
3234     //   Redeclarations or specializations of a function or function template
3235     //   with a declared return type that uses a placeholder type shall also
3236     //   use that placeholder, not a deduced type.
3237     QualType OldDeclaredReturnType =
3238         (Old->getTypeSourceInfo()
3239              ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3240              : OldType)->getReturnType();
3241     QualType NewDeclaredReturnType =
3242         (New->getTypeSourceInfo()
3243              ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3244              : NewType)->getReturnType();
3245     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
3246         !((NewQType->isDependentType() || OldQType->isDependentType()) &&
3247           New->isLocalExternDecl())) {
3248       QualType ResQT;
3249       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
3250           OldDeclaredReturnType->isObjCObjectPointerType())
3251         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
3252       if (ResQT.isNull()) {
3253         if (New->isCXXClassMember() && New->isOutOfLine())
3254           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
3255               << New << New->getReturnTypeSourceRange();
3256         else
3257           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
3258               << New->getReturnTypeSourceRange();
3259         Diag(OldLocation, PrevDiag) << Old << Old->getType()
3260                                     << Old->getReturnTypeSourceRange();
3261         return true;
3262       }
3263       else
3264         NewQType = ResQT;
3265     }
3266 
3267     QualType OldReturnType = OldType->getReturnType();
3268     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
3269     if (OldReturnType != NewReturnType) {
3270       // If this function has a deduced return type and has already been
3271       // defined, copy the deduced value from the old declaration.
3272       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
3273       if (OldAT && OldAT->isDeduced()) {
3274         New->setType(
3275             SubstAutoType(New->getType(),
3276                           OldAT->isDependentType() ? Context.DependentTy
3277                                                    : OldAT->getDeducedType()));
3278         NewQType = Context.getCanonicalType(
3279             SubstAutoType(NewQType,
3280                           OldAT->isDependentType() ? Context.DependentTy
3281                                                    : OldAT->getDeducedType()));
3282       }
3283     }
3284 
3285     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
3286     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
3287     if (OldMethod && NewMethod) {
3288       // Preserve triviality.
3289       NewMethod->setTrivial(OldMethod->isTrivial());
3290 
3291       // MSVC allows explicit template specialization at class scope:
3292       // 2 CXXMethodDecls referring to the same function will be injected.
3293       // We don't want a redeclaration error.
3294       bool IsClassScopeExplicitSpecialization =
3295                               OldMethod->isFunctionTemplateSpecialization() &&
3296                               NewMethod->isFunctionTemplateSpecialization();
3297       bool isFriend = NewMethod->getFriendObjectKind();
3298 
3299       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
3300           !IsClassScopeExplicitSpecialization) {
3301         //    -- Member function declarations with the same name and the
3302         //       same parameter types cannot be overloaded if any of them
3303         //       is a static member function declaration.
3304         if (OldMethod->isStatic() != NewMethod->isStatic()) {
3305           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
3306           Diag(OldLocation, PrevDiag) << Old << Old->getType();
3307           return true;
3308         }
3309 
3310         // C++ [class.mem]p1:
3311         //   [...] A member shall not be declared twice in the
3312         //   member-specification, except that a nested class or member
3313         //   class template can be declared and then later defined.
3314         if (!inTemplateInstantiation()) {
3315           unsigned NewDiag;
3316           if (isa<CXXConstructorDecl>(OldMethod))
3317             NewDiag = diag::err_constructor_redeclared;
3318           else if (isa<CXXDestructorDecl>(NewMethod))
3319             NewDiag = diag::err_destructor_redeclared;
3320           else if (isa<CXXConversionDecl>(NewMethod))
3321             NewDiag = diag::err_conv_function_redeclared;
3322           else
3323             NewDiag = diag::err_member_redeclared;
3324 
3325           Diag(New->getLocation(), NewDiag);
3326         } else {
3327           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
3328             << New << New->getType();
3329         }
3330         Diag(OldLocation, PrevDiag) << Old << Old->getType();
3331         return true;
3332 
3333       // Complain if this is an explicit declaration of a special
3334       // member that was initially declared implicitly.
3335       //
3336       // As an exception, it's okay to befriend such methods in order
3337       // to permit the implicit constructor/destructor/operator calls.
3338       } else if (OldMethod->isImplicit()) {
3339         if (isFriend) {
3340           NewMethod->setImplicit();
3341         } else {
3342           Diag(NewMethod->getLocation(),
3343                diag::err_definition_of_implicitly_declared_member)
3344             << New << getSpecialMember(OldMethod);
3345           return true;
3346         }
3347       } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) {
3348         Diag(NewMethod->getLocation(),
3349              diag::err_definition_of_explicitly_defaulted_member)
3350           << getSpecialMember(OldMethod);
3351         return true;
3352       }
3353     }
3354 
3355     // C++11 [dcl.attr.noreturn]p1:
3356     //   The first declaration of a function shall specify the noreturn
3357     //   attribute if any declaration of that function specifies the noreturn
3358     //   attribute.
3359     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
3360     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
3361       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
3362       Diag(Old->getFirstDecl()->getLocation(),
3363            diag::note_noreturn_missing_first_decl);
3364     }
3365 
3366     // C++11 [dcl.attr.depend]p2:
3367     //   The first declaration of a function shall specify the
3368     //   carries_dependency attribute for its declarator-id if any declaration
3369     //   of the function specifies the carries_dependency attribute.
3370     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3371     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3372       Diag(CDA->getLocation(),
3373            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3374       Diag(Old->getFirstDecl()->getLocation(),
3375            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3376     }
3377 
3378     // (C++98 8.3.5p3):
3379     //   All declarations for a function shall agree exactly in both the
3380     //   return type and the parameter-type-list.
3381     // We also want to respect all the extended bits except noreturn.
3382 
3383     // noreturn should now match unless the old type info didn't have it.
3384     QualType OldQTypeForComparison = OldQType;
3385     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3386       auto *OldType = OldQType->castAs<FunctionProtoType>();
3387       const FunctionType *OldTypeForComparison
3388         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3389       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3390       assert(OldQTypeForComparison.isCanonical());
3391     }
3392 
3393     if (haveIncompatibleLanguageLinkages(Old, New)) {
3394       // As a special case, retain the language linkage from previous
3395       // declarations of a friend function as an extension.
3396       //
3397       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3398       // and is useful because there's otherwise no way to specify language
3399       // linkage within class scope.
3400       //
3401       // Check cautiously as the friend object kind isn't yet complete.
3402       if (New->getFriendObjectKind() != Decl::FOK_None) {
3403         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3404         Diag(OldLocation, PrevDiag);
3405       } else {
3406         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3407         Diag(OldLocation, PrevDiag);
3408         return true;
3409       }
3410     }
3411 
3412     if (OldQTypeForComparison == NewQType)
3413       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3414 
3415     if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
3416         New->isLocalExternDecl()) {
3417       // It's OK if we couldn't merge types for a local function declaraton
3418       // if either the old or new type is dependent. We'll merge the types
3419       // when we instantiate the function.
3420       return false;
3421     }
3422 
3423     // Fall through for conflicting redeclarations and redefinitions.
3424   }
3425 
3426   // C: Function types need to be compatible, not identical. This handles
3427   // duplicate function decls like "void f(int); void f(enum X);" properly.
3428   if (!getLangOpts().CPlusPlus &&
3429       Context.typesAreCompatible(OldQType, NewQType)) {
3430     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3431     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3432     const FunctionProtoType *OldProto = nullptr;
3433     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3434         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3435       // The old declaration provided a function prototype, but the
3436       // new declaration does not. Merge in the prototype.
3437       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3438       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3439       NewQType =
3440           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3441                                   OldProto->getExtProtoInfo());
3442       New->setType(NewQType);
3443       New->setHasInheritedPrototype();
3444 
3445       // Synthesize parameters with the same types.
3446       SmallVector<ParmVarDecl*, 16> Params;
3447       for (const auto &ParamType : OldProto->param_types()) {
3448         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3449                                                  SourceLocation(), nullptr,
3450                                                  ParamType, /*TInfo=*/nullptr,
3451                                                  SC_None, nullptr);
3452         Param->setScopeInfo(0, Params.size());
3453         Param->setImplicit();
3454         Params.push_back(Param);
3455       }
3456 
3457       New->setParams(Params);
3458     }
3459 
3460     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3461   }
3462 
3463   // GNU C permits a K&R definition to follow a prototype declaration
3464   // if the declared types of the parameters in the K&R definition
3465   // match the types in the prototype declaration, even when the
3466   // promoted types of the parameters from the K&R definition differ
3467   // from the types in the prototype. GCC then keeps the types from
3468   // the prototype.
3469   //
3470   // If a variadic prototype is followed by a non-variadic K&R definition,
3471   // the K&R definition becomes variadic.  This is sort of an edge case, but
3472   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3473   // C99 6.9.1p8.
3474   if (!getLangOpts().CPlusPlus &&
3475       Old->hasPrototype() && !New->hasPrototype() &&
3476       New->getType()->getAs<FunctionProtoType>() &&
3477       Old->getNumParams() == New->getNumParams()) {
3478     SmallVector<QualType, 16> ArgTypes;
3479     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3480     const FunctionProtoType *OldProto
3481       = Old->getType()->getAs<FunctionProtoType>();
3482     const FunctionProtoType *NewProto
3483       = New->getType()->getAs<FunctionProtoType>();
3484 
3485     // Determine whether this is the GNU C extension.
3486     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3487                                                NewProto->getReturnType());
3488     bool LooseCompatible = !MergedReturn.isNull();
3489     for (unsigned Idx = 0, End = Old->getNumParams();
3490          LooseCompatible && Idx != End; ++Idx) {
3491       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3492       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3493       if (Context.typesAreCompatible(OldParm->getType(),
3494                                      NewProto->getParamType(Idx))) {
3495         ArgTypes.push_back(NewParm->getType());
3496       } else if (Context.typesAreCompatible(OldParm->getType(),
3497                                             NewParm->getType(),
3498                                             /*CompareUnqualified=*/true)) {
3499         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3500                                            NewProto->getParamType(Idx) };
3501         Warnings.push_back(Warn);
3502         ArgTypes.push_back(NewParm->getType());
3503       } else
3504         LooseCompatible = false;
3505     }
3506 
3507     if (LooseCompatible) {
3508       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3509         Diag(Warnings[Warn].NewParm->getLocation(),
3510              diag::ext_param_promoted_not_compatible_with_prototype)
3511           << Warnings[Warn].PromotedType
3512           << Warnings[Warn].OldParm->getType();
3513         if (Warnings[Warn].OldParm->getLocation().isValid())
3514           Diag(Warnings[Warn].OldParm->getLocation(),
3515                diag::note_previous_declaration);
3516       }
3517 
3518       if (MergeTypeWithOld)
3519         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3520                                              OldProto->getExtProtoInfo()));
3521       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3522     }
3523 
3524     // Fall through to diagnose conflicting types.
3525   }
3526 
3527   // A function that has already been declared has been redeclared or
3528   // defined with a different type; show an appropriate diagnostic.
3529 
3530   // If the previous declaration was an implicitly-generated builtin
3531   // declaration, then at the very least we should use a specialized note.
3532   unsigned BuiltinID;
3533   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3534     // If it's actually a library-defined builtin function like 'malloc'
3535     // or 'printf', just warn about the incompatible redeclaration.
3536     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3537       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3538       Diag(OldLocation, diag::note_previous_builtin_declaration)
3539         << Old << Old->getType();
3540 
3541       // If this is a global redeclaration, just forget hereafter
3542       // about the "builtin-ness" of the function.
3543       //
3544       // Doing this for local extern declarations is problematic.  If
3545       // the builtin declaration remains visible, a second invalid
3546       // local declaration will produce a hard error; if it doesn't
3547       // remain visible, a single bogus local redeclaration (which is
3548       // actually only a warning) could break all the downstream code.
3549       if (!New->getLexicalDeclContext()->isFunctionOrMethod())
3550         New->getIdentifier()->revertBuiltin();
3551 
3552       return false;
3553     }
3554 
3555     PrevDiag = diag::note_previous_builtin_declaration;
3556   }
3557 
3558   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3559   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3560   return true;
3561 }
3562 
3563 /// \brief Completes the merge of two function declarations that are
3564 /// known to be compatible.
3565 ///
3566 /// This routine handles the merging of attributes and other
3567 /// properties of function declarations from the old declaration to
3568 /// the new declaration, once we know that New is in fact a
3569 /// redeclaration of Old.
3570 ///
3571 /// \returns false
3572 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3573                                         Scope *S, bool MergeTypeWithOld) {
3574   // Merge the attributes
3575   mergeDeclAttributes(New, Old);
3576 
3577   // Merge "pure" flag.
3578   if (Old->isPure())
3579     New->setPure();
3580 
3581   // Merge "used" flag.
3582   if (Old->getMostRecentDecl()->isUsed(false))
3583     New->setIsUsed();
3584 
3585   // Merge attributes from the parameters.  These can mismatch with K&R
3586   // declarations.
3587   if (New->getNumParams() == Old->getNumParams())
3588       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3589         ParmVarDecl *NewParam = New->getParamDecl(i);
3590         ParmVarDecl *OldParam = Old->getParamDecl(i);
3591         mergeParamDeclAttributes(NewParam, OldParam, *this);
3592         mergeParamDeclTypes(NewParam, OldParam, *this);
3593       }
3594 
3595   if (getLangOpts().CPlusPlus)
3596     return MergeCXXFunctionDecl(New, Old, S);
3597 
3598   // Merge the function types so the we get the composite types for the return
3599   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3600   // was visible.
3601   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3602   if (!Merged.isNull() && MergeTypeWithOld)
3603     New->setType(Merged);
3604 
3605   return false;
3606 }
3607 
3608 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3609                                 ObjCMethodDecl *oldMethod) {
3610   // Merge the attributes, including deprecated/unavailable
3611   AvailabilityMergeKind MergeKind =
3612     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3613       ? AMK_ProtocolImplementation
3614       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3615                                                        : AMK_Override;
3616 
3617   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3618 
3619   // Merge attributes from the parameters.
3620   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3621                                        oe = oldMethod->param_end();
3622   for (ObjCMethodDecl::param_iterator
3623          ni = newMethod->param_begin(), ne = newMethod->param_end();
3624        ni != ne && oi != oe; ++ni, ++oi)
3625     mergeParamDeclAttributes(*ni, *oi, *this);
3626 }
3627 
3628 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3629   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3630 
3631   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3632          ? diag::err_redefinition_different_type
3633          : diag::err_redeclaration_different_type)
3634     << New->getDeclName() << New->getType() << Old->getType();
3635 
3636   diag::kind PrevDiag;
3637   SourceLocation OldLocation;
3638   std::tie(PrevDiag, OldLocation)
3639     = getNoteDiagForInvalidRedeclaration(Old, New);
3640   S.Diag(OldLocation, PrevDiag);
3641   New->setInvalidDecl();
3642 }
3643 
3644 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3645 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3646 /// emitting diagnostics as appropriate.
3647 ///
3648 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3649 /// to here in AddInitializerToDecl. We can't check them before the initializer
3650 /// is attached.
3651 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3652                              bool MergeTypeWithOld) {
3653   if (New->isInvalidDecl() || Old->isInvalidDecl())
3654     return;
3655 
3656   QualType MergedT;
3657   if (getLangOpts().CPlusPlus) {
3658     if (New->getType()->isUndeducedType()) {
3659       // We don't know what the new type is until the initializer is attached.
3660       return;
3661     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3662       // These could still be something that needs exception specs checked.
3663       return MergeVarDeclExceptionSpecs(New, Old);
3664     }
3665     // C++ [basic.link]p10:
3666     //   [...] the types specified by all declarations referring to a given
3667     //   object or function shall be identical, except that declarations for an
3668     //   array object can specify array types that differ by the presence or
3669     //   absence of a major array bound (8.3.4).
3670     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3671       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3672       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3673 
3674       // We are merging a variable declaration New into Old. If it has an array
3675       // bound, and that bound differs from Old's bound, we should diagnose the
3676       // mismatch.
3677       if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) {
3678         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3679              PrevVD = PrevVD->getPreviousDecl()) {
3680           const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType());
3681           if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType())
3682             continue;
3683 
3684           if (!Context.hasSameType(NewArray, PrevVDTy))
3685             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3686         }
3687       }
3688 
3689       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3690         if (Context.hasSameType(OldArray->getElementType(),
3691                                 NewArray->getElementType()))
3692           MergedT = New->getType();
3693       }
3694       // FIXME: Check visibility. New is hidden but has a complete type. If New
3695       // has no array bound, it should not inherit one from Old, if Old is not
3696       // visible.
3697       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3698         if (Context.hasSameType(OldArray->getElementType(),
3699                                 NewArray->getElementType()))
3700           MergedT = Old->getType();
3701       }
3702     }
3703     else if (New->getType()->isObjCObjectPointerType() &&
3704                Old->getType()->isObjCObjectPointerType()) {
3705       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3706                                               Old->getType());
3707     }
3708   } else {
3709     // C 6.2.7p2:
3710     //   All declarations that refer to the same object or function shall have
3711     //   compatible type.
3712     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3713   }
3714   if (MergedT.isNull()) {
3715     // It's OK if we couldn't merge types if either type is dependent, for a
3716     // block-scope variable. In other cases (static data members of class
3717     // templates, variable templates, ...), we require the types to be
3718     // equivalent.
3719     // FIXME: The C++ standard doesn't say anything about this.
3720     if ((New->getType()->isDependentType() ||
3721          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3722       // If the old type was dependent, we can't merge with it, so the new type
3723       // becomes dependent for now. We'll reproduce the original type when we
3724       // instantiate the TypeSourceInfo for the variable.
3725       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3726         New->setType(Context.DependentTy);
3727       return;
3728     }
3729     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3730   }
3731 
3732   // Don't actually update the type on the new declaration if the old
3733   // declaration was an extern declaration in a different scope.
3734   if (MergeTypeWithOld)
3735     New->setType(MergedT);
3736 }
3737 
3738 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3739                                   LookupResult &Previous) {
3740   // C11 6.2.7p4:
3741   //   For an identifier with internal or external linkage declared
3742   //   in a scope in which a prior declaration of that identifier is
3743   //   visible, if the prior declaration specifies internal or
3744   //   external linkage, the type of the identifier at the later
3745   //   declaration becomes the composite type.
3746   //
3747   // If the variable isn't visible, we do not merge with its type.
3748   if (Previous.isShadowed())
3749     return false;
3750 
3751   if (S.getLangOpts().CPlusPlus) {
3752     // C++11 [dcl.array]p3:
3753     //   If there is a preceding declaration of the entity in the same
3754     //   scope in which the bound was specified, an omitted array bound
3755     //   is taken to be the same as in that earlier declaration.
3756     return NewVD->isPreviousDeclInSameBlockScope() ||
3757            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
3758             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
3759   } else {
3760     // If the old declaration was function-local, don't merge with its
3761     // type unless we're in the same function.
3762     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
3763            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
3764   }
3765 }
3766 
3767 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
3768 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
3769 /// situation, merging decls or emitting diagnostics as appropriate.
3770 ///
3771 /// Tentative definition rules (C99 6.9.2p2) are checked by
3772 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
3773 /// definitions here, since the initializer hasn't been attached.
3774 ///
3775 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
3776   // If the new decl is already invalid, don't do any other checking.
3777   if (New->isInvalidDecl())
3778     return;
3779 
3780   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
3781     return;
3782 
3783   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
3784 
3785   // Verify the old decl was also a variable or variable template.
3786   VarDecl *Old = nullptr;
3787   VarTemplateDecl *OldTemplate = nullptr;
3788   if (Previous.isSingleResult()) {
3789     if (NewTemplate) {
3790       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
3791       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
3792 
3793       if (auto *Shadow =
3794               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3795         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
3796           return New->setInvalidDecl();
3797     } else {
3798       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
3799 
3800       if (auto *Shadow =
3801               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3802         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
3803           return New->setInvalidDecl();
3804     }
3805   }
3806   if (!Old) {
3807     Diag(New->getLocation(), diag::err_redefinition_different_kind)
3808         << New->getDeclName();
3809     notePreviousDefinition(Previous.getRepresentativeDecl(),
3810                            New->getLocation());
3811     return New->setInvalidDecl();
3812   }
3813 
3814   // Ensure the template parameters are compatible.
3815   if (NewTemplate &&
3816       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
3817                                       OldTemplate->getTemplateParameters(),
3818                                       /*Complain=*/true, TPL_TemplateMatch))
3819     return New->setInvalidDecl();
3820 
3821   // C++ [class.mem]p1:
3822   //   A member shall not be declared twice in the member-specification [...]
3823   //
3824   // Here, we need only consider static data members.
3825   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3826     Diag(New->getLocation(), diag::err_duplicate_member)
3827       << New->getIdentifier();
3828     Diag(Old->getLocation(), diag::note_previous_declaration);
3829     New->setInvalidDecl();
3830   }
3831 
3832   mergeDeclAttributes(New, Old);
3833   // Warn if an already-declared variable is made a weak_import in a subsequent
3834   // declaration
3835   if (New->hasAttr<WeakImportAttr>() &&
3836       Old->getStorageClass() == SC_None &&
3837       !Old->hasAttr<WeakImportAttr>()) {
3838     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3839     notePreviousDefinition(Old, New->getLocation());
3840     // Remove weak_import attribute on new declaration.
3841     New->dropAttr<WeakImportAttr>();
3842   }
3843 
3844   if (New->hasAttr<InternalLinkageAttr>() &&
3845       !Old->hasAttr<InternalLinkageAttr>()) {
3846     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3847         << New->getDeclName();
3848     notePreviousDefinition(Old, New->getLocation());
3849     New->dropAttr<InternalLinkageAttr>();
3850   }
3851 
3852   // Merge the types.
3853   VarDecl *MostRecent = Old->getMostRecentDecl();
3854   if (MostRecent != Old) {
3855     MergeVarDeclTypes(New, MostRecent,
3856                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
3857     if (New->isInvalidDecl())
3858       return;
3859   }
3860 
3861   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3862   if (New->isInvalidDecl())
3863     return;
3864 
3865   diag::kind PrevDiag;
3866   SourceLocation OldLocation;
3867   std::tie(PrevDiag, OldLocation) =
3868       getNoteDiagForInvalidRedeclaration(Old, New);
3869 
3870   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
3871   if (New->getStorageClass() == SC_Static &&
3872       !New->isStaticDataMember() &&
3873       Old->hasExternalFormalLinkage()) {
3874     if (getLangOpts().MicrosoftExt) {
3875       Diag(New->getLocation(), diag::ext_static_non_static)
3876           << New->getDeclName();
3877       Diag(OldLocation, PrevDiag);
3878     } else {
3879       Diag(New->getLocation(), diag::err_static_non_static)
3880           << New->getDeclName();
3881       Diag(OldLocation, PrevDiag);
3882       return New->setInvalidDecl();
3883     }
3884   }
3885   // C99 6.2.2p4:
3886   //   For an identifier declared with the storage-class specifier
3887   //   extern in a scope in which a prior declaration of that
3888   //   identifier is visible,23) if the prior declaration specifies
3889   //   internal or external linkage, the linkage of the identifier at
3890   //   the later declaration is the same as the linkage specified at
3891   //   the prior declaration. If no prior declaration is visible, or
3892   //   if the prior declaration specifies no linkage, then the
3893   //   identifier has external linkage.
3894   if (New->hasExternalStorage() && Old->hasLinkage())
3895     /* Okay */;
3896   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
3897            !New->isStaticDataMember() &&
3898            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
3899     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
3900     Diag(OldLocation, PrevDiag);
3901     return New->setInvalidDecl();
3902   }
3903 
3904   // Check if extern is followed by non-extern and vice-versa.
3905   if (New->hasExternalStorage() &&
3906       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
3907     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3908     Diag(OldLocation, PrevDiag);
3909     return New->setInvalidDecl();
3910   }
3911   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
3912       !New->hasExternalStorage()) {
3913     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3914     Diag(OldLocation, PrevDiag);
3915     return New->setInvalidDecl();
3916   }
3917 
3918   if (CheckRedeclarationModuleOwnership(New, Old))
3919     return;
3920 
3921   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
3922 
3923   // FIXME: The test for external storage here seems wrong? We still
3924   // need to check for mismatches.
3925   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
3926       // Don't complain about out-of-line definitions of static members.
3927       !(Old->getLexicalDeclContext()->isRecord() &&
3928         !New->getLexicalDeclContext()->isRecord())) {
3929     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
3930     Diag(OldLocation, PrevDiag);
3931     return New->setInvalidDecl();
3932   }
3933 
3934   if (New->isInline() && !Old->getMostRecentDecl()->isInline()) {
3935     if (VarDecl *Def = Old->getDefinition()) {
3936       // C++1z [dcl.fcn.spec]p4:
3937       //   If the definition of a variable appears in a translation unit before
3938       //   its first declaration as inline, the program is ill-formed.
3939       Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
3940       Diag(Def->getLocation(), diag::note_previous_definition);
3941     }
3942   }
3943 
3944   // If this redeclaration makes the variable inline, we may need to add it to
3945   // UndefinedButUsed.
3946   if (!Old->isInline() && New->isInline() && Old->isUsed(false) &&
3947       !Old->getDefinition() && !New->isThisDeclarationADefinition())
3948     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3949                                            SourceLocation()));
3950 
3951   if (New->getTLSKind() != Old->getTLSKind()) {
3952     if (!Old->getTLSKind()) {
3953       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3954       Diag(OldLocation, PrevDiag);
3955     } else if (!New->getTLSKind()) {
3956       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3957       Diag(OldLocation, PrevDiag);
3958     } else {
3959       // Do not allow redeclaration to change the variable between requiring
3960       // static and dynamic initialization.
3961       // FIXME: GCC allows this, but uses the TLS keyword on the first
3962       // declaration to determine the kind. Do we need to be compatible here?
3963       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3964         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3965       Diag(OldLocation, PrevDiag);
3966     }
3967   }
3968 
3969   // C++ doesn't have tentative definitions, so go right ahead and check here.
3970   if (getLangOpts().CPlusPlus &&
3971       New->isThisDeclarationADefinition() == VarDecl::Definition) {
3972     if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() &&
3973         Old->getCanonicalDecl()->isConstexpr()) {
3974       // This definition won't be a definition any more once it's been merged.
3975       Diag(New->getLocation(),
3976            diag::warn_deprecated_redundant_constexpr_static_def);
3977     } else if (VarDecl *Def = Old->getDefinition()) {
3978       if (checkVarDeclRedefinition(Def, New))
3979         return;
3980     }
3981   }
3982 
3983   if (haveIncompatibleLanguageLinkages(Old, New)) {
3984     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3985     Diag(OldLocation, PrevDiag);
3986     New->setInvalidDecl();
3987     return;
3988   }
3989 
3990   // Merge "used" flag.
3991   if (Old->getMostRecentDecl()->isUsed(false))
3992     New->setIsUsed();
3993 
3994   // Keep a chain of previous declarations.
3995   New->setPreviousDecl(Old);
3996   if (NewTemplate)
3997     NewTemplate->setPreviousDecl(OldTemplate);
3998   adjustDeclContextForDeclaratorDecl(New, Old);
3999 
4000   // Inherit access appropriately.
4001   New->setAccess(Old->getAccess());
4002   if (NewTemplate)
4003     NewTemplate->setAccess(New->getAccess());
4004 
4005   if (Old->isInline())
4006     New->setImplicitlyInline();
4007 }
4008 
4009 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) {
4010   SourceManager &SrcMgr = getSourceManager();
4011   auto FNewDecLoc = SrcMgr.getDecomposedLoc(New);
4012   auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation());
4013   auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first);
4014   auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first);
4015   auto &HSI = PP.getHeaderSearchInfo();
4016   StringRef HdrFilename =
4017       SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation()));
4018 
4019   auto noteFromModuleOrInclude = [&](Module *Mod,
4020                                      SourceLocation IncLoc) -> bool {
4021     // Redefinition errors with modules are common with non modular mapped
4022     // headers, example: a non-modular header H in module A that also gets
4023     // included directly in a TU. Pointing twice to the same header/definition
4024     // is confusing, try to get better diagnostics when modules is on.
4025     if (IncLoc.isValid()) {
4026       if (Mod) {
4027         Diag(IncLoc, diag::note_redefinition_modules_same_file)
4028             << HdrFilename.str() << Mod->getFullModuleName();
4029         if (!Mod->DefinitionLoc.isInvalid())
4030           Diag(Mod->DefinitionLoc, diag::note_defined_here)
4031               << Mod->getFullModuleName();
4032       } else {
4033         Diag(IncLoc, diag::note_redefinition_include_same_file)
4034             << HdrFilename.str();
4035       }
4036       return true;
4037     }
4038 
4039     return false;
4040   };
4041 
4042   // Is it the same file and same offset? Provide more information on why
4043   // this leads to a redefinition error.
4044   bool EmittedDiag = false;
4045   if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) {
4046     SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first);
4047     SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first);
4048     EmittedDiag = noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc);
4049     EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc);
4050 
4051     // If the header has no guards, emit a note suggesting one.
4052     if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld))
4053       Diag(Old->getLocation(), diag::note_use_ifdef_guards);
4054 
4055     if (EmittedDiag)
4056       return;
4057   }
4058 
4059   // Redefinition coming from different files or couldn't do better above.
4060   Diag(Old->getLocation(), diag::note_previous_definition);
4061 }
4062 
4063 /// We've just determined that \p Old and \p New both appear to be definitions
4064 /// of the same variable. Either diagnose or fix the problem.
4065 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) {
4066   if (!hasVisibleDefinition(Old) &&
4067       (New->getFormalLinkage() == InternalLinkage ||
4068        New->isInline() ||
4069        New->getDescribedVarTemplate() ||
4070        New->getNumTemplateParameterLists() ||
4071        New->getDeclContext()->isDependentContext())) {
4072     // The previous definition is hidden, and multiple definitions are
4073     // permitted (in separate TUs). Demote this to a declaration.
4074     New->demoteThisDefinitionToDeclaration();
4075 
4076     // Make the canonical definition visible.
4077     if (auto *OldTD = Old->getDescribedVarTemplate())
4078       makeMergedDefinitionVisible(OldTD);
4079     makeMergedDefinitionVisible(Old);
4080     return false;
4081   } else {
4082     Diag(New->getLocation(), diag::err_redefinition) << New;
4083     notePreviousDefinition(Old, New->getLocation());
4084     New->setInvalidDecl();
4085     return true;
4086   }
4087 }
4088 
4089 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4090 /// no declarator (e.g. "struct foo;") is parsed.
4091 Decl *
4092 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4093                                  RecordDecl *&AnonRecord) {
4094   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
4095                                     AnonRecord);
4096 }
4097 
4098 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
4099 // disambiguate entities defined in different scopes.
4100 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
4101 // compatibility.
4102 // We will pick our mangling number depending on which version of MSVC is being
4103 // targeted.
4104 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
4105   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
4106              ? S->getMSCurManglingNumber()
4107              : S->getMSLastManglingNumber();
4108 }
4109 
4110 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
4111   if (!Context.getLangOpts().CPlusPlus)
4112     return;
4113 
4114   if (isa<CXXRecordDecl>(Tag->getParent())) {
4115     // If this tag is the direct child of a class, number it if
4116     // it is anonymous.
4117     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
4118       return;
4119     MangleNumberingContext &MCtx =
4120         Context.getManglingNumberContext(Tag->getParent());
4121     Context.setManglingNumber(
4122         Tag, MCtx.getManglingNumber(
4123                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4124     return;
4125   }
4126 
4127   // If this tag isn't a direct child of a class, number it if it is local.
4128   Decl *ManglingContextDecl;
4129   if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4130           Tag->getDeclContext(), ManglingContextDecl)) {
4131     Context.setManglingNumber(
4132         Tag, MCtx->getManglingNumber(
4133                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4134   }
4135 }
4136 
4137 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
4138                                         TypedefNameDecl *NewTD) {
4139   if (TagFromDeclSpec->isInvalidDecl())
4140     return;
4141 
4142   // Do nothing if the tag already has a name for linkage purposes.
4143   if (TagFromDeclSpec->hasNameForLinkage())
4144     return;
4145 
4146   // A well-formed anonymous tag must always be a TUK_Definition.
4147   assert(TagFromDeclSpec->isThisDeclarationADefinition());
4148 
4149   // The type must match the tag exactly;  no qualifiers allowed.
4150   if (!Context.hasSameType(NewTD->getUnderlyingType(),
4151                            Context.getTagDeclType(TagFromDeclSpec))) {
4152     if (getLangOpts().CPlusPlus)
4153       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
4154     return;
4155   }
4156 
4157   // If we've already computed linkage for the anonymous tag, then
4158   // adding a typedef name for the anonymous decl can change that
4159   // linkage, which might be a serious problem.  Diagnose this as
4160   // unsupported and ignore the typedef name.  TODO: we should
4161   // pursue this as a language defect and establish a formal rule
4162   // for how to handle it.
4163   if (TagFromDeclSpec->hasLinkageBeenComputed()) {
4164     Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage);
4165 
4166     SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart();
4167     tagLoc = getLocForEndOfToken(tagLoc);
4168 
4169     llvm::SmallString<40> textToInsert;
4170     textToInsert += ' ';
4171     textToInsert += NewTD->getIdentifier()->getName();
4172     Diag(tagLoc, diag::note_typedef_changes_linkage)
4173         << FixItHint::CreateInsertion(tagLoc, textToInsert);
4174     return;
4175   }
4176 
4177   // Otherwise, set this is the anon-decl typedef for the tag.
4178   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
4179 }
4180 
4181 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
4182   switch (T) {
4183   case DeclSpec::TST_class:
4184     return 0;
4185   case DeclSpec::TST_struct:
4186     return 1;
4187   case DeclSpec::TST_interface:
4188     return 2;
4189   case DeclSpec::TST_union:
4190     return 3;
4191   case DeclSpec::TST_enum:
4192     return 4;
4193   default:
4194     llvm_unreachable("unexpected type specifier");
4195   }
4196 }
4197 
4198 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4199 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
4200 /// parameters to cope with template friend declarations.
4201 Decl *
4202 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4203                                  MultiTemplateParamsArg TemplateParams,
4204                                  bool IsExplicitInstantiation,
4205                                  RecordDecl *&AnonRecord) {
4206   Decl *TagD = nullptr;
4207   TagDecl *Tag = nullptr;
4208   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
4209       DS.getTypeSpecType() == DeclSpec::TST_struct ||
4210       DS.getTypeSpecType() == DeclSpec::TST_interface ||
4211       DS.getTypeSpecType() == DeclSpec::TST_union ||
4212       DS.getTypeSpecType() == DeclSpec::TST_enum) {
4213     TagD = DS.getRepAsDecl();
4214 
4215     if (!TagD) // We probably had an error
4216       return nullptr;
4217 
4218     // Note that the above type specs guarantee that the
4219     // type rep is a Decl, whereas in many of the others
4220     // it's a Type.
4221     if (isa<TagDecl>(TagD))
4222       Tag = cast<TagDecl>(TagD);
4223     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
4224       Tag = CTD->getTemplatedDecl();
4225   }
4226 
4227   if (Tag) {
4228     handleTagNumbering(Tag, S);
4229     Tag->setFreeStanding();
4230     if (Tag->isInvalidDecl())
4231       return Tag;
4232   }
4233 
4234   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
4235     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
4236     // or incomplete types shall not be restrict-qualified."
4237     if (TypeQuals & DeclSpec::TQ_restrict)
4238       Diag(DS.getRestrictSpecLoc(),
4239            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
4240            << DS.getSourceRange();
4241   }
4242 
4243   if (DS.isInlineSpecified())
4244     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
4245         << getLangOpts().CPlusPlus17;
4246 
4247   if (DS.isConstexprSpecified()) {
4248     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
4249     // and definitions of functions and variables.
4250     if (Tag)
4251       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
4252           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType());
4253     else
4254       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
4255     // Don't emit warnings after this error.
4256     return TagD;
4257   }
4258 
4259   DiagnoseFunctionSpecifiers(DS);
4260 
4261   if (DS.isFriendSpecified()) {
4262     // If we're dealing with a decl but not a TagDecl, assume that
4263     // whatever routines created it handled the friendship aspect.
4264     if (TagD && !Tag)
4265       return nullptr;
4266     return ActOnFriendTypeDecl(S, DS, TemplateParams);
4267   }
4268 
4269   const CXXScopeSpec &SS = DS.getTypeSpecScope();
4270   bool IsExplicitSpecialization =
4271     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
4272   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
4273       !IsExplicitInstantiation && !IsExplicitSpecialization &&
4274       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
4275     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
4276     // nested-name-specifier unless it is an explicit instantiation
4277     // or an explicit specialization.
4278     //
4279     // FIXME: We allow class template partial specializations here too, per the
4280     // obvious intent of DR1819.
4281     //
4282     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
4283     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
4284         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
4285     return nullptr;
4286   }
4287 
4288   // Track whether this decl-specifier declares anything.
4289   bool DeclaresAnything = true;
4290 
4291   // Handle anonymous struct definitions.
4292   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
4293     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
4294         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
4295       if (getLangOpts().CPlusPlus ||
4296           Record->getDeclContext()->isRecord()) {
4297         // If CurContext is a DeclContext that can contain statements,
4298         // RecursiveASTVisitor won't visit the decls that
4299         // BuildAnonymousStructOrUnion() will put into CurContext.
4300         // Also store them here so that they can be part of the
4301         // DeclStmt that gets created in this case.
4302         // FIXME: Also return the IndirectFieldDecls created by
4303         // BuildAnonymousStructOr union, for the same reason?
4304         if (CurContext->isFunctionOrMethod())
4305           AnonRecord = Record;
4306         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
4307                                            Context.getPrintingPolicy());
4308       }
4309 
4310       DeclaresAnything = false;
4311     }
4312   }
4313 
4314   // C11 6.7.2.1p2:
4315   //   A struct-declaration that does not declare an anonymous structure or
4316   //   anonymous union shall contain a struct-declarator-list.
4317   //
4318   // This rule also existed in C89 and C99; the grammar for struct-declaration
4319   // did not permit a struct-declaration without a struct-declarator-list.
4320   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
4321       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
4322     // Check for Microsoft C extension: anonymous struct/union member.
4323     // Handle 2 kinds of anonymous struct/union:
4324     //   struct STRUCT;
4325     //   union UNION;
4326     // and
4327     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
4328     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
4329     if ((Tag && Tag->getDeclName()) ||
4330         DS.getTypeSpecType() == DeclSpec::TST_typename) {
4331       RecordDecl *Record = nullptr;
4332       if (Tag)
4333         Record = dyn_cast<RecordDecl>(Tag);
4334       else if (const RecordType *RT =
4335                    DS.getRepAsType().get()->getAsStructureType())
4336         Record = RT->getDecl();
4337       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
4338         Record = UT->getDecl();
4339 
4340       if (Record && getLangOpts().MicrosoftExt) {
4341         Diag(DS.getLocStart(), diag::ext_ms_anonymous_record)
4342           << Record->isUnion() << DS.getSourceRange();
4343         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
4344       }
4345 
4346       DeclaresAnything = false;
4347     }
4348   }
4349 
4350   // Skip all the checks below if we have a type error.
4351   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
4352       (TagD && TagD->isInvalidDecl()))
4353     return TagD;
4354 
4355   if (getLangOpts().CPlusPlus &&
4356       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
4357     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
4358       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
4359           !Enum->getIdentifier() && !Enum->isInvalidDecl())
4360         DeclaresAnything = false;
4361 
4362   if (!DS.isMissingDeclaratorOk()) {
4363     // Customize diagnostic for a typedef missing a name.
4364     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
4365       Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
4366         << DS.getSourceRange();
4367     else
4368       DeclaresAnything = false;
4369   }
4370 
4371   if (DS.isModulePrivateSpecified() &&
4372       Tag && Tag->getDeclContext()->isFunctionOrMethod())
4373     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
4374       << Tag->getTagKind()
4375       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
4376 
4377   ActOnDocumentableDecl(TagD);
4378 
4379   // C 6.7/2:
4380   //   A declaration [...] shall declare at least a declarator [...], a tag,
4381   //   or the members of an enumeration.
4382   // C++ [dcl.dcl]p3:
4383   //   [If there are no declarators], and except for the declaration of an
4384   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
4385   //   names into the program, or shall redeclare a name introduced by a
4386   //   previous declaration.
4387   if (!DeclaresAnything) {
4388     // In C, we allow this as a (popular) extension / bug. Don't bother
4389     // producing further diagnostics for redundant qualifiers after this.
4390     Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
4391     return TagD;
4392   }
4393 
4394   // C++ [dcl.stc]p1:
4395   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
4396   //   init-declarator-list of the declaration shall not be empty.
4397   // C++ [dcl.fct.spec]p1:
4398   //   If a cv-qualifier appears in a decl-specifier-seq, the
4399   //   init-declarator-list of the declaration shall not be empty.
4400   //
4401   // Spurious qualifiers here appear to be valid in C.
4402   unsigned DiagID = diag::warn_standalone_specifier;
4403   if (getLangOpts().CPlusPlus)
4404     DiagID = diag::ext_standalone_specifier;
4405 
4406   // Note that a linkage-specification sets a storage class, but
4407   // 'extern "C" struct foo;' is actually valid and not theoretically
4408   // useless.
4409   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
4410     if (SCS == DeclSpec::SCS_mutable)
4411       // Since mutable is not a viable storage class specifier in C, there is
4412       // no reason to treat it as an extension. Instead, diagnose as an error.
4413       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
4414     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
4415       Diag(DS.getStorageClassSpecLoc(), DiagID)
4416         << DeclSpec::getSpecifierName(SCS);
4417   }
4418 
4419   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
4420     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
4421       << DeclSpec::getSpecifierName(TSCS);
4422   if (DS.getTypeQualifiers()) {
4423     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4424       Diag(DS.getConstSpecLoc(), DiagID) << "const";
4425     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4426       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
4427     // Restrict is covered above.
4428     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4429       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
4430     if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4431       Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned";
4432   }
4433 
4434   // Warn about ignored type attributes, for example:
4435   // __attribute__((aligned)) struct A;
4436   // Attributes should be placed after tag to apply to type declaration.
4437   if (!DS.getAttributes().empty()) {
4438     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
4439     if (TypeSpecType == DeclSpec::TST_class ||
4440         TypeSpecType == DeclSpec::TST_struct ||
4441         TypeSpecType == DeclSpec::TST_interface ||
4442         TypeSpecType == DeclSpec::TST_union ||
4443         TypeSpecType == DeclSpec::TST_enum) {
4444       for (AttributeList* attrs = DS.getAttributes().getList(); attrs;
4445            attrs = attrs->getNext())
4446         Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
4447             << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType);
4448     }
4449   }
4450 
4451   return TagD;
4452 }
4453 
4454 /// We are trying to inject an anonymous member into the given scope;
4455 /// check if there's an existing declaration that can't be overloaded.
4456 ///
4457 /// \return true if this is a forbidden redeclaration
4458 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4459                                          Scope *S,
4460                                          DeclContext *Owner,
4461                                          DeclarationName Name,
4462                                          SourceLocation NameLoc,
4463                                          bool IsUnion) {
4464   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4465                  Sema::ForVisibleRedeclaration);
4466   if (!SemaRef.LookupName(R, S)) return false;
4467 
4468   // Pick a representative declaration.
4469   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4470   assert(PrevDecl && "Expected a non-null Decl");
4471 
4472   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4473     return false;
4474 
4475   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4476     << IsUnion << Name;
4477   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4478 
4479   return true;
4480 }
4481 
4482 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4483 /// anonymous struct or union AnonRecord into the owning context Owner
4484 /// and scope S. This routine will be invoked just after we realize
4485 /// that an unnamed union or struct is actually an anonymous union or
4486 /// struct, e.g.,
4487 ///
4488 /// @code
4489 /// union {
4490 ///   int i;
4491 ///   float f;
4492 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4493 ///    // f into the surrounding scope.x
4494 /// @endcode
4495 ///
4496 /// This routine is recursive, injecting the names of nested anonymous
4497 /// structs/unions into the owning context and scope as well.
4498 static bool
4499 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4500                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4501                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4502   bool Invalid = false;
4503 
4504   // Look every FieldDecl and IndirectFieldDecl with a name.
4505   for (auto *D : AnonRecord->decls()) {
4506     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4507         cast<NamedDecl>(D)->getDeclName()) {
4508       ValueDecl *VD = cast<ValueDecl>(D);
4509       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4510                                        VD->getLocation(),
4511                                        AnonRecord->isUnion())) {
4512         // C++ [class.union]p2:
4513         //   The names of the members of an anonymous union shall be
4514         //   distinct from the names of any other entity in the
4515         //   scope in which the anonymous union is declared.
4516         Invalid = true;
4517       } else {
4518         // C++ [class.union]p2:
4519         //   For the purpose of name lookup, after the anonymous union
4520         //   definition, the members of the anonymous union are
4521         //   considered to have been defined in the scope in which the
4522         //   anonymous union is declared.
4523         unsigned OldChainingSize = Chaining.size();
4524         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4525           Chaining.append(IF->chain_begin(), IF->chain_end());
4526         else
4527           Chaining.push_back(VD);
4528 
4529         assert(Chaining.size() >= 2);
4530         NamedDecl **NamedChain =
4531           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4532         for (unsigned i = 0; i < Chaining.size(); i++)
4533           NamedChain[i] = Chaining[i];
4534 
4535         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4536             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4537             VD->getType(), {NamedChain, Chaining.size()});
4538 
4539         for (const auto *Attr : VD->attrs())
4540           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4541 
4542         IndirectField->setAccess(AS);
4543         IndirectField->setImplicit();
4544         SemaRef.PushOnScopeChains(IndirectField, S);
4545 
4546         // That includes picking up the appropriate access specifier.
4547         if (AS != AS_none) IndirectField->setAccess(AS);
4548 
4549         Chaining.resize(OldChainingSize);
4550       }
4551     }
4552   }
4553 
4554   return Invalid;
4555 }
4556 
4557 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4558 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4559 /// illegal input values are mapped to SC_None.
4560 static StorageClass
4561 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4562   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4563   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4564          "Parser allowed 'typedef' as storage class VarDecl.");
4565   switch (StorageClassSpec) {
4566   case DeclSpec::SCS_unspecified:    return SC_None;
4567   case DeclSpec::SCS_extern:
4568     if (DS.isExternInLinkageSpec())
4569       return SC_None;
4570     return SC_Extern;
4571   case DeclSpec::SCS_static:         return SC_Static;
4572   case DeclSpec::SCS_auto:           return SC_Auto;
4573   case DeclSpec::SCS_register:       return SC_Register;
4574   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4575     // Illegal SCSs map to None: error reporting is up to the caller.
4576   case DeclSpec::SCS_mutable:        // Fall through.
4577   case DeclSpec::SCS_typedef:        return SC_None;
4578   }
4579   llvm_unreachable("unknown storage class specifier");
4580 }
4581 
4582 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4583   assert(Record->hasInClassInitializer());
4584 
4585   for (const auto *I : Record->decls()) {
4586     const auto *FD = dyn_cast<FieldDecl>(I);
4587     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4588       FD = IFD->getAnonField();
4589     if (FD && FD->hasInClassInitializer())
4590       return FD->getLocation();
4591   }
4592 
4593   llvm_unreachable("couldn't find in-class initializer");
4594 }
4595 
4596 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4597                                       SourceLocation DefaultInitLoc) {
4598   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4599     return;
4600 
4601   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4602   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4603 }
4604 
4605 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4606                                       CXXRecordDecl *AnonUnion) {
4607   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4608     return;
4609 
4610   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4611 }
4612 
4613 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4614 /// anonymous structure or union. Anonymous unions are a C++ feature
4615 /// (C++ [class.union]) and a C11 feature; anonymous structures
4616 /// are a C11 feature and GNU C++ extension.
4617 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4618                                         AccessSpecifier AS,
4619                                         RecordDecl *Record,
4620                                         const PrintingPolicy &Policy) {
4621   DeclContext *Owner = Record->getDeclContext();
4622 
4623   // Diagnose whether this anonymous struct/union is an extension.
4624   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4625     Diag(Record->getLocation(), diag::ext_anonymous_union);
4626   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4627     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4628   else if (!Record->isUnion() && !getLangOpts().C11)
4629     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4630 
4631   // C and C++ require different kinds of checks for anonymous
4632   // structs/unions.
4633   bool Invalid = false;
4634   if (getLangOpts().CPlusPlus) {
4635     const char *PrevSpec = nullptr;
4636     unsigned DiagID;
4637     if (Record->isUnion()) {
4638       // C++ [class.union]p6:
4639       //   Anonymous unions declared in a named namespace or in the
4640       //   global namespace shall be declared static.
4641       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
4642           (isa<TranslationUnitDecl>(Owner) ||
4643            (isa<NamespaceDecl>(Owner) &&
4644             cast<NamespaceDecl>(Owner)->getDeclName()))) {
4645         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
4646           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
4647 
4648         // Recover by adding 'static'.
4649         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
4650                                PrevSpec, DiagID, Policy);
4651       }
4652       // C++ [class.union]p6:
4653       //   A storage class is not allowed in a declaration of an
4654       //   anonymous union in a class scope.
4655       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
4656                isa<RecordDecl>(Owner)) {
4657         Diag(DS.getStorageClassSpecLoc(),
4658              diag::err_anonymous_union_with_storage_spec)
4659           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
4660 
4661         // Recover by removing the storage specifier.
4662         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
4663                                SourceLocation(),
4664                                PrevSpec, DiagID, Context.getPrintingPolicy());
4665       }
4666     }
4667 
4668     // Ignore const/volatile/restrict qualifiers.
4669     if (DS.getTypeQualifiers()) {
4670       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4671         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
4672           << Record->isUnion() << "const"
4673           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
4674       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4675         Diag(DS.getVolatileSpecLoc(),
4676              diag::ext_anonymous_struct_union_qualified)
4677           << Record->isUnion() << "volatile"
4678           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
4679       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
4680         Diag(DS.getRestrictSpecLoc(),
4681              diag::ext_anonymous_struct_union_qualified)
4682           << Record->isUnion() << "restrict"
4683           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
4684       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4685         Diag(DS.getAtomicSpecLoc(),
4686              diag::ext_anonymous_struct_union_qualified)
4687           << Record->isUnion() << "_Atomic"
4688           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
4689       if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4690         Diag(DS.getUnalignedSpecLoc(),
4691              diag::ext_anonymous_struct_union_qualified)
4692           << Record->isUnion() << "__unaligned"
4693           << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc());
4694 
4695       DS.ClearTypeQualifiers();
4696     }
4697 
4698     // C++ [class.union]p2:
4699     //   The member-specification of an anonymous union shall only
4700     //   define non-static data members. [Note: nested types and
4701     //   functions cannot be declared within an anonymous union. ]
4702     for (auto *Mem : Record->decls()) {
4703       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
4704         // C++ [class.union]p3:
4705         //   An anonymous union shall not have private or protected
4706         //   members (clause 11).
4707         assert(FD->getAccess() != AS_none);
4708         if (FD->getAccess() != AS_public) {
4709           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
4710             << Record->isUnion() << (FD->getAccess() == AS_protected);
4711           Invalid = true;
4712         }
4713 
4714         // C++ [class.union]p1
4715         //   An object of a class with a non-trivial constructor, a non-trivial
4716         //   copy constructor, a non-trivial destructor, or a non-trivial copy
4717         //   assignment operator cannot be a member of a union, nor can an
4718         //   array of such objects.
4719         if (CheckNontrivialField(FD))
4720           Invalid = true;
4721       } else if (Mem->isImplicit()) {
4722         // Any implicit members are fine.
4723       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
4724         // This is a type that showed up in an
4725         // elaborated-type-specifier inside the anonymous struct or
4726         // union, but which actually declares a type outside of the
4727         // anonymous struct or union. It's okay.
4728       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
4729         if (!MemRecord->isAnonymousStructOrUnion() &&
4730             MemRecord->getDeclName()) {
4731           // Visual C++ allows type definition in anonymous struct or union.
4732           if (getLangOpts().MicrosoftExt)
4733             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
4734               << Record->isUnion();
4735           else {
4736             // This is a nested type declaration.
4737             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
4738               << Record->isUnion();
4739             Invalid = true;
4740           }
4741         } else {
4742           // This is an anonymous type definition within another anonymous type.
4743           // This is a popular extension, provided by Plan9, MSVC and GCC, but
4744           // not part of standard C++.
4745           Diag(MemRecord->getLocation(),
4746                diag::ext_anonymous_record_with_anonymous_type)
4747             << Record->isUnion();
4748         }
4749       } else if (isa<AccessSpecDecl>(Mem)) {
4750         // Any access specifier is fine.
4751       } else if (isa<StaticAssertDecl>(Mem)) {
4752         // In C++1z, static_assert declarations are also fine.
4753       } else {
4754         // We have something that isn't a non-static data
4755         // member. Complain about it.
4756         unsigned DK = diag::err_anonymous_record_bad_member;
4757         if (isa<TypeDecl>(Mem))
4758           DK = diag::err_anonymous_record_with_type;
4759         else if (isa<FunctionDecl>(Mem))
4760           DK = diag::err_anonymous_record_with_function;
4761         else if (isa<VarDecl>(Mem))
4762           DK = diag::err_anonymous_record_with_static;
4763 
4764         // Visual C++ allows type definition in anonymous struct or union.
4765         if (getLangOpts().MicrosoftExt &&
4766             DK == diag::err_anonymous_record_with_type)
4767           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
4768             << Record->isUnion();
4769         else {
4770           Diag(Mem->getLocation(), DK) << Record->isUnion();
4771           Invalid = true;
4772         }
4773       }
4774     }
4775 
4776     // C++11 [class.union]p8 (DR1460):
4777     //   At most one variant member of a union may have a
4778     //   brace-or-equal-initializer.
4779     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
4780         Owner->isRecord())
4781       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
4782                                 cast<CXXRecordDecl>(Record));
4783   }
4784 
4785   if (!Record->isUnion() && !Owner->isRecord()) {
4786     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
4787       << getLangOpts().CPlusPlus;
4788     Invalid = true;
4789   }
4790 
4791   // Mock up a declarator.
4792   Declarator Dc(DS, DeclaratorContext::MemberContext);
4793   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4794   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
4795 
4796   // Create a declaration for this anonymous struct/union.
4797   NamedDecl *Anon = nullptr;
4798   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
4799     Anon = FieldDecl::Create(Context, OwningClass,
4800                              DS.getLocStart(),
4801                              Record->getLocation(),
4802                              /*IdentifierInfo=*/nullptr,
4803                              Context.getTypeDeclType(Record),
4804                              TInfo,
4805                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4806                              /*InitStyle=*/ICIS_NoInit);
4807     Anon->setAccess(AS);
4808     if (getLangOpts().CPlusPlus)
4809       FieldCollector->Add(cast<FieldDecl>(Anon));
4810   } else {
4811     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
4812     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
4813     if (SCSpec == DeclSpec::SCS_mutable) {
4814       // mutable can only appear on non-static class members, so it's always
4815       // an error here
4816       Diag(Record->getLocation(), diag::err_mutable_nonmember);
4817       Invalid = true;
4818       SC = SC_None;
4819     }
4820 
4821     Anon = VarDecl::Create(Context, Owner,
4822                            DS.getLocStart(),
4823                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
4824                            Context.getTypeDeclType(Record),
4825                            TInfo, SC);
4826 
4827     // Default-initialize the implicit variable. This initialization will be
4828     // trivial in almost all cases, except if a union member has an in-class
4829     // initializer:
4830     //   union { int n = 0; };
4831     ActOnUninitializedDecl(Anon);
4832   }
4833   Anon->setImplicit();
4834 
4835   // Mark this as an anonymous struct/union type.
4836   Record->setAnonymousStructOrUnion(true);
4837 
4838   // Add the anonymous struct/union object to the current
4839   // context. We'll be referencing this object when we refer to one of
4840   // its members.
4841   Owner->addDecl(Anon);
4842 
4843   // Inject the members of the anonymous struct/union into the owning
4844   // context and into the identifier resolver chain for name lookup
4845   // purposes.
4846   SmallVector<NamedDecl*, 2> Chain;
4847   Chain.push_back(Anon);
4848 
4849   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
4850     Invalid = true;
4851 
4852   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
4853     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
4854       Decl *ManglingContextDecl;
4855       if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4856               NewVD->getDeclContext(), ManglingContextDecl)) {
4857         Context.setManglingNumber(
4858             NewVD, MCtx->getManglingNumber(
4859                        NewVD, getMSManglingNumber(getLangOpts(), S)));
4860         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
4861       }
4862     }
4863   }
4864 
4865   if (Invalid)
4866     Anon->setInvalidDecl();
4867 
4868   return Anon;
4869 }
4870 
4871 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
4872 /// Microsoft C anonymous structure.
4873 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
4874 /// Example:
4875 ///
4876 /// struct A { int a; };
4877 /// struct B { struct A; int b; };
4878 ///
4879 /// void foo() {
4880 ///   B var;
4881 ///   var.a = 3;
4882 /// }
4883 ///
4884 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
4885                                            RecordDecl *Record) {
4886   assert(Record && "expected a record!");
4887 
4888   // Mock up a declarator.
4889   Declarator Dc(DS, DeclaratorContext::TypeNameContext);
4890   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4891   assert(TInfo && "couldn't build declarator info for anonymous struct");
4892 
4893   auto *ParentDecl = cast<RecordDecl>(CurContext);
4894   QualType RecTy = Context.getTypeDeclType(Record);
4895 
4896   // Create a declaration for this anonymous struct.
4897   NamedDecl *Anon = FieldDecl::Create(Context,
4898                              ParentDecl,
4899                              DS.getLocStart(),
4900                              DS.getLocStart(),
4901                              /*IdentifierInfo=*/nullptr,
4902                              RecTy,
4903                              TInfo,
4904                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4905                              /*InitStyle=*/ICIS_NoInit);
4906   Anon->setImplicit();
4907 
4908   // Add the anonymous struct object to the current context.
4909   CurContext->addDecl(Anon);
4910 
4911   // Inject the members of the anonymous struct into the current
4912   // context and into the identifier resolver chain for name lookup
4913   // purposes.
4914   SmallVector<NamedDecl*, 2> Chain;
4915   Chain.push_back(Anon);
4916 
4917   RecordDecl *RecordDef = Record->getDefinition();
4918   if (RequireCompleteType(Anon->getLocation(), RecTy,
4919                           diag::err_field_incomplete) ||
4920       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
4921                                           AS_none, Chain)) {
4922     Anon->setInvalidDecl();
4923     ParentDecl->setInvalidDecl();
4924   }
4925 
4926   return Anon;
4927 }
4928 
4929 /// GetNameForDeclarator - Determine the full declaration name for the
4930 /// given Declarator.
4931 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
4932   return GetNameFromUnqualifiedId(D.getName());
4933 }
4934 
4935 /// \brief Retrieves the declaration name from a parsed unqualified-id.
4936 DeclarationNameInfo
4937 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
4938   DeclarationNameInfo NameInfo;
4939   NameInfo.setLoc(Name.StartLocation);
4940 
4941   switch (Name.getKind()) {
4942 
4943   case UnqualifiedIdKind::IK_ImplicitSelfParam:
4944   case UnqualifiedIdKind::IK_Identifier:
4945     NameInfo.setName(Name.Identifier);
4946     NameInfo.setLoc(Name.StartLocation);
4947     return NameInfo;
4948 
4949   case UnqualifiedIdKind::IK_DeductionGuideName: {
4950     // C++ [temp.deduct.guide]p3:
4951     //   The simple-template-id shall name a class template specialization.
4952     //   The template-name shall be the same identifier as the template-name
4953     //   of the simple-template-id.
4954     // These together intend to imply that the template-name shall name a
4955     // class template.
4956     // FIXME: template<typename T> struct X {};
4957     //        template<typename T> using Y = X<T>;
4958     //        Y(int) -> Y<int>;
4959     //   satisfies these rules but does not name a class template.
4960     TemplateName TN = Name.TemplateName.get().get();
4961     auto *Template = TN.getAsTemplateDecl();
4962     if (!Template || !isa<ClassTemplateDecl>(Template)) {
4963       Diag(Name.StartLocation,
4964            diag::err_deduction_guide_name_not_class_template)
4965         << (int)getTemplateNameKindForDiagnostics(TN) << TN;
4966       if (Template)
4967         Diag(Template->getLocation(), diag::note_template_decl_here);
4968       return DeclarationNameInfo();
4969     }
4970 
4971     NameInfo.setName(
4972         Context.DeclarationNames.getCXXDeductionGuideName(Template));
4973     NameInfo.setLoc(Name.StartLocation);
4974     return NameInfo;
4975   }
4976 
4977   case UnqualifiedIdKind::IK_OperatorFunctionId:
4978     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
4979                                            Name.OperatorFunctionId.Operator));
4980     NameInfo.setLoc(Name.StartLocation);
4981     NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
4982       = Name.OperatorFunctionId.SymbolLocations[0];
4983     NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
4984       = Name.EndLocation.getRawEncoding();
4985     return NameInfo;
4986 
4987   case UnqualifiedIdKind::IK_LiteralOperatorId:
4988     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
4989                                                            Name.Identifier));
4990     NameInfo.setLoc(Name.StartLocation);
4991     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
4992     return NameInfo;
4993 
4994   case UnqualifiedIdKind::IK_ConversionFunctionId: {
4995     TypeSourceInfo *TInfo;
4996     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
4997     if (Ty.isNull())
4998       return DeclarationNameInfo();
4999     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
5000                                                Context.getCanonicalType(Ty)));
5001     NameInfo.setLoc(Name.StartLocation);
5002     NameInfo.setNamedTypeInfo(TInfo);
5003     return NameInfo;
5004   }
5005 
5006   case UnqualifiedIdKind::IK_ConstructorName: {
5007     TypeSourceInfo *TInfo;
5008     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
5009     if (Ty.isNull())
5010       return DeclarationNameInfo();
5011     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5012                                               Context.getCanonicalType(Ty)));
5013     NameInfo.setLoc(Name.StartLocation);
5014     NameInfo.setNamedTypeInfo(TInfo);
5015     return NameInfo;
5016   }
5017 
5018   case UnqualifiedIdKind::IK_ConstructorTemplateId: {
5019     // In well-formed code, we can only have a constructor
5020     // template-id that refers to the current context, so go there
5021     // to find the actual type being constructed.
5022     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
5023     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
5024       return DeclarationNameInfo();
5025 
5026     // Determine the type of the class being constructed.
5027     QualType CurClassType = Context.getTypeDeclType(CurClass);
5028 
5029     // FIXME: Check two things: that the template-id names the same type as
5030     // CurClassType, and that the template-id does not occur when the name
5031     // was qualified.
5032 
5033     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5034                                     Context.getCanonicalType(CurClassType)));
5035     NameInfo.setLoc(Name.StartLocation);
5036     // FIXME: should we retrieve TypeSourceInfo?
5037     NameInfo.setNamedTypeInfo(nullptr);
5038     return NameInfo;
5039   }
5040 
5041   case UnqualifiedIdKind::IK_DestructorName: {
5042     TypeSourceInfo *TInfo;
5043     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
5044     if (Ty.isNull())
5045       return DeclarationNameInfo();
5046     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
5047                                               Context.getCanonicalType(Ty)));
5048     NameInfo.setLoc(Name.StartLocation);
5049     NameInfo.setNamedTypeInfo(TInfo);
5050     return NameInfo;
5051   }
5052 
5053   case UnqualifiedIdKind::IK_TemplateId: {
5054     TemplateName TName = Name.TemplateId->Template.get();
5055     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
5056     return Context.getNameForTemplate(TName, TNameLoc);
5057   }
5058 
5059   } // switch (Name.getKind())
5060 
5061   llvm_unreachable("Unknown name kind");
5062 }
5063 
5064 static QualType getCoreType(QualType Ty) {
5065   do {
5066     if (Ty->isPointerType() || Ty->isReferenceType())
5067       Ty = Ty->getPointeeType();
5068     else if (Ty->isArrayType())
5069       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
5070     else
5071       return Ty.withoutLocalFastQualifiers();
5072   } while (true);
5073 }
5074 
5075 /// hasSimilarParameters - Determine whether the C++ functions Declaration
5076 /// and Definition have "nearly" matching parameters. This heuristic is
5077 /// used to improve diagnostics in the case where an out-of-line function
5078 /// definition doesn't match any declaration within the class or namespace.
5079 /// Also sets Params to the list of indices to the parameters that differ
5080 /// between the declaration and the definition. If hasSimilarParameters
5081 /// returns true and Params is empty, then all of the parameters match.
5082 static bool hasSimilarParameters(ASTContext &Context,
5083                                      FunctionDecl *Declaration,
5084                                      FunctionDecl *Definition,
5085                                      SmallVectorImpl<unsigned> &Params) {
5086   Params.clear();
5087   if (Declaration->param_size() != Definition->param_size())
5088     return false;
5089   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
5090     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
5091     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
5092 
5093     // The parameter types are identical
5094     if (Context.hasSameType(DefParamTy, DeclParamTy))
5095       continue;
5096 
5097     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
5098     QualType DefParamBaseTy = getCoreType(DefParamTy);
5099     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
5100     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
5101 
5102     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
5103         (DeclTyName && DeclTyName == DefTyName))
5104       Params.push_back(Idx);
5105     else  // The two parameters aren't even close
5106       return false;
5107   }
5108 
5109   return true;
5110 }
5111 
5112 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
5113 /// declarator needs to be rebuilt in the current instantiation.
5114 /// Any bits of declarator which appear before the name are valid for
5115 /// consideration here.  That's specifically the type in the decl spec
5116 /// and the base type in any member-pointer chunks.
5117 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
5118                                                     DeclarationName Name) {
5119   // The types we specifically need to rebuild are:
5120   //   - typenames, typeofs, and decltypes
5121   //   - types which will become injected class names
5122   // Of course, we also need to rebuild any type referencing such a
5123   // type.  It's safest to just say "dependent", but we call out a
5124   // few cases here.
5125 
5126   DeclSpec &DS = D.getMutableDeclSpec();
5127   switch (DS.getTypeSpecType()) {
5128   case DeclSpec::TST_typename:
5129   case DeclSpec::TST_typeofType:
5130   case DeclSpec::TST_underlyingType:
5131   case DeclSpec::TST_atomic: {
5132     // Grab the type from the parser.
5133     TypeSourceInfo *TSI = nullptr;
5134     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
5135     if (T.isNull() || !T->isDependentType()) break;
5136 
5137     // Make sure there's a type source info.  This isn't really much
5138     // of a waste; most dependent types should have type source info
5139     // attached already.
5140     if (!TSI)
5141       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
5142 
5143     // Rebuild the type in the current instantiation.
5144     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
5145     if (!TSI) return true;
5146 
5147     // Store the new type back in the decl spec.
5148     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
5149     DS.UpdateTypeRep(LocType);
5150     break;
5151   }
5152 
5153   case DeclSpec::TST_decltype:
5154   case DeclSpec::TST_typeofExpr: {
5155     Expr *E = DS.getRepAsExpr();
5156     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
5157     if (Result.isInvalid()) return true;
5158     DS.UpdateExprRep(Result.get());
5159     break;
5160   }
5161 
5162   default:
5163     // Nothing to do for these decl specs.
5164     break;
5165   }
5166 
5167   // It doesn't matter what order we do this in.
5168   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
5169     DeclaratorChunk &Chunk = D.getTypeObject(I);
5170 
5171     // The only type information in the declarator which can come
5172     // before the declaration name is the base type of a member
5173     // pointer.
5174     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
5175       continue;
5176 
5177     // Rebuild the scope specifier in-place.
5178     CXXScopeSpec &SS = Chunk.Mem.Scope();
5179     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
5180       return true;
5181   }
5182 
5183   return false;
5184 }
5185 
5186 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
5187   D.setFunctionDefinitionKind(FDK_Declaration);
5188   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
5189 
5190   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
5191       Dcl && Dcl->getDeclContext()->isFileContext())
5192     Dcl->setTopLevelDeclInObjCContainer();
5193 
5194   if (getLangOpts().OpenCL)
5195     setCurrentOpenCLExtensionForDecl(Dcl);
5196 
5197   return Dcl;
5198 }
5199 
5200 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
5201 ///   If T is the name of a class, then each of the following shall have a
5202 ///   name different from T:
5203 ///     - every static data member of class T;
5204 ///     - every member function of class T
5205 ///     - every member of class T that is itself a type;
5206 /// \returns true if the declaration name violates these rules.
5207 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
5208                                    DeclarationNameInfo NameInfo) {
5209   DeclarationName Name = NameInfo.getName();
5210 
5211   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
5212   while (Record && Record->isAnonymousStructOrUnion())
5213     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
5214   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
5215     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
5216     return true;
5217   }
5218 
5219   return false;
5220 }
5221 
5222 /// \brief Diagnose a declaration whose declarator-id has the given
5223 /// nested-name-specifier.
5224 ///
5225 /// \param SS The nested-name-specifier of the declarator-id.
5226 ///
5227 /// \param DC The declaration context to which the nested-name-specifier
5228 /// resolves.
5229 ///
5230 /// \param Name The name of the entity being declared.
5231 ///
5232 /// \param Loc The location of the name of the entity being declared.
5233 ///
5234 /// \returns true if we cannot safely recover from this error, false otherwise.
5235 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
5236                                         DeclarationName Name,
5237                                         SourceLocation Loc) {
5238   DeclContext *Cur = CurContext;
5239   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
5240     Cur = Cur->getParent();
5241 
5242   // If the user provided a superfluous scope specifier that refers back to the
5243   // class in which the entity is already declared, diagnose and ignore it.
5244   //
5245   // class X {
5246   //   void X::f();
5247   // };
5248   //
5249   // Note, it was once ill-formed to give redundant qualification in all
5250   // contexts, but that rule was removed by DR482.
5251   if (Cur->Equals(DC)) {
5252     if (Cur->isRecord()) {
5253       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
5254                                       : diag::err_member_extra_qualification)
5255         << Name << FixItHint::CreateRemoval(SS.getRange());
5256       SS.clear();
5257     } else {
5258       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
5259     }
5260     return false;
5261   }
5262 
5263   // Check whether the qualifying scope encloses the scope of the original
5264   // declaration.
5265   if (!Cur->Encloses(DC)) {
5266     if (Cur->isRecord())
5267       Diag(Loc, diag::err_member_qualification)
5268         << Name << SS.getRange();
5269     else if (isa<TranslationUnitDecl>(DC))
5270       Diag(Loc, diag::err_invalid_declarator_global_scope)
5271         << Name << SS.getRange();
5272     else if (isa<FunctionDecl>(Cur))
5273       Diag(Loc, diag::err_invalid_declarator_in_function)
5274         << Name << SS.getRange();
5275     else if (isa<BlockDecl>(Cur))
5276       Diag(Loc, diag::err_invalid_declarator_in_block)
5277         << Name << SS.getRange();
5278     else
5279       Diag(Loc, diag::err_invalid_declarator_scope)
5280       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
5281 
5282     return true;
5283   }
5284 
5285   if (Cur->isRecord()) {
5286     // Cannot qualify members within a class.
5287     Diag(Loc, diag::err_member_qualification)
5288       << Name << SS.getRange();
5289     SS.clear();
5290 
5291     // C++ constructors and destructors with incorrect scopes can break
5292     // our AST invariants by having the wrong underlying types. If
5293     // that's the case, then drop this declaration entirely.
5294     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
5295          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
5296         !Context.hasSameType(Name.getCXXNameType(),
5297                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
5298       return true;
5299 
5300     return false;
5301   }
5302 
5303   // C++11 [dcl.meaning]p1:
5304   //   [...] "The nested-name-specifier of the qualified declarator-id shall
5305   //   not begin with a decltype-specifer"
5306   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
5307   while (SpecLoc.getPrefix())
5308     SpecLoc = SpecLoc.getPrefix();
5309   if (dyn_cast_or_null<DecltypeType>(
5310         SpecLoc.getNestedNameSpecifier()->getAsType()))
5311     Diag(Loc, diag::err_decltype_in_declarator)
5312       << SpecLoc.getTypeLoc().getSourceRange();
5313 
5314   return false;
5315 }
5316 
5317 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
5318                                   MultiTemplateParamsArg TemplateParamLists) {
5319   // TODO: consider using NameInfo for diagnostic.
5320   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5321   DeclarationName Name = NameInfo.getName();
5322 
5323   // All of these full declarators require an identifier.  If it doesn't have
5324   // one, the ParsedFreeStandingDeclSpec action should be used.
5325   if (D.isDecompositionDeclarator()) {
5326     return ActOnDecompositionDeclarator(S, D, TemplateParamLists);
5327   } else if (!Name) {
5328     if (!D.isInvalidType())  // Reject this if we think it is valid.
5329       Diag(D.getDeclSpec().getLocStart(),
5330            diag::err_declarator_need_ident)
5331         << D.getDeclSpec().getSourceRange() << D.getSourceRange();
5332     return nullptr;
5333   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
5334     return nullptr;
5335 
5336   // The scope passed in may not be a decl scope.  Zip up the scope tree until
5337   // we find one that is.
5338   while ((S->getFlags() & Scope::DeclScope) == 0 ||
5339          (S->getFlags() & Scope::TemplateParamScope) != 0)
5340     S = S->getParent();
5341 
5342   DeclContext *DC = CurContext;
5343   if (D.getCXXScopeSpec().isInvalid())
5344     D.setInvalidType();
5345   else if (D.getCXXScopeSpec().isSet()) {
5346     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
5347                                         UPPC_DeclarationQualifier))
5348       return nullptr;
5349 
5350     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
5351     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
5352     if (!DC || isa<EnumDecl>(DC)) {
5353       // If we could not compute the declaration context, it's because the
5354       // declaration context is dependent but does not refer to a class,
5355       // class template, or class template partial specialization. Complain
5356       // and return early, to avoid the coming semantic disaster.
5357       Diag(D.getIdentifierLoc(),
5358            diag::err_template_qualified_declarator_no_match)
5359         << D.getCXXScopeSpec().getScopeRep()
5360         << D.getCXXScopeSpec().getRange();
5361       return nullptr;
5362     }
5363     bool IsDependentContext = DC->isDependentContext();
5364 
5365     if (!IsDependentContext &&
5366         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
5367       return nullptr;
5368 
5369     // If a class is incomplete, do not parse entities inside it.
5370     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
5371       Diag(D.getIdentifierLoc(),
5372            diag::err_member_def_undefined_record)
5373         << Name << DC << D.getCXXScopeSpec().getRange();
5374       return nullptr;
5375     }
5376     if (!D.getDeclSpec().isFriendSpecified()) {
5377       if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
5378                                       Name, D.getIdentifierLoc())) {
5379         if (DC->isRecord())
5380           return nullptr;
5381 
5382         D.setInvalidType();
5383       }
5384     }
5385 
5386     // Check whether we need to rebuild the type of the given
5387     // declaration in the current instantiation.
5388     if (EnteringContext && IsDependentContext &&
5389         TemplateParamLists.size() != 0) {
5390       ContextRAII SavedContext(*this, DC);
5391       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
5392         D.setInvalidType();
5393     }
5394   }
5395 
5396   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
5397   QualType R = TInfo->getType();
5398 
5399   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
5400                                       UPPC_DeclarationType))
5401     D.setInvalidType();
5402 
5403   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
5404                         forRedeclarationInCurContext());
5405 
5406   // See if this is a redefinition of a variable in the same scope.
5407   if (!D.getCXXScopeSpec().isSet()) {
5408     bool IsLinkageLookup = false;
5409     bool CreateBuiltins = false;
5410 
5411     // If the declaration we're planning to build will be a function
5412     // or object with linkage, then look for another declaration with
5413     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
5414     //
5415     // If the declaration we're planning to build will be declared with
5416     // external linkage in the translation unit, create any builtin with
5417     // the same name.
5418     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
5419       /* Do nothing*/;
5420     else if (CurContext->isFunctionOrMethod() &&
5421              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
5422               R->isFunctionType())) {
5423       IsLinkageLookup = true;
5424       CreateBuiltins =
5425           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
5426     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
5427                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
5428       CreateBuiltins = true;
5429 
5430     if (IsLinkageLookup) {
5431       Previous.clear(LookupRedeclarationWithLinkage);
5432       Previous.setRedeclarationKind(ForExternalRedeclaration);
5433     }
5434 
5435     LookupName(Previous, S, CreateBuiltins);
5436   } else { // Something like "int foo::x;"
5437     LookupQualifiedName(Previous, DC);
5438 
5439     // C++ [dcl.meaning]p1:
5440     //   When the declarator-id is qualified, the declaration shall refer to a
5441     //  previously declared member of the class or namespace to which the
5442     //  qualifier refers (or, in the case of a namespace, of an element of the
5443     //  inline namespace set of that namespace (7.3.1)) or to a specialization
5444     //  thereof; [...]
5445     //
5446     // Note that we already checked the context above, and that we do not have
5447     // enough information to make sure that Previous contains the declaration
5448     // we want to match. For example, given:
5449     //
5450     //   class X {
5451     //     void f();
5452     //     void f(float);
5453     //   };
5454     //
5455     //   void X::f(int) { } // ill-formed
5456     //
5457     // In this case, Previous will point to the overload set
5458     // containing the two f's declared in X, but neither of them
5459     // matches.
5460 
5461     // C++ [dcl.meaning]p1:
5462     //   [...] the member shall not merely have been introduced by a
5463     //   using-declaration in the scope of the class or namespace nominated by
5464     //   the nested-name-specifier of the declarator-id.
5465     RemoveUsingDecls(Previous);
5466   }
5467 
5468   if (Previous.isSingleResult() &&
5469       Previous.getFoundDecl()->isTemplateParameter()) {
5470     // Maybe we will complain about the shadowed template parameter.
5471     if (!D.isInvalidType())
5472       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
5473                                       Previous.getFoundDecl());
5474 
5475     // Just pretend that we didn't see the previous declaration.
5476     Previous.clear();
5477   }
5478 
5479   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
5480     // Forget that the previous declaration is the injected-class-name.
5481     Previous.clear();
5482 
5483   // In C++, the previous declaration we find might be a tag type
5484   // (class or enum). In this case, the new declaration will hide the
5485   // tag type. Note that this applies to functions, function templates, and
5486   // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates.
5487   if (Previous.isSingleTagDecl() &&
5488       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
5489       (TemplateParamLists.size() == 0 || R->isFunctionType()))
5490     Previous.clear();
5491 
5492   // Check that there are no default arguments other than in the parameters
5493   // of a function declaration (C++ only).
5494   if (getLangOpts().CPlusPlus)
5495     CheckExtraCXXDefaultArguments(D);
5496 
5497   NamedDecl *New;
5498 
5499   bool AddToScope = true;
5500   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5501     if (TemplateParamLists.size()) {
5502       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5503       return nullptr;
5504     }
5505 
5506     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5507   } else if (R->isFunctionType()) {
5508     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5509                                   TemplateParamLists,
5510                                   AddToScope);
5511   } else {
5512     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5513                                   AddToScope);
5514   }
5515 
5516   if (!New)
5517     return nullptr;
5518 
5519   // If this has an identifier and is not a function template specialization,
5520   // add it to the scope stack.
5521   if (New->getDeclName() && AddToScope) {
5522     // Only make a locally-scoped extern declaration visible if it is the first
5523     // declaration of this entity. Qualified lookup for such an entity should
5524     // only find this declaration if there is no visible declaration of it.
5525     bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
5526     PushOnScopeChains(New, S, AddToContext);
5527     if (!AddToContext)
5528       CurContext->addHiddenDecl(New);
5529   }
5530 
5531   if (isInOpenMPDeclareTargetContext())
5532     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
5533 
5534   return New;
5535 }
5536 
5537 /// Helper method to turn variable array types into constant array
5538 /// types in certain situations which would otherwise be errors (for
5539 /// GCC compatibility).
5540 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5541                                                     ASTContext &Context,
5542                                                     bool &SizeIsNegative,
5543                                                     llvm::APSInt &Oversized) {
5544   // This method tries to turn a variable array into a constant
5545   // array even when the size isn't an ICE.  This is necessary
5546   // for compatibility with code that depends on gcc's buggy
5547   // constant expression folding, like struct {char x[(int)(char*)2];}
5548   SizeIsNegative = false;
5549   Oversized = 0;
5550 
5551   if (T->isDependentType())
5552     return QualType();
5553 
5554   QualifierCollector Qs;
5555   const Type *Ty = Qs.strip(T);
5556 
5557   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5558     QualType Pointee = PTy->getPointeeType();
5559     QualType FixedType =
5560         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5561                                             Oversized);
5562     if (FixedType.isNull()) return FixedType;
5563     FixedType = Context.getPointerType(FixedType);
5564     return Qs.apply(Context, FixedType);
5565   }
5566   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5567     QualType Inner = PTy->getInnerType();
5568     QualType FixedType =
5569         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5570                                             Oversized);
5571     if (FixedType.isNull()) return FixedType;
5572     FixedType = Context.getParenType(FixedType);
5573     return Qs.apply(Context, FixedType);
5574   }
5575 
5576   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5577   if (!VLATy)
5578     return QualType();
5579   // FIXME: We should probably handle this case
5580   if (VLATy->getElementType()->isVariablyModifiedType())
5581     return QualType();
5582 
5583   llvm::APSInt Res;
5584   if (!VLATy->getSizeExpr() ||
5585       !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
5586     return QualType();
5587 
5588   // Check whether the array size is negative.
5589   if (Res.isSigned() && Res.isNegative()) {
5590     SizeIsNegative = true;
5591     return QualType();
5592   }
5593 
5594   // Check whether the array is too large to be addressed.
5595   unsigned ActiveSizeBits
5596     = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
5597                                               Res);
5598   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5599     Oversized = Res;
5600     return QualType();
5601   }
5602 
5603   return Context.getConstantArrayType(VLATy->getElementType(),
5604                                       Res, ArrayType::Normal, 0);
5605 }
5606 
5607 static void
5608 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5609   SrcTL = SrcTL.getUnqualifiedLoc();
5610   DstTL = DstTL.getUnqualifiedLoc();
5611   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5612     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5613     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5614                                       DstPTL.getPointeeLoc());
5615     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5616     return;
5617   }
5618   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5619     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5620     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5621                                       DstPTL.getInnerLoc());
5622     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5623     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5624     return;
5625   }
5626   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
5627   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
5628   TypeLoc SrcElemTL = SrcATL.getElementLoc();
5629   TypeLoc DstElemTL = DstATL.getElementLoc();
5630   DstElemTL.initializeFullCopy(SrcElemTL);
5631   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
5632   DstATL.setSizeExpr(SrcATL.getSizeExpr());
5633   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
5634 }
5635 
5636 /// Helper method to turn variable array types into constant array
5637 /// types in certain situations which would otherwise be errors (for
5638 /// GCC compatibility).
5639 static TypeSourceInfo*
5640 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
5641                                               ASTContext &Context,
5642                                               bool &SizeIsNegative,
5643                                               llvm::APSInt &Oversized) {
5644   QualType FixedTy
5645     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
5646                                           SizeIsNegative, Oversized);
5647   if (FixedTy.isNull())
5648     return nullptr;
5649   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
5650   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
5651                                     FixedTInfo->getTypeLoc());
5652   return FixedTInfo;
5653 }
5654 
5655 /// \brief Register the given locally-scoped extern "C" declaration so
5656 /// that it can be found later for redeclarations. We include any extern "C"
5657 /// declaration that is not visible in the translation unit here, not just
5658 /// function-scope declarations.
5659 void
5660 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
5661   if (!getLangOpts().CPlusPlus &&
5662       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
5663     // Don't need to track declarations in the TU in C.
5664     return;
5665 
5666   // Note that we have a locally-scoped external with this name.
5667   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
5668 }
5669 
5670 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
5671   // FIXME: We can have multiple results via __attribute__((overloadable)).
5672   auto Result = Context.getExternCContextDecl()->lookup(Name);
5673   return Result.empty() ? nullptr : *Result.begin();
5674 }
5675 
5676 /// \brief Diagnose function specifiers on a declaration of an identifier that
5677 /// does not identify a function.
5678 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
5679   // FIXME: We should probably indicate the identifier in question to avoid
5680   // confusion for constructs like "virtual int a(), b;"
5681   if (DS.isVirtualSpecified())
5682     Diag(DS.getVirtualSpecLoc(),
5683          diag::err_virtual_non_function);
5684 
5685   if (DS.isExplicitSpecified())
5686     Diag(DS.getExplicitSpecLoc(),
5687          diag::err_explicit_non_function);
5688 
5689   if (DS.isNoreturnSpecified())
5690     Diag(DS.getNoreturnSpecLoc(),
5691          diag::err_noreturn_non_function);
5692 }
5693 
5694 NamedDecl*
5695 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
5696                              TypeSourceInfo *TInfo, LookupResult &Previous) {
5697   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
5698   if (D.getCXXScopeSpec().isSet()) {
5699     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
5700       << D.getCXXScopeSpec().getRange();
5701     D.setInvalidType();
5702     // Pretend we didn't see the scope specifier.
5703     DC = CurContext;
5704     Previous.clear();
5705   }
5706 
5707   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5708 
5709   if (D.getDeclSpec().isInlineSpecified())
5710     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
5711         << getLangOpts().CPlusPlus17;
5712   if (D.getDeclSpec().isConstexprSpecified())
5713     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
5714       << 1;
5715 
5716   if (D.getName().Kind != UnqualifiedIdKind::IK_Identifier) {
5717     if (D.getName().Kind == UnqualifiedIdKind::IK_DeductionGuideName)
5718       Diag(D.getName().StartLocation,
5719            diag::err_deduction_guide_invalid_specifier)
5720           << "typedef";
5721     else
5722       Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
5723           << D.getName().getSourceRange();
5724     return nullptr;
5725   }
5726 
5727   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
5728   if (!NewTD) return nullptr;
5729 
5730   // Handle attributes prior to checking for duplicates in MergeVarDecl
5731   ProcessDeclAttributes(S, NewTD, D);
5732 
5733   CheckTypedefForVariablyModifiedType(S, NewTD);
5734 
5735   bool Redeclaration = D.isRedeclaration();
5736   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
5737   D.setRedeclaration(Redeclaration);
5738   return ND;
5739 }
5740 
5741 void
5742 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
5743   // C99 6.7.7p2: If a typedef name specifies a variably modified type
5744   // then it shall have block scope.
5745   // Note that variably modified types must be fixed before merging the decl so
5746   // that redeclarations will match.
5747   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
5748   QualType T = TInfo->getType();
5749   if (T->isVariablyModifiedType()) {
5750     getCurFunction()->setHasBranchProtectedScope();
5751 
5752     if (S->getFnParent() == nullptr) {
5753       bool SizeIsNegative;
5754       llvm::APSInt Oversized;
5755       TypeSourceInfo *FixedTInfo =
5756         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5757                                                       SizeIsNegative,
5758                                                       Oversized);
5759       if (FixedTInfo) {
5760         Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
5761         NewTD->setTypeSourceInfo(FixedTInfo);
5762       } else {
5763         if (SizeIsNegative)
5764           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
5765         else if (T->isVariableArrayType())
5766           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
5767         else if (Oversized.getBoolValue())
5768           Diag(NewTD->getLocation(), diag::err_array_too_large)
5769             << Oversized.toString(10);
5770         else
5771           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
5772         NewTD->setInvalidDecl();
5773       }
5774     }
5775   }
5776 }
5777 
5778 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
5779 /// declares a typedef-name, either using the 'typedef' type specifier or via
5780 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
5781 NamedDecl*
5782 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
5783                            LookupResult &Previous, bool &Redeclaration) {
5784 
5785   // Find the shadowed declaration before filtering for scope.
5786   NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous);
5787 
5788   // Merge the decl with the existing one if appropriate. If the decl is
5789   // in an outer scope, it isn't the same thing.
5790   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
5791                        /*AllowInlineNamespace*/false);
5792   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
5793   if (!Previous.empty()) {
5794     Redeclaration = true;
5795     MergeTypedefNameDecl(S, NewTD, Previous);
5796   }
5797 
5798   if (ShadowedDecl && !Redeclaration)
5799     CheckShadow(NewTD, ShadowedDecl, Previous);
5800 
5801   // If this is the C FILE type, notify the AST context.
5802   if (IdentifierInfo *II = NewTD->getIdentifier())
5803     if (!NewTD->isInvalidDecl() &&
5804         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5805       if (II->isStr("FILE"))
5806         Context.setFILEDecl(NewTD);
5807       else if (II->isStr("jmp_buf"))
5808         Context.setjmp_bufDecl(NewTD);
5809       else if (II->isStr("sigjmp_buf"))
5810         Context.setsigjmp_bufDecl(NewTD);
5811       else if (II->isStr("ucontext_t"))
5812         Context.setucontext_tDecl(NewTD);
5813     }
5814 
5815   return NewTD;
5816 }
5817 
5818 /// \brief Determines whether the given declaration is an out-of-scope
5819 /// previous declaration.
5820 ///
5821 /// This routine should be invoked when name lookup has found a
5822 /// previous declaration (PrevDecl) that is not in the scope where a
5823 /// new declaration by the same name is being introduced. If the new
5824 /// declaration occurs in a local scope, previous declarations with
5825 /// linkage may still be considered previous declarations (C99
5826 /// 6.2.2p4-5, C++ [basic.link]p6).
5827 ///
5828 /// \param PrevDecl the previous declaration found by name
5829 /// lookup
5830 ///
5831 /// \param DC the context in which the new declaration is being
5832 /// declared.
5833 ///
5834 /// \returns true if PrevDecl is an out-of-scope previous declaration
5835 /// for a new delcaration with the same name.
5836 static bool
5837 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
5838                                 ASTContext &Context) {
5839   if (!PrevDecl)
5840     return false;
5841 
5842   if (!PrevDecl->hasLinkage())
5843     return false;
5844 
5845   if (Context.getLangOpts().CPlusPlus) {
5846     // C++ [basic.link]p6:
5847     //   If there is a visible declaration of an entity with linkage
5848     //   having the same name and type, ignoring entities declared
5849     //   outside the innermost enclosing namespace scope, the block
5850     //   scope declaration declares that same entity and receives the
5851     //   linkage of the previous declaration.
5852     DeclContext *OuterContext = DC->getRedeclContext();
5853     if (!OuterContext->isFunctionOrMethod())
5854       // This rule only applies to block-scope declarations.
5855       return false;
5856 
5857     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
5858     if (PrevOuterContext->isRecord())
5859       // We found a member function: ignore it.
5860       return false;
5861 
5862     // Find the innermost enclosing namespace for the new and
5863     // previous declarations.
5864     OuterContext = OuterContext->getEnclosingNamespaceContext();
5865     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
5866 
5867     // The previous declaration is in a different namespace, so it
5868     // isn't the same function.
5869     if (!OuterContext->Equals(PrevOuterContext))
5870       return false;
5871   }
5872 
5873   return true;
5874 }
5875 
5876 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
5877   CXXScopeSpec &SS = D.getCXXScopeSpec();
5878   if (!SS.isSet()) return;
5879   DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
5880 }
5881 
5882 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
5883   QualType type = decl->getType();
5884   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5885   if (lifetime == Qualifiers::OCL_Autoreleasing) {
5886     // Various kinds of declaration aren't allowed to be __autoreleasing.
5887     unsigned kind = -1U;
5888     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5889       if (var->hasAttr<BlocksAttr>())
5890         kind = 0; // __block
5891       else if (!var->hasLocalStorage())
5892         kind = 1; // global
5893     } else if (isa<ObjCIvarDecl>(decl)) {
5894       kind = 3; // ivar
5895     } else if (isa<FieldDecl>(decl)) {
5896       kind = 2; // field
5897     }
5898 
5899     if (kind != -1U) {
5900       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
5901         << kind;
5902     }
5903   } else if (lifetime == Qualifiers::OCL_None) {
5904     // Try to infer lifetime.
5905     if (!type->isObjCLifetimeType())
5906       return false;
5907 
5908     lifetime = type->getObjCARCImplicitLifetime();
5909     type = Context.getLifetimeQualifiedType(type, lifetime);
5910     decl->setType(type);
5911   }
5912 
5913   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5914     // Thread-local variables cannot have lifetime.
5915     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
5916         var->getTLSKind()) {
5917       Diag(var->getLocation(), diag::err_arc_thread_ownership)
5918         << var->getType();
5919       return true;
5920     }
5921   }
5922 
5923   return false;
5924 }
5925 
5926 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
5927   // Ensure that an auto decl is deduced otherwise the checks below might cache
5928   // the wrong linkage.
5929   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
5930 
5931   // 'weak' only applies to declarations with external linkage.
5932   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
5933     if (!ND.isExternallyVisible()) {
5934       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
5935       ND.dropAttr<WeakAttr>();
5936     }
5937   }
5938   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
5939     if (ND.isExternallyVisible()) {
5940       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
5941       ND.dropAttr<WeakRefAttr>();
5942       ND.dropAttr<AliasAttr>();
5943     }
5944   }
5945 
5946   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
5947     if (VD->hasInit()) {
5948       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
5949         assert(VD->isThisDeclarationADefinition() &&
5950                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
5951         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0;
5952         VD->dropAttr<AliasAttr>();
5953       }
5954     }
5955   }
5956 
5957   // 'selectany' only applies to externally visible variable declarations.
5958   // It does not apply to functions.
5959   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
5960     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
5961       S.Diag(Attr->getLocation(),
5962              diag::err_attribute_selectany_non_extern_data);
5963       ND.dropAttr<SelectAnyAttr>();
5964     }
5965   }
5966 
5967   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
5968     // dll attributes require external linkage. Static locals may have external
5969     // linkage but still cannot be explicitly imported or exported.
5970     auto *VD = dyn_cast<VarDecl>(&ND);
5971     if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) {
5972       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
5973         << &ND << Attr;
5974       ND.setInvalidDecl();
5975     }
5976   }
5977 
5978   // Virtual functions cannot be marked as 'notail'.
5979   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
5980     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
5981       if (MD->isVirtual()) {
5982         S.Diag(ND.getLocation(),
5983                diag::err_invalid_attribute_on_virtual_function)
5984             << Attr;
5985         ND.dropAttr<NotTailCalledAttr>();
5986       }
5987 }
5988 
5989 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
5990                                            NamedDecl *NewDecl,
5991                                            bool IsSpecialization,
5992                                            bool IsDefinition) {
5993   if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl())
5994     return;
5995 
5996   bool IsTemplate = false;
5997   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) {
5998     OldDecl = OldTD->getTemplatedDecl();
5999     IsTemplate = true;
6000     if (!IsSpecialization)
6001       IsDefinition = false;
6002   }
6003   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) {
6004     NewDecl = NewTD->getTemplatedDecl();
6005     IsTemplate = true;
6006   }
6007 
6008   if (!OldDecl || !NewDecl)
6009     return;
6010 
6011   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
6012   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
6013   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
6014   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
6015 
6016   // dllimport and dllexport are inheritable attributes so we have to exclude
6017   // inherited attribute instances.
6018   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
6019                     (NewExportAttr && !NewExportAttr->isInherited());
6020 
6021   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
6022   // the only exception being explicit specializations.
6023   // Implicitly generated declarations are also excluded for now because there
6024   // is no other way to switch these to use dllimport or dllexport.
6025   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
6026 
6027   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
6028     // Allow with a warning for free functions and global variables.
6029     bool JustWarn = false;
6030     if (!OldDecl->isCXXClassMember()) {
6031       auto *VD = dyn_cast<VarDecl>(OldDecl);
6032       if (VD && !VD->getDescribedVarTemplate())
6033         JustWarn = true;
6034       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
6035       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
6036         JustWarn = true;
6037     }
6038 
6039     // We cannot change a declaration that's been used because IR has already
6040     // been emitted. Dllimported functions will still work though (modulo
6041     // address equality) as they can use the thunk.
6042     if (OldDecl->isUsed())
6043       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
6044         JustWarn = false;
6045 
6046     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
6047                                : diag::err_attribute_dll_redeclaration;
6048     S.Diag(NewDecl->getLocation(), DiagID)
6049         << NewDecl
6050         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
6051     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6052     if (!JustWarn) {
6053       NewDecl->setInvalidDecl();
6054       return;
6055     }
6056   }
6057 
6058   // A redeclaration is not allowed to drop a dllimport attribute, the only
6059   // exceptions being inline function definitions (except for function
6060   // templates), local extern declarations, qualified friend declarations or
6061   // special MSVC extension: in the last case, the declaration is treated as if
6062   // it were marked dllexport.
6063   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
6064   bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft();
6065   if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) {
6066     // Ignore static data because out-of-line definitions are diagnosed
6067     // separately.
6068     IsStaticDataMember = VD->isStaticDataMember();
6069     IsDefinition = VD->isThisDeclarationADefinition(S.Context) !=
6070                    VarDecl::DeclarationOnly;
6071   } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
6072     IsInline = FD->isInlined();
6073     IsQualifiedFriend = FD->getQualifier() &&
6074                         FD->getFriendObjectKind() == Decl::FOK_Declared;
6075   }
6076 
6077   if (OldImportAttr && !HasNewAttr &&
6078       (!IsInline || (IsMicrosoft && IsTemplate)) && !IsStaticDataMember &&
6079       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
6080     if (IsMicrosoft && IsDefinition) {
6081       S.Diag(NewDecl->getLocation(),
6082              diag::warn_redeclaration_without_import_attribute)
6083           << NewDecl;
6084       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6085       NewDecl->dropAttr<DLLImportAttr>();
6086       NewDecl->addAttr(::new (S.Context) DLLExportAttr(
6087           NewImportAttr->getRange(), S.Context,
6088           NewImportAttr->getSpellingListIndex()));
6089     } else {
6090       S.Diag(NewDecl->getLocation(),
6091              diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
6092           << NewDecl << OldImportAttr;
6093       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6094       S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
6095       OldDecl->dropAttr<DLLImportAttr>();
6096       NewDecl->dropAttr<DLLImportAttr>();
6097     }
6098   } else if (IsInline && OldImportAttr && !IsMicrosoft) {
6099     // In MinGW, seeing a function declared inline drops the dllimport
6100     // attribute.
6101     OldDecl->dropAttr<DLLImportAttr>();
6102     NewDecl->dropAttr<DLLImportAttr>();
6103     S.Diag(NewDecl->getLocation(),
6104            diag::warn_dllimport_dropped_from_inline_function)
6105         << NewDecl << OldImportAttr;
6106   }
6107 
6108   // A specialization of a class template member function is processed here
6109   // since it's a redeclaration. If the parent class is dllexport, the
6110   // specialization inherits that attribute. This doesn't happen automatically
6111   // since the parent class isn't instantiated until later.
6112   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) {
6113     if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization &&
6114         !NewImportAttr && !NewExportAttr) {
6115       if (const DLLExportAttr *ParentExportAttr =
6116               MD->getParent()->getAttr<DLLExportAttr>()) {
6117         DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context);
6118         NewAttr->setInherited(true);
6119         NewDecl->addAttr(NewAttr);
6120       }
6121     }
6122   }
6123 }
6124 
6125 /// Given that we are within the definition of the given function,
6126 /// will that definition behave like C99's 'inline', where the
6127 /// definition is discarded except for optimization purposes?
6128 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
6129   // Try to avoid calling GetGVALinkageForFunction.
6130 
6131   // All cases of this require the 'inline' keyword.
6132   if (!FD->isInlined()) return false;
6133 
6134   // This is only possible in C++ with the gnu_inline attribute.
6135   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
6136     return false;
6137 
6138   // Okay, go ahead and call the relatively-more-expensive function.
6139   return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
6140 }
6141 
6142 /// Determine whether a variable is extern "C" prior to attaching
6143 /// an initializer. We can't just call isExternC() here, because that
6144 /// will also compute and cache whether the declaration is externally
6145 /// visible, which might change when we attach the initializer.
6146 ///
6147 /// This can only be used if the declaration is known to not be a
6148 /// redeclaration of an internal linkage declaration.
6149 ///
6150 /// For instance:
6151 ///
6152 ///   auto x = []{};
6153 ///
6154 /// Attaching the initializer here makes this declaration not externally
6155 /// visible, because its type has internal linkage.
6156 ///
6157 /// FIXME: This is a hack.
6158 template<typename T>
6159 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
6160   if (S.getLangOpts().CPlusPlus) {
6161     // In C++, the overloadable attribute negates the effects of extern "C".
6162     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
6163       return false;
6164 
6165     // So do CUDA's host/device attributes.
6166     if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() ||
6167                                  D->template hasAttr<CUDAHostAttr>()))
6168       return false;
6169   }
6170   return D->isExternC();
6171 }
6172 
6173 static bool shouldConsiderLinkage(const VarDecl *VD) {
6174   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
6175   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC))
6176     return VD->hasExternalStorage();
6177   if (DC->isFileContext())
6178     return true;
6179   if (DC->isRecord())
6180     return false;
6181   llvm_unreachable("Unexpected context");
6182 }
6183 
6184 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
6185   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
6186   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
6187       isa<OMPDeclareReductionDecl>(DC))
6188     return true;
6189   if (DC->isRecord())
6190     return false;
6191   llvm_unreachable("Unexpected context");
6192 }
6193 
6194 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
6195                           AttributeList::Kind Kind) {
6196   for (const AttributeList *L = AttrList; L; L = L->getNext())
6197     if (L->getKind() == Kind)
6198       return true;
6199   return false;
6200 }
6201 
6202 static bool hasParsedAttr(Scope *S, const Declarator &PD,
6203                           AttributeList::Kind Kind) {
6204   // Check decl attributes on the DeclSpec.
6205   if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
6206     return true;
6207 
6208   // Walk the declarator structure, checking decl attributes that were in a type
6209   // position to the decl itself.
6210   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
6211     if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
6212       return true;
6213   }
6214 
6215   // Finally, check attributes on the decl itself.
6216   return hasParsedAttr(S, PD.getAttributes(), Kind);
6217 }
6218 
6219 /// Adjust the \c DeclContext for a function or variable that might be a
6220 /// function-local external declaration.
6221 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
6222   if (!DC->isFunctionOrMethod())
6223     return false;
6224 
6225   // If this is a local extern function or variable declared within a function
6226   // template, don't add it into the enclosing namespace scope until it is
6227   // instantiated; it might have a dependent type right now.
6228   if (DC->isDependentContext())
6229     return true;
6230 
6231   // C++11 [basic.link]p7:
6232   //   When a block scope declaration of an entity with linkage is not found to
6233   //   refer to some other declaration, then that entity is a member of the
6234   //   innermost enclosing namespace.
6235   //
6236   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
6237   // semantically-enclosing namespace, not a lexically-enclosing one.
6238   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
6239     DC = DC->getParent();
6240   return true;
6241 }
6242 
6243 /// \brief Returns true if given declaration has external C language linkage.
6244 static bool isDeclExternC(const Decl *D) {
6245   if (const auto *FD = dyn_cast<FunctionDecl>(D))
6246     return FD->isExternC();
6247   if (const auto *VD = dyn_cast<VarDecl>(D))
6248     return VD->isExternC();
6249 
6250   llvm_unreachable("Unknown type of decl!");
6251 }
6252 
6253 NamedDecl *Sema::ActOnVariableDeclarator(
6254     Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo,
6255     LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists,
6256     bool &AddToScope, ArrayRef<BindingDecl *> Bindings) {
6257   QualType R = TInfo->getType();
6258   DeclarationName Name = GetNameForDeclarator(D).getName();
6259 
6260   IdentifierInfo *II = Name.getAsIdentifierInfo();
6261 
6262   if (D.isDecompositionDeclarator()) {
6263     // Take the name of the first declarator as our name for diagnostic
6264     // purposes.
6265     auto &Decomp = D.getDecompositionDeclarator();
6266     if (!Decomp.bindings().empty()) {
6267       II = Decomp.bindings()[0].Name;
6268       Name = II;
6269     }
6270   } else if (!II) {
6271     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name;
6272     return nullptr;
6273   }
6274 
6275   if (getLangOpts().OpenCL) {
6276     // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
6277     // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
6278     // argument.
6279     if (R->isImageType() || R->isPipeType()) {
6280       Diag(D.getIdentifierLoc(),
6281            diag::err_opencl_type_can_only_be_used_as_function_parameter)
6282           << R;
6283       D.setInvalidType();
6284       return nullptr;
6285     }
6286 
6287     // OpenCL v1.2 s6.9.r:
6288     // The event type cannot be used to declare a program scope variable.
6289     // OpenCL v2.0 s6.9.q:
6290     // The clk_event_t and reserve_id_t types cannot be declared in program scope.
6291     if (NULL == S->getParent()) {
6292       if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) {
6293         Diag(D.getIdentifierLoc(),
6294              diag::err_invalid_type_for_program_scope_var) << R;
6295         D.setInvalidType();
6296         return nullptr;
6297       }
6298     }
6299 
6300     // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
6301     QualType NR = R;
6302     while (NR->isPointerType()) {
6303       if (NR->isFunctionPointerType()) {
6304         Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer);
6305         D.setInvalidType();
6306         break;
6307       }
6308       NR = NR->getPointeeType();
6309     }
6310 
6311     if (!getOpenCLOptions().isEnabled("cl_khr_fp16")) {
6312       // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
6313       // half array type (unless the cl_khr_fp16 extension is enabled).
6314       if (Context.getBaseElementType(R)->isHalfType()) {
6315         Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
6316         D.setInvalidType();
6317       }
6318     }
6319 
6320     if (R->isSamplerT()) {
6321       // OpenCL v1.2 s6.9.b p4:
6322       // The sampler type cannot be used with the __local and __global address
6323       // space qualifiers.
6324       if (R.getAddressSpace() == LangAS::opencl_local ||
6325           R.getAddressSpace() == LangAS::opencl_global) {
6326         Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
6327       }
6328 
6329       // OpenCL v1.2 s6.12.14.1:
6330       // A global sampler must be declared with either the constant address
6331       // space qualifier or with the const qualifier.
6332       if (DC->isTranslationUnit() &&
6333           !(R.getAddressSpace() == LangAS::opencl_constant ||
6334           R.isConstQualified())) {
6335         Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler);
6336         D.setInvalidType();
6337       }
6338     }
6339 
6340     // OpenCL v1.2 s6.9.r:
6341     // The event type cannot be used with the __local, __constant and __global
6342     // address space qualifiers.
6343     if (R->isEventT()) {
6344       if (R.getAddressSpace() != LangAS::opencl_private) {
6345         Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
6346         D.setInvalidType();
6347       }
6348     }
6349   }
6350 
6351   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
6352   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
6353 
6354   // dllimport globals without explicit storage class are treated as extern. We
6355   // have to change the storage class this early to get the right DeclContext.
6356   if (SC == SC_None && !DC->isRecord() &&
6357       hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
6358       !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
6359     SC = SC_Extern;
6360 
6361   DeclContext *OriginalDC = DC;
6362   bool IsLocalExternDecl = SC == SC_Extern &&
6363                            adjustContextForLocalExternDecl(DC);
6364 
6365   if (SCSpec == DeclSpec::SCS_mutable) {
6366     // mutable can only appear on non-static class members, so it's always
6367     // an error here
6368     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
6369     D.setInvalidType();
6370     SC = SC_None;
6371   }
6372 
6373   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
6374       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
6375                               D.getDeclSpec().getStorageClassSpecLoc())) {
6376     // In C++11, the 'register' storage class specifier is deprecated.
6377     // Suppress the warning in system macros, it's used in macros in some
6378     // popular C system headers, such as in glibc's htonl() macro.
6379     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6380          getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
6381                                    : diag::warn_deprecated_register)
6382       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6383   }
6384 
6385   DiagnoseFunctionSpecifiers(D.getDeclSpec());
6386 
6387   if (!DC->isRecord() && S->getFnParent() == nullptr) {
6388     // C99 6.9p2: The storage-class specifiers auto and register shall not
6389     // appear in the declaration specifiers in an external declaration.
6390     // Global Register+Asm is a GNU extension we support.
6391     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
6392       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
6393       D.setInvalidType();
6394     }
6395   }
6396 
6397   bool IsMemberSpecialization = false;
6398   bool IsVariableTemplateSpecialization = false;
6399   bool IsPartialSpecialization = false;
6400   bool IsVariableTemplate = false;
6401   VarDecl *NewVD = nullptr;
6402   VarTemplateDecl *NewTemplate = nullptr;
6403   TemplateParameterList *TemplateParams = nullptr;
6404   if (!getLangOpts().CPlusPlus) {
6405     NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6406                             D.getIdentifierLoc(), II,
6407                             R, TInfo, SC);
6408 
6409     if (R->getContainedDeducedType())
6410       ParsingInitForAutoVars.insert(NewVD);
6411 
6412     if (D.isInvalidType())
6413       NewVD->setInvalidDecl();
6414   } else {
6415     bool Invalid = false;
6416 
6417     if (DC->isRecord() && !CurContext->isRecord()) {
6418       // This is an out-of-line definition of a static data member.
6419       switch (SC) {
6420       case SC_None:
6421         break;
6422       case SC_Static:
6423         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6424              diag::err_static_out_of_line)
6425           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6426         break;
6427       case SC_Auto:
6428       case SC_Register:
6429       case SC_Extern:
6430         // [dcl.stc] p2: The auto or register specifiers shall be applied only
6431         // to names of variables declared in a block or to function parameters.
6432         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
6433         // of class members
6434 
6435         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6436              diag::err_storage_class_for_static_member)
6437           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6438         break;
6439       case SC_PrivateExtern:
6440         llvm_unreachable("C storage class in c++!");
6441       }
6442     }
6443 
6444     if (SC == SC_Static && CurContext->isRecord()) {
6445       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
6446         if (RD->isLocalClass())
6447           Diag(D.getIdentifierLoc(),
6448                diag::err_static_data_member_not_allowed_in_local_class)
6449             << Name << RD->getDeclName();
6450 
6451         // C++98 [class.union]p1: If a union contains a static data member,
6452         // the program is ill-formed. C++11 drops this restriction.
6453         if (RD->isUnion())
6454           Diag(D.getIdentifierLoc(),
6455                getLangOpts().CPlusPlus11
6456                  ? diag::warn_cxx98_compat_static_data_member_in_union
6457                  : diag::ext_static_data_member_in_union) << Name;
6458         // We conservatively disallow static data members in anonymous structs.
6459         else if (!RD->getDeclName())
6460           Diag(D.getIdentifierLoc(),
6461                diag::err_static_data_member_not_allowed_in_anon_struct)
6462             << Name << RD->isUnion();
6463       }
6464     }
6465 
6466     // Match up the template parameter lists with the scope specifier, then
6467     // determine whether we have a template or a template specialization.
6468     TemplateParams = MatchTemplateParametersToScopeSpecifier(
6469         D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
6470         D.getCXXScopeSpec(),
6471         D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
6472             ? D.getName().TemplateId
6473             : nullptr,
6474         TemplateParamLists,
6475         /*never a friend*/ false, IsMemberSpecialization, Invalid);
6476 
6477     if (TemplateParams) {
6478       if (!TemplateParams->size() &&
6479           D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
6480         // There is an extraneous 'template<>' for this variable. Complain
6481         // about it, but allow the declaration of the variable.
6482         Diag(TemplateParams->getTemplateLoc(),
6483              diag::err_template_variable_noparams)
6484           << II
6485           << SourceRange(TemplateParams->getTemplateLoc(),
6486                          TemplateParams->getRAngleLoc());
6487         TemplateParams = nullptr;
6488       } else {
6489         if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
6490           // This is an explicit specialization or a partial specialization.
6491           // FIXME: Check that we can declare a specialization here.
6492           IsVariableTemplateSpecialization = true;
6493           IsPartialSpecialization = TemplateParams->size() > 0;
6494         } else { // if (TemplateParams->size() > 0)
6495           // This is a template declaration.
6496           IsVariableTemplate = true;
6497 
6498           // Check that we can declare a template here.
6499           if (CheckTemplateDeclScope(S, TemplateParams))
6500             return nullptr;
6501 
6502           // Only C++1y supports variable templates (N3651).
6503           Diag(D.getIdentifierLoc(),
6504                getLangOpts().CPlusPlus14
6505                    ? diag::warn_cxx11_compat_variable_template
6506                    : diag::ext_variable_template);
6507         }
6508       }
6509     } else {
6510       assert((Invalid ||
6511               D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) &&
6512              "should have a 'template<>' for this decl");
6513     }
6514 
6515     if (IsVariableTemplateSpecialization) {
6516       SourceLocation TemplateKWLoc =
6517           TemplateParamLists.size() > 0
6518               ? TemplateParamLists[0]->getTemplateLoc()
6519               : SourceLocation();
6520       DeclResult Res = ActOnVarTemplateSpecialization(
6521           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
6522           IsPartialSpecialization);
6523       if (Res.isInvalid())
6524         return nullptr;
6525       NewVD = cast<VarDecl>(Res.get());
6526       AddToScope = false;
6527     } else if (D.isDecompositionDeclarator()) {
6528       NewVD = DecompositionDecl::Create(Context, DC, D.getLocStart(),
6529                                         D.getIdentifierLoc(), R, TInfo, SC,
6530                                         Bindings);
6531     } else
6532       NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6533                               D.getIdentifierLoc(), II, R, TInfo, SC);
6534 
6535     // If this is supposed to be a variable template, create it as such.
6536     if (IsVariableTemplate) {
6537       NewTemplate =
6538           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
6539                                   TemplateParams, NewVD);
6540       NewVD->setDescribedVarTemplate(NewTemplate);
6541     }
6542 
6543     // If this decl has an auto type in need of deduction, make a note of the
6544     // Decl so we can diagnose uses of it in its own initializer.
6545     if (R->getContainedDeducedType())
6546       ParsingInitForAutoVars.insert(NewVD);
6547 
6548     if (D.isInvalidType() || Invalid) {
6549       NewVD->setInvalidDecl();
6550       if (NewTemplate)
6551         NewTemplate->setInvalidDecl();
6552     }
6553 
6554     SetNestedNameSpecifier(NewVD, D);
6555 
6556     // If we have any template parameter lists that don't directly belong to
6557     // the variable (matching the scope specifier), store them.
6558     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
6559     if (TemplateParamLists.size() > VDTemplateParamLists)
6560       NewVD->setTemplateParameterListsInfo(
6561           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
6562 
6563     if (D.getDeclSpec().isConstexprSpecified()) {
6564       NewVD->setConstexpr(true);
6565       // C++1z [dcl.spec.constexpr]p1:
6566       //   A static data member declared with the constexpr specifier is
6567       //   implicitly an inline variable.
6568       if (NewVD->isStaticDataMember() && getLangOpts().CPlusPlus17)
6569         NewVD->setImplicitlyInline();
6570     }
6571   }
6572 
6573   if (D.getDeclSpec().isInlineSpecified()) {
6574     if (!getLangOpts().CPlusPlus) {
6575       Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
6576           << 0;
6577     } else if (CurContext->isFunctionOrMethod()) {
6578       // 'inline' is not allowed on block scope variable declaration.
6579       Diag(D.getDeclSpec().getInlineSpecLoc(),
6580            diag::err_inline_declaration_block_scope) << Name
6581         << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
6582     } else {
6583       Diag(D.getDeclSpec().getInlineSpecLoc(),
6584            getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_inline_variable
6585                                      : diag::ext_inline_variable);
6586       NewVD->setInlineSpecified();
6587     }
6588   }
6589 
6590   // Set the lexical context. If the declarator has a C++ scope specifier, the
6591   // lexical context will be different from the semantic context.
6592   NewVD->setLexicalDeclContext(CurContext);
6593   if (NewTemplate)
6594     NewTemplate->setLexicalDeclContext(CurContext);
6595 
6596   if (IsLocalExternDecl) {
6597     if (D.isDecompositionDeclarator())
6598       for (auto *B : Bindings)
6599         B->setLocalExternDecl();
6600     else
6601       NewVD->setLocalExternDecl();
6602   }
6603 
6604   bool EmitTLSUnsupportedError = false;
6605   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
6606     // C++11 [dcl.stc]p4:
6607     //   When thread_local is applied to a variable of block scope the
6608     //   storage-class-specifier static is implied if it does not appear
6609     //   explicitly.
6610     // Core issue: 'static' is not implied if the variable is declared
6611     //   'extern'.
6612     if (NewVD->hasLocalStorage() &&
6613         (SCSpec != DeclSpec::SCS_unspecified ||
6614          TSCS != DeclSpec::TSCS_thread_local ||
6615          !DC->isFunctionOrMethod()))
6616       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6617            diag::err_thread_non_global)
6618         << DeclSpec::getSpecifierName(TSCS);
6619     else if (!Context.getTargetInfo().isTLSSupported()) {
6620       if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6621         // Postpone error emission until we've collected attributes required to
6622         // figure out whether it's a host or device variable and whether the
6623         // error should be ignored.
6624         EmitTLSUnsupportedError = true;
6625         // We still need to mark the variable as TLS so it shows up in AST with
6626         // proper storage class for other tools to use even if we're not going
6627         // to emit any code for it.
6628         NewVD->setTSCSpec(TSCS);
6629       } else
6630         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6631              diag::err_thread_unsupported);
6632     } else
6633       NewVD->setTSCSpec(TSCS);
6634   }
6635 
6636   // C99 6.7.4p3
6637   //   An inline definition of a function with external linkage shall
6638   //   not contain a definition of a modifiable object with static or
6639   //   thread storage duration...
6640   // We only apply this when the function is required to be defined
6641   // elsewhere, i.e. when the function is not 'extern inline'.  Note
6642   // that a local variable with thread storage duration still has to
6643   // be marked 'static'.  Also note that it's possible to get these
6644   // semantics in C++ using __attribute__((gnu_inline)).
6645   if (SC == SC_Static && S->getFnParent() != nullptr &&
6646       !NewVD->getType().isConstQualified()) {
6647     FunctionDecl *CurFD = getCurFunctionDecl();
6648     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
6649       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6650            diag::warn_static_local_in_extern_inline);
6651       MaybeSuggestAddingStaticToDecl(CurFD);
6652     }
6653   }
6654 
6655   if (D.getDeclSpec().isModulePrivateSpecified()) {
6656     if (IsVariableTemplateSpecialization)
6657       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6658           << (IsPartialSpecialization ? 1 : 0)
6659           << FixItHint::CreateRemoval(
6660                  D.getDeclSpec().getModulePrivateSpecLoc());
6661     else if (IsMemberSpecialization)
6662       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6663         << 2
6664         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6665     else if (NewVD->hasLocalStorage())
6666       Diag(NewVD->getLocation(), diag::err_module_private_local)
6667         << 0 << NewVD->getDeclName()
6668         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
6669         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6670     else {
6671       NewVD->setModulePrivate();
6672       if (NewTemplate)
6673         NewTemplate->setModulePrivate();
6674       for (auto *B : Bindings)
6675         B->setModulePrivate();
6676     }
6677   }
6678 
6679   // Handle attributes prior to checking for duplicates in MergeVarDecl
6680   ProcessDeclAttributes(S, NewVD, D);
6681 
6682   if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6683     if (EmitTLSUnsupportedError &&
6684         ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) ||
6685          (getLangOpts().OpenMPIsDevice &&
6686           NewVD->hasAttr<OMPDeclareTargetDeclAttr>())))
6687       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6688            diag::err_thread_unsupported);
6689     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
6690     // storage [duration]."
6691     if (SC == SC_None && S->getFnParent() != nullptr &&
6692         (NewVD->hasAttr<CUDASharedAttr>() ||
6693          NewVD->hasAttr<CUDAConstantAttr>())) {
6694       NewVD->setStorageClass(SC_Static);
6695     }
6696   }
6697 
6698   // Ensure that dllimport globals without explicit storage class are treated as
6699   // extern. The storage class is set above using parsed attributes. Now we can
6700   // check the VarDecl itself.
6701   assert(!NewVD->hasAttr<DLLImportAttr>() ||
6702          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
6703          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
6704 
6705   // In auto-retain/release, infer strong retension for variables of
6706   // retainable type.
6707   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
6708     NewVD->setInvalidDecl();
6709 
6710   // Handle GNU asm-label extension (encoded as an attribute).
6711   if (Expr *E = (Expr*)D.getAsmLabel()) {
6712     // The parser guarantees this is a string.
6713     StringLiteral *SE = cast<StringLiteral>(E);
6714     StringRef Label = SE->getString();
6715     if (S->getFnParent() != nullptr) {
6716       switch (SC) {
6717       case SC_None:
6718       case SC_Auto:
6719         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
6720         break;
6721       case SC_Register:
6722         // Local Named register
6723         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
6724             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
6725           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6726         break;
6727       case SC_Static:
6728       case SC_Extern:
6729       case SC_PrivateExtern:
6730         break;
6731       }
6732     } else if (SC == SC_Register) {
6733       // Global Named register
6734       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
6735         const auto &TI = Context.getTargetInfo();
6736         bool HasSizeMismatch;
6737 
6738         if (!TI.isValidGCCRegisterName(Label))
6739           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6740         else if (!TI.validateGlobalRegisterVariable(Label,
6741                                                     Context.getTypeSize(R),
6742                                                     HasSizeMismatch))
6743           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
6744         else if (HasSizeMismatch)
6745           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
6746       }
6747 
6748       if (!R->isIntegralType(Context) && !R->isPointerType()) {
6749         Diag(D.getLocStart(), diag::err_asm_bad_register_type);
6750         NewVD->setInvalidDecl(true);
6751       }
6752     }
6753 
6754     NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
6755                                                 Context, Label, 0));
6756   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6757     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6758       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
6759     if (I != ExtnameUndeclaredIdentifiers.end()) {
6760       if (isDeclExternC(NewVD)) {
6761         NewVD->addAttr(I->second);
6762         ExtnameUndeclaredIdentifiers.erase(I);
6763       } else
6764         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
6765             << /*Variable*/1 << NewVD;
6766     }
6767   }
6768 
6769   // Find the shadowed declaration before filtering for scope.
6770   NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty()
6771                                 ? getShadowedDeclaration(NewVD, Previous)
6772                                 : nullptr;
6773 
6774   // Don't consider existing declarations that are in a different
6775   // scope and are out-of-semantic-context declarations (if the new
6776   // declaration has linkage).
6777   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
6778                        D.getCXXScopeSpec().isNotEmpty() ||
6779                        IsMemberSpecialization ||
6780                        IsVariableTemplateSpecialization);
6781 
6782   // Check whether the previous declaration is in the same block scope. This
6783   // affects whether we merge types with it, per C++11 [dcl.array]p3.
6784   if (getLangOpts().CPlusPlus &&
6785       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
6786     NewVD->setPreviousDeclInSameBlockScope(
6787         Previous.isSingleResult() && !Previous.isShadowed() &&
6788         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
6789 
6790   if (!getLangOpts().CPlusPlus) {
6791     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6792   } else {
6793     // If this is an explicit specialization of a static data member, check it.
6794     if (IsMemberSpecialization && !NewVD->isInvalidDecl() &&
6795         CheckMemberSpecialization(NewVD, Previous))
6796       NewVD->setInvalidDecl();
6797 
6798     // Merge the decl with the existing one if appropriate.
6799     if (!Previous.empty()) {
6800       if (Previous.isSingleResult() &&
6801           isa<FieldDecl>(Previous.getFoundDecl()) &&
6802           D.getCXXScopeSpec().isSet()) {
6803         // The user tried to define a non-static data member
6804         // out-of-line (C++ [dcl.meaning]p1).
6805         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
6806           << D.getCXXScopeSpec().getRange();
6807         Previous.clear();
6808         NewVD->setInvalidDecl();
6809       }
6810     } else if (D.getCXXScopeSpec().isSet()) {
6811       // No previous declaration in the qualifying scope.
6812       Diag(D.getIdentifierLoc(), diag::err_no_member)
6813         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
6814         << D.getCXXScopeSpec().getRange();
6815       NewVD->setInvalidDecl();
6816     }
6817 
6818     if (!IsVariableTemplateSpecialization)
6819       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6820 
6821     if (NewTemplate) {
6822       VarTemplateDecl *PrevVarTemplate =
6823           NewVD->getPreviousDecl()
6824               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
6825               : nullptr;
6826 
6827       // Check the template parameter list of this declaration, possibly
6828       // merging in the template parameter list from the previous variable
6829       // template declaration.
6830       if (CheckTemplateParameterList(
6831               TemplateParams,
6832               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
6833                               : nullptr,
6834               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
6835                DC->isDependentContext())
6836                   ? TPC_ClassTemplateMember
6837                   : TPC_VarTemplate))
6838         NewVD->setInvalidDecl();
6839 
6840       // If we are providing an explicit specialization of a static variable
6841       // template, make a note of that.
6842       if (PrevVarTemplate &&
6843           PrevVarTemplate->getInstantiatedFromMemberTemplate())
6844         PrevVarTemplate->setMemberSpecialization();
6845     }
6846   }
6847 
6848   // Diagnose shadowed variables iff this isn't a redeclaration.
6849   if (ShadowedDecl && !D.isRedeclaration())
6850     CheckShadow(NewVD, ShadowedDecl, Previous);
6851 
6852   ProcessPragmaWeak(S, NewVD);
6853 
6854   // If this is the first declaration of an extern C variable, update
6855   // the map of such variables.
6856   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
6857       isIncompleteDeclExternC(*this, NewVD))
6858     RegisterLocallyScopedExternCDecl(NewVD, S);
6859 
6860   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
6861     Decl *ManglingContextDecl;
6862     if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
6863             NewVD->getDeclContext(), ManglingContextDecl)) {
6864       Context.setManglingNumber(
6865           NewVD, MCtx->getManglingNumber(
6866                      NewVD, getMSManglingNumber(getLangOpts(), S)));
6867       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
6868     }
6869   }
6870 
6871   // Special handling of variable named 'main'.
6872   if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") &&
6873       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
6874       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
6875 
6876     // C++ [basic.start.main]p3
6877     // A program that declares a variable main at global scope is ill-formed.
6878     if (getLangOpts().CPlusPlus)
6879       Diag(D.getLocStart(), diag::err_main_global_variable);
6880 
6881     // In C, and external-linkage variable named main results in undefined
6882     // behavior.
6883     else if (NewVD->hasExternalFormalLinkage())
6884       Diag(D.getLocStart(), diag::warn_main_redefined);
6885   }
6886 
6887   if (D.isRedeclaration() && !Previous.empty()) {
6888     checkDLLAttributeRedeclaration(
6889         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD,
6890         IsMemberSpecialization, D.isFunctionDefinition());
6891   }
6892 
6893   if (NewTemplate) {
6894     if (NewVD->isInvalidDecl())
6895       NewTemplate->setInvalidDecl();
6896     ActOnDocumentableDecl(NewTemplate);
6897     return NewTemplate;
6898   }
6899 
6900   if (IsMemberSpecialization && !NewVD->isInvalidDecl())
6901     CompleteMemberSpecialization(NewVD, Previous);
6902 
6903   return NewVD;
6904 }
6905 
6906 /// Enum describing the %select options in diag::warn_decl_shadow.
6907 enum ShadowedDeclKind {
6908   SDK_Local,
6909   SDK_Global,
6910   SDK_StaticMember,
6911   SDK_Field,
6912   SDK_Typedef,
6913   SDK_Using
6914 };
6915 
6916 /// Determine what kind of declaration we're shadowing.
6917 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl,
6918                                                 const DeclContext *OldDC) {
6919   if (isa<TypeAliasDecl>(ShadowedDecl))
6920     return SDK_Using;
6921   else if (isa<TypedefDecl>(ShadowedDecl))
6922     return SDK_Typedef;
6923   else if (isa<RecordDecl>(OldDC))
6924     return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember;
6925 
6926   return OldDC->isFileContext() ? SDK_Global : SDK_Local;
6927 }
6928 
6929 /// Return the location of the capture if the given lambda captures the given
6930 /// variable \p VD, or an invalid source location otherwise.
6931 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI,
6932                                          const VarDecl *VD) {
6933   for (const LambdaScopeInfo::Capture &Capture : LSI->Captures) {
6934     if (Capture.isVariableCapture() && Capture.getVariable() == VD)
6935       return Capture.getLocation();
6936   }
6937   return SourceLocation();
6938 }
6939 
6940 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags,
6941                                      const LookupResult &R) {
6942   // Only diagnose if we're shadowing an unambiguous field or variable.
6943   if (R.getResultKind() != LookupResult::Found)
6944     return false;
6945 
6946   // Return false if warning is ignored.
6947   return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc());
6948 }
6949 
6950 /// \brief Return the declaration shadowed by the given variable \p D, or null
6951 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
6952 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D,
6953                                         const LookupResult &R) {
6954   if (!shouldWarnIfShadowedDecl(Diags, R))
6955     return nullptr;
6956 
6957   // Don't diagnose declarations at file scope.
6958   if (D->hasGlobalStorage())
6959     return nullptr;
6960 
6961   NamedDecl *ShadowedDecl = R.getFoundDecl();
6962   return isa<VarDecl>(ShadowedDecl) || isa<FieldDecl>(ShadowedDecl)
6963              ? ShadowedDecl
6964              : nullptr;
6965 }
6966 
6967 /// \brief Return the declaration shadowed by the given typedef \p D, or null
6968 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
6969 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D,
6970                                         const LookupResult &R) {
6971   // Don't warn if typedef declaration is part of a class
6972   if (D->getDeclContext()->isRecord())
6973     return nullptr;
6974 
6975   if (!shouldWarnIfShadowedDecl(Diags, R))
6976     return nullptr;
6977 
6978   NamedDecl *ShadowedDecl = R.getFoundDecl();
6979   return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr;
6980 }
6981 
6982 /// \brief Diagnose variable or built-in function shadowing.  Implements
6983 /// -Wshadow.
6984 ///
6985 /// This method is called whenever a VarDecl is added to a "useful"
6986 /// scope.
6987 ///
6988 /// \param ShadowedDecl the declaration that is shadowed by the given variable
6989 /// \param R the lookup of the name
6990 ///
6991 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
6992                        const LookupResult &R) {
6993   DeclContext *NewDC = D->getDeclContext();
6994 
6995   if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) {
6996     // Fields are not shadowed by variables in C++ static methods.
6997     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
6998       if (MD->isStatic())
6999         return;
7000 
7001     // Fields shadowed by constructor parameters are a special case. Usually
7002     // the constructor initializes the field with the parameter.
7003     if (isa<CXXConstructorDecl>(NewDC))
7004       if (const auto PVD = dyn_cast<ParmVarDecl>(D)) {
7005         // Remember that this was shadowed so we can either warn about its
7006         // modification or its existence depending on warning settings.
7007         ShadowingDecls.insert({PVD->getCanonicalDecl(), FD});
7008         return;
7009       }
7010   }
7011 
7012   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
7013     if (shadowedVar->isExternC()) {
7014       // For shadowing external vars, make sure that we point to the global
7015       // declaration, not a locally scoped extern declaration.
7016       for (auto I : shadowedVar->redecls())
7017         if (I->isFileVarDecl()) {
7018           ShadowedDecl = I;
7019           break;
7020         }
7021     }
7022 
7023   DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext();
7024 
7025   unsigned WarningDiag = diag::warn_decl_shadow;
7026   SourceLocation CaptureLoc;
7027   if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC &&
7028       isa<CXXMethodDecl>(NewDC)) {
7029     if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) {
7030       if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) {
7031         if (RD->getLambdaCaptureDefault() == LCD_None) {
7032           // Try to avoid warnings for lambdas with an explicit capture list.
7033           const auto *LSI = cast<LambdaScopeInfo>(getCurFunction());
7034           // Warn only when the lambda captures the shadowed decl explicitly.
7035           CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl));
7036           if (CaptureLoc.isInvalid())
7037             WarningDiag = diag::warn_decl_shadow_uncaptured_local;
7038         } else {
7039           // Remember that this was shadowed so we can avoid the warning if the
7040           // shadowed decl isn't captured and the warning settings allow it.
7041           cast<LambdaScopeInfo>(getCurFunction())
7042               ->ShadowingDecls.push_back(
7043                   {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)});
7044           return;
7045         }
7046       }
7047 
7048       if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) {
7049         // A variable can't shadow a local variable in an enclosing scope, if
7050         // they are separated by a non-capturing declaration context.
7051         for (DeclContext *ParentDC = NewDC;
7052              ParentDC && !ParentDC->Equals(OldDC);
7053              ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) {
7054           // Only block literals, captured statements, and lambda expressions
7055           // can capture; other scopes don't.
7056           if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) &&
7057               !isLambdaCallOperator(ParentDC)) {
7058             return;
7059           }
7060         }
7061       }
7062     }
7063   }
7064 
7065   // Only warn about certain kinds of shadowing for class members.
7066   if (NewDC && NewDC->isRecord()) {
7067     // In particular, don't warn about shadowing non-class members.
7068     if (!OldDC->isRecord())
7069       return;
7070 
7071     // TODO: should we warn about static data members shadowing
7072     // static data members from base classes?
7073 
7074     // TODO: don't diagnose for inaccessible shadowed members.
7075     // This is hard to do perfectly because we might friend the
7076     // shadowing context, but that's just a false negative.
7077   }
7078 
7079 
7080   DeclarationName Name = R.getLookupName();
7081 
7082   // Emit warning and note.
7083   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
7084     return;
7085   ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC);
7086   Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC;
7087   if (!CaptureLoc.isInvalid())
7088     Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7089         << Name << /*explicitly*/ 1;
7090   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7091 }
7092 
7093 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD
7094 /// when these variables are captured by the lambda.
7095 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) {
7096   for (const auto &Shadow : LSI->ShadowingDecls) {
7097     const VarDecl *ShadowedDecl = Shadow.ShadowedDecl;
7098     // Try to avoid the warning when the shadowed decl isn't captured.
7099     SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl);
7100     const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7101     Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid()
7102                                        ? diag::warn_decl_shadow_uncaptured_local
7103                                        : diag::warn_decl_shadow)
7104         << Shadow.VD->getDeclName()
7105         << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC;
7106     if (!CaptureLoc.isInvalid())
7107       Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7108           << Shadow.VD->getDeclName() << /*explicitly*/ 0;
7109     Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7110   }
7111 }
7112 
7113 /// \brief Check -Wshadow without the advantage of a previous lookup.
7114 void Sema::CheckShadow(Scope *S, VarDecl *D) {
7115   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
7116     return;
7117 
7118   LookupResult R(*this, D->getDeclName(), D->getLocation(),
7119                  Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration);
7120   LookupName(R, S);
7121   if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R))
7122     CheckShadow(D, ShadowedDecl, R);
7123 }
7124 
7125 /// Check if 'E', which is an expression that is about to be modified, refers
7126 /// to a constructor parameter that shadows a field.
7127 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) {
7128   // Quickly ignore expressions that can't be shadowing ctor parameters.
7129   if (!getLangOpts().CPlusPlus || ShadowingDecls.empty())
7130     return;
7131   E = E->IgnoreParenImpCasts();
7132   auto *DRE = dyn_cast<DeclRefExpr>(E);
7133   if (!DRE)
7134     return;
7135   const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
7136   auto I = ShadowingDecls.find(D);
7137   if (I == ShadowingDecls.end())
7138     return;
7139   const NamedDecl *ShadowedDecl = I->second;
7140   const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7141   Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC;
7142   Diag(D->getLocation(), diag::note_var_declared_here) << D;
7143   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7144 
7145   // Avoid issuing multiple warnings about the same decl.
7146   ShadowingDecls.erase(I);
7147 }
7148 
7149 /// Check for conflict between this global or extern "C" declaration and
7150 /// previous global or extern "C" declarations. This is only used in C++.
7151 template<typename T>
7152 static bool checkGlobalOrExternCConflict(
7153     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
7154   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
7155   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
7156 
7157   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
7158     // The common case: this global doesn't conflict with any extern "C"
7159     // declaration.
7160     return false;
7161   }
7162 
7163   if (Prev) {
7164     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
7165       // Both the old and new declarations have C language linkage. This is a
7166       // redeclaration.
7167       Previous.clear();
7168       Previous.addDecl(Prev);
7169       return true;
7170     }
7171 
7172     // This is a global, non-extern "C" declaration, and there is a previous
7173     // non-global extern "C" declaration. Diagnose if this is a variable
7174     // declaration.
7175     if (!isa<VarDecl>(ND))
7176       return false;
7177   } else {
7178     // The declaration is extern "C". Check for any declaration in the
7179     // translation unit which might conflict.
7180     if (IsGlobal) {
7181       // We have already performed the lookup into the translation unit.
7182       IsGlobal = false;
7183       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7184            I != E; ++I) {
7185         if (isa<VarDecl>(*I)) {
7186           Prev = *I;
7187           break;
7188         }
7189       }
7190     } else {
7191       DeclContext::lookup_result R =
7192           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
7193       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
7194            I != E; ++I) {
7195         if (isa<VarDecl>(*I)) {
7196           Prev = *I;
7197           break;
7198         }
7199         // FIXME: If we have any other entity with this name in global scope,
7200         // the declaration is ill-formed, but that is a defect: it breaks the
7201         // 'stat' hack, for instance. Only variables can have mangled name
7202         // clashes with extern "C" declarations, so only they deserve a
7203         // diagnostic.
7204       }
7205     }
7206 
7207     if (!Prev)
7208       return false;
7209   }
7210 
7211   // Use the first declaration's location to ensure we point at something which
7212   // is lexically inside an extern "C" linkage-spec.
7213   assert(Prev && "should have found a previous declaration to diagnose");
7214   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
7215     Prev = FD->getFirstDecl();
7216   else
7217     Prev = cast<VarDecl>(Prev)->getFirstDecl();
7218 
7219   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
7220     << IsGlobal << ND;
7221   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
7222     << IsGlobal;
7223   return false;
7224 }
7225 
7226 /// Apply special rules for handling extern "C" declarations. Returns \c true
7227 /// if we have found that this is a redeclaration of some prior entity.
7228 ///
7229 /// Per C++ [dcl.link]p6:
7230 ///   Two declarations [for a function or variable] with C language linkage
7231 ///   with the same name that appear in different scopes refer to the same
7232 ///   [entity]. An entity with C language linkage shall not be declared with
7233 ///   the same name as an entity in global scope.
7234 template<typename T>
7235 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
7236                                                   LookupResult &Previous) {
7237   if (!S.getLangOpts().CPlusPlus) {
7238     // In C, when declaring a global variable, look for a corresponding 'extern'
7239     // variable declared in function scope. We don't need this in C++, because
7240     // we find local extern decls in the surrounding file-scope DeclContext.
7241     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
7242       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
7243         Previous.clear();
7244         Previous.addDecl(Prev);
7245         return true;
7246       }
7247     }
7248     return false;
7249   }
7250 
7251   // A declaration in the translation unit can conflict with an extern "C"
7252   // declaration.
7253   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
7254     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
7255 
7256   // An extern "C" declaration can conflict with a declaration in the
7257   // translation unit or can be a redeclaration of an extern "C" declaration
7258   // in another scope.
7259   if (isIncompleteDeclExternC(S,ND))
7260     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
7261 
7262   // Neither global nor extern "C": nothing to do.
7263   return false;
7264 }
7265 
7266 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
7267   // If the decl is already known invalid, don't check it.
7268   if (NewVD->isInvalidDecl())
7269     return;
7270 
7271   TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
7272   QualType T = TInfo->getType();
7273 
7274   // Defer checking an 'auto' type until its initializer is attached.
7275   if (T->isUndeducedType())
7276     return;
7277 
7278   if (NewVD->hasAttrs())
7279     CheckAlignasUnderalignment(NewVD);
7280 
7281   if (T->isObjCObjectType()) {
7282     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
7283       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
7284     T = Context.getObjCObjectPointerType(T);
7285     NewVD->setType(T);
7286   }
7287 
7288   // Emit an error if an address space was applied to decl with local storage.
7289   // This includes arrays of objects with address space qualifiers, but not
7290   // automatic variables that point to other address spaces.
7291   // ISO/IEC TR 18037 S5.1.2
7292   if (!getLangOpts().OpenCL && NewVD->hasLocalStorage() &&
7293       T.getAddressSpace() != LangAS::Default) {
7294     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0;
7295     NewVD->setInvalidDecl();
7296     return;
7297   }
7298 
7299   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
7300   // scope.
7301   if (getLangOpts().OpenCLVersion == 120 &&
7302       !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") &&
7303       NewVD->isStaticLocal()) {
7304     Diag(NewVD->getLocation(), diag::err_static_function_scope);
7305     NewVD->setInvalidDecl();
7306     return;
7307   }
7308 
7309   if (getLangOpts().OpenCL) {
7310     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
7311     if (NewVD->hasAttr<BlocksAttr>()) {
7312       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
7313       return;
7314     }
7315 
7316     if (T->isBlockPointerType()) {
7317       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
7318       // can't use 'extern' storage class.
7319       if (!T.isConstQualified()) {
7320         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
7321             << 0 /*const*/;
7322         NewVD->setInvalidDecl();
7323         return;
7324       }
7325       if (NewVD->hasExternalStorage()) {
7326         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
7327         NewVD->setInvalidDecl();
7328         return;
7329       }
7330     }
7331     // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
7332     // __constant address space.
7333     // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static
7334     // variables inside a function can also be declared in the global
7335     // address space.
7336     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
7337         NewVD->hasExternalStorage()) {
7338       if (!T->isSamplerT() &&
7339           !(T.getAddressSpace() == LangAS::opencl_constant ||
7340             (T.getAddressSpace() == LangAS::opencl_global &&
7341              getLangOpts().OpenCLVersion == 200))) {
7342         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
7343         if (getLangOpts().OpenCLVersion == 200)
7344           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7345               << Scope << "global or constant";
7346         else
7347           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7348               << Scope << "constant";
7349         NewVD->setInvalidDecl();
7350         return;
7351       }
7352     } else {
7353       if (T.getAddressSpace() == LangAS::opencl_global) {
7354         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7355             << 1 /*is any function*/ << "global";
7356         NewVD->setInvalidDecl();
7357         return;
7358       }
7359       if (T.getAddressSpace() == LangAS::opencl_constant ||
7360           T.getAddressSpace() == LangAS::opencl_local) {
7361         FunctionDecl *FD = getCurFunctionDecl();
7362         // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables
7363         // in functions.
7364         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
7365           if (T.getAddressSpace() == LangAS::opencl_constant)
7366             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7367                 << 0 /*non-kernel only*/ << "constant";
7368           else
7369             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7370                 << 0 /*non-kernel only*/ << "local";
7371           NewVD->setInvalidDecl();
7372           return;
7373         }
7374         // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be
7375         // in the outermost scope of a kernel function.
7376         if (FD && FD->hasAttr<OpenCLKernelAttr>()) {
7377           if (!getCurScope()->isFunctionScope()) {
7378             if (T.getAddressSpace() == LangAS::opencl_constant)
7379               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7380                   << "constant";
7381             else
7382               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7383                   << "local";
7384             NewVD->setInvalidDecl();
7385             return;
7386           }
7387         }
7388       } else if (T.getAddressSpace() != LangAS::opencl_private) {
7389         // Do not allow other address spaces on automatic variable.
7390         Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1;
7391         NewVD->setInvalidDecl();
7392         return;
7393       }
7394     }
7395   }
7396 
7397   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
7398       && !NewVD->hasAttr<BlocksAttr>()) {
7399     if (getLangOpts().getGC() != LangOptions::NonGC)
7400       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
7401     else {
7402       assert(!getLangOpts().ObjCAutoRefCount);
7403       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
7404     }
7405   }
7406 
7407   bool isVM = T->isVariablyModifiedType();
7408   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
7409       NewVD->hasAttr<BlocksAttr>())
7410     getCurFunction()->setHasBranchProtectedScope();
7411 
7412   if ((isVM && NewVD->hasLinkage()) ||
7413       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
7414     bool SizeIsNegative;
7415     llvm::APSInt Oversized;
7416     TypeSourceInfo *FixedTInfo =
7417       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
7418                                                     SizeIsNegative, Oversized);
7419     if (!FixedTInfo && T->isVariableArrayType()) {
7420       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
7421       // FIXME: This won't give the correct result for
7422       // int a[10][n];
7423       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
7424 
7425       if (NewVD->isFileVarDecl())
7426         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
7427         << SizeRange;
7428       else if (NewVD->isStaticLocal())
7429         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
7430         << SizeRange;
7431       else
7432         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
7433         << SizeRange;
7434       NewVD->setInvalidDecl();
7435       return;
7436     }
7437 
7438     if (!FixedTInfo) {
7439       if (NewVD->isFileVarDecl())
7440         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
7441       else
7442         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
7443       NewVD->setInvalidDecl();
7444       return;
7445     }
7446 
7447     Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
7448     NewVD->setType(FixedTInfo->getType());
7449     NewVD->setTypeSourceInfo(FixedTInfo);
7450   }
7451 
7452   if (T->isVoidType()) {
7453     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
7454     //                    of objects and functions.
7455     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
7456       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
7457         << T;
7458       NewVD->setInvalidDecl();
7459       return;
7460     }
7461   }
7462 
7463   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
7464     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
7465     NewVD->setInvalidDecl();
7466     return;
7467   }
7468 
7469   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
7470     Diag(NewVD->getLocation(), diag::err_block_on_vm);
7471     NewVD->setInvalidDecl();
7472     return;
7473   }
7474 
7475   if (NewVD->isConstexpr() && !T->isDependentType() &&
7476       RequireLiteralType(NewVD->getLocation(), T,
7477                          diag::err_constexpr_var_non_literal)) {
7478     NewVD->setInvalidDecl();
7479     return;
7480   }
7481 }
7482 
7483 /// \brief Perform semantic checking on a newly-created variable
7484 /// declaration.
7485 ///
7486 /// This routine performs all of the type-checking required for a
7487 /// variable declaration once it has been built. It is used both to
7488 /// check variables after they have been parsed and their declarators
7489 /// have been translated into a declaration, and to check variables
7490 /// that have been instantiated from a template.
7491 ///
7492 /// Sets NewVD->isInvalidDecl() if an error was encountered.
7493 ///
7494 /// Returns true if the variable declaration is a redeclaration.
7495 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
7496   CheckVariableDeclarationType(NewVD);
7497 
7498   // If the decl is already known invalid, don't check it.
7499   if (NewVD->isInvalidDecl())
7500     return false;
7501 
7502   // If we did not find anything by this name, look for a non-visible
7503   // extern "C" declaration with the same name.
7504   if (Previous.empty() &&
7505       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
7506     Previous.setShadowed();
7507 
7508   if (!Previous.empty()) {
7509     MergeVarDecl(NewVD, Previous);
7510     return true;
7511   }
7512   return false;
7513 }
7514 
7515 namespace {
7516 struct FindOverriddenMethod {
7517   Sema *S;
7518   CXXMethodDecl *Method;
7519 
7520   /// Member lookup function that determines whether a given C++
7521   /// method overrides a method in a base class, to be used with
7522   /// CXXRecordDecl::lookupInBases().
7523   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
7524     RecordDecl *BaseRecord =
7525         Specifier->getType()->getAs<RecordType>()->getDecl();
7526 
7527     DeclarationName Name = Method->getDeclName();
7528 
7529     // FIXME: Do we care about other names here too?
7530     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7531       // We really want to find the base class destructor here.
7532       QualType T = S->Context.getTypeDeclType(BaseRecord);
7533       CanQualType CT = S->Context.getCanonicalType(T);
7534 
7535       Name = S->Context.DeclarationNames.getCXXDestructorName(CT);
7536     }
7537 
7538     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
7539          Path.Decls = Path.Decls.slice(1)) {
7540       NamedDecl *D = Path.Decls.front();
7541       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
7542         if (MD->isVirtual() && !S->IsOverload(Method, MD, false))
7543           return true;
7544       }
7545     }
7546 
7547     return false;
7548   }
7549 };
7550 
7551 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
7552 } // end anonymous namespace
7553 
7554 /// \brief Report an error regarding overriding, along with any relevant
7555 /// overriden methods.
7556 ///
7557 /// \param DiagID the primary error to report.
7558 /// \param MD the overriding method.
7559 /// \param OEK which overrides to include as notes.
7560 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
7561                             OverrideErrorKind OEK = OEK_All) {
7562   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
7563   for (const CXXMethodDecl *O : MD->overridden_methods()) {
7564     // This check (& the OEK parameter) could be replaced by a predicate, but
7565     // without lambdas that would be overkill. This is still nicer than writing
7566     // out the diag loop 3 times.
7567     if ((OEK == OEK_All) ||
7568         (OEK == OEK_NonDeleted && !O->isDeleted()) ||
7569         (OEK == OEK_Deleted && O->isDeleted()))
7570       S.Diag(O->getLocation(), diag::note_overridden_virtual_function);
7571   }
7572 }
7573 
7574 /// AddOverriddenMethods - See if a method overrides any in the base classes,
7575 /// and if so, check that it's a valid override and remember it.
7576 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
7577   // Look for methods in base classes that this method might override.
7578   CXXBasePaths Paths;
7579   FindOverriddenMethod FOM;
7580   FOM.Method = MD;
7581   FOM.S = this;
7582   bool hasDeletedOverridenMethods = false;
7583   bool hasNonDeletedOverridenMethods = false;
7584   bool AddedAny = false;
7585   if (DC->lookupInBases(FOM, Paths)) {
7586     for (auto *I : Paths.found_decls()) {
7587       if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
7588         MD->addOverriddenMethod(OldMD->getCanonicalDecl());
7589         if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
7590             !CheckOverridingFunctionAttributes(MD, OldMD) &&
7591             !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
7592             !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
7593           hasDeletedOverridenMethods |= OldMD->isDeleted();
7594           hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
7595           AddedAny = true;
7596         }
7597       }
7598     }
7599   }
7600 
7601   if (hasDeletedOverridenMethods && !MD->isDeleted()) {
7602     ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
7603   }
7604   if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
7605     ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
7606   }
7607 
7608   return AddedAny;
7609 }
7610 
7611 namespace {
7612   // Struct for holding all of the extra arguments needed by
7613   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
7614   struct ActOnFDArgs {
7615     Scope *S;
7616     Declarator &D;
7617     MultiTemplateParamsArg TemplateParamLists;
7618     bool AddToScope;
7619   };
7620 } // end anonymous namespace
7621 
7622 namespace {
7623 
7624 // Callback to only accept typo corrections that have a non-zero edit distance.
7625 // Also only accept corrections that have the same parent decl.
7626 class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
7627  public:
7628   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
7629                             CXXRecordDecl *Parent)
7630       : Context(Context), OriginalFD(TypoFD),
7631         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
7632 
7633   bool ValidateCandidate(const TypoCorrection &candidate) override {
7634     if (candidate.getEditDistance() == 0)
7635       return false;
7636 
7637     SmallVector<unsigned, 1> MismatchedParams;
7638     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
7639                                           CDeclEnd = candidate.end();
7640          CDecl != CDeclEnd; ++CDecl) {
7641       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7642 
7643       if (FD && !FD->hasBody() &&
7644           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
7645         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
7646           CXXRecordDecl *Parent = MD->getParent();
7647           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
7648             return true;
7649         } else if (!ExpectedParent) {
7650           return true;
7651         }
7652       }
7653     }
7654 
7655     return false;
7656   }
7657 
7658  private:
7659   ASTContext &Context;
7660   FunctionDecl *OriginalFD;
7661   CXXRecordDecl *ExpectedParent;
7662 };
7663 
7664 } // end anonymous namespace
7665 
7666 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) {
7667   TypoCorrectedFunctionDefinitions.insert(F);
7668 }
7669 
7670 /// \brief Generate diagnostics for an invalid function redeclaration.
7671 ///
7672 /// This routine handles generating the diagnostic messages for an invalid
7673 /// function redeclaration, including finding possible similar declarations
7674 /// or performing typo correction if there are no previous declarations with
7675 /// the same name.
7676 ///
7677 /// Returns a NamedDecl iff typo correction was performed and substituting in
7678 /// the new declaration name does not cause new errors.
7679 static NamedDecl *DiagnoseInvalidRedeclaration(
7680     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
7681     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
7682   DeclarationName Name = NewFD->getDeclName();
7683   DeclContext *NewDC = NewFD->getDeclContext();
7684   SmallVector<unsigned, 1> MismatchedParams;
7685   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
7686   TypoCorrection Correction;
7687   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
7688   unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
7689                                    : diag::err_member_decl_does_not_match;
7690   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
7691                     IsLocalFriend ? Sema::LookupLocalFriendName
7692                                   : Sema::LookupOrdinaryName,
7693                     Sema::ForVisibleRedeclaration);
7694 
7695   NewFD->setInvalidDecl();
7696   if (IsLocalFriend)
7697     SemaRef.LookupName(Prev, S);
7698   else
7699     SemaRef.LookupQualifiedName(Prev, NewDC);
7700   assert(!Prev.isAmbiguous() &&
7701          "Cannot have an ambiguity in previous-declaration lookup");
7702   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
7703   if (!Prev.empty()) {
7704     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
7705          Func != FuncEnd; ++Func) {
7706       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
7707       if (FD &&
7708           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7709         // Add 1 to the index so that 0 can mean the mismatch didn't
7710         // involve a parameter
7711         unsigned ParamNum =
7712             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
7713         NearMatches.push_back(std::make_pair(FD, ParamNum));
7714       }
7715     }
7716   // If the qualified name lookup yielded nothing, try typo correction
7717   } else if ((Correction = SemaRef.CorrectTypo(
7718                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
7719                   &ExtraArgs.D.getCXXScopeSpec(),
7720                   llvm::make_unique<DifferentNameValidatorCCC>(
7721                       SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr),
7722                   Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
7723     // Set up everything for the call to ActOnFunctionDeclarator
7724     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
7725                               ExtraArgs.D.getIdentifierLoc());
7726     Previous.clear();
7727     Previous.setLookupName(Correction.getCorrection());
7728     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
7729                                     CDeclEnd = Correction.end();
7730          CDecl != CDeclEnd; ++CDecl) {
7731       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7732       if (FD && !FD->hasBody() &&
7733           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7734         Previous.addDecl(FD);
7735       }
7736     }
7737     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
7738 
7739     NamedDecl *Result;
7740     // Retry building the function declaration with the new previous
7741     // declarations, and with errors suppressed.
7742     {
7743       // Trap errors.
7744       Sema::SFINAETrap Trap(SemaRef);
7745 
7746       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
7747       // pieces need to verify the typo-corrected C++ declaration and hopefully
7748       // eliminate the need for the parameter pack ExtraArgs.
7749       Result = SemaRef.ActOnFunctionDeclarator(
7750           ExtraArgs.S, ExtraArgs.D,
7751           Correction.getCorrectionDecl()->getDeclContext(),
7752           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
7753           ExtraArgs.AddToScope);
7754 
7755       if (Trap.hasErrorOccurred())
7756         Result = nullptr;
7757     }
7758 
7759     if (Result) {
7760       // Determine which correction we picked.
7761       Decl *Canonical = Result->getCanonicalDecl();
7762       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7763            I != E; ++I)
7764         if ((*I)->getCanonicalDecl() == Canonical)
7765           Correction.setCorrectionDecl(*I);
7766 
7767       // Let Sema know about the correction.
7768       SemaRef.MarkTypoCorrectedFunctionDefinition(Result);
7769       SemaRef.diagnoseTypo(
7770           Correction,
7771           SemaRef.PDiag(IsLocalFriend
7772                           ? diag::err_no_matching_local_friend_suggest
7773                           : diag::err_member_decl_does_not_match_suggest)
7774             << Name << NewDC << IsDefinition);
7775       return Result;
7776     }
7777 
7778     // Pretend the typo correction never occurred
7779     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
7780                               ExtraArgs.D.getIdentifierLoc());
7781     ExtraArgs.D.setRedeclaration(wasRedeclaration);
7782     Previous.clear();
7783     Previous.setLookupName(Name);
7784   }
7785 
7786   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
7787       << Name << NewDC << IsDefinition << NewFD->getLocation();
7788 
7789   bool NewFDisConst = false;
7790   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
7791     NewFDisConst = NewMD->isConst();
7792 
7793   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
7794        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
7795        NearMatch != NearMatchEnd; ++NearMatch) {
7796     FunctionDecl *FD = NearMatch->first;
7797     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7798     bool FDisConst = MD && MD->isConst();
7799     bool IsMember = MD || !IsLocalFriend;
7800 
7801     // FIXME: These notes are poorly worded for the local friend case.
7802     if (unsigned Idx = NearMatch->second) {
7803       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
7804       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
7805       if (Loc.isInvalid()) Loc = FD->getLocation();
7806       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
7807                                  : diag::note_local_decl_close_param_match)
7808         << Idx << FDParam->getType()
7809         << NewFD->getParamDecl(Idx - 1)->getType();
7810     } else if (FDisConst != NewFDisConst) {
7811       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
7812           << NewFDisConst << FD->getSourceRange().getEnd();
7813     } else
7814       SemaRef.Diag(FD->getLocation(),
7815                    IsMember ? diag::note_member_def_close_match
7816                             : diag::note_local_decl_close_match);
7817   }
7818   return nullptr;
7819 }
7820 
7821 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
7822   switch (D.getDeclSpec().getStorageClassSpec()) {
7823   default: llvm_unreachable("Unknown storage class!");
7824   case DeclSpec::SCS_auto:
7825   case DeclSpec::SCS_register:
7826   case DeclSpec::SCS_mutable:
7827     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7828                  diag::err_typecheck_sclass_func);
7829     D.getMutableDeclSpec().ClearStorageClassSpecs();
7830     D.setInvalidType();
7831     break;
7832   case DeclSpec::SCS_unspecified: break;
7833   case DeclSpec::SCS_extern:
7834     if (D.getDeclSpec().isExternInLinkageSpec())
7835       return SC_None;
7836     return SC_Extern;
7837   case DeclSpec::SCS_static: {
7838     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
7839       // C99 6.7.1p5:
7840       //   The declaration of an identifier for a function that has
7841       //   block scope shall have no explicit storage-class specifier
7842       //   other than extern
7843       // See also (C++ [dcl.stc]p4).
7844       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7845                    diag::err_static_block_func);
7846       break;
7847     } else
7848       return SC_Static;
7849   }
7850   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
7851   }
7852 
7853   // No explicit storage class has already been returned
7854   return SC_None;
7855 }
7856 
7857 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
7858                                            DeclContext *DC, QualType &R,
7859                                            TypeSourceInfo *TInfo,
7860                                            StorageClass SC,
7861                                            bool &IsVirtualOkay) {
7862   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
7863   DeclarationName Name = NameInfo.getName();
7864 
7865   FunctionDecl *NewFD = nullptr;
7866   bool isInline = D.getDeclSpec().isInlineSpecified();
7867 
7868   if (!SemaRef.getLangOpts().CPlusPlus) {
7869     // Determine whether the function was written with a
7870     // prototype. This true when:
7871     //   - there is a prototype in the declarator, or
7872     //   - the type R of the function is some kind of typedef or other non-
7873     //     attributed reference to a type name (which eventually refers to a
7874     //     function type).
7875     bool HasPrototype =
7876       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
7877       (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType());
7878 
7879     NewFD = FunctionDecl::Create(SemaRef.Context, DC,
7880                                  D.getLocStart(), NameInfo, R,
7881                                  TInfo, SC, isInline,
7882                                  HasPrototype, false);
7883     if (D.isInvalidType())
7884       NewFD->setInvalidDecl();
7885 
7886     return NewFD;
7887   }
7888 
7889   bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7890   bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7891 
7892   // Check that the return type is not an abstract class type.
7893   // For record types, this is done by the AbstractClassUsageDiagnoser once
7894   // the class has been completely parsed.
7895   if (!DC->isRecord() &&
7896       SemaRef.RequireNonAbstractType(
7897           D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
7898           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
7899     D.setInvalidType();
7900 
7901   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
7902     // This is a C++ constructor declaration.
7903     assert(DC->isRecord() &&
7904            "Constructors can only be declared in a member context");
7905 
7906     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
7907     return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7908                                       D.getLocStart(), NameInfo,
7909                                       R, TInfo, isExplicit, isInline,
7910                                       /*isImplicitlyDeclared=*/false,
7911                                       isConstexpr);
7912 
7913   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7914     // This is a C++ destructor declaration.
7915     if (DC->isRecord()) {
7916       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
7917       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
7918       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
7919                                         SemaRef.Context, Record,
7920                                         D.getLocStart(),
7921                                         NameInfo, R, TInfo, isInline,
7922                                         /*isImplicitlyDeclared=*/false);
7923 
7924       // If the class is complete, then we now create the implicit exception
7925       // specification. If the class is incomplete or dependent, we can't do
7926       // it yet.
7927       if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
7928           Record->getDefinition() && !Record->isBeingDefined() &&
7929           R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
7930         SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
7931       }
7932 
7933       IsVirtualOkay = true;
7934       return NewDD;
7935 
7936     } else {
7937       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
7938       D.setInvalidType();
7939 
7940       // Create a FunctionDecl to satisfy the function definition parsing
7941       // code path.
7942       return FunctionDecl::Create(SemaRef.Context, DC,
7943                                   D.getLocStart(),
7944                                   D.getIdentifierLoc(), Name, R, TInfo,
7945                                   SC, isInline,
7946                                   /*hasPrototype=*/true, isConstexpr);
7947     }
7948 
7949   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
7950     if (!DC->isRecord()) {
7951       SemaRef.Diag(D.getIdentifierLoc(),
7952            diag::err_conv_function_not_member);
7953       return nullptr;
7954     }
7955 
7956     SemaRef.CheckConversionDeclarator(D, R, SC);
7957     IsVirtualOkay = true;
7958     return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7959                                      D.getLocStart(), NameInfo,
7960                                      R, TInfo, isInline, isExplicit,
7961                                      isConstexpr, SourceLocation());
7962 
7963   } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) {
7964     SemaRef.CheckDeductionGuideDeclarator(D, R, SC);
7965 
7966     return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getLocStart(),
7967                                          isExplicit, NameInfo, R, TInfo,
7968                                          D.getLocEnd());
7969   } else if (DC->isRecord()) {
7970     // If the name of the function is the same as the name of the record,
7971     // then this must be an invalid constructor that has a return type.
7972     // (The parser checks for a return type and makes the declarator a
7973     // constructor if it has no return type).
7974     if (Name.getAsIdentifierInfo() &&
7975         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
7976       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
7977         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7978         << SourceRange(D.getIdentifierLoc());
7979       return nullptr;
7980     }
7981 
7982     // This is a C++ method declaration.
7983     CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
7984                                                cast<CXXRecordDecl>(DC),
7985                                                D.getLocStart(), NameInfo, R,
7986                                                TInfo, SC, isInline,
7987                                                isConstexpr, SourceLocation());
7988     IsVirtualOkay = !Ret->isStatic();
7989     return Ret;
7990   } else {
7991     bool isFriend =
7992         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
7993     if (!isFriend && SemaRef.CurContext->isRecord())
7994       return nullptr;
7995 
7996     // Determine whether the function was written with a
7997     // prototype. This true when:
7998     //   - we're in C++ (where every function has a prototype),
7999     return FunctionDecl::Create(SemaRef.Context, DC,
8000                                 D.getLocStart(),
8001                                 NameInfo, R, TInfo, SC, isInline,
8002                                 true/*HasPrototype*/, isConstexpr);
8003   }
8004 }
8005 
8006 enum OpenCLParamType {
8007   ValidKernelParam,
8008   PtrPtrKernelParam,
8009   PtrKernelParam,
8010   InvalidAddrSpacePtrKernelParam,
8011   InvalidKernelParam,
8012   RecordKernelParam
8013 };
8014 
8015 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) {
8016   if (PT->isPointerType()) {
8017     QualType PointeeType = PT->getPointeeType();
8018     if (PointeeType->isPointerType())
8019       return PtrPtrKernelParam;
8020     if (PointeeType.getAddressSpace() == LangAS::opencl_generic ||
8021         PointeeType.getAddressSpace() == LangAS::opencl_private ||
8022         PointeeType.getAddressSpace() == LangAS::Default)
8023       return InvalidAddrSpacePtrKernelParam;
8024     return PtrKernelParam;
8025   }
8026 
8027   // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
8028   // be used as builtin types.
8029 
8030   if (PT->isImageType())
8031     return PtrKernelParam;
8032 
8033   if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT())
8034     return InvalidKernelParam;
8035 
8036   // OpenCL extension spec v1.2 s9.5:
8037   // This extension adds support for half scalar and vector types as built-in
8038   // types that can be used for arithmetic operations, conversions etc.
8039   if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType())
8040     return InvalidKernelParam;
8041 
8042   if (PT->isRecordType())
8043     return RecordKernelParam;
8044 
8045   return ValidKernelParam;
8046 }
8047 
8048 static void checkIsValidOpenCLKernelParameter(
8049   Sema &S,
8050   Declarator &D,
8051   ParmVarDecl *Param,
8052   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
8053   QualType PT = Param->getType();
8054 
8055   // Cache the valid types we encounter to avoid rechecking structs that are
8056   // used again
8057   if (ValidTypes.count(PT.getTypePtr()))
8058     return;
8059 
8060   switch (getOpenCLKernelParameterType(S, PT)) {
8061   case PtrPtrKernelParam:
8062     // OpenCL v1.2 s6.9.a:
8063     // A kernel function argument cannot be declared as a
8064     // pointer to a pointer type.
8065     S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
8066     D.setInvalidType();
8067     return;
8068 
8069   case InvalidAddrSpacePtrKernelParam:
8070     // OpenCL v1.0 s6.5:
8071     // __kernel function arguments declared to be a pointer of a type can point
8072     // to one of the following address spaces only : __global, __local or
8073     // __constant.
8074     S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space);
8075     D.setInvalidType();
8076     return;
8077 
8078     // OpenCL v1.2 s6.9.k:
8079     // Arguments to kernel functions in a program cannot be declared with the
8080     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
8081     // uintptr_t or a struct and/or union that contain fields declared to be
8082     // one of these built-in scalar types.
8083 
8084   case InvalidKernelParam:
8085     // OpenCL v1.2 s6.8 n:
8086     // A kernel function argument cannot be declared
8087     // of event_t type.
8088     // Do not diagnose half type since it is diagnosed as invalid argument
8089     // type for any function elsewhere.
8090     if (!PT->isHalfType())
8091       S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8092     D.setInvalidType();
8093     return;
8094 
8095   case PtrKernelParam:
8096   case ValidKernelParam:
8097     ValidTypes.insert(PT.getTypePtr());
8098     return;
8099 
8100   case RecordKernelParam:
8101     break;
8102   }
8103 
8104   // Track nested structs we will inspect
8105   SmallVector<const Decl *, 4> VisitStack;
8106 
8107   // Track where we are in the nested structs. Items will migrate from
8108   // VisitStack to HistoryStack as we do the DFS for bad field.
8109   SmallVector<const FieldDecl *, 4> HistoryStack;
8110   HistoryStack.push_back(nullptr);
8111 
8112   const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
8113   VisitStack.push_back(PD);
8114 
8115   assert(VisitStack.back() && "First decl null?");
8116 
8117   do {
8118     const Decl *Next = VisitStack.pop_back_val();
8119     if (!Next) {
8120       assert(!HistoryStack.empty());
8121       // Found a marker, we have gone up a level
8122       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
8123         ValidTypes.insert(Hist->getType().getTypePtr());
8124 
8125       continue;
8126     }
8127 
8128     // Adds everything except the original parameter declaration (which is not a
8129     // field itself) to the history stack.
8130     const RecordDecl *RD;
8131     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
8132       HistoryStack.push_back(Field);
8133       RD = Field->getType()->castAs<RecordType>()->getDecl();
8134     } else {
8135       RD = cast<RecordDecl>(Next);
8136     }
8137 
8138     // Add a null marker so we know when we've gone back up a level
8139     VisitStack.push_back(nullptr);
8140 
8141     for (const auto *FD : RD->fields()) {
8142       QualType QT = FD->getType();
8143 
8144       if (ValidTypes.count(QT.getTypePtr()))
8145         continue;
8146 
8147       OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT);
8148       if (ParamType == ValidKernelParam)
8149         continue;
8150 
8151       if (ParamType == RecordKernelParam) {
8152         VisitStack.push_back(FD);
8153         continue;
8154       }
8155 
8156       // OpenCL v1.2 s6.9.p:
8157       // Arguments to kernel functions that are declared to be a struct or union
8158       // do not allow OpenCL objects to be passed as elements of the struct or
8159       // union.
8160       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
8161           ParamType == InvalidAddrSpacePtrKernelParam) {
8162         S.Diag(Param->getLocation(),
8163                diag::err_record_with_pointers_kernel_param)
8164           << PT->isUnionType()
8165           << PT;
8166       } else {
8167         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8168       }
8169 
8170       S.Diag(PD->getLocation(), diag::note_within_field_of_type)
8171         << PD->getDeclName();
8172 
8173       // We have an error, now let's go back up through history and show where
8174       // the offending field came from
8175       for (ArrayRef<const FieldDecl *>::const_iterator
8176                I = HistoryStack.begin() + 1,
8177                E = HistoryStack.end();
8178            I != E; ++I) {
8179         const FieldDecl *OuterField = *I;
8180         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
8181           << OuterField->getType();
8182       }
8183 
8184       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
8185         << QT->isPointerType()
8186         << QT;
8187       D.setInvalidType();
8188       return;
8189     }
8190   } while (!VisitStack.empty());
8191 }
8192 
8193 /// Find the DeclContext in which a tag is implicitly declared if we see an
8194 /// elaborated type specifier in the specified context, and lookup finds
8195 /// nothing.
8196 static DeclContext *getTagInjectionContext(DeclContext *DC) {
8197   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
8198     DC = DC->getParent();
8199   return DC;
8200 }
8201 
8202 /// Find the Scope in which a tag is implicitly declared if we see an
8203 /// elaborated type specifier in the specified context, and lookup finds
8204 /// nothing.
8205 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
8206   while (S->isClassScope() ||
8207          (LangOpts.CPlusPlus &&
8208           S->isFunctionPrototypeScope()) ||
8209          ((S->getFlags() & Scope::DeclScope) == 0) ||
8210          (S->getEntity() && S->getEntity()->isTransparentContext()))
8211     S = S->getParent();
8212   return S;
8213 }
8214 
8215 NamedDecl*
8216 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
8217                               TypeSourceInfo *TInfo, LookupResult &Previous,
8218                               MultiTemplateParamsArg TemplateParamLists,
8219                               bool &AddToScope) {
8220   QualType R = TInfo->getType();
8221 
8222   assert(R.getTypePtr()->isFunctionType());
8223 
8224   // TODO: consider using NameInfo for diagnostic.
8225   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8226   DeclarationName Name = NameInfo.getName();
8227   StorageClass SC = getFunctionStorageClass(*this, D);
8228 
8229   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
8230     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
8231          diag::err_invalid_thread)
8232       << DeclSpec::getSpecifierName(TSCS);
8233 
8234   if (D.isFirstDeclarationOfMember())
8235     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
8236                            D.getIdentifierLoc());
8237 
8238   bool isFriend = false;
8239   FunctionTemplateDecl *FunctionTemplate = nullptr;
8240   bool isMemberSpecialization = false;
8241   bool isFunctionTemplateSpecialization = false;
8242 
8243   bool isDependentClassScopeExplicitSpecialization = false;
8244   bool HasExplicitTemplateArgs = false;
8245   TemplateArgumentListInfo TemplateArgs;
8246 
8247   bool isVirtualOkay = false;
8248 
8249   DeclContext *OriginalDC = DC;
8250   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
8251 
8252   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
8253                                               isVirtualOkay);
8254   if (!NewFD) return nullptr;
8255 
8256   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
8257     NewFD->setTopLevelDeclInObjCContainer();
8258 
8259   // Set the lexical context. If this is a function-scope declaration, or has a
8260   // C++ scope specifier, or is the object of a friend declaration, the lexical
8261   // context will be different from the semantic context.
8262   NewFD->setLexicalDeclContext(CurContext);
8263 
8264   if (IsLocalExternDecl)
8265     NewFD->setLocalExternDecl();
8266 
8267   if (getLangOpts().CPlusPlus) {
8268     bool isInline = D.getDeclSpec().isInlineSpecified();
8269     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
8270     bool isExplicit = D.getDeclSpec().isExplicitSpecified();
8271     bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
8272     isFriend = D.getDeclSpec().isFriendSpecified();
8273     if (isFriend && !isInline && D.isFunctionDefinition()) {
8274       // C++ [class.friend]p5
8275       //   A function can be defined in a friend declaration of a
8276       //   class . . . . Such a function is implicitly inline.
8277       NewFD->setImplicitlyInline();
8278     }
8279 
8280     // If this is a method defined in an __interface, and is not a constructor
8281     // or an overloaded operator, then set the pure flag (isVirtual will already
8282     // return true).
8283     if (const CXXRecordDecl *Parent =
8284           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
8285       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
8286         NewFD->setPure(true);
8287 
8288       // C++ [class.union]p2
8289       //   A union can have member functions, but not virtual functions.
8290       if (isVirtual && Parent->isUnion())
8291         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
8292     }
8293 
8294     SetNestedNameSpecifier(NewFD, D);
8295     isMemberSpecialization = false;
8296     isFunctionTemplateSpecialization = false;
8297     if (D.isInvalidType())
8298       NewFD->setInvalidDecl();
8299 
8300     // Match up the template parameter lists with the scope specifier, then
8301     // determine whether we have a template or a template specialization.
8302     bool Invalid = false;
8303     if (TemplateParameterList *TemplateParams =
8304             MatchTemplateParametersToScopeSpecifier(
8305                 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
8306                 D.getCXXScopeSpec(),
8307                 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
8308                     ? D.getName().TemplateId
8309                     : nullptr,
8310                 TemplateParamLists, isFriend, isMemberSpecialization,
8311                 Invalid)) {
8312       if (TemplateParams->size() > 0) {
8313         // This is a function template
8314 
8315         // Check that we can declare a template here.
8316         if (CheckTemplateDeclScope(S, TemplateParams))
8317           NewFD->setInvalidDecl();
8318 
8319         // A destructor cannot be a template.
8320         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
8321           Diag(NewFD->getLocation(), diag::err_destructor_template);
8322           NewFD->setInvalidDecl();
8323         }
8324 
8325         // If we're adding a template to a dependent context, we may need to
8326         // rebuilding some of the types used within the template parameter list,
8327         // now that we know what the current instantiation is.
8328         if (DC->isDependentContext()) {
8329           ContextRAII SavedContext(*this, DC);
8330           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
8331             Invalid = true;
8332         }
8333 
8334         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
8335                                                         NewFD->getLocation(),
8336                                                         Name, TemplateParams,
8337                                                         NewFD);
8338         FunctionTemplate->setLexicalDeclContext(CurContext);
8339         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
8340 
8341         // For source fidelity, store the other template param lists.
8342         if (TemplateParamLists.size() > 1) {
8343           NewFD->setTemplateParameterListsInfo(Context,
8344                                                TemplateParamLists.drop_back(1));
8345         }
8346       } else {
8347         // This is a function template specialization.
8348         isFunctionTemplateSpecialization = true;
8349         // For source fidelity, store all the template param lists.
8350         if (TemplateParamLists.size() > 0)
8351           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8352 
8353         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
8354         if (isFriend) {
8355           // We want to remove the "template<>", found here.
8356           SourceRange RemoveRange = TemplateParams->getSourceRange();
8357 
8358           // If we remove the template<> and the name is not a
8359           // template-id, we're actually silently creating a problem:
8360           // the friend declaration will refer to an untemplated decl,
8361           // and clearly the user wants a template specialization.  So
8362           // we need to insert '<>' after the name.
8363           SourceLocation InsertLoc;
8364           if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
8365             InsertLoc = D.getName().getSourceRange().getEnd();
8366             InsertLoc = getLocForEndOfToken(InsertLoc);
8367           }
8368 
8369           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
8370             << Name << RemoveRange
8371             << FixItHint::CreateRemoval(RemoveRange)
8372             << FixItHint::CreateInsertion(InsertLoc, "<>");
8373         }
8374       }
8375     }
8376     else {
8377       // All template param lists were matched against the scope specifier:
8378       // this is NOT (an explicit specialization of) a template.
8379       if (TemplateParamLists.size() > 0)
8380         // For source fidelity, store all the template param lists.
8381         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8382     }
8383 
8384     if (Invalid) {
8385       NewFD->setInvalidDecl();
8386       if (FunctionTemplate)
8387         FunctionTemplate->setInvalidDecl();
8388     }
8389 
8390     // C++ [dcl.fct.spec]p5:
8391     //   The virtual specifier shall only be used in declarations of
8392     //   nonstatic class member functions that appear within a
8393     //   member-specification of a class declaration; see 10.3.
8394     //
8395     if (isVirtual && !NewFD->isInvalidDecl()) {
8396       if (!isVirtualOkay) {
8397         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8398              diag::err_virtual_non_function);
8399       } else if (!CurContext->isRecord()) {
8400         // 'virtual' was specified outside of the class.
8401         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8402              diag::err_virtual_out_of_class)
8403           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8404       } else if (NewFD->getDescribedFunctionTemplate()) {
8405         // C++ [temp.mem]p3:
8406         //  A member function template shall not be virtual.
8407         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8408              diag::err_virtual_member_function_template)
8409           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8410       } else {
8411         // Okay: Add virtual to the method.
8412         NewFD->setVirtualAsWritten(true);
8413       }
8414 
8415       if (getLangOpts().CPlusPlus14 &&
8416           NewFD->getReturnType()->isUndeducedType())
8417         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
8418     }
8419 
8420     if (getLangOpts().CPlusPlus14 &&
8421         (NewFD->isDependentContext() ||
8422          (isFriend && CurContext->isDependentContext())) &&
8423         NewFD->getReturnType()->isUndeducedType()) {
8424       // If the function template is referenced directly (for instance, as a
8425       // member of the current instantiation), pretend it has a dependent type.
8426       // This is not really justified by the standard, but is the only sane
8427       // thing to do.
8428       // FIXME: For a friend function, we have not marked the function as being
8429       // a friend yet, so 'isDependentContext' on the FD doesn't work.
8430       const FunctionProtoType *FPT =
8431           NewFD->getType()->castAs<FunctionProtoType>();
8432       QualType Result =
8433           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
8434       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
8435                                              FPT->getExtProtoInfo()));
8436     }
8437 
8438     // C++ [dcl.fct.spec]p3:
8439     //  The inline specifier shall not appear on a block scope function
8440     //  declaration.
8441     if (isInline && !NewFD->isInvalidDecl()) {
8442       if (CurContext->isFunctionOrMethod()) {
8443         // 'inline' is not allowed on block scope function declaration.
8444         Diag(D.getDeclSpec().getInlineSpecLoc(),
8445              diag::err_inline_declaration_block_scope) << Name
8446           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
8447       }
8448     }
8449 
8450     // C++ [dcl.fct.spec]p6:
8451     //  The explicit specifier shall be used only in the declaration of a
8452     //  constructor or conversion function within its class definition;
8453     //  see 12.3.1 and 12.3.2.
8454     if (isExplicit && !NewFD->isInvalidDecl() &&
8455         !isa<CXXDeductionGuideDecl>(NewFD)) {
8456       if (!CurContext->isRecord()) {
8457         // 'explicit' was specified outside of the class.
8458         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8459              diag::err_explicit_out_of_class)
8460           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8461       } else if (!isa<CXXConstructorDecl>(NewFD) &&
8462                  !isa<CXXConversionDecl>(NewFD)) {
8463         // 'explicit' was specified on a function that wasn't a constructor
8464         // or conversion function.
8465         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8466              diag::err_explicit_non_ctor_or_conv_function)
8467           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8468       }
8469     }
8470 
8471     if (isConstexpr) {
8472       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
8473       // are implicitly inline.
8474       NewFD->setImplicitlyInline();
8475 
8476       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
8477       // be either constructors or to return a literal type. Therefore,
8478       // destructors cannot be declared constexpr.
8479       if (isa<CXXDestructorDecl>(NewFD))
8480         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
8481     }
8482 
8483     // If __module_private__ was specified, mark the function accordingly.
8484     if (D.getDeclSpec().isModulePrivateSpecified()) {
8485       if (isFunctionTemplateSpecialization) {
8486         SourceLocation ModulePrivateLoc
8487           = D.getDeclSpec().getModulePrivateSpecLoc();
8488         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
8489           << 0
8490           << FixItHint::CreateRemoval(ModulePrivateLoc);
8491       } else {
8492         NewFD->setModulePrivate();
8493         if (FunctionTemplate)
8494           FunctionTemplate->setModulePrivate();
8495       }
8496     }
8497 
8498     if (isFriend) {
8499       if (FunctionTemplate) {
8500         FunctionTemplate->setObjectOfFriendDecl();
8501         FunctionTemplate->setAccess(AS_public);
8502       }
8503       NewFD->setObjectOfFriendDecl();
8504       NewFD->setAccess(AS_public);
8505     }
8506 
8507     // If a function is defined as defaulted or deleted, mark it as such now.
8508     // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
8509     // definition kind to FDK_Definition.
8510     switch (D.getFunctionDefinitionKind()) {
8511       case FDK_Declaration:
8512       case FDK_Definition:
8513         break;
8514 
8515       case FDK_Defaulted:
8516         NewFD->setDefaulted();
8517         break;
8518 
8519       case FDK_Deleted:
8520         NewFD->setDeletedAsWritten();
8521         break;
8522     }
8523 
8524     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
8525         D.isFunctionDefinition()) {
8526       // C++ [class.mfct]p2:
8527       //   A member function may be defined (8.4) in its class definition, in
8528       //   which case it is an inline member function (7.1.2)
8529       NewFD->setImplicitlyInline();
8530     }
8531 
8532     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
8533         !CurContext->isRecord()) {
8534       // C++ [class.static]p1:
8535       //   A data or function member of a class may be declared static
8536       //   in a class definition, in which case it is a static member of
8537       //   the class.
8538 
8539       // Complain about the 'static' specifier if it's on an out-of-line
8540       // member function definition.
8541       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
8542            diag::err_static_out_of_line)
8543         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
8544     }
8545 
8546     // C++11 [except.spec]p15:
8547     //   A deallocation function with no exception-specification is treated
8548     //   as if it were specified with noexcept(true).
8549     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
8550     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
8551          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
8552         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
8553       NewFD->setType(Context.getFunctionType(
8554           FPT->getReturnType(), FPT->getParamTypes(),
8555           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
8556   }
8557 
8558   // Filter out previous declarations that don't match the scope.
8559   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
8560                        D.getCXXScopeSpec().isNotEmpty() ||
8561                        isMemberSpecialization ||
8562                        isFunctionTemplateSpecialization);
8563 
8564   // Handle GNU asm-label extension (encoded as an attribute).
8565   if (Expr *E = (Expr*) D.getAsmLabel()) {
8566     // The parser guarantees this is a string.
8567     StringLiteral *SE = cast<StringLiteral>(E);
8568     NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
8569                                                 SE->getString(), 0));
8570   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
8571     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
8572       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
8573     if (I != ExtnameUndeclaredIdentifiers.end()) {
8574       if (isDeclExternC(NewFD)) {
8575         NewFD->addAttr(I->second);
8576         ExtnameUndeclaredIdentifiers.erase(I);
8577       } else
8578         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
8579             << /*Variable*/0 << NewFD;
8580     }
8581   }
8582 
8583   // Copy the parameter declarations from the declarator D to the function
8584   // declaration NewFD, if they are available.  First scavenge them into Params.
8585   SmallVector<ParmVarDecl*, 16> Params;
8586   unsigned FTIIdx;
8587   if (D.isFunctionDeclarator(FTIIdx)) {
8588     DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun;
8589 
8590     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
8591     // function that takes no arguments, not a function that takes a
8592     // single void argument.
8593     // We let through "const void" here because Sema::GetTypeForDeclarator
8594     // already checks for that case.
8595     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
8596       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
8597         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
8598         assert(Param->getDeclContext() != NewFD && "Was set before ?");
8599         Param->setDeclContext(NewFD);
8600         Params.push_back(Param);
8601 
8602         if (Param->isInvalidDecl())
8603           NewFD->setInvalidDecl();
8604       }
8605     }
8606 
8607     if (!getLangOpts().CPlusPlus) {
8608       // In C, find all the tag declarations from the prototype and move them
8609       // into the function DeclContext. Remove them from the surrounding tag
8610       // injection context of the function, which is typically but not always
8611       // the TU.
8612       DeclContext *PrototypeTagContext =
8613           getTagInjectionContext(NewFD->getLexicalDeclContext());
8614       for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) {
8615         auto *TD = dyn_cast<TagDecl>(NonParmDecl);
8616 
8617         // We don't want to reparent enumerators. Look at their parent enum
8618         // instead.
8619         if (!TD) {
8620           if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl))
8621             TD = cast<EnumDecl>(ECD->getDeclContext());
8622         }
8623         if (!TD)
8624           continue;
8625         DeclContext *TagDC = TD->getLexicalDeclContext();
8626         if (!TagDC->containsDecl(TD))
8627           continue;
8628         TagDC->removeDecl(TD);
8629         TD->setDeclContext(NewFD);
8630         NewFD->addDecl(TD);
8631 
8632         // Preserve the lexical DeclContext if it is not the surrounding tag
8633         // injection context of the FD. In this example, the semantic context of
8634         // E will be f and the lexical context will be S, while both the
8635         // semantic and lexical contexts of S will be f:
8636         //   void f(struct S { enum E { a } f; } s);
8637         if (TagDC != PrototypeTagContext)
8638           TD->setLexicalDeclContext(TagDC);
8639       }
8640     }
8641   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
8642     // When we're declaring a function with a typedef, typeof, etc as in the
8643     // following example, we'll need to synthesize (unnamed)
8644     // parameters for use in the declaration.
8645     //
8646     // @code
8647     // typedef void fn(int);
8648     // fn f;
8649     // @endcode
8650 
8651     // Synthesize a parameter for each argument type.
8652     for (const auto &AI : FT->param_types()) {
8653       ParmVarDecl *Param =
8654           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
8655       Param->setScopeInfo(0, Params.size());
8656       Params.push_back(Param);
8657     }
8658   } else {
8659     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
8660            "Should not need args for typedef of non-prototype fn");
8661   }
8662 
8663   // Finally, we know we have the right number of parameters, install them.
8664   NewFD->setParams(Params);
8665 
8666   if (D.getDeclSpec().isNoreturnSpecified())
8667     NewFD->addAttr(
8668         ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
8669                                        Context, 0));
8670 
8671   // Functions returning a variably modified type violate C99 6.7.5.2p2
8672   // because all functions have linkage.
8673   if (!NewFD->isInvalidDecl() &&
8674       NewFD->getReturnType()->isVariablyModifiedType()) {
8675     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
8676     NewFD->setInvalidDecl();
8677   }
8678 
8679   // Apply an implicit SectionAttr if '#pragma clang section text' is active
8680   if (PragmaClangTextSection.Valid && D.isFunctionDefinition() &&
8681       !NewFD->hasAttr<SectionAttr>()) {
8682     NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit(Context,
8683                                                  PragmaClangTextSection.SectionName,
8684                                                  PragmaClangTextSection.PragmaLocation));
8685   }
8686 
8687   // Apply an implicit SectionAttr if #pragma code_seg is active.
8688   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
8689       !NewFD->hasAttr<SectionAttr>()) {
8690     NewFD->addAttr(
8691         SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
8692                                     CodeSegStack.CurrentValue->getString(),
8693                                     CodeSegStack.CurrentPragmaLocation));
8694     if (UnifySection(CodeSegStack.CurrentValue->getString(),
8695                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
8696                          ASTContext::PSF_Read,
8697                      NewFD))
8698       NewFD->dropAttr<SectionAttr>();
8699   }
8700 
8701   // Handle attributes.
8702   ProcessDeclAttributes(S, NewFD, D);
8703 
8704   if (getLangOpts().OpenCL) {
8705     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
8706     // type declaration will generate a compilation error.
8707     LangAS AddressSpace = NewFD->getReturnType().getAddressSpace();
8708     if (AddressSpace != LangAS::Default) {
8709       Diag(NewFD->getLocation(),
8710            diag::err_opencl_return_value_with_address_space);
8711       NewFD->setInvalidDecl();
8712     }
8713   }
8714 
8715   if (!getLangOpts().CPlusPlus) {
8716     // Perform semantic checking on the function declaration.
8717     if (!NewFD->isInvalidDecl() && NewFD->isMain())
8718       CheckMain(NewFD, D.getDeclSpec());
8719 
8720     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8721       CheckMSVCRTEntryPoint(NewFD);
8722 
8723     if (!NewFD->isInvalidDecl())
8724       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8725                                                   isMemberSpecialization));
8726     else if (!Previous.empty())
8727       // Recover gracefully from an invalid redeclaration.
8728       D.setRedeclaration(true);
8729     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8730             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8731            "previous declaration set still overloaded");
8732 
8733     // Diagnose no-prototype function declarations with calling conventions that
8734     // don't support variadic calls. Only do this in C and do it after merging
8735     // possibly prototyped redeclarations.
8736     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
8737     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
8738       CallingConv CC = FT->getExtInfo().getCC();
8739       if (!supportsVariadicCall(CC)) {
8740         // Windows system headers sometimes accidentally use stdcall without
8741         // (void) parameters, so we relax this to a warning.
8742         int DiagID =
8743             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
8744         Diag(NewFD->getLocation(), DiagID)
8745             << FunctionType::getNameForCallConv(CC);
8746       }
8747     }
8748   } else {
8749     // C++11 [replacement.functions]p3:
8750     //  The program's definitions shall not be specified as inline.
8751     //
8752     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
8753     //
8754     // Suppress the diagnostic if the function is __attribute__((used)), since
8755     // that forces an external definition to be emitted.
8756     if (D.getDeclSpec().isInlineSpecified() &&
8757         NewFD->isReplaceableGlobalAllocationFunction() &&
8758         !NewFD->hasAttr<UsedAttr>())
8759       Diag(D.getDeclSpec().getInlineSpecLoc(),
8760            diag::ext_operator_new_delete_declared_inline)
8761         << NewFD->getDeclName();
8762 
8763     // If the declarator is a template-id, translate the parser's template
8764     // argument list into our AST format.
8765     if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
8766       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
8767       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
8768       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
8769       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
8770                                          TemplateId->NumArgs);
8771       translateTemplateArguments(TemplateArgsPtr,
8772                                  TemplateArgs);
8773 
8774       HasExplicitTemplateArgs = true;
8775 
8776       if (NewFD->isInvalidDecl()) {
8777         HasExplicitTemplateArgs = false;
8778       } else if (FunctionTemplate) {
8779         // Function template with explicit template arguments.
8780         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
8781           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
8782 
8783         HasExplicitTemplateArgs = false;
8784       } else {
8785         assert((isFunctionTemplateSpecialization ||
8786                 D.getDeclSpec().isFriendSpecified()) &&
8787                "should have a 'template<>' for this decl");
8788         // "friend void foo<>(int);" is an implicit specialization decl.
8789         isFunctionTemplateSpecialization = true;
8790       }
8791     } else if (isFriend && isFunctionTemplateSpecialization) {
8792       // This combination is only possible in a recovery case;  the user
8793       // wrote something like:
8794       //   template <> friend void foo(int);
8795       // which we're recovering from as if the user had written:
8796       //   friend void foo<>(int);
8797       // Go ahead and fake up a template id.
8798       HasExplicitTemplateArgs = true;
8799       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
8800       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
8801     }
8802 
8803     // We do not add HD attributes to specializations here because
8804     // they may have different constexpr-ness compared to their
8805     // templates and, after maybeAddCUDAHostDeviceAttrs() is applied,
8806     // may end up with different effective targets. Instead, a
8807     // specialization inherits its target attributes from its template
8808     // in the CheckFunctionTemplateSpecialization() call below.
8809     if (getLangOpts().CUDA & !isFunctionTemplateSpecialization)
8810       maybeAddCUDAHostDeviceAttrs(NewFD, Previous);
8811 
8812     // If it's a friend (and only if it's a friend), it's possible
8813     // that either the specialized function type or the specialized
8814     // template is dependent, and therefore matching will fail.  In
8815     // this case, don't check the specialization yet.
8816     bool InstantiationDependent = false;
8817     if (isFunctionTemplateSpecialization && isFriend &&
8818         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
8819          TemplateSpecializationType::anyDependentTemplateArguments(
8820             TemplateArgs,
8821             InstantiationDependent))) {
8822       assert(HasExplicitTemplateArgs &&
8823              "friend function specialization without template args");
8824       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
8825                                                        Previous))
8826         NewFD->setInvalidDecl();
8827     } else if (isFunctionTemplateSpecialization) {
8828       if (CurContext->isDependentContext() && CurContext->isRecord()
8829           && !isFriend) {
8830         isDependentClassScopeExplicitSpecialization = true;
8831         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
8832           diag::ext_function_specialization_in_class :
8833           diag::err_function_specialization_in_class)
8834           << NewFD->getDeclName();
8835       } else if (!NewFD->isInvalidDecl() &&
8836                  CheckFunctionTemplateSpecialization(
8837                      NewFD, (HasExplicitTemplateArgs ? &TemplateArgs : nullptr),
8838                      Previous))
8839         NewFD->setInvalidDecl();
8840 
8841       // C++ [dcl.stc]p1:
8842       //   A storage-class-specifier shall not be specified in an explicit
8843       //   specialization (14.7.3)
8844       FunctionTemplateSpecializationInfo *Info =
8845           NewFD->getTemplateSpecializationInfo();
8846       if (Info && SC != SC_None) {
8847         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
8848           Diag(NewFD->getLocation(),
8849                diag::err_explicit_specialization_inconsistent_storage_class)
8850             << SC
8851             << FixItHint::CreateRemoval(
8852                                       D.getDeclSpec().getStorageClassSpecLoc());
8853 
8854         else
8855           Diag(NewFD->getLocation(),
8856                diag::ext_explicit_specialization_storage_class)
8857             << FixItHint::CreateRemoval(
8858                                       D.getDeclSpec().getStorageClassSpecLoc());
8859       }
8860     } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) {
8861       if (CheckMemberSpecialization(NewFD, Previous))
8862           NewFD->setInvalidDecl();
8863     }
8864 
8865     // Perform semantic checking on the function declaration.
8866     if (!isDependentClassScopeExplicitSpecialization) {
8867       if (!NewFD->isInvalidDecl() && NewFD->isMain())
8868         CheckMain(NewFD, D.getDeclSpec());
8869 
8870       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8871         CheckMSVCRTEntryPoint(NewFD);
8872 
8873       if (!NewFD->isInvalidDecl())
8874         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8875                                                     isMemberSpecialization));
8876       else if (!Previous.empty())
8877         // Recover gracefully from an invalid redeclaration.
8878         D.setRedeclaration(true);
8879     }
8880 
8881     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8882             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8883            "previous declaration set still overloaded");
8884 
8885     NamedDecl *PrincipalDecl = (FunctionTemplate
8886                                 ? cast<NamedDecl>(FunctionTemplate)
8887                                 : NewFD);
8888 
8889     if (isFriend && NewFD->getPreviousDecl()) {
8890       AccessSpecifier Access = AS_public;
8891       if (!NewFD->isInvalidDecl())
8892         Access = NewFD->getPreviousDecl()->getAccess();
8893 
8894       NewFD->setAccess(Access);
8895       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
8896     }
8897 
8898     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
8899         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
8900       PrincipalDecl->setNonMemberOperator();
8901 
8902     // If we have a function template, check the template parameter
8903     // list. This will check and merge default template arguments.
8904     if (FunctionTemplate) {
8905       FunctionTemplateDecl *PrevTemplate =
8906                                      FunctionTemplate->getPreviousDecl();
8907       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
8908                        PrevTemplate ? PrevTemplate->getTemplateParameters()
8909                                     : nullptr,
8910                             D.getDeclSpec().isFriendSpecified()
8911                               ? (D.isFunctionDefinition()
8912                                    ? TPC_FriendFunctionTemplateDefinition
8913                                    : TPC_FriendFunctionTemplate)
8914                               : (D.getCXXScopeSpec().isSet() &&
8915                                  DC && DC->isRecord() &&
8916                                  DC->isDependentContext())
8917                                   ? TPC_ClassTemplateMember
8918                                   : TPC_FunctionTemplate);
8919     }
8920 
8921     if (NewFD->isInvalidDecl()) {
8922       // Ignore all the rest of this.
8923     } else if (!D.isRedeclaration()) {
8924       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
8925                                        AddToScope };
8926       // Fake up an access specifier if it's supposed to be a class member.
8927       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
8928         NewFD->setAccess(AS_public);
8929 
8930       // Qualified decls generally require a previous declaration.
8931       if (D.getCXXScopeSpec().isSet()) {
8932         // ...with the major exception of templated-scope or
8933         // dependent-scope friend declarations.
8934 
8935         // TODO: we currently also suppress this check in dependent
8936         // contexts because (1) the parameter depth will be off when
8937         // matching friend templates and (2) we might actually be
8938         // selecting a friend based on a dependent factor.  But there
8939         // are situations where these conditions don't apply and we
8940         // can actually do this check immediately.
8941         if (isFriend &&
8942             (TemplateParamLists.size() ||
8943              D.getCXXScopeSpec().getScopeRep()->isDependent() ||
8944              CurContext->isDependentContext())) {
8945           // ignore these
8946         } else {
8947           // The user tried to provide an out-of-line definition for a
8948           // function that is a member of a class or namespace, but there
8949           // was no such member function declared (C++ [class.mfct]p2,
8950           // C++ [namespace.memdef]p2). For example:
8951           //
8952           // class X {
8953           //   void f() const;
8954           // };
8955           //
8956           // void X::f() { } // ill-formed
8957           //
8958           // Complain about this problem, and attempt to suggest close
8959           // matches (e.g., those that differ only in cv-qualifiers and
8960           // whether the parameter types are references).
8961 
8962           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8963                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
8964             AddToScope = ExtraArgs.AddToScope;
8965             return Result;
8966           }
8967         }
8968 
8969         // Unqualified local friend declarations are required to resolve
8970         // to something.
8971       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
8972         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8973                 *this, Previous, NewFD, ExtraArgs, true, S)) {
8974           AddToScope = ExtraArgs.AddToScope;
8975           return Result;
8976         }
8977       }
8978     } else if (!D.isFunctionDefinition() &&
8979                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
8980                !isFriend && !isFunctionTemplateSpecialization &&
8981                !isMemberSpecialization) {
8982       // An out-of-line member function declaration must also be a
8983       // definition (C++ [class.mfct]p2).
8984       // Note that this is not the case for explicit specializations of
8985       // function templates or member functions of class templates, per
8986       // C++ [temp.expl.spec]p2. We also allow these declarations as an
8987       // extension for compatibility with old SWIG code which likes to
8988       // generate them.
8989       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
8990         << D.getCXXScopeSpec().getRange();
8991     }
8992   }
8993 
8994   ProcessPragmaWeak(S, NewFD);
8995   checkAttributesAfterMerging(*this, *NewFD);
8996 
8997   AddKnownFunctionAttributes(NewFD);
8998 
8999   if (NewFD->hasAttr<OverloadableAttr>() &&
9000       !NewFD->getType()->getAs<FunctionProtoType>()) {
9001     Diag(NewFD->getLocation(),
9002          diag::err_attribute_overloadable_no_prototype)
9003       << NewFD;
9004 
9005     // Turn this into a variadic function with no parameters.
9006     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
9007     FunctionProtoType::ExtProtoInfo EPI(
9008         Context.getDefaultCallingConvention(true, false));
9009     EPI.Variadic = true;
9010     EPI.ExtInfo = FT->getExtInfo();
9011 
9012     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
9013     NewFD->setType(R);
9014   }
9015 
9016   // If there's a #pragma GCC visibility in scope, and this isn't a class
9017   // member, set the visibility of this function.
9018   if (!DC->isRecord() && NewFD->isExternallyVisible())
9019     AddPushedVisibilityAttribute(NewFD);
9020 
9021   // If there's a #pragma clang arc_cf_code_audited in scope, consider
9022   // marking the function.
9023   AddCFAuditedAttribute(NewFD);
9024 
9025   // If this is a function definition, check if we have to apply optnone due to
9026   // a pragma.
9027   if(D.isFunctionDefinition())
9028     AddRangeBasedOptnone(NewFD);
9029 
9030   // If this is the first declaration of an extern C variable, update
9031   // the map of such variables.
9032   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
9033       isIncompleteDeclExternC(*this, NewFD))
9034     RegisterLocallyScopedExternCDecl(NewFD, S);
9035 
9036   // Set this FunctionDecl's range up to the right paren.
9037   NewFD->setRangeEnd(D.getSourceRange().getEnd());
9038 
9039   if (D.isRedeclaration() && !Previous.empty()) {
9040     checkDLLAttributeRedeclaration(
9041         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD,
9042         isMemberSpecialization || isFunctionTemplateSpecialization,
9043         D.isFunctionDefinition());
9044   }
9045 
9046   if (getLangOpts().CUDA) {
9047     IdentifierInfo *II = NewFD->getIdentifier();
9048     if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() &&
9049         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
9050       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
9051         Diag(NewFD->getLocation(), diag::err_config_scalar_return);
9052 
9053       Context.setcudaConfigureCallDecl(NewFD);
9054     }
9055 
9056     // Variadic functions, other than a *declaration* of printf, are not allowed
9057     // in device-side CUDA code, unless someone passed
9058     // -fcuda-allow-variadic-functions.
9059     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
9060         (NewFD->hasAttr<CUDADeviceAttr>() ||
9061          NewFD->hasAttr<CUDAGlobalAttr>()) &&
9062         !(II && II->isStr("printf") && NewFD->isExternC() &&
9063           !D.isFunctionDefinition())) {
9064       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
9065     }
9066   }
9067 
9068   MarkUnusedFileScopedDecl(NewFD);
9069 
9070   if (getLangOpts().CPlusPlus) {
9071     if (FunctionTemplate) {
9072       if (NewFD->isInvalidDecl())
9073         FunctionTemplate->setInvalidDecl();
9074       return FunctionTemplate;
9075     }
9076 
9077     if (isMemberSpecialization && !NewFD->isInvalidDecl())
9078       CompleteMemberSpecialization(NewFD, Previous);
9079   }
9080 
9081   if (NewFD->hasAttr<OpenCLKernelAttr>()) {
9082     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
9083     if ((getLangOpts().OpenCLVersion >= 120)
9084         && (SC == SC_Static)) {
9085       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
9086       D.setInvalidType();
9087     }
9088 
9089     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
9090     if (!NewFD->getReturnType()->isVoidType()) {
9091       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
9092       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
9093           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
9094                                 : FixItHint());
9095       D.setInvalidType();
9096     }
9097 
9098     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
9099     for (auto Param : NewFD->parameters())
9100       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
9101   }
9102   for (const ParmVarDecl *Param : NewFD->parameters()) {
9103     QualType PT = Param->getType();
9104 
9105     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
9106     // types.
9107     if (getLangOpts().OpenCLVersion >= 200) {
9108       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
9109         QualType ElemTy = PipeTy->getElementType();
9110           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
9111             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
9112             D.setInvalidType();
9113           }
9114       }
9115     }
9116   }
9117 
9118   // Here we have an function template explicit specialization at class scope.
9119   // The actually specialization will be postponed to template instatiation
9120   // time via the ClassScopeFunctionSpecializationDecl node.
9121   if (isDependentClassScopeExplicitSpecialization) {
9122     ClassScopeFunctionSpecializationDecl *NewSpec =
9123                          ClassScopeFunctionSpecializationDecl::Create(
9124                                 Context, CurContext, SourceLocation(),
9125                                 cast<CXXMethodDecl>(NewFD),
9126                                 HasExplicitTemplateArgs, TemplateArgs);
9127     CurContext->addDecl(NewSpec);
9128     AddToScope = false;
9129   }
9130 
9131   return NewFD;
9132 }
9133 
9134 /// \brief Checks if the new declaration declared in dependent context must be
9135 /// put in the same redeclaration chain as the specified declaration.
9136 ///
9137 /// \param D Declaration that is checked.
9138 /// \param PrevDecl Previous declaration found with proper lookup method for the
9139 ///                 same declaration name.
9140 /// \returns True if D must be added to the redeclaration chain which PrevDecl
9141 ///          belongs to.
9142 ///
9143 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) {
9144   // Any declarations should be put into redeclaration chains except for
9145   // friend declaration in a dependent context that names a function in
9146   // namespace scope.
9147   //
9148   // This allows to compile code like:
9149   //
9150   //       void func();
9151   //       template<typename T> class C1 { friend void func() { } };
9152   //       template<typename T> class C2 { friend void func() { } };
9153   //
9154   // This code snippet is a valid code unless both templates are instantiated.
9155   return !(D->getLexicalDeclContext()->isDependentContext() &&
9156            D->getDeclContext()->isFileContext() &&
9157            D->getFriendObjectKind() != Decl::FOK_None);
9158 }
9159 
9160 /// \brief Perform semantic checking of a new function declaration.
9161 ///
9162 /// Performs semantic analysis of the new function declaration
9163 /// NewFD. This routine performs all semantic checking that does not
9164 /// require the actual declarator involved in the declaration, and is
9165 /// used both for the declaration of functions as they are parsed
9166 /// (called via ActOnDeclarator) and for the declaration of functions
9167 /// that have been instantiated via C++ template instantiation (called
9168 /// via InstantiateDecl).
9169 ///
9170 /// \param IsMemberSpecialization whether this new function declaration is
9171 /// a member specialization (that replaces any definition provided by the
9172 /// previous declaration).
9173 ///
9174 /// This sets NewFD->isInvalidDecl() to true if there was an error.
9175 ///
9176 /// \returns true if the function declaration is a redeclaration.
9177 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
9178                                     LookupResult &Previous,
9179                                     bool IsMemberSpecialization) {
9180   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
9181          "Variably modified return types are not handled here");
9182 
9183   // Determine whether the type of this function should be merged with
9184   // a previous visible declaration. This never happens for functions in C++,
9185   // and always happens in C if the previous declaration was visible.
9186   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
9187                                !Previous.isShadowed();
9188 
9189   bool Redeclaration = false;
9190   NamedDecl *OldDecl = nullptr;
9191   bool MayNeedOverloadableChecks = false;
9192 
9193   // Merge or overload the declaration with an existing declaration of
9194   // the same name, if appropriate.
9195   if (!Previous.empty()) {
9196     // Determine whether NewFD is an overload of PrevDecl or
9197     // a declaration that requires merging. If it's an overload,
9198     // there's no more work to do here; we'll just add the new
9199     // function to the scope.
9200     if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) {
9201       NamedDecl *Candidate = Previous.getRepresentativeDecl();
9202       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
9203         Redeclaration = true;
9204         OldDecl = Candidate;
9205       }
9206     } else {
9207       MayNeedOverloadableChecks = true;
9208       switch (CheckOverload(S, NewFD, Previous, OldDecl,
9209                             /*NewIsUsingDecl*/ false)) {
9210       case Ovl_Match:
9211         Redeclaration = true;
9212         break;
9213 
9214       case Ovl_NonFunction:
9215         Redeclaration = true;
9216         break;
9217 
9218       case Ovl_Overload:
9219         Redeclaration = false;
9220         break;
9221       }
9222     }
9223   }
9224 
9225   // Check for a previous extern "C" declaration with this name.
9226   if (!Redeclaration &&
9227       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
9228     if (!Previous.empty()) {
9229       // This is an extern "C" declaration with the same name as a previous
9230       // declaration, and thus redeclares that entity...
9231       Redeclaration = true;
9232       OldDecl = Previous.getFoundDecl();
9233       MergeTypeWithPrevious = false;
9234 
9235       // ... except in the presence of __attribute__((overloadable)).
9236       if (OldDecl->hasAttr<OverloadableAttr>() ||
9237           NewFD->hasAttr<OverloadableAttr>()) {
9238         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
9239           MayNeedOverloadableChecks = true;
9240           Redeclaration = false;
9241           OldDecl = nullptr;
9242         }
9243       }
9244     }
9245   }
9246 
9247   // C++11 [dcl.constexpr]p8:
9248   //   A constexpr specifier for a non-static member function that is not
9249   //   a constructor declares that member function to be const.
9250   //
9251   // This needs to be delayed until we know whether this is an out-of-line
9252   // definition of a static member function.
9253   //
9254   // This rule is not present in C++1y, so we produce a backwards
9255   // compatibility warning whenever it happens in C++11.
9256   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
9257   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
9258       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
9259       (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
9260     CXXMethodDecl *OldMD = nullptr;
9261     if (OldDecl)
9262       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
9263     if (!OldMD || !OldMD->isStatic()) {
9264       const FunctionProtoType *FPT =
9265         MD->getType()->castAs<FunctionProtoType>();
9266       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9267       EPI.TypeQuals |= Qualifiers::Const;
9268       MD->setType(Context.getFunctionType(FPT->getReturnType(),
9269                                           FPT->getParamTypes(), EPI));
9270 
9271       // Warn that we did this, if we're not performing template instantiation.
9272       // In that case, we'll have warned already when the template was defined.
9273       if (!inTemplateInstantiation()) {
9274         SourceLocation AddConstLoc;
9275         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
9276                 .IgnoreParens().getAs<FunctionTypeLoc>())
9277           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
9278 
9279         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
9280           << FixItHint::CreateInsertion(AddConstLoc, " const");
9281       }
9282     }
9283   }
9284 
9285   if (Redeclaration) {
9286     // NewFD and OldDecl represent declarations that need to be
9287     // merged.
9288     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
9289       NewFD->setInvalidDecl();
9290       return Redeclaration;
9291     }
9292 
9293     Previous.clear();
9294     Previous.addDecl(OldDecl);
9295 
9296     if (FunctionTemplateDecl *OldTemplateDecl
9297                                   = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
9298       auto *OldFD = OldTemplateDecl->getTemplatedDecl();
9299       NewFD->setPreviousDeclaration(OldFD);
9300       adjustDeclContextForDeclaratorDecl(NewFD, OldFD);
9301       FunctionTemplateDecl *NewTemplateDecl
9302         = NewFD->getDescribedFunctionTemplate();
9303       assert(NewTemplateDecl && "Template/non-template mismatch");
9304       if (auto *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
9305         Method->setAccess(OldTemplateDecl->getAccess());
9306         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
9307       }
9308 
9309       // If this is an explicit specialization of a member that is a function
9310       // template, mark it as a member specialization.
9311       if (IsMemberSpecialization &&
9312           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
9313         NewTemplateDecl->setMemberSpecialization();
9314         assert(OldTemplateDecl->isMemberSpecialization());
9315         // Explicit specializations of a member template do not inherit deleted
9316         // status from the parent member template that they are specializing.
9317         if (OldFD->isDeleted()) {
9318           // FIXME: This assert will not hold in the presence of modules.
9319           assert(OldFD->getCanonicalDecl() == OldFD);
9320           // FIXME: We need an update record for this AST mutation.
9321           OldFD->setDeletedAsWritten(false);
9322         }
9323       }
9324 
9325     } else {
9326       if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) {
9327         auto *OldFD = cast<FunctionDecl>(OldDecl);
9328         // This needs to happen first so that 'inline' propagates.
9329         NewFD->setPreviousDeclaration(OldFD);
9330         adjustDeclContextForDeclaratorDecl(NewFD, OldFD);
9331         if (isa<CXXMethodDecl>(NewFD))
9332           NewFD->setAccess(OldFD->getAccess());
9333       }
9334     }
9335   } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks &&
9336              !NewFD->getAttr<OverloadableAttr>()) {
9337     assert((Previous.empty() ||
9338             llvm::any_of(Previous,
9339                          [](const NamedDecl *ND) {
9340                            return ND->hasAttr<OverloadableAttr>();
9341                          })) &&
9342            "Non-redecls shouldn't happen without overloadable present");
9343 
9344     auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) {
9345       const auto *FD = dyn_cast<FunctionDecl>(ND);
9346       return FD && !FD->hasAttr<OverloadableAttr>();
9347     });
9348 
9349     if (OtherUnmarkedIter != Previous.end()) {
9350       Diag(NewFD->getLocation(),
9351            diag::err_attribute_overloadable_multiple_unmarked_overloads);
9352       Diag((*OtherUnmarkedIter)->getLocation(),
9353            diag::note_attribute_overloadable_prev_overload)
9354           << false;
9355 
9356       NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
9357     }
9358   }
9359 
9360   // Semantic checking for this function declaration (in isolation).
9361 
9362   if (getLangOpts().CPlusPlus) {
9363     // C++-specific checks.
9364     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
9365       CheckConstructor(Constructor);
9366     } else if (CXXDestructorDecl *Destructor =
9367                 dyn_cast<CXXDestructorDecl>(NewFD)) {
9368       CXXRecordDecl *Record = Destructor->getParent();
9369       QualType ClassType = Context.getTypeDeclType(Record);
9370 
9371       // FIXME: Shouldn't we be able to perform this check even when the class
9372       // type is dependent? Both gcc and edg can handle that.
9373       if (!ClassType->isDependentType()) {
9374         DeclarationName Name
9375           = Context.DeclarationNames.getCXXDestructorName(
9376                                         Context.getCanonicalType(ClassType));
9377         if (NewFD->getDeclName() != Name) {
9378           Diag(NewFD->getLocation(), diag::err_destructor_name);
9379           NewFD->setInvalidDecl();
9380           return Redeclaration;
9381         }
9382       }
9383     } else if (CXXConversionDecl *Conversion
9384                = dyn_cast<CXXConversionDecl>(NewFD)) {
9385       ActOnConversionDeclarator(Conversion);
9386     } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) {
9387       if (auto *TD = Guide->getDescribedFunctionTemplate())
9388         CheckDeductionGuideTemplate(TD);
9389 
9390       // A deduction guide is not on the list of entities that can be
9391       // explicitly specialized.
9392       if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
9393         Diag(Guide->getLocStart(), diag::err_deduction_guide_specialized)
9394             << /*explicit specialization*/ 1;
9395     }
9396 
9397     // Find any virtual functions that this function overrides.
9398     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
9399       if (!Method->isFunctionTemplateSpecialization() &&
9400           !Method->getDescribedFunctionTemplate() &&
9401           Method->isCanonicalDecl()) {
9402         if (AddOverriddenMethods(Method->getParent(), Method)) {
9403           // If the function was marked as "static", we have a problem.
9404           if (NewFD->getStorageClass() == SC_Static) {
9405             ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
9406           }
9407         }
9408       }
9409 
9410       if (Method->isStatic())
9411         checkThisInStaticMemberFunctionType(Method);
9412     }
9413 
9414     // Extra checking for C++ overloaded operators (C++ [over.oper]).
9415     if (NewFD->isOverloadedOperator() &&
9416         CheckOverloadedOperatorDeclaration(NewFD)) {
9417       NewFD->setInvalidDecl();
9418       return Redeclaration;
9419     }
9420 
9421     // Extra checking for C++0x literal operators (C++0x [over.literal]).
9422     if (NewFD->getLiteralIdentifier() &&
9423         CheckLiteralOperatorDeclaration(NewFD)) {
9424       NewFD->setInvalidDecl();
9425       return Redeclaration;
9426     }
9427 
9428     // In C++, check default arguments now that we have merged decls. Unless
9429     // the lexical context is the class, because in this case this is done
9430     // during delayed parsing anyway.
9431     if (!CurContext->isRecord())
9432       CheckCXXDefaultArguments(NewFD);
9433 
9434     // If this function declares a builtin function, check the type of this
9435     // declaration against the expected type for the builtin.
9436     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
9437       ASTContext::GetBuiltinTypeError Error;
9438       LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
9439       QualType T = Context.GetBuiltinType(BuiltinID, Error);
9440       // If the type of the builtin differs only in its exception
9441       // specification, that's OK.
9442       // FIXME: If the types do differ in this way, it would be better to
9443       // retain the 'noexcept' form of the type.
9444       if (!T.isNull() &&
9445           !Context.hasSameFunctionTypeIgnoringExceptionSpec(T,
9446                                                             NewFD->getType()))
9447         // The type of this function differs from the type of the builtin,
9448         // so forget about the builtin entirely.
9449         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
9450     }
9451 
9452     // If this function is declared as being extern "C", then check to see if
9453     // the function returns a UDT (class, struct, or union type) that is not C
9454     // compatible, and if it does, warn the user.
9455     // But, issue any diagnostic on the first declaration only.
9456     if (Previous.empty() && NewFD->isExternC()) {
9457       QualType R = NewFD->getReturnType();
9458       if (R->isIncompleteType() && !R->isVoidType())
9459         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
9460             << NewFD << R;
9461       else if (!R.isPODType(Context) && !R->isVoidType() &&
9462                !R->isObjCObjectPointerType())
9463         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
9464     }
9465 
9466     // C++1z [dcl.fct]p6:
9467     //   [...] whether the function has a non-throwing exception-specification
9468     //   [is] part of the function type
9469     //
9470     // This results in an ABI break between C++14 and C++17 for functions whose
9471     // declared type includes an exception-specification in a parameter or
9472     // return type. (Exception specifications on the function itself are OK in
9473     // most cases, and exception specifications are not permitted in most other
9474     // contexts where they could make it into a mangling.)
9475     if (!getLangOpts().CPlusPlus17 && !NewFD->getPrimaryTemplate()) {
9476       auto HasNoexcept = [&](QualType T) -> bool {
9477         // Strip off declarator chunks that could be between us and a function
9478         // type. We don't need to look far, exception specifications are very
9479         // restricted prior to C++17.
9480         if (auto *RT = T->getAs<ReferenceType>())
9481           T = RT->getPointeeType();
9482         else if (T->isAnyPointerType())
9483           T = T->getPointeeType();
9484         else if (auto *MPT = T->getAs<MemberPointerType>())
9485           T = MPT->getPointeeType();
9486         if (auto *FPT = T->getAs<FunctionProtoType>())
9487           if (FPT->isNothrow(Context))
9488             return true;
9489         return false;
9490       };
9491 
9492       auto *FPT = NewFD->getType()->castAs<FunctionProtoType>();
9493       bool AnyNoexcept = HasNoexcept(FPT->getReturnType());
9494       for (QualType T : FPT->param_types())
9495         AnyNoexcept |= HasNoexcept(T);
9496       if (AnyNoexcept)
9497         Diag(NewFD->getLocation(),
9498              diag::warn_cxx17_compat_exception_spec_in_signature)
9499             << NewFD;
9500     }
9501 
9502     if (!Redeclaration && LangOpts.CUDA)
9503       checkCUDATargetOverload(NewFD, Previous);
9504   }
9505   return Redeclaration;
9506 }
9507 
9508 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
9509   // C++11 [basic.start.main]p3:
9510   //   A program that [...] declares main to be inline, static or
9511   //   constexpr is ill-formed.
9512   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
9513   //   appear in a declaration of main.
9514   // static main is not an error under C99, but we should warn about it.
9515   // We accept _Noreturn main as an extension.
9516   if (FD->getStorageClass() == SC_Static)
9517     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
9518          ? diag::err_static_main : diag::warn_static_main)
9519       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
9520   if (FD->isInlineSpecified())
9521     Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
9522       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
9523   if (DS.isNoreturnSpecified()) {
9524     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
9525     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
9526     Diag(NoreturnLoc, diag::ext_noreturn_main);
9527     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
9528       << FixItHint::CreateRemoval(NoreturnRange);
9529   }
9530   if (FD->isConstexpr()) {
9531     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
9532       << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
9533     FD->setConstexpr(false);
9534   }
9535 
9536   if (getLangOpts().OpenCL) {
9537     Diag(FD->getLocation(), diag::err_opencl_no_main)
9538         << FD->hasAttr<OpenCLKernelAttr>();
9539     FD->setInvalidDecl();
9540     return;
9541   }
9542 
9543   QualType T = FD->getType();
9544   assert(T->isFunctionType() && "function decl is not of function type");
9545   const FunctionType* FT = T->castAs<FunctionType>();
9546 
9547   // Set default calling convention for main()
9548   if (FT->getCallConv() != CC_C) {
9549     FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C));
9550     FD->setType(QualType(FT, 0));
9551     T = Context.getCanonicalType(FD->getType());
9552   }
9553 
9554   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
9555     // In C with GNU extensions we allow main() to have non-integer return
9556     // type, but we should warn about the extension, and we disable the
9557     // implicit-return-zero rule.
9558 
9559     // GCC in C mode accepts qualified 'int'.
9560     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
9561       FD->setHasImplicitReturnZero(true);
9562     else {
9563       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
9564       SourceRange RTRange = FD->getReturnTypeSourceRange();
9565       if (RTRange.isValid())
9566         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
9567             << FixItHint::CreateReplacement(RTRange, "int");
9568     }
9569   } else {
9570     // In C and C++, main magically returns 0 if you fall off the end;
9571     // set the flag which tells us that.
9572     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
9573 
9574     // All the standards say that main() should return 'int'.
9575     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
9576       FD->setHasImplicitReturnZero(true);
9577     else {
9578       // Otherwise, this is just a flat-out error.
9579       SourceRange RTRange = FD->getReturnTypeSourceRange();
9580       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
9581           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
9582                                 : FixItHint());
9583       FD->setInvalidDecl(true);
9584     }
9585   }
9586 
9587   // Treat protoless main() as nullary.
9588   if (isa<FunctionNoProtoType>(FT)) return;
9589 
9590   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
9591   unsigned nparams = FTP->getNumParams();
9592   assert(FD->getNumParams() == nparams);
9593 
9594   bool HasExtraParameters = (nparams > 3);
9595 
9596   if (FTP->isVariadic()) {
9597     Diag(FD->getLocation(), diag::ext_variadic_main);
9598     // FIXME: if we had information about the location of the ellipsis, we
9599     // could add a FixIt hint to remove it as a parameter.
9600   }
9601 
9602   // Darwin passes an undocumented fourth argument of type char**.  If
9603   // other platforms start sprouting these, the logic below will start
9604   // getting shifty.
9605   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
9606     HasExtraParameters = false;
9607 
9608   if (HasExtraParameters) {
9609     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
9610     FD->setInvalidDecl(true);
9611     nparams = 3;
9612   }
9613 
9614   // FIXME: a lot of the following diagnostics would be improved
9615   // if we had some location information about types.
9616 
9617   QualType CharPP =
9618     Context.getPointerType(Context.getPointerType(Context.CharTy));
9619   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
9620 
9621   for (unsigned i = 0; i < nparams; ++i) {
9622     QualType AT = FTP->getParamType(i);
9623 
9624     bool mismatch = true;
9625 
9626     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
9627       mismatch = false;
9628     else if (Expected[i] == CharPP) {
9629       // As an extension, the following forms are okay:
9630       //   char const **
9631       //   char const * const *
9632       //   char * const *
9633 
9634       QualifierCollector qs;
9635       const PointerType* PT;
9636       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
9637           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
9638           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
9639                               Context.CharTy)) {
9640         qs.removeConst();
9641         mismatch = !qs.empty();
9642       }
9643     }
9644 
9645     if (mismatch) {
9646       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
9647       // TODO: suggest replacing given type with expected type
9648       FD->setInvalidDecl(true);
9649     }
9650   }
9651 
9652   if (nparams == 1 && !FD->isInvalidDecl()) {
9653     Diag(FD->getLocation(), diag::warn_main_one_arg);
9654   }
9655 
9656   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
9657     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
9658     FD->setInvalidDecl();
9659   }
9660 }
9661 
9662 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
9663   QualType T = FD->getType();
9664   assert(T->isFunctionType() && "function decl is not of function type");
9665   const FunctionType *FT = T->castAs<FunctionType>();
9666 
9667   // Set an implicit return of 'zero' if the function can return some integral,
9668   // enumeration, pointer or nullptr type.
9669   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
9670       FT->getReturnType()->isAnyPointerType() ||
9671       FT->getReturnType()->isNullPtrType())
9672     // DllMain is exempt because a return value of zero means it failed.
9673     if (FD->getName() != "DllMain")
9674       FD->setHasImplicitReturnZero(true);
9675 
9676   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
9677     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
9678     FD->setInvalidDecl();
9679   }
9680 }
9681 
9682 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
9683   // FIXME: Need strict checking.  In C89, we need to check for
9684   // any assignment, increment, decrement, function-calls, or
9685   // commas outside of a sizeof.  In C99, it's the same list,
9686   // except that the aforementioned are allowed in unevaluated
9687   // expressions.  Everything else falls under the
9688   // "may accept other forms of constant expressions" exception.
9689   // (We never end up here for C++, so the constant expression
9690   // rules there don't matter.)
9691   const Expr *Culprit;
9692   if (Init->isConstantInitializer(Context, false, &Culprit))
9693     return false;
9694   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
9695     << Culprit->getSourceRange();
9696   return true;
9697 }
9698 
9699 namespace {
9700   // Visits an initialization expression to see if OrigDecl is evaluated in
9701   // its own initialization and throws a warning if it does.
9702   class SelfReferenceChecker
9703       : public EvaluatedExprVisitor<SelfReferenceChecker> {
9704     Sema &S;
9705     Decl *OrigDecl;
9706     bool isRecordType;
9707     bool isPODType;
9708     bool isReferenceType;
9709 
9710     bool isInitList;
9711     llvm::SmallVector<unsigned, 4> InitFieldIndex;
9712 
9713   public:
9714     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
9715 
9716     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
9717                                                     S(S), OrigDecl(OrigDecl) {
9718       isPODType = false;
9719       isRecordType = false;
9720       isReferenceType = false;
9721       isInitList = false;
9722       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
9723         isPODType = VD->getType().isPODType(S.Context);
9724         isRecordType = VD->getType()->isRecordType();
9725         isReferenceType = VD->getType()->isReferenceType();
9726       }
9727     }
9728 
9729     // For most expressions, just call the visitor.  For initializer lists,
9730     // track the index of the field being initialized since fields are
9731     // initialized in order allowing use of previously initialized fields.
9732     void CheckExpr(Expr *E) {
9733       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
9734       if (!InitList) {
9735         Visit(E);
9736         return;
9737       }
9738 
9739       // Track and increment the index here.
9740       isInitList = true;
9741       InitFieldIndex.push_back(0);
9742       for (auto Child : InitList->children()) {
9743         CheckExpr(cast<Expr>(Child));
9744         ++InitFieldIndex.back();
9745       }
9746       InitFieldIndex.pop_back();
9747     }
9748 
9749     // Returns true if MemberExpr is checked and no further checking is needed.
9750     // Returns false if additional checking is required.
9751     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
9752       llvm::SmallVector<FieldDecl*, 4> Fields;
9753       Expr *Base = E;
9754       bool ReferenceField = false;
9755 
9756       // Get the field memebers used.
9757       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9758         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
9759         if (!FD)
9760           return false;
9761         Fields.push_back(FD);
9762         if (FD->getType()->isReferenceType())
9763           ReferenceField = true;
9764         Base = ME->getBase()->IgnoreParenImpCasts();
9765       }
9766 
9767       // Keep checking only if the base Decl is the same.
9768       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
9769       if (!DRE || DRE->getDecl() != OrigDecl)
9770         return false;
9771 
9772       // A reference field can be bound to an unininitialized field.
9773       if (CheckReference && !ReferenceField)
9774         return true;
9775 
9776       // Convert FieldDecls to their index number.
9777       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
9778       for (const FieldDecl *I : llvm::reverse(Fields))
9779         UsedFieldIndex.push_back(I->getFieldIndex());
9780 
9781       // See if a warning is needed by checking the first difference in index
9782       // numbers.  If field being used has index less than the field being
9783       // initialized, then the use is safe.
9784       for (auto UsedIter = UsedFieldIndex.begin(),
9785                 UsedEnd = UsedFieldIndex.end(),
9786                 OrigIter = InitFieldIndex.begin(),
9787                 OrigEnd = InitFieldIndex.end();
9788            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
9789         if (*UsedIter < *OrigIter)
9790           return true;
9791         if (*UsedIter > *OrigIter)
9792           break;
9793       }
9794 
9795       // TODO: Add a different warning which will print the field names.
9796       HandleDeclRefExpr(DRE);
9797       return true;
9798     }
9799 
9800     // For most expressions, the cast is directly above the DeclRefExpr.
9801     // For conditional operators, the cast can be outside the conditional
9802     // operator if both expressions are DeclRefExpr's.
9803     void HandleValue(Expr *E) {
9804       E = E->IgnoreParens();
9805       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
9806         HandleDeclRefExpr(DRE);
9807         return;
9808       }
9809 
9810       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
9811         Visit(CO->getCond());
9812         HandleValue(CO->getTrueExpr());
9813         HandleValue(CO->getFalseExpr());
9814         return;
9815       }
9816 
9817       if (BinaryConditionalOperator *BCO =
9818               dyn_cast<BinaryConditionalOperator>(E)) {
9819         Visit(BCO->getCond());
9820         HandleValue(BCO->getFalseExpr());
9821         return;
9822       }
9823 
9824       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
9825         HandleValue(OVE->getSourceExpr());
9826         return;
9827       }
9828 
9829       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
9830         if (BO->getOpcode() == BO_Comma) {
9831           Visit(BO->getLHS());
9832           HandleValue(BO->getRHS());
9833           return;
9834         }
9835       }
9836 
9837       if (isa<MemberExpr>(E)) {
9838         if (isInitList) {
9839           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
9840                                       false /*CheckReference*/))
9841             return;
9842         }
9843 
9844         Expr *Base = E->IgnoreParenImpCasts();
9845         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9846           // Check for static member variables and don't warn on them.
9847           if (!isa<FieldDecl>(ME->getMemberDecl()))
9848             return;
9849           Base = ME->getBase()->IgnoreParenImpCasts();
9850         }
9851         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
9852           HandleDeclRefExpr(DRE);
9853         return;
9854       }
9855 
9856       Visit(E);
9857     }
9858 
9859     // Reference types not handled in HandleValue are handled here since all
9860     // uses of references are bad, not just r-value uses.
9861     void VisitDeclRefExpr(DeclRefExpr *E) {
9862       if (isReferenceType)
9863         HandleDeclRefExpr(E);
9864     }
9865 
9866     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
9867       if (E->getCastKind() == CK_LValueToRValue) {
9868         HandleValue(E->getSubExpr());
9869         return;
9870       }
9871 
9872       Inherited::VisitImplicitCastExpr(E);
9873     }
9874 
9875     void VisitMemberExpr(MemberExpr *E) {
9876       if (isInitList) {
9877         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
9878           return;
9879       }
9880 
9881       // Don't warn on arrays since they can be treated as pointers.
9882       if (E->getType()->canDecayToPointerType()) return;
9883 
9884       // Warn when a non-static method call is followed by non-static member
9885       // field accesses, which is followed by a DeclRefExpr.
9886       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
9887       bool Warn = (MD && !MD->isStatic());
9888       Expr *Base = E->getBase()->IgnoreParenImpCasts();
9889       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9890         if (!isa<FieldDecl>(ME->getMemberDecl()))
9891           Warn = false;
9892         Base = ME->getBase()->IgnoreParenImpCasts();
9893       }
9894 
9895       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
9896         if (Warn)
9897           HandleDeclRefExpr(DRE);
9898         return;
9899       }
9900 
9901       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
9902       // Visit that expression.
9903       Visit(Base);
9904     }
9905 
9906     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
9907       Expr *Callee = E->getCallee();
9908 
9909       if (isa<UnresolvedLookupExpr>(Callee))
9910         return Inherited::VisitCXXOperatorCallExpr(E);
9911 
9912       Visit(Callee);
9913       for (auto Arg: E->arguments())
9914         HandleValue(Arg->IgnoreParenImpCasts());
9915     }
9916 
9917     void VisitUnaryOperator(UnaryOperator *E) {
9918       // For POD record types, addresses of its own members are well-defined.
9919       if (E->getOpcode() == UO_AddrOf && isRecordType &&
9920           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
9921         if (!isPODType)
9922           HandleValue(E->getSubExpr());
9923         return;
9924       }
9925 
9926       if (E->isIncrementDecrementOp()) {
9927         HandleValue(E->getSubExpr());
9928         return;
9929       }
9930 
9931       Inherited::VisitUnaryOperator(E);
9932     }
9933 
9934     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
9935 
9936     void VisitCXXConstructExpr(CXXConstructExpr *E) {
9937       if (E->getConstructor()->isCopyConstructor()) {
9938         Expr *ArgExpr = E->getArg(0);
9939         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
9940           if (ILE->getNumInits() == 1)
9941             ArgExpr = ILE->getInit(0);
9942         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
9943           if (ICE->getCastKind() == CK_NoOp)
9944             ArgExpr = ICE->getSubExpr();
9945         HandleValue(ArgExpr);
9946         return;
9947       }
9948       Inherited::VisitCXXConstructExpr(E);
9949     }
9950 
9951     void VisitCallExpr(CallExpr *E) {
9952       // Treat std::move as a use.
9953       if (E->isCallToStdMove()) {
9954         HandleValue(E->getArg(0));
9955         return;
9956       }
9957 
9958       Inherited::VisitCallExpr(E);
9959     }
9960 
9961     void VisitBinaryOperator(BinaryOperator *E) {
9962       if (E->isCompoundAssignmentOp()) {
9963         HandleValue(E->getLHS());
9964         Visit(E->getRHS());
9965         return;
9966       }
9967 
9968       Inherited::VisitBinaryOperator(E);
9969     }
9970 
9971     // A custom visitor for BinaryConditionalOperator is needed because the
9972     // regular visitor would check the condition and true expression separately
9973     // but both point to the same place giving duplicate diagnostics.
9974     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
9975       Visit(E->getCond());
9976       Visit(E->getFalseExpr());
9977     }
9978 
9979     void HandleDeclRefExpr(DeclRefExpr *DRE) {
9980       Decl* ReferenceDecl = DRE->getDecl();
9981       if (OrigDecl != ReferenceDecl) return;
9982       unsigned diag;
9983       if (isReferenceType) {
9984         diag = diag::warn_uninit_self_reference_in_reference_init;
9985       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
9986         diag = diag::warn_static_self_reference_in_init;
9987       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
9988                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
9989                  DRE->getDecl()->getType()->isRecordType()) {
9990         diag = diag::warn_uninit_self_reference_in_init;
9991       } else {
9992         // Local variables will be handled by the CFG analysis.
9993         return;
9994       }
9995 
9996       S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
9997                             S.PDiag(diag)
9998                               << DRE->getNameInfo().getName()
9999                               << OrigDecl->getLocation()
10000                               << DRE->getSourceRange());
10001     }
10002   };
10003 
10004   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
10005   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
10006                                  bool DirectInit) {
10007     // Parameters arguments are occassionially constructed with itself,
10008     // for instance, in recursive functions.  Skip them.
10009     if (isa<ParmVarDecl>(OrigDecl))
10010       return;
10011 
10012     E = E->IgnoreParens();
10013 
10014     // Skip checking T a = a where T is not a record or reference type.
10015     // Doing so is a way to silence uninitialized warnings.
10016     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
10017       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
10018         if (ICE->getCastKind() == CK_LValueToRValue)
10019           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
10020             if (DRE->getDecl() == OrigDecl)
10021               return;
10022 
10023     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
10024   }
10025 } // end anonymous namespace
10026 
10027 namespace {
10028   // Simple wrapper to add the name of a variable or (if no variable is
10029   // available) a DeclarationName into a diagnostic.
10030   struct VarDeclOrName {
10031     VarDecl *VDecl;
10032     DeclarationName Name;
10033 
10034     friend const Sema::SemaDiagnosticBuilder &
10035     operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) {
10036       return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name;
10037     }
10038   };
10039 } // end anonymous namespace
10040 
10041 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
10042                                             DeclarationName Name, QualType Type,
10043                                             TypeSourceInfo *TSI,
10044                                             SourceRange Range, bool DirectInit,
10045                                             Expr *Init) {
10046   bool IsInitCapture = !VDecl;
10047   assert((!VDecl || !VDecl->isInitCapture()) &&
10048          "init captures are expected to be deduced prior to initialization");
10049 
10050   VarDeclOrName VN{VDecl, Name};
10051 
10052   DeducedType *Deduced = Type->getContainedDeducedType();
10053   assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type");
10054 
10055   // C++11 [dcl.spec.auto]p3
10056   if (!Init) {
10057     assert(VDecl && "no init for init capture deduction?");
10058     Diag(VDecl->getLocation(), diag::err_auto_var_requires_init)
10059       << VDecl->getDeclName() << Type;
10060     return QualType();
10061   }
10062 
10063   ArrayRef<Expr*> DeduceInits = Init;
10064   if (DirectInit) {
10065     if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init))
10066       DeduceInits = PL->exprs();
10067   }
10068 
10069   if (isa<DeducedTemplateSpecializationType>(Deduced)) {
10070     assert(VDecl && "non-auto type for init capture deduction?");
10071     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10072     InitializationKind Kind = InitializationKind::CreateForInit(
10073         VDecl->getLocation(), DirectInit, Init);
10074     // FIXME: Initialization should not be taking a mutable list of inits.
10075     SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end());
10076     return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind,
10077                                                        InitsCopy);
10078   }
10079 
10080   if (DirectInit) {
10081     if (auto *IL = dyn_cast<InitListExpr>(Init))
10082       DeduceInits = IL->inits();
10083   }
10084 
10085   // Deduction only works if we have exactly one source expression.
10086   if (DeduceInits.empty()) {
10087     // It isn't possible to write this directly, but it is possible to
10088     // end up in this situation with "auto x(some_pack...);"
10089     Diag(Init->getLocStart(), IsInitCapture
10090                                   ? diag::err_init_capture_no_expression
10091                                   : diag::err_auto_var_init_no_expression)
10092         << VN << Type << Range;
10093     return QualType();
10094   }
10095 
10096   if (DeduceInits.size() > 1) {
10097     Diag(DeduceInits[1]->getLocStart(),
10098          IsInitCapture ? diag::err_init_capture_multiple_expressions
10099                        : diag::err_auto_var_init_multiple_expressions)
10100         << VN << Type << Range;
10101     return QualType();
10102   }
10103 
10104   Expr *DeduceInit = DeduceInits[0];
10105   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
10106     Diag(Init->getLocStart(), IsInitCapture
10107                                   ? diag::err_init_capture_paren_braces
10108                                   : diag::err_auto_var_init_paren_braces)
10109         << isa<InitListExpr>(Init) << VN << Type << Range;
10110     return QualType();
10111   }
10112 
10113   // Expressions default to 'id' when we're in a debugger.
10114   bool DefaultedAnyToId = false;
10115   if (getLangOpts().DebuggerCastResultToId &&
10116       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
10117     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10118     if (Result.isInvalid()) {
10119       return QualType();
10120     }
10121     Init = Result.get();
10122     DefaultedAnyToId = true;
10123   }
10124 
10125   // C++ [dcl.decomp]p1:
10126   //   If the assignment-expression [...] has array type A and no ref-qualifier
10127   //   is present, e has type cv A
10128   if (VDecl && isa<DecompositionDecl>(VDecl) &&
10129       Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) &&
10130       DeduceInit->getType()->isConstantArrayType())
10131     return Context.getQualifiedType(DeduceInit->getType(),
10132                                     Type.getQualifiers());
10133 
10134   QualType DeducedType;
10135   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
10136     if (!IsInitCapture)
10137       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
10138     else if (isa<InitListExpr>(Init))
10139       Diag(Range.getBegin(),
10140            diag::err_init_capture_deduction_failure_from_init_list)
10141           << VN
10142           << (DeduceInit->getType().isNull() ? TSI->getType()
10143                                              : DeduceInit->getType())
10144           << DeduceInit->getSourceRange();
10145     else
10146       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
10147           << VN << TSI->getType()
10148           << (DeduceInit->getType().isNull() ? TSI->getType()
10149                                              : DeduceInit->getType())
10150           << DeduceInit->getSourceRange();
10151   }
10152 
10153   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
10154   // 'id' instead of a specific object type prevents most of our usual
10155   // checks.
10156   // We only want to warn outside of template instantiations, though:
10157   // inside a template, the 'id' could have come from a parameter.
10158   if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture &&
10159       !DeducedType.isNull() && DeducedType->isObjCIdType()) {
10160     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
10161     Diag(Loc, diag::warn_auto_var_is_id) << VN << Range;
10162   }
10163 
10164   return DeducedType;
10165 }
10166 
10167 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit,
10168                                          Expr *Init) {
10169   QualType DeducedType = deduceVarTypeFromInitializer(
10170       VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(),
10171       VDecl->getSourceRange(), DirectInit, Init);
10172   if (DeducedType.isNull()) {
10173     VDecl->setInvalidDecl();
10174     return true;
10175   }
10176 
10177   VDecl->setType(DeducedType);
10178   assert(VDecl->isLinkageValid());
10179 
10180   // In ARC, infer lifetime.
10181   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
10182     VDecl->setInvalidDecl();
10183 
10184   // If this is a redeclaration, check that the type we just deduced matches
10185   // the previously declared type.
10186   if (VarDecl *Old = VDecl->getPreviousDecl()) {
10187     // We never need to merge the type, because we cannot form an incomplete
10188     // array of auto, nor deduce such a type.
10189     MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
10190   }
10191 
10192   // Check the deduced type is valid for a variable declaration.
10193   CheckVariableDeclarationType(VDecl);
10194   return VDecl->isInvalidDecl();
10195 }
10196 
10197 /// AddInitializerToDecl - Adds the initializer Init to the
10198 /// declaration dcl. If DirectInit is true, this is C++ direct
10199 /// initialization rather than copy initialization.
10200 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
10201   // If there is no declaration, there was an error parsing it.  Just ignore
10202   // the initializer.
10203   if (!RealDecl || RealDecl->isInvalidDecl()) {
10204     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
10205     return;
10206   }
10207 
10208   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
10209     // Pure-specifiers are handled in ActOnPureSpecifier.
10210     Diag(Method->getLocation(), diag::err_member_function_initialization)
10211       << Method->getDeclName() << Init->getSourceRange();
10212     Method->setInvalidDecl();
10213     return;
10214   }
10215 
10216   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
10217   if (!VDecl) {
10218     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
10219     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
10220     RealDecl->setInvalidDecl();
10221     return;
10222   }
10223 
10224   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
10225   if (VDecl->getType()->isUndeducedType()) {
10226     // Attempt typo correction early so that the type of the init expression can
10227     // be deduced based on the chosen correction if the original init contains a
10228     // TypoExpr.
10229     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
10230     if (!Res.isUsable()) {
10231       RealDecl->setInvalidDecl();
10232       return;
10233     }
10234     Init = Res.get();
10235 
10236     if (DeduceVariableDeclarationType(VDecl, DirectInit, Init))
10237       return;
10238   }
10239 
10240   // dllimport cannot be used on variable definitions.
10241   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
10242     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
10243     VDecl->setInvalidDecl();
10244     return;
10245   }
10246 
10247   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
10248     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
10249     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
10250     VDecl->setInvalidDecl();
10251     return;
10252   }
10253 
10254   if (!VDecl->getType()->isDependentType()) {
10255     // A definition must end up with a complete type, which means it must be
10256     // complete with the restriction that an array type might be completed by
10257     // the initializer; note that later code assumes this restriction.
10258     QualType BaseDeclType = VDecl->getType();
10259     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
10260       BaseDeclType = Array->getElementType();
10261     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
10262                             diag::err_typecheck_decl_incomplete_type)) {
10263       RealDecl->setInvalidDecl();
10264       return;
10265     }
10266 
10267     // The variable can not have an abstract class type.
10268     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
10269                                diag::err_abstract_type_in_decl,
10270                                AbstractVariableType))
10271       VDecl->setInvalidDecl();
10272   }
10273 
10274   // If adding the initializer will turn this declaration into a definition,
10275   // and we already have a definition for this variable, diagnose or otherwise
10276   // handle the situation.
10277   VarDecl *Def;
10278   if ((Def = VDecl->getDefinition()) && Def != VDecl &&
10279       (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) &&
10280       !VDecl->isThisDeclarationADemotedDefinition() &&
10281       checkVarDeclRedefinition(Def, VDecl))
10282     return;
10283 
10284   if (getLangOpts().CPlusPlus) {
10285     // C++ [class.static.data]p4
10286     //   If a static data member is of const integral or const
10287     //   enumeration type, its declaration in the class definition can
10288     //   specify a constant-initializer which shall be an integral
10289     //   constant expression (5.19). In that case, the member can appear
10290     //   in integral constant expressions. The member shall still be
10291     //   defined in a namespace scope if it is used in the program and the
10292     //   namespace scope definition shall not contain an initializer.
10293     //
10294     // We already performed a redefinition check above, but for static
10295     // data members we also need to check whether there was an in-class
10296     // declaration with an initializer.
10297     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
10298       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
10299           << VDecl->getDeclName();
10300       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
10301            diag::note_previous_initializer)
10302           << 0;
10303       return;
10304     }
10305 
10306     if (VDecl->hasLocalStorage())
10307       getCurFunction()->setHasBranchProtectedScope();
10308 
10309     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
10310       VDecl->setInvalidDecl();
10311       return;
10312     }
10313   }
10314 
10315   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
10316   // a kernel function cannot be initialized."
10317   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
10318     Diag(VDecl->getLocation(), diag::err_local_cant_init);
10319     VDecl->setInvalidDecl();
10320     return;
10321   }
10322 
10323   // Get the decls type and save a reference for later, since
10324   // CheckInitializerTypes may change it.
10325   QualType DclT = VDecl->getType(), SavT = DclT;
10326 
10327   // Expressions default to 'id' when we're in a debugger
10328   // and we are assigning it to a variable of Objective-C pointer type.
10329   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
10330       Init->getType() == Context.UnknownAnyTy) {
10331     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10332     if (Result.isInvalid()) {
10333       VDecl->setInvalidDecl();
10334       return;
10335     }
10336     Init = Result.get();
10337   }
10338 
10339   // Perform the initialization.
10340   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
10341   if (!VDecl->isInvalidDecl()) {
10342     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10343     InitializationKind Kind = InitializationKind::CreateForInit(
10344         VDecl->getLocation(), DirectInit, Init);
10345 
10346     MultiExprArg Args = Init;
10347     if (CXXDirectInit)
10348       Args = MultiExprArg(CXXDirectInit->getExprs(),
10349                           CXXDirectInit->getNumExprs());
10350 
10351     // Try to correct any TypoExprs in the initialization arguments.
10352     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
10353       ExprResult Res = CorrectDelayedTyposInExpr(
10354           Args[Idx], VDecl, [this, Entity, Kind](Expr *E) {
10355             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
10356             return Init.Failed() ? ExprError() : E;
10357           });
10358       if (Res.isInvalid()) {
10359         VDecl->setInvalidDecl();
10360       } else if (Res.get() != Args[Idx]) {
10361         Args[Idx] = Res.get();
10362       }
10363     }
10364     if (VDecl->isInvalidDecl())
10365       return;
10366 
10367     InitializationSequence InitSeq(*this, Entity, Kind, Args,
10368                                    /*TopLevelOfInitList=*/false,
10369                                    /*TreatUnavailableAsInvalid=*/false);
10370     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
10371     if (Result.isInvalid()) {
10372       VDecl->setInvalidDecl();
10373       return;
10374     }
10375 
10376     Init = Result.getAs<Expr>();
10377   }
10378 
10379   // Check for self-references within variable initializers.
10380   // Variables declared within a function/method body (except for references)
10381   // are handled by a dataflow analysis.
10382   if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
10383       VDecl->getType()->isReferenceType()) {
10384     CheckSelfReference(*this, RealDecl, Init, DirectInit);
10385   }
10386 
10387   // If the type changed, it means we had an incomplete type that was
10388   // completed by the initializer. For example:
10389   //   int ary[] = { 1, 3, 5 };
10390   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
10391   if (!VDecl->isInvalidDecl() && (DclT != SavT))
10392     VDecl->setType(DclT);
10393 
10394   if (!VDecl->isInvalidDecl()) {
10395     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
10396 
10397     if (VDecl->hasAttr<BlocksAttr>())
10398       checkRetainCycles(VDecl, Init);
10399 
10400     // It is safe to assign a weak reference into a strong variable.
10401     // Although this code can still have problems:
10402     //   id x = self.weakProp;
10403     //   id y = self.weakProp;
10404     // we do not warn to warn spuriously when 'x' and 'y' are on separate
10405     // paths through the function. This should be revisited if
10406     // -Wrepeated-use-of-weak is made flow-sensitive.
10407     if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
10408          VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) &&
10409         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
10410                          Init->getLocStart()))
10411       getCurFunction()->markSafeWeakUse(Init);
10412   }
10413 
10414   // The initialization is usually a full-expression.
10415   //
10416   // FIXME: If this is a braced initialization of an aggregate, it is not
10417   // an expression, and each individual field initializer is a separate
10418   // full-expression. For instance, in:
10419   //
10420   //   struct Temp { ~Temp(); };
10421   //   struct S { S(Temp); };
10422   //   struct T { S a, b; } t = { Temp(), Temp() }
10423   //
10424   // we should destroy the first Temp before constructing the second.
10425   ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
10426                                           false,
10427                                           VDecl->isConstexpr());
10428   if (Result.isInvalid()) {
10429     VDecl->setInvalidDecl();
10430     return;
10431   }
10432   Init = Result.get();
10433 
10434   // Attach the initializer to the decl.
10435   VDecl->setInit(Init);
10436 
10437   if (VDecl->isLocalVarDecl()) {
10438     // Don't check the initializer if the declaration is malformed.
10439     if (VDecl->isInvalidDecl()) {
10440       // do nothing
10441 
10442     // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized.
10443     // This is true even in OpenCL C++.
10444     } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) {
10445       CheckForConstantInitializer(Init, DclT);
10446 
10447     // Otherwise, C++ does not restrict the initializer.
10448     } else if (getLangOpts().CPlusPlus) {
10449       // do nothing
10450 
10451     // C99 6.7.8p4: All the expressions in an initializer for an object that has
10452     // static storage duration shall be constant expressions or string literals.
10453     } else if (VDecl->getStorageClass() == SC_Static) {
10454       CheckForConstantInitializer(Init, DclT);
10455 
10456     // C89 is stricter than C99 for aggregate initializers.
10457     // C89 6.5.7p3: All the expressions [...] in an initializer list
10458     // for an object that has aggregate or union type shall be
10459     // constant expressions.
10460     } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
10461                isa<InitListExpr>(Init)) {
10462       const Expr *Culprit;
10463       if (!Init->isConstantInitializer(Context, false, &Culprit)) {
10464         Diag(Culprit->getExprLoc(),
10465              diag::ext_aggregate_init_not_constant)
10466           << Culprit->getSourceRange();
10467       }
10468     }
10469   } else if (VDecl->isStaticDataMember() && !VDecl->isInline() &&
10470              VDecl->getLexicalDeclContext()->isRecord()) {
10471     // This is an in-class initialization for a static data member, e.g.,
10472     //
10473     // struct S {
10474     //   static const int value = 17;
10475     // };
10476 
10477     // C++ [class.mem]p4:
10478     //   A member-declarator can contain a constant-initializer only
10479     //   if it declares a static member (9.4) of const integral or
10480     //   const enumeration type, see 9.4.2.
10481     //
10482     // C++11 [class.static.data]p3:
10483     //   If a non-volatile non-inline const static data member is of integral
10484     //   or enumeration type, its declaration in the class definition can
10485     //   specify a brace-or-equal-initializer in which every initializer-clause
10486     //   that is an assignment-expression is a constant expression. A static
10487     //   data member of literal type can be declared in the class definition
10488     //   with the constexpr specifier; if so, its declaration shall specify a
10489     //   brace-or-equal-initializer in which every initializer-clause that is
10490     //   an assignment-expression is a constant expression.
10491 
10492     // Do nothing on dependent types.
10493     if (DclT->isDependentType()) {
10494 
10495     // Allow any 'static constexpr' members, whether or not they are of literal
10496     // type. We separately check that every constexpr variable is of literal
10497     // type.
10498     } else if (VDecl->isConstexpr()) {
10499 
10500     // Require constness.
10501     } else if (!DclT.isConstQualified()) {
10502       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
10503         << Init->getSourceRange();
10504       VDecl->setInvalidDecl();
10505 
10506     // We allow integer constant expressions in all cases.
10507     } else if (DclT->isIntegralOrEnumerationType()) {
10508       // Check whether the expression is a constant expression.
10509       SourceLocation Loc;
10510       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
10511         // In C++11, a non-constexpr const static data member with an
10512         // in-class initializer cannot be volatile.
10513         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
10514       else if (Init->isValueDependent())
10515         ; // Nothing to check.
10516       else if (Init->isIntegerConstantExpr(Context, &Loc))
10517         ; // Ok, it's an ICE!
10518       else if (Init->isEvaluatable(Context)) {
10519         // If we can constant fold the initializer through heroics, accept it,
10520         // but report this as a use of an extension for -pedantic.
10521         Diag(Loc, diag::ext_in_class_initializer_non_constant)
10522           << Init->getSourceRange();
10523       } else {
10524         // Otherwise, this is some crazy unknown case.  Report the issue at the
10525         // location provided by the isIntegerConstantExpr failed check.
10526         Diag(Loc, diag::err_in_class_initializer_non_constant)
10527           << Init->getSourceRange();
10528         VDecl->setInvalidDecl();
10529       }
10530 
10531     // We allow foldable floating-point constants as an extension.
10532     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
10533       // In C++98, this is a GNU extension. In C++11, it is not, but we support
10534       // it anyway and provide a fixit to add the 'constexpr'.
10535       if (getLangOpts().CPlusPlus11) {
10536         Diag(VDecl->getLocation(),
10537              diag::ext_in_class_initializer_float_type_cxx11)
10538             << DclT << Init->getSourceRange();
10539         Diag(VDecl->getLocStart(),
10540              diag::note_in_class_initializer_float_type_cxx11)
10541             << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10542       } else {
10543         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
10544           << DclT << Init->getSourceRange();
10545 
10546         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
10547           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
10548             << Init->getSourceRange();
10549           VDecl->setInvalidDecl();
10550         }
10551       }
10552 
10553     // Suggest adding 'constexpr' in C++11 for literal types.
10554     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
10555       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
10556         << DclT << Init->getSourceRange()
10557         << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10558       VDecl->setConstexpr(true);
10559 
10560     } else {
10561       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
10562         << DclT << Init->getSourceRange();
10563       VDecl->setInvalidDecl();
10564     }
10565   } else if (VDecl->isFileVarDecl()) {
10566     // In C, extern is typically used to avoid tentative definitions when
10567     // declaring variables in headers, but adding an intializer makes it a
10568     // defintion. This is somewhat confusing, so GCC and Clang both warn on it.
10569     // In C++, extern is often used to give implictly static const variables
10570     // external linkage, so don't warn in that case. If selectany is present,
10571     // this might be header code intended for C and C++ inclusion, so apply the
10572     // C++ rules.
10573     if (VDecl->getStorageClass() == SC_Extern &&
10574         ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) ||
10575          !Context.getBaseElementType(VDecl->getType()).isConstQualified()) &&
10576         !(getLangOpts().CPlusPlus && VDecl->isExternC()) &&
10577         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
10578       Diag(VDecl->getLocation(), diag::warn_extern_init);
10579 
10580     // C99 6.7.8p4. All file scoped initializers need to be constant.
10581     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
10582       CheckForConstantInitializer(Init, DclT);
10583   }
10584 
10585   // We will represent direct-initialization similarly to copy-initialization:
10586   //    int x(1);  -as-> int x = 1;
10587   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
10588   //
10589   // Clients that want to distinguish between the two forms, can check for
10590   // direct initializer using VarDecl::getInitStyle().
10591   // A major benefit is that clients that don't particularly care about which
10592   // exactly form was it (like the CodeGen) can handle both cases without
10593   // special case code.
10594 
10595   // C++ 8.5p11:
10596   // The form of initialization (using parentheses or '=') is generally
10597   // insignificant, but does matter when the entity being initialized has a
10598   // class type.
10599   if (CXXDirectInit) {
10600     assert(DirectInit && "Call-style initializer must be direct init.");
10601     VDecl->setInitStyle(VarDecl::CallInit);
10602   } else if (DirectInit) {
10603     // This must be list-initialization. No other way is direct-initialization.
10604     VDecl->setInitStyle(VarDecl::ListInit);
10605   }
10606 
10607   CheckCompleteVariableDeclaration(VDecl);
10608 }
10609 
10610 /// ActOnInitializerError - Given that there was an error parsing an
10611 /// initializer for the given declaration, try to return to some form
10612 /// of sanity.
10613 void Sema::ActOnInitializerError(Decl *D) {
10614   // Our main concern here is re-establishing invariants like "a
10615   // variable's type is either dependent or complete".
10616   if (!D || D->isInvalidDecl()) return;
10617 
10618   VarDecl *VD = dyn_cast<VarDecl>(D);
10619   if (!VD) return;
10620 
10621   // Bindings are not usable if we can't make sense of the initializer.
10622   if (auto *DD = dyn_cast<DecompositionDecl>(D))
10623     for (auto *BD : DD->bindings())
10624       BD->setInvalidDecl();
10625 
10626   // Auto types are meaningless if we can't make sense of the initializer.
10627   if (ParsingInitForAutoVars.count(D)) {
10628     D->setInvalidDecl();
10629     return;
10630   }
10631 
10632   QualType Ty = VD->getType();
10633   if (Ty->isDependentType()) return;
10634 
10635   // Require a complete type.
10636   if (RequireCompleteType(VD->getLocation(),
10637                           Context.getBaseElementType(Ty),
10638                           diag::err_typecheck_decl_incomplete_type)) {
10639     VD->setInvalidDecl();
10640     return;
10641   }
10642 
10643   // Require a non-abstract type.
10644   if (RequireNonAbstractType(VD->getLocation(), Ty,
10645                              diag::err_abstract_type_in_decl,
10646                              AbstractVariableType)) {
10647     VD->setInvalidDecl();
10648     return;
10649   }
10650 
10651   // Don't bother complaining about constructors or destructors,
10652   // though.
10653 }
10654 
10655 void Sema::ActOnUninitializedDecl(Decl *RealDecl) {
10656   // If there is no declaration, there was an error parsing it. Just ignore it.
10657   if (!RealDecl)
10658     return;
10659 
10660   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
10661     QualType Type = Var->getType();
10662 
10663     // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory.
10664     if (isa<DecompositionDecl>(RealDecl)) {
10665       Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var;
10666       Var->setInvalidDecl();
10667       return;
10668     }
10669 
10670     if (Type->isUndeducedType() &&
10671         DeduceVariableDeclarationType(Var, false, nullptr))
10672       return;
10673 
10674     // C++11 [class.static.data]p3: A static data member can be declared with
10675     // the constexpr specifier; if so, its declaration shall specify
10676     // a brace-or-equal-initializer.
10677     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
10678     // the definition of a variable [...] or the declaration of a static data
10679     // member.
10680     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() &&
10681         !Var->isThisDeclarationADemotedDefinition()) {
10682       if (Var->isStaticDataMember()) {
10683         // C++1z removes the relevant rule; the in-class declaration is always
10684         // a definition there.
10685         if (!getLangOpts().CPlusPlus17) {
10686           Diag(Var->getLocation(),
10687                diag::err_constexpr_static_mem_var_requires_init)
10688             << Var->getDeclName();
10689           Var->setInvalidDecl();
10690           return;
10691         }
10692       } else {
10693         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
10694         Var->setInvalidDecl();
10695         return;
10696       }
10697     }
10698 
10699     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
10700     // be initialized.
10701     if (!Var->isInvalidDecl() &&
10702         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
10703         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
10704       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
10705       Var->setInvalidDecl();
10706       return;
10707     }
10708 
10709     switch (Var->isThisDeclarationADefinition()) {
10710     case VarDecl::Definition:
10711       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
10712         break;
10713 
10714       // We have an out-of-line definition of a static data member
10715       // that has an in-class initializer, so we type-check this like
10716       // a declaration.
10717       //
10718       LLVM_FALLTHROUGH;
10719 
10720     case VarDecl::DeclarationOnly:
10721       // It's only a declaration.
10722 
10723       // Block scope. C99 6.7p7: If an identifier for an object is
10724       // declared with no linkage (C99 6.2.2p6), the type for the
10725       // object shall be complete.
10726       if (!Type->isDependentType() && Var->isLocalVarDecl() &&
10727           !Var->hasLinkage() && !Var->isInvalidDecl() &&
10728           RequireCompleteType(Var->getLocation(), Type,
10729                               diag::err_typecheck_decl_incomplete_type))
10730         Var->setInvalidDecl();
10731 
10732       // Make sure that the type is not abstract.
10733       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
10734           RequireNonAbstractType(Var->getLocation(), Type,
10735                                  diag::err_abstract_type_in_decl,
10736                                  AbstractVariableType))
10737         Var->setInvalidDecl();
10738       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
10739           Var->getStorageClass() == SC_PrivateExtern) {
10740         Diag(Var->getLocation(), diag::warn_private_extern);
10741         Diag(Var->getLocation(), diag::note_private_extern);
10742       }
10743 
10744       return;
10745 
10746     case VarDecl::TentativeDefinition:
10747       // File scope. C99 6.9.2p2: A declaration of an identifier for an
10748       // object that has file scope without an initializer, and without a
10749       // storage-class specifier or with the storage-class specifier "static",
10750       // constitutes a tentative definition. Note: A tentative definition with
10751       // external linkage is valid (C99 6.2.2p5).
10752       if (!Var->isInvalidDecl()) {
10753         if (const IncompleteArrayType *ArrayT
10754                                     = Context.getAsIncompleteArrayType(Type)) {
10755           if (RequireCompleteType(Var->getLocation(),
10756                                   ArrayT->getElementType(),
10757                                   diag::err_illegal_decl_array_incomplete_type))
10758             Var->setInvalidDecl();
10759         } else if (Var->getStorageClass() == SC_Static) {
10760           // C99 6.9.2p3: If the declaration of an identifier for an object is
10761           // a tentative definition and has internal linkage (C99 6.2.2p3), the
10762           // declared type shall not be an incomplete type.
10763           // NOTE: code such as the following
10764           //     static struct s;
10765           //     struct s { int a; };
10766           // is accepted by gcc. Hence here we issue a warning instead of
10767           // an error and we do not invalidate the static declaration.
10768           // NOTE: to avoid multiple warnings, only check the first declaration.
10769           if (Var->isFirstDecl())
10770             RequireCompleteType(Var->getLocation(), Type,
10771                                 diag::ext_typecheck_decl_incomplete_type);
10772         }
10773       }
10774 
10775       // Record the tentative definition; we're done.
10776       if (!Var->isInvalidDecl())
10777         TentativeDefinitions.push_back(Var);
10778       return;
10779     }
10780 
10781     // Provide a specific diagnostic for uninitialized variable
10782     // definitions with incomplete array type.
10783     if (Type->isIncompleteArrayType()) {
10784       Diag(Var->getLocation(),
10785            diag::err_typecheck_incomplete_array_needs_initializer);
10786       Var->setInvalidDecl();
10787       return;
10788     }
10789 
10790     // Provide a specific diagnostic for uninitialized variable
10791     // definitions with reference type.
10792     if (Type->isReferenceType()) {
10793       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
10794         << Var->getDeclName()
10795         << SourceRange(Var->getLocation(), Var->getLocation());
10796       Var->setInvalidDecl();
10797       return;
10798     }
10799 
10800     // Do not attempt to type-check the default initializer for a
10801     // variable with dependent type.
10802     if (Type->isDependentType())
10803       return;
10804 
10805     if (Var->isInvalidDecl())
10806       return;
10807 
10808     if (!Var->hasAttr<AliasAttr>()) {
10809       if (RequireCompleteType(Var->getLocation(),
10810                               Context.getBaseElementType(Type),
10811                               diag::err_typecheck_decl_incomplete_type)) {
10812         Var->setInvalidDecl();
10813         return;
10814       }
10815     } else {
10816       return;
10817     }
10818 
10819     // The variable can not have an abstract class type.
10820     if (RequireNonAbstractType(Var->getLocation(), Type,
10821                                diag::err_abstract_type_in_decl,
10822                                AbstractVariableType)) {
10823       Var->setInvalidDecl();
10824       return;
10825     }
10826 
10827     // Check for jumps past the implicit initializer.  C++0x
10828     // clarifies that this applies to a "variable with automatic
10829     // storage duration", not a "local variable".
10830     // C++11 [stmt.dcl]p3
10831     //   A program that jumps from a point where a variable with automatic
10832     //   storage duration is not in scope to a point where it is in scope is
10833     //   ill-formed unless the variable has scalar type, class type with a
10834     //   trivial default constructor and a trivial destructor, a cv-qualified
10835     //   version of one of these types, or an array of one of the preceding
10836     //   types and is declared without an initializer.
10837     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
10838       if (const RecordType *Record
10839             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
10840         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
10841         // Mark the function for further checking even if the looser rules of
10842         // C++11 do not require such checks, so that we can diagnose
10843         // incompatibilities with C++98.
10844         if (!CXXRecord->isPOD())
10845           getCurFunction()->setHasBranchProtectedScope();
10846       }
10847     }
10848 
10849     // C++03 [dcl.init]p9:
10850     //   If no initializer is specified for an object, and the
10851     //   object is of (possibly cv-qualified) non-POD class type (or
10852     //   array thereof), the object shall be default-initialized; if
10853     //   the object is of const-qualified type, the underlying class
10854     //   type shall have a user-declared default
10855     //   constructor. Otherwise, if no initializer is specified for
10856     //   a non- static object, the object and its subobjects, if
10857     //   any, have an indeterminate initial value); if the object
10858     //   or any of its subobjects are of const-qualified type, the
10859     //   program is ill-formed.
10860     // C++0x [dcl.init]p11:
10861     //   If no initializer is specified for an object, the object is
10862     //   default-initialized; [...].
10863     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
10864     InitializationKind Kind
10865       = InitializationKind::CreateDefault(Var->getLocation());
10866 
10867     InitializationSequence InitSeq(*this, Entity, Kind, None);
10868     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
10869     if (Init.isInvalid())
10870       Var->setInvalidDecl();
10871     else if (Init.get()) {
10872       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
10873       // This is important for template substitution.
10874       Var->setInitStyle(VarDecl::CallInit);
10875     }
10876 
10877     CheckCompleteVariableDeclaration(Var);
10878   }
10879 }
10880 
10881 void Sema::ActOnCXXForRangeDecl(Decl *D) {
10882   // If there is no declaration, there was an error parsing it. Ignore it.
10883   if (!D)
10884     return;
10885 
10886   VarDecl *VD = dyn_cast<VarDecl>(D);
10887   if (!VD) {
10888     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
10889     D->setInvalidDecl();
10890     return;
10891   }
10892 
10893   VD->setCXXForRangeDecl(true);
10894 
10895   // for-range-declaration cannot be given a storage class specifier.
10896   int Error = -1;
10897   switch (VD->getStorageClass()) {
10898   case SC_None:
10899     break;
10900   case SC_Extern:
10901     Error = 0;
10902     break;
10903   case SC_Static:
10904     Error = 1;
10905     break;
10906   case SC_PrivateExtern:
10907     Error = 2;
10908     break;
10909   case SC_Auto:
10910     Error = 3;
10911     break;
10912   case SC_Register:
10913     Error = 4;
10914     break;
10915   }
10916   if (Error != -1) {
10917     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
10918       << VD->getDeclName() << Error;
10919     D->setInvalidDecl();
10920   }
10921 }
10922 
10923 StmtResult
10924 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
10925                                  IdentifierInfo *Ident,
10926                                  ParsedAttributes &Attrs,
10927                                  SourceLocation AttrEnd) {
10928   // C++1y [stmt.iter]p1:
10929   //   A range-based for statement of the form
10930   //      for ( for-range-identifier : for-range-initializer ) statement
10931   //   is equivalent to
10932   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
10933   DeclSpec DS(Attrs.getPool().getFactory());
10934 
10935   const char *PrevSpec;
10936   unsigned DiagID;
10937   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
10938                      getPrintingPolicy());
10939 
10940   Declarator D(DS, DeclaratorContext::ForContext);
10941   D.SetIdentifier(Ident, IdentLoc);
10942   D.takeAttributes(Attrs, AttrEnd);
10943 
10944   ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory());
10945   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
10946                 EmptyAttrs, IdentLoc);
10947   Decl *Var = ActOnDeclarator(S, D);
10948   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
10949   FinalizeDeclaration(Var);
10950   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
10951                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
10952 }
10953 
10954 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
10955   if (var->isInvalidDecl()) return;
10956 
10957   if (getLangOpts().OpenCL) {
10958     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
10959     // initialiser
10960     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
10961         !var->hasInit()) {
10962       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
10963           << 1 /*Init*/;
10964       var->setInvalidDecl();
10965       return;
10966     }
10967   }
10968 
10969   // In Objective-C, don't allow jumps past the implicit initialization of a
10970   // local retaining variable.
10971   if (getLangOpts().ObjC1 &&
10972       var->hasLocalStorage()) {
10973     switch (var->getType().getObjCLifetime()) {
10974     case Qualifiers::OCL_None:
10975     case Qualifiers::OCL_ExplicitNone:
10976     case Qualifiers::OCL_Autoreleasing:
10977       break;
10978 
10979     case Qualifiers::OCL_Weak:
10980     case Qualifiers::OCL_Strong:
10981       getCurFunction()->setHasBranchProtectedScope();
10982       break;
10983     }
10984   }
10985 
10986   // Warn about externally-visible variables being defined without a
10987   // prior declaration.  We only want to do this for global
10988   // declarations, but we also specifically need to avoid doing it for
10989   // class members because the linkage of an anonymous class can
10990   // change if it's later given a typedef name.
10991   if (var->isThisDeclarationADefinition() &&
10992       var->getDeclContext()->getRedeclContext()->isFileContext() &&
10993       var->isExternallyVisible() && var->hasLinkage() &&
10994       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
10995                                   var->getLocation())) {
10996     // Find a previous declaration that's not a definition.
10997     VarDecl *prev = var->getPreviousDecl();
10998     while (prev && prev->isThisDeclarationADefinition())
10999       prev = prev->getPreviousDecl();
11000 
11001     if (!prev)
11002       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
11003   }
11004 
11005   // Cache the result of checking for constant initialization.
11006   Optional<bool> CacheHasConstInit;
11007   const Expr *CacheCulprit;
11008   auto checkConstInit = [&]() mutable {
11009     if (!CacheHasConstInit)
11010       CacheHasConstInit = var->getInit()->isConstantInitializer(
11011             Context, var->getType()->isReferenceType(), &CacheCulprit);
11012     return *CacheHasConstInit;
11013   };
11014 
11015   if (var->getTLSKind() == VarDecl::TLS_Static) {
11016     if (var->getType().isDestructedType()) {
11017       // GNU C++98 edits for __thread, [basic.start.term]p3:
11018       //   The type of an object with thread storage duration shall not
11019       //   have a non-trivial destructor.
11020       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
11021       if (getLangOpts().CPlusPlus11)
11022         Diag(var->getLocation(), diag::note_use_thread_local);
11023     } else if (getLangOpts().CPlusPlus && var->hasInit()) {
11024       if (!checkConstInit()) {
11025         // GNU C++98 edits for __thread, [basic.start.init]p4:
11026         //   An object of thread storage duration shall not require dynamic
11027         //   initialization.
11028         // FIXME: Need strict checking here.
11029         Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init)
11030           << CacheCulprit->getSourceRange();
11031         if (getLangOpts().CPlusPlus11)
11032           Diag(var->getLocation(), diag::note_use_thread_local);
11033       }
11034     }
11035   }
11036 
11037   // Apply section attributes and pragmas to global variables.
11038   bool GlobalStorage = var->hasGlobalStorage();
11039   if (GlobalStorage && var->isThisDeclarationADefinition() &&
11040       !inTemplateInstantiation()) {
11041     PragmaStack<StringLiteral *> *Stack = nullptr;
11042     int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read;
11043     if (var->getType().isConstQualified())
11044       Stack = &ConstSegStack;
11045     else if (!var->getInit()) {
11046       Stack = &BSSSegStack;
11047       SectionFlags |= ASTContext::PSF_Write;
11048     } else {
11049       Stack = &DataSegStack;
11050       SectionFlags |= ASTContext::PSF_Write;
11051     }
11052     if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) {
11053       var->addAttr(SectionAttr::CreateImplicit(
11054           Context, SectionAttr::Declspec_allocate,
11055           Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation));
11056     }
11057     if (const SectionAttr *SA = var->getAttr<SectionAttr>())
11058       if (UnifySection(SA->getName(), SectionFlags, var))
11059         var->dropAttr<SectionAttr>();
11060 
11061     // Apply the init_seg attribute if this has an initializer.  If the
11062     // initializer turns out to not be dynamic, we'll end up ignoring this
11063     // attribute.
11064     if (CurInitSeg && var->getInit())
11065       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
11066                                                CurInitSegLoc));
11067   }
11068 
11069   // All the following checks are C++ only.
11070   if (!getLangOpts().CPlusPlus) {
11071       // If this variable must be emitted, add it as an initializer for the
11072       // current module.
11073      if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11074        Context.addModuleInitializer(ModuleScopes.back().Module, var);
11075      return;
11076   }
11077 
11078   if (auto *DD = dyn_cast<DecompositionDecl>(var))
11079     CheckCompleteDecompositionDeclaration(DD);
11080 
11081   QualType type = var->getType();
11082   if (type->isDependentType()) return;
11083 
11084   // __block variables might require us to capture a copy-initializer.
11085   if (var->hasAttr<BlocksAttr>()) {
11086     // It's currently invalid to ever have a __block variable with an
11087     // array type; should we diagnose that here?
11088 
11089     // Regardless, we don't want to ignore array nesting when
11090     // constructing this copy.
11091     if (type->isStructureOrClassType()) {
11092       EnterExpressionEvaluationContext scope(
11093           *this, ExpressionEvaluationContext::PotentiallyEvaluated);
11094       SourceLocation poi = var->getLocation();
11095       Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
11096       ExprResult result
11097         = PerformMoveOrCopyInitialization(
11098             InitializedEntity::InitializeBlock(poi, type, false),
11099             var, var->getType(), varRef, /*AllowNRVO=*/true);
11100       if (!result.isInvalid()) {
11101         result = MaybeCreateExprWithCleanups(result);
11102         Expr *init = result.getAs<Expr>();
11103         Context.setBlockVarCopyInits(var, init);
11104       }
11105     }
11106   }
11107 
11108   Expr *Init = var->getInit();
11109   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
11110   QualType baseType = Context.getBaseElementType(type);
11111 
11112   if (Init && !Init->isValueDependent()) {
11113     if (var->isConstexpr()) {
11114       SmallVector<PartialDiagnosticAt, 8> Notes;
11115       if (!var->evaluateValue(Notes) || !var->isInitICE()) {
11116         SourceLocation DiagLoc = var->getLocation();
11117         // If the note doesn't add any useful information other than a source
11118         // location, fold it into the primary diagnostic.
11119         if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11120               diag::note_invalid_subexpr_in_const_expr) {
11121           DiagLoc = Notes[0].first;
11122           Notes.clear();
11123         }
11124         Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
11125           << var << Init->getSourceRange();
11126         for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11127           Diag(Notes[I].first, Notes[I].second);
11128       }
11129     } else if (var->isUsableInConstantExpressions(Context)) {
11130       // Check whether the initializer of a const variable of integral or
11131       // enumeration type is an ICE now, since we can't tell whether it was
11132       // initialized by a constant expression if we check later.
11133       var->checkInitIsICE();
11134     }
11135 
11136     // Don't emit further diagnostics about constexpr globals since they
11137     // were just diagnosed.
11138     if (!var->isConstexpr() && GlobalStorage &&
11139             var->hasAttr<RequireConstantInitAttr>()) {
11140       // FIXME: Need strict checking in C++03 here.
11141       bool DiagErr = getLangOpts().CPlusPlus11
11142           ? !var->checkInitIsICE() : !checkConstInit();
11143       if (DiagErr) {
11144         auto attr = var->getAttr<RequireConstantInitAttr>();
11145         Diag(var->getLocation(), diag::err_require_constant_init_failed)
11146           << Init->getSourceRange();
11147         Diag(attr->getLocation(), diag::note_declared_required_constant_init_here)
11148           << attr->getRange();
11149         if (getLangOpts().CPlusPlus11) {
11150           APValue Value;
11151           SmallVector<PartialDiagnosticAt, 8> Notes;
11152           Init->EvaluateAsInitializer(Value, getASTContext(), var, Notes);
11153           for (auto &it : Notes)
11154             Diag(it.first, it.second);
11155         } else {
11156           Diag(CacheCulprit->getExprLoc(),
11157                diag::note_invalid_subexpr_in_const_expr)
11158               << CacheCulprit->getSourceRange();
11159         }
11160       }
11161     }
11162     else if (!var->isConstexpr() && IsGlobal &&
11163              !getDiagnostics().isIgnored(diag::warn_global_constructor,
11164                                     var->getLocation())) {
11165       // Warn about globals which don't have a constant initializer.  Don't
11166       // warn about globals with a non-trivial destructor because we already
11167       // warned about them.
11168       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
11169       if (!(RD && !RD->hasTrivialDestructor())) {
11170         if (!checkConstInit())
11171           Diag(var->getLocation(), diag::warn_global_constructor)
11172             << Init->getSourceRange();
11173       }
11174     }
11175   }
11176 
11177   // Require the destructor.
11178   if (const RecordType *recordType = baseType->getAs<RecordType>())
11179     FinalizeVarWithDestructor(var, recordType);
11180 
11181   // If this variable must be emitted, add it as an initializer for the current
11182   // module.
11183   if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11184     Context.addModuleInitializer(ModuleScopes.back().Module, var);
11185 }
11186 
11187 /// \brief Determines if a variable's alignment is dependent.
11188 static bool hasDependentAlignment(VarDecl *VD) {
11189   if (VD->getType()->isDependentType())
11190     return true;
11191   for (auto *I : VD->specific_attrs<AlignedAttr>())
11192     if (I->isAlignmentDependent())
11193       return true;
11194   return false;
11195 }
11196 
11197 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
11198 /// any semantic actions necessary after any initializer has been attached.
11199 void Sema::FinalizeDeclaration(Decl *ThisDecl) {
11200   // Note that we are no longer parsing the initializer for this declaration.
11201   ParsingInitForAutoVars.erase(ThisDecl);
11202 
11203   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
11204   if (!VD)
11205     return;
11206 
11207   // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active
11208   if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() &&
11209       !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) {
11210     if (PragmaClangBSSSection.Valid)
11211       VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit(Context,
11212                                                             PragmaClangBSSSection.SectionName,
11213                                                             PragmaClangBSSSection.PragmaLocation));
11214     if (PragmaClangDataSection.Valid)
11215       VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit(Context,
11216                                                              PragmaClangDataSection.SectionName,
11217                                                              PragmaClangDataSection.PragmaLocation));
11218     if (PragmaClangRodataSection.Valid)
11219       VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit(Context,
11220                                                                PragmaClangRodataSection.SectionName,
11221                                                                PragmaClangRodataSection.PragmaLocation));
11222   }
11223 
11224   if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) {
11225     for (auto *BD : DD->bindings()) {
11226       FinalizeDeclaration(BD);
11227     }
11228   }
11229 
11230   checkAttributesAfterMerging(*this, *VD);
11231 
11232   // Perform TLS alignment check here after attributes attached to the variable
11233   // which may affect the alignment have been processed. Only perform the check
11234   // if the target has a maximum TLS alignment (zero means no constraints).
11235   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
11236     // Protect the check so that it's not performed on dependent types and
11237     // dependent alignments (we can't determine the alignment in that case).
11238     if (VD->getTLSKind() && !hasDependentAlignment(VD) &&
11239         !VD->isInvalidDecl()) {
11240       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
11241       if (Context.getDeclAlign(VD) > MaxAlignChars) {
11242         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
11243           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
11244           << (unsigned)MaxAlignChars.getQuantity();
11245       }
11246     }
11247   }
11248 
11249   if (VD->isStaticLocal()) {
11250     if (FunctionDecl *FD =
11251             dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) {
11252       // Static locals inherit dll attributes from their function.
11253       if (Attr *A = getDLLAttr(FD)) {
11254         auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
11255         NewAttr->setInherited(true);
11256         VD->addAttr(NewAttr);
11257       }
11258       // CUDA E.2.9.4: Within the body of a __device__ or __global__
11259       // function, only __shared__ variables may be declared with
11260       // static storage class.
11261       if (getLangOpts().CUDA && !VD->hasAttr<CUDASharedAttr>() &&
11262           CUDADiagIfDeviceCode(VD->getLocation(),
11263                                diag::err_device_static_local_var)
11264               << CurrentCUDATarget())
11265         VD->setInvalidDecl();
11266     }
11267   }
11268 
11269   // Perform check for initializers of device-side global variables.
11270   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
11271   // 7.5). We must also apply the same checks to all __shared__
11272   // variables whether they are local or not. CUDA also allows
11273   // constant initializers for __constant__ and __device__ variables.
11274   if (getLangOpts().CUDA) {
11275     const Expr *Init = VD->getInit();
11276     if (Init && VD->hasGlobalStorage()) {
11277       if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
11278           VD->hasAttr<CUDASharedAttr>()) {
11279         assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>());
11280         bool AllowedInit = false;
11281         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
11282           AllowedInit =
11283               isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
11284         // We'll allow constant initializers even if it's a non-empty
11285         // constructor according to CUDA rules. This deviates from NVCC,
11286         // but allows us to handle things like constexpr constructors.
11287         if (!AllowedInit &&
11288             (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>()))
11289           AllowedInit = VD->getInit()->isConstantInitializer(
11290               Context, VD->getType()->isReferenceType());
11291 
11292         // Also make sure that destructor, if there is one, is empty.
11293         if (AllowedInit)
11294           if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl())
11295             AllowedInit =
11296                 isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor());
11297 
11298         if (!AllowedInit) {
11299           Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
11300                                       ? diag::err_shared_var_init
11301                                       : diag::err_dynamic_var_init)
11302               << Init->getSourceRange();
11303           VD->setInvalidDecl();
11304         }
11305       } else {
11306         // This is a host-side global variable.  Check that the initializer is
11307         // callable from the host side.
11308         const FunctionDecl *InitFn = nullptr;
11309         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) {
11310           InitFn = CE->getConstructor();
11311         } else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) {
11312           InitFn = CE->getDirectCallee();
11313         }
11314         if (InitFn) {
11315           CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn);
11316           if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) {
11317             Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer)
11318                 << InitFnTarget << InitFn;
11319             Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn;
11320             VD->setInvalidDecl();
11321           }
11322         }
11323       }
11324     }
11325   }
11326 
11327   // Grab the dllimport or dllexport attribute off of the VarDecl.
11328   const InheritableAttr *DLLAttr = getDLLAttr(VD);
11329 
11330   // Imported static data members cannot be defined out-of-line.
11331   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
11332     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
11333         VD->isThisDeclarationADefinition()) {
11334       // We allow definitions of dllimport class template static data members
11335       // with a warning.
11336       CXXRecordDecl *Context =
11337         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
11338       bool IsClassTemplateMember =
11339           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
11340           Context->getDescribedClassTemplate();
11341 
11342       Diag(VD->getLocation(),
11343            IsClassTemplateMember
11344                ? diag::warn_attribute_dllimport_static_field_definition
11345                : diag::err_attribute_dllimport_static_field_definition);
11346       Diag(IA->getLocation(), diag::note_attribute);
11347       if (!IsClassTemplateMember)
11348         VD->setInvalidDecl();
11349     }
11350   }
11351 
11352   // dllimport/dllexport variables cannot be thread local, their TLS index
11353   // isn't exported with the variable.
11354   if (DLLAttr && VD->getTLSKind()) {
11355     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
11356     if (F && getDLLAttr(F)) {
11357       assert(VD->isStaticLocal());
11358       // But if this is a static local in a dlimport/dllexport function, the
11359       // function will never be inlined, which means the var would never be
11360       // imported, so having it marked import/export is safe.
11361     } else {
11362       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
11363                                                                     << DLLAttr;
11364       VD->setInvalidDecl();
11365     }
11366   }
11367 
11368   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
11369     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
11370       Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
11371       VD->dropAttr<UsedAttr>();
11372     }
11373   }
11374 
11375   const DeclContext *DC = VD->getDeclContext();
11376   // If there's a #pragma GCC visibility in scope, and this isn't a class
11377   // member, set the visibility of this variable.
11378   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
11379     AddPushedVisibilityAttribute(VD);
11380 
11381   // FIXME: Warn on unused var template partial specializations.
11382   if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD))
11383     MarkUnusedFileScopedDecl(VD);
11384 
11385   // Now we have parsed the initializer and can update the table of magic
11386   // tag values.
11387   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
11388       !VD->getType()->isIntegralOrEnumerationType())
11389     return;
11390 
11391   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
11392     const Expr *MagicValueExpr = VD->getInit();
11393     if (!MagicValueExpr) {
11394       continue;
11395     }
11396     llvm::APSInt MagicValueInt;
11397     if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
11398       Diag(I->getRange().getBegin(),
11399            diag::err_type_tag_for_datatype_not_ice)
11400         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11401       continue;
11402     }
11403     if (MagicValueInt.getActiveBits() > 64) {
11404       Diag(I->getRange().getBegin(),
11405            diag::err_type_tag_for_datatype_too_large)
11406         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11407       continue;
11408     }
11409     uint64_t MagicValue = MagicValueInt.getZExtValue();
11410     RegisterTypeTagForDatatype(I->getArgumentKind(),
11411                                MagicValue,
11412                                I->getMatchingCType(),
11413                                I->getLayoutCompatible(),
11414                                I->getMustBeNull());
11415   }
11416 }
11417 
11418 static bool hasDeducedAuto(DeclaratorDecl *DD) {
11419   auto *VD = dyn_cast<VarDecl>(DD);
11420   return VD && !VD->getType()->hasAutoForTrailingReturnType();
11421 }
11422 
11423 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
11424                                                    ArrayRef<Decl *> Group) {
11425   SmallVector<Decl*, 8> Decls;
11426 
11427   if (DS.isTypeSpecOwned())
11428     Decls.push_back(DS.getRepAsDecl());
11429 
11430   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
11431   DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr;
11432   bool DiagnosedMultipleDecomps = false;
11433   DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr;
11434   bool DiagnosedNonDeducedAuto = false;
11435 
11436   for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11437     if (Decl *D = Group[i]) {
11438       // For declarators, there are some additional syntactic-ish checks we need
11439       // to perform.
11440       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
11441         if (!FirstDeclaratorInGroup)
11442           FirstDeclaratorInGroup = DD;
11443         if (!FirstDecompDeclaratorInGroup)
11444           FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D);
11445         if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() &&
11446             !hasDeducedAuto(DD))
11447           FirstNonDeducedAutoInGroup = DD;
11448 
11449         if (FirstDeclaratorInGroup != DD) {
11450           // A decomposition declaration cannot be combined with any other
11451           // declaration in the same group.
11452           if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) {
11453             Diag(FirstDecompDeclaratorInGroup->getLocation(),
11454                  diag::err_decomp_decl_not_alone)
11455                 << FirstDeclaratorInGroup->getSourceRange()
11456                 << DD->getSourceRange();
11457             DiagnosedMultipleDecomps = true;
11458           }
11459 
11460           // A declarator that uses 'auto' in any way other than to declare a
11461           // variable with a deduced type cannot be combined with any other
11462           // declarator in the same group.
11463           if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) {
11464             Diag(FirstNonDeducedAutoInGroup->getLocation(),
11465                  diag::err_auto_non_deduced_not_alone)
11466                 << FirstNonDeducedAutoInGroup->getType()
11467                        ->hasAutoForTrailingReturnType()
11468                 << FirstDeclaratorInGroup->getSourceRange()
11469                 << DD->getSourceRange();
11470             DiagnosedNonDeducedAuto = true;
11471           }
11472         }
11473       }
11474 
11475       Decls.push_back(D);
11476     }
11477   }
11478 
11479   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
11480     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
11481       handleTagNumbering(Tag, S);
11482       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
11483           getLangOpts().CPlusPlus)
11484         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
11485     }
11486   }
11487 
11488   return BuildDeclaratorGroup(Decls);
11489 }
11490 
11491 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
11492 /// group, performing any necessary semantic checking.
11493 Sema::DeclGroupPtrTy
11494 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) {
11495   // C++14 [dcl.spec.auto]p7: (DR1347)
11496   //   If the type that replaces the placeholder type is not the same in each
11497   //   deduction, the program is ill-formed.
11498   if (Group.size() > 1) {
11499     QualType Deduced;
11500     VarDecl *DeducedDecl = nullptr;
11501     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11502       VarDecl *D = dyn_cast<VarDecl>(Group[i]);
11503       if (!D || D->isInvalidDecl())
11504         break;
11505       DeducedType *DT = D->getType()->getContainedDeducedType();
11506       if (!DT || DT->getDeducedType().isNull())
11507         continue;
11508       if (Deduced.isNull()) {
11509         Deduced = DT->getDeducedType();
11510         DeducedDecl = D;
11511       } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) {
11512         auto *AT = dyn_cast<AutoType>(DT);
11513         Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
11514              diag::err_auto_different_deductions)
11515           << (AT ? (unsigned)AT->getKeyword() : 3)
11516           << Deduced << DeducedDecl->getDeclName()
11517           << DT->getDeducedType() << D->getDeclName()
11518           << DeducedDecl->getInit()->getSourceRange()
11519           << D->getInit()->getSourceRange();
11520         D->setInvalidDecl();
11521         break;
11522       }
11523     }
11524   }
11525 
11526   ActOnDocumentableDecls(Group);
11527 
11528   return DeclGroupPtrTy::make(
11529       DeclGroupRef::Create(Context, Group.data(), Group.size()));
11530 }
11531 
11532 void Sema::ActOnDocumentableDecl(Decl *D) {
11533   ActOnDocumentableDecls(D);
11534 }
11535 
11536 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
11537   // Don't parse the comment if Doxygen diagnostics are ignored.
11538   if (Group.empty() || !Group[0])
11539     return;
11540 
11541   if (Diags.isIgnored(diag::warn_doc_param_not_found,
11542                       Group[0]->getLocation()) &&
11543       Diags.isIgnored(diag::warn_unknown_comment_command_name,
11544                       Group[0]->getLocation()))
11545     return;
11546 
11547   if (Group.size() >= 2) {
11548     // This is a decl group.  Normally it will contain only declarations
11549     // produced from declarator list.  But in case we have any definitions or
11550     // additional declaration references:
11551     //   'typedef struct S {} S;'
11552     //   'typedef struct S *S;'
11553     //   'struct S *pS;'
11554     // FinalizeDeclaratorGroup adds these as separate declarations.
11555     Decl *MaybeTagDecl = Group[0];
11556     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
11557       Group = Group.slice(1);
11558     }
11559   }
11560 
11561   // See if there are any new comments that are not attached to a decl.
11562   ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
11563   if (!Comments.empty() &&
11564       !Comments.back()->isAttached()) {
11565     // There is at least one comment that not attached to a decl.
11566     // Maybe it should be attached to one of these decls?
11567     //
11568     // Note that this way we pick up not only comments that precede the
11569     // declaration, but also comments that *follow* the declaration -- thanks to
11570     // the lookahead in the lexer: we've consumed the semicolon and looked
11571     // ahead through comments.
11572     for (unsigned i = 0, e = Group.size(); i != e; ++i)
11573       Context.getCommentForDecl(Group[i], &PP);
11574   }
11575 }
11576 
11577 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
11578 /// to introduce parameters into function prototype scope.
11579 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
11580   const DeclSpec &DS = D.getDeclSpec();
11581 
11582   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
11583 
11584   // C++03 [dcl.stc]p2 also permits 'auto'.
11585   StorageClass SC = SC_None;
11586   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
11587     SC = SC_Register;
11588     // In C++11, the 'register' storage class specifier is deprecated.
11589     // In C++17, it is not allowed, but we tolerate it as an extension.
11590     if (getLangOpts().CPlusPlus11) {
11591       Diag(DS.getStorageClassSpecLoc(),
11592            getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
11593                                      : diag::warn_deprecated_register)
11594         << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
11595     }
11596   } else if (getLangOpts().CPlusPlus &&
11597              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
11598     SC = SC_Auto;
11599   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
11600     Diag(DS.getStorageClassSpecLoc(),
11601          diag::err_invalid_storage_class_in_func_decl);
11602     D.getMutableDeclSpec().ClearStorageClassSpecs();
11603   }
11604 
11605   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
11606     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
11607       << DeclSpec::getSpecifierName(TSCS);
11608   if (DS.isInlineSpecified())
11609     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
11610         << getLangOpts().CPlusPlus17;
11611   if (DS.isConstexprSpecified())
11612     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
11613       << 0;
11614 
11615   DiagnoseFunctionSpecifiers(DS);
11616 
11617   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
11618   QualType parmDeclType = TInfo->getType();
11619 
11620   if (getLangOpts().CPlusPlus) {
11621     // Check that there are no default arguments inside the type of this
11622     // parameter.
11623     CheckExtraCXXDefaultArguments(D);
11624 
11625     // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
11626     if (D.getCXXScopeSpec().isSet()) {
11627       Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
11628         << D.getCXXScopeSpec().getRange();
11629       D.getCXXScopeSpec().clear();
11630     }
11631   }
11632 
11633   // Ensure we have a valid name
11634   IdentifierInfo *II = nullptr;
11635   if (D.hasName()) {
11636     II = D.getIdentifier();
11637     if (!II) {
11638       Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
11639         << GetNameForDeclarator(D).getName();
11640       D.setInvalidType(true);
11641     }
11642   }
11643 
11644   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
11645   if (II) {
11646     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
11647                    ForVisibleRedeclaration);
11648     LookupName(R, S);
11649     if (R.isSingleResult()) {
11650       NamedDecl *PrevDecl = R.getFoundDecl();
11651       if (PrevDecl->isTemplateParameter()) {
11652         // Maybe we will complain about the shadowed template parameter.
11653         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
11654         // Just pretend that we didn't see the previous declaration.
11655         PrevDecl = nullptr;
11656       } else if (S->isDeclScope(PrevDecl)) {
11657         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
11658         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
11659 
11660         // Recover by removing the name
11661         II = nullptr;
11662         D.SetIdentifier(nullptr, D.getIdentifierLoc());
11663         D.setInvalidType(true);
11664       }
11665     }
11666   }
11667 
11668   // Temporarily put parameter variables in the translation unit, not
11669   // the enclosing context.  This prevents them from accidentally
11670   // looking like class members in C++.
11671   ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
11672                                     D.getLocStart(),
11673                                     D.getIdentifierLoc(), II,
11674                                     parmDeclType, TInfo,
11675                                     SC);
11676 
11677   if (D.isInvalidType())
11678     New->setInvalidDecl();
11679 
11680   assert(S->isFunctionPrototypeScope());
11681   assert(S->getFunctionPrototypeDepth() >= 1);
11682   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
11683                     S->getNextFunctionPrototypeIndex());
11684 
11685   // Add the parameter declaration into this scope.
11686   S->AddDecl(New);
11687   if (II)
11688     IdResolver.AddDecl(New);
11689 
11690   ProcessDeclAttributes(S, New, D);
11691 
11692   if (D.getDeclSpec().isModulePrivateSpecified())
11693     Diag(New->getLocation(), diag::err_module_private_local)
11694       << 1 << New->getDeclName()
11695       << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
11696       << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
11697 
11698   if (New->hasAttr<BlocksAttr>()) {
11699     Diag(New->getLocation(), diag::err_block_on_nonlocal);
11700   }
11701   return New;
11702 }
11703 
11704 /// \brief Synthesizes a variable for a parameter arising from a
11705 /// typedef.
11706 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
11707                                               SourceLocation Loc,
11708                                               QualType T) {
11709   /* FIXME: setting StartLoc == Loc.
11710      Would it be worth to modify callers so as to provide proper source
11711      location for the unnamed parameters, embedding the parameter's type? */
11712   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
11713                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
11714                                            SC_None, nullptr);
11715   Param->setImplicit();
11716   return Param;
11717 }
11718 
11719 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) {
11720   // Don't diagnose unused-parameter errors in template instantiations; we
11721   // will already have done so in the template itself.
11722   if (inTemplateInstantiation())
11723     return;
11724 
11725   for (const ParmVarDecl *Parameter : Parameters) {
11726     if (!Parameter->isReferenced() && Parameter->getDeclName() &&
11727         !Parameter->hasAttr<UnusedAttr>()) {
11728       Diag(Parameter->getLocation(), diag::warn_unused_parameter)
11729         << Parameter->getDeclName();
11730     }
11731   }
11732 }
11733 
11734 void Sema::DiagnoseSizeOfParametersAndReturnValue(
11735     ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) {
11736   if (LangOpts.NumLargeByValueCopy == 0) // No check.
11737     return;
11738 
11739   // Warn if the return value is pass-by-value and larger than the specified
11740   // threshold.
11741   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
11742     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
11743     if (Size > LangOpts.NumLargeByValueCopy)
11744       Diag(D->getLocation(), diag::warn_return_value_size)
11745           << D->getDeclName() << Size;
11746   }
11747 
11748   // Warn if any parameter is pass-by-value and larger than the specified
11749   // threshold.
11750   for (const ParmVarDecl *Parameter : Parameters) {
11751     QualType T = Parameter->getType();
11752     if (T->isDependentType() || !T.isPODType(Context))
11753       continue;
11754     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
11755     if (Size > LangOpts.NumLargeByValueCopy)
11756       Diag(Parameter->getLocation(), diag::warn_parameter_size)
11757           << Parameter->getDeclName() << Size;
11758   }
11759 }
11760 
11761 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
11762                                   SourceLocation NameLoc, IdentifierInfo *Name,
11763                                   QualType T, TypeSourceInfo *TSInfo,
11764                                   StorageClass SC) {
11765   // In ARC, infer a lifetime qualifier for appropriate parameter types.
11766   if (getLangOpts().ObjCAutoRefCount &&
11767       T.getObjCLifetime() == Qualifiers::OCL_None &&
11768       T->isObjCLifetimeType()) {
11769 
11770     Qualifiers::ObjCLifetime lifetime;
11771 
11772     // Special cases for arrays:
11773     //   - if it's const, use __unsafe_unretained
11774     //   - otherwise, it's an error
11775     if (T->isArrayType()) {
11776       if (!T.isConstQualified()) {
11777         DelayedDiagnostics.add(
11778             sema::DelayedDiagnostic::makeForbiddenType(
11779             NameLoc, diag::err_arc_array_param_no_ownership, T, false));
11780       }
11781       lifetime = Qualifiers::OCL_ExplicitNone;
11782     } else {
11783       lifetime = T->getObjCARCImplicitLifetime();
11784     }
11785     T = Context.getLifetimeQualifiedType(T, lifetime);
11786   }
11787 
11788   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
11789                                          Context.getAdjustedParameterType(T),
11790                                          TSInfo, SC, nullptr);
11791 
11792   // Parameters can not be abstract class types.
11793   // For record types, this is done by the AbstractClassUsageDiagnoser once
11794   // the class has been completely parsed.
11795   if (!CurContext->isRecord() &&
11796       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
11797                              AbstractParamType))
11798     New->setInvalidDecl();
11799 
11800   // Parameter declarators cannot be interface types. All ObjC objects are
11801   // passed by reference.
11802   if (T->isObjCObjectType()) {
11803     SourceLocation TypeEndLoc =
11804         getLocForEndOfToken(TSInfo->getTypeLoc().getLocEnd());
11805     Diag(NameLoc,
11806          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
11807       << FixItHint::CreateInsertion(TypeEndLoc, "*");
11808     T = Context.getObjCObjectPointerType(T);
11809     New->setType(T);
11810   }
11811 
11812   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
11813   // duration shall not be qualified by an address-space qualifier."
11814   // Since all parameters have automatic store duration, they can not have
11815   // an address space.
11816   if (T.getAddressSpace() != LangAS::Default &&
11817       // OpenCL allows function arguments declared to be an array of a type
11818       // to be qualified with an address space.
11819       !(getLangOpts().OpenCL &&
11820         (T->isArrayType() || T.getAddressSpace() == LangAS::opencl_private))) {
11821     Diag(NameLoc, diag::err_arg_with_address_space);
11822     New->setInvalidDecl();
11823   }
11824 
11825   return New;
11826 }
11827 
11828 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
11829                                            SourceLocation LocAfterDecls) {
11830   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
11831 
11832   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
11833   // for a K&R function.
11834   if (!FTI.hasPrototype) {
11835     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
11836       --i;
11837       if (FTI.Params[i].Param == nullptr) {
11838         SmallString<256> Code;
11839         llvm::raw_svector_ostream(Code)
11840             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
11841         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
11842             << FTI.Params[i].Ident
11843             << FixItHint::CreateInsertion(LocAfterDecls, Code);
11844 
11845         // Implicitly declare the argument as type 'int' for lack of a better
11846         // type.
11847         AttributeFactory attrs;
11848         DeclSpec DS(attrs);
11849         const char* PrevSpec; // unused
11850         unsigned DiagID; // unused
11851         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
11852                            DiagID, Context.getPrintingPolicy());
11853         // Use the identifier location for the type source range.
11854         DS.SetRangeStart(FTI.Params[i].IdentLoc);
11855         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
11856         Declarator ParamD(DS, DeclaratorContext::KNRTypeListContext);
11857         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
11858         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
11859       }
11860     }
11861   }
11862 }
11863 
11864 Decl *
11865 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
11866                               MultiTemplateParamsArg TemplateParameterLists,
11867                               SkipBodyInfo *SkipBody) {
11868   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
11869   assert(D.isFunctionDeclarator() && "Not a function declarator!");
11870   Scope *ParentScope = FnBodyScope->getParent();
11871 
11872   D.setFunctionDefinitionKind(FDK_Definition);
11873   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
11874   return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
11875 }
11876 
11877 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) {
11878   Consumer.HandleInlineFunctionDefinition(D);
11879 }
11880 
11881 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
11882                              const FunctionDecl*& PossibleZeroParamPrototype) {
11883   // Don't warn about invalid declarations.
11884   if (FD->isInvalidDecl())
11885     return false;
11886 
11887   // Or declarations that aren't global.
11888   if (!FD->isGlobal())
11889     return false;
11890 
11891   // Don't warn about C++ member functions.
11892   if (isa<CXXMethodDecl>(FD))
11893     return false;
11894 
11895   // Don't warn about 'main'.
11896   if (FD->isMain())
11897     return false;
11898 
11899   // Don't warn about inline functions.
11900   if (FD->isInlined())
11901     return false;
11902 
11903   // Don't warn about function templates.
11904   if (FD->getDescribedFunctionTemplate())
11905     return false;
11906 
11907   // Don't warn about function template specializations.
11908   if (FD->isFunctionTemplateSpecialization())
11909     return false;
11910 
11911   // Don't warn for OpenCL kernels.
11912   if (FD->hasAttr<OpenCLKernelAttr>())
11913     return false;
11914 
11915   // Don't warn on explicitly deleted functions.
11916   if (FD->isDeleted())
11917     return false;
11918 
11919   bool MissingPrototype = true;
11920   for (const FunctionDecl *Prev = FD->getPreviousDecl();
11921        Prev; Prev = Prev->getPreviousDecl()) {
11922     // Ignore any declarations that occur in function or method
11923     // scope, because they aren't visible from the header.
11924     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
11925       continue;
11926 
11927     MissingPrototype = !Prev->getType()->isFunctionProtoType();
11928     if (FD->getNumParams() == 0)
11929       PossibleZeroParamPrototype = Prev;
11930     break;
11931   }
11932 
11933   return MissingPrototype;
11934 }
11935 
11936 void
11937 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
11938                                    const FunctionDecl *EffectiveDefinition,
11939                                    SkipBodyInfo *SkipBody) {
11940   const FunctionDecl *Definition = EffectiveDefinition;
11941   if (!Definition)
11942     if (!FD->isDefined(Definition))
11943       return;
11944 
11945   if (canRedefineFunction(Definition, getLangOpts()))
11946     return;
11947 
11948   // Don't emit an error when this is redefinition of a typo-corrected
11949   // definition.
11950   if (TypoCorrectedFunctionDefinitions.count(Definition))
11951     return;
11952 
11953   // If we don't have a visible definition of the function, and it's inline or
11954   // a template, skip the new definition.
11955   if (SkipBody && !hasVisibleDefinition(Definition) &&
11956       (Definition->getFormalLinkage() == InternalLinkage ||
11957        Definition->isInlined() ||
11958        Definition->getDescribedFunctionTemplate() ||
11959        Definition->getNumTemplateParameterLists())) {
11960     SkipBody->ShouldSkip = true;
11961     if (auto *TD = Definition->getDescribedFunctionTemplate())
11962       makeMergedDefinitionVisible(TD);
11963     makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition));
11964     return;
11965   }
11966 
11967   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
11968       Definition->getStorageClass() == SC_Extern)
11969     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
11970         << FD->getDeclName() << getLangOpts().CPlusPlus;
11971   else
11972     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
11973 
11974   Diag(Definition->getLocation(), diag::note_previous_definition);
11975   FD->setInvalidDecl();
11976 }
11977 
11978 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
11979                                    Sema &S) {
11980   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
11981 
11982   LambdaScopeInfo *LSI = S.PushLambdaScope();
11983   LSI->CallOperator = CallOperator;
11984   LSI->Lambda = LambdaClass;
11985   LSI->ReturnType = CallOperator->getReturnType();
11986   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
11987 
11988   if (LCD == LCD_None)
11989     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
11990   else if (LCD == LCD_ByCopy)
11991     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
11992   else if (LCD == LCD_ByRef)
11993     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
11994   DeclarationNameInfo DNI = CallOperator->getNameInfo();
11995 
11996   LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
11997   LSI->Mutable = !CallOperator->isConst();
11998 
11999   // Add the captures to the LSI so they can be noted as already
12000   // captured within tryCaptureVar.
12001   auto I = LambdaClass->field_begin();
12002   for (const auto &C : LambdaClass->captures()) {
12003     if (C.capturesVariable()) {
12004       VarDecl *VD = C.getCapturedVar();
12005       if (VD->isInitCapture())
12006         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
12007       QualType CaptureType = VD->getType();
12008       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
12009       LSI->addCapture(VD, /*IsBlock*/false, ByRef,
12010           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
12011           /*EllipsisLoc*/C.isPackExpansion()
12012                          ? C.getEllipsisLoc() : SourceLocation(),
12013           CaptureType, /*Expr*/ nullptr);
12014 
12015     } else if (C.capturesThis()) {
12016       LSI->addThisCapture(/*Nested*/ false, C.getLocation(),
12017                               /*Expr*/ nullptr,
12018                               C.getCaptureKind() == LCK_StarThis);
12019     } else {
12020       LSI->addVLATypeCapture(C.getLocation(), I->getType());
12021     }
12022     ++I;
12023   }
12024 }
12025 
12026 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
12027                                     SkipBodyInfo *SkipBody) {
12028   if (!D)
12029     return D;
12030   FunctionDecl *FD = nullptr;
12031 
12032   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
12033     FD = FunTmpl->getTemplatedDecl();
12034   else
12035     FD = cast<FunctionDecl>(D);
12036 
12037   // Check for defining attributes before the check for redefinition.
12038   if (const auto *Attr = FD->getAttr<AliasAttr>()) {
12039     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0;
12040     FD->dropAttr<AliasAttr>();
12041     FD->setInvalidDecl();
12042   }
12043   if (const auto *Attr = FD->getAttr<IFuncAttr>()) {
12044     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1;
12045     FD->dropAttr<IFuncAttr>();
12046     FD->setInvalidDecl();
12047   }
12048 
12049   // See if this is a redefinition. If 'will have body' is already set, then
12050   // these checks were already performed when it was set.
12051   if (!FD->willHaveBody() && !FD->isLateTemplateParsed()) {
12052     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
12053 
12054     // If we're skipping the body, we're done. Don't enter the scope.
12055     if (SkipBody && SkipBody->ShouldSkip)
12056       return D;
12057   }
12058 
12059   // Mark this function as "will have a body eventually".  This lets users to
12060   // call e.g. isInlineDefinitionExternallyVisible while we're still parsing
12061   // this function.
12062   FD->setWillHaveBody();
12063 
12064   // If we are instantiating a generic lambda call operator, push
12065   // a LambdaScopeInfo onto the function stack.  But use the information
12066   // that's already been calculated (ActOnLambdaExpr) to prime the current
12067   // LambdaScopeInfo.
12068   // When the template operator is being specialized, the LambdaScopeInfo,
12069   // has to be properly restored so that tryCaptureVariable doesn't try
12070   // and capture any new variables. In addition when calculating potential
12071   // captures during transformation of nested lambdas, it is necessary to
12072   // have the LSI properly restored.
12073   if (isGenericLambdaCallOperatorSpecialization(FD)) {
12074     assert(inTemplateInstantiation() &&
12075            "There should be an active template instantiation on the stack "
12076            "when instantiating a generic lambda!");
12077     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
12078   } else {
12079     // Enter a new function scope
12080     PushFunctionScope();
12081   }
12082 
12083   // Builtin functions cannot be defined.
12084   if (unsigned BuiltinID = FD->getBuiltinID()) {
12085     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
12086         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
12087       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
12088       FD->setInvalidDecl();
12089     }
12090   }
12091 
12092   // The return type of a function definition must be complete
12093   // (C99 6.9.1p3, C++ [dcl.fct]p6).
12094   QualType ResultType = FD->getReturnType();
12095   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
12096       !FD->isInvalidDecl() &&
12097       RequireCompleteType(FD->getLocation(), ResultType,
12098                           diag::err_func_def_incomplete_result))
12099     FD->setInvalidDecl();
12100 
12101   if (FnBodyScope)
12102     PushDeclContext(FnBodyScope, FD);
12103 
12104   // Check the validity of our function parameters
12105   CheckParmsForFunctionDef(FD->parameters(),
12106                            /*CheckParameterNames=*/true);
12107 
12108   // Add non-parameter declarations already in the function to the current
12109   // scope.
12110   if (FnBodyScope) {
12111     for (Decl *NPD : FD->decls()) {
12112       auto *NonParmDecl = dyn_cast<NamedDecl>(NPD);
12113       if (!NonParmDecl)
12114         continue;
12115       assert(!isa<ParmVarDecl>(NonParmDecl) &&
12116              "parameters should not be in newly created FD yet");
12117 
12118       // If the decl has a name, make it accessible in the current scope.
12119       if (NonParmDecl->getDeclName())
12120         PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false);
12121 
12122       // Similarly, dive into enums and fish their constants out, making them
12123       // accessible in this scope.
12124       if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) {
12125         for (auto *EI : ED->enumerators())
12126           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
12127       }
12128     }
12129   }
12130 
12131   // Introduce our parameters into the function scope
12132   for (auto Param : FD->parameters()) {
12133     Param->setOwningFunction(FD);
12134 
12135     // If this has an identifier, add it to the scope stack.
12136     if (Param->getIdentifier() && FnBodyScope) {
12137       CheckShadow(FnBodyScope, Param);
12138 
12139       PushOnScopeChains(Param, FnBodyScope);
12140     }
12141   }
12142 
12143   // Ensure that the function's exception specification is instantiated.
12144   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
12145     ResolveExceptionSpec(D->getLocation(), FPT);
12146 
12147   // dllimport cannot be applied to non-inline function definitions.
12148   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
12149       !FD->isTemplateInstantiation()) {
12150     assert(!FD->hasAttr<DLLExportAttr>());
12151     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
12152     FD->setInvalidDecl();
12153     return D;
12154   }
12155   // We want to attach documentation to original Decl (which might be
12156   // a function template).
12157   ActOnDocumentableDecl(D);
12158   if (getCurLexicalContext()->isObjCContainer() &&
12159       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
12160       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
12161     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
12162 
12163   return D;
12164 }
12165 
12166 /// \brief Given the set of return statements within a function body,
12167 /// compute the variables that are subject to the named return value
12168 /// optimization.
12169 ///
12170 /// Each of the variables that is subject to the named return value
12171 /// optimization will be marked as NRVO variables in the AST, and any
12172 /// return statement that has a marked NRVO variable as its NRVO candidate can
12173 /// use the named return value optimization.
12174 ///
12175 /// This function applies a very simplistic algorithm for NRVO: if every return
12176 /// statement in the scope of a variable has the same NRVO candidate, that
12177 /// candidate is an NRVO variable.
12178 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
12179   ReturnStmt **Returns = Scope->Returns.data();
12180 
12181   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
12182     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
12183       if (!NRVOCandidate->isNRVOVariable())
12184         Returns[I]->setNRVOCandidate(nullptr);
12185     }
12186   }
12187 }
12188 
12189 bool Sema::canDelayFunctionBody(const Declarator &D) {
12190   // We can't delay parsing the body of a constexpr function template (yet).
12191   if (D.getDeclSpec().isConstexprSpecified())
12192     return false;
12193 
12194   // We can't delay parsing the body of a function template with a deduced
12195   // return type (yet).
12196   if (D.getDeclSpec().hasAutoTypeSpec()) {
12197     // If the placeholder introduces a non-deduced trailing return type,
12198     // we can still delay parsing it.
12199     if (D.getNumTypeObjects()) {
12200       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
12201       if (Outer.Kind == DeclaratorChunk::Function &&
12202           Outer.Fun.hasTrailingReturnType()) {
12203         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
12204         return Ty.isNull() || !Ty->isUndeducedType();
12205       }
12206     }
12207     return false;
12208   }
12209 
12210   return true;
12211 }
12212 
12213 bool Sema::canSkipFunctionBody(Decl *D) {
12214   // We cannot skip the body of a function (or function template) which is
12215   // constexpr, since we may need to evaluate its body in order to parse the
12216   // rest of the file.
12217   // We cannot skip the body of a function with an undeduced return type,
12218   // because any callers of that function need to know the type.
12219   if (const FunctionDecl *FD = D->getAsFunction())
12220     if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
12221       return false;
12222   return Consumer.shouldSkipFunctionBody(D);
12223 }
12224 
12225 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
12226   if (!Decl)
12227     return nullptr;
12228   if (FunctionDecl *FD = Decl->getAsFunction())
12229     FD->setHasSkippedBody();
12230   else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(Decl))
12231     MD->setHasSkippedBody();
12232   return Decl;
12233 }
12234 
12235 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
12236   return ActOnFinishFunctionBody(D, BodyArg, false);
12237 }
12238 
12239 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
12240                                     bool IsInstantiation) {
12241   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
12242 
12243   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
12244   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
12245 
12246   if (getLangOpts().CoroutinesTS && getCurFunction()->isCoroutine())
12247     CheckCompletedCoroutineBody(FD, Body);
12248 
12249   if (FD) {
12250     FD->setBody(Body);
12251     FD->setWillHaveBody(false);
12252 
12253     if (getLangOpts().CPlusPlus14) {
12254       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
12255           FD->getReturnType()->isUndeducedType()) {
12256         // If the function has a deduced result type but contains no 'return'
12257         // statements, the result type as written must be exactly 'auto', and
12258         // the deduced result type is 'void'.
12259         if (!FD->getReturnType()->getAs<AutoType>()) {
12260           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
12261               << FD->getReturnType();
12262           FD->setInvalidDecl();
12263         } else {
12264           // Substitute 'void' for the 'auto' in the type.
12265           TypeLoc ResultType = getReturnTypeLoc(FD);
12266           Context.adjustDeducedFunctionResultType(
12267               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
12268         }
12269       }
12270     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
12271       // In C++11, we don't use 'auto' deduction rules for lambda call
12272       // operators because we don't support return type deduction.
12273       auto *LSI = getCurLambda();
12274       if (LSI->HasImplicitReturnType) {
12275         deduceClosureReturnType(*LSI);
12276 
12277         // C++11 [expr.prim.lambda]p4:
12278         //   [...] if there are no return statements in the compound-statement
12279         //   [the deduced type is] the type void
12280         QualType RetType =
12281             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
12282 
12283         // Update the return type to the deduced type.
12284         const FunctionProtoType *Proto =
12285             FD->getType()->getAs<FunctionProtoType>();
12286         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
12287                                             Proto->getExtProtoInfo()));
12288       }
12289     }
12290 
12291     // If the function implicitly returns zero (like 'main') or is naked,
12292     // don't complain about missing return statements.
12293     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
12294       WP.disableCheckFallThrough();
12295 
12296     // MSVC permits the use of pure specifier (=0) on function definition,
12297     // defined at class scope, warn about this non-standard construct.
12298     if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
12299       Diag(FD->getLocation(), diag::ext_pure_function_definition);
12300 
12301     if (!FD->isInvalidDecl()) {
12302       // Don't diagnose unused parameters of defaulted or deleted functions.
12303       if (!FD->isDeleted() && !FD->isDefaulted())
12304         DiagnoseUnusedParameters(FD->parameters());
12305       DiagnoseSizeOfParametersAndReturnValue(FD->parameters(),
12306                                              FD->getReturnType(), FD);
12307 
12308       // If this is a structor, we need a vtable.
12309       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
12310         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
12311       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
12312         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
12313 
12314       // Try to apply the named return value optimization. We have to check
12315       // if we can do this here because lambdas keep return statements around
12316       // to deduce an implicit return type.
12317       if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
12318           !FD->isDependentContext())
12319         computeNRVO(Body, getCurFunction());
12320     }
12321 
12322     // GNU warning -Wmissing-prototypes:
12323     //   Warn if a global function is defined without a previous
12324     //   prototype declaration. This warning is issued even if the
12325     //   definition itself provides a prototype. The aim is to detect
12326     //   global functions that fail to be declared in header files.
12327     const FunctionDecl *PossibleZeroParamPrototype = nullptr;
12328     if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
12329       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
12330 
12331       if (PossibleZeroParamPrototype) {
12332         // We found a declaration that is not a prototype,
12333         // but that could be a zero-parameter prototype
12334         if (TypeSourceInfo *TI =
12335                 PossibleZeroParamPrototype->getTypeSourceInfo()) {
12336           TypeLoc TL = TI->getTypeLoc();
12337           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
12338             Diag(PossibleZeroParamPrototype->getLocation(),
12339                  diag::note_declaration_not_a_prototype)
12340                 << PossibleZeroParamPrototype
12341                 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
12342         }
12343       }
12344 
12345       // GNU warning -Wstrict-prototypes
12346       //   Warn if K&R function is defined without a previous declaration.
12347       //   This warning is issued only if the definition itself does not provide
12348       //   a prototype. Only K&R definitions do not provide a prototype.
12349       //   An empty list in a function declarator that is part of a definition
12350       //   of that function specifies that the function has no parameters
12351       //   (C99 6.7.5.3p14)
12352       if (!FD->hasWrittenPrototype() && FD->getNumParams() > 0 &&
12353           !LangOpts.CPlusPlus) {
12354         TypeSourceInfo *TI = FD->getTypeSourceInfo();
12355         TypeLoc TL = TI->getTypeLoc();
12356         FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>();
12357         Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;
12358       }
12359     }
12360 
12361     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
12362       const CXXMethodDecl *KeyFunction;
12363       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
12364           MD->isVirtual() &&
12365           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
12366           MD == KeyFunction->getCanonicalDecl()) {
12367         // Update the key-function state if necessary for this ABI.
12368         if (FD->isInlined() &&
12369             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
12370           Context.setNonKeyFunction(MD);
12371 
12372           // If the newly-chosen key function is already defined, then we
12373           // need to mark the vtable as used retroactively.
12374           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
12375           const FunctionDecl *Definition;
12376           if (KeyFunction && KeyFunction->isDefined(Definition))
12377             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
12378         } else {
12379           // We just defined they key function; mark the vtable as used.
12380           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
12381         }
12382       }
12383     }
12384 
12385     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
12386            "Function parsing confused");
12387   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
12388     assert(MD == getCurMethodDecl() && "Method parsing confused");
12389     MD->setBody(Body);
12390     if (!MD->isInvalidDecl()) {
12391       DiagnoseUnusedParameters(MD->parameters());
12392       DiagnoseSizeOfParametersAndReturnValue(MD->parameters(),
12393                                              MD->getReturnType(), MD);
12394 
12395       if (Body)
12396         computeNRVO(Body, getCurFunction());
12397     }
12398     if (getCurFunction()->ObjCShouldCallSuper) {
12399       Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
12400         << MD->getSelector().getAsString();
12401       getCurFunction()->ObjCShouldCallSuper = false;
12402     }
12403     if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
12404       const ObjCMethodDecl *InitMethod = nullptr;
12405       bool isDesignated =
12406           MD->isDesignatedInitializerForTheInterface(&InitMethod);
12407       assert(isDesignated && InitMethod);
12408       (void)isDesignated;
12409 
12410       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
12411         auto IFace = MD->getClassInterface();
12412         if (!IFace)
12413           return false;
12414         auto SuperD = IFace->getSuperClass();
12415         if (!SuperD)
12416           return false;
12417         return SuperD->getIdentifier() ==
12418             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
12419       };
12420       // Don't issue this warning for unavailable inits or direct subclasses
12421       // of NSObject.
12422       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
12423         Diag(MD->getLocation(),
12424              diag::warn_objc_designated_init_missing_super_call);
12425         Diag(InitMethod->getLocation(),
12426              diag::note_objc_designated_init_marked_here);
12427       }
12428       getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
12429     }
12430     if (getCurFunction()->ObjCWarnForNoInitDelegation) {
12431       // Don't issue this warning for unavaialable inits.
12432       if (!MD->isUnavailable())
12433         Diag(MD->getLocation(),
12434              diag::warn_objc_secondary_init_missing_init_call);
12435       getCurFunction()->ObjCWarnForNoInitDelegation = false;
12436     }
12437   } else {
12438     return nullptr;
12439   }
12440 
12441   if (Body && getCurFunction()->HasPotentialAvailabilityViolations)
12442     DiagnoseUnguardedAvailabilityViolations(dcl);
12443 
12444   assert(!getCurFunction()->ObjCShouldCallSuper &&
12445          "This should only be set for ObjC methods, which should have been "
12446          "handled in the block above.");
12447 
12448   // Verify and clean out per-function state.
12449   if (Body && (!FD || !FD->isDefaulted())) {
12450     // C++ constructors that have function-try-blocks can't have return
12451     // statements in the handlers of that block. (C++ [except.handle]p14)
12452     // Verify this.
12453     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
12454       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
12455 
12456     // Verify that gotos and switch cases don't jump into scopes illegally.
12457     if (getCurFunction()->NeedsScopeChecking() &&
12458         !PP.isCodeCompletionEnabled())
12459       DiagnoseInvalidJumps(Body);
12460 
12461     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
12462       if (!Destructor->getParent()->isDependentType())
12463         CheckDestructor(Destructor);
12464 
12465       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
12466                                              Destructor->getParent());
12467     }
12468 
12469     // If any errors have occurred, clear out any temporaries that may have
12470     // been leftover. This ensures that these temporaries won't be picked up for
12471     // deletion in some later function.
12472     if (getDiagnostics().hasErrorOccurred() ||
12473         getDiagnostics().getSuppressAllDiagnostics()) {
12474       DiscardCleanupsInEvaluationContext();
12475     }
12476     if (!getDiagnostics().hasUncompilableErrorOccurred() &&
12477         !isa<FunctionTemplateDecl>(dcl)) {
12478       // Since the body is valid, issue any analysis-based warnings that are
12479       // enabled.
12480       ActivePolicy = &WP;
12481     }
12482 
12483     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
12484         (!CheckConstexprFunctionDecl(FD) ||
12485          !CheckConstexprFunctionBody(FD, Body)))
12486       FD->setInvalidDecl();
12487 
12488     if (FD && FD->hasAttr<NakedAttr>()) {
12489       for (const Stmt *S : Body->children()) {
12490         // Allow local register variables without initializer as they don't
12491         // require prologue.
12492         bool RegisterVariables = false;
12493         if (auto *DS = dyn_cast<DeclStmt>(S)) {
12494           for (const auto *Decl : DS->decls()) {
12495             if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
12496               RegisterVariables =
12497                   Var->hasAttr<AsmLabelAttr>() && !Var->hasInit();
12498               if (!RegisterVariables)
12499                 break;
12500             }
12501           }
12502         }
12503         if (RegisterVariables)
12504           continue;
12505         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
12506           Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function);
12507           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
12508           FD->setInvalidDecl();
12509           break;
12510         }
12511       }
12512     }
12513 
12514     assert(ExprCleanupObjects.size() ==
12515                ExprEvalContexts.back().NumCleanupObjects &&
12516            "Leftover temporaries in function");
12517     assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function");
12518     assert(MaybeODRUseExprs.empty() &&
12519            "Leftover expressions for odr-use checking");
12520   }
12521 
12522   if (!IsInstantiation)
12523     PopDeclContext();
12524 
12525   PopFunctionScopeInfo(ActivePolicy, dcl);
12526   // If any errors have occurred, clear out any temporaries that may have
12527   // been leftover. This ensures that these temporaries won't be picked up for
12528   // deletion in some later function.
12529   if (getDiagnostics().hasErrorOccurred()) {
12530     DiscardCleanupsInEvaluationContext();
12531   }
12532 
12533   return dcl;
12534 }
12535 
12536 /// When we finish delayed parsing of an attribute, we must attach it to the
12537 /// relevant Decl.
12538 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
12539                                        ParsedAttributes &Attrs) {
12540   // Always attach attributes to the underlying decl.
12541   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
12542     D = TD->getTemplatedDecl();
12543   ProcessDeclAttributeList(S, D, Attrs.getList());
12544 
12545   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
12546     if (Method->isStatic())
12547       checkThisInStaticMemberFunctionAttributes(Method);
12548 }
12549 
12550 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
12551 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
12552 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
12553                                           IdentifierInfo &II, Scope *S) {
12554   Scope *BlockScope = S;
12555   while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent())
12556     BlockScope = BlockScope->getParent();
12557 
12558   // Before we produce a declaration for an implicitly defined
12559   // function, see whether there was a locally-scoped declaration of
12560   // this name as a function or variable. If so, use that
12561   // (non-visible) declaration, and complain about it.
12562   NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II);
12563   if (ExternCPrev) {
12564     // We still need to inject the function into the enclosing block scope so
12565     // that later (non-call) uses can see it.
12566     PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false);
12567 
12568     // C89 footnote 38:
12569     //   If in fact it is not defined as having type "function returning int",
12570     //   the behavior is undefined.
12571     if (!isa<FunctionDecl>(ExternCPrev) ||
12572         !Context.typesAreCompatible(
12573             cast<FunctionDecl>(ExternCPrev)->getType(),
12574             Context.getFunctionNoProtoType(Context.IntTy))) {
12575       Diag(Loc, diag::ext_use_out_of_scope_declaration)
12576           << ExternCPrev << !getLangOpts().C99;
12577       Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
12578       return ExternCPrev;
12579     }
12580   }
12581 
12582   // Extension in C99.  Legal in C90, but warn about it.
12583   // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported.
12584   unsigned diag_id;
12585   if (II.getName().startswith("__builtin_"))
12586     diag_id = diag::warn_builtin_unknown;
12587   else if (getLangOpts().C99 || getLangOpts().OpenCL)
12588     diag_id = diag::ext_implicit_function_decl;
12589   else
12590     diag_id = diag::warn_implicit_function_decl;
12591   Diag(Loc, diag_id) << &II << getLangOpts().OpenCL;
12592 
12593   // If we found a prior declaration of this function, don't bother building
12594   // another one. We've already pushed that one into scope, so there's nothing
12595   // more to do.
12596   if (ExternCPrev)
12597     return ExternCPrev;
12598 
12599   // Because typo correction is expensive, only do it if the implicit
12600   // function declaration is going to be treated as an error.
12601   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
12602     TypoCorrection Corrected;
12603     if (S &&
12604         (Corrected = CorrectTypo(
12605              DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr,
12606              llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError)))
12607       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
12608                    /*ErrorRecovery*/false);
12609   }
12610 
12611   // Set a Declarator for the implicit definition: int foo();
12612   const char *Dummy;
12613   AttributeFactory attrFactory;
12614   DeclSpec DS(attrFactory);
12615   unsigned DiagID;
12616   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
12617                                   Context.getPrintingPolicy());
12618   (void)Error; // Silence warning.
12619   assert(!Error && "Error setting up implicit decl!");
12620   SourceLocation NoLoc;
12621   Declarator D(DS, DeclaratorContext::BlockContext);
12622   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
12623                                              /*IsAmbiguous=*/false,
12624                                              /*LParenLoc=*/NoLoc,
12625                                              /*Params=*/nullptr,
12626                                              /*NumParams=*/0,
12627                                              /*EllipsisLoc=*/NoLoc,
12628                                              /*RParenLoc=*/NoLoc,
12629                                              /*TypeQuals=*/0,
12630                                              /*RefQualifierIsLvalueRef=*/true,
12631                                              /*RefQualifierLoc=*/NoLoc,
12632                                              /*ConstQualifierLoc=*/NoLoc,
12633                                              /*VolatileQualifierLoc=*/NoLoc,
12634                                              /*RestrictQualifierLoc=*/NoLoc,
12635                                              /*MutableLoc=*/NoLoc,
12636                                              EST_None,
12637                                              /*ESpecRange=*/SourceRange(),
12638                                              /*Exceptions=*/nullptr,
12639                                              /*ExceptionRanges=*/nullptr,
12640                                              /*NumExceptions=*/0,
12641                                              /*NoexceptExpr=*/nullptr,
12642                                              /*ExceptionSpecTokens=*/nullptr,
12643                                              /*DeclsInPrototype=*/None,
12644                                              Loc, Loc, D),
12645                 DS.getAttributes(),
12646                 SourceLocation());
12647   D.SetIdentifier(&II, Loc);
12648 
12649   // Insert this function into the enclosing block scope.
12650   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D));
12651   FD->setImplicit();
12652 
12653   AddKnownFunctionAttributes(FD);
12654 
12655   return FD;
12656 }
12657 
12658 /// \brief Adds any function attributes that we know a priori based on
12659 /// the declaration of this function.
12660 ///
12661 /// These attributes can apply both to implicitly-declared builtins
12662 /// (like __builtin___printf_chk) or to library-declared functions
12663 /// like NSLog or printf.
12664 ///
12665 /// We need to check for duplicate attributes both here and where user-written
12666 /// attributes are applied to declarations.
12667 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
12668   if (FD->isInvalidDecl())
12669     return;
12670 
12671   // If this is a built-in function, map its builtin attributes to
12672   // actual attributes.
12673   if (unsigned BuiltinID = FD->getBuiltinID()) {
12674     // Handle printf-formatting attributes.
12675     unsigned FormatIdx;
12676     bool HasVAListArg;
12677     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
12678       if (!FD->hasAttr<FormatAttr>()) {
12679         const char *fmt = "printf";
12680         unsigned int NumParams = FD->getNumParams();
12681         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
12682             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
12683           fmt = "NSString";
12684         FD->addAttr(FormatAttr::CreateImplicit(Context,
12685                                                &Context.Idents.get(fmt),
12686                                                FormatIdx+1,
12687                                                HasVAListArg ? 0 : FormatIdx+2,
12688                                                FD->getLocation()));
12689       }
12690     }
12691     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
12692                                              HasVAListArg)) {
12693      if (!FD->hasAttr<FormatAttr>())
12694        FD->addAttr(FormatAttr::CreateImplicit(Context,
12695                                               &Context.Idents.get("scanf"),
12696                                               FormatIdx+1,
12697                                               HasVAListArg ? 0 : FormatIdx+2,
12698                                               FD->getLocation()));
12699     }
12700 
12701     // Mark const if we don't care about errno and that is the only thing
12702     // preventing the function from being const. This allows IRgen to use LLVM
12703     // intrinsics for such functions.
12704     if (!getLangOpts().MathErrno && !FD->hasAttr<ConstAttr>() &&
12705         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID))
12706       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
12707 
12708     // We make "fma" on GNU or Windows const because we know it does not set
12709     // errno in those environments even though it could set errno based on the
12710     // C standard.
12711     const llvm::Triple &Trip = Context.getTargetInfo().getTriple();
12712     if ((Trip.isGNUEnvironment() || Trip.isOSMSVCRT()) &&
12713         !FD->hasAttr<ConstAttr>()) {
12714       switch (BuiltinID) {
12715       case Builtin::BI__builtin_fma:
12716       case Builtin::BI__builtin_fmaf:
12717       case Builtin::BI__builtin_fmal:
12718       case Builtin::BIfma:
12719       case Builtin::BIfmaf:
12720       case Builtin::BIfmal:
12721         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
12722         break;
12723       default:
12724         break;
12725       }
12726     }
12727 
12728     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
12729         !FD->hasAttr<ReturnsTwiceAttr>())
12730       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
12731                                          FD->getLocation()));
12732     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
12733       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
12734     if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>())
12735       FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation()));
12736     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
12737       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
12738     if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
12739         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
12740       // Add the appropriate attribute, depending on the CUDA compilation mode
12741       // and which target the builtin belongs to. For example, during host
12742       // compilation, aux builtins are __device__, while the rest are __host__.
12743       if (getLangOpts().CUDAIsDevice !=
12744           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
12745         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
12746       else
12747         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
12748     }
12749   }
12750 
12751   // If C++ exceptions are enabled but we are told extern "C" functions cannot
12752   // throw, add an implicit nothrow attribute to any extern "C" function we come
12753   // across.
12754   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
12755       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
12756     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
12757     if (!FPT || FPT->getExceptionSpecType() == EST_None)
12758       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
12759   }
12760 
12761   IdentifierInfo *Name = FD->getIdentifier();
12762   if (!Name)
12763     return;
12764   if ((!getLangOpts().CPlusPlus &&
12765        FD->getDeclContext()->isTranslationUnit()) ||
12766       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
12767        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
12768        LinkageSpecDecl::lang_c)) {
12769     // Okay: this could be a libc/libm/Objective-C function we know
12770     // about.
12771   } else
12772     return;
12773 
12774   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
12775     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
12776     // target-specific builtins, perhaps?
12777     if (!FD->hasAttr<FormatAttr>())
12778       FD->addAttr(FormatAttr::CreateImplicit(Context,
12779                                              &Context.Idents.get("printf"), 2,
12780                                              Name->isStr("vasprintf") ? 0 : 3,
12781                                              FD->getLocation()));
12782   }
12783 
12784   if (Name->isStr("__CFStringMakeConstantString")) {
12785     // We already have a __builtin___CFStringMakeConstantString,
12786     // but builds that use -fno-constant-cfstrings don't go through that.
12787     if (!FD->hasAttr<FormatArgAttr>())
12788       FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1,
12789                                                 FD->getLocation()));
12790   }
12791 }
12792 
12793 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
12794                                     TypeSourceInfo *TInfo) {
12795   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
12796   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
12797 
12798   if (!TInfo) {
12799     assert(D.isInvalidType() && "no declarator info for valid type");
12800     TInfo = Context.getTrivialTypeSourceInfo(T);
12801   }
12802 
12803   // Scope manipulation handled by caller.
12804   TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
12805                                            D.getLocStart(),
12806                                            D.getIdentifierLoc(),
12807                                            D.getIdentifier(),
12808                                            TInfo);
12809 
12810   // Bail out immediately if we have an invalid declaration.
12811   if (D.isInvalidType()) {
12812     NewTD->setInvalidDecl();
12813     return NewTD;
12814   }
12815 
12816   if (D.getDeclSpec().isModulePrivateSpecified()) {
12817     if (CurContext->isFunctionOrMethod())
12818       Diag(NewTD->getLocation(), diag::err_module_private_local)
12819         << 2 << NewTD->getDeclName()
12820         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
12821         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
12822     else
12823       NewTD->setModulePrivate();
12824   }
12825 
12826   // C++ [dcl.typedef]p8:
12827   //   If the typedef declaration defines an unnamed class (or
12828   //   enum), the first typedef-name declared by the declaration
12829   //   to be that class type (or enum type) is used to denote the
12830   //   class type (or enum type) for linkage purposes only.
12831   // We need to check whether the type was declared in the declaration.
12832   switch (D.getDeclSpec().getTypeSpecType()) {
12833   case TST_enum:
12834   case TST_struct:
12835   case TST_interface:
12836   case TST_union:
12837   case TST_class: {
12838     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
12839     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
12840     break;
12841   }
12842 
12843   default:
12844     break;
12845   }
12846 
12847   return NewTD;
12848 }
12849 
12850 /// \brief Check that this is a valid underlying type for an enum declaration.
12851 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
12852   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
12853   QualType T = TI->getType();
12854 
12855   if (T->isDependentType())
12856     return false;
12857 
12858   if (const BuiltinType *BT = T->getAs<BuiltinType>())
12859     if (BT->isInteger())
12860       return false;
12861 
12862   Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
12863   return true;
12864 }
12865 
12866 /// Check whether this is a valid redeclaration of a previous enumeration.
12867 /// \return true if the redeclaration was invalid.
12868 bool Sema::CheckEnumRedeclaration(
12869     SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy,
12870     bool EnumUnderlyingIsImplicit, const EnumDecl *Prev) {
12871   bool IsFixed = !EnumUnderlyingTy.isNull();
12872 
12873   if (IsScoped != Prev->isScoped()) {
12874     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
12875       << Prev->isScoped();
12876     Diag(Prev->getLocation(), diag::note_previous_declaration);
12877     return true;
12878   }
12879 
12880   if (IsFixed && Prev->isFixed()) {
12881     if (!EnumUnderlyingTy->isDependentType() &&
12882         !Prev->getIntegerType()->isDependentType() &&
12883         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
12884                                         Prev->getIntegerType())) {
12885       // TODO: Highlight the underlying type of the redeclaration.
12886       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
12887         << EnumUnderlyingTy << Prev->getIntegerType();
12888       Diag(Prev->getLocation(), diag::note_previous_declaration)
12889           << Prev->getIntegerTypeRange();
12890       return true;
12891     }
12892   } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) {
12893     ;
12894   } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) {
12895     ;
12896   } else if (IsFixed != Prev->isFixed()) {
12897     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
12898       << Prev->isFixed();
12899     Diag(Prev->getLocation(), diag::note_previous_declaration);
12900     return true;
12901   }
12902 
12903   return false;
12904 }
12905 
12906 /// \brief Get diagnostic %select index for tag kind for
12907 /// redeclaration diagnostic message.
12908 /// WARNING: Indexes apply to particular diagnostics only!
12909 ///
12910 /// \returns diagnostic %select index.
12911 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
12912   switch (Tag) {
12913   case TTK_Struct: return 0;
12914   case TTK_Interface: return 1;
12915   case TTK_Class:  return 2;
12916   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
12917   }
12918 }
12919 
12920 /// \brief Determine if tag kind is a class-key compatible with
12921 /// class for redeclaration (class, struct, or __interface).
12922 ///
12923 /// \returns true iff the tag kind is compatible.
12924 static bool isClassCompatTagKind(TagTypeKind Tag)
12925 {
12926   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
12927 }
12928 
12929 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl,
12930                                              TagTypeKind TTK) {
12931   if (isa<TypedefDecl>(PrevDecl))
12932     return NTK_Typedef;
12933   else if (isa<TypeAliasDecl>(PrevDecl))
12934     return NTK_TypeAlias;
12935   else if (isa<ClassTemplateDecl>(PrevDecl))
12936     return NTK_Template;
12937   else if (isa<TypeAliasTemplateDecl>(PrevDecl))
12938     return NTK_TypeAliasTemplate;
12939   else if (isa<TemplateTemplateParmDecl>(PrevDecl))
12940     return NTK_TemplateTemplateArgument;
12941   switch (TTK) {
12942   case TTK_Struct:
12943   case TTK_Interface:
12944   case TTK_Class:
12945     return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct;
12946   case TTK_Union:
12947     return NTK_NonUnion;
12948   case TTK_Enum:
12949     return NTK_NonEnum;
12950   }
12951   llvm_unreachable("invalid TTK");
12952 }
12953 
12954 /// \brief Determine whether a tag with a given kind is acceptable
12955 /// as a redeclaration of the given tag declaration.
12956 ///
12957 /// \returns true if the new tag kind is acceptable, false otherwise.
12958 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
12959                                         TagTypeKind NewTag, bool isDefinition,
12960                                         SourceLocation NewTagLoc,
12961                                         const IdentifierInfo *Name) {
12962   // C++ [dcl.type.elab]p3:
12963   //   The class-key or enum keyword present in the
12964   //   elaborated-type-specifier shall agree in kind with the
12965   //   declaration to which the name in the elaborated-type-specifier
12966   //   refers. This rule also applies to the form of
12967   //   elaborated-type-specifier that declares a class-name or
12968   //   friend class since it can be construed as referring to the
12969   //   definition of the class. Thus, in any
12970   //   elaborated-type-specifier, the enum keyword shall be used to
12971   //   refer to an enumeration (7.2), the union class-key shall be
12972   //   used to refer to a union (clause 9), and either the class or
12973   //   struct class-key shall be used to refer to a class (clause 9)
12974   //   declared using the class or struct class-key.
12975   TagTypeKind OldTag = Previous->getTagKind();
12976   if (!isDefinition || !isClassCompatTagKind(NewTag))
12977     if (OldTag == NewTag)
12978       return true;
12979 
12980   if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
12981     // Warn about the struct/class tag mismatch.
12982     bool isTemplate = false;
12983     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
12984       isTemplate = Record->getDescribedClassTemplate();
12985 
12986     if (inTemplateInstantiation()) {
12987       // In a template instantiation, do not offer fix-its for tag mismatches
12988       // since they usually mess up the template instead of fixing the problem.
12989       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
12990         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
12991         << getRedeclDiagFromTagKind(OldTag);
12992       return true;
12993     }
12994 
12995     if (isDefinition) {
12996       // On definitions, check previous tags and issue a fix-it for each
12997       // one that doesn't match the current tag.
12998       if (Previous->getDefinition()) {
12999         // Don't suggest fix-its for redefinitions.
13000         return true;
13001       }
13002 
13003       bool previousMismatch = false;
13004       for (auto I : Previous->redecls()) {
13005         if (I->getTagKind() != NewTag) {
13006           if (!previousMismatch) {
13007             previousMismatch = true;
13008             Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
13009               << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13010               << getRedeclDiagFromTagKind(I->getTagKind());
13011           }
13012           Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
13013             << getRedeclDiagFromTagKind(NewTag)
13014             << FixItHint::CreateReplacement(I->getInnerLocStart(),
13015                  TypeWithKeyword::getTagTypeKindName(NewTag));
13016         }
13017       }
13018       return true;
13019     }
13020 
13021     // Check for a previous definition.  If current tag and definition
13022     // are same type, do nothing.  If no definition, but disagree with
13023     // with previous tag type, give a warning, but no fix-it.
13024     const TagDecl *Redecl = Previous->getDefinition() ?
13025                             Previous->getDefinition() : Previous;
13026     if (Redecl->getTagKind() == NewTag) {
13027       return true;
13028     }
13029 
13030     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
13031       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13032       << getRedeclDiagFromTagKind(OldTag);
13033     Diag(Redecl->getLocation(), diag::note_previous_use);
13034 
13035     // If there is a previous definition, suggest a fix-it.
13036     if (Previous->getDefinition()) {
13037         Diag(NewTagLoc, diag::note_struct_class_suggestion)
13038           << getRedeclDiagFromTagKind(Redecl->getTagKind())
13039           << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
13040                TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
13041     }
13042 
13043     return true;
13044   }
13045   return false;
13046 }
13047 
13048 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
13049 /// from an outer enclosing namespace or file scope inside a friend declaration.
13050 /// This should provide the commented out code in the following snippet:
13051 ///   namespace N {
13052 ///     struct X;
13053 ///     namespace M {
13054 ///       struct Y { friend struct /*N::*/ X; };
13055 ///     }
13056 ///   }
13057 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
13058                                          SourceLocation NameLoc) {
13059   // While the decl is in a namespace, do repeated lookup of that name and see
13060   // if we get the same namespace back.  If we do not, continue until
13061   // translation unit scope, at which point we have a fully qualified NNS.
13062   SmallVector<IdentifierInfo *, 4> Namespaces;
13063   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13064   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
13065     // This tag should be declared in a namespace, which can only be enclosed by
13066     // other namespaces.  Bail if there's an anonymous namespace in the chain.
13067     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
13068     if (!Namespace || Namespace->isAnonymousNamespace())
13069       return FixItHint();
13070     IdentifierInfo *II = Namespace->getIdentifier();
13071     Namespaces.push_back(II);
13072     NamedDecl *Lookup = SemaRef.LookupSingleName(
13073         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
13074     if (Lookup == Namespace)
13075       break;
13076   }
13077 
13078   // Once we have all the namespaces, reverse them to go outermost first, and
13079   // build an NNS.
13080   SmallString<64> Insertion;
13081   llvm::raw_svector_ostream OS(Insertion);
13082   if (DC->isTranslationUnit())
13083     OS << "::";
13084   std::reverse(Namespaces.begin(), Namespaces.end());
13085   for (auto *II : Namespaces)
13086     OS << II->getName() << "::";
13087   return FixItHint::CreateInsertion(NameLoc, Insertion);
13088 }
13089 
13090 /// \brief Determine whether a tag originally declared in context \p OldDC can
13091 /// be redeclared with an unqualfied name in \p NewDC (assuming name lookup
13092 /// found a declaration in \p OldDC as a previous decl, perhaps through a
13093 /// using-declaration).
13094 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
13095                                          DeclContext *NewDC) {
13096   OldDC = OldDC->getRedeclContext();
13097   NewDC = NewDC->getRedeclContext();
13098 
13099   if (OldDC->Equals(NewDC))
13100     return true;
13101 
13102   // In MSVC mode, we allow a redeclaration if the contexts are related (either
13103   // encloses the other).
13104   if (S.getLangOpts().MSVCCompat &&
13105       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
13106     return true;
13107 
13108   return false;
13109 }
13110 
13111 /// \brief This is invoked when we see 'struct foo' or 'struct {'.  In the
13112 /// former case, Name will be non-null.  In the later case, Name will be null.
13113 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
13114 /// reference/declaration/definition of a tag.
13115 ///
13116 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
13117 /// trailing-type-specifier) other than one in an alias-declaration.
13118 ///
13119 /// \param SkipBody If non-null, will be set to indicate if the caller should
13120 /// skip the definition of this tag and treat it as if it were a declaration.
13121 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
13122                      SourceLocation KWLoc, CXXScopeSpec &SS,
13123                      IdentifierInfo *Name, SourceLocation NameLoc,
13124                      AttributeList *Attr, AccessSpecifier AS,
13125                      SourceLocation ModulePrivateLoc,
13126                      MultiTemplateParamsArg TemplateParameterLists,
13127                      bool &OwnedDecl, bool &IsDependent,
13128                      SourceLocation ScopedEnumKWLoc,
13129                      bool ScopedEnumUsesClassTag,
13130                      TypeResult UnderlyingType,
13131                      bool IsTypeSpecifier, bool IsTemplateParamOrArg,
13132                      SkipBodyInfo *SkipBody) {
13133   // If this is not a definition, it must have a name.
13134   IdentifierInfo *OrigName = Name;
13135   assert((Name != nullptr || TUK == TUK_Definition) &&
13136          "Nameless record must be a definition!");
13137   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
13138 
13139   OwnedDecl = false;
13140   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
13141   bool ScopedEnum = ScopedEnumKWLoc.isValid();
13142 
13143   // FIXME: Check member specializations more carefully.
13144   bool isMemberSpecialization = false;
13145   bool Invalid = false;
13146 
13147   // We only need to do this matching if we have template parameters
13148   // or a scope specifier, which also conveniently avoids this work
13149   // for non-C++ cases.
13150   if (TemplateParameterLists.size() > 0 ||
13151       (SS.isNotEmpty() && TUK != TUK_Reference)) {
13152     if (TemplateParameterList *TemplateParams =
13153             MatchTemplateParametersToScopeSpecifier(
13154                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
13155                 TUK == TUK_Friend, isMemberSpecialization, Invalid)) {
13156       if (Kind == TTK_Enum) {
13157         Diag(KWLoc, diag::err_enum_template);
13158         return nullptr;
13159       }
13160 
13161       if (TemplateParams->size() > 0) {
13162         // This is a declaration or definition of a class template (which may
13163         // be a member of another template).
13164 
13165         if (Invalid)
13166           return nullptr;
13167 
13168         OwnedDecl = false;
13169         DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
13170                                                SS, Name, NameLoc, Attr,
13171                                                TemplateParams, AS,
13172                                                ModulePrivateLoc,
13173                                                /*FriendLoc*/SourceLocation(),
13174                                                TemplateParameterLists.size()-1,
13175                                                TemplateParameterLists.data(),
13176                                                SkipBody);
13177         return Result.get();
13178       } else {
13179         // The "template<>" header is extraneous.
13180         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
13181           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
13182         isMemberSpecialization = true;
13183       }
13184     }
13185   }
13186 
13187   // Figure out the underlying type if this a enum declaration. We need to do
13188   // this early, because it's needed to detect if this is an incompatible
13189   // redeclaration.
13190   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
13191   bool EnumUnderlyingIsImplicit = false;
13192 
13193   if (Kind == TTK_Enum) {
13194     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum))
13195       // No underlying type explicitly specified, or we failed to parse the
13196       // type, default to int.
13197       EnumUnderlying = Context.IntTy.getTypePtr();
13198     else if (UnderlyingType.get()) {
13199       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
13200       // integral type; any cv-qualification is ignored.
13201       TypeSourceInfo *TI = nullptr;
13202       GetTypeFromParser(UnderlyingType.get(), &TI);
13203       EnumUnderlying = TI;
13204 
13205       if (CheckEnumUnderlyingType(TI))
13206         // Recover by falling back to int.
13207         EnumUnderlying = Context.IntTy.getTypePtr();
13208 
13209       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
13210                                           UPPC_FixedUnderlyingType))
13211         EnumUnderlying = Context.IntTy.getTypePtr();
13212 
13213     } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
13214       if (getLangOpts().MSVCCompat || TUK == TUK_Definition) {
13215         // Microsoft enums are always of int type.
13216         EnumUnderlying = Context.IntTy.getTypePtr();
13217         EnumUnderlyingIsImplicit = true;
13218       }
13219     }
13220   }
13221 
13222   DeclContext *SearchDC = CurContext;
13223   DeclContext *DC = CurContext;
13224   bool isStdBadAlloc = false;
13225   bool isStdAlignValT = false;
13226 
13227   RedeclarationKind Redecl = forRedeclarationInCurContext();
13228   if (TUK == TUK_Friend || TUK == TUK_Reference)
13229     Redecl = NotForRedeclaration;
13230 
13231   /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C
13232   /// implemented asks for structural equivalence checking, the returned decl
13233   /// here is passed back to the parser, allowing the tag body to be parsed.
13234   auto createTagFromNewDecl = [&]() -> TagDecl * {
13235     assert(!getLangOpts().CPlusPlus && "not meant for C++ usage");
13236     // If there is an identifier, use the location of the identifier as the
13237     // location of the decl, otherwise use the location of the struct/union
13238     // keyword.
13239     SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
13240     TagDecl *New = nullptr;
13241 
13242     if (Kind == TTK_Enum) {
13243       New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr,
13244                              ScopedEnum, ScopedEnumUsesClassTag,
13245                              !EnumUnderlying.isNull());
13246       // If this is an undefined enum, bail.
13247       if (TUK != TUK_Definition && !Invalid)
13248         return nullptr;
13249       if (EnumUnderlying) {
13250         EnumDecl *ED = cast<EnumDecl>(New);
13251         if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>())
13252           ED->setIntegerTypeSourceInfo(TI);
13253         else
13254           ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0));
13255         ED->setPromotionType(ED->getIntegerType());
13256       }
13257     } else { // struct/union
13258       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13259                                nullptr);
13260     }
13261 
13262     if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
13263       // Add alignment attributes if necessary; these attributes are checked
13264       // when the ASTContext lays out the structure.
13265       //
13266       // It is important for implementing the correct semantics that this
13267       // happen here (in ActOnTag). The #pragma pack stack is
13268       // maintained as a result of parser callbacks which can occur at
13269       // many points during the parsing of a struct declaration (because
13270       // the #pragma tokens are effectively skipped over during the
13271       // parsing of the struct).
13272       if (TUK == TUK_Definition) {
13273         AddAlignmentAttributesForRecord(RD);
13274         AddMsStructLayoutForRecord(RD);
13275       }
13276     }
13277     New->setLexicalDeclContext(CurContext);
13278     return New;
13279   };
13280 
13281   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
13282   if (Name && SS.isNotEmpty()) {
13283     // We have a nested-name tag ('struct foo::bar').
13284 
13285     // Check for invalid 'foo::'.
13286     if (SS.isInvalid()) {
13287       Name = nullptr;
13288       goto CreateNewDecl;
13289     }
13290 
13291     // If this is a friend or a reference to a class in a dependent
13292     // context, don't try to make a decl for it.
13293     if (TUK == TUK_Friend || TUK == TUK_Reference) {
13294       DC = computeDeclContext(SS, false);
13295       if (!DC) {
13296         IsDependent = true;
13297         return nullptr;
13298       }
13299     } else {
13300       DC = computeDeclContext(SS, true);
13301       if (!DC) {
13302         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
13303           << SS.getRange();
13304         return nullptr;
13305       }
13306     }
13307 
13308     if (RequireCompleteDeclContext(SS, DC))
13309       return nullptr;
13310 
13311     SearchDC = DC;
13312     // Look-up name inside 'foo::'.
13313     LookupQualifiedName(Previous, DC);
13314 
13315     if (Previous.isAmbiguous())
13316       return nullptr;
13317 
13318     if (Previous.empty()) {
13319       // Name lookup did not find anything. However, if the
13320       // nested-name-specifier refers to the current instantiation,
13321       // and that current instantiation has any dependent base
13322       // classes, we might find something at instantiation time: treat
13323       // this as a dependent elaborated-type-specifier.
13324       // But this only makes any sense for reference-like lookups.
13325       if (Previous.wasNotFoundInCurrentInstantiation() &&
13326           (TUK == TUK_Reference || TUK == TUK_Friend)) {
13327         IsDependent = true;
13328         return nullptr;
13329       }
13330 
13331       // A tag 'foo::bar' must already exist.
13332       Diag(NameLoc, diag::err_not_tag_in_scope)
13333         << Kind << Name << DC << SS.getRange();
13334       Name = nullptr;
13335       Invalid = true;
13336       goto CreateNewDecl;
13337     }
13338   } else if (Name) {
13339     // C++14 [class.mem]p14:
13340     //   If T is the name of a class, then each of the following shall have a
13341     //   name different from T:
13342     //    -- every member of class T that is itself a type
13343     if (TUK != TUK_Reference && TUK != TUK_Friend &&
13344         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
13345       return nullptr;
13346 
13347     // If this is a named struct, check to see if there was a previous forward
13348     // declaration or definition.
13349     // FIXME: We're looking into outer scopes here, even when we
13350     // shouldn't be. Doing so can result in ambiguities that we
13351     // shouldn't be diagnosing.
13352     LookupName(Previous, S);
13353 
13354     // When declaring or defining a tag, ignore ambiguities introduced
13355     // by types using'ed into this scope.
13356     if (Previous.isAmbiguous() &&
13357         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
13358       LookupResult::Filter F = Previous.makeFilter();
13359       while (F.hasNext()) {
13360         NamedDecl *ND = F.next();
13361         if (!ND->getDeclContext()->getRedeclContext()->Equals(
13362                 SearchDC->getRedeclContext()))
13363           F.erase();
13364       }
13365       F.done();
13366     }
13367 
13368     // C++11 [namespace.memdef]p3:
13369     //   If the name in a friend declaration is neither qualified nor
13370     //   a template-id and the declaration is a function or an
13371     //   elaborated-type-specifier, the lookup to determine whether
13372     //   the entity has been previously declared shall not consider
13373     //   any scopes outside the innermost enclosing namespace.
13374     //
13375     // MSVC doesn't implement the above rule for types, so a friend tag
13376     // declaration may be a redeclaration of a type declared in an enclosing
13377     // scope.  They do implement this rule for friend functions.
13378     //
13379     // Does it matter that this should be by scope instead of by
13380     // semantic context?
13381     if (!Previous.empty() && TUK == TUK_Friend) {
13382       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
13383       LookupResult::Filter F = Previous.makeFilter();
13384       bool FriendSawTagOutsideEnclosingNamespace = false;
13385       while (F.hasNext()) {
13386         NamedDecl *ND = F.next();
13387         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13388         if (DC->isFileContext() &&
13389             !EnclosingNS->Encloses(ND->getDeclContext())) {
13390           if (getLangOpts().MSVCCompat)
13391             FriendSawTagOutsideEnclosingNamespace = true;
13392           else
13393             F.erase();
13394         }
13395       }
13396       F.done();
13397 
13398       // Diagnose this MSVC extension in the easy case where lookup would have
13399       // unambiguously found something outside the enclosing namespace.
13400       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
13401         NamedDecl *ND = Previous.getFoundDecl();
13402         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
13403             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
13404       }
13405     }
13406 
13407     // Note:  there used to be some attempt at recovery here.
13408     if (Previous.isAmbiguous())
13409       return nullptr;
13410 
13411     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
13412       // FIXME: This makes sure that we ignore the contexts associated
13413       // with C structs, unions, and enums when looking for a matching
13414       // tag declaration or definition. See the similar lookup tweak
13415       // in Sema::LookupName; is there a better way to deal with this?
13416       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
13417         SearchDC = SearchDC->getParent();
13418     }
13419   }
13420 
13421   if (Previous.isSingleResult() &&
13422       Previous.getFoundDecl()->isTemplateParameter()) {
13423     // Maybe we will complain about the shadowed template parameter.
13424     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
13425     // Just pretend that we didn't see the previous declaration.
13426     Previous.clear();
13427   }
13428 
13429   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
13430       DC->Equals(getStdNamespace())) {
13431     if (Name->isStr("bad_alloc")) {
13432       // This is a declaration of or a reference to "std::bad_alloc".
13433       isStdBadAlloc = true;
13434 
13435       // If std::bad_alloc has been implicitly declared (but made invisible to
13436       // name lookup), fill in this implicit declaration as the previous
13437       // declaration, so that the declarations get chained appropriately.
13438       if (Previous.empty() && StdBadAlloc)
13439         Previous.addDecl(getStdBadAlloc());
13440     } else if (Name->isStr("align_val_t")) {
13441       isStdAlignValT = true;
13442       if (Previous.empty() && StdAlignValT)
13443         Previous.addDecl(getStdAlignValT());
13444     }
13445   }
13446 
13447   // If we didn't find a previous declaration, and this is a reference
13448   // (or friend reference), move to the correct scope.  In C++, we
13449   // also need to do a redeclaration lookup there, just in case
13450   // there's a shadow friend decl.
13451   if (Name && Previous.empty() &&
13452       (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) {
13453     if (Invalid) goto CreateNewDecl;
13454     assert(SS.isEmpty());
13455 
13456     if (TUK == TUK_Reference || IsTemplateParamOrArg) {
13457       // C++ [basic.scope.pdecl]p5:
13458       //   -- for an elaborated-type-specifier of the form
13459       //
13460       //          class-key identifier
13461       //
13462       //      if the elaborated-type-specifier is used in the
13463       //      decl-specifier-seq or parameter-declaration-clause of a
13464       //      function defined in namespace scope, the identifier is
13465       //      declared as a class-name in the namespace that contains
13466       //      the declaration; otherwise, except as a friend
13467       //      declaration, the identifier is declared in the smallest
13468       //      non-class, non-function-prototype scope that contains the
13469       //      declaration.
13470       //
13471       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
13472       // C structs and unions.
13473       //
13474       // It is an error in C++ to declare (rather than define) an enum
13475       // type, including via an elaborated type specifier.  We'll
13476       // diagnose that later; for now, declare the enum in the same
13477       // scope as we would have picked for any other tag type.
13478       //
13479       // GNU C also supports this behavior as part of its incomplete
13480       // enum types extension, while GNU C++ does not.
13481       //
13482       // Find the context where we'll be declaring the tag.
13483       // FIXME: We would like to maintain the current DeclContext as the
13484       // lexical context,
13485       SearchDC = getTagInjectionContext(SearchDC);
13486 
13487       // Find the scope where we'll be declaring the tag.
13488       S = getTagInjectionScope(S, getLangOpts());
13489     } else {
13490       assert(TUK == TUK_Friend);
13491       // C++ [namespace.memdef]p3:
13492       //   If a friend declaration in a non-local class first declares a
13493       //   class or function, the friend class or function is a member of
13494       //   the innermost enclosing namespace.
13495       SearchDC = SearchDC->getEnclosingNamespaceContext();
13496     }
13497 
13498     // In C++, we need to do a redeclaration lookup to properly
13499     // diagnose some problems.
13500     // FIXME: redeclaration lookup is also used (with and without C++) to find a
13501     // hidden declaration so that we don't get ambiguity errors when using a
13502     // type declared by an elaborated-type-specifier.  In C that is not correct
13503     // and we should instead merge compatible types found by lookup.
13504     if (getLangOpts().CPlusPlus) {
13505       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13506       LookupQualifiedName(Previous, SearchDC);
13507     } else {
13508       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13509       LookupName(Previous, S);
13510     }
13511   }
13512 
13513   // If we have a known previous declaration to use, then use it.
13514   if (Previous.empty() && SkipBody && SkipBody->Previous)
13515     Previous.addDecl(SkipBody->Previous);
13516 
13517   if (!Previous.empty()) {
13518     NamedDecl *PrevDecl = Previous.getFoundDecl();
13519     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
13520 
13521     // It's okay to have a tag decl in the same scope as a typedef
13522     // which hides a tag decl in the same scope.  Finding this
13523     // insanity with a redeclaration lookup can only actually happen
13524     // in C++.
13525     //
13526     // This is also okay for elaborated-type-specifiers, which is
13527     // technically forbidden by the current standard but which is
13528     // okay according to the likely resolution of an open issue;
13529     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
13530     if (getLangOpts().CPlusPlus) {
13531       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
13532         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
13533           TagDecl *Tag = TT->getDecl();
13534           if (Tag->getDeclName() == Name &&
13535               Tag->getDeclContext()->getRedeclContext()
13536                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
13537             PrevDecl = Tag;
13538             Previous.clear();
13539             Previous.addDecl(Tag);
13540             Previous.resolveKind();
13541           }
13542         }
13543       }
13544     }
13545 
13546     // If this is a redeclaration of a using shadow declaration, it must
13547     // declare a tag in the same context. In MSVC mode, we allow a
13548     // redefinition if either context is within the other.
13549     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
13550       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
13551       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
13552           isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) &&
13553           !(OldTag && isAcceptableTagRedeclContext(
13554                           *this, OldTag->getDeclContext(), SearchDC))) {
13555         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
13556         Diag(Shadow->getTargetDecl()->getLocation(),
13557              diag::note_using_decl_target);
13558         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
13559             << 0;
13560         // Recover by ignoring the old declaration.
13561         Previous.clear();
13562         goto CreateNewDecl;
13563       }
13564     }
13565 
13566     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
13567       // If this is a use of a previous tag, or if the tag is already declared
13568       // in the same scope (so that the definition/declaration completes or
13569       // rementions the tag), reuse the decl.
13570       if (TUK == TUK_Reference || TUK == TUK_Friend ||
13571           isDeclInScope(DirectPrevDecl, SearchDC, S,
13572                         SS.isNotEmpty() || isMemberSpecialization)) {
13573         // Make sure that this wasn't declared as an enum and now used as a
13574         // struct or something similar.
13575         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
13576                                           TUK == TUK_Definition, KWLoc,
13577                                           Name)) {
13578           bool SafeToContinue
13579             = (PrevTagDecl->getTagKind() != TTK_Enum &&
13580                Kind != TTK_Enum);
13581           if (SafeToContinue)
13582             Diag(KWLoc, diag::err_use_with_wrong_tag)
13583               << Name
13584               << FixItHint::CreateReplacement(SourceRange(KWLoc),
13585                                               PrevTagDecl->getKindName());
13586           else
13587             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
13588           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
13589 
13590           if (SafeToContinue)
13591             Kind = PrevTagDecl->getTagKind();
13592           else {
13593             // Recover by making this an anonymous redefinition.
13594             Name = nullptr;
13595             Previous.clear();
13596             Invalid = true;
13597           }
13598         }
13599 
13600         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
13601           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
13602 
13603           // If this is an elaborated-type-specifier for a scoped enumeration,
13604           // the 'class' keyword is not necessary and not permitted.
13605           if (TUK == TUK_Reference || TUK == TUK_Friend) {
13606             if (ScopedEnum)
13607               Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
13608                 << PrevEnum->isScoped()
13609                 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
13610             return PrevTagDecl;
13611           }
13612 
13613           QualType EnumUnderlyingTy;
13614           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
13615             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
13616           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
13617             EnumUnderlyingTy = QualType(T, 0);
13618 
13619           // All conflicts with previous declarations are recovered by
13620           // returning the previous declaration, unless this is a definition,
13621           // in which case we want the caller to bail out.
13622           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
13623                                      ScopedEnum, EnumUnderlyingTy,
13624                                      EnumUnderlyingIsImplicit, PrevEnum))
13625             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
13626         }
13627 
13628         // C++11 [class.mem]p1:
13629         //   A member shall not be declared twice in the member-specification,
13630         //   except that a nested class or member class template can be declared
13631         //   and then later defined.
13632         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
13633             S->isDeclScope(PrevDecl)) {
13634           Diag(NameLoc, diag::ext_member_redeclared);
13635           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
13636         }
13637 
13638         if (!Invalid) {
13639           // If this is a use, just return the declaration we found, unless
13640           // we have attributes.
13641           if (TUK == TUK_Reference || TUK == TUK_Friend) {
13642             if (Attr) {
13643               // FIXME: Diagnose these attributes. For now, we create a new
13644               // declaration to hold them.
13645             } else if (TUK == TUK_Reference &&
13646                        (PrevTagDecl->getFriendObjectKind() ==
13647                             Decl::FOK_Undeclared ||
13648                         PrevDecl->getOwningModule() != getCurrentModule()) &&
13649                        SS.isEmpty()) {
13650               // This declaration is a reference to an existing entity, but
13651               // has different visibility from that entity: it either makes
13652               // a friend visible or it makes a type visible in a new module.
13653               // In either case, create a new declaration. We only do this if
13654               // the declaration would have meant the same thing if no prior
13655               // declaration were found, that is, if it was found in the same
13656               // scope where we would have injected a declaration.
13657               if (!getTagInjectionContext(CurContext)->getRedeclContext()
13658                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
13659                 return PrevTagDecl;
13660               // This is in the injected scope, create a new declaration in
13661               // that scope.
13662               S = getTagInjectionScope(S, getLangOpts());
13663             } else {
13664               return PrevTagDecl;
13665             }
13666           }
13667 
13668           // Diagnose attempts to redefine a tag.
13669           if (TUK == TUK_Definition) {
13670             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
13671               // If we're defining a specialization and the previous definition
13672               // is from an implicit instantiation, don't emit an error
13673               // here; we'll catch this in the general case below.
13674               bool IsExplicitSpecializationAfterInstantiation = false;
13675               if (isMemberSpecialization) {
13676                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
13677                   IsExplicitSpecializationAfterInstantiation =
13678                     RD->getTemplateSpecializationKind() !=
13679                     TSK_ExplicitSpecialization;
13680                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
13681                   IsExplicitSpecializationAfterInstantiation =
13682                     ED->getTemplateSpecializationKind() !=
13683                     TSK_ExplicitSpecialization;
13684               }
13685 
13686               // Note that clang allows ODR-like semantics for ObjC/C, i.e., do
13687               // not keep more that one definition around (merge them). However,
13688               // ensure the decl passes the structural compatibility check in
13689               // C11 6.2.7/1 (or 6.1.2.6/1 in C89).
13690               NamedDecl *Hidden = nullptr;
13691               if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
13692                 // There is a definition of this tag, but it is not visible. We
13693                 // explicitly make use of C++'s one definition rule here, and
13694                 // assume that this definition is identical to the hidden one
13695                 // we already have. Make the existing definition visible and
13696                 // use it in place of this one.
13697                 if (!getLangOpts().CPlusPlus) {
13698                   // Postpone making the old definition visible until after we
13699                   // complete parsing the new one and do the structural
13700                   // comparison.
13701                   SkipBody->CheckSameAsPrevious = true;
13702                   SkipBody->New = createTagFromNewDecl();
13703                   SkipBody->Previous = Hidden;
13704                 } else {
13705                   SkipBody->ShouldSkip = true;
13706                   makeMergedDefinitionVisible(Hidden);
13707                 }
13708                 return Def;
13709               } else if (!IsExplicitSpecializationAfterInstantiation) {
13710                 // A redeclaration in function prototype scope in C isn't
13711                 // visible elsewhere, so merely issue a warning.
13712                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
13713                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
13714                 else
13715                   Diag(NameLoc, diag::err_redefinition) << Name;
13716                 notePreviousDefinition(Def,
13717                                        NameLoc.isValid() ? NameLoc : KWLoc);
13718                 // If this is a redefinition, recover by making this
13719                 // struct be anonymous, which will make any later
13720                 // references get the previous definition.
13721                 Name = nullptr;
13722                 Previous.clear();
13723                 Invalid = true;
13724               }
13725             } else {
13726               // If the type is currently being defined, complain
13727               // about a nested redefinition.
13728               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
13729               if (TD->isBeingDefined()) {
13730                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
13731                 Diag(PrevTagDecl->getLocation(),
13732                      diag::note_previous_definition);
13733                 Name = nullptr;
13734                 Previous.clear();
13735                 Invalid = true;
13736               }
13737             }
13738 
13739             // Okay, this is definition of a previously declared or referenced
13740             // tag. We're going to create a new Decl for it.
13741           }
13742 
13743           // Okay, we're going to make a redeclaration.  If this is some kind
13744           // of reference, make sure we build the redeclaration in the same DC
13745           // as the original, and ignore the current access specifier.
13746           if (TUK == TUK_Friend || TUK == TUK_Reference) {
13747             SearchDC = PrevTagDecl->getDeclContext();
13748             AS = AS_none;
13749           }
13750         }
13751         // If we get here we have (another) forward declaration or we
13752         // have a definition.  Just create a new decl.
13753 
13754       } else {
13755         // If we get here, this is a definition of a new tag type in a nested
13756         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
13757         // new decl/type.  We set PrevDecl to NULL so that the entities
13758         // have distinct types.
13759         Previous.clear();
13760       }
13761       // If we get here, we're going to create a new Decl. If PrevDecl
13762       // is non-NULL, it's a definition of the tag declared by
13763       // PrevDecl. If it's NULL, we have a new definition.
13764 
13765     // Otherwise, PrevDecl is not a tag, but was found with tag
13766     // lookup.  This is only actually possible in C++, where a few
13767     // things like templates still live in the tag namespace.
13768     } else {
13769       // Use a better diagnostic if an elaborated-type-specifier
13770       // found the wrong kind of type on the first
13771       // (non-redeclaration) lookup.
13772       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
13773           !Previous.isForRedeclaration()) {
13774         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
13775         Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK
13776                                                        << Kind;
13777         Diag(PrevDecl->getLocation(), diag::note_declared_at);
13778         Invalid = true;
13779 
13780       // Otherwise, only diagnose if the declaration is in scope.
13781       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
13782                                 SS.isNotEmpty() || isMemberSpecialization)) {
13783         // do nothing
13784 
13785       // Diagnose implicit declarations introduced by elaborated types.
13786       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
13787         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
13788         Diag(NameLoc, diag::err_tag_reference_conflict) << NTK;
13789         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
13790         Invalid = true;
13791 
13792       // Otherwise it's a declaration.  Call out a particularly common
13793       // case here.
13794       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
13795         unsigned Kind = 0;
13796         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
13797         Diag(NameLoc, diag::err_tag_definition_of_typedef)
13798           << Name << Kind << TND->getUnderlyingType();
13799         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
13800         Invalid = true;
13801 
13802       // Otherwise, diagnose.
13803       } else {
13804         // The tag name clashes with something else in the target scope,
13805         // issue an error and recover by making this tag be anonymous.
13806         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
13807         notePreviousDefinition(PrevDecl, NameLoc);
13808         Name = nullptr;
13809         Invalid = true;
13810       }
13811 
13812       // The existing declaration isn't relevant to us; we're in a
13813       // new scope, so clear out the previous declaration.
13814       Previous.clear();
13815     }
13816   }
13817 
13818 CreateNewDecl:
13819 
13820   TagDecl *PrevDecl = nullptr;
13821   if (Previous.isSingleResult())
13822     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
13823 
13824   // If there is an identifier, use the location of the identifier as the
13825   // location of the decl, otherwise use the location of the struct/union
13826   // keyword.
13827   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
13828 
13829   // Otherwise, create a new declaration. If there is a previous
13830   // declaration of the same entity, the two will be linked via
13831   // PrevDecl.
13832   TagDecl *New;
13833 
13834   bool IsForwardReference = false;
13835   if (Kind == TTK_Enum) {
13836     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
13837     // enum X { A, B, C } D;    D should chain to X.
13838     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
13839                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
13840                            ScopedEnumUsesClassTag, !EnumUnderlying.isNull());
13841 
13842     if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit()))
13843       StdAlignValT = cast<EnumDecl>(New);
13844 
13845     // If this is an undefined enum, warn.
13846     if (TUK != TUK_Definition && !Invalid) {
13847       TagDecl *Def;
13848       if (!EnumUnderlyingIsImplicit &&
13849           (getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
13850           cast<EnumDecl>(New)->isFixed()) {
13851         // C++0x: 7.2p2: opaque-enum-declaration.
13852         // Conflicts are diagnosed above. Do nothing.
13853       }
13854       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
13855         Diag(Loc, diag::ext_forward_ref_enum_def)
13856           << New;
13857         Diag(Def->getLocation(), diag::note_previous_definition);
13858       } else {
13859         unsigned DiagID = diag::ext_forward_ref_enum;
13860         if (getLangOpts().MSVCCompat)
13861           DiagID = diag::ext_ms_forward_ref_enum;
13862         else if (getLangOpts().CPlusPlus)
13863           DiagID = diag::err_forward_ref_enum;
13864         Diag(Loc, DiagID);
13865 
13866         // If this is a forward-declared reference to an enumeration, make a
13867         // note of it; we won't actually be introducing the declaration into
13868         // the declaration context.
13869         if (TUK == TUK_Reference)
13870           IsForwardReference = true;
13871       }
13872     }
13873 
13874     if (EnumUnderlying) {
13875       EnumDecl *ED = cast<EnumDecl>(New);
13876       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
13877         ED->setIntegerTypeSourceInfo(TI);
13878       else
13879         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
13880       ED->setPromotionType(ED->getIntegerType());
13881     }
13882   } else {
13883     // struct/union/class
13884 
13885     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
13886     // struct X { int A; } D;    D should chain to X.
13887     if (getLangOpts().CPlusPlus) {
13888       // FIXME: Look for a way to use RecordDecl for simple structs.
13889       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13890                                   cast_or_null<CXXRecordDecl>(PrevDecl));
13891 
13892       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
13893         StdBadAlloc = cast<CXXRecordDecl>(New);
13894     } else
13895       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13896                                cast_or_null<RecordDecl>(PrevDecl));
13897   }
13898 
13899   // C++11 [dcl.type]p3:
13900   //   A type-specifier-seq shall not define a class or enumeration [...].
13901   if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) &&
13902       TUK == TUK_Definition) {
13903     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
13904       << Context.getTagDeclType(New);
13905     Invalid = true;
13906   }
13907 
13908   if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition &&
13909       DC->getDeclKind() == Decl::Enum) {
13910     Diag(New->getLocation(), diag::err_type_defined_in_enum)
13911       << Context.getTagDeclType(New);
13912     Invalid = true;
13913   }
13914 
13915   // Maybe add qualifier info.
13916   if (SS.isNotEmpty()) {
13917     if (SS.isSet()) {
13918       // If this is either a declaration or a definition, check the
13919       // nested-name-specifier against the current context. We don't do this
13920       // for explicit specializations, because they have similar checking
13921       // (with more specific diagnostics) in the call to
13922       // CheckMemberSpecialization, below.
13923       if (!isMemberSpecialization &&
13924           (TUK == TUK_Definition || TUK == TUK_Declaration) &&
13925           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc))
13926         Invalid = true;
13927 
13928       New->setQualifierInfo(SS.getWithLocInContext(Context));
13929       if (TemplateParameterLists.size() > 0) {
13930         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
13931       }
13932     }
13933     else
13934       Invalid = true;
13935   }
13936 
13937   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
13938     // Add alignment attributes if necessary; these attributes are checked when
13939     // the ASTContext lays out the structure.
13940     //
13941     // It is important for implementing the correct semantics that this
13942     // happen here (in ActOnTag). The #pragma pack stack is
13943     // maintained as a result of parser callbacks which can occur at
13944     // many points during the parsing of a struct declaration (because
13945     // the #pragma tokens are effectively skipped over during the
13946     // parsing of the struct).
13947     if (TUK == TUK_Definition) {
13948       AddAlignmentAttributesForRecord(RD);
13949       AddMsStructLayoutForRecord(RD);
13950     }
13951   }
13952 
13953   if (ModulePrivateLoc.isValid()) {
13954     if (isMemberSpecialization)
13955       Diag(New->getLocation(), diag::err_module_private_specialization)
13956         << 2
13957         << FixItHint::CreateRemoval(ModulePrivateLoc);
13958     // __module_private__ does not apply to local classes. However, we only
13959     // diagnose this as an error when the declaration specifiers are
13960     // freestanding. Here, we just ignore the __module_private__.
13961     else if (!SearchDC->isFunctionOrMethod())
13962       New->setModulePrivate();
13963   }
13964 
13965   // If this is a specialization of a member class (of a class template),
13966   // check the specialization.
13967   if (isMemberSpecialization && CheckMemberSpecialization(New, Previous))
13968     Invalid = true;
13969 
13970   // If we're declaring or defining a tag in function prototype scope in C,
13971   // note that this type can only be used within the function and add it to
13972   // the list of decls to inject into the function definition scope.
13973   if ((Name || Kind == TTK_Enum) &&
13974       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
13975     if (getLangOpts().CPlusPlus) {
13976       // C++ [dcl.fct]p6:
13977       //   Types shall not be defined in return or parameter types.
13978       if (TUK == TUK_Definition && !IsTypeSpecifier) {
13979         Diag(Loc, diag::err_type_defined_in_param_type)
13980             << Name;
13981         Invalid = true;
13982       }
13983     } else if (!PrevDecl) {
13984       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
13985     }
13986   }
13987 
13988   if (Invalid)
13989     New->setInvalidDecl();
13990 
13991   // Set the lexical context. If the tag has a C++ scope specifier, the
13992   // lexical context will be different from the semantic context.
13993   New->setLexicalDeclContext(CurContext);
13994 
13995   // Mark this as a friend decl if applicable.
13996   // In Microsoft mode, a friend declaration also acts as a forward
13997   // declaration so we always pass true to setObjectOfFriendDecl to make
13998   // the tag name visible.
13999   if (TUK == TUK_Friend)
14000     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
14001 
14002   // Set the access specifier.
14003   if (!Invalid && SearchDC->isRecord())
14004     SetMemberAccessSpecifier(New, PrevDecl, AS);
14005 
14006   if (PrevDecl)
14007     CheckRedeclarationModuleOwnership(New, PrevDecl);
14008 
14009   if (TUK == TUK_Definition)
14010     New->startDefinition();
14011 
14012   if (Attr)
14013     ProcessDeclAttributeList(S, New, Attr);
14014   AddPragmaAttributes(S, New);
14015 
14016   // If this has an identifier, add it to the scope stack.
14017   if (TUK == TUK_Friend) {
14018     // We might be replacing an existing declaration in the lookup tables;
14019     // if so, borrow its access specifier.
14020     if (PrevDecl)
14021       New->setAccess(PrevDecl->getAccess());
14022 
14023     DeclContext *DC = New->getDeclContext()->getRedeclContext();
14024     DC->makeDeclVisibleInContext(New);
14025     if (Name) // can be null along some error paths
14026       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
14027         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
14028   } else if (Name) {
14029     S = getNonFieldDeclScope(S);
14030     PushOnScopeChains(New, S, !IsForwardReference);
14031     if (IsForwardReference)
14032       SearchDC->makeDeclVisibleInContext(New);
14033   } else {
14034     CurContext->addDecl(New);
14035   }
14036 
14037   // If this is the C FILE type, notify the AST context.
14038   if (IdentifierInfo *II = New->getIdentifier())
14039     if (!New->isInvalidDecl() &&
14040         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
14041         II->isStr("FILE"))
14042       Context.setFILEDecl(New);
14043 
14044   if (PrevDecl)
14045     mergeDeclAttributes(New, PrevDecl);
14046 
14047   // If there's a #pragma GCC visibility in scope, set the visibility of this
14048   // record.
14049   AddPushedVisibilityAttribute(New);
14050 
14051   if (isMemberSpecialization && !New->isInvalidDecl())
14052     CompleteMemberSpecialization(New, Previous);
14053 
14054   OwnedDecl = true;
14055   // In C++, don't return an invalid declaration. We can't recover well from
14056   // the cases where we make the type anonymous.
14057   if (Invalid && getLangOpts().CPlusPlus) {
14058     if (New->isBeingDefined())
14059       if (auto RD = dyn_cast<RecordDecl>(New))
14060         RD->completeDefinition();
14061     return nullptr;
14062   } else {
14063     return New;
14064   }
14065 }
14066 
14067 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
14068   AdjustDeclIfTemplate(TagD);
14069   TagDecl *Tag = cast<TagDecl>(TagD);
14070 
14071   // Enter the tag context.
14072   PushDeclContext(S, Tag);
14073 
14074   ActOnDocumentableDecl(TagD);
14075 
14076   // If there's a #pragma GCC visibility in scope, set the visibility of this
14077   // record.
14078   AddPushedVisibilityAttribute(Tag);
14079 }
14080 
14081 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev,
14082                                     SkipBodyInfo &SkipBody) {
14083   if (!hasStructuralCompatLayout(Prev, SkipBody.New))
14084     return false;
14085 
14086   // Make the previous decl visible.
14087   makeMergedDefinitionVisible(SkipBody.Previous);
14088   return true;
14089 }
14090 
14091 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
14092   assert(isa<ObjCContainerDecl>(IDecl) &&
14093          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
14094   DeclContext *OCD = cast<DeclContext>(IDecl);
14095   assert(getContainingDC(OCD) == CurContext &&
14096       "The next DeclContext should be lexically contained in the current one.");
14097   CurContext = OCD;
14098   return IDecl;
14099 }
14100 
14101 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
14102                                            SourceLocation FinalLoc,
14103                                            bool IsFinalSpelledSealed,
14104                                            SourceLocation LBraceLoc) {
14105   AdjustDeclIfTemplate(TagD);
14106   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
14107 
14108   FieldCollector->StartClass();
14109 
14110   if (!Record->getIdentifier())
14111     return;
14112 
14113   if (FinalLoc.isValid())
14114     Record->addAttr(new (Context)
14115                     FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
14116 
14117   // C++ [class]p2:
14118   //   [...] The class-name is also inserted into the scope of the
14119   //   class itself; this is known as the injected-class-name. For
14120   //   purposes of access checking, the injected-class-name is treated
14121   //   as if it were a public member name.
14122   CXXRecordDecl *InjectedClassName
14123     = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
14124                             Record->getLocStart(), Record->getLocation(),
14125                             Record->getIdentifier(),
14126                             /*PrevDecl=*/nullptr,
14127                             /*DelayTypeCreation=*/true);
14128   Context.getTypeDeclType(InjectedClassName, Record);
14129   InjectedClassName->setImplicit();
14130   InjectedClassName->setAccess(AS_public);
14131   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
14132       InjectedClassName->setDescribedClassTemplate(Template);
14133   PushOnScopeChains(InjectedClassName, S);
14134   assert(InjectedClassName->isInjectedClassName() &&
14135          "Broken injected-class-name");
14136 }
14137 
14138 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
14139                                     SourceRange BraceRange) {
14140   AdjustDeclIfTemplate(TagD);
14141   TagDecl *Tag = cast<TagDecl>(TagD);
14142   Tag->setBraceRange(BraceRange);
14143 
14144   // Make sure we "complete" the definition even it is invalid.
14145   if (Tag->isBeingDefined()) {
14146     assert(Tag->isInvalidDecl() && "We should already have completed it");
14147     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14148       RD->completeDefinition();
14149   }
14150 
14151   if (isa<CXXRecordDecl>(Tag)) {
14152     FieldCollector->FinishClass();
14153   }
14154 
14155   // Exit this scope of this tag's definition.
14156   PopDeclContext();
14157 
14158   if (getCurLexicalContext()->isObjCContainer() &&
14159       Tag->getDeclContext()->isFileContext())
14160     Tag->setTopLevelDeclInObjCContainer();
14161 
14162   // Notify the consumer that we've defined a tag.
14163   if (!Tag->isInvalidDecl())
14164     Consumer.HandleTagDeclDefinition(Tag);
14165 }
14166 
14167 void Sema::ActOnObjCContainerFinishDefinition() {
14168   // Exit this scope of this interface definition.
14169   PopDeclContext();
14170 }
14171 
14172 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
14173   assert(DC == CurContext && "Mismatch of container contexts");
14174   OriginalLexicalContext = DC;
14175   ActOnObjCContainerFinishDefinition();
14176 }
14177 
14178 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
14179   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
14180   OriginalLexicalContext = nullptr;
14181 }
14182 
14183 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
14184   AdjustDeclIfTemplate(TagD);
14185   TagDecl *Tag = cast<TagDecl>(TagD);
14186   Tag->setInvalidDecl();
14187 
14188   // Make sure we "complete" the definition even it is invalid.
14189   if (Tag->isBeingDefined()) {
14190     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14191       RD->completeDefinition();
14192   }
14193 
14194   // We're undoing ActOnTagStartDefinition here, not
14195   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
14196   // the FieldCollector.
14197 
14198   PopDeclContext();
14199 }
14200 
14201 // Note that FieldName may be null for anonymous bitfields.
14202 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
14203                                 IdentifierInfo *FieldName,
14204                                 QualType FieldTy, bool IsMsStruct,
14205                                 Expr *BitWidth, bool *ZeroWidth) {
14206   // Default to true; that shouldn't confuse checks for emptiness
14207   if (ZeroWidth)
14208     *ZeroWidth = true;
14209 
14210   // C99 6.7.2.1p4 - verify the field type.
14211   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
14212   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
14213     // Handle incomplete types with specific error.
14214     if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
14215       return ExprError();
14216     if (FieldName)
14217       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
14218         << FieldName << FieldTy << BitWidth->getSourceRange();
14219     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
14220       << FieldTy << BitWidth->getSourceRange();
14221   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
14222                                              UPPC_BitFieldWidth))
14223     return ExprError();
14224 
14225   // If the bit-width is type- or value-dependent, don't try to check
14226   // it now.
14227   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
14228     return BitWidth;
14229 
14230   llvm::APSInt Value;
14231   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
14232   if (ICE.isInvalid())
14233     return ICE;
14234   BitWidth = ICE.get();
14235 
14236   if (Value != 0 && ZeroWidth)
14237     *ZeroWidth = false;
14238 
14239   // Zero-width bitfield is ok for anonymous field.
14240   if (Value == 0 && FieldName)
14241     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
14242 
14243   if (Value.isSigned() && Value.isNegative()) {
14244     if (FieldName)
14245       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
14246                << FieldName << Value.toString(10);
14247     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
14248       << Value.toString(10);
14249   }
14250 
14251   if (!FieldTy->isDependentType()) {
14252     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
14253     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
14254     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
14255 
14256     // Over-wide bitfields are an error in C or when using the MSVC bitfield
14257     // ABI.
14258     bool CStdConstraintViolation =
14259         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
14260     bool MSBitfieldViolation =
14261         Value.ugt(TypeStorageSize) &&
14262         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
14263     if (CStdConstraintViolation || MSBitfieldViolation) {
14264       unsigned DiagWidth =
14265           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
14266       if (FieldName)
14267         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
14268                << FieldName << (unsigned)Value.getZExtValue()
14269                << !CStdConstraintViolation << DiagWidth;
14270 
14271       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
14272              << (unsigned)Value.getZExtValue() << !CStdConstraintViolation
14273              << DiagWidth;
14274     }
14275 
14276     // Warn on types where the user might conceivably expect to get all
14277     // specified bits as value bits: that's all integral types other than
14278     // 'bool'.
14279     if (BitfieldIsOverwide && !FieldTy->isBooleanType()) {
14280       if (FieldName)
14281         Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
14282             << FieldName << (unsigned)Value.getZExtValue()
14283             << (unsigned)TypeWidth;
14284       else
14285         Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)
14286             << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;
14287     }
14288   }
14289 
14290   return BitWidth;
14291 }
14292 
14293 /// ActOnField - Each field of a C struct/union is passed into this in order
14294 /// to create a FieldDecl object for it.
14295 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
14296                        Declarator &D, Expr *BitfieldWidth) {
14297   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
14298                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
14299                                /*InitStyle=*/ICIS_NoInit, AS_public);
14300   return Res;
14301 }
14302 
14303 /// HandleField - Analyze a field of a C struct or a C++ data member.
14304 ///
14305 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
14306                              SourceLocation DeclStart,
14307                              Declarator &D, Expr *BitWidth,
14308                              InClassInitStyle InitStyle,
14309                              AccessSpecifier AS) {
14310   if (D.isDecompositionDeclarator()) {
14311     const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
14312     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
14313       << Decomp.getSourceRange();
14314     return nullptr;
14315   }
14316 
14317   IdentifierInfo *II = D.getIdentifier();
14318   SourceLocation Loc = DeclStart;
14319   if (II) Loc = D.getIdentifierLoc();
14320 
14321   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14322   QualType T = TInfo->getType();
14323   if (getLangOpts().CPlusPlus) {
14324     CheckExtraCXXDefaultArguments(D);
14325 
14326     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
14327                                         UPPC_DataMemberType)) {
14328       D.setInvalidType();
14329       T = Context.IntTy;
14330       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
14331     }
14332   }
14333 
14334   // TR 18037 does not allow fields to be declared with address spaces.
14335   if (T.getQualifiers().hasAddressSpace() ||
14336       T->isDependentAddressSpaceType() ||
14337       T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) {
14338     Diag(Loc, diag::err_field_with_address_space);
14339     D.setInvalidType();
14340   }
14341 
14342   // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
14343   // used as structure or union field: image, sampler, event or block types.
14344   if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() ||
14345                           T->isSamplerT() || T->isBlockPointerType())) {
14346     Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
14347     D.setInvalidType();
14348   }
14349 
14350   DiagnoseFunctionSpecifiers(D.getDeclSpec());
14351 
14352   if (D.getDeclSpec().isInlineSpecified())
14353     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
14354         << getLangOpts().CPlusPlus17;
14355   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
14356     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
14357          diag::err_invalid_thread)
14358       << DeclSpec::getSpecifierName(TSCS);
14359 
14360   // Check to see if this name was declared as a member previously
14361   NamedDecl *PrevDecl = nullptr;
14362   LookupResult Previous(*this, II, Loc, LookupMemberName,
14363                         ForVisibleRedeclaration);
14364   LookupName(Previous, S);
14365   switch (Previous.getResultKind()) {
14366     case LookupResult::Found:
14367     case LookupResult::FoundUnresolvedValue:
14368       PrevDecl = Previous.getAsSingle<NamedDecl>();
14369       break;
14370 
14371     case LookupResult::FoundOverloaded:
14372       PrevDecl = Previous.getRepresentativeDecl();
14373       break;
14374 
14375     case LookupResult::NotFound:
14376     case LookupResult::NotFoundInCurrentInstantiation:
14377     case LookupResult::Ambiguous:
14378       break;
14379   }
14380   Previous.suppressDiagnostics();
14381 
14382   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14383     // Maybe we will complain about the shadowed template parameter.
14384     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
14385     // Just pretend that we didn't see the previous declaration.
14386     PrevDecl = nullptr;
14387   }
14388 
14389   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
14390     PrevDecl = nullptr;
14391 
14392   bool Mutable
14393     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
14394   SourceLocation TSSL = D.getLocStart();
14395   FieldDecl *NewFD
14396     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
14397                      TSSL, AS, PrevDecl, &D);
14398 
14399   if (NewFD->isInvalidDecl())
14400     Record->setInvalidDecl();
14401 
14402   if (D.getDeclSpec().isModulePrivateSpecified())
14403     NewFD->setModulePrivate();
14404 
14405   if (NewFD->isInvalidDecl() && PrevDecl) {
14406     // Don't introduce NewFD into scope; there's already something
14407     // with the same name in the same scope.
14408   } else if (II) {
14409     PushOnScopeChains(NewFD, S);
14410   } else
14411     Record->addDecl(NewFD);
14412 
14413   return NewFD;
14414 }
14415 
14416 /// \brief Build a new FieldDecl and check its well-formedness.
14417 ///
14418 /// This routine builds a new FieldDecl given the fields name, type,
14419 /// record, etc. \p PrevDecl should refer to any previous declaration
14420 /// with the same name and in the same scope as the field to be
14421 /// created.
14422 ///
14423 /// \returns a new FieldDecl.
14424 ///
14425 /// \todo The Declarator argument is a hack. It will be removed once
14426 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
14427                                 TypeSourceInfo *TInfo,
14428                                 RecordDecl *Record, SourceLocation Loc,
14429                                 bool Mutable, Expr *BitWidth,
14430                                 InClassInitStyle InitStyle,
14431                                 SourceLocation TSSL,
14432                                 AccessSpecifier AS, NamedDecl *PrevDecl,
14433                                 Declarator *D) {
14434   IdentifierInfo *II = Name.getAsIdentifierInfo();
14435   bool InvalidDecl = false;
14436   if (D) InvalidDecl = D->isInvalidType();
14437 
14438   // If we receive a broken type, recover by assuming 'int' and
14439   // marking this declaration as invalid.
14440   if (T.isNull()) {
14441     InvalidDecl = true;
14442     T = Context.IntTy;
14443   }
14444 
14445   QualType EltTy = Context.getBaseElementType(T);
14446   if (!EltTy->isDependentType()) {
14447     if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
14448       // Fields of incomplete type force their record to be invalid.
14449       Record->setInvalidDecl();
14450       InvalidDecl = true;
14451     } else {
14452       NamedDecl *Def;
14453       EltTy->isIncompleteType(&Def);
14454       if (Def && Def->isInvalidDecl()) {
14455         Record->setInvalidDecl();
14456         InvalidDecl = true;
14457       }
14458     }
14459   }
14460 
14461   // OpenCL v1.2 s6.9.c: bitfields are not supported.
14462   if (BitWidth && getLangOpts().OpenCL) {
14463     Diag(Loc, diag::err_opencl_bitfields);
14464     InvalidDecl = true;
14465   }
14466 
14467   // C99 6.7.2.1p8: A member of a structure or union may have any type other
14468   // than a variably modified type.
14469   if (!InvalidDecl && T->isVariablyModifiedType()) {
14470     bool SizeIsNegative;
14471     llvm::APSInt Oversized;
14472 
14473     TypeSourceInfo *FixedTInfo =
14474       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
14475                                                     SizeIsNegative,
14476                                                     Oversized);
14477     if (FixedTInfo) {
14478       Diag(Loc, diag::warn_illegal_constant_array_size);
14479       TInfo = FixedTInfo;
14480       T = FixedTInfo->getType();
14481     } else {
14482       if (SizeIsNegative)
14483         Diag(Loc, diag::err_typecheck_negative_array_size);
14484       else if (Oversized.getBoolValue())
14485         Diag(Loc, diag::err_array_too_large)
14486           << Oversized.toString(10);
14487       else
14488         Diag(Loc, diag::err_typecheck_field_variable_size);
14489       InvalidDecl = true;
14490     }
14491   }
14492 
14493   // Fields can not have abstract class types
14494   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
14495                                              diag::err_abstract_type_in_decl,
14496                                              AbstractFieldType))
14497     InvalidDecl = true;
14498 
14499   bool ZeroWidth = false;
14500   if (InvalidDecl)
14501     BitWidth = nullptr;
14502   // If this is declared as a bit-field, check the bit-field.
14503   if (BitWidth) {
14504     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
14505                               &ZeroWidth).get();
14506     if (!BitWidth) {
14507       InvalidDecl = true;
14508       BitWidth = nullptr;
14509       ZeroWidth = false;
14510     }
14511   }
14512 
14513   // Check that 'mutable' is consistent with the type of the declaration.
14514   if (!InvalidDecl && Mutable) {
14515     unsigned DiagID = 0;
14516     if (T->isReferenceType())
14517       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
14518                                         : diag::err_mutable_reference;
14519     else if (T.isConstQualified())
14520       DiagID = diag::err_mutable_const;
14521 
14522     if (DiagID) {
14523       SourceLocation ErrLoc = Loc;
14524       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
14525         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
14526       Diag(ErrLoc, DiagID);
14527       if (DiagID != diag::ext_mutable_reference) {
14528         Mutable = false;
14529         InvalidDecl = true;
14530       }
14531     }
14532   }
14533 
14534   // C++11 [class.union]p8 (DR1460):
14535   //   At most one variant member of a union may have a
14536   //   brace-or-equal-initializer.
14537   if (InitStyle != ICIS_NoInit)
14538     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
14539 
14540   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
14541                                        BitWidth, Mutable, InitStyle);
14542   if (InvalidDecl)
14543     NewFD->setInvalidDecl();
14544 
14545   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
14546     Diag(Loc, diag::err_duplicate_member) << II;
14547     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
14548     NewFD->setInvalidDecl();
14549   }
14550 
14551   if (!InvalidDecl && getLangOpts().CPlusPlus) {
14552     if (Record->isUnion()) {
14553       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
14554         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
14555         if (RDecl->getDefinition()) {
14556           // C++ [class.union]p1: An object of a class with a non-trivial
14557           // constructor, a non-trivial copy constructor, a non-trivial
14558           // destructor, or a non-trivial copy assignment operator
14559           // cannot be a member of a union, nor can an array of such
14560           // objects.
14561           if (CheckNontrivialField(NewFD))
14562             NewFD->setInvalidDecl();
14563         }
14564       }
14565 
14566       // C++ [class.union]p1: If a union contains a member of reference type,
14567       // the program is ill-formed, except when compiling with MSVC extensions
14568       // enabled.
14569       if (EltTy->isReferenceType()) {
14570         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
14571                                     diag::ext_union_member_of_reference_type :
14572                                     diag::err_union_member_of_reference_type)
14573           << NewFD->getDeclName() << EltTy;
14574         if (!getLangOpts().MicrosoftExt)
14575           NewFD->setInvalidDecl();
14576       }
14577     }
14578   }
14579 
14580   // FIXME: We need to pass in the attributes given an AST
14581   // representation, not a parser representation.
14582   if (D) {
14583     // FIXME: The current scope is almost... but not entirely... correct here.
14584     ProcessDeclAttributes(getCurScope(), NewFD, *D);
14585 
14586     if (NewFD->hasAttrs())
14587       CheckAlignasUnderalignment(NewFD);
14588   }
14589 
14590   // In auto-retain/release, infer strong retension for fields of
14591   // retainable type.
14592   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
14593     NewFD->setInvalidDecl();
14594 
14595   if (T.isObjCGCWeak())
14596     Diag(Loc, diag::warn_attribute_weak_on_field);
14597 
14598   NewFD->setAccess(AS);
14599   return NewFD;
14600 }
14601 
14602 bool Sema::CheckNontrivialField(FieldDecl *FD) {
14603   assert(FD);
14604   assert(getLangOpts().CPlusPlus && "valid check only for C++");
14605 
14606   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
14607     return false;
14608 
14609   QualType EltTy = Context.getBaseElementType(FD->getType());
14610   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
14611     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
14612     if (RDecl->getDefinition()) {
14613       // We check for copy constructors before constructors
14614       // because otherwise we'll never get complaints about
14615       // copy constructors.
14616 
14617       CXXSpecialMember member = CXXInvalid;
14618       // We're required to check for any non-trivial constructors. Since the
14619       // implicit default constructor is suppressed if there are any
14620       // user-declared constructors, we just need to check that there is a
14621       // trivial default constructor and a trivial copy constructor. (We don't
14622       // worry about move constructors here, since this is a C++98 check.)
14623       if (RDecl->hasNonTrivialCopyConstructor())
14624         member = CXXCopyConstructor;
14625       else if (!RDecl->hasTrivialDefaultConstructor())
14626         member = CXXDefaultConstructor;
14627       else if (RDecl->hasNonTrivialCopyAssignment())
14628         member = CXXCopyAssignment;
14629       else if (RDecl->hasNonTrivialDestructor())
14630         member = CXXDestructor;
14631 
14632       if (member != CXXInvalid) {
14633         if (!getLangOpts().CPlusPlus11 &&
14634             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
14635           // Objective-C++ ARC: it is an error to have a non-trivial field of
14636           // a union. However, system headers in Objective-C programs
14637           // occasionally have Objective-C lifetime objects within unions,
14638           // and rather than cause the program to fail, we make those
14639           // members unavailable.
14640           SourceLocation Loc = FD->getLocation();
14641           if (getSourceManager().isInSystemHeader(Loc)) {
14642             if (!FD->hasAttr<UnavailableAttr>())
14643               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
14644                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
14645             return false;
14646           }
14647         }
14648 
14649         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
14650                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
14651                diag::err_illegal_union_or_anon_struct_member)
14652           << FD->getParent()->isUnion() << FD->getDeclName() << member;
14653         DiagnoseNontrivial(RDecl, member);
14654         return !getLangOpts().CPlusPlus11;
14655       }
14656     }
14657   }
14658 
14659   return false;
14660 }
14661 
14662 /// TranslateIvarVisibility - Translate visibility from a token ID to an
14663 ///  AST enum value.
14664 static ObjCIvarDecl::AccessControl
14665 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
14666   switch (ivarVisibility) {
14667   default: llvm_unreachable("Unknown visitibility kind");
14668   case tok::objc_private: return ObjCIvarDecl::Private;
14669   case tok::objc_public: return ObjCIvarDecl::Public;
14670   case tok::objc_protected: return ObjCIvarDecl::Protected;
14671   case tok::objc_package: return ObjCIvarDecl::Package;
14672   }
14673 }
14674 
14675 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
14676 /// in order to create an IvarDecl object for it.
14677 Decl *Sema::ActOnIvar(Scope *S,
14678                                 SourceLocation DeclStart,
14679                                 Declarator &D, Expr *BitfieldWidth,
14680                                 tok::ObjCKeywordKind Visibility) {
14681 
14682   IdentifierInfo *II = D.getIdentifier();
14683   Expr *BitWidth = (Expr*)BitfieldWidth;
14684   SourceLocation Loc = DeclStart;
14685   if (II) Loc = D.getIdentifierLoc();
14686 
14687   // FIXME: Unnamed fields can be handled in various different ways, for
14688   // example, unnamed unions inject all members into the struct namespace!
14689 
14690   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14691   QualType T = TInfo->getType();
14692 
14693   if (BitWidth) {
14694     // 6.7.2.1p3, 6.7.2.1p4
14695     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
14696     if (!BitWidth)
14697       D.setInvalidType();
14698   } else {
14699     // Not a bitfield.
14700 
14701     // validate II.
14702 
14703   }
14704   if (T->isReferenceType()) {
14705     Diag(Loc, diag::err_ivar_reference_type);
14706     D.setInvalidType();
14707   }
14708   // C99 6.7.2.1p8: A member of a structure or union may have any type other
14709   // than a variably modified type.
14710   else if (T->isVariablyModifiedType()) {
14711     Diag(Loc, diag::err_typecheck_ivar_variable_size);
14712     D.setInvalidType();
14713   }
14714 
14715   // Get the visibility (access control) for this ivar.
14716   ObjCIvarDecl::AccessControl ac =
14717     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
14718                                         : ObjCIvarDecl::None;
14719   // Must set ivar's DeclContext to its enclosing interface.
14720   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
14721   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
14722     return nullptr;
14723   ObjCContainerDecl *EnclosingContext;
14724   if (ObjCImplementationDecl *IMPDecl =
14725       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
14726     if (LangOpts.ObjCRuntime.isFragile()) {
14727     // Case of ivar declared in an implementation. Context is that of its class.
14728       EnclosingContext = IMPDecl->getClassInterface();
14729       assert(EnclosingContext && "Implementation has no class interface!");
14730     }
14731     else
14732       EnclosingContext = EnclosingDecl;
14733   } else {
14734     if (ObjCCategoryDecl *CDecl =
14735         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
14736       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
14737         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
14738         return nullptr;
14739       }
14740     }
14741     EnclosingContext = EnclosingDecl;
14742   }
14743 
14744   // Construct the decl.
14745   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
14746                                              DeclStart, Loc, II, T,
14747                                              TInfo, ac, (Expr *)BitfieldWidth);
14748 
14749   if (II) {
14750     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
14751                                            ForVisibleRedeclaration);
14752     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
14753         && !isa<TagDecl>(PrevDecl)) {
14754       Diag(Loc, diag::err_duplicate_member) << II;
14755       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
14756       NewID->setInvalidDecl();
14757     }
14758   }
14759 
14760   // Process attributes attached to the ivar.
14761   ProcessDeclAttributes(S, NewID, D);
14762 
14763   if (D.isInvalidType())
14764     NewID->setInvalidDecl();
14765 
14766   // In ARC, infer 'retaining' for ivars of retainable type.
14767   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
14768     NewID->setInvalidDecl();
14769 
14770   if (D.getDeclSpec().isModulePrivateSpecified())
14771     NewID->setModulePrivate();
14772 
14773   if (II) {
14774     // FIXME: When interfaces are DeclContexts, we'll need to add
14775     // these to the interface.
14776     S->AddDecl(NewID);
14777     IdResolver.AddDecl(NewID);
14778   }
14779 
14780   if (LangOpts.ObjCRuntime.isNonFragile() &&
14781       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
14782     Diag(Loc, diag::warn_ivars_in_interface);
14783 
14784   return NewID;
14785 }
14786 
14787 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for
14788 /// class and class extensions. For every class \@interface and class
14789 /// extension \@interface, if the last ivar is a bitfield of any type,
14790 /// then add an implicit `char :0` ivar to the end of that interface.
14791 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
14792                              SmallVectorImpl<Decl *> &AllIvarDecls) {
14793   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
14794     return;
14795 
14796   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
14797   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
14798 
14799   if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
14800     return;
14801   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
14802   if (!ID) {
14803     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
14804       if (!CD->IsClassExtension())
14805         return;
14806     }
14807     // No need to add this to end of @implementation.
14808     else
14809       return;
14810   }
14811   // All conditions are met. Add a new bitfield to the tail end of ivars.
14812   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
14813   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
14814 
14815   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
14816                               DeclLoc, DeclLoc, nullptr,
14817                               Context.CharTy,
14818                               Context.getTrivialTypeSourceInfo(Context.CharTy,
14819                                                                DeclLoc),
14820                               ObjCIvarDecl::Private, BW,
14821                               true);
14822   AllIvarDecls.push_back(Ivar);
14823 }
14824 
14825 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
14826                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
14827                        SourceLocation RBrac, AttributeList *Attr) {
14828   assert(EnclosingDecl && "missing record or interface decl");
14829 
14830   // If this is an Objective-C @implementation or category and we have
14831   // new fields here we should reset the layout of the interface since
14832   // it will now change.
14833   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
14834     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
14835     switch (DC->getKind()) {
14836     default: break;
14837     case Decl::ObjCCategory:
14838       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
14839       break;
14840     case Decl::ObjCImplementation:
14841       Context.
14842         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
14843       break;
14844     }
14845   }
14846 
14847   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
14848 
14849   // Start counting up the number of named members; make sure to include
14850   // members of anonymous structs and unions in the total.
14851   unsigned NumNamedMembers = 0;
14852   if (Record) {
14853     for (const auto *I : Record->decls()) {
14854       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
14855         if (IFD->getDeclName())
14856           ++NumNamedMembers;
14857     }
14858   }
14859 
14860   // Verify that all the fields are okay.
14861   SmallVector<FieldDecl*, 32> RecFields;
14862 
14863   bool ObjCFieldLifetimeErrReported = false;
14864   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
14865        i != end; ++i) {
14866     FieldDecl *FD = cast<FieldDecl>(*i);
14867 
14868     // Get the type for the field.
14869     const Type *FDTy = FD->getType().getTypePtr();
14870 
14871     if (!FD->isAnonymousStructOrUnion()) {
14872       // Remember all fields written by the user.
14873       RecFields.push_back(FD);
14874     }
14875 
14876     // If the field is already invalid for some reason, don't emit more
14877     // diagnostics about it.
14878     if (FD->isInvalidDecl()) {
14879       EnclosingDecl->setInvalidDecl();
14880       continue;
14881     }
14882 
14883     // C99 6.7.2.1p2:
14884     //   A structure or union shall not contain a member with
14885     //   incomplete or function type (hence, a structure shall not
14886     //   contain an instance of itself, but may contain a pointer to
14887     //   an instance of itself), except that the last member of a
14888     //   structure with more than one named member may have incomplete
14889     //   array type; such a structure (and any union containing,
14890     //   possibly recursively, a member that is such a structure)
14891     //   shall not be a member of a structure or an element of an
14892     //   array.
14893     bool IsLastField = (i + 1 == Fields.end());
14894     if (FDTy->isFunctionType()) {
14895       // Field declared as a function.
14896       Diag(FD->getLocation(), diag::err_field_declared_as_function)
14897         << FD->getDeclName();
14898       FD->setInvalidDecl();
14899       EnclosingDecl->setInvalidDecl();
14900       continue;
14901     } else if (FDTy->isIncompleteArrayType() &&
14902                (Record || isa<ObjCContainerDecl>(EnclosingDecl))) {
14903       if (Record) {
14904         // Flexible array member.
14905         // Microsoft and g++ is more permissive regarding flexible array.
14906         // It will accept flexible array in union and also
14907         // as the sole element of a struct/class.
14908         unsigned DiagID = 0;
14909         if (!Record->isUnion() && !IsLastField) {
14910           Diag(FD->getLocation(), diag::err_flexible_array_not_at_end)
14911             << FD->getDeclName() << FD->getType() << Record->getTagKind();
14912           Diag((*(i + 1))->getLocation(), diag::note_next_field_declaration);
14913           FD->setInvalidDecl();
14914           EnclosingDecl->setInvalidDecl();
14915           continue;
14916         } else if (Record->isUnion())
14917           DiagID = getLangOpts().MicrosoftExt
14918                        ? diag::ext_flexible_array_union_ms
14919                        : getLangOpts().CPlusPlus
14920                              ? diag::ext_flexible_array_union_gnu
14921                              : diag::err_flexible_array_union;
14922         else if (NumNamedMembers < 1)
14923           DiagID = getLangOpts().MicrosoftExt
14924                        ? diag::ext_flexible_array_empty_aggregate_ms
14925                        : getLangOpts().CPlusPlus
14926                              ? diag::ext_flexible_array_empty_aggregate_gnu
14927                              : diag::err_flexible_array_empty_aggregate;
14928 
14929         if (DiagID)
14930           Diag(FD->getLocation(), DiagID) << FD->getDeclName()
14931                                           << Record->getTagKind();
14932         // While the layout of types that contain virtual bases is not specified
14933         // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
14934         // virtual bases after the derived members.  This would make a flexible
14935         // array member declared at the end of an object not adjacent to the end
14936         // of the type.
14937         if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
14938           if (RD->getNumVBases() != 0)
14939             Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
14940               << FD->getDeclName() << Record->getTagKind();
14941         if (!getLangOpts().C99)
14942           Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
14943             << FD->getDeclName() << Record->getTagKind();
14944 
14945         // If the element type has a non-trivial destructor, we would not
14946         // implicitly destroy the elements, so disallow it for now.
14947         //
14948         // FIXME: GCC allows this. We should probably either implicitly delete
14949         // the destructor of the containing class, or just allow this.
14950         QualType BaseElem = Context.getBaseElementType(FD->getType());
14951         if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
14952           Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
14953             << FD->getDeclName() << FD->getType();
14954           FD->setInvalidDecl();
14955           EnclosingDecl->setInvalidDecl();
14956           continue;
14957         }
14958         // Okay, we have a legal flexible array member at the end of the struct.
14959         Record->setHasFlexibleArrayMember(true);
14960       } else {
14961         // In ObjCContainerDecl ivars with incomplete array type are accepted,
14962         // unless they are followed by another ivar. That check is done
14963         // elsewhere, after synthesized ivars are known.
14964       }
14965     } else if (!FDTy->isDependentType() &&
14966                RequireCompleteType(FD->getLocation(), FD->getType(),
14967                                    diag::err_field_incomplete)) {
14968       // Incomplete type
14969       FD->setInvalidDecl();
14970       EnclosingDecl->setInvalidDecl();
14971       continue;
14972     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
14973       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
14974         // A type which contains a flexible array member is considered to be a
14975         // flexible array member.
14976         Record->setHasFlexibleArrayMember(true);
14977         if (!Record->isUnion()) {
14978           // If this is a struct/class and this is not the last element, reject
14979           // it.  Note that GCC supports variable sized arrays in the middle of
14980           // structures.
14981           if (!IsLastField)
14982             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
14983               << FD->getDeclName() << FD->getType();
14984           else {
14985             // We support flexible arrays at the end of structs in
14986             // other structs as an extension.
14987             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
14988               << FD->getDeclName();
14989           }
14990         }
14991       }
14992       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
14993           RequireNonAbstractType(FD->getLocation(), FD->getType(),
14994                                  diag::err_abstract_type_in_decl,
14995                                  AbstractIvarType)) {
14996         // Ivars can not have abstract class types
14997         FD->setInvalidDecl();
14998       }
14999       if (Record && FDTTy->getDecl()->hasObjectMember())
15000         Record->setHasObjectMember(true);
15001       if (Record && FDTTy->getDecl()->hasVolatileMember())
15002         Record->setHasVolatileMember(true);
15003     } else if (FDTy->isObjCObjectType()) {
15004       /// A field cannot be an Objective-c object
15005       Diag(FD->getLocation(), diag::err_statically_allocated_object)
15006         << FixItHint::CreateInsertion(FD->getLocation(), "*");
15007       QualType T = Context.getObjCObjectPointerType(FD->getType());
15008       FD->setType(T);
15009     } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
15010                Record && !ObjCFieldLifetimeErrReported &&
15011                (!getLangOpts().CPlusPlus || Record->isUnion())) {
15012       // It's an error in ARC or Weak if a field has lifetime.
15013       // We don't want to report this in a system header, though,
15014       // so we just make the field unavailable.
15015       // FIXME: that's really not sufficient; we need to make the type
15016       // itself invalid to, say, initialize or copy.
15017       QualType T = FD->getType();
15018       if (T.hasNonTrivialObjCLifetime()) {
15019         SourceLocation loc = FD->getLocation();
15020         if (getSourceManager().isInSystemHeader(loc)) {
15021           if (!FD->hasAttr<UnavailableAttr>()) {
15022             FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
15023                           UnavailableAttr::IR_ARCFieldWithOwnership, loc));
15024           }
15025         } else {
15026           Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag)
15027             << T->isBlockPointerType() << Record->getTagKind();
15028         }
15029         ObjCFieldLifetimeErrReported = true;
15030       }
15031     } else if (getLangOpts().ObjC1 &&
15032                getLangOpts().getGC() != LangOptions::NonGC &&
15033                Record && !Record->hasObjectMember()) {
15034       if (FD->getType()->isObjCObjectPointerType() ||
15035           FD->getType().isObjCGCStrong())
15036         Record->setHasObjectMember(true);
15037       else if (Context.getAsArrayType(FD->getType())) {
15038         QualType BaseType = Context.getBaseElementType(FD->getType());
15039         if (BaseType->isRecordType() &&
15040             BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
15041           Record->setHasObjectMember(true);
15042         else if (BaseType->isObjCObjectPointerType() ||
15043                  BaseType.isObjCGCStrong())
15044                Record->setHasObjectMember(true);
15045       }
15046     }
15047     if (Record && FD->getType().isVolatileQualified())
15048       Record->setHasVolatileMember(true);
15049     // Keep track of the number of named members.
15050     if (FD->getIdentifier())
15051       ++NumNamedMembers;
15052   }
15053 
15054   // Okay, we successfully defined 'Record'.
15055   if (Record) {
15056     bool Completed = false;
15057     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15058       if (!CXXRecord->isInvalidDecl()) {
15059         // Set access bits correctly on the directly-declared conversions.
15060         for (CXXRecordDecl::conversion_iterator
15061                I = CXXRecord->conversion_begin(),
15062                E = CXXRecord->conversion_end(); I != E; ++I)
15063           I.setAccess((*I)->getAccess());
15064       }
15065 
15066       if (!CXXRecord->isDependentType()) {
15067         if (CXXRecord->hasUserDeclaredDestructor()) {
15068           // Adjust user-defined destructor exception spec.
15069           if (getLangOpts().CPlusPlus11)
15070             AdjustDestructorExceptionSpec(CXXRecord,
15071                                           CXXRecord->getDestructor());
15072         }
15073 
15074         if (!CXXRecord->isInvalidDecl()) {
15075           // Add any implicitly-declared members to this class.
15076           AddImplicitlyDeclaredMembersToClass(CXXRecord);
15077 
15078           // If we have virtual base classes, we may end up finding multiple
15079           // final overriders for a given virtual function. Check for this
15080           // problem now.
15081           if (CXXRecord->getNumVBases()) {
15082             CXXFinalOverriderMap FinalOverriders;
15083             CXXRecord->getFinalOverriders(FinalOverriders);
15084 
15085             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
15086                                              MEnd = FinalOverriders.end();
15087                  M != MEnd; ++M) {
15088               for (OverridingMethods::iterator SO = M->second.begin(),
15089                                             SOEnd = M->second.end();
15090                    SO != SOEnd; ++SO) {
15091                 assert(SO->second.size() > 0 &&
15092                        "Virtual function without overridding functions?");
15093                 if (SO->second.size() == 1)
15094                   continue;
15095 
15096                 // C++ [class.virtual]p2:
15097                 //   In a derived class, if a virtual member function of a base
15098                 //   class subobject has more than one final overrider the
15099                 //   program is ill-formed.
15100                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
15101                   << (const NamedDecl *)M->first << Record;
15102                 Diag(M->first->getLocation(),
15103                      diag::note_overridden_virtual_function);
15104                 for (OverridingMethods::overriding_iterator
15105                           OM = SO->second.begin(),
15106                        OMEnd = SO->second.end();
15107                      OM != OMEnd; ++OM)
15108                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
15109                     << (const NamedDecl *)M->first << OM->Method->getParent();
15110 
15111                 Record->setInvalidDecl();
15112               }
15113             }
15114             CXXRecord->completeDefinition(&FinalOverriders);
15115             Completed = true;
15116           }
15117         }
15118       }
15119     }
15120 
15121     if (!Completed)
15122       Record->completeDefinition();
15123 
15124     // We may have deferred checking for a deleted destructor. Check now.
15125     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15126       auto *Dtor = CXXRecord->getDestructor();
15127       if (Dtor && Dtor->isImplicit() &&
15128           ShouldDeleteSpecialMember(Dtor, CXXDestructor)) {
15129         CXXRecord->setImplicitDestructorIsDeleted();
15130         SetDeclDeleted(Dtor, CXXRecord->getLocation());
15131       }
15132     }
15133 
15134     if (Record->hasAttrs()) {
15135       CheckAlignasUnderalignment(Record);
15136 
15137       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
15138         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
15139                                            IA->getRange(), IA->getBestCase(),
15140                                            IA->getSemanticSpelling());
15141     }
15142 
15143     // Check if the structure/union declaration is a type that can have zero
15144     // size in C. For C this is a language extension, for C++ it may cause
15145     // compatibility problems.
15146     bool CheckForZeroSize;
15147     if (!getLangOpts().CPlusPlus) {
15148       CheckForZeroSize = true;
15149     } else {
15150       // For C++ filter out types that cannot be referenced in C code.
15151       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
15152       CheckForZeroSize =
15153           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
15154           !CXXRecord->isDependentType() &&
15155           CXXRecord->isCLike();
15156     }
15157     if (CheckForZeroSize) {
15158       bool ZeroSize = true;
15159       bool IsEmpty = true;
15160       unsigned NonBitFields = 0;
15161       for (RecordDecl::field_iterator I = Record->field_begin(),
15162                                       E = Record->field_end();
15163            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
15164         IsEmpty = false;
15165         if (I->isUnnamedBitfield()) {
15166           if (I->getBitWidthValue(Context) > 0)
15167             ZeroSize = false;
15168         } else {
15169           ++NonBitFields;
15170           QualType FieldType = I->getType();
15171           if (FieldType->isIncompleteType() ||
15172               !Context.getTypeSizeInChars(FieldType).isZero())
15173             ZeroSize = false;
15174         }
15175       }
15176 
15177       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
15178       // allowed in C++, but warn if its declaration is inside
15179       // extern "C" block.
15180       if (ZeroSize) {
15181         Diag(RecLoc, getLangOpts().CPlusPlus ?
15182                          diag::warn_zero_size_struct_union_in_extern_c :
15183                          diag::warn_zero_size_struct_union_compat)
15184           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
15185       }
15186 
15187       // Structs without named members are extension in C (C99 6.7.2.1p7),
15188       // but are accepted by GCC.
15189       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
15190         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
15191                                diag::ext_no_named_members_in_struct_union)
15192           << Record->isUnion();
15193       }
15194     }
15195   } else {
15196     ObjCIvarDecl **ClsFields =
15197       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
15198     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
15199       ID->setEndOfDefinitionLoc(RBrac);
15200       // Add ivar's to class's DeclContext.
15201       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15202         ClsFields[i]->setLexicalDeclContext(ID);
15203         ID->addDecl(ClsFields[i]);
15204       }
15205       // Must enforce the rule that ivars in the base classes may not be
15206       // duplicates.
15207       if (ID->getSuperClass())
15208         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
15209     } else if (ObjCImplementationDecl *IMPDecl =
15210                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
15211       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
15212       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
15213         // Ivar declared in @implementation never belongs to the implementation.
15214         // Only it is in implementation's lexical context.
15215         ClsFields[I]->setLexicalDeclContext(IMPDecl);
15216       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
15217       IMPDecl->setIvarLBraceLoc(LBrac);
15218       IMPDecl->setIvarRBraceLoc(RBrac);
15219     } else if (ObjCCategoryDecl *CDecl =
15220                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
15221       // case of ivars in class extension; all other cases have been
15222       // reported as errors elsewhere.
15223       // FIXME. Class extension does not have a LocEnd field.
15224       // CDecl->setLocEnd(RBrac);
15225       // Add ivar's to class extension's DeclContext.
15226       // Diagnose redeclaration of private ivars.
15227       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
15228       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15229         if (IDecl) {
15230           if (const ObjCIvarDecl *ClsIvar =
15231               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
15232             Diag(ClsFields[i]->getLocation(),
15233                  diag::err_duplicate_ivar_declaration);
15234             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
15235             continue;
15236           }
15237           for (const auto *Ext : IDecl->known_extensions()) {
15238             if (const ObjCIvarDecl *ClsExtIvar
15239                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
15240               Diag(ClsFields[i]->getLocation(),
15241                    diag::err_duplicate_ivar_declaration);
15242               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
15243               continue;
15244             }
15245           }
15246         }
15247         ClsFields[i]->setLexicalDeclContext(CDecl);
15248         CDecl->addDecl(ClsFields[i]);
15249       }
15250       CDecl->setIvarLBraceLoc(LBrac);
15251       CDecl->setIvarRBraceLoc(RBrac);
15252     }
15253   }
15254 
15255   if (Attr)
15256     ProcessDeclAttributeList(S, Record, Attr);
15257 }
15258 
15259 /// \brief Determine whether the given integral value is representable within
15260 /// the given type T.
15261 static bool isRepresentableIntegerValue(ASTContext &Context,
15262                                         llvm::APSInt &Value,
15263                                         QualType T) {
15264   assert((T->isIntegralType(Context) || T->isEnumeralType()) &&
15265          "Integral type required!");
15266   unsigned BitWidth = Context.getIntWidth(T);
15267 
15268   if (Value.isUnsigned() || Value.isNonNegative()) {
15269     if (T->isSignedIntegerOrEnumerationType())
15270       --BitWidth;
15271     return Value.getActiveBits() <= BitWidth;
15272   }
15273   return Value.getMinSignedBits() <= BitWidth;
15274 }
15275 
15276 // \brief Given an integral type, return the next larger integral type
15277 // (or a NULL type of no such type exists).
15278 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
15279   // FIXME: Int128/UInt128 support, which also needs to be introduced into
15280   // enum checking below.
15281   assert((T->isIntegralType(Context) ||
15282          T->isEnumeralType()) && "Integral type required!");
15283   const unsigned NumTypes = 4;
15284   QualType SignedIntegralTypes[NumTypes] = {
15285     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
15286   };
15287   QualType UnsignedIntegralTypes[NumTypes] = {
15288     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
15289     Context.UnsignedLongLongTy
15290   };
15291 
15292   unsigned BitWidth = Context.getTypeSize(T);
15293   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
15294                                                         : UnsignedIntegralTypes;
15295   for (unsigned I = 0; I != NumTypes; ++I)
15296     if (Context.getTypeSize(Types[I]) > BitWidth)
15297       return Types[I];
15298 
15299   return QualType();
15300 }
15301 
15302 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
15303                                           EnumConstantDecl *LastEnumConst,
15304                                           SourceLocation IdLoc,
15305                                           IdentifierInfo *Id,
15306                                           Expr *Val) {
15307   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
15308   llvm::APSInt EnumVal(IntWidth);
15309   QualType EltTy;
15310 
15311   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
15312     Val = nullptr;
15313 
15314   if (Val)
15315     Val = DefaultLvalueConversion(Val).get();
15316 
15317   if (Val) {
15318     if (Enum->isDependentType() || Val->isTypeDependent())
15319       EltTy = Context.DependentTy;
15320     else {
15321       if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
15322           !getLangOpts().MSVCCompat) {
15323         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
15324         // constant-expression in the enumerator-definition shall be a converted
15325         // constant expression of the underlying type.
15326         EltTy = Enum->getIntegerType();
15327         ExprResult Converted =
15328           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
15329                                            CCEK_Enumerator);
15330         if (Converted.isInvalid())
15331           Val = nullptr;
15332         else
15333           Val = Converted.get();
15334       } else if (!Val->isValueDependent() &&
15335                  !(Val = VerifyIntegerConstantExpression(Val,
15336                                                          &EnumVal).get())) {
15337         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
15338       } else {
15339         if (Enum->isFixed()) {
15340           EltTy = Enum->getIntegerType();
15341 
15342           // In Obj-C and Microsoft mode, require the enumeration value to be
15343           // representable in the underlying type of the enumeration. In C++11,
15344           // we perform a non-narrowing conversion as part of converted constant
15345           // expression checking.
15346           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15347             if (getLangOpts().MSVCCompat) {
15348               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
15349               Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
15350             } else
15351               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
15352           } else
15353             Val = ImpCastExprToType(Val, EltTy,
15354                                     EltTy->isBooleanType() ?
15355                                     CK_IntegralToBoolean : CK_IntegralCast)
15356                     .get();
15357         } else if (getLangOpts().CPlusPlus) {
15358           // C++11 [dcl.enum]p5:
15359           //   If the underlying type is not fixed, the type of each enumerator
15360           //   is the type of its initializing value:
15361           //     - If an initializer is specified for an enumerator, the
15362           //       initializing value has the same type as the expression.
15363           EltTy = Val->getType();
15364         } else {
15365           // C99 6.7.2.2p2:
15366           //   The expression that defines the value of an enumeration constant
15367           //   shall be an integer constant expression that has a value
15368           //   representable as an int.
15369 
15370           // Complain if the value is not representable in an int.
15371           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
15372             Diag(IdLoc, diag::ext_enum_value_not_int)
15373               << EnumVal.toString(10) << Val->getSourceRange()
15374               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
15375           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
15376             // Force the type of the expression to 'int'.
15377             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
15378           }
15379           EltTy = Val->getType();
15380         }
15381       }
15382     }
15383   }
15384 
15385   if (!Val) {
15386     if (Enum->isDependentType())
15387       EltTy = Context.DependentTy;
15388     else if (!LastEnumConst) {
15389       // C++0x [dcl.enum]p5:
15390       //   If the underlying type is not fixed, the type of each enumerator
15391       //   is the type of its initializing value:
15392       //     - If no initializer is specified for the first enumerator, the
15393       //       initializing value has an unspecified integral type.
15394       //
15395       // GCC uses 'int' for its unspecified integral type, as does
15396       // C99 6.7.2.2p3.
15397       if (Enum->isFixed()) {
15398         EltTy = Enum->getIntegerType();
15399       }
15400       else {
15401         EltTy = Context.IntTy;
15402       }
15403     } else {
15404       // Assign the last value + 1.
15405       EnumVal = LastEnumConst->getInitVal();
15406       ++EnumVal;
15407       EltTy = LastEnumConst->getType();
15408 
15409       // Check for overflow on increment.
15410       if (EnumVal < LastEnumConst->getInitVal()) {
15411         // C++0x [dcl.enum]p5:
15412         //   If the underlying type is not fixed, the type of each enumerator
15413         //   is the type of its initializing value:
15414         //
15415         //     - Otherwise the type of the initializing value is the same as
15416         //       the type of the initializing value of the preceding enumerator
15417         //       unless the incremented value is not representable in that type,
15418         //       in which case the type is an unspecified integral type
15419         //       sufficient to contain the incremented value. If no such type
15420         //       exists, the program is ill-formed.
15421         QualType T = getNextLargerIntegralType(Context, EltTy);
15422         if (T.isNull() || Enum->isFixed()) {
15423           // There is no integral type larger enough to represent this
15424           // value. Complain, then allow the value to wrap around.
15425           EnumVal = LastEnumConst->getInitVal();
15426           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
15427           ++EnumVal;
15428           if (Enum->isFixed())
15429             // When the underlying type is fixed, this is ill-formed.
15430             Diag(IdLoc, diag::err_enumerator_wrapped)
15431               << EnumVal.toString(10)
15432               << EltTy;
15433           else
15434             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
15435               << EnumVal.toString(10);
15436         } else {
15437           EltTy = T;
15438         }
15439 
15440         // Retrieve the last enumerator's value, extent that type to the
15441         // type that is supposed to be large enough to represent the incremented
15442         // value, then increment.
15443         EnumVal = LastEnumConst->getInitVal();
15444         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15445         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
15446         ++EnumVal;
15447 
15448         // If we're not in C++, diagnose the overflow of enumerator values,
15449         // which in C99 means that the enumerator value is not representable in
15450         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
15451         // permits enumerator values that are representable in some larger
15452         // integral type.
15453         if (!getLangOpts().CPlusPlus && !T.isNull())
15454           Diag(IdLoc, diag::warn_enum_value_overflow);
15455       } else if (!getLangOpts().CPlusPlus &&
15456                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15457         // Enforce C99 6.7.2.2p2 even when we compute the next value.
15458         Diag(IdLoc, diag::ext_enum_value_not_int)
15459           << EnumVal.toString(10) << 1;
15460       }
15461     }
15462   }
15463 
15464   if (!EltTy->isDependentType()) {
15465     // Make the enumerator value match the signedness and size of the
15466     // enumerator's type.
15467     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
15468     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15469   }
15470 
15471   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
15472                                   Val, EnumVal);
15473 }
15474 
15475 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
15476                                                 SourceLocation IILoc) {
15477   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
15478       !getLangOpts().CPlusPlus)
15479     return SkipBodyInfo();
15480 
15481   // We have an anonymous enum definition. Look up the first enumerator to
15482   // determine if we should merge the definition with an existing one and
15483   // skip the body.
15484   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
15485                                          forRedeclarationInCurContext());
15486   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
15487   if (!PrevECD)
15488     return SkipBodyInfo();
15489 
15490   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
15491   NamedDecl *Hidden;
15492   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
15493     SkipBodyInfo Skip;
15494     Skip.Previous = Hidden;
15495     return Skip;
15496   }
15497 
15498   return SkipBodyInfo();
15499 }
15500 
15501 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
15502                               SourceLocation IdLoc, IdentifierInfo *Id,
15503                               AttributeList *Attr,
15504                               SourceLocation EqualLoc, Expr *Val) {
15505   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
15506   EnumConstantDecl *LastEnumConst =
15507     cast_or_null<EnumConstantDecl>(lastEnumConst);
15508 
15509   // The scope passed in may not be a decl scope.  Zip up the scope tree until
15510   // we find one that is.
15511   S = getNonFieldDeclScope(S);
15512 
15513   // Verify that there isn't already something declared with this name in this
15514   // scope.
15515   NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
15516                                          ForVisibleRedeclaration);
15517   if (PrevDecl && PrevDecl->isTemplateParameter()) {
15518     // Maybe we will complain about the shadowed template parameter.
15519     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
15520     // Just pretend that we didn't see the previous declaration.
15521     PrevDecl = nullptr;
15522   }
15523 
15524   // C++ [class.mem]p15:
15525   // If T is the name of a class, then each of the following shall have a name
15526   // different from T:
15527   // - every enumerator of every member of class T that is an unscoped
15528   // enumerated type
15529   if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped())
15530     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
15531                             DeclarationNameInfo(Id, IdLoc));
15532 
15533   EnumConstantDecl *New =
15534     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
15535   if (!New)
15536     return nullptr;
15537 
15538   if (PrevDecl) {
15539     // When in C++, we may get a TagDecl with the same name; in this case the
15540     // enum constant will 'hide' the tag.
15541     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
15542            "Received TagDecl when not in C++!");
15543     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
15544       if (isa<EnumConstantDecl>(PrevDecl))
15545         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
15546       else
15547         Diag(IdLoc, diag::err_redefinition) << Id;
15548       notePreviousDefinition(PrevDecl, IdLoc);
15549       return nullptr;
15550     }
15551   }
15552 
15553   // Process attributes.
15554   if (Attr) ProcessDeclAttributeList(S, New, Attr);
15555   AddPragmaAttributes(S, New);
15556 
15557   // Register this decl in the current scope stack.
15558   New->setAccess(TheEnumDecl->getAccess());
15559   PushOnScopeChains(New, S);
15560 
15561   ActOnDocumentableDecl(New);
15562 
15563   return New;
15564 }
15565 
15566 // Returns true when the enum initial expression does not trigger the
15567 // duplicate enum warning.  A few common cases are exempted as follows:
15568 // Element2 = Element1
15569 // Element2 = Element1 + 1
15570 // Element2 = Element1 - 1
15571 // Where Element2 and Element1 are from the same enum.
15572 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
15573   Expr *InitExpr = ECD->getInitExpr();
15574   if (!InitExpr)
15575     return true;
15576   InitExpr = InitExpr->IgnoreImpCasts();
15577 
15578   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
15579     if (!BO->isAdditiveOp())
15580       return true;
15581     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
15582     if (!IL)
15583       return true;
15584     if (IL->getValue() != 1)
15585       return true;
15586 
15587     InitExpr = BO->getLHS();
15588   }
15589 
15590   // This checks if the elements are from the same enum.
15591   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
15592   if (!DRE)
15593     return true;
15594 
15595   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
15596   if (!EnumConstant)
15597     return true;
15598 
15599   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
15600       Enum)
15601     return true;
15602 
15603   return false;
15604 }
15605 
15606 namespace {
15607 struct DupKey {
15608   int64_t val;
15609   bool isTombstoneOrEmptyKey;
15610   DupKey(int64_t val, bool isTombstoneOrEmptyKey)
15611     : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
15612 };
15613 
15614 static DupKey GetDupKey(const llvm::APSInt& Val) {
15615   return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
15616                 false);
15617 }
15618 
15619 struct DenseMapInfoDupKey {
15620   static DupKey getEmptyKey() { return DupKey(0, true); }
15621   static DupKey getTombstoneKey() { return DupKey(1, true); }
15622   static unsigned getHashValue(const DupKey Key) {
15623     return (unsigned)(Key.val * 37);
15624   }
15625   static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
15626     return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
15627            LHS.val == RHS.val;
15628   }
15629 };
15630 } // end anonymous namespace
15631 
15632 // Emits a warning when an element is implicitly set a value that
15633 // a previous element has already been set to.
15634 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
15635                                         EnumDecl *Enum,
15636                                         QualType EnumType) {
15637   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
15638     return;
15639   // Avoid anonymous enums
15640   if (!Enum->getIdentifier())
15641     return;
15642 
15643   // Only check for small enums.
15644   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
15645     return;
15646 
15647   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
15648   typedef SmallVector<ECDVector *, 3> DuplicatesVector;
15649 
15650   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
15651   typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
15652           ValueToVectorMap;
15653 
15654   DuplicatesVector DupVector;
15655   ValueToVectorMap EnumMap;
15656 
15657   // Populate the EnumMap with all values represented by enum constants without
15658   // an initialier.
15659   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15660     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
15661 
15662     // Null EnumConstantDecl means a previous diagnostic has been emitted for
15663     // this constant.  Skip this enum since it may be ill-formed.
15664     if (!ECD) {
15665       return;
15666     }
15667 
15668     if (ECD->getInitExpr())
15669       continue;
15670 
15671     DupKey Key = GetDupKey(ECD->getInitVal());
15672     DeclOrVector &Entry = EnumMap[Key];
15673 
15674     // First time encountering this value.
15675     if (Entry.isNull())
15676       Entry = ECD;
15677   }
15678 
15679   // Create vectors for any values that has duplicates.
15680   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15681     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
15682     if (!ValidDuplicateEnum(ECD, Enum))
15683       continue;
15684 
15685     DupKey Key = GetDupKey(ECD->getInitVal());
15686 
15687     DeclOrVector& Entry = EnumMap[Key];
15688     if (Entry.isNull())
15689       continue;
15690 
15691     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
15692       // Ensure constants are different.
15693       if (D == ECD)
15694         continue;
15695 
15696       // Create new vector and push values onto it.
15697       ECDVector *Vec = new ECDVector();
15698       Vec->push_back(D);
15699       Vec->push_back(ECD);
15700 
15701       // Update entry to point to the duplicates vector.
15702       Entry = Vec;
15703 
15704       // Store the vector somewhere we can consult later for quick emission of
15705       // diagnostics.
15706       DupVector.push_back(Vec);
15707       continue;
15708     }
15709 
15710     ECDVector *Vec = Entry.get<ECDVector*>();
15711     // Make sure constants are not added more than once.
15712     if (*Vec->begin() == ECD)
15713       continue;
15714 
15715     Vec->push_back(ECD);
15716   }
15717 
15718   // Emit diagnostics.
15719   for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
15720                                   DupVectorEnd = DupVector.end();
15721        DupVectorIter != DupVectorEnd; ++DupVectorIter) {
15722     ECDVector *Vec = *DupVectorIter;
15723     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
15724 
15725     // Emit warning for one enum constant.
15726     ECDVector::iterator I = Vec->begin();
15727     S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
15728       << (*I)->getName() << (*I)->getInitVal().toString(10)
15729       << (*I)->getSourceRange();
15730     ++I;
15731 
15732     // Emit one note for each of the remaining enum constants with
15733     // the same value.
15734     for (ECDVector::iterator E = Vec->end(); I != E; ++I)
15735       S.Diag((*I)->getLocation(), diag::note_duplicate_element)
15736         << (*I)->getName() << (*I)->getInitVal().toString(10)
15737         << (*I)->getSourceRange();
15738     delete Vec;
15739   }
15740 }
15741 
15742 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
15743                              bool AllowMask) const {
15744   assert(ED->isClosedFlag() && "looking for value in non-flag or open enum");
15745   assert(ED->isCompleteDefinition() && "expected enum definition");
15746 
15747   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
15748   llvm::APInt &FlagBits = R.first->second;
15749 
15750   if (R.second) {
15751     for (auto *E : ED->enumerators()) {
15752       const auto &EVal = E->getInitVal();
15753       // Only single-bit enumerators introduce new flag values.
15754       if (EVal.isPowerOf2())
15755         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
15756     }
15757   }
15758 
15759   // A value is in a flag enum if either its bits are a subset of the enum's
15760   // flag bits (the first condition) or we are allowing masks and the same is
15761   // true of its complement (the second condition). When masks are allowed, we
15762   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
15763   //
15764   // While it's true that any value could be used as a mask, the assumption is
15765   // that a mask will have all of the insignificant bits set. Anything else is
15766   // likely a logic error.
15767   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
15768   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
15769 }
15770 
15771 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange,
15772                          Decl *EnumDeclX,
15773                          ArrayRef<Decl *> Elements,
15774                          Scope *S, AttributeList *Attr) {
15775   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
15776   QualType EnumType = Context.getTypeDeclType(Enum);
15777 
15778   if (Attr)
15779     ProcessDeclAttributeList(S, Enum, Attr);
15780 
15781   if (Enum->isDependentType()) {
15782     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15783       EnumConstantDecl *ECD =
15784         cast_or_null<EnumConstantDecl>(Elements[i]);
15785       if (!ECD) continue;
15786 
15787       ECD->setType(EnumType);
15788     }
15789 
15790     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
15791     return;
15792   }
15793 
15794   // TODO: If the result value doesn't fit in an int, it must be a long or long
15795   // long value.  ISO C does not support this, but GCC does as an extension,
15796   // emit a warning.
15797   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
15798   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
15799   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
15800 
15801   // Verify that all the values are okay, compute the size of the values, and
15802   // reverse the list.
15803   unsigned NumNegativeBits = 0;
15804   unsigned NumPositiveBits = 0;
15805 
15806   // Keep track of whether all elements have type int.
15807   bool AllElementsInt = true;
15808 
15809   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15810     EnumConstantDecl *ECD =
15811       cast_or_null<EnumConstantDecl>(Elements[i]);
15812     if (!ECD) continue;  // Already issued a diagnostic.
15813 
15814     const llvm::APSInt &InitVal = ECD->getInitVal();
15815 
15816     // Keep track of the size of positive and negative values.
15817     if (InitVal.isUnsigned() || InitVal.isNonNegative())
15818       NumPositiveBits = std::max(NumPositiveBits,
15819                                  (unsigned)InitVal.getActiveBits());
15820     else
15821       NumNegativeBits = std::max(NumNegativeBits,
15822                                  (unsigned)InitVal.getMinSignedBits());
15823 
15824     // Keep track of whether every enum element has type int (very commmon).
15825     if (AllElementsInt)
15826       AllElementsInt = ECD->getType() == Context.IntTy;
15827   }
15828 
15829   // Figure out the type that should be used for this enum.
15830   QualType BestType;
15831   unsigned BestWidth;
15832 
15833   // C++0x N3000 [conv.prom]p3:
15834   //   An rvalue of an unscoped enumeration type whose underlying
15835   //   type is not fixed can be converted to an rvalue of the first
15836   //   of the following types that can represent all the values of
15837   //   the enumeration: int, unsigned int, long int, unsigned long
15838   //   int, long long int, or unsigned long long int.
15839   // C99 6.4.4.3p2:
15840   //   An identifier declared as an enumeration constant has type int.
15841   // The C99 rule is modified by a gcc extension
15842   QualType BestPromotionType;
15843 
15844   bool Packed = Enum->hasAttr<PackedAttr>();
15845   // -fshort-enums is the equivalent to specifying the packed attribute on all
15846   // enum definitions.
15847   if (LangOpts.ShortEnums)
15848     Packed = true;
15849 
15850   if (Enum->isFixed()) {
15851     BestType = Enum->getIntegerType();
15852     if (BestType->isPromotableIntegerType())
15853       BestPromotionType = Context.getPromotedIntegerType(BestType);
15854     else
15855       BestPromotionType = BestType;
15856 
15857     BestWidth = Context.getIntWidth(BestType);
15858   }
15859   else if (NumNegativeBits) {
15860     // If there is a negative value, figure out the smallest integer type (of
15861     // int/long/longlong) that fits.
15862     // If it's packed, check also if it fits a char or a short.
15863     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
15864       BestType = Context.SignedCharTy;
15865       BestWidth = CharWidth;
15866     } else if (Packed && NumNegativeBits <= ShortWidth &&
15867                NumPositiveBits < ShortWidth) {
15868       BestType = Context.ShortTy;
15869       BestWidth = ShortWidth;
15870     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
15871       BestType = Context.IntTy;
15872       BestWidth = IntWidth;
15873     } else {
15874       BestWidth = Context.getTargetInfo().getLongWidth();
15875 
15876       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
15877         BestType = Context.LongTy;
15878       } else {
15879         BestWidth = Context.getTargetInfo().getLongLongWidth();
15880 
15881         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
15882           Diag(Enum->getLocation(), diag::ext_enum_too_large);
15883         BestType = Context.LongLongTy;
15884       }
15885     }
15886     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
15887   } else {
15888     // If there is no negative value, figure out the smallest type that fits
15889     // all of the enumerator values.
15890     // If it's packed, check also if it fits a char or a short.
15891     if (Packed && NumPositiveBits <= CharWidth) {
15892       BestType = Context.UnsignedCharTy;
15893       BestPromotionType = Context.IntTy;
15894       BestWidth = CharWidth;
15895     } else if (Packed && NumPositiveBits <= ShortWidth) {
15896       BestType = Context.UnsignedShortTy;
15897       BestPromotionType = Context.IntTy;
15898       BestWidth = ShortWidth;
15899     } else if (NumPositiveBits <= IntWidth) {
15900       BestType = Context.UnsignedIntTy;
15901       BestWidth = IntWidth;
15902       BestPromotionType
15903         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
15904                            ? Context.UnsignedIntTy : Context.IntTy;
15905     } else if (NumPositiveBits <=
15906                (BestWidth = Context.getTargetInfo().getLongWidth())) {
15907       BestType = Context.UnsignedLongTy;
15908       BestPromotionType
15909         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
15910                            ? Context.UnsignedLongTy : Context.LongTy;
15911     } else {
15912       BestWidth = Context.getTargetInfo().getLongLongWidth();
15913       assert(NumPositiveBits <= BestWidth &&
15914              "How could an initializer get larger than ULL?");
15915       BestType = Context.UnsignedLongLongTy;
15916       BestPromotionType
15917         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
15918                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
15919     }
15920   }
15921 
15922   // Loop over all of the enumerator constants, changing their types to match
15923   // the type of the enum if needed.
15924   for (auto *D : Elements) {
15925     auto *ECD = cast_or_null<EnumConstantDecl>(D);
15926     if (!ECD) continue;  // Already issued a diagnostic.
15927 
15928     // Standard C says the enumerators have int type, but we allow, as an
15929     // extension, the enumerators to be larger than int size.  If each
15930     // enumerator value fits in an int, type it as an int, otherwise type it the
15931     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
15932     // that X has type 'int', not 'unsigned'.
15933 
15934     // Determine whether the value fits into an int.
15935     llvm::APSInt InitVal = ECD->getInitVal();
15936 
15937     // If it fits into an integer type, force it.  Otherwise force it to match
15938     // the enum decl type.
15939     QualType NewTy;
15940     unsigned NewWidth;
15941     bool NewSign;
15942     if (!getLangOpts().CPlusPlus &&
15943         !Enum->isFixed() &&
15944         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
15945       NewTy = Context.IntTy;
15946       NewWidth = IntWidth;
15947       NewSign = true;
15948     } else if (ECD->getType() == BestType) {
15949       // Already the right type!
15950       if (getLangOpts().CPlusPlus)
15951         // C++ [dcl.enum]p4: Following the closing brace of an
15952         // enum-specifier, each enumerator has the type of its
15953         // enumeration.
15954         ECD->setType(EnumType);
15955       continue;
15956     } else {
15957       NewTy = BestType;
15958       NewWidth = BestWidth;
15959       NewSign = BestType->isSignedIntegerOrEnumerationType();
15960     }
15961 
15962     // Adjust the APSInt value.
15963     InitVal = InitVal.extOrTrunc(NewWidth);
15964     InitVal.setIsSigned(NewSign);
15965     ECD->setInitVal(InitVal);
15966 
15967     // Adjust the Expr initializer and type.
15968     if (ECD->getInitExpr() &&
15969         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
15970       ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
15971                                                 CK_IntegralCast,
15972                                                 ECD->getInitExpr(),
15973                                                 /*base paths*/ nullptr,
15974                                                 VK_RValue));
15975     if (getLangOpts().CPlusPlus)
15976       // C++ [dcl.enum]p4: Following the closing brace of an
15977       // enum-specifier, each enumerator has the type of its
15978       // enumeration.
15979       ECD->setType(EnumType);
15980     else
15981       ECD->setType(NewTy);
15982   }
15983 
15984   Enum->completeDefinition(BestType, BestPromotionType,
15985                            NumPositiveBits, NumNegativeBits);
15986 
15987   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
15988 
15989   if (Enum->isClosedFlag()) {
15990     for (Decl *D : Elements) {
15991       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
15992       if (!ECD) continue;  // Already issued a diagnostic.
15993 
15994       llvm::APSInt InitVal = ECD->getInitVal();
15995       if (InitVal != 0 && !InitVal.isPowerOf2() &&
15996           !IsValueInFlagEnum(Enum, InitVal, true))
15997         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
15998           << ECD << Enum;
15999     }
16000   }
16001 
16002   // Now that the enum type is defined, ensure it's not been underaligned.
16003   if (Enum->hasAttrs())
16004     CheckAlignasUnderalignment(Enum);
16005 }
16006 
16007 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
16008                                   SourceLocation StartLoc,
16009                                   SourceLocation EndLoc) {
16010   StringLiteral *AsmString = cast<StringLiteral>(expr);
16011 
16012   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
16013                                                    AsmString, StartLoc,
16014                                                    EndLoc);
16015   CurContext->addDecl(New);
16016   return New;
16017 }
16018 
16019 static void checkModuleImportContext(Sema &S, Module *M,
16020                                      SourceLocation ImportLoc, DeclContext *DC,
16021                                      bool FromInclude = false) {
16022   SourceLocation ExternCLoc;
16023 
16024   if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
16025     switch (LSD->getLanguage()) {
16026     case LinkageSpecDecl::lang_c:
16027       if (ExternCLoc.isInvalid())
16028         ExternCLoc = LSD->getLocStart();
16029       break;
16030     case LinkageSpecDecl::lang_cxx:
16031       break;
16032     }
16033     DC = LSD->getParent();
16034   }
16035 
16036   while (isa<LinkageSpecDecl>(DC) || isa<ExportDecl>(DC))
16037     DC = DC->getParent();
16038 
16039   if (!isa<TranslationUnitDecl>(DC)) {
16040     S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M))
16041                           ? diag::ext_module_import_not_at_top_level_noop
16042                           : diag::err_module_import_not_at_top_level_fatal)
16043         << M->getFullModuleName() << DC;
16044     S.Diag(cast<Decl>(DC)->getLocStart(),
16045            diag::note_module_import_not_at_top_level) << DC;
16046   } else if (!M->IsExternC && ExternCLoc.isValid()) {
16047     S.Diag(ImportLoc, diag::ext_module_import_in_extern_c)
16048       << M->getFullModuleName();
16049     S.Diag(ExternCLoc, diag::note_extern_c_begins_here);
16050   }
16051 }
16052 
16053 Sema::DeclGroupPtrTy Sema::ActOnModuleDecl(SourceLocation StartLoc,
16054                                            SourceLocation ModuleLoc,
16055                                            ModuleDeclKind MDK,
16056                                            ModuleIdPath Path) {
16057   assert(getLangOpts().ModulesTS &&
16058          "should only have module decl in modules TS");
16059 
16060   // A module implementation unit requires that we are not compiling a module
16061   // of any kind. A module interface unit requires that we are not compiling a
16062   // module map.
16063   switch (getLangOpts().getCompilingModule()) {
16064   case LangOptions::CMK_None:
16065     // It's OK to compile a module interface as a normal translation unit.
16066     break;
16067 
16068   case LangOptions::CMK_ModuleInterface:
16069     if (MDK != ModuleDeclKind::Implementation)
16070       break;
16071 
16072     // We were asked to compile a module interface unit but this is a module
16073     // implementation unit. That indicates the 'export' is missing.
16074     Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch)
16075       << FixItHint::CreateInsertion(ModuleLoc, "export ");
16076     MDK = ModuleDeclKind::Interface;
16077     break;
16078 
16079   case LangOptions::CMK_ModuleMap:
16080     Diag(ModuleLoc, diag::err_module_decl_in_module_map_module);
16081     return nullptr;
16082   }
16083 
16084   assert(ModuleScopes.size() == 1 && "expected to be at global module scope");
16085 
16086   // FIXME: Most of this work should be done by the preprocessor rather than
16087   // here, in order to support macro import.
16088 
16089   // Only one module-declaration is permitted per source file.
16090   if (ModuleScopes.back().Module->Kind == Module::ModuleInterfaceUnit) {
16091     Diag(ModuleLoc, diag::err_module_redeclaration);
16092     Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module),
16093          diag::note_prev_module_declaration);
16094     return nullptr;
16095   }
16096 
16097   // Flatten the dots in a module name. Unlike Clang's hierarchical module map
16098   // modules, the dots here are just another character that can appear in a
16099   // module name.
16100   std::string ModuleName;
16101   for (auto &Piece : Path) {
16102     if (!ModuleName.empty())
16103       ModuleName += ".";
16104     ModuleName += Piece.first->getName();
16105   }
16106 
16107   // If a module name was explicitly specified on the command line, it must be
16108   // correct.
16109   if (!getLangOpts().CurrentModule.empty() &&
16110       getLangOpts().CurrentModule != ModuleName) {
16111     Diag(Path.front().second, diag::err_current_module_name_mismatch)
16112         << SourceRange(Path.front().second, Path.back().second)
16113         << getLangOpts().CurrentModule;
16114     return nullptr;
16115   }
16116   const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName;
16117 
16118   auto &Map = PP.getHeaderSearchInfo().getModuleMap();
16119   Module *Mod;
16120 
16121   switch (MDK) {
16122   case ModuleDeclKind::Interface: {
16123     // We can't have parsed or imported a definition of this module or parsed a
16124     // module map defining it already.
16125     if (auto *M = Map.findModule(ModuleName)) {
16126       Diag(Path[0].second, diag::err_module_redefinition) << ModuleName;
16127       if (M->DefinitionLoc.isValid())
16128         Diag(M->DefinitionLoc, diag::note_prev_module_definition);
16129       else if (const auto *FE = M->getASTFile())
16130         Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file)
16131             << FE->getName();
16132       Mod = M;
16133       break;
16134     }
16135 
16136     // Create a Module for the module that we're defining.
16137     Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16138                                            ModuleScopes.front().Module);
16139     assert(Mod && "module creation should not fail");
16140     break;
16141   }
16142 
16143   case ModuleDeclKind::Partition:
16144     // FIXME: Check we are in a submodule of the named module.
16145     return nullptr;
16146 
16147   case ModuleDeclKind::Implementation:
16148     std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc(
16149         PP.getIdentifierInfo(ModuleName), Path[0].second);
16150     Mod = getModuleLoader().loadModule(ModuleLoc, Path, Module::AllVisible,
16151                                        /*IsIncludeDirective=*/false);
16152     if (!Mod) {
16153       Diag(ModuleLoc, diag::err_module_not_defined) << ModuleName;
16154       // Create an empty module interface unit for error recovery.
16155       Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16156                                              ModuleScopes.front().Module);
16157     }
16158     break;
16159   }
16160 
16161   // Switch from the global module to the named module.
16162   ModuleScopes.back().Module = Mod;
16163   ModuleScopes.back().ModuleInterface = MDK != ModuleDeclKind::Implementation;
16164   VisibleModules.setVisible(Mod, ModuleLoc);
16165 
16166   // From now on, we have an owning module for all declarations we see.
16167   // However, those declarations are module-private unless explicitly
16168   // exported.
16169   auto *TU = Context.getTranslationUnitDecl();
16170   TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
16171   TU->setLocalOwningModule(Mod);
16172 
16173   // FIXME: Create a ModuleDecl.
16174   return nullptr;
16175 }
16176 
16177 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc,
16178                                    SourceLocation ImportLoc,
16179                                    ModuleIdPath Path) {
16180   Module *Mod =
16181       getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
16182                                    /*IsIncludeDirective=*/false);
16183   if (!Mod)
16184     return true;
16185 
16186   VisibleModules.setVisible(Mod, ImportLoc);
16187 
16188   checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
16189 
16190   // FIXME: we should support importing a submodule within a different submodule
16191   // of the same top-level module. Until we do, make it an error rather than
16192   // silently ignoring the import.
16193   // Import-from-implementation is valid in the Modules TS. FIXME: Should we
16194   // warn on a redundant import of the current module?
16195   if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule &&
16196       (getLangOpts().isCompilingModule() || !getLangOpts().ModulesTS))
16197     Diag(ImportLoc, getLangOpts().isCompilingModule()
16198                         ? diag::err_module_self_import
16199                         : diag::err_module_import_in_implementation)
16200         << Mod->getFullModuleName() << getLangOpts().CurrentModule;
16201 
16202   SmallVector<SourceLocation, 2> IdentifierLocs;
16203   Module *ModCheck = Mod;
16204   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
16205     // If we've run out of module parents, just drop the remaining identifiers.
16206     // We need the length to be consistent.
16207     if (!ModCheck)
16208       break;
16209     ModCheck = ModCheck->Parent;
16210 
16211     IdentifierLocs.push_back(Path[I].second);
16212   }
16213 
16214   ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc,
16215                                           Mod, IdentifierLocs);
16216   if (!ModuleScopes.empty())
16217     Context.addModuleInitializer(ModuleScopes.back().Module, Import);
16218   CurContext->addDecl(Import);
16219 
16220   // Re-export the module if needed.
16221   if (Import->isExported() &&
16222       !ModuleScopes.empty() && ModuleScopes.back().ModuleInterface)
16223     getCurrentModule()->Exports.emplace_back(Mod, false);
16224 
16225   return Import;
16226 }
16227 
16228 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16229   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16230   BuildModuleInclude(DirectiveLoc, Mod);
16231 }
16232 
16233 void Sema::BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16234   // Determine whether we're in the #include buffer for a module. The #includes
16235   // in that buffer do not qualify as module imports; they're just an
16236   // implementation detail of us building the module.
16237   //
16238   // FIXME: Should we even get ActOnModuleInclude calls for those?
16239   bool IsInModuleIncludes =
16240       TUKind == TU_Module &&
16241       getSourceManager().isWrittenInMainFile(DirectiveLoc);
16242 
16243   bool ShouldAddImport = !IsInModuleIncludes;
16244 
16245   // If this module import was due to an inclusion directive, create an
16246   // implicit import declaration to capture it in the AST.
16247   if (ShouldAddImport) {
16248     TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16249     ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16250                                                      DirectiveLoc, Mod,
16251                                                      DirectiveLoc);
16252     if (!ModuleScopes.empty())
16253       Context.addModuleInitializer(ModuleScopes.back().Module, ImportD);
16254     TU->addDecl(ImportD);
16255     Consumer.HandleImplicitImportDecl(ImportD);
16256   }
16257 
16258   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc);
16259   VisibleModules.setVisible(Mod, DirectiveLoc);
16260 }
16261 
16262 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) {
16263   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16264 
16265   ModuleScopes.push_back({});
16266   ModuleScopes.back().Module = Mod;
16267   if (getLangOpts().ModulesLocalVisibility)
16268     ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules);
16269 
16270   VisibleModules.setVisible(Mod, DirectiveLoc);
16271 
16272   // The enclosing context is now part of this module.
16273   // FIXME: Consider creating a child DeclContext to hold the entities
16274   // lexically within the module.
16275   if (getLangOpts().trackLocalOwningModule()) {
16276     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16277       cast<Decl>(DC)->setModuleOwnershipKind(
16278           getLangOpts().ModulesLocalVisibility
16279               ? Decl::ModuleOwnershipKind::VisibleWhenImported
16280               : Decl::ModuleOwnershipKind::Visible);
16281       cast<Decl>(DC)->setLocalOwningModule(Mod);
16282     }
16283   }
16284 }
16285 
16286 void Sema::ActOnModuleEnd(SourceLocation EomLoc, Module *Mod) {
16287   if (getLangOpts().ModulesLocalVisibility) {
16288     VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules);
16289     // Leaving a module hides namespace names, so our visible namespace cache
16290     // is now out of date.
16291     VisibleNamespaceCache.clear();
16292   }
16293 
16294   assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod &&
16295          "left the wrong module scope");
16296   ModuleScopes.pop_back();
16297 
16298   // We got to the end of processing a local module. Create an
16299   // ImportDecl as we would for an imported module.
16300   FileID File = getSourceManager().getFileID(EomLoc);
16301   SourceLocation DirectiveLoc;
16302   if (EomLoc == getSourceManager().getLocForEndOfFile(File)) {
16303     // We reached the end of a #included module header. Use the #include loc.
16304     assert(File != getSourceManager().getMainFileID() &&
16305            "end of submodule in main source file");
16306     DirectiveLoc = getSourceManager().getIncludeLoc(File);
16307   } else {
16308     // We reached an EOM pragma. Use the pragma location.
16309     DirectiveLoc = EomLoc;
16310   }
16311   BuildModuleInclude(DirectiveLoc, Mod);
16312 
16313   // Any further declarations are in whatever module we returned to.
16314   if (getLangOpts().trackLocalOwningModule()) {
16315     // The parser guarantees that this is the same context that we entered
16316     // the module within.
16317     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16318       cast<Decl>(DC)->setLocalOwningModule(getCurrentModule());
16319       if (!getCurrentModule())
16320         cast<Decl>(DC)->setModuleOwnershipKind(
16321             Decl::ModuleOwnershipKind::Unowned);
16322     }
16323   }
16324 }
16325 
16326 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
16327                                                       Module *Mod) {
16328   // Bail if we're not allowed to implicitly import a module here.
16329   if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery ||
16330       VisibleModules.isVisible(Mod))
16331     return;
16332 
16333   // Create the implicit import declaration.
16334   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16335   ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16336                                                    Loc, Mod, Loc);
16337   TU->addDecl(ImportD);
16338   Consumer.HandleImplicitImportDecl(ImportD);
16339 
16340   // Make the module visible.
16341   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc);
16342   VisibleModules.setVisible(Mod, Loc);
16343 }
16344 
16345 /// We have parsed the start of an export declaration, including the '{'
16346 /// (if present).
16347 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc,
16348                                  SourceLocation LBraceLoc) {
16349   ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc);
16350 
16351   // C++ Modules TS draft:
16352   //   An export-declaration shall appear in the purview of a module other than
16353   //   the global module.
16354   if (ModuleScopes.empty() || !ModuleScopes.back().ModuleInterface)
16355     Diag(ExportLoc, diag::err_export_not_in_module_interface);
16356 
16357   //   An export-declaration [...] shall not contain more than one
16358   //   export keyword.
16359   //
16360   // The intent here is that an export-declaration cannot appear within another
16361   // export-declaration.
16362   if (D->isExported())
16363     Diag(ExportLoc, diag::err_export_within_export);
16364 
16365   CurContext->addDecl(D);
16366   PushDeclContext(S, D);
16367   D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported);
16368   return D;
16369 }
16370 
16371 /// Complete the definition of an export declaration.
16372 Decl *Sema::ActOnFinishExportDecl(Scope *S, Decl *D, SourceLocation RBraceLoc) {
16373   auto *ED = cast<ExportDecl>(D);
16374   if (RBraceLoc.isValid())
16375     ED->setRBraceLoc(RBraceLoc);
16376 
16377   // FIXME: Diagnose export of internal-linkage declaration (including
16378   // anonymous namespace).
16379 
16380   PopDeclContext();
16381   return D;
16382 }
16383 
16384 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
16385                                       IdentifierInfo* AliasName,
16386                                       SourceLocation PragmaLoc,
16387                                       SourceLocation NameLoc,
16388                                       SourceLocation AliasNameLoc) {
16389   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
16390                                          LookupOrdinaryName);
16391   AsmLabelAttr *Attr =
16392       AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc);
16393 
16394   // If a declaration that:
16395   // 1) declares a function or a variable
16396   // 2) has external linkage
16397   // already exists, add a label attribute to it.
16398   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16399     if (isDeclExternC(PrevDecl))
16400       PrevDecl->addAttr(Attr);
16401     else
16402       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
16403           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
16404   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
16405   } else
16406     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
16407 }
16408 
16409 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
16410                              SourceLocation PragmaLoc,
16411                              SourceLocation NameLoc) {
16412   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
16413 
16414   if (PrevDecl) {
16415     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
16416   } else {
16417     (void)WeakUndeclaredIdentifiers.insert(
16418       std::pair<IdentifierInfo*,WeakInfo>
16419         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
16420   }
16421 }
16422 
16423 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
16424                                 IdentifierInfo* AliasName,
16425                                 SourceLocation PragmaLoc,
16426                                 SourceLocation NameLoc,
16427                                 SourceLocation AliasNameLoc) {
16428   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
16429                                     LookupOrdinaryName);
16430   WeakInfo W = WeakInfo(Name, NameLoc);
16431 
16432   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16433     if (!PrevDecl->hasAttr<AliasAttr>())
16434       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
16435         DeclApplyPragmaWeak(TUScope, ND, W);
16436   } else {
16437     (void)WeakUndeclaredIdentifiers.insert(
16438       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
16439   }
16440 }
16441 
16442 Decl *Sema::getObjCDeclContext() const {
16443   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
16444 }
16445