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().CPlusPlus1z && !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               return false;
1728           }
1729         }
1730       }
1731     }
1732 
1733     // TODO: __attribute__((unused)) templates?
1734   }
1735 
1736   return true;
1737 }
1738 
1739 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1740                                      FixItHint &Hint) {
1741   if (isa<LabelDecl>(D)) {
1742     SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
1743                 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
1744     if (AfterColon.isInvalid())
1745       return;
1746     Hint = FixItHint::CreateRemoval(CharSourceRange::
1747                                     getCharRange(D->getLocStart(), AfterColon));
1748   }
1749 }
1750 
1751 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1752   if (D->getTypeForDecl()->isDependentType())
1753     return;
1754 
1755   for (auto *TmpD : D->decls()) {
1756     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1757       DiagnoseUnusedDecl(T);
1758     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1759       DiagnoseUnusedNestedTypedefs(R);
1760   }
1761 }
1762 
1763 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1764 /// unless they are marked attr(unused).
1765 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1766   if (!ShouldDiagnoseUnusedDecl(D))
1767     return;
1768 
1769   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1770     // typedefs can be referenced later on, so the diagnostics are emitted
1771     // at end-of-translation-unit.
1772     UnusedLocalTypedefNameCandidates.insert(TD);
1773     return;
1774   }
1775 
1776   FixItHint Hint;
1777   GenerateFixForUnusedDecl(D, Context, Hint);
1778 
1779   unsigned DiagID;
1780   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1781     DiagID = diag::warn_unused_exception_param;
1782   else if (isa<LabelDecl>(D))
1783     DiagID = diag::warn_unused_label;
1784   else
1785     DiagID = diag::warn_unused_variable;
1786 
1787   Diag(D->getLocation(), DiagID) << D << Hint;
1788 }
1789 
1790 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1791   // Verify that we have no forward references left.  If so, there was a goto
1792   // or address of a label taken, but no definition of it.  Label fwd
1793   // definitions are indicated with a null substmt which is also not a resolved
1794   // MS inline assembly label name.
1795   bool Diagnose = false;
1796   if (L->isMSAsmLabel())
1797     Diagnose = !L->isResolvedMSAsmLabel();
1798   else
1799     Diagnose = L->getStmt() == nullptr;
1800   if (Diagnose)
1801     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1802 }
1803 
1804 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1805   S->mergeNRVOIntoParent();
1806 
1807   if (S->decl_empty()) return;
1808   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1809          "Scope shouldn't contain decls!");
1810 
1811   for (auto *TmpD : S->decls()) {
1812     assert(TmpD && "This decl didn't get pushed??");
1813 
1814     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1815     NamedDecl *D = cast<NamedDecl>(TmpD);
1816 
1817     // Diagnose unused variables in this scope.
1818     if (!S->hasUnrecoverableErrorOccurred()) {
1819       DiagnoseUnusedDecl(D);
1820       if (const auto *RD = dyn_cast<RecordDecl>(D))
1821         DiagnoseUnusedNestedTypedefs(RD);
1822     }
1823 
1824     if (!D->getDeclName()) continue;
1825 
1826     // If this was a forward reference to a label, verify it was defined.
1827     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1828       CheckPoppedLabel(LD, *this);
1829 
1830     // Remove this name from our lexical scope, and warn on it if we haven't
1831     // already.
1832     IdResolver.RemoveDecl(D);
1833     auto ShadowI = ShadowingDecls.find(D);
1834     if (ShadowI != ShadowingDecls.end()) {
1835       if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) {
1836         Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field)
1837             << D << FD << FD->getParent();
1838         Diag(FD->getLocation(), diag::note_previous_declaration);
1839       }
1840       ShadowingDecls.erase(ShadowI);
1841     }
1842   }
1843 }
1844 
1845 /// \brief Look for an Objective-C class in the translation unit.
1846 ///
1847 /// \param Id The name of the Objective-C class we're looking for. If
1848 /// typo-correction fixes this name, the Id will be updated
1849 /// to the fixed name.
1850 ///
1851 /// \param IdLoc The location of the name in the translation unit.
1852 ///
1853 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1854 /// if there is no class with the given name.
1855 ///
1856 /// \returns The declaration of the named Objective-C class, or NULL if the
1857 /// class could not be found.
1858 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1859                                               SourceLocation IdLoc,
1860                                               bool DoTypoCorrection) {
1861   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1862   // creation from this context.
1863   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1864 
1865   if (!IDecl && DoTypoCorrection) {
1866     // Perform typo correction at the given location, but only if we
1867     // find an Objective-C class name.
1868     if (TypoCorrection C = CorrectTypo(
1869             DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr,
1870             llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(),
1871             CTK_ErrorRecovery)) {
1872       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1873       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1874       Id = IDecl->getIdentifier();
1875     }
1876   }
1877   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1878   // This routine must always return a class definition, if any.
1879   if (Def && Def->getDefinition())
1880       Def = Def->getDefinition();
1881   return Def;
1882 }
1883 
1884 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
1885 /// from S, where a non-field would be declared. This routine copes
1886 /// with the difference between C and C++ scoping rules in structs and
1887 /// unions. For example, the following code is well-formed in C but
1888 /// ill-formed in C++:
1889 /// @code
1890 /// struct S6 {
1891 ///   enum { BAR } e;
1892 /// };
1893 ///
1894 /// void test_S6() {
1895 ///   struct S6 a;
1896 ///   a.e = BAR;
1897 /// }
1898 /// @endcode
1899 /// For the declaration of BAR, this routine will return a different
1900 /// scope. The scope S will be the scope of the unnamed enumeration
1901 /// within S6. In C++, this routine will return the scope associated
1902 /// with S6, because the enumeration's scope is a transparent
1903 /// context but structures can contain non-field names. In C, this
1904 /// routine will return the translation unit scope, since the
1905 /// enumeration's scope is a transparent context and structures cannot
1906 /// contain non-field names.
1907 Scope *Sema::getNonFieldDeclScope(Scope *S) {
1908   while (((S->getFlags() & Scope::DeclScope) == 0) ||
1909          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
1910          (S->isClassScope() && !getLangOpts().CPlusPlus))
1911     S = S->getParent();
1912   return S;
1913 }
1914 
1915 /// \brief Looks up the declaration of "struct objc_super" and
1916 /// saves it for later use in building builtin declaration of
1917 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1918 /// pre-existing declaration exists no action takes place.
1919 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1920                                         IdentifierInfo *II) {
1921   if (!II->isStr("objc_msgSendSuper"))
1922     return;
1923   ASTContext &Context = ThisSema.Context;
1924 
1925   LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1926                       SourceLocation(), Sema::LookupTagName);
1927   ThisSema.LookupName(Result, S);
1928   if (Result.getResultKind() == LookupResult::Found)
1929     if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1930       Context.setObjCSuperType(Context.getTagDeclType(TD));
1931 }
1932 
1933 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) {
1934   switch (Error) {
1935   case ASTContext::GE_None:
1936     return "";
1937   case ASTContext::GE_Missing_stdio:
1938     return "stdio.h";
1939   case ASTContext::GE_Missing_setjmp:
1940     return "setjmp.h";
1941   case ASTContext::GE_Missing_ucontext:
1942     return "ucontext.h";
1943   }
1944   llvm_unreachable("unhandled error kind");
1945 }
1946 
1947 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1948 /// file scope.  lazily create a decl for it. ForRedeclaration is true
1949 /// if we're creating this built-in in anticipation of redeclaring the
1950 /// built-in.
1951 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1952                                      Scope *S, bool ForRedeclaration,
1953                                      SourceLocation Loc) {
1954   LookupPredefedObjCSuperType(*this, S, II);
1955 
1956   ASTContext::GetBuiltinTypeError Error;
1957   QualType R = Context.GetBuiltinType(ID, Error);
1958   if (Error) {
1959     if (ForRedeclaration)
1960       Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
1961           << getHeaderName(Error) << Context.BuiltinInfo.getName(ID);
1962     return nullptr;
1963   }
1964 
1965   if (!ForRedeclaration &&
1966       (Context.BuiltinInfo.isPredefinedLibFunction(ID) ||
1967        Context.BuiltinInfo.isHeaderDependentFunction(ID))) {
1968     Diag(Loc, diag::ext_implicit_lib_function_decl)
1969         << Context.BuiltinInfo.getName(ID) << R;
1970     if (Context.BuiltinInfo.getHeaderName(ID) &&
1971         !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc))
1972       Diag(Loc, diag::note_include_header_or_declare)
1973           << Context.BuiltinInfo.getHeaderName(ID)
1974           << Context.BuiltinInfo.getName(ID);
1975   }
1976 
1977   if (R.isNull())
1978     return nullptr;
1979 
1980   DeclContext *Parent = Context.getTranslationUnitDecl();
1981   if (getLangOpts().CPlusPlus) {
1982     LinkageSpecDecl *CLinkageDecl =
1983         LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1984                                 LinkageSpecDecl::lang_c, false);
1985     CLinkageDecl->setImplicit();
1986     Parent->addDecl(CLinkageDecl);
1987     Parent = CLinkageDecl;
1988   }
1989 
1990   FunctionDecl *New = FunctionDecl::Create(Context,
1991                                            Parent,
1992                                            Loc, Loc, II, R, /*TInfo=*/nullptr,
1993                                            SC_Extern,
1994                                            false,
1995                                            R->isFunctionProtoType());
1996   New->setImplicit();
1997 
1998   // Create Decl objects for each parameter, adding them to the
1999   // FunctionDecl.
2000   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
2001     SmallVector<ParmVarDecl*, 16> Params;
2002     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2003       ParmVarDecl *parm =
2004           ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
2005                               nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
2006                               SC_None, nullptr);
2007       parm->setScopeInfo(0, i);
2008       Params.push_back(parm);
2009     }
2010     New->setParams(Params);
2011   }
2012 
2013   AddKnownFunctionAttributes(New);
2014   RegisterLocallyScopedExternCDecl(New, S);
2015 
2016   // TUScope is the translation-unit scope to insert this function into.
2017   // FIXME: This is hideous. We need to teach PushOnScopeChains to
2018   // relate Scopes to DeclContexts, and probably eliminate CurContext
2019   // entirely, but we're not there yet.
2020   DeclContext *SavedContext = CurContext;
2021   CurContext = Parent;
2022   PushOnScopeChains(New, TUScope);
2023   CurContext = SavedContext;
2024   return New;
2025 }
2026 
2027 /// Typedef declarations don't have linkage, but they still denote the same
2028 /// entity if their types are the same.
2029 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
2030 /// isSameEntity.
2031 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
2032                                                      TypedefNameDecl *Decl,
2033                                                      LookupResult &Previous) {
2034   // This is only interesting when modules are enabled.
2035   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
2036     return;
2037 
2038   // Empty sets are uninteresting.
2039   if (Previous.empty())
2040     return;
2041 
2042   LookupResult::Filter Filter = Previous.makeFilter();
2043   while (Filter.hasNext()) {
2044     NamedDecl *Old = Filter.next();
2045 
2046     // Non-hidden declarations are never ignored.
2047     if (S.isVisible(Old))
2048       continue;
2049 
2050     // Declarations of the same entity are not ignored, even if they have
2051     // different linkages.
2052     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2053       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
2054                                 Decl->getUnderlyingType()))
2055         continue;
2056 
2057       // If both declarations give a tag declaration a typedef name for linkage
2058       // purposes, then they declare the same entity.
2059       if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
2060           Decl->getAnonDeclWithTypedefName())
2061         continue;
2062     }
2063 
2064     Filter.erase();
2065   }
2066 
2067   Filter.done();
2068 }
2069 
2070 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
2071   QualType OldType;
2072   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
2073     OldType = OldTypedef->getUnderlyingType();
2074   else
2075     OldType = Context.getTypeDeclType(Old);
2076   QualType NewType = New->getUnderlyingType();
2077 
2078   if (NewType->isVariablyModifiedType()) {
2079     // Must not redefine a typedef with a variably-modified type.
2080     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2081     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
2082       << Kind << NewType;
2083     if (Old->getLocation().isValid())
2084       notePreviousDefinition(Old, New->getLocation());
2085     New->setInvalidDecl();
2086     return true;
2087   }
2088 
2089   if (OldType != NewType &&
2090       !OldType->isDependentType() &&
2091       !NewType->isDependentType() &&
2092       !Context.hasSameType(OldType, NewType)) {
2093     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2094     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
2095       << Kind << NewType << OldType;
2096     if (Old->getLocation().isValid())
2097       notePreviousDefinition(Old, New->getLocation());
2098     New->setInvalidDecl();
2099     return true;
2100   }
2101   return false;
2102 }
2103 
2104 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
2105 /// same name and scope as a previous declaration 'Old'.  Figure out
2106 /// how to resolve this situation, merging decls or emitting
2107 /// diagnostics as appropriate. If there was an error, set New to be invalid.
2108 ///
2109 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
2110                                 LookupResult &OldDecls) {
2111   // If the new decl is known invalid already, don't bother doing any
2112   // merging checks.
2113   if (New->isInvalidDecl()) return;
2114 
2115   // Allow multiple definitions for ObjC built-in typedefs.
2116   // FIXME: Verify the underlying types are equivalent!
2117   if (getLangOpts().ObjC1) {
2118     const IdentifierInfo *TypeID = New->getIdentifier();
2119     switch (TypeID->getLength()) {
2120     default: break;
2121     case 2:
2122       {
2123         if (!TypeID->isStr("id"))
2124           break;
2125         QualType T = New->getUnderlyingType();
2126         if (!T->isPointerType())
2127           break;
2128         if (!T->isVoidPointerType()) {
2129           QualType PT = T->getAs<PointerType>()->getPointeeType();
2130           if (!PT->isStructureType())
2131             break;
2132         }
2133         Context.setObjCIdRedefinitionType(T);
2134         // Install the built-in type for 'id', ignoring the current definition.
2135         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
2136         return;
2137       }
2138     case 5:
2139       if (!TypeID->isStr("Class"))
2140         break;
2141       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
2142       // Install the built-in type for 'Class', ignoring the current definition.
2143       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
2144       return;
2145     case 3:
2146       if (!TypeID->isStr("SEL"))
2147         break;
2148       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
2149       // Install the built-in type for 'SEL', ignoring the current definition.
2150       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
2151       return;
2152     }
2153     // Fall through - the typedef name was not a builtin type.
2154   }
2155 
2156   // Verify the old decl was also a type.
2157   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
2158   if (!Old) {
2159     Diag(New->getLocation(), diag::err_redefinition_different_kind)
2160       << New->getDeclName();
2161 
2162     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
2163     if (OldD->getLocation().isValid())
2164       notePreviousDefinition(OldD, New->getLocation());
2165 
2166     return New->setInvalidDecl();
2167   }
2168 
2169   // If the old declaration is invalid, just give up here.
2170   if (Old->isInvalidDecl())
2171     return New->setInvalidDecl();
2172 
2173   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2174     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
2175     auto *NewTag = New->getAnonDeclWithTypedefName();
2176     NamedDecl *Hidden = nullptr;
2177     if (OldTag && NewTag &&
2178         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
2179         !hasVisibleDefinition(OldTag, &Hidden)) {
2180       // There is a definition of this tag, but it is not visible. Use it
2181       // instead of our tag.
2182       New->setTypeForDecl(OldTD->getTypeForDecl());
2183       if (OldTD->isModed())
2184         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
2185                                     OldTD->getUnderlyingType());
2186       else
2187         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
2188 
2189       // Make the old tag definition visible.
2190       makeMergedDefinitionVisible(Hidden);
2191 
2192       // If this was an unscoped enumeration, yank all of its enumerators
2193       // out of the scope.
2194       if (isa<EnumDecl>(NewTag)) {
2195         Scope *EnumScope = getNonFieldDeclScope(S);
2196         for (auto *D : NewTag->decls()) {
2197           auto *ED = cast<EnumConstantDecl>(D);
2198           assert(EnumScope->isDeclScope(ED));
2199           EnumScope->RemoveDecl(ED);
2200           IdResolver.RemoveDecl(ED);
2201           ED->getLexicalDeclContext()->removeDecl(ED);
2202         }
2203       }
2204     }
2205   }
2206 
2207   // If the typedef types are not identical, reject them in all languages and
2208   // with any extensions enabled.
2209   if (isIncompatibleTypedef(Old, New))
2210     return;
2211 
2212   // The types match.  Link up the redeclaration chain and merge attributes if
2213   // the old declaration was a typedef.
2214   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
2215     New->setPreviousDecl(Typedef);
2216     mergeDeclAttributes(New, Old);
2217   }
2218 
2219   if (getLangOpts().MicrosoftExt)
2220     return;
2221 
2222   if (getLangOpts().CPlusPlus) {
2223     // C++ [dcl.typedef]p2:
2224     //   In a given non-class scope, a typedef specifier can be used to
2225     //   redefine the name of any type declared in that scope to refer
2226     //   to the type to which it already refers.
2227     if (!isa<CXXRecordDecl>(CurContext))
2228       return;
2229 
2230     // C++0x [dcl.typedef]p4:
2231     //   In a given class scope, a typedef specifier can be used to redefine
2232     //   any class-name declared in that scope that is not also a typedef-name
2233     //   to refer to the type to which it already refers.
2234     //
2235     // This wording came in via DR424, which was a correction to the
2236     // wording in DR56, which accidentally banned code like:
2237     //
2238     //   struct S {
2239     //     typedef struct A { } A;
2240     //   };
2241     //
2242     // in the C++03 standard. We implement the C++0x semantics, which
2243     // allow the above but disallow
2244     //
2245     //   struct S {
2246     //     typedef int I;
2247     //     typedef int I;
2248     //   };
2249     //
2250     // since that was the intent of DR56.
2251     if (!isa<TypedefNameDecl>(Old))
2252       return;
2253 
2254     Diag(New->getLocation(), diag::err_redefinition)
2255       << New->getDeclName();
2256     notePreviousDefinition(Old, New->getLocation());
2257     return New->setInvalidDecl();
2258   }
2259 
2260   // Modules always permit redefinition of typedefs, as does C11.
2261   if (getLangOpts().Modules || getLangOpts().C11)
2262     return;
2263 
2264   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2265   // is normally mapped to an error, but can be controlled with
2266   // -Wtypedef-redefinition.  If either the original or the redefinition is
2267   // in a system header, don't emit this for compatibility with GCC.
2268   if (getDiagnostics().getSuppressSystemWarnings() &&
2269       // Some standard types are defined implicitly in Clang (e.g. OpenCL).
2270       (Old->isImplicit() ||
2271        Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2272        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2273     return;
2274 
2275   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2276     << New->getDeclName();
2277   notePreviousDefinition(Old, New->getLocation());
2278 }
2279 
2280 /// DeclhasAttr - returns true if decl Declaration already has the target
2281 /// attribute.
2282 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2283   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2284   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2285   for (const auto *i : D->attrs())
2286     if (i->getKind() == A->getKind()) {
2287       if (Ann) {
2288         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2289           return true;
2290         continue;
2291       }
2292       // FIXME: Don't hardcode this check
2293       if (OA && isa<OwnershipAttr>(i))
2294         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2295       return true;
2296     }
2297 
2298   return false;
2299 }
2300 
2301 static bool isAttributeTargetADefinition(Decl *D) {
2302   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2303     return VD->isThisDeclarationADefinition();
2304   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2305     return TD->isCompleteDefinition() || TD->isBeingDefined();
2306   return true;
2307 }
2308 
2309 /// Merge alignment attributes from \p Old to \p New, taking into account the
2310 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2311 ///
2312 /// \return \c true if any attributes were added to \p New.
2313 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2314   // Look for alignas attributes on Old, and pick out whichever attribute
2315   // specifies the strictest alignment requirement.
2316   AlignedAttr *OldAlignasAttr = nullptr;
2317   AlignedAttr *OldStrictestAlignAttr = nullptr;
2318   unsigned OldAlign = 0;
2319   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2320     // FIXME: We have no way of representing inherited dependent alignments
2321     // in a case like:
2322     //   template<int A, int B> struct alignas(A) X;
2323     //   template<int A, int B> struct alignas(B) X {};
2324     // For now, we just ignore any alignas attributes which are not on the
2325     // definition in such a case.
2326     if (I->isAlignmentDependent())
2327       return false;
2328 
2329     if (I->isAlignas())
2330       OldAlignasAttr = I;
2331 
2332     unsigned Align = I->getAlignment(S.Context);
2333     if (Align > OldAlign) {
2334       OldAlign = Align;
2335       OldStrictestAlignAttr = I;
2336     }
2337   }
2338 
2339   // Look for alignas attributes on New.
2340   AlignedAttr *NewAlignasAttr = nullptr;
2341   unsigned NewAlign = 0;
2342   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2343     if (I->isAlignmentDependent())
2344       return false;
2345 
2346     if (I->isAlignas())
2347       NewAlignasAttr = I;
2348 
2349     unsigned Align = I->getAlignment(S.Context);
2350     if (Align > NewAlign)
2351       NewAlign = Align;
2352   }
2353 
2354   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2355     // Both declarations have 'alignas' attributes. We require them to match.
2356     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2357     // fall short. (If two declarations both have alignas, they must both match
2358     // every definition, and so must match each other if there is a definition.)
2359 
2360     // If either declaration only contains 'alignas(0)' specifiers, then it
2361     // specifies the natural alignment for the type.
2362     if (OldAlign == 0 || NewAlign == 0) {
2363       QualType Ty;
2364       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2365         Ty = VD->getType();
2366       else
2367         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2368 
2369       if (OldAlign == 0)
2370         OldAlign = S.Context.getTypeAlign(Ty);
2371       if (NewAlign == 0)
2372         NewAlign = S.Context.getTypeAlign(Ty);
2373     }
2374 
2375     if (OldAlign != NewAlign) {
2376       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2377         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2378         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2379       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2380     }
2381   }
2382 
2383   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2384     // C++11 [dcl.align]p6:
2385     //   if any declaration of an entity has an alignment-specifier,
2386     //   every defining declaration of that entity shall specify an
2387     //   equivalent alignment.
2388     // C11 6.7.5/7:
2389     //   If the definition of an object does not have an alignment
2390     //   specifier, any other declaration of that object shall also
2391     //   have no alignment specifier.
2392     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2393       << OldAlignasAttr;
2394     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2395       << OldAlignasAttr;
2396   }
2397 
2398   bool AnyAdded = false;
2399 
2400   // Ensure we have an attribute representing the strictest alignment.
2401   if (OldAlign > NewAlign) {
2402     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2403     Clone->setInherited(true);
2404     New->addAttr(Clone);
2405     AnyAdded = true;
2406   }
2407 
2408   // Ensure we have an alignas attribute if the old declaration had one.
2409   if (OldAlignasAttr && !NewAlignasAttr &&
2410       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2411     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2412     Clone->setInherited(true);
2413     New->addAttr(Clone);
2414     AnyAdded = true;
2415   }
2416 
2417   return AnyAdded;
2418 }
2419 
2420 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2421                                const InheritableAttr *Attr,
2422                                Sema::AvailabilityMergeKind AMK) {
2423   // This function copies an attribute Attr from a previous declaration to the
2424   // new declaration D if the new declaration doesn't itself have that attribute
2425   // yet or if that attribute allows duplicates.
2426   // If you're adding a new attribute that requires logic different from
2427   // "use explicit attribute on decl if present, else use attribute from
2428   // previous decl", for example if the attribute needs to be consistent
2429   // between redeclarations, you need to call a custom merge function here.
2430   InheritableAttr *NewAttr = nullptr;
2431   unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
2432   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2433     NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
2434                                       AA->isImplicit(), AA->getIntroduced(),
2435                                       AA->getDeprecated(),
2436                                       AA->getObsoleted(), AA->getUnavailable(),
2437                                       AA->getMessage(), AA->getStrict(),
2438                                       AA->getReplacement(), AMK,
2439                                       AttrSpellingListIndex);
2440   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2441     NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2442                                     AttrSpellingListIndex);
2443   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2444     NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2445                                         AttrSpellingListIndex);
2446   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2447     NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
2448                                    AttrSpellingListIndex);
2449   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2450     NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
2451                                    AttrSpellingListIndex);
2452   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2453     NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
2454                                 FA->getFormatIdx(), FA->getFirstArg(),
2455                                 AttrSpellingListIndex);
2456   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2457     NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
2458                                  AttrSpellingListIndex);
2459   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2460     NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
2461                                        AttrSpellingListIndex,
2462                                        IA->getSemanticSpelling());
2463   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2464     NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(),
2465                                       &S.Context.Idents.get(AA->getSpelling()),
2466                                       AttrSpellingListIndex);
2467   else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) &&
2468            (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) ||
2469             isa<CUDAGlobalAttr>(Attr))) {
2470     // CUDA target attributes are part of function signature for
2471     // overloading purposes and must not be merged.
2472     return false;
2473   } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2474     NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex);
2475   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2476     NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex);
2477   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2478     NewAttr = S.mergeInternalLinkageAttr(
2479         D, InternalLinkageA->getRange(),
2480         &S.Context.Idents.get(InternalLinkageA->getSpelling()),
2481         AttrSpellingListIndex);
2482   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2483     NewAttr = S.mergeCommonAttr(D, CommonA->getRange(),
2484                                 &S.Context.Idents.get(CommonA->getSpelling()),
2485                                 AttrSpellingListIndex);
2486   else if (isa<AlignedAttr>(Attr))
2487     // AlignedAttrs are handled separately, because we need to handle all
2488     // such attributes on a declaration at the same time.
2489     NewAttr = nullptr;
2490   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2491            (AMK == Sema::AMK_Override ||
2492             AMK == Sema::AMK_ProtocolImplementation))
2493     NewAttr = nullptr;
2494   else if (const auto *UA = dyn_cast<UuidAttr>(Attr))
2495     NewAttr = S.mergeUuidAttr(D, UA->getRange(), AttrSpellingListIndex,
2496                               UA->getGuid());
2497   else if (Attr->duplicatesAllowed() || !DeclHasAttr(D, Attr))
2498     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2499 
2500   if (NewAttr) {
2501     NewAttr->setInherited(true);
2502     D->addAttr(NewAttr);
2503     if (isa<MSInheritanceAttr>(NewAttr))
2504       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2505     return true;
2506   }
2507 
2508   return false;
2509 }
2510 
2511 static const NamedDecl *getDefinition(const Decl *D) {
2512   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2513     return TD->getDefinition();
2514   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2515     const VarDecl *Def = VD->getDefinition();
2516     if (Def)
2517       return Def;
2518     return VD->getActingDefinition();
2519   }
2520   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2521     return FD->getDefinition();
2522   return nullptr;
2523 }
2524 
2525 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2526   for (const auto *Attribute : D->attrs())
2527     if (Attribute->getKind() == Kind)
2528       return true;
2529   return false;
2530 }
2531 
2532 /// checkNewAttributesAfterDef - If we already have a definition, check that
2533 /// there are no new attributes in this declaration.
2534 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2535   if (!New->hasAttrs())
2536     return;
2537 
2538   const NamedDecl *Def = getDefinition(Old);
2539   if (!Def || Def == New)
2540     return;
2541 
2542   AttrVec &NewAttributes = New->getAttrs();
2543   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2544     const Attr *NewAttribute = NewAttributes[I];
2545 
2546     if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) {
2547       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2548         Sema::SkipBodyInfo SkipBody;
2549         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2550 
2551         // If we're skipping this definition, drop the "alias" attribute.
2552         if (SkipBody.ShouldSkip) {
2553           NewAttributes.erase(NewAttributes.begin() + I);
2554           --E;
2555           continue;
2556         }
2557       } else {
2558         VarDecl *VD = cast<VarDecl>(New);
2559         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2560                                 VarDecl::TentativeDefinition
2561                             ? diag::err_alias_after_tentative
2562                             : diag::err_redefinition;
2563         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2564         if (Diag == diag::err_redefinition)
2565           S.notePreviousDefinition(Def, VD->getLocation());
2566         else
2567           S.Diag(Def->getLocation(), diag::note_previous_definition);
2568         VD->setInvalidDecl();
2569       }
2570       ++I;
2571       continue;
2572     }
2573 
2574     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2575       // Tentative definitions are only interesting for the alias check above.
2576       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2577         ++I;
2578         continue;
2579       }
2580     }
2581 
2582     if (hasAttribute(Def, NewAttribute->getKind())) {
2583       ++I;
2584       continue; // regular attr merging will take care of validating this.
2585     }
2586 
2587     if (isa<C11NoReturnAttr>(NewAttribute)) {
2588       // C's _Noreturn is allowed to be added to a function after it is defined.
2589       ++I;
2590       continue;
2591     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2592       if (AA->isAlignas()) {
2593         // C++11 [dcl.align]p6:
2594         //   if any declaration of an entity has an alignment-specifier,
2595         //   every defining declaration of that entity shall specify an
2596         //   equivalent alignment.
2597         // C11 6.7.5/7:
2598         //   If the definition of an object does not have an alignment
2599         //   specifier, any other declaration of that object shall also
2600         //   have no alignment specifier.
2601         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2602           << AA;
2603         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2604           << AA;
2605         NewAttributes.erase(NewAttributes.begin() + I);
2606         --E;
2607         continue;
2608       }
2609     }
2610 
2611     S.Diag(NewAttribute->getLocation(),
2612            diag::warn_attribute_precede_definition);
2613     S.Diag(Def->getLocation(), diag::note_previous_definition);
2614     NewAttributes.erase(NewAttributes.begin() + I);
2615     --E;
2616   }
2617 }
2618 
2619 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2620 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2621                                AvailabilityMergeKind AMK) {
2622   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2623     UsedAttr *NewAttr = OldAttr->clone(Context);
2624     NewAttr->setInherited(true);
2625     New->addAttr(NewAttr);
2626   }
2627 
2628   if (!Old->hasAttrs() && !New->hasAttrs())
2629     return;
2630 
2631   // Attributes declared post-definition are currently ignored.
2632   checkNewAttributesAfterDef(*this, New, Old);
2633 
2634   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2635     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2636       if (OldA->getLabel() != NewA->getLabel()) {
2637         // This redeclaration changes __asm__ label.
2638         Diag(New->getLocation(), diag::err_different_asm_label);
2639         Diag(OldA->getLocation(), diag::note_previous_declaration);
2640       }
2641     } else if (Old->isUsed()) {
2642       // This redeclaration adds an __asm__ label to a declaration that has
2643       // already been ODR-used.
2644       Diag(New->getLocation(), diag::err_late_asm_label_name)
2645         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2646     }
2647   }
2648 
2649   // Re-declaration cannot add abi_tag's.
2650   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2651     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2652       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2653         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2654                       NewTag) == OldAbiTagAttr->tags_end()) {
2655           Diag(NewAbiTagAttr->getLocation(),
2656                diag::err_new_abi_tag_on_redeclaration)
2657               << NewTag;
2658           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2659         }
2660       }
2661     } else {
2662       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2663       Diag(Old->getLocation(), diag::note_previous_declaration);
2664     }
2665   }
2666 
2667   // This redeclaration adds a section attribute.
2668   if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) {
2669     if (auto *VD = dyn_cast<VarDecl>(New)) {
2670       if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) {
2671         Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration);
2672         Diag(Old->getLocation(), diag::note_previous_declaration);
2673       }
2674     }
2675   }
2676 
2677   if (!Old->hasAttrs())
2678     return;
2679 
2680   bool foundAny = New->hasAttrs();
2681 
2682   // Ensure that any moving of objects within the allocated map is done before
2683   // we process them.
2684   if (!foundAny) New->setAttrs(AttrVec());
2685 
2686   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2687     // Ignore deprecated/unavailable/availability attributes if requested.
2688     AvailabilityMergeKind LocalAMK = AMK_None;
2689     if (isa<DeprecatedAttr>(I) ||
2690         isa<UnavailableAttr>(I) ||
2691         isa<AvailabilityAttr>(I)) {
2692       switch (AMK) {
2693       case AMK_None:
2694         continue;
2695 
2696       case AMK_Redeclaration:
2697       case AMK_Override:
2698       case AMK_ProtocolImplementation:
2699         LocalAMK = AMK;
2700         break;
2701       }
2702     }
2703 
2704     // Already handled.
2705     if (isa<UsedAttr>(I))
2706       continue;
2707 
2708     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2709       foundAny = true;
2710   }
2711 
2712   if (mergeAlignedAttrs(*this, New, Old))
2713     foundAny = true;
2714 
2715   if (!foundAny) New->dropAttrs();
2716 }
2717 
2718 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2719 /// to the new one.
2720 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2721                                      const ParmVarDecl *oldDecl,
2722                                      Sema &S) {
2723   // C++11 [dcl.attr.depend]p2:
2724   //   The first declaration of a function shall specify the
2725   //   carries_dependency attribute for its declarator-id if any declaration
2726   //   of the function specifies the carries_dependency attribute.
2727   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2728   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2729     S.Diag(CDA->getLocation(),
2730            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2731     // Find the first declaration of the parameter.
2732     // FIXME: Should we build redeclaration chains for function parameters?
2733     const FunctionDecl *FirstFD =
2734       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2735     const ParmVarDecl *FirstVD =
2736       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2737     S.Diag(FirstVD->getLocation(),
2738            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2739   }
2740 
2741   if (!oldDecl->hasAttrs())
2742     return;
2743 
2744   bool foundAny = newDecl->hasAttrs();
2745 
2746   // Ensure that any moving of objects within the allocated map is
2747   // done before we process them.
2748   if (!foundAny) newDecl->setAttrs(AttrVec());
2749 
2750   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2751     if (!DeclHasAttr(newDecl, I)) {
2752       InheritableAttr *newAttr =
2753         cast<InheritableParamAttr>(I->clone(S.Context));
2754       newAttr->setInherited(true);
2755       newDecl->addAttr(newAttr);
2756       foundAny = true;
2757     }
2758   }
2759 
2760   if (!foundAny) newDecl->dropAttrs();
2761 }
2762 
2763 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
2764                                 const ParmVarDecl *OldParam,
2765                                 Sema &S) {
2766   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
2767     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
2768       if (*Oldnullability != *Newnullability) {
2769         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
2770           << DiagNullabilityKind(
2771                *Newnullability,
2772                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2773                 != 0))
2774           << DiagNullabilityKind(
2775                *Oldnullability,
2776                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2777                 != 0));
2778         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
2779       }
2780     } else {
2781       QualType NewT = NewParam->getType();
2782       NewT = S.Context.getAttributedType(
2783                          AttributedType::getNullabilityAttrKind(*Oldnullability),
2784                          NewT, NewT);
2785       NewParam->setType(NewT);
2786     }
2787   }
2788 }
2789 
2790 namespace {
2791 
2792 /// Used in MergeFunctionDecl to keep track of function parameters in
2793 /// C.
2794 struct GNUCompatibleParamWarning {
2795   ParmVarDecl *OldParm;
2796   ParmVarDecl *NewParm;
2797   QualType PromotedType;
2798 };
2799 
2800 } // end anonymous namespace
2801 
2802 /// getSpecialMember - get the special member enum for a method.
2803 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
2804   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
2805     if (Ctor->isDefaultConstructor())
2806       return Sema::CXXDefaultConstructor;
2807 
2808     if (Ctor->isCopyConstructor())
2809       return Sema::CXXCopyConstructor;
2810 
2811     if (Ctor->isMoveConstructor())
2812       return Sema::CXXMoveConstructor;
2813   } else if (isa<CXXDestructorDecl>(MD)) {
2814     return Sema::CXXDestructor;
2815   } else if (MD->isCopyAssignmentOperator()) {
2816     return Sema::CXXCopyAssignment;
2817   } else if (MD->isMoveAssignmentOperator()) {
2818     return Sema::CXXMoveAssignment;
2819   }
2820 
2821   return Sema::CXXInvalid;
2822 }
2823 
2824 // Determine whether the previous declaration was a definition, implicit
2825 // declaration, or a declaration.
2826 template <typename T>
2827 static std::pair<diag::kind, SourceLocation>
2828 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
2829   diag::kind PrevDiag;
2830   SourceLocation OldLocation = Old->getLocation();
2831   if (Old->isThisDeclarationADefinition())
2832     PrevDiag = diag::note_previous_definition;
2833   else if (Old->isImplicit()) {
2834     PrevDiag = diag::note_previous_implicit_declaration;
2835     if (OldLocation.isInvalid())
2836       OldLocation = New->getLocation();
2837   } else
2838     PrevDiag = diag::note_previous_declaration;
2839   return std::make_pair(PrevDiag, OldLocation);
2840 }
2841 
2842 /// canRedefineFunction - checks if a function can be redefined. Currently,
2843 /// only extern inline functions can be redefined, and even then only in
2844 /// GNU89 mode.
2845 static bool canRedefineFunction(const FunctionDecl *FD,
2846                                 const LangOptions& LangOpts) {
2847   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2848           !LangOpts.CPlusPlus &&
2849           FD->isInlineSpecified() &&
2850           FD->getStorageClass() == SC_Extern);
2851 }
2852 
2853 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2854   const AttributedType *AT = T->getAs<AttributedType>();
2855   while (AT && !AT->isCallingConv())
2856     AT = AT->getModifiedType()->getAs<AttributedType>();
2857   return AT;
2858 }
2859 
2860 template <typename T>
2861 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
2862   const DeclContext *DC = Old->getDeclContext();
2863   if (DC->isRecord())
2864     return false;
2865 
2866   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
2867   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
2868     return true;
2869   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
2870     return true;
2871   return false;
2872 }
2873 
2874 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
2875 static bool isExternC(VarTemplateDecl *) { return false; }
2876 
2877 /// \brief Check whether a redeclaration of an entity introduced by a
2878 /// using-declaration is valid, given that we know it's not an overload
2879 /// (nor a hidden tag declaration).
2880 template<typename ExpectedDecl>
2881 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
2882                                    ExpectedDecl *New) {
2883   // C++11 [basic.scope.declarative]p4:
2884   //   Given a set of declarations in a single declarative region, each of
2885   //   which specifies the same unqualified name,
2886   //   -- they shall all refer to the same entity, or all refer to functions
2887   //      and function templates; or
2888   //   -- exactly one declaration shall declare a class name or enumeration
2889   //      name that is not a typedef name and the other declarations shall all
2890   //      refer to the same variable or enumerator, or all refer to functions
2891   //      and function templates; in this case the class name or enumeration
2892   //      name is hidden (3.3.10).
2893 
2894   // C++11 [namespace.udecl]p14:
2895   //   If a function declaration in namespace scope or block scope has the
2896   //   same name and the same parameter-type-list as a function introduced
2897   //   by a using-declaration, and the declarations do not declare the same
2898   //   function, the program is ill-formed.
2899 
2900   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
2901   if (Old &&
2902       !Old->getDeclContext()->getRedeclContext()->Equals(
2903           New->getDeclContext()->getRedeclContext()) &&
2904       !(isExternC(Old) && isExternC(New)))
2905     Old = nullptr;
2906 
2907   if (!Old) {
2908     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2909     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
2910     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2911     return true;
2912   }
2913   return false;
2914 }
2915 
2916 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
2917                                             const FunctionDecl *B) {
2918   assert(A->getNumParams() == B->getNumParams());
2919 
2920   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
2921     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
2922     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
2923     if (AttrA == AttrB)
2924       return true;
2925     return AttrA && AttrB && AttrA->getType() == AttrB->getType();
2926   };
2927 
2928   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
2929 }
2930 
2931 /// MergeFunctionDecl - We just parsed a function 'New' from
2932 /// declarator D which has the same name and scope as a previous
2933 /// declaration 'Old'.  Figure out how to resolve this situation,
2934 /// merging decls or emitting diagnostics as appropriate.
2935 ///
2936 /// In C++, New and Old must be declarations that are not
2937 /// overloaded. Use IsOverload to determine whether New and Old are
2938 /// overloaded, and to select the Old declaration that New should be
2939 /// merged with.
2940 ///
2941 /// Returns true if there was an error, false otherwise.
2942 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2943                              Scope *S, bool MergeTypeWithOld) {
2944   // Verify the old decl was also a function.
2945   FunctionDecl *Old = OldD->getAsFunction();
2946   if (!Old) {
2947     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
2948       if (New->getFriendObjectKind()) {
2949         Diag(New->getLocation(), diag::err_using_decl_friend);
2950         Diag(Shadow->getTargetDecl()->getLocation(),
2951              diag::note_using_decl_target);
2952         Diag(Shadow->getUsingDecl()->getLocation(),
2953              diag::note_using_decl) << 0;
2954         return true;
2955       }
2956 
2957       // Check whether the two declarations might declare the same function.
2958       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
2959         return true;
2960       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
2961     } else {
2962       Diag(New->getLocation(), diag::err_redefinition_different_kind)
2963         << New->getDeclName();
2964       notePreviousDefinition(OldD, New->getLocation());
2965       return true;
2966     }
2967   }
2968 
2969   // If the old declaration is invalid, just give up here.
2970   if (Old->isInvalidDecl())
2971     return true;
2972 
2973   diag::kind PrevDiag;
2974   SourceLocation OldLocation;
2975   std::tie(PrevDiag, OldLocation) =
2976       getNoteDiagForInvalidRedeclaration(Old, New);
2977 
2978   // Don't complain about this if we're in GNU89 mode and the old function
2979   // is an extern inline function.
2980   // Don't complain about specializations. They are not supposed to have
2981   // storage classes.
2982   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
2983       New->getStorageClass() == SC_Static &&
2984       Old->hasExternalFormalLinkage() &&
2985       !New->getTemplateSpecializationInfo() &&
2986       !canRedefineFunction(Old, getLangOpts())) {
2987     if (getLangOpts().MicrosoftExt) {
2988       Diag(New->getLocation(), diag::ext_static_non_static) << New;
2989       Diag(OldLocation, PrevDiag);
2990     } else {
2991       Diag(New->getLocation(), diag::err_static_non_static) << New;
2992       Diag(OldLocation, PrevDiag);
2993       return true;
2994     }
2995   }
2996 
2997   if (New->hasAttr<InternalLinkageAttr>() &&
2998       !Old->hasAttr<InternalLinkageAttr>()) {
2999     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3000         << New->getDeclName();
3001     notePreviousDefinition(Old, New->getLocation());
3002     New->dropAttr<InternalLinkageAttr>();
3003   }
3004 
3005   if (CheckRedeclarationModuleOwnership(New, Old))
3006     return true;
3007 
3008   if (!getLangOpts().CPlusPlus) {
3009     bool OldOvl = Old->hasAttr<OverloadableAttr>();
3010     if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) {
3011       Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch)
3012         << New << OldOvl;
3013 
3014       // Try our best to find a decl that actually has the overloadable
3015       // attribute for the note. In most cases (e.g. programs with only one
3016       // broken declaration/definition), this won't matter.
3017       //
3018       // FIXME: We could do this if we juggled some extra state in
3019       // OverloadableAttr, rather than just removing it.
3020       const Decl *DiagOld = Old;
3021       if (OldOvl) {
3022         auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) {
3023           const auto *A = D->getAttr<OverloadableAttr>();
3024           return A && !A->isImplicit();
3025         });
3026         // If we've implicitly added *all* of the overloadable attrs to this
3027         // chain, emitting a "previous redecl" note is pointless.
3028         DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter;
3029       }
3030 
3031       if (DiagOld)
3032         Diag(DiagOld->getLocation(),
3033              diag::note_attribute_overloadable_prev_overload)
3034           << OldOvl;
3035 
3036       if (OldOvl)
3037         New->addAttr(OverloadableAttr::CreateImplicit(Context));
3038       else
3039         New->dropAttr<OverloadableAttr>();
3040     }
3041   }
3042 
3043   // If a function is first declared with a calling convention, but is later
3044   // declared or defined without one, all following decls assume the calling
3045   // convention of the first.
3046   //
3047   // It's OK if a function is first declared without a calling convention,
3048   // but is later declared or defined with the default calling convention.
3049   //
3050   // To test if either decl has an explicit calling convention, we look for
3051   // AttributedType sugar nodes on the type as written.  If they are missing or
3052   // were canonicalized away, we assume the calling convention was implicit.
3053   //
3054   // Note also that we DO NOT return at this point, because we still have
3055   // other tests to run.
3056   QualType OldQType = Context.getCanonicalType(Old->getType());
3057   QualType NewQType = Context.getCanonicalType(New->getType());
3058   const FunctionType *OldType = cast<FunctionType>(OldQType);
3059   const FunctionType *NewType = cast<FunctionType>(NewQType);
3060   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
3061   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
3062   bool RequiresAdjustment = false;
3063 
3064   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
3065     FunctionDecl *First = Old->getFirstDecl();
3066     const FunctionType *FT =
3067         First->getType().getCanonicalType()->castAs<FunctionType>();
3068     FunctionType::ExtInfo FI = FT->getExtInfo();
3069     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
3070     if (!NewCCExplicit) {
3071       // Inherit the CC from the previous declaration if it was specified
3072       // there but not here.
3073       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
3074       RequiresAdjustment = true;
3075     } else {
3076       // Calling conventions aren't compatible, so complain.
3077       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
3078       Diag(New->getLocation(), diag::err_cconv_change)
3079         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
3080         << !FirstCCExplicit
3081         << (!FirstCCExplicit ? "" :
3082             FunctionType::getNameForCallConv(FI.getCC()));
3083 
3084       // Put the note on the first decl, since it is the one that matters.
3085       Diag(First->getLocation(), diag::note_previous_declaration);
3086       return true;
3087     }
3088   }
3089 
3090   // FIXME: diagnose the other way around?
3091   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
3092     NewTypeInfo = NewTypeInfo.withNoReturn(true);
3093     RequiresAdjustment = true;
3094   }
3095 
3096   // Merge regparm attribute.
3097   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
3098       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
3099     if (NewTypeInfo.getHasRegParm()) {
3100       Diag(New->getLocation(), diag::err_regparm_mismatch)
3101         << NewType->getRegParmType()
3102         << OldType->getRegParmType();
3103       Diag(OldLocation, diag::note_previous_declaration);
3104       return true;
3105     }
3106 
3107     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
3108     RequiresAdjustment = true;
3109   }
3110 
3111   // Merge ns_returns_retained attribute.
3112   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
3113     if (NewTypeInfo.getProducesResult()) {
3114       Diag(New->getLocation(), diag::err_function_attribute_mismatch)
3115           << "'ns_returns_retained'";
3116       Diag(OldLocation, diag::note_previous_declaration);
3117       return true;
3118     }
3119 
3120     NewTypeInfo = NewTypeInfo.withProducesResult(true);
3121     RequiresAdjustment = true;
3122   }
3123 
3124   if (OldTypeInfo.getNoCallerSavedRegs() !=
3125       NewTypeInfo.getNoCallerSavedRegs()) {
3126     if (NewTypeInfo.getNoCallerSavedRegs()) {
3127       AnyX86NoCallerSavedRegistersAttr *Attr =
3128         New->getAttr<AnyX86NoCallerSavedRegistersAttr>();
3129       Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr;
3130       Diag(OldLocation, diag::note_previous_declaration);
3131       return true;
3132     }
3133 
3134     NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true);
3135     RequiresAdjustment = true;
3136   }
3137 
3138   if (RequiresAdjustment) {
3139     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
3140     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
3141     New->setType(QualType(AdjustedType, 0));
3142     NewQType = Context.getCanonicalType(New->getType());
3143     NewType = cast<FunctionType>(NewQType);
3144   }
3145 
3146   // If this redeclaration makes the function inline, we may need to add it to
3147   // UndefinedButUsed.
3148   if (!Old->isInlined() && New->isInlined() &&
3149       !New->hasAttr<GNUInlineAttr>() &&
3150       !getLangOpts().GNUInline &&
3151       Old->isUsed(false) &&
3152       !Old->isDefined() && !New->isThisDeclarationADefinition())
3153     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3154                                            SourceLocation()));
3155 
3156   // If this redeclaration makes it newly gnu_inline, we don't want to warn
3157   // about it.
3158   if (New->hasAttr<GNUInlineAttr>() &&
3159       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
3160     UndefinedButUsed.erase(Old->getCanonicalDecl());
3161   }
3162 
3163   // If pass_object_size params don't match up perfectly, this isn't a valid
3164   // redeclaration.
3165   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
3166       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
3167     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
3168         << New->getDeclName();
3169     Diag(OldLocation, PrevDiag) << Old << Old->getType();
3170     return true;
3171   }
3172 
3173   if (getLangOpts().CPlusPlus) {
3174     // C++1z [over.load]p2
3175     //   Certain function declarations cannot be overloaded:
3176     //     -- Function declarations that differ only in the return type,
3177     //        the exception specification, or both cannot be overloaded.
3178 
3179     // Check the exception specifications match. This may recompute the type of
3180     // both Old and New if it resolved exception specifications, so grab the
3181     // types again after this. Because this updates the type, we do this before
3182     // any of the other checks below, which may update the "de facto" NewQType
3183     // but do not necessarily update the type of New.
3184     if (CheckEquivalentExceptionSpec(Old, New))
3185       return true;
3186     OldQType = Context.getCanonicalType(Old->getType());
3187     NewQType = Context.getCanonicalType(New->getType());
3188 
3189     // Go back to the type source info to compare the declared return types,
3190     // per C++1y [dcl.type.auto]p13:
3191     //   Redeclarations or specializations of a function or function template
3192     //   with a declared return type that uses a placeholder type shall also
3193     //   use that placeholder, not a deduced type.
3194     QualType OldDeclaredReturnType =
3195         (Old->getTypeSourceInfo()
3196              ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3197              : OldType)->getReturnType();
3198     QualType NewDeclaredReturnType =
3199         (New->getTypeSourceInfo()
3200              ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3201              : NewType)->getReturnType();
3202     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
3203         !((NewQType->isDependentType() || OldQType->isDependentType()) &&
3204           New->isLocalExternDecl())) {
3205       QualType ResQT;
3206       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
3207           OldDeclaredReturnType->isObjCObjectPointerType())
3208         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
3209       if (ResQT.isNull()) {
3210         if (New->isCXXClassMember() && New->isOutOfLine())
3211           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
3212               << New << New->getReturnTypeSourceRange();
3213         else
3214           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
3215               << New->getReturnTypeSourceRange();
3216         Diag(OldLocation, PrevDiag) << Old << Old->getType()
3217                                     << Old->getReturnTypeSourceRange();
3218         return true;
3219       }
3220       else
3221         NewQType = ResQT;
3222     }
3223 
3224     QualType OldReturnType = OldType->getReturnType();
3225     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
3226     if (OldReturnType != NewReturnType) {
3227       // If this function has a deduced return type and has already been
3228       // defined, copy the deduced value from the old declaration.
3229       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
3230       if (OldAT && OldAT->isDeduced()) {
3231         New->setType(
3232             SubstAutoType(New->getType(),
3233                           OldAT->isDependentType() ? Context.DependentTy
3234                                                    : OldAT->getDeducedType()));
3235         NewQType = Context.getCanonicalType(
3236             SubstAutoType(NewQType,
3237                           OldAT->isDependentType() ? Context.DependentTy
3238                                                    : OldAT->getDeducedType()));
3239       }
3240     }
3241 
3242     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
3243     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
3244     if (OldMethod && NewMethod) {
3245       // Preserve triviality.
3246       NewMethod->setTrivial(OldMethod->isTrivial());
3247 
3248       // MSVC allows explicit template specialization at class scope:
3249       // 2 CXXMethodDecls referring to the same function will be injected.
3250       // We don't want a redeclaration error.
3251       bool IsClassScopeExplicitSpecialization =
3252                               OldMethod->isFunctionTemplateSpecialization() &&
3253                               NewMethod->isFunctionTemplateSpecialization();
3254       bool isFriend = NewMethod->getFriendObjectKind();
3255 
3256       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
3257           !IsClassScopeExplicitSpecialization) {
3258         //    -- Member function declarations with the same name and the
3259         //       same parameter types cannot be overloaded if any of them
3260         //       is a static member function declaration.
3261         if (OldMethod->isStatic() != NewMethod->isStatic()) {
3262           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
3263           Diag(OldLocation, PrevDiag) << Old << Old->getType();
3264           return true;
3265         }
3266 
3267         // C++ [class.mem]p1:
3268         //   [...] A member shall not be declared twice in the
3269         //   member-specification, except that a nested class or member
3270         //   class template can be declared and then later defined.
3271         if (!inTemplateInstantiation()) {
3272           unsigned NewDiag;
3273           if (isa<CXXConstructorDecl>(OldMethod))
3274             NewDiag = diag::err_constructor_redeclared;
3275           else if (isa<CXXDestructorDecl>(NewMethod))
3276             NewDiag = diag::err_destructor_redeclared;
3277           else if (isa<CXXConversionDecl>(NewMethod))
3278             NewDiag = diag::err_conv_function_redeclared;
3279           else
3280             NewDiag = diag::err_member_redeclared;
3281 
3282           Diag(New->getLocation(), NewDiag);
3283         } else {
3284           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
3285             << New << New->getType();
3286         }
3287         Diag(OldLocation, PrevDiag) << Old << Old->getType();
3288         return true;
3289 
3290       // Complain if this is an explicit declaration of a special
3291       // member that was initially declared implicitly.
3292       //
3293       // As an exception, it's okay to befriend such methods in order
3294       // to permit the implicit constructor/destructor/operator calls.
3295       } else if (OldMethod->isImplicit()) {
3296         if (isFriend) {
3297           NewMethod->setImplicit();
3298         } else {
3299           Diag(NewMethod->getLocation(),
3300                diag::err_definition_of_implicitly_declared_member)
3301             << New << getSpecialMember(OldMethod);
3302           return true;
3303         }
3304       } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) {
3305         Diag(NewMethod->getLocation(),
3306              diag::err_definition_of_explicitly_defaulted_member)
3307           << getSpecialMember(OldMethod);
3308         return true;
3309       }
3310     }
3311 
3312     // C++11 [dcl.attr.noreturn]p1:
3313     //   The first declaration of a function shall specify the noreturn
3314     //   attribute if any declaration of that function specifies the noreturn
3315     //   attribute.
3316     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
3317     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
3318       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
3319       Diag(Old->getFirstDecl()->getLocation(),
3320            diag::note_noreturn_missing_first_decl);
3321     }
3322 
3323     // C++11 [dcl.attr.depend]p2:
3324     //   The first declaration of a function shall specify the
3325     //   carries_dependency attribute for its declarator-id if any declaration
3326     //   of the function specifies the carries_dependency attribute.
3327     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3328     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3329       Diag(CDA->getLocation(),
3330            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3331       Diag(Old->getFirstDecl()->getLocation(),
3332            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3333     }
3334 
3335     // (C++98 8.3.5p3):
3336     //   All declarations for a function shall agree exactly in both the
3337     //   return type and the parameter-type-list.
3338     // We also want to respect all the extended bits except noreturn.
3339 
3340     // noreturn should now match unless the old type info didn't have it.
3341     QualType OldQTypeForComparison = OldQType;
3342     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3343       auto *OldType = OldQType->castAs<FunctionProtoType>();
3344       const FunctionType *OldTypeForComparison
3345         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3346       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3347       assert(OldQTypeForComparison.isCanonical());
3348     }
3349 
3350     if (haveIncompatibleLanguageLinkages(Old, New)) {
3351       // As a special case, retain the language linkage from previous
3352       // declarations of a friend function as an extension.
3353       //
3354       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3355       // and is useful because there's otherwise no way to specify language
3356       // linkage within class scope.
3357       //
3358       // Check cautiously as the friend object kind isn't yet complete.
3359       if (New->getFriendObjectKind() != Decl::FOK_None) {
3360         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3361         Diag(OldLocation, PrevDiag);
3362       } else {
3363         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3364         Diag(OldLocation, PrevDiag);
3365         return true;
3366       }
3367     }
3368 
3369     if (OldQTypeForComparison == NewQType)
3370       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3371 
3372     if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
3373         New->isLocalExternDecl()) {
3374       // It's OK if we couldn't merge types for a local function declaraton
3375       // if either the old or new type is dependent. We'll merge the types
3376       // when we instantiate the function.
3377       return false;
3378     }
3379 
3380     // Fall through for conflicting redeclarations and redefinitions.
3381   }
3382 
3383   // C: Function types need to be compatible, not identical. This handles
3384   // duplicate function decls like "void f(int); void f(enum X);" properly.
3385   if (!getLangOpts().CPlusPlus &&
3386       Context.typesAreCompatible(OldQType, NewQType)) {
3387     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3388     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3389     const FunctionProtoType *OldProto = nullptr;
3390     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3391         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3392       // The old declaration provided a function prototype, but the
3393       // new declaration does not. Merge in the prototype.
3394       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3395       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3396       NewQType =
3397           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3398                                   OldProto->getExtProtoInfo());
3399       New->setType(NewQType);
3400       New->setHasInheritedPrototype();
3401 
3402       // Synthesize parameters with the same types.
3403       SmallVector<ParmVarDecl*, 16> Params;
3404       for (const auto &ParamType : OldProto->param_types()) {
3405         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3406                                                  SourceLocation(), nullptr,
3407                                                  ParamType, /*TInfo=*/nullptr,
3408                                                  SC_None, nullptr);
3409         Param->setScopeInfo(0, Params.size());
3410         Param->setImplicit();
3411         Params.push_back(Param);
3412       }
3413 
3414       New->setParams(Params);
3415     }
3416 
3417     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3418   }
3419 
3420   // GNU C permits a K&R definition to follow a prototype declaration
3421   // if the declared types of the parameters in the K&R definition
3422   // match the types in the prototype declaration, even when the
3423   // promoted types of the parameters from the K&R definition differ
3424   // from the types in the prototype. GCC then keeps the types from
3425   // the prototype.
3426   //
3427   // If a variadic prototype is followed by a non-variadic K&R definition,
3428   // the K&R definition becomes variadic.  This is sort of an edge case, but
3429   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3430   // C99 6.9.1p8.
3431   if (!getLangOpts().CPlusPlus &&
3432       Old->hasPrototype() && !New->hasPrototype() &&
3433       New->getType()->getAs<FunctionProtoType>() &&
3434       Old->getNumParams() == New->getNumParams()) {
3435     SmallVector<QualType, 16> ArgTypes;
3436     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3437     const FunctionProtoType *OldProto
3438       = Old->getType()->getAs<FunctionProtoType>();
3439     const FunctionProtoType *NewProto
3440       = New->getType()->getAs<FunctionProtoType>();
3441 
3442     // Determine whether this is the GNU C extension.
3443     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3444                                                NewProto->getReturnType());
3445     bool LooseCompatible = !MergedReturn.isNull();
3446     for (unsigned Idx = 0, End = Old->getNumParams();
3447          LooseCompatible && Idx != End; ++Idx) {
3448       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3449       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3450       if (Context.typesAreCompatible(OldParm->getType(),
3451                                      NewProto->getParamType(Idx))) {
3452         ArgTypes.push_back(NewParm->getType());
3453       } else if (Context.typesAreCompatible(OldParm->getType(),
3454                                             NewParm->getType(),
3455                                             /*CompareUnqualified=*/true)) {
3456         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3457                                            NewProto->getParamType(Idx) };
3458         Warnings.push_back(Warn);
3459         ArgTypes.push_back(NewParm->getType());
3460       } else
3461         LooseCompatible = false;
3462     }
3463 
3464     if (LooseCompatible) {
3465       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3466         Diag(Warnings[Warn].NewParm->getLocation(),
3467              diag::ext_param_promoted_not_compatible_with_prototype)
3468           << Warnings[Warn].PromotedType
3469           << Warnings[Warn].OldParm->getType();
3470         if (Warnings[Warn].OldParm->getLocation().isValid())
3471           Diag(Warnings[Warn].OldParm->getLocation(),
3472                diag::note_previous_declaration);
3473       }
3474 
3475       if (MergeTypeWithOld)
3476         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3477                                              OldProto->getExtProtoInfo()));
3478       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3479     }
3480 
3481     // Fall through to diagnose conflicting types.
3482   }
3483 
3484   // A function that has already been declared has been redeclared or
3485   // defined with a different type; show an appropriate diagnostic.
3486 
3487   // If the previous declaration was an implicitly-generated builtin
3488   // declaration, then at the very least we should use a specialized note.
3489   unsigned BuiltinID;
3490   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3491     // If it's actually a library-defined builtin function like 'malloc'
3492     // or 'printf', just warn about the incompatible redeclaration.
3493     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3494       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3495       Diag(OldLocation, diag::note_previous_builtin_declaration)
3496         << Old << Old->getType();
3497 
3498       // If this is a global redeclaration, just forget hereafter
3499       // about the "builtin-ness" of the function.
3500       //
3501       // Doing this for local extern declarations is problematic.  If
3502       // the builtin declaration remains visible, a second invalid
3503       // local declaration will produce a hard error; if it doesn't
3504       // remain visible, a single bogus local redeclaration (which is
3505       // actually only a warning) could break all the downstream code.
3506       if (!New->getLexicalDeclContext()->isFunctionOrMethod())
3507         New->getIdentifier()->revertBuiltin();
3508 
3509       return false;
3510     }
3511 
3512     PrevDiag = diag::note_previous_builtin_declaration;
3513   }
3514 
3515   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3516   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3517   return true;
3518 }
3519 
3520 /// \brief Completes the merge of two function declarations that are
3521 /// known to be compatible.
3522 ///
3523 /// This routine handles the merging of attributes and other
3524 /// properties of function declarations from the old declaration to
3525 /// the new declaration, once we know that New is in fact a
3526 /// redeclaration of Old.
3527 ///
3528 /// \returns false
3529 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3530                                         Scope *S, bool MergeTypeWithOld) {
3531   // Merge the attributes
3532   mergeDeclAttributes(New, Old);
3533 
3534   // Merge "pure" flag.
3535   if (Old->isPure())
3536     New->setPure();
3537 
3538   // Merge "used" flag.
3539   if (Old->getMostRecentDecl()->isUsed(false))
3540     New->setIsUsed();
3541 
3542   // Merge attributes from the parameters.  These can mismatch with K&R
3543   // declarations.
3544   if (New->getNumParams() == Old->getNumParams())
3545       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3546         ParmVarDecl *NewParam = New->getParamDecl(i);
3547         ParmVarDecl *OldParam = Old->getParamDecl(i);
3548         mergeParamDeclAttributes(NewParam, OldParam, *this);
3549         mergeParamDeclTypes(NewParam, OldParam, *this);
3550       }
3551 
3552   if (getLangOpts().CPlusPlus)
3553     return MergeCXXFunctionDecl(New, Old, S);
3554 
3555   // Merge the function types so the we get the composite types for the return
3556   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3557   // was visible.
3558   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3559   if (!Merged.isNull() && MergeTypeWithOld)
3560     New->setType(Merged);
3561 
3562   return false;
3563 }
3564 
3565 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3566                                 ObjCMethodDecl *oldMethod) {
3567   // Merge the attributes, including deprecated/unavailable
3568   AvailabilityMergeKind MergeKind =
3569     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3570       ? AMK_ProtocolImplementation
3571       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3572                                                        : AMK_Override;
3573 
3574   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3575 
3576   // Merge attributes from the parameters.
3577   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3578                                        oe = oldMethod->param_end();
3579   for (ObjCMethodDecl::param_iterator
3580          ni = newMethod->param_begin(), ne = newMethod->param_end();
3581        ni != ne && oi != oe; ++ni, ++oi)
3582     mergeParamDeclAttributes(*ni, *oi, *this);
3583 }
3584 
3585 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3586   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3587 
3588   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3589          ? diag::err_redefinition_different_type
3590          : diag::err_redeclaration_different_type)
3591     << New->getDeclName() << New->getType() << Old->getType();
3592 
3593   diag::kind PrevDiag;
3594   SourceLocation OldLocation;
3595   std::tie(PrevDiag, OldLocation)
3596     = getNoteDiagForInvalidRedeclaration(Old, New);
3597   S.Diag(OldLocation, PrevDiag);
3598   New->setInvalidDecl();
3599 }
3600 
3601 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3602 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3603 /// emitting diagnostics as appropriate.
3604 ///
3605 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3606 /// to here in AddInitializerToDecl. We can't check them before the initializer
3607 /// is attached.
3608 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3609                              bool MergeTypeWithOld) {
3610   if (New->isInvalidDecl() || Old->isInvalidDecl())
3611     return;
3612 
3613   QualType MergedT;
3614   if (getLangOpts().CPlusPlus) {
3615     if (New->getType()->isUndeducedType()) {
3616       // We don't know what the new type is until the initializer is attached.
3617       return;
3618     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3619       // These could still be something that needs exception specs checked.
3620       return MergeVarDeclExceptionSpecs(New, Old);
3621     }
3622     // C++ [basic.link]p10:
3623     //   [...] the types specified by all declarations referring to a given
3624     //   object or function shall be identical, except that declarations for an
3625     //   array object can specify array types that differ by the presence or
3626     //   absence of a major array bound (8.3.4).
3627     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3628       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3629       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3630 
3631       // We are merging a variable declaration New into Old. If it has an array
3632       // bound, and that bound differs from Old's bound, we should diagnose the
3633       // mismatch.
3634       if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) {
3635         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3636              PrevVD = PrevVD->getPreviousDecl()) {
3637           const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType());
3638           if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType())
3639             continue;
3640 
3641           if (!Context.hasSameType(NewArray, PrevVDTy))
3642             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3643         }
3644       }
3645 
3646       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3647         if (Context.hasSameType(OldArray->getElementType(),
3648                                 NewArray->getElementType()))
3649           MergedT = New->getType();
3650       }
3651       // FIXME: Check visibility. New is hidden but has a complete type. If New
3652       // has no array bound, it should not inherit one from Old, if Old is not
3653       // visible.
3654       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3655         if (Context.hasSameType(OldArray->getElementType(),
3656                                 NewArray->getElementType()))
3657           MergedT = Old->getType();
3658       }
3659     }
3660     else if (New->getType()->isObjCObjectPointerType() &&
3661                Old->getType()->isObjCObjectPointerType()) {
3662       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3663                                               Old->getType());
3664     }
3665   } else {
3666     // C 6.2.7p2:
3667     //   All declarations that refer to the same object or function shall have
3668     //   compatible type.
3669     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3670   }
3671   if (MergedT.isNull()) {
3672     // It's OK if we couldn't merge types if either type is dependent, for a
3673     // block-scope variable. In other cases (static data members of class
3674     // templates, variable templates, ...), we require the types to be
3675     // equivalent.
3676     // FIXME: The C++ standard doesn't say anything about this.
3677     if ((New->getType()->isDependentType() ||
3678          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3679       // If the old type was dependent, we can't merge with it, so the new type
3680       // becomes dependent for now. We'll reproduce the original type when we
3681       // instantiate the TypeSourceInfo for the variable.
3682       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3683         New->setType(Context.DependentTy);
3684       return;
3685     }
3686     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3687   }
3688 
3689   // Don't actually update the type on the new declaration if the old
3690   // declaration was an extern declaration in a different scope.
3691   if (MergeTypeWithOld)
3692     New->setType(MergedT);
3693 }
3694 
3695 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3696                                   LookupResult &Previous) {
3697   // C11 6.2.7p4:
3698   //   For an identifier with internal or external linkage declared
3699   //   in a scope in which a prior declaration of that identifier is
3700   //   visible, if the prior declaration specifies internal or
3701   //   external linkage, the type of the identifier at the later
3702   //   declaration becomes the composite type.
3703   //
3704   // If the variable isn't visible, we do not merge with its type.
3705   if (Previous.isShadowed())
3706     return false;
3707 
3708   if (S.getLangOpts().CPlusPlus) {
3709     // C++11 [dcl.array]p3:
3710     //   If there is a preceding declaration of the entity in the same
3711     //   scope in which the bound was specified, an omitted array bound
3712     //   is taken to be the same as in that earlier declaration.
3713     return NewVD->isPreviousDeclInSameBlockScope() ||
3714            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
3715             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
3716   } else {
3717     // If the old declaration was function-local, don't merge with its
3718     // type unless we're in the same function.
3719     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
3720            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
3721   }
3722 }
3723 
3724 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
3725 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
3726 /// situation, merging decls or emitting diagnostics as appropriate.
3727 ///
3728 /// Tentative definition rules (C99 6.9.2p2) are checked by
3729 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
3730 /// definitions here, since the initializer hasn't been attached.
3731 ///
3732 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
3733   // If the new decl is already invalid, don't do any other checking.
3734   if (New->isInvalidDecl())
3735     return;
3736 
3737   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
3738     return;
3739 
3740   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
3741 
3742   // Verify the old decl was also a variable or variable template.
3743   VarDecl *Old = nullptr;
3744   VarTemplateDecl *OldTemplate = nullptr;
3745   if (Previous.isSingleResult()) {
3746     if (NewTemplate) {
3747       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
3748       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
3749 
3750       if (auto *Shadow =
3751               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3752         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
3753           return New->setInvalidDecl();
3754     } else {
3755       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
3756 
3757       if (auto *Shadow =
3758               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3759         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
3760           return New->setInvalidDecl();
3761     }
3762   }
3763   if (!Old) {
3764     Diag(New->getLocation(), diag::err_redefinition_different_kind)
3765         << New->getDeclName();
3766     notePreviousDefinition(Previous.getRepresentativeDecl(),
3767                            New->getLocation());
3768     return New->setInvalidDecl();
3769   }
3770 
3771   // Ensure the template parameters are compatible.
3772   if (NewTemplate &&
3773       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
3774                                       OldTemplate->getTemplateParameters(),
3775                                       /*Complain=*/true, TPL_TemplateMatch))
3776     return New->setInvalidDecl();
3777 
3778   // C++ [class.mem]p1:
3779   //   A member shall not be declared twice in the member-specification [...]
3780   //
3781   // Here, we need only consider static data members.
3782   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3783     Diag(New->getLocation(), diag::err_duplicate_member)
3784       << New->getIdentifier();
3785     Diag(Old->getLocation(), diag::note_previous_declaration);
3786     New->setInvalidDecl();
3787   }
3788 
3789   mergeDeclAttributes(New, Old);
3790   // Warn if an already-declared variable is made a weak_import in a subsequent
3791   // declaration
3792   if (New->hasAttr<WeakImportAttr>() &&
3793       Old->getStorageClass() == SC_None &&
3794       !Old->hasAttr<WeakImportAttr>()) {
3795     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3796     notePreviousDefinition(Old, New->getLocation());
3797     // Remove weak_import attribute on new declaration.
3798     New->dropAttr<WeakImportAttr>();
3799   }
3800 
3801   if (New->hasAttr<InternalLinkageAttr>() &&
3802       !Old->hasAttr<InternalLinkageAttr>()) {
3803     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3804         << New->getDeclName();
3805     notePreviousDefinition(Old, New->getLocation());
3806     New->dropAttr<InternalLinkageAttr>();
3807   }
3808 
3809   // Merge the types.
3810   VarDecl *MostRecent = Old->getMostRecentDecl();
3811   if (MostRecent != Old) {
3812     MergeVarDeclTypes(New, MostRecent,
3813                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
3814     if (New->isInvalidDecl())
3815       return;
3816   }
3817 
3818   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3819   if (New->isInvalidDecl())
3820     return;
3821 
3822   diag::kind PrevDiag;
3823   SourceLocation OldLocation;
3824   std::tie(PrevDiag, OldLocation) =
3825       getNoteDiagForInvalidRedeclaration(Old, New);
3826 
3827   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
3828   if (New->getStorageClass() == SC_Static &&
3829       !New->isStaticDataMember() &&
3830       Old->hasExternalFormalLinkage()) {
3831     if (getLangOpts().MicrosoftExt) {
3832       Diag(New->getLocation(), diag::ext_static_non_static)
3833           << New->getDeclName();
3834       Diag(OldLocation, PrevDiag);
3835     } else {
3836       Diag(New->getLocation(), diag::err_static_non_static)
3837           << New->getDeclName();
3838       Diag(OldLocation, PrevDiag);
3839       return New->setInvalidDecl();
3840     }
3841   }
3842   // C99 6.2.2p4:
3843   //   For an identifier declared with the storage-class specifier
3844   //   extern in a scope in which a prior declaration of that
3845   //   identifier is visible,23) if the prior declaration specifies
3846   //   internal or external linkage, the linkage of the identifier at
3847   //   the later declaration is the same as the linkage specified at
3848   //   the prior declaration. If no prior declaration is visible, or
3849   //   if the prior declaration specifies no linkage, then the
3850   //   identifier has external linkage.
3851   if (New->hasExternalStorage() && Old->hasLinkage())
3852     /* Okay */;
3853   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
3854            !New->isStaticDataMember() &&
3855            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
3856     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
3857     Diag(OldLocation, PrevDiag);
3858     return New->setInvalidDecl();
3859   }
3860 
3861   // Check if extern is followed by non-extern and vice-versa.
3862   if (New->hasExternalStorage() &&
3863       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
3864     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3865     Diag(OldLocation, PrevDiag);
3866     return New->setInvalidDecl();
3867   }
3868   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
3869       !New->hasExternalStorage()) {
3870     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3871     Diag(OldLocation, PrevDiag);
3872     return New->setInvalidDecl();
3873   }
3874 
3875   if (CheckRedeclarationModuleOwnership(New, Old))
3876     return;
3877 
3878   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
3879 
3880   // FIXME: The test for external storage here seems wrong? We still
3881   // need to check for mismatches.
3882   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
3883       // Don't complain about out-of-line definitions of static members.
3884       !(Old->getLexicalDeclContext()->isRecord() &&
3885         !New->getLexicalDeclContext()->isRecord())) {
3886     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
3887     Diag(OldLocation, PrevDiag);
3888     return New->setInvalidDecl();
3889   }
3890 
3891   if (New->isInline() && !Old->getMostRecentDecl()->isInline()) {
3892     if (VarDecl *Def = Old->getDefinition()) {
3893       // C++1z [dcl.fcn.spec]p4:
3894       //   If the definition of a variable appears in a translation unit before
3895       //   its first declaration as inline, the program is ill-formed.
3896       Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
3897       Diag(Def->getLocation(), diag::note_previous_definition);
3898     }
3899   }
3900 
3901   // If this redeclaration makes the variable inline, we may need to add it to
3902   // UndefinedButUsed.
3903   if (!Old->isInline() && New->isInline() && Old->isUsed(false) &&
3904       !Old->getDefinition() && !New->isThisDeclarationADefinition())
3905     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3906                                            SourceLocation()));
3907 
3908   if (New->getTLSKind() != Old->getTLSKind()) {
3909     if (!Old->getTLSKind()) {
3910       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3911       Diag(OldLocation, PrevDiag);
3912     } else if (!New->getTLSKind()) {
3913       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3914       Diag(OldLocation, PrevDiag);
3915     } else {
3916       // Do not allow redeclaration to change the variable between requiring
3917       // static and dynamic initialization.
3918       // FIXME: GCC allows this, but uses the TLS keyword on the first
3919       // declaration to determine the kind. Do we need to be compatible here?
3920       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3921         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3922       Diag(OldLocation, PrevDiag);
3923     }
3924   }
3925 
3926   // C++ doesn't have tentative definitions, so go right ahead and check here.
3927   if (getLangOpts().CPlusPlus &&
3928       New->isThisDeclarationADefinition() == VarDecl::Definition) {
3929     if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() &&
3930         Old->getCanonicalDecl()->isConstexpr()) {
3931       // This definition won't be a definition any more once it's been merged.
3932       Diag(New->getLocation(),
3933            diag::warn_deprecated_redundant_constexpr_static_def);
3934     } else if (VarDecl *Def = Old->getDefinition()) {
3935       if (checkVarDeclRedefinition(Def, New))
3936         return;
3937     }
3938   }
3939 
3940   if (haveIncompatibleLanguageLinkages(Old, New)) {
3941     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3942     Diag(OldLocation, PrevDiag);
3943     New->setInvalidDecl();
3944     return;
3945   }
3946 
3947   // Merge "used" flag.
3948   if (Old->getMostRecentDecl()->isUsed(false))
3949     New->setIsUsed();
3950 
3951   // Keep a chain of previous declarations.
3952   New->setPreviousDecl(Old);
3953   if (NewTemplate)
3954     NewTemplate->setPreviousDecl(OldTemplate);
3955 
3956   // Inherit access appropriately.
3957   New->setAccess(Old->getAccess());
3958   if (NewTemplate)
3959     NewTemplate->setAccess(New->getAccess());
3960 
3961   if (Old->isInline())
3962     New->setImplicitlyInline();
3963 }
3964 
3965 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) {
3966   SourceManager &SrcMgr = getSourceManager();
3967   auto FNewDecLoc = SrcMgr.getDecomposedLoc(New);
3968   auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation());
3969   auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first);
3970   auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first);
3971   auto &HSI = PP.getHeaderSearchInfo();
3972   StringRef HdrFilename =
3973       SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation()));
3974 
3975   auto noteFromModuleOrInclude = [&](Module *Mod,
3976                                      SourceLocation IncLoc) -> bool {
3977     // Redefinition errors with modules are common with non modular mapped
3978     // headers, example: a non-modular header H in module A that also gets
3979     // included directly in a TU. Pointing twice to the same header/definition
3980     // is confusing, try to get better diagnostics when modules is on.
3981     if (IncLoc.isValid()) {
3982       if (Mod) {
3983         Diag(IncLoc, diag::note_redefinition_modules_same_file)
3984             << HdrFilename.str() << Mod->getFullModuleName();
3985         if (!Mod->DefinitionLoc.isInvalid())
3986           Diag(Mod->DefinitionLoc, diag::note_defined_here)
3987               << Mod->getFullModuleName();
3988       } else {
3989         Diag(IncLoc, diag::note_redefinition_include_same_file)
3990             << HdrFilename.str();
3991       }
3992       return true;
3993     }
3994 
3995     return false;
3996   };
3997 
3998   // Is it the same file and same offset? Provide more information on why
3999   // this leads to a redefinition error.
4000   bool EmittedDiag = false;
4001   if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) {
4002     SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first);
4003     SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first);
4004     EmittedDiag = noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc);
4005     EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc);
4006 
4007     // If the header has no guards, emit a note suggesting one.
4008     if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld))
4009       Diag(Old->getLocation(), diag::note_use_ifdef_guards);
4010 
4011     if (EmittedDiag)
4012       return;
4013   }
4014 
4015   // Redefinition coming from different files or couldn't do better above.
4016   Diag(Old->getLocation(), diag::note_previous_definition);
4017 }
4018 
4019 /// We've just determined that \p Old and \p New both appear to be definitions
4020 /// of the same variable. Either diagnose or fix the problem.
4021 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) {
4022   if (!hasVisibleDefinition(Old) &&
4023       (New->getFormalLinkage() == InternalLinkage ||
4024        New->isInline() ||
4025        New->getDescribedVarTemplate() ||
4026        New->getNumTemplateParameterLists() ||
4027        New->getDeclContext()->isDependentContext())) {
4028     // The previous definition is hidden, and multiple definitions are
4029     // permitted (in separate TUs). Demote this to a declaration.
4030     New->demoteThisDefinitionToDeclaration();
4031 
4032     // Make the canonical definition visible.
4033     if (auto *OldTD = Old->getDescribedVarTemplate())
4034       makeMergedDefinitionVisible(OldTD);
4035     makeMergedDefinitionVisible(Old);
4036     return false;
4037   } else {
4038     Diag(New->getLocation(), diag::err_redefinition) << New;
4039     notePreviousDefinition(Old, New->getLocation());
4040     New->setInvalidDecl();
4041     return true;
4042   }
4043 }
4044 
4045 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4046 /// no declarator (e.g. "struct foo;") is parsed.
4047 Decl *
4048 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4049                                  RecordDecl *&AnonRecord) {
4050   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
4051                                     AnonRecord);
4052 }
4053 
4054 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
4055 // disambiguate entities defined in different scopes.
4056 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
4057 // compatibility.
4058 // We will pick our mangling number depending on which version of MSVC is being
4059 // targeted.
4060 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
4061   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
4062              ? S->getMSCurManglingNumber()
4063              : S->getMSLastManglingNumber();
4064 }
4065 
4066 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
4067   if (!Context.getLangOpts().CPlusPlus)
4068     return;
4069 
4070   if (isa<CXXRecordDecl>(Tag->getParent())) {
4071     // If this tag is the direct child of a class, number it if
4072     // it is anonymous.
4073     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
4074       return;
4075     MangleNumberingContext &MCtx =
4076         Context.getManglingNumberContext(Tag->getParent());
4077     Context.setManglingNumber(
4078         Tag, MCtx.getManglingNumber(
4079                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4080     return;
4081   }
4082 
4083   // If this tag isn't a direct child of a class, number it if it is local.
4084   Decl *ManglingContextDecl;
4085   if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4086           Tag->getDeclContext(), ManglingContextDecl)) {
4087     Context.setManglingNumber(
4088         Tag, MCtx->getManglingNumber(
4089                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4090   }
4091 }
4092 
4093 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
4094                                         TypedefNameDecl *NewTD) {
4095   if (TagFromDeclSpec->isInvalidDecl())
4096     return;
4097 
4098   // Do nothing if the tag already has a name for linkage purposes.
4099   if (TagFromDeclSpec->hasNameForLinkage())
4100     return;
4101 
4102   // A well-formed anonymous tag must always be a TUK_Definition.
4103   assert(TagFromDeclSpec->isThisDeclarationADefinition());
4104 
4105   // The type must match the tag exactly;  no qualifiers allowed.
4106   if (!Context.hasSameType(NewTD->getUnderlyingType(),
4107                            Context.getTagDeclType(TagFromDeclSpec))) {
4108     if (getLangOpts().CPlusPlus)
4109       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
4110     return;
4111   }
4112 
4113   // If we've already computed linkage for the anonymous tag, then
4114   // adding a typedef name for the anonymous decl can change that
4115   // linkage, which might be a serious problem.  Diagnose this as
4116   // unsupported and ignore the typedef name.  TODO: we should
4117   // pursue this as a language defect and establish a formal rule
4118   // for how to handle it.
4119   if (TagFromDeclSpec->hasLinkageBeenComputed()) {
4120     Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage);
4121 
4122     SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart();
4123     tagLoc = getLocForEndOfToken(tagLoc);
4124 
4125     llvm::SmallString<40> textToInsert;
4126     textToInsert += ' ';
4127     textToInsert += NewTD->getIdentifier()->getName();
4128     Diag(tagLoc, diag::note_typedef_changes_linkage)
4129         << FixItHint::CreateInsertion(tagLoc, textToInsert);
4130     return;
4131   }
4132 
4133   // Otherwise, set this is the anon-decl typedef for the tag.
4134   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
4135 }
4136 
4137 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
4138   switch (T) {
4139   case DeclSpec::TST_class:
4140     return 0;
4141   case DeclSpec::TST_struct:
4142     return 1;
4143   case DeclSpec::TST_interface:
4144     return 2;
4145   case DeclSpec::TST_union:
4146     return 3;
4147   case DeclSpec::TST_enum:
4148     return 4;
4149   default:
4150     llvm_unreachable("unexpected type specifier");
4151   }
4152 }
4153 
4154 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4155 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
4156 /// parameters to cope with template friend declarations.
4157 Decl *
4158 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4159                                  MultiTemplateParamsArg TemplateParams,
4160                                  bool IsExplicitInstantiation,
4161                                  RecordDecl *&AnonRecord) {
4162   Decl *TagD = nullptr;
4163   TagDecl *Tag = nullptr;
4164   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
4165       DS.getTypeSpecType() == DeclSpec::TST_struct ||
4166       DS.getTypeSpecType() == DeclSpec::TST_interface ||
4167       DS.getTypeSpecType() == DeclSpec::TST_union ||
4168       DS.getTypeSpecType() == DeclSpec::TST_enum) {
4169     TagD = DS.getRepAsDecl();
4170 
4171     if (!TagD) // We probably had an error
4172       return nullptr;
4173 
4174     // Note that the above type specs guarantee that the
4175     // type rep is a Decl, whereas in many of the others
4176     // it's a Type.
4177     if (isa<TagDecl>(TagD))
4178       Tag = cast<TagDecl>(TagD);
4179     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
4180       Tag = CTD->getTemplatedDecl();
4181   }
4182 
4183   if (Tag) {
4184     handleTagNumbering(Tag, S);
4185     Tag->setFreeStanding();
4186     if (Tag->isInvalidDecl())
4187       return Tag;
4188   }
4189 
4190   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
4191     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
4192     // or incomplete types shall not be restrict-qualified."
4193     if (TypeQuals & DeclSpec::TQ_restrict)
4194       Diag(DS.getRestrictSpecLoc(),
4195            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
4196            << DS.getSourceRange();
4197   }
4198 
4199   if (DS.isInlineSpecified())
4200     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
4201         << getLangOpts().CPlusPlus1z;
4202 
4203   if (DS.isConstexprSpecified()) {
4204     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
4205     // and definitions of functions and variables.
4206     if (Tag)
4207       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
4208           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType());
4209     else
4210       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
4211     // Don't emit warnings after this error.
4212     return TagD;
4213   }
4214 
4215   if (DS.isConceptSpecified()) {
4216     // C++ Concepts TS [dcl.spec.concept]p1: A concept definition refers to
4217     // either a function concept and its definition or a variable concept and
4218     // its initializer.
4219     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
4220     return TagD;
4221   }
4222 
4223   DiagnoseFunctionSpecifiers(DS);
4224 
4225   if (DS.isFriendSpecified()) {
4226     // If we're dealing with a decl but not a TagDecl, assume that
4227     // whatever routines created it handled the friendship aspect.
4228     if (TagD && !Tag)
4229       return nullptr;
4230     return ActOnFriendTypeDecl(S, DS, TemplateParams);
4231   }
4232 
4233   const CXXScopeSpec &SS = DS.getTypeSpecScope();
4234   bool IsExplicitSpecialization =
4235     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
4236   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
4237       !IsExplicitInstantiation && !IsExplicitSpecialization &&
4238       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
4239     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
4240     // nested-name-specifier unless it is an explicit instantiation
4241     // or an explicit specialization.
4242     //
4243     // FIXME: We allow class template partial specializations here too, per the
4244     // obvious intent of DR1819.
4245     //
4246     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
4247     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
4248         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
4249     return nullptr;
4250   }
4251 
4252   // Track whether this decl-specifier declares anything.
4253   bool DeclaresAnything = true;
4254 
4255   // Handle anonymous struct definitions.
4256   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
4257     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
4258         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
4259       if (getLangOpts().CPlusPlus ||
4260           Record->getDeclContext()->isRecord()) {
4261         // If CurContext is a DeclContext that can contain statements,
4262         // RecursiveASTVisitor won't visit the decls that
4263         // BuildAnonymousStructOrUnion() will put into CurContext.
4264         // Also store them here so that they can be part of the
4265         // DeclStmt that gets created in this case.
4266         // FIXME: Also return the IndirectFieldDecls created by
4267         // BuildAnonymousStructOr union, for the same reason?
4268         if (CurContext->isFunctionOrMethod())
4269           AnonRecord = Record;
4270         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
4271                                            Context.getPrintingPolicy());
4272       }
4273 
4274       DeclaresAnything = false;
4275     }
4276   }
4277 
4278   // C11 6.7.2.1p2:
4279   //   A struct-declaration that does not declare an anonymous structure or
4280   //   anonymous union shall contain a struct-declarator-list.
4281   //
4282   // This rule also existed in C89 and C99; the grammar for struct-declaration
4283   // did not permit a struct-declaration without a struct-declarator-list.
4284   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
4285       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
4286     // Check for Microsoft C extension: anonymous struct/union member.
4287     // Handle 2 kinds of anonymous struct/union:
4288     //   struct STRUCT;
4289     //   union UNION;
4290     // and
4291     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
4292     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
4293     if ((Tag && Tag->getDeclName()) ||
4294         DS.getTypeSpecType() == DeclSpec::TST_typename) {
4295       RecordDecl *Record = nullptr;
4296       if (Tag)
4297         Record = dyn_cast<RecordDecl>(Tag);
4298       else if (const RecordType *RT =
4299                    DS.getRepAsType().get()->getAsStructureType())
4300         Record = RT->getDecl();
4301       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
4302         Record = UT->getDecl();
4303 
4304       if (Record && getLangOpts().MicrosoftExt) {
4305         Diag(DS.getLocStart(), diag::ext_ms_anonymous_record)
4306           << Record->isUnion() << DS.getSourceRange();
4307         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
4308       }
4309 
4310       DeclaresAnything = false;
4311     }
4312   }
4313 
4314   // Skip all the checks below if we have a type error.
4315   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
4316       (TagD && TagD->isInvalidDecl()))
4317     return TagD;
4318 
4319   if (getLangOpts().CPlusPlus &&
4320       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
4321     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
4322       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
4323           !Enum->getIdentifier() && !Enum->isInvalidDecl())
4324         DeclaresAnything = false;
4325 
4326   if (!DS.isMissingDeclaratorOk()) {
4327     // Customize diagnostic for a typedef missing a name.
4328     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
4329       Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
4330         << DS.getSourceRange();
4331     else
4332       DeclaresAnything = false;
4333   }
4334 
4335   if (DS.isModulePrivateSpecified() &&
4336       Tag && Tag->getDeclContext()->isFunctionOrMethod())
4337     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
4338       << Tag->getTagKind()
4339       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
4340 
4341   ActOnDocumentableDecl(TagD);
4342 
4343   // C 6.7/2:
4344   //   A declaration [...] shall declare at least a declarator [...], a tag,
4345   //   or the members of an enumeration.
4346   // C++ [dcl.dcl]p3:
4347   //   [If there are no declarators], and except for the declaration of an
4348   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
4349   //   names into the program, or shall redeclare a name introduced by a
4350   //   previous declaration.
4351   if (!DeclaresAnything) {
4352     // In C, we allow this as a (popular) extension / bug. Don't bother
4353     // producing further diagnostics for redundant qualifiers after this.
4354     Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
4355     return TagD;
4356   }
4357 
4358   // C++ [dcl.stc]p1:
4359   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
4360   //   init-declarator-list of the declaration shall not be empty.
4361   // C++ [dcl.fct.spec]p1:
4362   //   If a cv-qualifier appears in a decl-specifier-seq, the
4363   //   init-declarator-list of the declaration shall not be empty.
4364   //
4365   // Spurious qualifiers here appear to be valid in C.
4366   unsigned DiagID = diag::warn_standalone_specifier;
4367   if (getLangOpts().CPlusPlus)
4368     DiagID = diag::ext_standalone_specifier;
4369 
4370   // Note that a linkage-specification sets a storage class, but
4371   // 'extern "C" struct foo;' is actually valid and not theoretically
4372   // useless.
4373   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
4374     if (SCS == DeclSpec::SCS_mutable)
4375       // Since mutable is not a viable storage class specifier in C, there is
4376       // no reason to treat it as an extension. Instead, diagnose as an error.
4377       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
4378     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
4379       Diag(DS.getStorageClassSpecLoc(), DiagID)
4380         << DeclSpec::getSpecifierName(SCS);
4381   }
4382 
4383   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
4384     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
4385       << DeclSpec::getSpecifierName(TSCS);
4386   if (DS.getTypeQualifiers()) {
4387     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4388       Diag(DS.getConstSpecLoc(), DiagID) << "const";
4389     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4390       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
4391     // Restrict is covered above.
4392     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4393       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
4394     if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4395       Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned";
4396   }
4397 
4398   // Warn about ignored type attributes, for example:
4399   // __attribute__((aligned)) struct A;
4400   // Attributes should be placed after tag to apply to type declaration.
4401   if (!DS.getAttributes().empty()) {
4402     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
4403     if (TypeSpecType == DeclSpec::TST_class ||
4404         TypeSpecType == DeclSpec::TST_struct ||
4405         TypeSpecType == DeclSpec::TST_interface ||
4406         TypeSpecType == DeclSpec::TST_union ||
4407         TypeSpecType == DeclSpec::TST_enum) {
4408       for (AttributeList* attrs = DS.getAttributes().getList(); attrs;
4409            attrs = attrs->getNext())
4410         Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
4411             << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType);
4412     }
4413   }
4414 
4415   return TagD;
4416 }
4417 
4418 /// We are trying to inject an anonymous member into the given scope;
4419 /// check if there's an existing declaration that can't be overloaded.
4420 ///
4421 /// \return true if this is a forbidden redeclaration
4422 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4423                                          Scope *S,
4424                                          DeclContext *Owner,
4425                                          DeclarationName Name,
4426                                          SourceLocation NameLoc,
4427                                          bool IsUnion) {
4428   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4429                  Sema::ForVisibleRedeclaration);
4430   if (!SemaRef.LookupName(R, S)) return false;
4431 
4432   // Pick a representative declaration.
4433   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4434   assert(PrevDecl && "Expected a non-null Decl");
4435 
4436   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4437     return false;
4438 
4439   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4440     << IsUnion << Name;
4441   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4442 
4443   return true;
4444 }
4445 
4446 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4447 /// anonymous struct or union AnonRecord into the owning context Owner
4448 /// and scope S. This routine will be invoked just after we realize
4449 /// that an unnamed union or struct is actually an anonymous union or
4450 /// struct, e.g.,
4451 ///
4452 /// @code
4453 /// union {
4454 ///   int i;
4455 ///   float f;
4456 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4457 ///    // f into the surrounding scope.x
4458 /// @endcode
4459 ///
4460 /// This routine is recursive, injecting the names of nested anonymous
4461 /// structs/unions into the owning context and scope as well.
4462 static bool
4463 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4464                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4465                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4466   bool Invalid = false;
4467 
4468   // Look every FieldDecl and IndirectFieldDecl with a name.
4469   for (auto *D : AnonRecord->decls()) {
4470     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4471         cast<NamedDecl>(D)->getDeclName()) {
4472       ValueDecl *VD = cast<ValueDecl>(D);
4473       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4474                                        VD->getLocation(),
4475                                        AnonRecord->isUnion())) {
4476         // C++ [class.union]p2:
4477         //   The names of the members of an anonymous union shall be
4478         //   distinct from the names of any other entity in the
4479         //   scope in which the anonymous union is declared.
4480         Invalid = true;
4481       } else {
4482         // C++ [class.union]p2:
4483         //   For the purpose of name lookup, after the anonymous union
4484         //   definition, the members of the anonymous union are
4485         //   considered to have been defined in the scope in which the
4486         //   anonymous union is declared.
4487         unsigned OldChainingSize = Chaining.size();
4488         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4489           Chaining.append(IF->chain_begin(), IF->chain_end());
4490         else
4491           Chaining.push_back(VD);
4492 
4493         assert(Chaining.size() >= 2);
4494         NamedDecl **NamedChain =
4495           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4496         for (unsigned i = 0; i < Chaining.size(); i++)
4497           NamedChain[i] = Chaining[i];
4498 
4499         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4500             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4501             VD->getType(), {NamedChain, Chaining.size()});
4502 
4503         for (const auto *Attr : VD->attrs())
4504           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4505 
4506         IndirectField->setAccess(AS);
4507         IndirectField->setImplicit();
4508         SemaRef.PushOnScopeChains(IndirectField, S);
4509 
4510         // That includes picking up the appropriate access specifier.
4511         if (AS != AS_none) IndirectField->setAccess(AS);
4512 
4513         Chaining.resize(OldChainingSize);
4514       }
4515     }
4516   }
4517 
4518   return Invalid;
4519 }
4520 
4521 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4522 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4523 /// illegal input values are mapped to SC_None.
4524 static StorageClass
4525 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4526   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4527   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4528          "Parser allowed 'typedef' as storage class VarDecl.");
4529   switch (StorageClassSpec) {
4530   case DeclSpec::SCS_unspecified:    return SC_None;
4531   case DeclSpec::SCS_extern:
4532     if (DS.isExternInLinkageSpec())
4533       return SC_None;
4534     return SC_Extern;
4535   case DeclSpec::SCS_static:         return SC_Static;
4536   case DeclSpec::SCS_auto:           return SC_Auto;
4537   case DeclSpec::SCS_register:       return SC_Register;
4538   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4539     // Illegal SCSs map to None: error reporting is up to the caller.
4540   case DeclSpec::SCS_mutable:        // Fall through.
4541   case DeclSpec::SCS_typedef:        return SC_None;
4542   }
4543   llvm_unreachable("unknown storage class specifier");
4544 }
4545 
4546 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4547   assert(Record->hasInClassInitializer());
4548 
4549   for (const auto *I : Record->decls()) {
4550     const auto *FD = dyn_cast<FieldDecl>(I);
4551     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4552       FD = IFD->getAnonField();
4553     if (FD && FD->hasInClassInitializer())
4554       return FD->getLocation();
4555   }
4556 
4557   llvm_unreachable("couldn't find in-class initializer");
4558 }
4559 
4560 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4561                                       SourceLocation DefaultInitLoc) {
4562   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4563     return;
4564 
4565   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4566   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4567 }
4568 
4569 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4570                                       CXXRecordDecl *AnonUnion) {
4571   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4572     return;
4573 
4574   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4575 }
4576 
4577 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4578 /// anonymous structure or union. Anonymous unions are a C++ feature
4579 /// (C++ [class.union]) and a C11 feature; anonymous structures
4580 /// are a C11 feature and GNU C++ extension.
4581 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4582                                         AccessSpecifier AS,
4583                                         RecordDecl *Record,
4584                                         const PrintingPolicy &Policy) {
4585   DeclContext *Owner = Record->getDeclContext();
4586 
4587   // Diagnose whether this anonymous struct/union is an extension.
4588   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4589     Diag(Record->getLocation(), diag::ext_anonymous_union);
4590   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4591     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4592   else if (!Record->isUnion() && !getLangOpts().C11)
4593     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4594 
4595   // C and C++ require different kinds of checks for anonymous
4596   // structs/unions.
4597   bool Invalid = false;
4598   if (getLangOpts().CPlusPlus) {
4599     const char *PrevSpec = nullptr;
4600     unsigned DiagID;
4601     if (Record->isUnion()) {
4602       // C++ [class.union]p6:
4603       //   Anonymous unions declared in a named namespace or in the
4604       //   global namespace shall be declared static.
4605       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
4606           (isa<TranslationUnitDecl>(Owner) ||
4607            (isa<NamespaceDecl>(Owner) &&
4608             cast<NamespaceDecl>(Owner)->getDeclName()))) {
4609         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
4610           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
4611 
4612         // Recover by adding 'static'.
4613         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
4614                                PrevSpec, DiagID, Policy);
4615       }
4616       // C++ [class.union]p6:
4617       //   A storage class is not allowed in a declaration of an
4618       //   anonymous union in a class scope.
4619       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
4620                isa<RecordDecl>(Owner)) {
4621         Diag(DS.getStorageClassSpecLoc(),
4622              diag::err_anonymous_union_with_storage_spec)
4623           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
4624 
4625         // Recover by removing the storage specifier.
4626         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
4627                                SourceLocation(),
4628                                PrevSpec, DiagID, Context.getPrintingPolicy());
4629       }
4630     }
4631 
4632     // Ignore const/volatile/restrict qualifiers.
4633     if (DS.getTypeQualifiers()) {
4634       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4635         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
4636           << Record->isUnion() << "const"
4637           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
4638       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4639         Diag(DS.getVolatileSpecLoc(),
4640              diag::ext_anonymous_struct_union_qualified)
4641           << Record->isUnion() << "volatile"
4642           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
4643       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
4644         Diag(DS.getRestrictSpecLoc(),
4645              diag::ext_anonymous_struct_union_qualified)
4646           << Record->isUnion() << "restrict"
4647           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
4648       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4649         Diag(DS.getAtomicSpecLoc(),
4650              diag::ext_anonymous_struct_union_qualified)
4651           << Record->isUnion() << "_Atomic"
4652           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
4653       if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4654         Diag(DS.getUnalignedSpecLoc(),
4655              diag::ext_anonymous_struct_union_qualified)
4656           << Record->isUnion() << "__unaligned"
4657           << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc());
4658 
4659       DS.ClearTypeQualifiers();
4660     }
4661 
4662     // C++ [class.union]p2:
4663     //   The member-specification of an anonymous union shall only
4664     //   define non-static data members. [Note: nested types and
4665     //   functions cannot be declared within an anonymous union. ]
4666     for (auto *Mem : Record->decls()) {
4667       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
4668         // C++ [class.union]p3:
4669         //   An anonymous union shall not have private or protected
4670         //   members (clause 11).
4671         assert(FD->getAccess() != AS_none);
4672         if (FD->getAccess() != AS_public) {
4673           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
4674             << Record->isUnion() << (FD->getAccess() == AS_protected);
4675           Invalid = true;
4676         }
4677 
4678         // C++ [class.union]p1
4679         //   An object of a class with a non-trivial constructor, a non-trivial
4680         //   copy constructor, a non-trivial destructor, or a non-trivial copy
4681         //   assignment operator cannot be a member of a union, nor can an
4682         //   array of such objects.
4683         if (CheckNontrivialField(FD))
4684           Invalid = true;
4685       } else if (Mem->isImplicit()) {
4686         // Any implicit members are fine.
4687       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
4688         // This is a type that showed up in an
4689         // elaborated-type-specifier inside the anonymous struct or
4690         // union, but which actually declares a type outside of the
4691         // anonymous struct or union. It's okay.
4692       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
4693         if (!MemRecord->isAnonymousStructOrUnion() &&
4694             MemRecord->getDeclName()) {
4695           // Visual C++ allows type definition in anonymous struct or union.
4696           if (getLangOpts().MicrosoftExt)
4697             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
4698               << Record->isUnion();
4699           else {
4700             // This is a nested type declaration.
4701             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
4702               << Record->isUnion();
4703             Invalid = true;
4704           }
4705         } else {
4706           // This is an anonymous type definition within another anonymous type.
4707           // This is a popular extension, provided by Plan9, MSVC and GCC, but
4708           // not part of standard C++.
4709           Diag(MemRecord->getLocation(),
4710                diag::ext_anonymous_record_with_anonymous_type)
4711             << Record->isUnion();
4712         }
4713       } else if (isa<AccessSpecDecl>(Mem)) {
4714         // Any access specifier is fine.
4715       } else if (isa<StaticAssertDecl>(Mem)) {
4716         // In C++1z, static_assert declarations are also fine.
4717       } else {
4718         // We have something that isn't a non-static data
4719         // member. Complain about it.
4720         unsigned DK = diag::err_anonymous_record_bad_member;
4721         if (isa<TypeDecl>(Mem))
4722           DK = diag::err_anonymous_record_with_type;
4723         else if (isa<FunctionDecl>(Mem))
4724           DK = diag::err_anonymous_record_with_function;
4725         else if (isa<VarDecl>(Mem))
4726           DK = diag::err_anonymous_record_with_static;
4727 
4728         // Visual C++ allows type definition in anonymous struct or union.
4729         if (getLangOpts().MicrosoftExt &&
4730             DK == diag::err_anonymous_record_with_type)
4731           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
4732             << Record->isUnion();
4733         else {
4734           Diag(Mem->getLocation(), DK) << Record->isUnion();
4735           Invalid = true;
4736         }
4737       }
4738     }
4739 
4740     // C++11 [class.union]p8 (DR1460):
4741     //   At most one variant member of a union may have a
4742     //   brace-or-equal-initializer.
4743     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
4744         Owner->isRecord())
4745       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
4746                                 cast<CXXRecordDecl>(Record));
4747   }
4748 
4749   if (!Record->isUnion() && !Owner->isRecord()) {
4750     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
4751       << getLangOpts().CPlusPlus;
4752     Invalid = true;
4753   }
4754 
4755   // Mock up a declarator.
4756   Declarator Dc(DS, Declarator::MemberContext);
4757   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4758   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
4759 
4760   // Create a declaration for this anonymous struct/union.
4761   NamedDecl *Anon = nullptr;
4762   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
4763     Anon = FieldDecl::Create(Context, OwningClass,
4764                              DS.getLocStart(),
4765                              Record->getLocation(),
4766                              /*IdentifierInfo=*/nullptr,
4767                              Context.getTypeDeclType(Record),
4768                              TInfo,
4769                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4770                              /*InitStyle=*/ICIS_NoInit);
4771     Anon->setAccess(AS);
4772     if (getLangOpts().CPlusPlus)
4773       FieldCollector->Add(cast<FieldDecl>(Anon));
4774   } else {
4775     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
4776     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
4777     if (SCSpec == DeclSpec::SCS_mutable) {
4778       // mutable can only appear on non-static class members, so it's always
4779       // an error here
4780       Diag(Record->getLocation(), diag::err_mutable_nonmember);
4781       Invalid = true;
4782       SC = SC_None;
4783     }
4784 
4785     Anon = VarDecl::Create(Context, Owner,
4786                            DS.getLocStart(),
4787                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
4788                            Context.getTypeDeclType(Record),
4789                            TInfo, SC);
4790 
4791     // Default-initialize the implicit variable. This initialization will be
4792     // trivial in almost all cases, except if a union member has an in-class
4793     // initializer:
4794     //   union { int n = 0; };
4795     ActOnUninitializedDecl(Anon);
4796   }
4797   Anon->setImplicit();
4798 
4799   // Mark this as an anonymous struct/union type.
4800   Record->setAnonymousStructOrUnion(true);
4801 
4802   // Add the anonymous struct/union object to the current
4803   // context. We'll be referencing this object when we refer to one of
4804   // its members.
4805   Owner->addDecl(Anon);
4806 
4807   // Inject the members of the anonymous struct/union into the owning
4808   // context and into the identifier resolver chain for name lookup
4809   // purposes.
4810   SmallVector<NamedDecl*, 2> Chain;
4811   Chain.push_back(Anon);
4812 
4813   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
4814     Invalid = true;
4815 
4816   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
4817     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
4818       Decl *ManglingContextDecl;
4819       if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4820               NewVD->getDeclContext(), ManglingContextDecl)) {
4821         Context.setManglingNumber(
4822             NewVD, MCtx->getManglingNumber(
4823                        NewVD, getMSManglingNumber(getLangOpts(), S)));
4824         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
4825       }
4826     }
4827   }
4828 
4829   if (Invalid)
4830     Anon->setInvalidDecl();
4831 
4832   return Anon;
4833 }
4834 
4835 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
4836 /// Microsoft C anonymous structure.
4837 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
4838 /// Example:
4839 ///
4840 /// struct A { int a; };
4841 /// struct B { struct A; int b; };
4842 ///
4843 /// void foo() {
4844 ///   B var;
4845 ///   var.a = 3;
4846 /// }
4847 ///
4848 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
4849                                            RecordDecl *Record) {
4850   assert(Record && "expected a record!");
4851 
4852   // Mock up a declarator.
4853   Declarator Dc(DS, Declarator::TypeNameContext);
4854   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4855   assert(TInfo && "couldn't build declarator info for anonymous struct");
4856 
4857   auto *ParentDecl = cast<RecordDecl>(CurContext);
4858   QualType RecTy = Context.getTypeDeclType(Record);
4859 
4860   // Create a declaration for this anonymous struct.
4861   NamedDecl *Anon = FieldDecl::Create(Context,
4862                              ParentDecl,
4863                              DS.getLocStart(),
4864                              DS.getLocStart(),
4865                              /*IdentifierInfo=*/nullptr,
4866                              RecTy,
4867                              TInfo,
4868                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4869                              /*InitStyle=*/ICIS_NoInit);
4870   Anon->setImplicit();
4871 
4872   // Add the anonymous struct object to the current context.
4873   CurContext->addDecl(Anon);
4874 
4875   // Inject the members of the anonymous struct into the current
4876   // context and into the identifier resolver chain for name lookup
4877   // purposes.
4878   SmallVector<NamedDecl*, 2> Chain;
4879   Chain.push_back(Anon);
4880 
4881   RecordDecl *RecordDef = Record->getDefinition();
4882   if (RequireCompleteType(Anon->getLocation(), RecTy,
4883                           diag::err_field_incomplete) ||
4884       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
4885                                           AS_none, Chain)) {
4886     Anon->setInvalidDecl();
4887     ParentDecl->setInvalidDecl();
4888   }
4889 
4890   return Anon;
4891 }
4892 
4893 /// GetNameForDeclarator - Determine the full declaration name for the
4894 /// given Declarator.
4895 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
4896   return GetNameFromUnqualifiedId(D.getName());
4897 }
4898 
4899 /// \brief Retrieves the declaration name from a parsed unqualified-id.
4900 DeclarationNameInfo
4901 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
4902   DeclarationNameInfo NameInfo;
4903   NameInfo.setLoc(Name.StartLocation);
4904 
4905   switch (Name.getKind()) {
4906 
4907   case UnqualifiedId::IK_ImplicitSelfParam:
4908   case UnqualifiedId::IK_Identifier:
4909     NameInfo.setName(Name.Identifier);
4910     NameInfo.setLoc(Name.StartLocation);
4911     return NameInfo;
4912 
4913   case UnqualifiedId::IK_DeductionGuideName: {
4914     // C++ [temp.deduct.guide]p3:
4915     //   The simple-template-id shall name a class template specialization.
4916     //   The template-name shall be the same identifier as the template-name
4917     //   of the simple-template-id.
4918     // These together intend to imply that the template-name shall name a
4919     // class template.
4920     // FIXME: template<typename T> struct X {};
4921     //        template<typename T> using Y = X<T>;
4922     //        Y(int) -> Y<int>;
4923     //   satisfies these rules but does not name a class template.
4924     TemplateName TN = Name.TemplateName.get().get();
4925     auto *Template = TN.getAsTemplateDecl();
4926     if (!Template || !isa<ClassTemplateDecl>(Template)) {
4927       Diag(Name.StartLocation,
4928            diag::err_deduction_guide_name_not_class_template)
4929         << (int)getTemplateNameKindForDiagnostics(TN) << TN;
4930       if (Template)
4931         Diag(Template->getLocation(), diag::note_template_decl_here);
4932       return DeclarationNameInfo();
4933     }
4934 
4935     NameInfo.setName(
4936         Context.DeclarationNames.getCXXDeductionGuideName(Template));
4937     NameInfo.setLoc(Name.StartLocation);
4938     return NameInfo;
4939   }
4940 
4941   case UnqualifiedId::IK_OperatorFunctionId:
4942     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
4943                                            Name.OperatorFunctionId.Operator));
4944     NameInfo.setLoc(Name.StartLocation);
4945     NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
4946       = Name.OperatorFunctionId.SymbolLocations[0];
4947     NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
4948       = Name.EndLocation.getRawEncoding();
4949     return NameInfo;
4950 
4951   case UnqualifiedId::IK_LiteralOperatorId:
4952     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
4953                                                            Name.Identifier));
4954     NameInfo.setLoc(Name.StartLocation);
4955     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
4956     return NameInfo;
4957 
4958   case UnqualifiedId::IK_ConversionFunctionId: {
4959     TypeSourceInfo *TInfo;
4960     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
4961     if (Ty.isNull())
4962       return DeclarationNameInfo();
4963     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
4964                                                Context.getCanonicalType(Ty)));
4965     NameInfo.setLoc(Name.StartLocation);
4966     NameInfo.setNamedTypeInfo(TInfo);
4967     return NameInfo;
4968   }
4969 
4970   case UnqualifiedId::IK_ConstructorName: {
4971     TypeSourceInfo *TInfo;
4972     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
4973     if (Ty.isNull())
4974       return DeclarationNameInfo();
4975     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4976                                               Context.getCanonicalType(Ty)));
4977     NameInfo.setLoc(Name.StartLocation);
4978     NameInfo.setNamedTypeInfo(TInfo);
4979     return NameInfo;
4980   }
4981 
4982   case UnqualifiedId::IK_ConstructorTemplateId: {
4983     // In well-formed code, we can only have a constructor
4984     // template-id that refers to the current context, so go there
4985     // to find the actual type being constructed.
4986     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
4987     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
4988       return DeclarationNameInfo();
4989 
4990     // Determine the type of the class being constructed.
4991     QualType CurClassType = Context.getTypeDeclType(CurClass);
4992 
4993     // FIXME: Check two things: that the template-id names the same type as
4994     // CurClassType, and that the template-id does not occur when the name
4995     // was qualified.
4996 
4997     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4998                                     Context.getCanonicalType(CurClassType)));
4999     NameInfo.setLoc(Name.StartLocation);
5000     // FIXME: should we retrieve TypeSourceInfo?
5001     NameInfo.setNamedTypeInfo(nullptr);
5002     return NameInfo;
5003   }
5004 
5005   case UnqualifiedId::IK_DestructorName: {
5006     TypeSourceInfo *TInfo;
5007     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
5008     if (Ty.isNull())
5009       return DeclarationNameInfo();
5010     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
5011                                               Context.getCanonicalType(Ty)));
5012     NameInfo.setLoc(Name.StartLocation);
5013     NameInfo.setNamedTypeInfo(TInfo);
5014     return NameInfo;
5015   }
5016 
5017   case UnqualifiedId::IK_TemplateId: {
5018     TemplateName TName = Name.TemplateId->Template.get();
5019     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
5020     return Context.getNameForTemplate(TName, TNameLoc);
5021   }
5022 
5023   } // switch (Name.getKind())
5024 
5025   llvm_unreachable("Unknown name kind");
5026 }
5027 
5028 static QualType getCoreType(QualType Ty) {
5029   do {
5030     if (Ty->isPointerType() || Ty->isReferenceType())
5031       Ty = Ty->getPointeeType();
5032     else if (Ty->isArrayType())
5033       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
5034     else
5035       return Ty.withoutLocalFastQualifiers();
5036   } while (true);
5037 }
5038 
5039 /// hasSimilarParameters - Determine whether the C++ functions Declaration
5040 /// and Definition have "nearly" matching parameters. This heuristic is
5041 /// used to improve diagnostics in the case where an out-of-line function
5042 /// definition doesn't match any declaration within the class or namespace.
5043 /// Also sets Params to the list of indices to the parameters that differ
5044 /// between the declaration and the definition. If hasSimilarParameters
5045 /// returns true and Params is empty, then all of the parameters match.
5046 static bool hasSimilarParameters(ASTContext &Context,
5047                                      FunctionDecl *Declaration,
5048                                      FunctionDecl *Definition,
5049                                      SmallVectorImpl<unsigned> &Params) {
5050   Params.clear();
5051   if (Declaration->param_size() != Definition->param_size())
5052     return false;
5053   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
5054     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
5055     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
5056 
5057     // The parameter types are identical
5058     if (Context.hasSameType(DefParamTy, DeclParamTy))
5059       continue;
5060 
5061     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
5062     QualType DefParamBaseTy = getCoreType(DefParamTy);
5063     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
5064     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
5065 
5066     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
5067         (DeclTyName && DeclTyName == DefTyName))
5068       Params.push_back(Idx);
5069     else  // The two parameters aren't even close
5070       return false;
5071   }
5072 
5073   return true;
5074 }
5075 
5076 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
5077 /// declarator needs to be rebuilt in the current instantiation.
5078 /// Any bits of declarator which appear before the name are valid for
5079 /// consideration here.  That's specifically the type in the decl spec
5080 /// and the base type in any member-pointer chunks.
5081 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
5082                                                     DeclarationName Name) {
5083   // The types we specifically need to rebuild are:
5084   //   - typenames, typeofs, and decltypes
5085   //   - types which will become injected class names
5086   // Of course, we also need to rebuild any type referencing such a
5087   // type.  It's safest to just say "dependent", but we call out a
5088   // few cases here.
5089 
5090   DeclSpec &DS = D.getMutableDeclSpec();
5091   switch (DS.getTypeSpecType()) {
5092   case DeclSpec::TST_typename:
5093   case DeclSpec::TST_typeofType:
5094   case DeclSpec::TST_underlyingType:
5095   case DeclSpec::TST_atomic: {
5096     // Grab the type from the parser.
5097     TypeSourceInfo *TSI = nullptr;
5098     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
5099     if (T.isNull() || !T->isDependentType()) break;
5100 
5101     // Make sure there's a type source info.  This isn't really much
5102     // of a waste; most dependent types should have type source info
5103     // attached already.
5104     if (!TSI)
5105       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
5106 
5107     // Rebuild the type in the current instantiation.
5108     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
5109     if (!TSI) return true;
5110 
5111     // Store the new type back in the decl spec.
5112     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
5113     DS.UpdateTypeRep(LocType);
5114     break;
5115   }
5116 
5117   case DeclSpec::TST_decltype:
5118   case DeclSpec::TST_typeofExpr: {
5119     Expr *E = DS.getRepAsExpr();
5120     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
5121     if (Result.isInvalid()) return true;
5122     DS.UpdateExprRep(Result.get());
5123     break;
5124   }
5125 
5126   default:
5127     // Nothing to do for these decl specs.
5128     break;
5129   }
5130 
5131   // It doesn't matter what order we do this in.
5132   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
5133     DeclaratorChunk &Chunk = D.getTypeObject(I);
5134 
5135     // The only type information in the declarator which can come
5136     // before the declaration name is the base type of a member
5137     // pointer.
5138     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
5139       continue;
5140 
5141     // Rebuild the scope specifier in-place.
5142     CXXScopeSpec &SS = Chunk.Mem.Scope();
5143     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
5144       return true;
5145   }
5146 
5147   return false;
5148 }
5149 
5150 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
5151   D.setFunctionDefinitionKind(FDK_Declaration);
5152   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
5153 
5154   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
5155       Dcl && Dcl->getDeclContext()->isFileContext())
5156     Dcl->setTopLevelDeclInObjCContainer();
5157 
5158   if (getLangOpts().OpenCL)
5159     setCurrentOpenCLExtensionForDecl(Dcl);
5160 
5161   return Dcl;
5162 }
5163 
5164 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
5165 ///   If T is the name of a class, then each of the following shall have a
5166 ///   name different from T:
5167 ///     - every static data member of class T;
5168 ///     - every member function of class T
5169 ///     - every member of class T that is itself a type;
5170 /// \returns true if the declaration name violates these rules.
5171 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
5172                                    DeclarationNameInfo NameInfo) {
5173   DeclarationName Name = NameInfo.getName();
5174 
5175   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
5176   while (Record && Record->isAnonymousStructOrUnion())
5177     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
5178   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
5179     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
5180     return true;
5181   }
5182 
5183   return false;
5184 }
5185 
5186 /// \brief Diagnose a declaration whose declarator-id has the given
5187 /// nested-name-specifier.
5188 ///
5189 /// \param SS The nested-name-specifier of the declarator-id.
5190 ///
5191 /// \param DC The declaration context to which the nested-name-specifier
5192 /// resolves.
5193 ///
5194 /// \param Name The name of the entity being declared.
5195 ///
5196 /// \param Loc The location of the name of the entity being declared.
5197 ///
5198 /// \returns true if we cannot safely recover from this error, false otherwise.
5199 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
5200                                         DeclarationName Name,
5201                                         SourceLocation Loc) {
5202   DeclContext *Cur = CurContext;
5203   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
5204     Cur = Cur->getParent();
5205 
5206   // If the user provided a superfluous scope specifier that refers back to the
5207   // class in which the entity is already declared, diagnose and ignore it.
5208   //
5209   // class X {
5210   //   void X::f();
5211   // };
5212   //
5213   // Note, it was once ill-formed to give redundant qualification in all
5214   // contexts, but that rule was removed by DR482.
5215   if (Cur->Equals(DC)) {
5216     if (Cur->isRecord()) {
5217       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
5218                                       : diag::err_member_extra_qualification)
5219         << Name << FixItHint::CreateRemoval(SS.getRange());
5220       SS.clear();
5221     } else {
5222       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
5223     }
5224     return false;
5225   }
5226 
5227   // Check whether the qualifying scope encloses the scope of the original
5228   // declaration.
5229   if (!Cur->Encloses(DC)) {
5230     if (Cur->isRecord())
5231       Diag(Loc, diag::err_member_qualification)
5232         << Name << SS.getRange();
5233     else if (isa<TranslationUnitDecl>(DC))
5234       Diag(Loc, diag::err_invalid_declarator_global_scope)
5235         << Name << SS.getRange();
5236     else if (isa<FunctionDecl>(Cur))
5237       Diag(Loc, diag::err_invalid_declarator_in_function)
5238         << Name << SS.getRange();
5239     else if (isa<BlockDecl>(Cur))
5240       Diag(Loc, diag::err_invalid_declarator_in_block)
5241         << Name << SS.getRange();
5242     else
5243       Diag(Loc, diag::err_invalid_declarator_scope)
5244       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
5245 
5246     return true;
5247   }
5248 
5249   if (Cur->isRecord()) {
5250     // Cannot qualify members within a class.
5251     Diag(Loc, diag::err_member_qualification)
5252       << Name << SS.getRange();
5253     SS.clear();
5254 
5255     // C++ constructors and destructors with incorrect scopes can break
5256     // our AST invariants by having the wrong underlying types. If
5257     // that's the case, then drop this declaration entirely.
5258     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
5259          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
5260         !Context.hasSameType(Name.getCXXNameType(),
5261                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
5262       return true;
5263 
5264     return false;
5265   }
5266 
5267   // C++11 [dcl.meaning]p1:
5268   //   [...] "The nested-name-specifier of the qualified declarator-id shall
5269   //   not begin with a decltype-specifer"
5270   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
5271   while (SpecLoc.getPrefix())
5272     SpecLoc = SpecLoc.getPrefix();
5273   if (dyn_cast_or_null<DecltypeType>(
5274         SpecLoc.getNestedNameSpecifier()->getAsType()))
5275     Diag(Loc, diag::err_decltype_in_declarator)
5276       << SpecLoc.getTypeLoc().getSourceRange();
5277 
5278   return false;
5279 }
5280 
5281 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
5282                                   MultiTemplateParamsArg TemplateParamLists) {
5283   // TODO: consider using NameInfo for diagnostic.
5284   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5285   DeclarationName Name = NameInfo.getName();
5286 
5287   // All of these full declarators require an identifier.  If it doesn't have
5288   // one, the ParsedFreeStandingDeclSpec action should be used.
5289   if (D.isDecompositionDeclarator()) {
5290     return ActOnDecompositionDeclarator(S, D, TemplateParamLists);
5291   } else if (!Name) {
5292     if (!D.isInvalidType())  // Reject this if we think it is valid.
5293       Diag(D.getDeclSpec().getLocStart(),
5294            diag::err_declarator_need_ident)
5295         << D.getDeclSpec().getSourceRange() << D.getSourceRange();
5296     return nullptr;
5297   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
5298     return nullptr;
5299 
5300   // The scope passed in may not be a decl scope.  Zip up the scope tree until
5301   // we find one that is.
5302   while ((S->getFlags() & Scope::DeclScope) == 0 ||
5303          (S->getFlags() & Scope::TemplateParamScope) != 0)
5304     S = S->getParent();
5305 
5306   DeclContext *DC = CurContext;
5307   if (D.getCXXScopeSpec().isInvalid())
5308     D.setInvalidType();
5309   else if (D.getCXXScopeSpec().isSet()) {
5310     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
5311                                         UPPC_DeclarationQualifier))
5312       return nullptr;
5313 
5314     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
5315     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
5316     if (!DC || isa<EnumDecl>(DC)) {
5317       // If we could not compute the declaration context, it's because the
5318       // declaration context is dependent but does not refer to a class,
5319       // class template, or class template partial specialization. Complain
5320       // and return early, to avoid the coming semantic disaster.
5321       Diag(D.getIdentifierLoc(),
5322            diag::err_template_qualified_declarator_no_match)
5323         << D.getCXXScopeSpec().getScopeRep()
5324         << D.getCXXScopeSpec().getRange();
5325       return nullptr;
5326     }
5327     bool IsDependentContext = DC->isDependentContext();
5328 
5329     if (!IsDependentContext &&
5330         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
5331       return nullptr;
5332 
5333     // If a class is incomplete, do not parse entities inside it.
5334     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
5335       Diag(D.getIdentifierLoc(),
5336            diag::err_member_def_undefined_record)
5337         << Name << DC << D.getCXXScopeSpec().getRange();
5338       return nullptr;
5339     }
5340     if (!D.getDeclSpec().isFriendSpecified()) {
5341       if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
5342                                       Name, D.getIdentifierLoc())) {
5343         if (DC->isRecord())
5344           return nullptr;
5345 
5346         D.setInvalidType();
5347       }
5348     }
5349 
5350     // Check whether we need to rebuild the type of the given
5351     // declaration in the current instantiation.
5352     if (EnteringContext && IsDependentContext &&
5353         TemplateParamLists.size() != 0) {
5354       ContextRAII SavedContext(*this, DC);
5355       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
5356         D.setInvalidType();
5357     }
5358   }
5359 
5360   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
5361   QualType R = TInfo->getType();
5362 
5363   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
5364                                       UPPC_DeclarationType))
5365     D.setInvalidType();
5366 
5367   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
5368                         forRedeclarationInCurContext());
5369 
5370   // See if this is a redefinition of a variable in the same scope.
5371   if (!D.getCXXScopeSpec().isSet()) {
5372     bool IsLinkageLookup = false;
5373     bool CreateBuiltins = false;
5374 
5375     // If the declaration we're planning to build will be a function
5376     // or object with linkage, then look for another declaration with
5377     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
5378     //
5379     // If the declaration we're planning to build will be declared with
5380     // external linkage in the translation unit, create any builtin with
5381     // the same name.
5382     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
5383       /* Do nothing*/;
5384     else if (CurContext->isFunctionOrMethod() &&
5385              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
5386               R->isFunctionType())) {
5387       IsLinkageLookup = true;
5388       CreateBuiltins =
5389           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
5390     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
5391                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
5392       CreateBuiltins = true;
5393 
5394     if (IsLinkageLookup) {
5395       Previous.clear(LookupRedeclarationWithLinkage);
5396       Previous.setRedeclarationKind(ForExternalRedeclaration);
5397     }
5398 
5399     LookupName(Previous, S, CreateBuiltins);
5400   } else { // Something like "int foo::x;"
5401     LookupQualifiedName(Previous, DC);
5402 
5403     // C++ [dcl.meaning]p1:
5404     //   When the declarator-id is qualified, the declaration shall refer to a
5405     //  previously declared member of the class or namespace to which the
5406     //  qualifier refers (or, in the case of a namespace, of an element of the
5407     //  inline namespace set of that namespace (7.3.1)) or to a specialization
5408     //  thereof; [...]
5409     //
5410     // Note that we already checked the context above, and that we do not have
5411     // enough information to make sure that Previous contains the declaration
5412     // we want to match. For example, given:
5413     //
5414     //   class X {
5415     //     void f();
5416     //     void f(float);
5417     //   };
5418     //
5419     //   void X::f(int) { } // ill-formed
5420     //
5421     // In this case, Previous will point to the overload set
5422     // containing the two f's declared in X, but neither of them
5423     // matches.
5424 
5425     // C++ [dcl.meaning]p1:
5426     //   [...] the member shall not merely have been introduced by a
5427     //   using-declaration in the scope of the class or namespace nominated by
5428     //   the nested-name-specifier of the declarator-id.
5429     RemoveUsingDecls(Previous);
5430   }
5431 
5432   if (Previous.isSingleResult() &&
5433       Previous.getFoundDecl()->isTemplateParameter()) {
5434     // Maybe we will complain about the shadowed template parameter.
5435     if (!D.isInvalidType())
5436       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
5437                                       Previous.getFoundDecl());
5438 
5439     // Just pretend that we didn't see the previous declaration.
5440     Previous.clear();
5441   }
5442 
5443   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
5444     // Forget that the previous declaration is the injected-class-name.
5445     Previous.clear();
5446 
5447   // In C++, the previous declaration we find might be a tag type
5448   // (class or enum). In this case, the new declaration will hide the
5449   // tag type. Note that this applies to functions, function templates, and
5450   // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates.
5451   if (Previous.isSingleTagDecl() &&
5452       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
5453       (TemplateParamLists.size() == 0 || R->isFunctionType()))
5454     Previous.clear();
5455 
5456   // Check that there are no default arguments other than in the parameters
5457   // of a function declaration (C++ only).
5458   if (getLangOpts().CPlusPlus)
5459     CheckExtraCXXDefaultArguments(D);
5460 
5461   if (D.getDeclSpec().isConceptSpecified()) {
5462     // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
5463     // applied only to the definition of a function template or variable
5464     // template, declared in namespace scope
5465     if (!TemplateParamLists.size()) {
5466       Diag(D.getDeclSpec().getConceptSpecLoc(),
5467            diag:: err_concept_wrong_decl_kind);
5468       return nullptr;
5469     }
5470 
5471     if (!DC->getRedeclContext()->isFileContext()) {
5472       Diag(D.getIdentifierLoc(),
5473            diag::err_concept_decls_may_only_appear_in_namespace_scope);
5474       return nullptr;
5475     }
5476   }
5477 
5478   NamedDecl *New;
5479 
5480   bool AddToScope = true;
5481   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5482     if (TemplateParamLists.size()) {
5483       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5484       return nullptr;
5485     }
5486 
5487     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5488   } else if (R->isFunctionType()) {
5489     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5490                                   TemplateParamLists,
5491                                   AddToScope);
5492   } else {
5493     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5494                                   AddToScope);
5495   }
5496 
5497   if (!New)
5498     return nullptr;
5499 
5500   // If this has an identifier and is not a function template specialization,
5501   // add it to the scope stack.
5502   if (New->getDeclName() && AddToScope) {
5503     // Only make a locally-scoped extern declaration visible if it is the first
5504     // declaration of this entity. Qualified lookup for such an entity should
5505     // only find this declaration if there is no visible declaration of it.
5506     bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
5507     PushOnScopeChains(New, S, AddToContext);
5508     if (!AddToContext)
5509       CurContext->addHiddenDecl(New);
5510   }
5511 
5512   if (isInOpenMPDeclareTargetContext())
5513     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
5514 
5515   return New;
5516 }
5517 
5518 /// Helper method to turn variable array types into constant array
5519 /// types in certain situations which would otherwise be errors (for
5520 /// GCC compatibility).
5521 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5522                                                     ASTContext &Context,
5523                                                     bool &SizeIsNegative,
5524                                                     llvm::APSInt &Oversized) {
5525   // This method tries to turn a variable array into a constant
5526   // array even when the size isn't an ICE.  This is necessary
5527   // for compatibility with code that depends on gcc's buggy
5528   // constant expression folding, like struct {char x[(int)(char*)2];}
5529   SizeIsNegative = false;
5530   Oversized = 0;
5531 
5532   if (T->isDependentType())
5533     return QualType();
5534 
5535   QualifierCollector Qs;
5536   const Type *Ty = Qs.strip(T);
5537 
5538   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5539     QualType Pointee = PTy->getPointeeType();
5540     QualType FixedType =
5541         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5542                                             Oversized);
5543     if (FixedType.isNull()) return FixedType;
5544     FixedType = Context.getPointerType(FixedType);
5545     return Qs.apply(Context, FixedType);
5546   }
5547   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5548     QualType Inner = PTy->getInnerType();
5549     QualType FixedType =
5550         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5551                                             Oversized);
5552     if (FixedType.isNull()) return FixedType;
5553     FixedType = Context.getParenType(FixedType);
5554     return Qs.apply(Context, FixedType);
5555   }
5556 
5557   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5558   if (!VLATy)
5559     return QualType();
5560   // FIXME: We should probably handle this case
5561   if (VLATy->getElementType()->isVariablyModifiedType())
5562     return QualType();
5563 
5564   llvm::APSInt Res;
5565   if (!VLATy->getSizeExpr() ||
5566       !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
5567     return QualType();
5568 
5569   // Check whether the array size is negative.
5570   if (Res.isSigned() && Res.isNegative()) {
5571     SizeIsNegative = true;
5572     return QualType();
5573   }
5574 
5575   // Check whether the array is too large to be addressed.
5576   unsigned ActiveSizeBits
5577     = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
5578                                               Res);
5579   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5580     Oversized = Res;
5581     return QualType();
5582   }
5583 
5584   return Context.getConstantArrayType(VLATy->getElementType(),
5585                                       Res, ArrayType::Normal, 0);
5586 }
5587 
5588 static void
5589 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5590   SrcTL = SrcTL.getUnqualifiedLoc();
5591   DstTL = DstTL.getUnqualifiedLoc();
5592   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5593     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5594     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5595                                       DstPTL.getPointeeLoc());
5596     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5597     return;
5598   }
5599   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5600     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5601     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5602                                       DstPTL.getInnerLoc());
5603     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5604     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5605     return;
5606   }
5607   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
5608   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
5609   TypeLoc SrcElemTL = SrcATL.getElementLoc();
5610   TypeLoc DstElemTL = DstATL.getElementLoc();
5611   DstElemTL.initializeFullCopy(SrcElemTL);
5612   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
5613   DstATL.setSizeExpr(SrcATL.getSizeExpr());
5614   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
5615 }
5616 
5617 /// Helper method to turn variable array types into constant array
5618 /// types in certain situations which would otherwise be errors (for
5619 /// GCC compatibility).
5620 static TypeSourceInfo*
5621 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
5622                                               ASTContext &Context,
5623                                               bool &SizeIsNegative,
5624                                               llvm::APSInt &Oversized) {
5625   QualType FixedTy
5626     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
5627                                           SizeIsNegative, Oversized);
5628   if (FixedTy.isNull())
5629     return nullptr;
5630   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
5631   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
5632                                     FixedTInfo->getTypeLoc());
5633   return FixedTInfo;
5634 }
5635 
5636 /// \brief Register the given locally-scoped extern "C" declaration so
5637 /// that it can be found later for redeclarations. We include any extern "C"
5638 /// declaration that is not visible in the translation unit here, not just
5639 /// function-scope declarations.
5640 void
5641 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
5642   if (!getLangOpts().CPlusPlus &&
5643       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
5644     // Don't need to track declarations in the TU in C.
5645     return;
5646 
5647   // Note that we have a locally-scoped external with this name.
5648   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
5649 }
5650 
5651 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
5652   // FIXME: We can have multiple results via __attribute__((overloadable)).
5653   auto Result = Context.getExternCContextDecl()->lookup(Name);
5654   return Result.empty() ? nullptr : *Result.begin();
5655 }
5656 
5657 /// \brief Diagnose function specifiers on a declaration of an identifier that
5658 /// does not identify a function.
5659 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
5660   // FIXME: We should probably indicate the identifier in question to avoid
5661   // confusion for constructs like "virtual int a(), b;"
5662   if (DS.isVirtualSpecified())
5663     Diag(DS.getVirtualSpecLoc(),
5664          diag::err_virtual_non_function);
5665 
5666   if (DS.isExplicitSpecified())
5667     Diag(DS.getExplicitSpecLoc(),
5668          diag::err_explicit_non_function);
5669 
5670   if (DS.isNoreturnSpecified())
5671     Diag(DS.getNoreturnSpecLoc(),
5672          diag::err_noreturn_non_function);
5673 }
5674 
5675 NamedDecl*
5676 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
5677                              TypeSourceInfo *TInfo, LookupResult &Previous) {
5678   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
5679   if (D.getCXXScopeSpec().isSet()) {
5680     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
5681       << D.getCXXScopeSpec().getRange();
5682     D.setInvalidType();
5683     // Pretend we didn't see the scope specifier.
5684     DC = CurContext;
5685     Previous.clear();
5686   }
5687 
5688   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5689 
5690   if (D.getDeclSpec().isInlineSpecified())
5691     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
5692         << getLangOpts().CPlusPlus1z;
5693   if (D.getDeclSpec().isConstexprSpecified())
5694     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
5695       << 1;
5696   if (D.getDeclSpec().isConceptSpecified())
5697     Diag(D.getDeclSpec().getConceptSpecLoc(),
5698          diag::err_concept_wrong_decl_kind);
5699 
5700   if (D.getName().Kind != UnqualifiedId::IK_Identifier) {
5701     if (D.getName().Kind == UnqualifiedId::IK_DeductionGuideName)
5702       Diag(D.getName().StartLocation,
5703            diag::err_deduction_guide_invalid_specifier)
5704           << "typedef";
5705     else
5706       Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
5707           << D.getName().getSourceRange();
5708     return nullptr;
5709   }
5710 
5711   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
5712   if (!NewTD) return nullptr;
5713 
5714   // Handle attributes prior to checking for duplicates in MergeVarDecl
5715   ProcessDeclAttributes(S, NewTD, D);
5716 
5717   CheckTypedefForVariablyModifiedType(S, NewTD);
5718 
5719   bool Redeclaration = D.isRedeclaration();
5720   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
5721   D.setRedeclaration(Redeclaration);
5722   return ND;
5723 }
5724 
5725 void
5726 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
5727   // C99 6.7.7p2: If a typedef name specifies a variably modified type
5728   // then it shall have block scope.
5729   // Note that variably modified types must be fixed before merging the decl so
5730   // that redeclarations will match.
5731   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
5732   QualType T = TInfo->getType();
5733   if (T->isVariablyModifiedType()) {
5734     getCurFunction()->setHasBranchProtectedScope();
5735 
5736     if (S->getFnParent() == nullptr) {
5737       bool SizeIsNegative;
5738       llvm::APSInt Oversized;
5739       TypeSourceInfo *FixedTInfo =
5740         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5741                                                       SizeIsNegative,
5742                                                       Oversized);
5743       if (FixedTInfo) {
5744         Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
5745         NewTD->setTypeSourceInfo(FixedTInfo);
5746       } else {
5747         if (SizeIsNegative)
5748           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
5749         else if (T->isVariableArrayType())
5750           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
5751         else if (Oversized.getBoolValue())
5752           Diag(NewTD->getLocation(), diag::err_array_too_large)
5753             << Oversized.toString(10);
5754         else
5755           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
5756         NewTD->setInvalidDecl();
5757       }
5758     }
5759   }
5760 }
5761 
5762 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
5763 /// declares a typedef-name, either using the 'typedef' type specifier or via
5764 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
5765 NamedDecl*
5766 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
5767                            LookupResult &Previous, bool &Redeclaration) {
5768 
5769   // Find the shadowed declaration before filtering for scope.
5770   NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous);
5771 
5772   // Merge the decl with the existing one if appropriate. If the decl is
5773   // in an outer scope, it isn't the same thing.
5774   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
5775                        /*AllowInlineNamespace*/false);
5776   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
5777   if (!Previous.empty()) {
5778     Redeclaration = true;
5779     MergeTypedefNameDecl(S, NewTD, Previous);
5780   }
5781 
5782   if (ShadowedDecl && !Redeclaration)
5783     CheckShadow(NewTD, ShadowedDecl, Previous);
5784 
5785   // If this is the C FILE type, notify the AST context.
5786   if (IdentifierInfo *II = NewTD->getIdentifier())
5787     if (!NewTD->isInvalidDecl() &&
5788         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5789       if (II->isStr("FILE"))
5790         Context.setFILEDecl(NewTD);
5791       else if (II->isStr("jmp_buf"))
5792         Context.setjmp_bufDecl(NewTD);
5793       else if (II->isStr("sigjmp_buf"))
5794         Context.setsigjmp_bufDecl(NewTD);
5795       else if (II->isStr("ucontext_t"))
5796         Context.setucontext_tDecl(NewTD);
5797     }
5798 
5799   return NewTD;
5800 }
5801 
5802 /// \brief Determines whether the given declaration is an out-of-scope
5803 /// previous declaration.
5804 ///
5805 /// This routine should be invoked when name lookup has found a
5806 /// previous declaration (PrevDecl) that is not in the scope where a
5807 /// new declaration by the same name is being introduced. If the new
5808 /// declaration occurs in a local scope, previous declarations with
5809 /// linkage may still be considered previous declarations (C99
5810 /// 6.2.2p4-5, C++ [basic.link]p6).
5811 ///
5812 /// \param PrevDecl the previous declaration found by name
5813 /// lookup
5814 ///
5815 /// \param DC the context in which the new declaration is being
5816 /// declared.
5817 ///
5818 /// \returns true if PrevDecl is an out-of-scope previous declaration
5819 /// for a new delcaration with the same name.
5820 static bool
5821 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
5822                                 ASTContext &Context) {
5823   if (!PrevDecl)
5824     return false;
5825 
5826   if (!PrevDecl->hasLinkage())
5827     return false;
5828 
5829   if (Context.getLangOpts().CPlusPlus) {
5830     // C++ [basic.link]p6:
5831     //   If there is a visible declaration of an entity with linkage
5832     //   having the same name and type, ignoring entities declared
5833     //   outside the innermost enclosing namespace scope, the block
5834     //   scope declaration declares that same entity and receives the
5835     //   linkage of the previous declaration.
5836     DeclContext *OuterContext = DC->getRedeclContext();
5837     if (!OuterContext->isFunctionOrMethod())
5838       // This rule only applies to block-scope declarations.
5839       return false;
5840 
5841     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
5842     if (PrevOuterContext->isRecord())
5843       // We found a member function: ignore it.
5844       return false;
5845 
5846     // Find the innermost enclosing namespace for the new and
5847     // previous declarations.
5848     OuterContext = OuterContext->getEnclosingNamespaceContext();
5849     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
5850 
5851     // The previous declaration is in a different namespace, so it
5852     // isn't the same function.
5853     if (!OuterContext->Equals(PrevOuterContext))
5854       return false;
5855   }
5856 
5857   return true;
5858 }
5859 
5860 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
5861   CXXScopeSpec &SS = D.getCXXScopeSpec();
5862   if (!SS.isSet()) return;
5863   DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
5864 }
5865 
5866 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
5867   QualType type = decl->getType();
5868   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5869   if (lifetime == Qualifiers::OCL_Autoreleasing) {
5870     // Various kinds of declaration aren't allowed to be __autoreleasing.
5871     unsigned kind = -1U;
5872     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5873       if (var->hasAttr<BlocksAttr>())
5874         kind = 0; // __block
5875       else if (!var->hasLocalStorage())
5876         kind = 1; // global
5877     } else if (isa<ObjCIvarDecl>(decl)) {
5878       kind = 3; // ivar
5879     } else if (isa<FieldDecl>(decl)) {
5880       kind = 2; // field
5881     }
5882 
5883     if (kind != -1U) {
5884       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
5885         << kind;
5886     }
5887   } else if (lifetime == Qualifiers::OCL_None) {
5888     // Try to infer lifetime.
5889     if (!type->isObjCLifetimeType())
5890       return false;
5891 
5892     lifetime = type->getObjCARCImplicitLifetime();
5893     type = Context.getLifetimeQualifiedType(type, lifetime);
5894     decl->setType(type);
5895   }
5896 
5897   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5898     // Thread-local variables cannot have lifetime.
5899     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
5900         var->getTLSKind()) {
5901       Diag(var->getLocation(), diag::err_arc_thread_ownership)
5902         << var->getType();
5903       return true;
5904     }
5905   }
5906 
5907   return false;
5908 }
5909 
5910 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
5911   // Ensure that an auto decl is deduced otherwise the checks below might cache
5912   // the wrong linkage.
5913   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
5914 
5915   // 'weak' only applies to declarations with external linkage.
5916   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
5917     if (!ND.isExternallyVisible()) {
5918       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
5919       ND.dropAttr<WeakAttr>();
5920     }
5921   }
5922   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
5923     if (ND.isExternallyVisible()) {
5924       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
5925       ND.dropAttr<WeakRefAttr>();
5926       ND.dropAttr<AliasAttr>();
5927     }
5928   }
5929 
5930   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
5931     if (VD->hasInit()) {
5932       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
5933         assert(VD->isThisDeclarationADefinition() &&
5934                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
5935         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0;
5936         VD->dropAttr<AliasAttr>();
5937       }
5938     }
5939   }
5940 
5941   // 'selectany' only applies to externally visible variable declarations.
5942   // It does not apply to functions.
5943   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
5944     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
5945       S.Diag(Attr->getLocation(),
5946              diag::err_attribute_selectany_non_extern_data);
5947       ND.dropAttr<SelectAnyAttr>();
5948     }
5949   }
5950 
5951   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
5952     // dll attributes require external linkage. Static locals may have external
5953     // linkage but still cannot be explicitly imported or exported.
5954     auto *VD = dyn_cast<VarDecl>(&ND);
5955     if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) {
5956       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
5957         << &ND << Attr;
5958       ND.setInvalidDecl();
5959     }
5960   }
5961 
5962   // Virtual functions cannot be marked as 'notail'.
5963   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
5964     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
5965       if (MD->isVirtual()) {
5966         S.Diag(ND.getLocation(),
5967                diag::err_invalid_attribute_on_virtual_function)
5968             << Attr;
5969         ND.dropAttr<NotTailCalledAttr>();
5970       }
5971 }
5972 
5973 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
5974                                            NamedDecl *NewDecl,
5975                                            bool IsSpecialization,
5976                                            bool IsDefinition) {
5977   if (OldDecl->isInvalidDecl())
5978     return;
5979 
5980   bool IsTemplate = false;
5981   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) {
5982     OldDecl = OldTD->getTemplatedDecl();
5983     IsTemplate = true;
5984     if (!IsSpecialization)
5985       IsDefinition = false;
5986   }
5987   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) {
5988     NewDecl = NewTD->getTemplatedDecl();
5989     IsTemplate = true;
5990   }
5991 
5992   if (!OldDecl || !NewDecl)
5993     return;
5994 
5995   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
5996   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
5997   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
5998   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
5999 
6000   // dllimport and dllexport are inheritable attributes so we have to exclude
6001   // inherited attribute instances.
6002   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
6003                     (NewExportAttr && !NewExportAttr->isInherited());
6004 
6005   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
6006   // the only exception being explicit specializations.
6007   // Implicitly generated declarations are also excluded for now because there
6008   // is no other way to switch these to use dllimport or dllexport.
6009   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
6010 
6011   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
6012     // Allow with a warning for free functions and global variables.
6013     bool JustWarn = false;
6014     if (!OldDecl->isCXXClassMember()) {
6015       auto *VD = dyn_cast<VarDecl>(OldDecl);
6016       if (VD && !VD->getDescribedVarTemplate())
6017         JustWarn = true;
6018       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
6019       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
6020         JustWarn = true;
6021     }
6022 
6023     // We cannot change a declaration that's been used because IR has already
6024     // been emitted. Dllimported functions will still work though (modulo
6025     // address equality) as they can use the thunk.
6026     if (OldDecl->isUsed())
6027       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
6028         JustWarn = false;
6029 
6030     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
6031                                : diag::err_attribute_dll_redeclaration;
6032     S.Diag(NewDecl->getLocation(), DiagID)
6033         << NewDecl
6034         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
6035     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6036     if (!JustWarn) {
6037       NewDecl->setInvalidDecl();
6038       return;
6039     }
6040   }
6041 
6042   // A redeclaration is not allowed to drop a dllimport attribute, the only
6043   // exceptions being inline function definitions (except for function
6044   // templates), local extern declarations, qualified friend declarations or
6045   // special MSVC extension: in the last case, the declaration is treated as if
6046   // it were marked dllexport.
6047   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
6048   bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft();
6049   if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) {
6050     // Ignore static data because out-of-line definitions are diagnosed
6051     // separately.
6052     IsStaticDataMember = VD->isStaticDataMember();
6053     IsDefinition = VD->isThisDeclarationADefinition(S.Context) !=
6054                    VarDecl::DeclarationOnly;
6055   } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
6056     IsInline = FD->isInlined();
6057     IsQualifiedFriend = FD->getQualifier() &&
6058                         FD->getFriendObjectKind() == Decl::FOK_Declared;
6059   }
6060 
6061   if (OldImportAttr && !HasNewAttr &&
6062       (!IsInline || (IsMicrosoft && IsTemplate)) && !IsStaticDataMember &&
6063       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
6064     if (IsMicrosoft && IsDefinition) {
6065       S.Diag(NewDecl->getLocation(),
6066              diag::warn_redeclaration_without_import_attribute)
6067           << NewDecl;
6068       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6069       NewDecl->dropAttr<DLLImportAttr>();
6070       NewDecl->addAttr(::new (S.Context) DLLExportAttr(
6071           NewImportAttr->getRange(), S.Context,
6072           NewImportAttr->getSpellingListIndex()));
6073     } else {
6074       S.Diag(NewDecl->getLocation(),
6075              diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
6076           << NewDecl << OldImportAttr;
6077       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6078       S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
6079       OldDecl->dropAttr<DLLImportAttr>();
6080       NewDecl->dropAttr<DLLImportAttr>();
6081     }
6082   } else if (IsInline && OldImportAttr && !IsMicrosoft) {
6083     // In MinGW, seeing a function declared inline drops the dllimport attribute.
6084     OldDecl->dropAttr<DLLImportAttr>();
6085     NewDecl->dropAttr<DLLImportAttr>();
6086     S.Diag(NewDecl->getLocation(),
6087            diag::warn_dllimport_dropped_from_inline_function)
6088         << NewDecl << OldImportAttr;
6089   }
6090 
6091   // A specialization of a class template member function is processed here
6092   // since it's a redeclaration. If the parent class is dllexport, the
6093   // specialization inherits that attribute. This doesn't happen automatically
6094   // since the parent class isn't instantiated until later.
6095   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) {
6096     if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization &&
6097         !NewImportAttr && !NewExportAttr) {
6098       if (const DLLExportAttr *ParentExportAttr =
6099               MD->getParent()->getAttr<DLLExportAttr>()) {
6100         DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context);
6101         NewAttr->setInherited(true);
6102         NewDecl->addAttr(NewAttr);
6103       }
6104     }
6105   }
6106 }
6107 
6108 /// Given that we are within the definition of the given function,
6109 /// will that definition behave like C99's 'inline', where the
6110 /// definition is discarded except for optimization purposes?
6111 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
6112   // Try to avoid calling GetGVALinkageForFunction.
6113 
6114   // All cases of this require the 'inline' keyword.
6115   if (!FD->isInlined()) return false;
6116 
6117   // This is only possible in C++ with the gnu_inline attribute.
6118   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
6119     return false;
6120 
6121   // Okay, go ahead and call the relatively-more-expensive function.
6122   return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
6123 }
6124 
6125 /// Determine whether a variable is extern "C" prior to attaching
6126 /// an initializer. We can't just call isExternC() here, because that
6127 /// will also compute and cache whether the declaration is externally
6128 /// visible, which might change when we attach the initializer.
6129 ///
6130 /// This can only be used if the declaration is known to not be a
6131 /// redeclaration of an internal linkage declaration.
6132 ///
6133 /// For instance:
6134 ///
6135 ///   auto x = []{};
6136 ///
6137 /// Attaching the initializer here makes this declaration not externally
6138 /// visible, because its type has internal linkage.
6139 ///
6140 /// FIXME: This is a hack.
6141 template<typename T>
6142 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
6143   if (S.getLangOpts().CPlusPlus) {
6144     // In C++, the overloadable attribute negates the effects of extern "C".
6145     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
6146       return false;
6147 
6148     // So do CUDA's host/device attributes.
6149     if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() ||
6150                                  D->template hasAttr<CUDAHostAttr>()))
6151       return false;
6152   }
6153   return D->isExternC();
6154 }
6155 
6156 static bool shouldConsiderLinkage(const VarDecl *VD) {
6157   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
6158   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC))
6159     return VD->hasExternalStorage();
6160   if (DC->isFileContext())
6161     return true;
6162   if (DC->isRecord())
6163     return false;
6164   llvm_unreachable("Unexpected context");
6165 }
6166 
6167 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
6168   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
6169   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
6170       isa<OMPDeclareReductionDecl>(DC))
6171     return true;
6172   if (DC->isRecord())
6173     return false;
6174   llvm_unreachable("Unexpected context");
6175 }
6176 
6177 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
6178                           AttributeList::Kind Kind) {
6179   for (const AttributeList *L = AttrList; L; L = L->getNext())
6180     if (L->getKind() == Kind)
6181       return true;
6182   return false;
6183 }
6184 
6185 static bool hasParsedAttr(Scope *S, const Declarator &PD,
6186                           AttributeList::Kind Kind) {
6187   // Check decl attributes on the DeclSpec.
6188   if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
6189     return true;
6190 
6191   // Walk the declarator structure, checking decl attributes that were in a type
6192   // position to the decl itself.
6193   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
6194     if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
6195       return true;
6196   }
6197 
6198   // Finally, check attributes on the decl itself.
6199   return hasParsedAttr(S, PD.getAttributes(), Kind);
6200 }
6201 
6202 /// Adjust the \c DeclContext for a function or variable that might be a
6203 /// function-local external declaration.
6204 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
6205   if (!DC->isFunctionOrMethod())
6206     return false;
6207 
6208   // If this is a local extern function or variable declared within a function
6209   // template, don't add it into the enclosing namespace scope until it is
6210   // instantiated; it might have a dependent type right now.
6211   if (DC->isDependentContext())
6212     return true;
6213 
6214   // C++11 [basic.link]p7:
6215   //   When a block scope declaration of an entity with linkage is not found to
6216   //   refer to some other declaration, then that entity is a member of the
6217   //   innermost enclosing namespace.
6218   //
6219   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
6220   // semantically-enclosing namespace, not a lexically-enclosing one.
6221   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
6222     DC = DC->getParent();
6223   return true;
6224 }
6225 
6226 /// \brief Returns true if given declaration has external C language linkage.
6227 static bool isDeclExternC(const Decl *D) {
6228   if (const auto *FD = dyn_cast<FunctionDecl>(D))
6229     return FD->isExternC();
6230   if (const auto *VD = dyn_cast<VarDecl>(D))
6231     return VD->isExternC();
6232 
6233   llvm_unreachable("Unknown type of decl!");
6234 }
6235 
6236 NamedDecl *Sema::ActOnVariableDeclarator(
6237     Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo,
6238     LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists,
6239     bool &AddToScope, ArrayRef<BindingDecl *> Bindings) {
6240   QualType R = TInfo->getType();
6241   DeclarationName Name = GetNameForDeclarator(D).getName();
6242 
6243   IdentifierInfo *II = Name.getAsIdentifierInfo();
6244 
6245   if (D.isDecompositionDeclarator()) {
6246     // Take the name of the first declarator as our name for diagnostic
6247     // purposes.
6248     auto &Decomp = D.getDecompositionDeclarator();
6249     if (!Decomp.bindings().empty()) {
6250       II = Decomp.bindings()[0].Name;
6251       Name = II;
6252     }
6253   } else if (!II) {
6254     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name;
6255     return nullptr;
6256   }
6257 
6258   if (getLangOpts().OpenCL) {
6259     // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
6260     // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
6261     // argument.
6262     if (R->isImageType() || R->isPipeType()) {
6263       Diag(D.getIdentifierLoc(),
6264            diag::err_opencl_type_can_only_be_used_as_function_parameter)
6265           << R;
6266       D.setInvalidType();
6267       return nullptr;
6268     }
6269 
6270     // OpenCL v1.2 s6.9.r:
6271     // The event type cannot be used to declare a program scope variable.
6272     // OpenCL v2.0 s6.9.q:
6273     // The clk_event_t and reserve_id_t types cannot be declared in program scope.
6274     if (NULL == S->getParent()) {
6275       if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) {
6276         Diag(D.getIdentifierLoc(),
6277              diag::err_invalid_type_for_program_scope_var) << R;
6278         D.setInvalidType();
6279         return nullptr;
6280       }
6281     }
6282 
6283     // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
6284     QualType NR = R;
6285     while (NR->isPointerType()) {
6286       if (NR->isFunctionPointerType()) {
6287         Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer);
6288         D.setInvalidType();
6289         break;
6290       }
6291       NR = NR->getPointeeType();
6292     }
6293 
6294     if (!getOpenCLOptions().isEnabled("cl_khr_fp16")) {
6295       // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
6296       // half array type (unless the cl_khr_fp16 extension is enabled).
6297       if (Context.getBaseElementType(R)->isHalfType()) {
6298         Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
6299         D.setInvalidType();
6300       }
6301     }
6302 
6303     if (R->isSamplerT()) {
6304       // OpenCL v1.2 s6.9.b p4:
6305       // The sampler type cannot be used with the __local and __global address
6306       // space qualifiers.
6307       if (R.getAddressSpace() == LangAS::opencl_local ||
6308           R.getAddressSpace() == LangAS::opencl_global) {
6309         Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
6310       }
6311 
6312       // OpenCL v1.2 s6.12.14.1:
6313       // A global sampler must be declared with either the constant address
6314       // space qualifier or with the const qualifier.
6315       if (DC->isTranslationUnit() &&
6316           !(R.getAddressSpace() == LangAS::opencl_constant ||
6317           R.isConstQualified())) {
6318         Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler);
6319         D.setInvalidType();
6320       }
6321     }
6322 
6323     // OpenCL v1.2 s6.9.r:
6324     // The event type cannot be used with the __local, __constant and __global
6325     // address space qualifiers.
6326     if (R->isEventT()) {
6327       if (R.getAddressSpace()) {
6328         Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
6329         D.setInvalidType();
6330       }
6331     }
6332   }
6333 
6334   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
6335   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
6336 
6337   // dllimport globals without explicit storage class are treated as extern. We
6338   // have to change the storage class this early to get the right DeclContext.
6339   if (SC == SC_None && !DC->isRecord() &&
6340       hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
6341       !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
6342     SC = SC_Extern;
6343 
6344   DeclContext *OriginalDC = DC;
6345   bool IsLocalExternDecl = SC == SC_Extern &&
6346                            adjustContextForLocalExternDecl(DC);
6347 
6348   if (SCSpec == DeclSpec::SCS_mutable) {
6349     // mutable can only appear on non-static class members, so it's always
6350     // an error here
6351     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
6352     D.setInvalidType();
6353     SC = SC_None;
6354   }
6355 
6356   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
6357       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
6358                               D.getDeclSpec().getStorageClassSpecLoc())) {
6359     // In C++11, the 'register' storage class specifier is deprecated.
6360     // Suppress the warning in system macros, it's used in macros in some
6361     // popular C system headers, such as in glibc's htonl() macro.
6362     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6363          getLangOpts().CPlusPlus1z ? diag::ext_register_storage_class
6364                                    : diag::warn_deprecated_register)
6365       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6366   }
6367 
6368   DiagnoseFunctionSpecifiers(D.getDeclSpec());
6369 
6370   if (!DC->isRecord() && S->getFnParent() == nullptr) {
6371     // C99 6.9p2: The storage-class specifiers auto and register shall not
6372     // appear in the declaration specifiers in an external declaration.
6373     // Global Register+Asm is a GNU extension we support.
6374     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
6375       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
6376       D.setInvalidType();
6377     }
6378   }
6379 
6380   bool IsMemberSpecialization = false;
6381   bool IsVariableTemplateSpecialization = false;
6382   bool IsPartialSpecialization = false;
6383   bool IsVariableTemplate = false;
6384   VarDecl *NewVD = nullptr;
6385   VarTemplateDecl *NewTemplate = nullptr;
6386   TemplateParameterList *TemplateParams = nullptr;
6387   if (!getLangOpts().CPlusPlus) {
6388     NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6389                             D.getIdentifierLoc(), II,
6390                             R, TInfo, SC);
6391 
6392     if (R->getContainedDeducedType())
6393       ParsingInitForAutoVars.insert(NewVD);
6394 
6395     if (D.isInvalidType())
6396       NewVD->setInvalidDecl();
6397   } else {
6398     bool Invalid = false;
6399 
6400     if (DC->isRecord() && !CurContext->isRecord()) {
6401       // This is an out-of-line definition of a static data member.
6402       switch (SC) {
6403       case SC_None:
6404         break;
6405       case SC_Static:
6406         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6407              diag::err_static_out_of_line)
6408           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6409         break;
6410       case SC_Auto:
6411       case SC_Register:
6412       case SC_Extern:
6413         // [dcl.stc] p2: The auto or register specifiers shall be applied only
6414         // to names of variables declared in a block or to function parameters.
6415         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
6416         // of class members
6417 
6418         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6419              diag::err_storage_class_for_static_member)
6420           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6421         break;
6422       case SC_PrivateExtern:
6423         llvm_unreachable("C storage class in c++!");
6424       }
6425     }
6426 
6427     if (SC == SC_Static && CurContext->isRecord()) {
6428       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
6429         if (RD->isLocalClass())
6430           Diag(D.getIdentifierLoc(),
6431                diag::err_static_data_member_not_allowed_in_local_class)
6432             << Name << RD->getDeclName();
6433 
6434         // C++98 [class.union]p1: If a union contains a static data member,
6435         // the program is ill-formed. C++11 drops this restriction.
6436         if (RD->isUnion())
6437           Diag(D.getIdentifierLoc(),
6438                getLangOpts().CPlusPlus11
6439                  ? diag::warn_cxx98_compat_static_data_member_in_union
6440                  : diag::ext_static_data_member_in_union) << Name;
6441         // We conservatively disallow static data members in anonymous structs.
6442         else if (!RD->getDeclName())
6443           Diag(D.getIdentifierLoc(),
6444                diag::err_static_data_member_not_allowed_in_anon_struct)
6445             << Name << RD->isUnion();
6446       }
6447     }
6448 
6449     // Match up the template parameter lists with the scope specifier, then
6450     // determine whether we have a template or a template specialization.
6451     TemplateParams = MatchTemplateParametersToScopeSpecifier(
6452         D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
6453         D.getCXXScopeSpec(),
6454         D.getName().getKind() == UnqualifiedId::IK_TemplateId
6455             ? D.getName().TemplateId
6456             : nullptr,
6457         TemplateParamLists,
6458         /*never a friend*/ false, IsMemberSpecialization, Invalid);
6459 
6460     if (TemplateParams) {
6461       if (!TemplateParams->size() &&
6462           D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
6463         // There is an extraneous 'template<>' for this variable. Complain
6464         // about it, but allow the declaration of the variable.
6465         Diag(TemplateParams->getTemplateLoc(),
6466              diag::err_template_variable_noparams)
6467           << II
6468           << SourceRange(TemplateParams->getTemplateLoc(),
6469                          TemplateParams->getRAngleLoc());
6470         TemplateParams = nullptr;
6471       } else {
6472         if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
6473           // This is an explicit specialization or a partial specialization.
6474           // FIXME: Check that we can declare a specialization here.
6475           IsVariableTemplateSpecialization = true;
6476           IsPartialSpecialization = TemplateParams->size() > 0;
6477         } else { // if (TemplateParams->size() > 0)
6478           // This is a template declaration.
6479           IsVariableTemplate = true;
6480 
6481           // Check that we can declare a template here.
6482           if (CheckTemplateDeclScope(S, TemplateParams))
6483             return nullptr;
6484 
6485           // Only C++1y supports variable templates (N3651).
6486           Diag(D.getIdentifierLoc(),
6487                getLangOpts().CPlusPlus14
6488                    ? diag::warn_cxx11_compat_variable_template
6489                    : diag::ext_variable_template);
6490         }
6491       }
6492     } else {
6493       assert(
6494           (Invalid || D.getName().getKind() != UnqualifiedId::IK_TemplateId) &&
6495           "should have a 'template<>' for this decl");
6496     }
6497 
6498     if (IsVariableTemplateSpecialization) {
6499       SourceLocation TemplateKWLoc =
6500           TemplateParamLists.size() > 0
6501               ? TemplateParamLists[0]->getTemplateLoc()
6502               : SourceLocation();
6503       DeclResult Res = ActOnVarTemplateSpecialization(
6504           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
6505           IsPartialSpecialization);
6506       if (Res.isInvalid())
6507         return nullptr;
6508       NewVD = cast<VarDecl>(Res.get());
6509       AddToScope = false;
6510     } else if (D.isDecompositionDeclarator()) {
6511       NewVD = DecompositionDecl::Create(Context, DC, D.getLocStart(),
6512                                         D.getIdentifierLoc(), R, TInfo, SC,
6513                                         Bindings);
6514     } else
6515       NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6516                               D.getIdentifierLoc(), II, R, TInfo, SC);
6517 
6518     // If this is supposed to be a variable template, create it as such.
6519     if (IsVariableTemplate) {
6520       NewTemplate =
6521           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
6522                                   TemplateParams, NewVD);
6523       NewVD->setDescribedVarTemplate(NewTemplate);
6524     }
6525 
6526     // If this decl has an auto type in need of deduction, make a note of the
6527     // Decl so we can diagnose uses of it in its own initializer.
6528     if (R->getContainedDeducedType())
6529       ParsingInitForAutoVars.insert(NewVD);
6530 
6531     if (D.isInvalidType() || Invalid) {
6532       NewVD->setInvalidDecl();
6533       if (NewTemplate)
6534         NewTemplate->setInvalidDecl();
6535     }
6536 
6537     SetNestedNameSpecifier(NewVD, D);
6538 
6539     // If we have any template parameter lists that don't directly belong to
6540     // the variable (matching the scope specifier), store them.
6541     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
6542     if (TemplateParamLists.size() > VDTemplateParamLists)
6543       NewVD->setTemplateParameterListsInfo(
6544           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
6545 
6546     if (D.getDeclSpec().isConstexprSpecified()) {
6547       NewVD->setConstexpr(true);
6548       // C++1z [dcl.spec.constexpr]p1:
6549       //   A static data member declared with the constexpr specifier is
6550       //   implicitly an inline variable.
6551       if (NewVD->isStaticDataMember() && getLangOpts().CPlusPlus1z)
6552         NewVD->setImplicitlyInline();
6553     }
6554 
6555     if (D.getDeclSpec().isConceptSpecified()) {
6556       if (VarTemplateDecl *VTD = NewVD->getDescribedVarTemplate())
6557         VTD->setConcept();
6558 
6559       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
6560       // be declared with the thread_local, inline, friend, or constexpr
6561       // specifiers, [...]
6562       if (D.getDeclSpec().getThreadStorageClassSpec() == TSCS_thread_local) {
6563         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6564              diag::err_concept_decl_invalid_specifiers)
6565             << 0 << 0;
6566         NewVD->setInvalidDecl(true);
6567       }
6568 
6569       if (D.getDeclSpec().isConstexprSpecified()) {
6570         Diag(D.getDeclSpec().getConstexprSpecLoc(),
6571              diag::err_concept_decl_invalid_specifiers)
6572             << 0 << 3;
6573         NewVD->setInvalidDecl(true);
6574       }
6575 
6576       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
6577       // applied only to the definition of a function template or variable
6578       // template, declared in namespace scope.
6579       if (IsVariableTemplateSpecialization) {
6580         Diag(D.getDeclSpec().getConceptSpecLoc(),
6581              diag::err_concept_specified_specialization)
6582             << (IsPartialSpecialization ? 2 : 1);
6583       }
6584 
6585       // C++ Concepts TS [dcl.spec.concept]p6: A variable concept has the
6586       // following restrictions:
6587       // - The declared type shall have the type bool.
6588       if (!Context.hasSameType(NewVD->getType(), Context.BoolTy) &&
6589           !NewVD->isInvalidDecl()) {
6590         Diag(D.getIdentifierLoc(), diag::err_variable_concept_bool_decl);
6591         NewVD->setInvalidDecl(true);
6592       }
6593     }
6594   }
6595 
6596   if (D.getDeclSpec().isInlineSpecified()) {
6597     if (!getLangOpts().CPlusPlus) {
6598       Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
6599           << 0;
6600     } else if (CurContext->isFunctionOrMethod()) {
6601       // 'inline' is not allowed on block scope variable declaration.
6602       Diag(D.getDeclSpec().getInlineSpecLoc(),
6603            diag::err_inline_declaration_block_scope) << Name
6604         << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
6605     } else {
6606       Diag(D.getDeclSpec().getInlineSpecLoc(),
6607            getLangOpts().CPlusPlus1z ? diag::warn_cxx14_compat_inline_variable
6608                                      : diag::ext_inline_variable);
6609       NewVD->setInlineSpecified();
6610     }
6611   }
6612 
6613   // Set the lexical context. If the declarator has a C++ scope specifier, the
6614   // lexical context will be different from the semantic context.
6615   NewVD->setLexicalDeclContext(CurContext);
6616   if (NewTemplate)
6617     NewTemplate->setLexicalDeclContext(CurContext);
6618 
6619   if (IsLocalExternDecl) {
6620     if (D.isDecompositionDeclarator())
6621       for (auto *B : Bindings)
6622         B->setLocalExternDecl();
6623     else
6624       NewVD->setLocalExternDecl();
6625   }
6626 
6627   bool EmitTLSUnsupportedError = false;
6628   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
6629     // C++11 [dcl.stc]p4:
6630     //   When thread_local is applied to a variable of block scope the
6631     //   storage-class-specifier static is implied if it does not appear
6632     //   explicitly.
6633     // Core issue: 'static' is not implied if the variable is declared
6634     //   'extern'.
6635     if (NewVD->hasLocalStorage() &&
6636         (SCSpec != DeclSpec::SCS_unspecified ||
6637          TSCS != DeclSpec::TSCS_thread_local ||
6638          !DC->isFunctionOrMethod()))
6639       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6640            diag::err_thread_non_global)
6641         << DeclSpec::getSpecifierName(TSCS);
6642     else if (!Context.getTargetInfo().isTLSSupported()) {
6643       if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6644         // Postpone error emission until we've collected attributes required to
6645         // figure out whether it's a host or device variable and whether the
6646         // error should be ignored.
6647         EmitTLSUnsupportedError = true;
6648         // We still need to mark the variable as TLS so it shows up in AST with
6649         // proper storage class for other tools to use even if we're not going
6650         // to emit any code for it.
6651         NewVD->setTSCSpec(TSCS);
6652       } else
6653         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6654              diag::err_thread_unsupported);
6655     } else
6656       NewVD->setTSCSpec(TSCS);
6657   }
6658 
6659   // C99 6.7.4p3
6660   //   An inline definition of a function with external linkage shall
6661   //   not contain a definition of a modifiable object with static or
6662   //   thread storage duration...
6663   // We only apply this when the function is required to be defined
6664   // elsewhere, i.e. when the function is not 'extern inline'.  Note
6665   // that a local variable with thread storage duration still has to
6666   // be marked 'static'.  Also note that it's possible to get these
6667   // semantics in C++ using __attribute__((gnu_inline)).
6668   if (SC == SC_Static && S->getFnParent() != nullptr &&
6669       !NewVD->getType().isConstQualified()) {
6670     FunctionDecl *CurFD = getCurFunctionDecl();
6671     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
6672       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6673            diag::warn_static_local_in_extern_inline);
6674       MaybeSuggestAddingStaticToDecl(CurFD);
6675     }
6676   }
6677 
6678   if (D.getDeclSpec().isModulePrivateSpecified()) {
6679     if (IsVariableTemplateSpecialization)
6680       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6681           << (IsPartialSpecialization ? 1 : 0)
6682           << FixItHint::CreateRemoval(
6683                  D.getDeclSpec().getModulePrivateSpecLoc());
6684     else if (IsMemberSpecialization)
6685       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6686         << 2
6687         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6688     else if (NewVD->hasLocalStorage())
6689       Diag(NewVD->getLocation(), diag::err_module_private_local)
6690         << 0 << NewVD->getDeclName()
6691         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
6692         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6693     else {
6694       NewVD->setModulePrivate();
6695       if (NewTemplate)
6696         NewTemplate->setModulePrivate();
6697       for (auto *B : Bindings)
6698         B->setModulePrivate();
6699     }
6700   }
6701 
6702   // Handle attributes prior to checking for duplicates in MergeVarDecl
6703   ProcessDeclAttributes(S, NewVD, D);
6704 
6705   if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6706     if (EmitTLSUnsupportedError &&
6707         ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) ||
6708          (getLangOpts().OpenMPIsDevice &&
6709           NewVD->hasAttr<OMPDeclareTargetDeclAttr>())))
6710       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6711            diag::err_thread_unsupported);
6712     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
6713     // storage [duration]."
6714     if (SC == SC_None && S->getFnParent() != nullptr &&
6715         (NewVD->hasAttr<CUDASharedAttr>() ||
6716          NewVD->hasAttr<CUDAConstantAttr>())) {
6717       NewVD->setStorageClass(SC_Static);
6718     }
6719   }
6720 
6721   // Ensure that dllimport globals without explicit storage class are treated as
6722   // extern. The storage class is set above using parsed attributes. Now we can
6723   // check the VarDecl itself.
6724   assert(!NewVD->hasAttr<DLLImportAttr>() ||
6725          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
6726          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
6727 
6728   // In auto-retain/release, infer strong retension for variables of
6729   // retainable type.
6730   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
6731     NewVD->setInvalidDecl();
6732 
6733   // Handle GNU asm-label extension (encoded as an attribute).
6734   if (Expr *E = (Expr*)D.getAsmLabel()) {
6735     // The parser guarantees this is a string.
6736     StringLiteral *SE = cast<StringLiteral>(E);
6737     StringRef Label = SE->getString();
6738     if (S->getFnParent() != nullptr) {
6739       switch (SC) {
6740       case SC_None:
6741       case SC_Auto:
6742         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
6743         break;
6744       case SC_Register:
6745         // Local Named register
6746         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
6747             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
6748           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6749         break;
6750       case SC_Static:
6751       case SC_Extern:
6752       case SC_PrivateExtern:
6753         break;
6754       }
6755     } else if (SC == SC_Register) {
6756       // Global Named register
6757       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
6758         const auto &TI = Context.getTargetInfo();
6759         bool HasSizeMismatch;
6760 
6761         if (!TI.isValidGCCRegisterName(Label))
6762           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6763         else if (!TI.validateGlobalRegisterVariable(Label,
6764                                                     Context.getTypeSize(R),
6765                                                     HasSizeMismatch))
6766           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
6767         else if (HasSizeMismatch)
6768           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
6769       }
6770 
6771       if (!R->isIntegralType(Context) && !R->isPointerType()) {
6772         Diag(D.getLocStart(), diag::err_asm_bad_register_type);
6773         NewVD->setInvalidDecl(true);
6774       }
6775     }
6776 
6777     NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
6778                                                 Context, Label, 0));
6779   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6780     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6781       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
6782     if (I != ExtnameUndeclaredIdentifiers.end()) {
6783       if (isDeclExternC(NewVD)) {
6784         NewVD->addAttr(I->second);
6785         ExtnameUndeclaredIdentifiers.erase(I);
6786       } else
6787         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
6788             << /*Variable*/1 << NewVD;
6789     }
6790   }
6791 
6792   // Find the shadowed declaration before filtering for scope.
6793   NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty()
6794                                 ? getShadowedDeclaration(NewVD, Previous)
6795                                 : nullptr;
6796 
6797   // Don't consider existing declarations that are in a different
6798   // scope and are out-of-semantic-context declarations (if the new
6799   // declaration has linkage).
6800   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
6801                        D.getCXXScopeSpec().isNotEmpty() ||
6802                        IsMemberSpecialization ||
6803                        IsVariableTemplateSpecialization);
6804 
6805   // Check whether the previous declaration is in the same block scope. This
6806   // affects whether we merge types with it, per C++11 [dcl.array]p3.
6807   if (getLangOpts().CPlusPlus &&
6808       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
6809     NewVD->setPreviousDeclInSameBlockScope(
6810         Previous.isSingleResult() && !Previous.isShadowed() &&
6811         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
6812 
6813   if (!getLangOpts().CPlusPlus) {
6814     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6815   } else {
6816     // If this is an explicit specialization of a static data member, check it.
6817     if (IsMemberSpecialization && !NewVD->isInvalidDecl() &&
6818         CheckMemberSpecialization(NewVD, Previous))
6819       NewVD->setInvalidDecl();
6820 
6821     // Merge the decl with the existing one if appropriate.
6822     if (!Previous.empty()) {
6823       if (Previous.isSingleResult() &&
6824           isa<FieldDecl>(Previous.getFoundDecl()) &&
6825           D.getCXXScopeSpec().isSet()) {
6826         // The user tried to define a non-static data member
6827         // out-of-line (C++ [dcl.meaning]p1).
6828         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
6829           << D.getCXXScopeSpec().getRange();
6830         Previous.clear();
6831         NewVD->setInvalidDecl();
6832       }
6833     } else if (D.getCXXScopeSpec().isSet()) {
6834       // No previous declaration in the qualifying scope.
6835       Diag(D.getIdentifierLoc(), diag::err_no_member)
6836         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
6837         << D.getCXXScopeSpec().getRange();
6838       NewVD->setInvalidDecl();
6839     }
6840 
6841     if (!IsVariableTemplateSpecialization)
6842       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6843 
6844     // C++ Concepts TS [dcl.spec.concept]p7: A program shall not declare [...]
6845     // an explicit specialization (14.8.3) or a partial specialization of a
6846     // concept definition.
6847     if (IsVariableTemplateSpecialization &&
6848         !D.getDeclSpec().isConceptSpecified() && !Previous.empty() &&
6849         Previous.isSingleResult()) {
6850       NamedDecl *PreviousDecl = Previous.getFoundDecl();
6851       if (VarTemplateDecl *VarTmpl = dyn_cast<VarTemplateDecl>(PreviousDecl)) {
6852         if (VarTmpl->isConcept()) {
6853           Diag(NewVD->getLocation(), diag::err_concept_specialized)
6854               << 1                            /*variable*/
6855               << (IsPartialSpecialization ? 2 /*partially specialized*/
6856                                           : 1 /*explicitly specialized*/);
6857           Diag(VarTmpl->getLocation(), diag::note_previous_declaration);
6858           NewVD->setInvalidDecl();
6859         }
6860       }
6861     }
6862 
6863     if (NewTemplate) {
6864       VarTemplateDecl *PrevVarTemplate =
6865           NewVD->getPreviousDecl()
6866               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
6867               : nullptr;
6868 
6869       // Check the template parameter list of this declaration, possibly
6870       // merging in the template parameter list from the previous variable
6871       // template declaration.
6872       if (CheckTemplateParameterList(
6873               TemplateParams,
6874               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
6875                               : nullptr,
6876               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
6877                DC->isDependentContext())
6878                   ? TPC_ClassTemplateMember
6879                   : TPC_VarTemplate))
6880         NewVD->setInvalidDecl();
6881 
6882       // If we are providing an explicit specialization of a static variable
6883       // template, make a note of that.
6884       if (PrevVarTemplate &&
6885           PrevVarTemplate->getInstantiatedFromMemberTemplate())
6886         PrevVarTemplate->setMemberSpecialization();
6887     }
6888   }
6889 
6890   // Diagnose shadowed variables iff this isn't a redeclaration.
6891   if (ShadowedDecl && !D.isRedeclaration())
6892     CheckShadow(NewVD, ShadowedDecl, Previous);
6893 
6894   ProcessPragmaWeak(S, NewVD);
6895 
6896   // If this is the first declaration of an extern C variable, update
6897   // the map of such variables.
6898   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
6899       isIncompleteDeclExternC(*this, NewVD))
6900     RegisterLocallyScopedExternCDecl(NewVD, S);
6901 
6902   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
6903     Decl *ManglingContextDecl;
6904     if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
6905             NewVD->getDeclContext(), ManglingContextDecl)) {
6906       Context.setManglingNumber(
6907           NewVD, MCtx->getManglingNumber(
6908                      NewVD, getMSManglingNumber(getLangOpts(), S)));
6909       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
6910     }
6911   }
6912 
6913   // Special handling of variable named 'main'.
6914   if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") &&
6915       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
6916       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
6917 
6918     // C++ [basic.start.main]p3
6919     // A program that declares a variable main at global scope is ill-formed.
6920     if (getLangOpts().CPlusPlus)
6921       Diag(D.getLocStart(), diag::err_main_global_variable);
6922 
6923     // In C, and external-linkage variable named main results in undefined
6924     // behavior.
6925     else if (NewVD->hasExternalFormalLinkage())
6926       Diag(D.getLocStart(), diag::warn_main_redefined);
6927   }
6928 
6929   if (D.isRedeclaration() && !Previous.empty()) {
6930     checkDLLAttributeRedeclaration(
6931         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD,
6932         IsMemberSpecialization, D.isFunctionDefinition());
6933   }
6934 
6935   if (NewTemplate) {
6936     if (NewVD->isInvalidDecl())
6937       NewTemplate->setInvalidDecl();
6938     ActOnDocumentableDecl(NewTemplate);
6939     return NewTemplate;
6940   }
6941 
6942   if (IsMemberSpecialization && !NewVD->isInvalidDecl())
6943     CompleteMemberSpecialization(NewVD, Previous);
6944 
6945   return NewVD;
6946 }
6947 
6948 /// Enum describing the %select options in diag::warn_decl_shadow.
6949 enum ShadowedDeclKind {
6950   SDK_Local,
6951   SDK_Global,
6952   SDK_StaticMember,
6953   SDK_Field,
6954   SDK_Typedef,
6955   SDK_Using
6956 };
6957 
6958 /// Determine what kind of declaration we're shadowing.
6959 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl,
6960                                                 const DeclContext *OldDC) {
6961   if (isa<TypeAliasDecl>(ShadowedDecl))
6962     return SDK_Using;
6963   else if (isa<TypedefDecl>(ShadowedDecl))
6964     return SDK_Typedef;
6965   else if (isa<RecordDecl>(OldDC))
6966     return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember;
6967 
6968   return OldDC->isFileContext() ? SDK_Global : SDK_Local;
6969 }
6970 
6971 /// Return the location of the capture if the given lambda captures the given
6972 /// variable \p VD, or an invalid source location otherwise.
6973 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI,
6974                                          const VarDecl *VD) {
6975   for (const LambdaScopeInfo::Capture &Capture : LSI->Captures) {
6976     if (Capture.isVariableCapture() && Capture.getVariable() == VD)
6977       return Capture.getLocation();
6978   }
6979   return SourceLocation();
6980 }
6981 
6982 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags,
6983                                      const LookupResult &R) {
6984   // Only diagnose if we're shadowing an unambiguous field or variable.
6985   if (R.getResultKind() != LookupResult::Found)
6986     return false;
6987 
6988   // Return false if warning is ignored.
6989   return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc());
6990 }
6991 
6992 /// \brief Return the declaration shadowed by the given variable \p D, or null
6993 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
6994 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D,
6995                                         const LookupResult &R) {
6996   if (!shouldWarnIfShadowedDecl(Diags, R))
6997     return nullptr;
6998 
6999   // Don't diagnose declarations at file scope.
7000   if (D->hasGlobalStorage())
7001     return nullptr;
7002 
7003   NamedDecl *ShadowedDecl = R.getFoundDecl();
7004   return isa<VarDecl>(ShadowedDecl) || isa<FieldDecl>(ShadowedDecl)
7005              ? ShadowedDecl
7006              : nullptr;
7007 }
7008 
7009 /// \brief Return the declaration shadowed by the given typedef \p D, or null
7010 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
7011 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D,
7012                                         const LookupResult &R) {
7013   // Don't warn if typedef declaration is part of a class
7014   if (D->getDeclContext()->isRecord())
7015     return nullptr;
7016 
7017   if (!shouldWarnIfShadowedDecl(Diags, R))
7018     return nullptr;
7019 
7020   NamedDecl *ShadowedDecl = R.getFoundDecl();
7021   return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr;
7022 }
7023 
7024 /// \brief Diagnose variable or built-in function shadowing.  Implements
7025 /// -Wshadow.
7026 ///
7027 /// This method is called whenever a VarDecl is added to a "useful"
7028 /// scope.
7029 ///
7030 /// \param ShadowedDecl the declaration that is shadowed by the given variable
7031 /// \param R the lookup of the name
7032 ///
7033 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
7034                        const LookupResult &R) {
7035   DeclContext *NewDC = D->getDeclContext();
7036 
7037   if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) {
7038     // Fields are not shadowed by variables in C++ static methods.
7039     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
7040       if (MD->isStatic())
7041         return;
7042 
7043     // Fields shadowed by constructor parameters are a special case. Usually
7044     // the constructor initializes the field with the parameter.
7045     if (isa<CXXConstructorDecl>(NewDC))
7046       if (const auto PVD = dyn_cast<ParmVarDecl>(D)) {
7047         // Remember that this was shadowed so we can either warn about its
7048         // modification or its existence depending on warning settings.
7049         ShadowingDecls.insert({PVD->getCanonicalDecl(), FD});
7050         return;
7051       }
7052   }
7053 
7054   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
7055     if (shadowedVar->isExternC()) {
7056       // For shadowing external vars, make sure that we point to the global
7057       // declaration, not a locally scoped extern declaration.
7058       for (auto I : shadowedVar->redecls())
7059         if (I->isFileVarDecl()) {
7060           ShadowedDecl = I;
7061           break;
7062         }
7063     }
7064 
7065   DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext();
7066 
7067   unsigned WarningDiag = diag::warn_decl_shadow;
7068   SourceLocation CaptureLoc;
7069   if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC &&
7070       isa<CXXMethodDecl>(NewDC)) {
7071     if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) {
7072       if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) {
7073         if (RD->getLambdaCaptureDefault() == LCD_None) {
7074           // Try to avoid warnings for lambdas with an explicit capture list.
7075           const auto *LSI = cast<LambdaScopeInfo>(getCurFunction());
7076           // Warn only when the lambda captures the shadowed decl explicitly.
7077           CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl));
7078           if (CaptureLoc.isInvalid())
7079             WarningDiag = diag::warn_decl_shadow_uncaptured_local;
7080         } else {
7081           // Remember that this was shadowed so we can avoid the warning if the
7082           // shadowed decl isn't captured and the warning settings allow it.
7083           cast<LambdaScopeInfo>(getCurFunction())
7084               ->ShadowingDecls.push_back(
7085                   {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)});
7086           return;
7087         }
7088       }
7089 
7090       if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) {
7091         // A variable can't shadow a local variable in an enclosing scope, if
7092         // they are separated by a non-capturing declaration context.
7093         for (DeclContext *ParentDC = NewDC;
7094              ParentDC && !ParentDC->Equals(OldDC);
7095              ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) {
7096           // Only block literals, captured statements, and lambda expressions
7097           // can capture; other scopes don't.
7098           if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) &&
7099               !isLambdaCallOperator(ParentDC)) {
7100             return;
7101           }
7102         }
7103       }
7104     }
7105   }
7106 
7107   // Only warn about certain kinds of shadowing for class members.
7108   if (NewDC && NewDC->isRecord()) {
7109     // In particular, don't warn about shadowing non-class members.
7110     if (!OldDC->isRecord())
7111       return;
7112 
7113     // TODO: should we warn about static data members shadowing
7114     // static data members from base classes?
7115 
7116     // TODO: don't diagnose for inaccessible shadowed members.
7117     // This is hard to do perfectly because we might friend the
7118     // shadowing context, but that's just a false negative.
7119   }
7120 
7121 
7122   DeclarationName Name = R.getLookupName();
7123 
7124   // Emit warning and note.
7125   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
7126     return;
7127   ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC);
7128   Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC;
7129   if (!CaptureLoc.isInvalid())
7130     Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7131         << Name << /*explicitly*/ 1;
7132   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7133 }
7134 
7135 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD
7136 /// when these variables are captured by the lambda.
7137 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) {
7138   for (const auto &Shadow : LSI->ShadowingDecls) {
7139     const VarDecl *ShadowedDecl = Shadow.ShadowedDecl;
7140     // Try to avoid the warning when the shadowed decl isn't captured.
7141     SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl);
7142     const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7143     Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid()
7144                                        ? diag::warn_decl_shadow_uncaptured_local
7145                                        : diag::warn_decl_shadow)
7146         << Shadow.VD->getDeclName()
7147         << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC;
7148     if (!CaptureLoc.isInvalid())
7149       Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7150           << Shadow.VD->getDeclName() << /*explicitly*/ 0;
7151     Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7152   }
7153 }
7154 
7155 /// \brief Check -Wshadow without the advantage of a previous lookup.
7156 void Sema::CheckShadow(Scope *S, VarDecl *D) {
7157   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
7158     return;
7159 
7160   LookupResult R(*this, D->getDeclName(), D->getLocation(),
7161                  Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration);
7162   LookupName(R, S);
7163   if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R))
7164     CheckShadow(D, ShadowedDecl, R);
7165 }
7166 
7167 /// Check if 'E', which is an expression that is about to be modified, refers
7168 /// to a constructor parameter that shadows a field.
7169 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) {
7170   // Quickly ignore expressions that can't be shadowing ctor parameters.
7171   if (!getLangOpts().CPlusPlus || ShadowingDecls.empty())
7172     return;
7173   E = E->IgnoreParenImpCasts();
7174   auto *DRE = dyn_cast<DeclRefExpr>(E);
7175   if (!DRE)
7176     return;
7177   const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
7178   auto I = ShadowingDecls.find(D);
7179   if (I == ShadowingDecls.end())
7180     return;
7181   const NamedDecl *ShadowedDecl = I->second;
7182   const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7183   Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC;
7184   Diag(D->getLocation(), diag::note_var_declared_here) << D;
7185   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7186 
7187   // Avoid issuing multiple warnings about the same decl.
7188   ShadowingDecls.erase(I);
7189 }
7190 
7191 /// Check for conflict between this global or extern "C" declaration and
7192 /// previous global or extern "C" declarations. This is only used in C++.
7193 template<typename T>
7194 static bool checkGlobalOrExternCConflict(
7195     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
7196   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
7197   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
7198 
7199   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
7200     // The common case: this global doesn't conflict with any extern "C"
7201     // declaration.
7202     return false;
7203   }
7204 
7205   if (Prev) {
7206     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
7207       // Both the old and new declarations have C language linkage. This is a
7208       // redeclaration.
7209       Previous.clear();
7210       Previous.addDecl(Prev);
7211       return true;
7212     }
7213 
7214     // This is a global, non-extern "C" declaration, and there is a previous
7215     // non-global extern "C" declaration. Diagnose if this is a variable
7216     // declaration.
7217     if (!isa<VarDecl>(ND))
7218       return false;
7219   } else {
7220     // The declaration is extern "C". Check for any declaration in the
7221     // translation unit which might conflict.
7222     if (IsGlobal) {
7223       // We have already performed the lookup into the translation unit.
7224       IsGlobal = false;
7225       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7226            I != E; ++I) {
7227         if (isa<VarDecl>(*I)) {
7228           Prev = *I;
7229           break;
7230         }
7231       }
7232     } else {
7233       DeclContext::lookup_result R =
7234           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
7235       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
7236            I != E; ++I) {
7237         if (isa<VarDecl>(*I)) {
7238           Prev = *I;
7239           break;
7240         }
7241         // FIXME: If we have any other entity with this name in global scope,
7242         // the declaration is ill-formed, but that is a defect: it breaks the
7243         // 'stat' hack, for instance. Only variables can have mangled name
7244         // clashes with extern "C" declarations, so only they deserve a
7245         // diagnostic.
7246       }
7247     }
7248 
7249     if (!Prev)
7250       return false;
7251   }
7252 
7253   // Use the first declaration's location to ensure we point at something which
7254   // is lexically inside an extern "C" linkage-spec.
7255   assert(Prev && "should have found a previous declaration to diagnose");
7256   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
7257     Prev = FD->getFirstDecl();
7258   else
7259     Prev = cast<VarDecl>(Prev)->getFirstDecl();
7260 
7261   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
7262     << IsGlobal << ND;
7263   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
7264     << IsGlobal;
7265   return false;
7266 }
7267 
7268 /// Apply special rules for handling extern "C" declarations. Returns \c true
7269 /// if we have found that this is a redeclaration of some prior entity.
7270 ///
7271 /// Per C++ [dcl.link]p6:
7272 ///   Two declarations [for a function or variable] with C language linkage
7273 ///   with the same name that appear in different scopes refer to the same
7274 ///   [entity]. An entity with C language linkage shall not be declared with
7275 ///   the same name as an entity in global scope.
7276 template<typename T>
7277 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
7278                                                   LookupResult &Previous) {
7279   if (!S.getLangOpts().CPlusPlus) {
7280     // In C, when declaring a global variable, look for a corresponding 'extern'
7281     // variable declared in function scope. We don't need this in C++, because
7282     // we find local extern decls in the surrounding file-scope DeclContext.
7283     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
7284       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
7285         Previous.clear();
7286         Previous.addDecl(Prev);
7287         return true;
7288       }
7289     }
7290     return false;
7291   }
7292 
7293   // A declaration in the translation unit can conflict with an extern "C"
7294   // declaration.
7295   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
7296     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
7297 
7298   // An extern "C" declaration can conflict with a declaration in the
7299   // translation unit or can be a redeclaration of an extern "C" declaration
7300   // in another scope.
7301   if (isIncompleteDeclExternC(S,ND))
7302     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
7303 
7304   // Neither global nor extern "C": nothing to do.
7305   return false;
7306 }
7307 
7308 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
7309   // If the decl is already known invalid, don't check it.
7310   if (NewVD->isInvalidDecl())
7311     return;
7312 
7313   TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
7314   QualType T = TInfo->getType();
7315 
7316   // Defer checking an 'auto' type until its initializer is attached.
7317   if (T->isUndeducedType())
7318     return;
7319 
7320   if (NewVD->hasAttrs())
7321     CheckAlignasUnderalignment(NewVD);
7322 
7323   if (T->isObjCObjectType()) {
7324     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
7325       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
7326     T = Context.getObjCObjectPointerType(T);
7327     NewVD->setType(T);
7328   }
7329 
7330   // Emit an error if an address space was applied to decl with local storage.
7331   // This includes arrays of objects with address space qualifiers, but not
7332   // automatic variables that point to other address spaces.
7333   // ISO/IEC TR 18037 S5.1.2
7334   if (!getLangOpts().OpenCL
7335       && NewVD->hasLocalStorage() && T.getAddressSpace() != 0) {
7336     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0;
7337     NewVD->setInvalidDecl();
7338     return;
7339   }
7340 
7341   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
7342   // scope.
7343   if (getLangOpts().OpenCLVersion == 120 &&
7344       !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") &&
7345       NewVD->isStaticLocal()) {
7346     Diag(NewVD->getLocation(), diag::err_static_function_scope);
7347     NewVD->setInvalidDecl();
7348     return;
7349   }
7350 
7351   if (getLangOpts().OpenCL) {
7352     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
7353     if (NewVD->hasAttr<BlocksAttr>()) {
7354       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
7355       return;
7356     }
7357 
7358     if (T->isBlockPointerType()) {
7359       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
7360       // can't use 'extern' storage class.
7361       if (!T.isConstQualified()) {
7362         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
7363             << 0 /*const*/;
7364         NewVD->setInvalidDecl();
7365         return;
7366       }
7367       if (NewVD->hasExternalStorage()) {
7368         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
7369         NewVD->setInvalidDecl();
7370         return;
7371       }
7372     }
7373     // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
7374     // __constant address space.
7375     // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static
7376     // variables inside a function can also be declared in the global
7377     // address space.
7378     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
7379         NewVD->hasExternalStorage()) {
7380       if (!T->isSamplerT() &&
7381           !(T.getAddressSpace() == LangAS::opencl_constant ||
7382             (T.getAddressSpace() == LangAS::opencl_global &&
7383              getLangOpts().OpenCLVersion == 200))) {
7384         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
7385         if (getLangOpts().OpenCLVersion == 200)
7386           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7387               << Scope << "global or constant";
7388         else
7389           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7390               << Scope << "constant";
7391         NewVD->setInvalidDecl();
7392         return;
7393       }
7394     } else {
7395       if (T.getAddressSpace() == LangAS::opencl_global) {
7396         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7397             << 1 /*is any function*/ << "global";
7398         NewVD->setInvalidDecl();
7399         return;
7400       }
7401       if (T.getAddressSpace() == LangAS::opencl_constant ||
7402           T.getAddressSpace() == LangAS::opencl_local) {
7403         FunctionDecl *FD = getCurFunctionDecl();
7404         // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables
7405         // in functions.
7406         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
7407           if (T.getAddressSpace() == LangAS::opencl_constant)
7408             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7409                 << 0 /*non-kernel only*/ << "constant";
7410           else
7411             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7412                 << 0 /*non-kernel only*/ << "local";
7413           NewVD->setInvalidDecl();
7414           return;
7415         }
7416         // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be
7417         // in the outermost scope of a kernel function.
7418         if (FD && FD->hasAttr<OpenCLKernelAttr>()) {
7419           if (!getCurScope()->isFunctionScope()) {
7420             if (T.getAddressSpace() == LangAS::opencl_constant)
7421               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7422                   << "constant";
7423             else
7424               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7425                   << "local";
7426             NewVD->setInvalidDecl();
7427             return;
7428           }
7429         }
7430       } else if (T.getAddressSpace() != LangAS::Default) {
7431         // Do not allow other address spaces on automatic variable.
7432         Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1;
7433         NewVD->setInvalidDecl();
7434         return;
7435       }
7436     }
7437   }
7438 
7439   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
7440       && !NewVD->hasAttr<BlocksAttr>()) {
7441     if (getLangOpts().getGC() != LangOptions::NonGC)
7442       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
7443     else {
7444       assert(!getLangOpts().ObjCAutoRefCount);
7445       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
7446     }
7447   }
7448 
7449   bool isVM = T->isVariablyModifiedType();
7450   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
7451       NewVD->hasAttr<BlocksAttr>())
7452     getCurFunction()->setHasBranchProtectedScope();
7453 
7454   if ((isVM && NewVD->hasLinkage()) ||
7455       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
7456     bool SizeIsNegative;
7457     llvm::APSInt Oversized;
7458     TypeSourceInfo *FixedTInfo =
7459       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
7460                                                     SizeIsNegative, Oversized);
7461     if (!FixedTInfo && T->isVariableArrayType()) {
7462       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
7463       // FIXME: This won't give the correct result for
7464       // int a[10][n];
7465       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
7466 
7467       if (NewVD->isFileVarDecl())
7468         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
7469         << SizeRange;
7470       else if (NewVD->isStaticLocal())
7471         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
7472         << SizeRange;
7473       else
7474         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
7475         << SizeRange;
7476       NewVD->setInvalidDecl();
7477       return;
7478     }
7479 
7480     if (!FixedTInfo) {
7481       if (NewVD->isFileVarDecl())
7482         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
7483       else
7484         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
7485       NewVD->setInvalidDecl();
7486       return;
7487     }
7488 
7489     Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
7490     NewVD->setType(FixedTInfo->getType());
7491     NewVD->setTypeSourceInfo(FixedTInfo);
7492   }
7493 
7494   if (T->isVoidType()) {
7495     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
7496     //                    of objects and functions.
7497     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
7498       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
7499         << T;
7500       NewVD->setInvalidDecl();
7501       return;
7502     }
7503   }
7504 
7505   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
7506     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
7507     NewVD->setInvalidDecl();
7508     return;
7509   }
7510 
7511   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
7512     Diag(NewVD->getLocation(), diag::err_block_on_vm);
7513     NewVD->setInvalidDecl();
7514     return;
7515   }
7516 
7517   if (NewVD->isConstexpr() && !T->isDependentType() &&
7518       RequireLiteralType(NewVD->getLocation(), T,
7519                          diag::err_constexpr_var_non_literal)) {
7520     NewVD->setInvalidDecl();
7521     return;
7522   }
7523 }
7524 
7525 /// \brief Perform semantic checking on a newly-created variable
7526 /// declaration.
7527 ///
7528 /// This routine performs all of the type-checking required for a
7529 /// variable declaration once it has been built. It is used both to
7530 /// check variables after they have been parsed and their declarators
7531 /// have been translated into a declaration, and to check variables
7532 /// that have been instantiated from a template.
7533 ///
7534 /// Sets NewVD->isInvalidDecl() if an error was encountered.
7535 ///
7536 /// Returns true if the variable declaration is a redeclaration.
7537 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
7538   CheckVariableDeclarationType(NewVD);
7539 
7540   // If the decl is already known invalid, don't check it.
7541   if (NewVD->isInvalidDecl())
7542     return false;
7543 
7544   // If we did not find anything by this name, look for a non-visible
7545   // extern "C" declaration with the same name.
7546   if (Previous.empty() &&
7547       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
7548     Previous.setShadowed();
7549 
7550   if (!Previous.empty()) {
7551     MergeVarDecl(NewVD, Previous);
7552     return true;
7553   }
7554   return false;
7555 }
7556 
7557 namespace {
7558 struct FindOverriddenMethod {
7559   Sema *S;
7560   CXXMethodDecl *Method;
7561 
7562   /// Member lookup function that determines whether a given C++
7563   /// method overrides a method in a base class, to be used with
7564   /// CXXRecordDecl::lookupInBases().
7565   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
7566     RecordDecl *BaseRecord =
7567         Specifier->getType()->getAs<RecordType>()->getDecl();
7568 
7569     DeclarationName Name = Method->getDeclName();
7570 
7571     // FIXME: Do we care about other names here too?
7572     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7573       // We really want to find the base class destructor here.
7574       QualType T = S->Context.getTypeDeclType(BaseRecord);
7575       CanQualType CT = S->Context.getCanonicalType(T);
7576 
7577       Name = S->Context.DeclarationNames.getCXXDestructorName(CT);
7578     }
7579 
7580     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
7581          Path.Decls = Path.Decls.slice(1)) {
7582       NamedDecl *D = Path.Decls.front();
7583       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
7584         if (MD->isVirtual() && !S->IsOverload(Method, MD, false))
7585           return true;
7586       }
7587     }
7588 
7589     return false;
7590   }
7591 };
7592 
7593 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
7594 } // end anonymous namespace
7595 
7596 /// \brief Report an error regarding overriding, along with any relevant
7597 /// overriden methods.
7598 ///
7599 /// \param DiagID the primary error to report.
7600 /// \param MD the overriding method.
7601 /// \param OEK which overrides to include as notes.
7602 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
7603                             OverrideErrorKind OEK = OEK_All) {
7604   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
7605   for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
7606                                       E = MD->end_overridden_methods();
7607        I != E; ++I) {
7608     // This check (& the OEK parameter) could be replaced by a predicate, but
7609     // without lambdas that would be overkill. This is still nicer than writing
7610     // out the diag loop 3 times.
7611     if ((OEK == OEK_All) ||
7612         (OEK == OEK_NonDeleted && !(*I)->isDeleted()) ||
7613         (OEK == OEK_Deleted && (*I)->isDeleted()))
7614       S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
7615   }
7616 }
7617 
7618 /// AddOverriddenMethods - See if a method overrides any in the base classes,
7619 /// and if so, check that it's a valid override and remember it.
7620 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
7621   // Look for methods in base classes that this method might override.
7622   CXXBasePaths Paths;
7623   FindOverriddenMethod FOM;
7624   FOM.Method = MD;
7625   FOM.S = this;
7626   bool hasDeletedOverridenMethods = false;
7627   bool hasNonDeletedOverridenMethods = false;
7628   bool AddedAny = false;
7629   if (DC->lookupInBases(FOM, Paths)) {
7630     for (auto *I : Paths.found_decls()) {
7631       if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
7632         MD->addOverriddenMethod(OldMD->getCanonicalDecl());
7633         if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
7634             !CheckOverridingFunctionAttributes(MD, OldMD) &&
7635             !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
7636             !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
7637           hasDeletedOverridenMethods |= OldMD->isDeleted();
7638           hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
7639           AddedAny = true;
7640         }
7641       }
7642     }
7643   }
7644 
7645   if (hasDeletedOverridenMethods && !MD->isDeleted()) {
7646     ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
7647   }
7648   if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
7649     ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
7650   }
7651 
7652   return AddedAny;
7653 }
7654 
7655 namespace {
7656   // Struct for holding all of the extra arguments needed by
7657   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
7658   struct ActOnFDArgs {
7659     Scope *S;
7660     Declarator &D;
7661     MultiTemplateParamsArg TemplateParamLists;
7662     bool AddToScope;
7663   };
7664 } // end anonymous namespace
7665 
7666 namespace {
7667 
7668 // Callback to only accept typo corrections that have a non-zero edit distance.
7669 // Also only accept corrections that have the same parent decl.
7670 class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
7671  public:
7672   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
7673                             CXXRecordDecl *Parent)
7674       : Context(Context), OriginalFD(TypoFD),
7675         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
7676 
7677   bool ValidateCandidate(const TypoCorrection &candidate) override {
7678     if (candidate.getEditDistance() == 0)
7679       return false;
7680 
7681     SmallVector<unsigned, 1> MismatchedParams;
7682     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
7683                                           CDeclEnd = candidate.end();
7684          CDecl != CDeclEnd; ++CDecl) {
7685       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7686 
7687       if (FD && !FD->hasBody() &&
7688           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
7689         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
7690           CXXRecordDecl *Parent = MD->getParent();
7691           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
7692             return true;
7693         } else if (!ExpectedParent) {
7694           return true;
7695         }
7696       }
7697     }
7698 
7699     return false;
7700   }
7701 
7702  private:
7703   ASTContext &Context;
7704   FunctionDecl *OriginalFD;
7705   CXXRecordDecl *ExpectedParent;
7706 };
7707 
7708 } // end anonymous namespace
7709 
7710 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) {
7711   TypoCorrectedFunctionDefinitions.insert(F);
7712 }
7713 
7714 /// \brief Generate diagnostics for an invalid function redeclaration.
7715 ///
7716 /// This routine handles generating the diagnostic messages for an invalid
7717 /// function redeclaration, including finding possible similar declarations
7718 /// or performing typo correction if there are no previous declarations with
7719 /// the same name.
7720 ///
7721 /// Returns a NamedDecl iff typo correction was performed and substituting in
7722 /// the new declaration name does not cause new errors.
7723 static NamedDecl *DiagnoseInvalidRedeclaration(
7724     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
7725     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
7726   DeclarationName Name = NewFD->getDeclName();
7727   DeclContext *NewDC = NewFD->getDeclContext();
7728   SmallVector<unsigned, 1> MismatchedParams;
7729   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
7730   TypoCorrection Correction;
7731   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
7732   unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
7733                                    : diag::err_member_decl_does_not_match;
7734   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
7735                     IsLocalFriend ? Sema::LookupLocalFriendName
7736                                   : Sema::LookupOrdinaryName,
7737                     Sema::ForVisibleRedeclaration);
7738 
7739   NewFD->setInvalidDecl();
7740   if (IsLocalFriend)
7741     SemaRef.LookupName(Prev, S);
7742   else
7743     SemaRef.LookupQualifiedName(Prev, NewDC);
7744   assert(!Prev.isAmbiguous() &&
7745          "Cannot have an ambiguity in previous-declaration lookup");
7746   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
7747   if (!Prev.empty()) {
7748     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
7749          Func != FuncEnd; ++Func) {
7750       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
7751       if (FD &&
7752           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7753         // Add 1 to the index so that 0 can mean the mismatch didn't
7754         // involve a parameter
7755         unsigned ParamNum =
7756             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
7757         NearMatches.push_back(std::make_pair(FD, ParamNum));
7758       }
7759     }
7760   // If the qualified name lookup yielded nothing, try typo correction
7761   } else if ((Correction = SemaRef.CorrectTypo(
7762                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
7763                   &ExtraArgs.D.getCXXScopeSpec(),
7764                   llvm::make_unique<DifferentNameValidatorCCC>(
7765                       SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr),
7766                   Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
7767     // Set up everything for the call to ActOnFunctionDeclarator
7768     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
7769                               ExtraArgs.D.getIdentifierLoc());
7770     Previous.clear();
7771     Previous.setLookupName(Correction.getCorrection());
7772     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
7773                                     CDeclEnd = Correction.end();
7774          CDecl != CDeclEnd; ++CDecl) {
7775       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7776       if (FD && !FD->hasBody() &&
7777           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7778         Previous.addDecl(FD);
7779       }
7780     }
7781     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
7782 
7783     NamedDecl *Result;
7784     // Retry building the function declaration with the new previous
7785     // declarations, and with errors suppressed.
7786     {
7787       // Trap errors.
7788       Sema::SFINAETrap Trap(SemaRef);
7789 
7790       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
7791       // pieces need to verify the typo-corrected C++ declaration and hopefully
7792       // eliminate the need for the parameter pack ExtraArgs.
7793       Result = SemaRef.ActOnFunctionDeclarator(
7794           ExtraArgs.S, ExtraArgs.D,
7795           Correction.getCorrectionDecl()->getDeclContext(),
7796           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
7797           ExtraArgs.AddToScope);
7798 
7799       if (Trap.hasErrorOccurred())
7800         Result = nullptr;
7801     }
7802 
7803     if (Result) {
7804       // Determine which correction we picked.
7805       Decl *Canonical = Result->getCanonicalDecl();
7806       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7807            I != E; ++I)
7808         if ((*I)->getCanonicalDecl() == Canonical)
7809           Correction.setCorrectionDecl(*I);
7810 
7811       // Let Sema know about the correction.
7812       SemaRef.MarkTypoCorrectedFunctionDefinition(Result);
7813       SemaRef.diagnoseTypo(
7814           Correction,
7815           SemaRef.PDiag(IsLocalFriend
7816                           ? diag::err_no_matching_local_friend_suggest
7817                           : diag::err_member_decl_does_not_match_suggest)
7818             << Name << NewDC << IsDefinition);
7819       return Result;
7820     }
7821 
7822     // Pretend the typo correction never occurred
7823     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
7824                               ExtraArgs.D.getIdentifierLoc());
7825     ExtraArgs.D.setRedeclaration(wasRedeclaration);
7826     Previous.clear();
7827     Previous.setLookupName(Name);
7828   }
7829 
7830   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
7831       << Name << NewDC << IsDefinition << NewFD->getLocation();
7832 
7833   bool NewFDisConst = false;
7834   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
7835     NewFDisConst = NewMD->isConst();
7836 
7837   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
7838        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
7839        NearMatch != NearMatchEnd; ++NearMatch) {
7840     FunctionDecl *FD = NearMatch->first;
7841     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7842     bool FDisConst = MD && MD->isConst();
7843     bool IsMember = MD || !IsLocalFriend;
7844 
7845     // FIXME: These notes are poorly worded for the local friend case.
7846     if (unsigned Idx = NearMatch->second) {
7847       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
7848       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
7849       if (Loc.isInvalid()) Loc = FD->getLocation();
7850       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
7851                                  : diag::note_local_decl_close_param_match)
7852         << Idx << FDParam->getType()
7853         << NewFD->getParamDecl(Idx - 1)->getType();
7854     } else if (FDisConst != NewFDisConst) {
7855       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
7856           << NewFDisConst << FD->getSourceRange().getEnd();
7857     } else
7858       SemaRef.Diag(FD->getLocation(),
7859                    IsMember ? diag::note_member_def_close_match
7860                             : diag::note_local_decl_close_match);
7861   }
7862   return nullptr;
7863 }
7864 
7865 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
7866   switch (D.getDeclSpec().getStorageClassSpec()) {
7867   default: llvm_unreachable("Unknown storage class!");
7868   case DeclSpec::SCS_auto:
7869   case DeclSpec::SCS_register:
7870   case DeclSpec::SCS_mutable:
7871     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7872                  diag::err_typecheck_sclass_func);
7873     D.getMutableDeclSpec().ClearStorageClassSpecs();
7874     D.setInvalidType();
7875     break;
7876   case DeclSpec::SCS_unspecified: break;
7877   case DeclSpec::SCS_extern:
7878     if (D.getDeclSpec().isExternInLinkageSpec())
7879       return SC_None;
7880     return SC_Extern;
7881   case DeclSpec::SCS_static: {
7882     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
7883       // C99 6.7.1p5:
7884       //   The declaration of an identifier for a function that has
7885       //   block scope shall have no explicit storage-class specifier
7886       //   other than extern
7887       // See also (C++ [dcl.stc]p4).
7888       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7889                    diag::err_static_block_func);
7890       break;
7891     } else
7892       return SC_Static;
7893   }
7894   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
7895   }
7896 
7897   // No explicit storage class has already been returned
7898   return SC_None;
7899 }
7900 
7901 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
7902                                            DeclContext *DC, QualType &R,
7903                                            TypeSourceInfo *TInfo,
7904                                            StorageClass SC,
7905                                            bool &IsVirtualOkay) {
7906   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
7907   DeclarationName Name = NameInfo.getName();
7908 
7909   FunctionDecl *NewFD = nullptr;
7910   bool isInline = D.getDeclSpec().isInlineSpecified();
7911 
7912   if (!SemaRef.getLangOpts().CPlusPlus) {
7913     // Determine whether the function was written with a
7914     // prototype. This true when:
7915     //   - there is a prototype in the declarator, or
7916     //   - the type R of the function is some kind of typedef or other non-
7917     //     attributed reference to a type name (which eventually refers to a
7918     //     function type).
7919     bool HasPrototype =
7920       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
7921       (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType());
7922 
7923     NewFD = FunctionDecl::Create(SemaRef.Context, DC,
7924                                  D.getLocStart(), NameInfo, R,
7925                                  TInfo, SC, isInline,
7926                                  HasPrototype, false);
7927     if (D.isInvalidType())
7928       NewFD->setInvalidDecl();
7929 
7930     return NewFD;
7931   }
7932 
7933   bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7934   bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7935 
7936   // Check that the return type is not an abstract class type.
7937   // For record types, this is done by the AbstractClassUsageDiagnoser once
7938   // the class has been completely parsed.
7939   if (!DC->isRecord() &&
7940       SemaRef.RequireNonAbstractType(
7941           D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
7942           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
7943     D.setInvalidType();
7944 
7945   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
7946     // This is a C++ constructor declaration.
7947     assert(DC->isRecord() &&
7948            "Constructors can only be declared in a member context");
7949 
7950     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
7951     return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7952                                       D.getLocStart(), NameInfo,
7953                                       R, TInfo, isExplicit, isInline,
7954                                       /*isImplicitlyDeclared=*/false,
7955                                       isConstexpr);
7956 
7957   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7958     // This is a C++ destructor declaration.
7959     if (DC->isRecord()) {
7960       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
7961       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
7962       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
7963                                         SemaRef.Context, Record,
7964                                         D.getLocStart(),
7965                                         NameInfo, R, TInfo, isInline,
7966                                         /*isImplicitlyDeclared=*/false);
7967 
7968       // If the class is complete, then we now create the implicit exception
7969       // specification. If the class is incomplete or dependent, we can't do
7970       // it yet.
7971       if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
7972           Record->getDefinition() && !Record->isBeingDefined() &&
7973           R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
7974         SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
7975       }
7976 
7977       IsVirtualOkay = true;
7978       return NewDD;
7979 
7980     } else {
7981       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
7982       D.setInvalidType();
7983 
7984       // Create a FunctionDecl to satisfy the function definition parsing
7985       // code path.
7986       return FunctionDecl::Create(SemaRef.Context, DC,
7987                                   D.getLocStart(),
7988                                   D.getIdentifierLoc(), Name, R, TInfo,
7989                                   SC, isInline,
7990                                   /*hasPrototype=*/true, isConstexpr);
7991     }
7992 
7993   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
7994     if (!DC->isRecord()) {
7995       SemaRef.Diag(D.getIdentifierLoc(),
7996            diag::err_conv_function_not_member);
7997       return nullptr;
7998     }
7999 
8000     SemaRef.CheckConversionDeclarator(D, R, SC);
8001     IsVirtualOkay = true;
8002     return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
8003                                      D.getLocStart(), NameInfo,
8004                                      R, TInfo, isInline, isExplicit,
8005                                      isConstexpr, SourceLocation());
8006 
8007   } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) {
8008     SemaRef.CheckDeductionGuideDeclarator(D, R, SC);
8009 
8010     return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getLocStart(),
8011                                          isExplicit, NameInfo, R, TInfo,
8012                                          D.getLocEnd());
8013   } else if (DC->isRecord()) {
8014     // If the name of the function is the same as the name of the record,
8015     // then this must be an invalid constructor that has a return type.
8016     // (The parser checks for a return type and makes the declarator a
8017     // constructor if it has no return type).
8018     if (Name.getAsIdentifierInfo() &&
8019         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
8020       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
8021         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
8022         << SourceRange(D.getIdentifierLoc());
8023       return nullptr;
8024     }
8025 
8026     // This is a C++ method declaration.
8027     CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
8028                                                cast<CXXRecordDecl>(DC),
8029                                                D.getLocStart(), NameInfo, R,
8030                                                TInfo, SC, isInline,
8031                                                isConstexpr, SourceLocation());
8032     IsVirtualOkay = !Ret->isStatic();
8033     return Ret;
8034   } else {
8035     bool isFriend =
8036         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
8037     if (!isFriend && SemaRef.CurContext->isRecord())
8038       return nullptr;
8039 
8040     // Determine whether the function was written with a
8041     // prototype. This true when:
8042     //   - we're in C++ (where every function has a prototype),
8043     return FunctionDecl::Create(SemaRef.Context, DC,
8044                                 D.getLocStart(),
8045                                 NameInfo, R, TInfo, SC, isInline,
8046                                 true/*HasPrototype*/, isConstexpr);
8047   }
8048 }
8049 
8050 enum OpenCLParamType {
8051   ValidKernelParam,
8052   PtrPtrKernelParam,
8053   PtrKernelParam,
8054   InvalidAddrSpacePtrKernelParam,
8055   InvalidKernelParam,
8056   RecordKernelParam
8057 };
8058 
8059 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) {
8060   if (PT->isPointerType()) {
8061     QualType PointeeType = PT->getPointeeType();
8062     if (PointeeType->isPointerType())
8063       return PtrPtrKernelParam;
8064     if (PointeeType.getAddressSpace() == LangAS::opencl_generic ||
8065         PointeeType.getAddressSpace() == 0)
8066       return InvalidAddrSpacePtrKernelParam;
8067     return PtrKernelParam;
8068   }
8069 
8070   // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
8071   // be used as builtin types.
8072 
8073   if (PT->isImageType())
8074     return PtrKernelParam;
8075 
8076   if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT())
8077     return InvalidKernelParam;
8078 
8079   // OpenCL extension spec v1.2 s9.5:
8080   // This extension adds support for half scalar and vector types as built-in
8081   // types that can be used for arithmetic operations, conversions etc.
8082   if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType())
8083     return InvalidKernelParam;
8084 
8085   if (PT->isRecordType())
8086     return RecordKernelParam;
8087 
8088   return ValidKernelParam;
8089 }
8090 
8091 static void checkIsValidOpenCLKernelParameter(
8092   Sema &S,
8093   Declarator &D,
8094   ParmVarDecl *Param,
8095   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
8096   QualType PT = Param->getType();
8097 
8098   // Cache the valid types we encounter to avoid rechecking structs that are
8099   // used again
8100   if (ValidTypes.count(PT.getTypePtr()))
8101     return;
8102 
8103   switch (getOpenCLKernelParameterType(S, PT)) {
8104   case PtrPtrKernelParam:
8105     // OpenCL v1.2 s6.9.a:
8106     // A kernel function argument cannot be declared as a
8107     // pointer to a pointer type.
8108     S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
8109     D.setInvalidType();
8110     return;
8111 
8112   case InvalidAddrSpacePtrKernelParam:
8113     // OpenCL v1.0 s6.5:
8114     // __kernel function arguments declared to be a pointer of a type can point
8115     // to one of the following address spaces only : __global, __local or
8116     // __constant.
8117     S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space);
8118     D.setInvalidType();
8119     return;
8120 
8121     // OpenCL v1.2 s6.9.k:
8122     // Arguments to kernel functions in a program cannot be declared with the
8123     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
8124     // uintptr_t or a struct and/or union that contain fields declared to be
8125     // one of these built-in scalar types.
8126 
8127   case InvalidKernelParam:
8128     // OpenCL v1.2 s6.8 n:
8129     // A kernel function argument cannot be declared
8130     // of event_t type.
8131     // Do not diagnose half type since it is diagnosed as invalid argument
8132     // type for any function elsewhere.
8133     if (!PT->isHalfType())
8134       S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8135     D.setInvalidType();
8136     return;
8137 
8138   case PtrKernelParam:
8139   case ValidKernelParam:
8140     ValidTypes.insert(PT.getTypePtr());
8141     return;
8142 
8143   case RecordKernelParam:
8144     break;
8145   }
8146 
8147   // Track nested structs we will inspect
8148   SmallVector<const Decl *, 4> VisitStack;
8149 
8150   // Track where we are in the nested structs. Items will migrate from
8151   // VisitStack to HistoryStack as we do the DFS for bad field.
8152   SmallVector<const FieldDecl *, 4> HistoryStack;
8153   HistoryStack.push_back(nullptr);
8154 
8155   const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
8156   VisitStack.push_back(PD);
8157 
8158   assert(VisitStack.back() && "First decl null?");
8159 
8160   do {
8161     const Decl *Next = VisitStack.pop_back_val();
8162     if (!Next) {
8163       assert(!HistoryStack.empty());
8164       // Found a marker, we have gone up a level
8165       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
8166         ValidTypes.insert(Hist->getType().getTypePtr());
8167 
8168       continue;
8169     }
8170 
8171     // Adds everything except the original parameter declaration (which is not a
8172     // field itself) to the history stack.
8173     const RecordDecl *RD;
8174     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
8175       HistoryStack.push_back(Field);
8176       RD = Field->getType()->castAs<RecordType>()->getDecl();
8177     } else {
8178       RD = cast<RecordDecl>(Next);
8179     }
8180 
8181     // Add a null marker so we know when we've gone back up a level
8182     VisitStack.push_back(nullptr);
8183 
8184     for (const auto *FD : RD->fields()) {
8185       QualType QT = FD->getType();
8186 
8187       if (ValidTypes.count(QT.getTypePtr()))
8188         continue;
8189 
8190       OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT);
8191       if (ParamType == ValidKernelParam)
8192         continue;
8193 
8194       if (ParamType == RecordKernelParam) {
8195         VisitStack.push_back(FD);
8196         continue;
8197       }
8198 
8199       // OpenCL v1.2 s6.9.p:
8200       // Arguments to kernel functions that are declared to be a struct or union
8201       // do not allow OpenCL objects to be passed as elements of the struct or
8202       // union.
8203       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
8204           ParamType == InvalidAddrSpacePtrKernelParam) {
8205         S.Diag(Param->getLocation(),
8206                diag::err_record_with_pointers_kernel_param)
8207           << PT->isUnionType()
8208           << PT;
8209       } else {
8210         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8211       }
8212 
8213       S.Diag(PD->getLocation(), diag::note_within_field_of_type)
8214         << PD->getDeclName();
8215 
8216       // We have an error, now let's go back up through history and show where
8217       // the offending field came from
8218       for (ArrayRef<const FieldDecl *>::const_iterator
8219                I = HistoryStack.begin() + 1,
8220                E = HistoryStack.end();
8221            I != E; ++I) {
8222         const FieldDecl *OuterField = *I;
8223         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
8224           << OuterField->getType();
8225       }
8226 
8227       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
8228         << QT->isPointerType()
8229         << QT;
8230       D.setInvalidType();
8231       return;
8232     }
8233   } while (!VisitStack.empty());
8234 }
8235 
8236 /// Find the DeclContext in which a tag is implicitly declared if we see an
8237 /// elaborated type specifier in the specified context, and lookup finds
8238 /// nothing.
8239 static DeclContext *getTagInjectionContext(DeclContext *DC) {
8240   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
8241     DC = DC->getParent();
8242   return DC;
8243 }
8244 
8245 /// Find the Scope in which a tag is implicitly declared if we see an
8246 /// elaborated type specifier in the specified context, and lookup finds
8247 /// nothing.
8248 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
8249   while (S->isClassScope() ||
8250          (LangOpts.CPlusPlus &&
8251           S->isFunctionPrototypeScope()) ||
8252          ((S->getFlags() & Scope::DeclScope) == 0) ||
8253          (S->getEntity() && S->getEntity()->isTransparentContext()))
8254     S = S->getParent();
8255   return S;
8256 }
8257 
8258 NamedDecl*
8259 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
8260                               TypeSourceInfo *TInfo, LookupResult &Previous,
8261                               MultiTemplateParamsArg TemplateParamLists,
8262                               bool &AddToScope) {
8263   QualType R = TInfo->getType();
8264 
8265   assert(R.getTypePtr()->isFunctionType());
8266 
8267   // TODO: consider using NameInfo for diagnostic.
8268   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8269   DeclarationName Name = NameInfo.getName();
8270   StorageClass SC = getFunctionStorageClass(*this, D);
8271 
8272   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
8273     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
8274          diag::err_invalid_thread)
8275       << DeclSpec::getSpecifierName(TSCS);
8276 
8277   if (D.isFirstDeclarationOfMember())
8278     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
8279                            D.getIdentifierLoc());
8280 
8281   bool isFriend = false;
8282   FunctionTemplateDecl *FunctionTemplate = nullptr;
8283   bool isMemberSpecialization = false;
8284   bool isFunctionTemplateSpecialization = false;
8285 
8286   bool isDependentClassScopeExplicitSpecialization = false;
8287   bool HasExplicitTemplateArgs = false;
8288   TemplateArgumentListInfo TemplateArgs;
8289 
8290   bool isVirtualOkay = false;
8291 
8292   DeclContext *OriginalDC = DC;
8293   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
8294 
8295   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
8296                                               isVirtualOkay);
8297   if (!NewFD) return nullptr;
8298 
8299   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
8300     NewFD->setTopLevelDeclInObjCContainer();
8301 
8302   // Set the lexical context. If this is a function-scope declaration, or has a
8303   // C++ scope specifier, or is the object of a friend declaration, the lexical
8304   // context will be different from the semantic context.
8305   NewFD->setLexicalDeclContext(CurContext);
8306 
8307   if (IsLocalExternDecl)
8308     NewFD->setLocalExternDecl();
8309 
8310   if (getLangOpts().CPlusPlus) {
8311     bool isInline = D.getDeclSpec().isInlineSpecified();
8312     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
8313     bool isExplicit = D.getDeclSpec().isExplicitSpecified();
8314     bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
8315     bool isConcept = D.getDeclSpec().isConceptSpecified();
8316     isFriend = D.getDeclSpec().isFriendSpecified();
8317     if (isFriend && !isInline && D.isFunctionDefinition()) {
8318       // C++ [class.friend]p5
8319       //   A function can be defined in a friend declaration of a
8320       //   class . . . . Such a function is implicitly inline.
8321       NewFD->setImplicitlyInline();
8322     }
8323 
8324     // If this is a method defined in an __interface, and is not a constructor
8325     // or an overloaded operator, then set the pure flag (isVirtual will already
8326     // return true).
8327     if (const CXXRecordDecl *Parent =
8328           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
8329       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
8330         NewFD->setPure(true);
8331 
8332       // C++ [class.union]p2
8333       //   A union can have member functions, but not virtual functions.
8334       if (isVirtual && Parent->isUnion())
8335         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
8336     }
8337 
8338     SetNestedNameSpecifier(NewFD, D);
8339     isMemberSpecialization = false;
8340     isFunctionTemplateSpecialization = false;
8341     if (D.isInvalidType())
8342       NewFD->setInvalidDecl();
8343 
8344     // Match up the template parameter lists with the scope specifier, then
8345     // determine whether we have a template or a template specialization.
8346     bool Invalid = false;
8347     if (TemplateParameterList *TemplateParams =
8348             MatchTemplateParametersToScopeSpecifier(
8349                 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
8350                 D.getCXXScopeSpec(),
8351                 D.getName().getKind() == UnqualifiedId::IK_TemplateId
8352                     ? D.getName().TemplateId
8353                     : nullptr,
8354                 TemplateParamLists, isFriend, isMemberSpecialization,
8355                 Invalid)) {
8356       if (TemplateParams->size() > 0) {
8357         // This is a function template
8358 
8359         // Check that we can declare a template here.
8360         if (CheckTemplateDeclScope(S, TemplateParams))
8361           NewFD->setInvalidDecl();
8362 
8363         // A destructor cannot be a template.
8364         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
8365           Diag(NewFD->getLocation(), diag::err_destructor_template);
8366           NewFD->setInvalidDecl();
8367         }
8368 
8369         // If we're adding a template to a dependent context, we may need to
8370         // rebuilding some of the types used within the template parameter list,
8371         // now that we know what the current instantiation is.
8372         if (DC->isDependentContext()) {
8373           ContextRAII SavedContext(*this, DC);
8374           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
8375             Invalid = true;
8376         }
8377 
8378         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
8379                                                         NewFD->getLocation(),
8380                                                         Name, TemplateParams,
8381                                                         NewFD);
8382         FunctionTemplate->setLexicalDeclContext(CurContext);
8383         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
8384 
8385         // For source fidelity, store the other template param lists.
8386         if (TemplateParamLists.size() > 1) {
8387           NewFD->setTemplateParameterListsInfo(Context,
8388                                                TemplateParamLists.drop_back(1));
8389         }
8390       } else {
8391         // This is a function template specialization.
8392         isFunctionTemplateSpecialization = true;
8393         // For source fidelity, store all the template param lists.
8394         if (TemplateParamLists.size() > 0)
8395           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8396 
8397         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
8398         if (isFriend) {
8399           // We want to remove the "template<>", found here.
8400           SourceRange RemoveRange = TemplateParams->getSourceRange();
8401 
8402           // If we remove the template<> and the name is not a
8403           // template-id, we're actually silently creating a problem:
8404           // the friend declaration will refer to an untemplated decl,
8405           // and clearly the user wants a template specialization.  So
8406           // we need to insert '<>' after the name.
8407           SourceLocation InsertLoc;
8408           if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
8409             InsertLoc = D.getName().getSourceRange().getEnd();
8410             InsertLoc = getLocForEndOfToken(InsertLoc);
8411           }
8412 
8413           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
8414             << Name << RemoveRange
8415             << FixItHint::CreateRemoval(RemoveRange)
8416             << FixItHint::CreateInsertion(InsertLoc, "<>");
8417         }
8418       }
8419     }
8420     else {
8421       // All template param lists were matched against the scope specifier:
8422       // this is NOT (an explicit specialization of) a template.
8423       if (TemplateParamLists.size() > 0)
8424         // For source fidelity, store all the template param lists.
8425         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8426     }
8427 
8428     if (Invalid) {
8429       NewFD->setInvalidDecl();
8430       if (FunctionTemplate)
8431         FunctionTemplate->setInvalidDecl();
8432     }
8433 
8434     // C++ [dcl.fct.spec]p5:
8435     //   The virtual specifier shall only be used in declarations of
8436     //   nonstatic class member functions that appear within a
8437     //   member-specification of a class declaration; see 10.3.
8438     //
8439     if (isVirtual && !NewFD->isInvalidDecl()) {
8440       if (!isVirtualOkay) {
8441         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8442              diag::err_virtual_non_function);
8443       } else if (!CurContext->isRecord()) {
8444         // 'virtual' was specified outside of the class.
8445         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8446              diag::err_virtual_out_of_class)
8447           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8448       } else if (NewFD->getDescribedFunctionTemplate()) {
8449         // C++ [temp.mem]p3:
8450         //  A member function template shall not be virtual.
8451         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8452              diag::err_virtual_member_function_template)
8453           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8454       } else {
8455         // Okay: Add virtual to the method.
8456         NewFD->setVirtualAsWritten(true);
8457       }
8458 
8459       if (getLangOpts().CPlusPlus14 &&
8460           NewFD->getReturnType()->isUndeducedType())
8461         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
8462     }
8463 
8464     if (getLangOpts().CPlusPlus14 &&
8465         (NewFD->isDependentContext() ||
8466          (isFriend && CurContext->isDependentContext())) &&
8467         NewFD->getReturnType()->isUndeducedType()) {
8468       // If the function template is referenced directly (for instance, as a
8469       // member of the current instantiation), pretend it has a dependent type.
8470       // This is not really justified by the standard, but is the only sane
8471       // thing to do.
8472       // FIXME: For a friend function, we have not marked the function as being
8473       // a friend yet, so 'isDependentContext' on the FD doesn't work.
8474       const FunctionProtoType *FPT =
8475           NewFD->getType()->castAs<FunctionProtoType>();
8476       QualType Result =
8477           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
8478       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
8479                                              FPT->getExtProtoInfo()));
8480     }
8481 
8482     // C++ [dcl.fct.spec]p3:
8483     //  The inline specifier shall not appear on a block scope function
8484     //  declaration.
8485     if (isInline && !NewFD->isInvalidDecl()) {
8486       if (CurContext->isFunctionOrMethod()) {
8487         // 'inline' is not allowed on block scope function declaration.
8488         Diag(D.getDeclSpec().getInlineSpecLoc(),
8489              diag::err_inline_declaration_block_scope) << Name
8490           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
8491       }
8492     }
8493 
8494     // C++ [dcl.fct.spec]p6:
8495     //  The explicit specifier shall be used only in the declaration of a
8496     //  constructor or conversion function within its class definition;
8497     //  see 12.3.1 and 12.3.2.
8498     if (isExplicit && !NewFD->isInvalidDecl() &&
8499         !isa<CXXDeductionGuideDecl>(NewFD)) {
8500       if (!CurContext->isRecord()) {
8501         // 'explicit' was specified outside of the class.
8502         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8503              diag::err_explicit_out_of_class)
8504           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8505       } else if (!isa<CXXConstructorDecl>(NewFD) &&
8506                  !isa<CXXConversionDecl>(NewFD)) {
8507         // 'explicit' was specified on a function that wasn't a constructor
8508         // or conversion function.
8509         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8510              diag::err_explicit_non_ctor_or_conv_function)
8511           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8512       }
8513     }
8514 
8515     if (isConstexpr) {
8516       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
8517       // are implicitly inline.
8518       NewFD->setImplicitlyInline();
8519 
8520       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
8521       // be either constructors or to return a literal type. Therefore,
8522       // destructors cannot be declared constexpr.
8523       if (isa<CXXDestructorDecl>(NewFD))
8524         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
8525     }
8526 
8527     if (isConcept) {
8528       // This is a function concept.
8529       if (FunctionTemplateDecl *FTD = NewFD->getDescribedFunctionTemplate())
8530         FTD->setConcept();
8531 
8532       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
8533       // applied only to the definition of a function template [...]
8534       if (!D.isFunctionDefinition()) {
8535         Diag(D.getDeclSpec().getConceptSpecLoc(),
8536              diag::err_function_concept_not_defined);
8537         NewFD->setInvalidDecl();
8538       }
8539 
8540       // C++ Concepts TS [dcl.spec.concept]p1: [...] A function concept shall
8541       // have no exception-specification and is treated as if it were specified
8542       // with noexcept(true) (15.4). [...]
8543       if (const FunctionProtoType *FPT = R->getAs<FunctionProtoType>()) {
8544         if (FPT->hasExceptionSpec()) {
8545           SourceRange Range;
8546           if (D.isFunctionDeclarator())
8547             Range = D.getFunctionTypeInfo().getExceptionSpecRange();
8548           Diag(NewFD->getLocation(), diag::err_function_concept_exception_spec)
8549               << FixItHint::CreateRemoval(Range);
8550           NewFD->setInvalidDecl();
8551         } else {
8552           Context.adjustExceptionSpec(NewFD, EST_BasicNoexcept);
8553         }
8554 
8555         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
8556         // following restrictions:
8557         // - The declared return type shall have the type bool.
8558         if (!Context.hasSameType(FPT->getReturnType(), Context.BoolTy)) {
8559           Diag(D.getIdentifierLoc(), diag::err_function_concept_bool_ret);
8560           NewFD->setInvalidDecl();
8561         }
8562 
8563         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
8564         // following restrictions:
8565         // - The declaration's parameter list shall be equivalent to an empty
8566         //   parameter list.
8567         if (FPT->getNumParams() > 0 || FPT->isVariadic())
8568           Diag(NewFD->getLocation(), diag::err_function_concept_with_params);
8569       }
8570 
8571       // C++ Concepts TS [dcl.spec.concept]p2: Every concept definition is
8572       // implicity defined to be a constexpr declaration (implicitly inline)
8573       NewFD->setImplicitlyInline();
8574 
8575       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
8576       // be declared with the thread_local, inline, friend, or constexpr
8577       // specifiers, [...]
8578       if (isInline) {
8579         Diag(D.getDeclSpec().getInlineSpecLoc(),
8580              diag::err_concept_decl_invalid_specifiers)
8581             << 1 << 1;
8582         NewFD->setInvalidDecl(true);
8583       }
8584 
8585       if (isFriend) {
8586         Diag(D.getDeclSpec().getFriendSpecLoc(),
8587              diag::err_concept_decl_invalid_specifiers)
8588             << 1 << 2;
8589         NewFD->setInvalidDecl(true);
8590       }
8591 
8592       if (isConstexpr) {
8593         Diag(D.getDeclSpec().getConstexprSpecLoc(),
8594              diag::err_concept_decl_invalid_specifiers)
8595             << 1 << 3;
8596         NewFD->setInvalidDecl(true);
8597       }
8598 
8599       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
8600       // applied only to the definition of a function template or variable
8601       // template, declared in namespace scope.
8602       if (isFunctionTemplateSpecialization) {
8603         Diag(D.getDeclSpec().getConceptSpecLoc(),
8604              diag::err_concept_specified_specialization) << 1;
8605         NewFD->setInvalidDecl(true);
8606         return NewFD;
8607       }
8608     }
8609 
8610     // If __module_private__ was specified, mark the function accordingly.
8611     if (D.getDeclSpec().isModulePrivateSpecified()) {
8612       if (isFunctionTemplateSpecialization) {
8613         SourceLocation ModulePrivateLoc
8614           = D.getDeclSpec().getModulePrivateSpecLoc();
8615         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
8616           << 0
8617           << FixItHint::CreateRemoval(ModulePrivateLoc);
8618       } else {
8619         NewFD->setModulePrivate();
8620         if (FunctionTemplate)
8621           FunctionTemplate->setModulePrivate();
8622       }
8623     }
8624 
8625     if (isFriend) {
8626       if (FunctionTemplate) {
8627         FunctionTemplate->setObjectOfFriendDecl();
8628         FunctionTemplate->setAccess(AS_public);
8629       }
8630       NewFD->setObjectOfFriendDecl();
8631       NewFD->setAccess(AS_public);
8632     }
8633 
8634     // If a function is defined as defaulted or deleted, mark it as such now.
8635     // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
8636     // definition kind to FDK_Definition.
8637     switch (D.getFunctionDefinitionKind()) {
8638       case FDK_Declaration:
8639       case FDK_Definition:
8640         break;
8641 
8642       case FDK_Defaulted:
8643         NewFD->setDefaulted();
8644         break;
8645 
8646       case FDK_Deleted:
8647         NewFD->setDeletedAsWritten();
8648         break;
8649     }
8650 
8651     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
8652         D.isFunctionDefinition()) {
8653       // C++ [class.mfct]p2:
8654       //   A member function may be defined (8.4) in its class definition, in
8655       //   which case it is an inline member function (7.1.2)
8656       NewFD->setImplicitlyInline();
8657     }
8658 
8659     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
8660         !CurContext->isRecord()) {
8661       // C++ [class.static]p1:
8662       //   A data or function member of a class may be declared static
8663       //   in a class definition, in which case it is a static member of
8664       //   the class.
8665 
8666       // Complain about the 'static' specifier if it's on an out-of-line
8667       // member function definition.
8668       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
8669            diag::err_static_out_of_line)
8670         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
8671     }
8672 
8673     // C++11 [except.spec]p15:
8674     //   A deallocation function with no exception-specification is treated
8675     //   as if it were specified with noexcept(true).
8676     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
8677     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
8678          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
8679         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
8680       NewFD->setType(Context.getFunctionType(
8681           FPT->getReturnType(), FPT->getParamTypes(),
8682           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
8683   }
8684 
8685   // Filter out previous declarations that don't match the scope.
8686   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
8687                        D.getCXXScopeSpec().isNotEmpty() ||
8688                        isMemberSpecialization ||
8689                        isFunctionTemplateSpecialization);
8690 
8691   // Handle GNU asm-label extension (encoded as an attribute).
8692   if (Expr *E = (Expr*) D.getAsmLabel()) {
8693     // The parser guarantees this is a string.
8694     StringLiteral *SE = cast<StringLiteral>(E);
8695     NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
8696                                                 SE->getString(), 0));
8697   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
8698     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
8699       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
8700     if (I != ExtnameUndeclaredIdentifiers.end()) {
8701       if (isDeclExternC(NewFD)) {
8702         NewFD->addAttr(I->second);
8703         ExtnameUndeclaredIdentifiers.erase(I);
8704       } else
8705         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
8706             << /*Variable*/0 << NewFD;
8707     }
8708   }
8709 
8710   // Copy the parameter declarations from the declarator D to the function
8711   // declaration NewFD, if they are available.  First scavenge them into Params.
8712   SmallVector<ParmVarDecl*, 16> Params;
8713   unsigned FTIIdx;
8714   if (D.isFunctionDeclarator(FTIIdx)) {
8715     DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun;
8716 
8717     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
8718     // function that takes no arguments, not a function that takes a
8719     // single void argument.
8720     // We let through "const void" here because Sema::GetTypeForDeclarator
8721     // already checks for that case.
8722     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
8723       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
8724         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
8725         assert(Param->getDeclContext() != NewFD && "Was set before ?");
8726         Param->setDeclContext(NewFD);
8727         Params.push_back(Param);
8728 
8729         if (Param->isInvalidDecl())
8730           NewFD->setInvalidDecl();
8731       }
8732     }
8733 
8734     if (!getLangOpts().CPlusPlus) {
8735       // In C, find all the tag declarations from the prototype and move them
8736       // into the function DeclContext. Remove them from the surrounding tag
8737       // injection context of the function, which is typically but not always
8738       // the TU.
8739       DeclContext *PrototypeTagContext =
8740           getTagInjectionContext(NewFD->getLexicalDeclContext());
8741       for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) {
8742         auto *TD = dyn_cast<TagDecl>(NonParmDecl);
8743 
8744         // We don't want to reparent enumerators. Look at their parent enum
8745         // instead.
8746         if (!TD) {
8747           if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl))
8748             TD = cast<EnumDecl>(ECD->getDeclContext());
8749         }
8750         if (!TD)
8751           continue;
8752         DeclContext *TagDC = TD->getLexicalDeclContext();
8753         if (!TagDC->containsDecl(TD))
8754           continue;
8755         TagDC->removeDecl(TD);
8756         TD->setDeclContext(NewFD);
8757         NewFD->addDecl(TD);
8758 
8759         // Preserve the lexical DeclContext if it is not the surrounding tag
8760         // injection context of the FD. In this example, the semantic context of
8761         // E will be f and the lexical context will be S, while both the
8762         // semantic and lexical contexts of S will be f:
8763         //   void f(struct S { enum E { a } f; } s);
8764         if (TagDC != PrototypeTagContext)
8765           TD->setLexicalDeclContext(TagDC);
8766       }
8767     }
8768   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
8769     // When we're declaring a function with a typedef, typeof, etc as in the
8770     // following example, we'll need to synthesize (unnamed)
8771     // parameters for use in the declaration.
8772     //
8773     // @code
8774     // typedef void fn(int);
8775     // fn f;
8776     // @endcode
8777 
8778     // Synthesize a parameter for each argument type.
8779     for (const auto &AI : FT->param_types()) {
8780       ParmVarDecl *Param =
8781           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
8782       Param->setScopeInfo(0, Params.size());
8783       Params.push_back(Param);
8784     }
8785   } else {
8786     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
8787            "Should not need args for typedef of non-prototype fn");
8788   }
8789 
8790   // Finally, we know we have the right number of parameters, install them.
8791   NewFD->setParams(Params);
8792 
8793   if (D.getDeclSpec().isNoreturnSpecified())
8794     NewFD->addAttr(
8795         ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
8796                                        Context, 0));
8797 
8798   // Functions returning a variably modified type violate C99 6.7.5.2p2
8799   // because all functions have linkage.
8800   if (!NewFD->isInvalidDecl() &&
8801       NewFD->getReturnType()->isVariablyModifiedType()) {
8802     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
8803     NewFD->setInvalidDecl();
8804   }
8805 
8806   // Apply an implicit SectionAttr if '#pragma clang section text' is active
8807   if (PragmaClangTextSection.Valid && D.isFunctionDefinition() &&
8808       !NewFD->hasAttr<SectionAttr>()) {
8809     NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit(Context,
8810                                                  PragmaClangTextSection.SectionName,
8811                                                  PragmaClangTextSection.PragmaLocation));
8812   }
8813 
8814   // Apply an implicit SectionAttr if #pragma code_seg is active.
8815   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
8816       !NewFD->hasAttr<SectionAttr>()) {
8817     NewFD->addAttr(
8818         SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
8819                                     CodeSegStack.CurrentValue->getString(),
8820                                     CodeSegStack.CurrentPragmaLocation));
8821     if (UnifySection(CodeSegStack.CurrentValue->getString(),
8822                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
8823                          ASTContext::PSF_Read,
8824                      NewFD))
8825       NewFD->dropAttr<SectionAttr>();
8826   }
8827 
8828   // Handle attributes.
8829   ProcessDeclAttributes(S, NewFD, D);
8830 
8831   if (getLangOpts().OpenCL) {
8832     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
8833     // type declaration will generate a compilation error.
8834     unsigned AddressSpace = NewFD->getReturnType().getAddressSpace();
8835     if (AddressSpace == LangAS::opencl_local ||
8836         AddressSpace == LangAS::opencl_global ||
8837         AddressSpace == LangAS::opencl_constant) {
8838       Diag(NewFD->getLocation(),
8839            diag::err_opencl_return_value_with_address_space);
8840       NewFD->setInvalidDecl();
8841     }
8842   }
8843 
8844   if (!getLangOpts().CPlusPlus) {
8845     // Perform semantic checking on the function declaration.
8846     if (!NewFD->isInvalidDecl() && NewFD->isMain())
8847       CheckMain(NewFD, D.getDeclSpec());
8848 
8849     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8850       CheckMSVCRTEntryPoint(NewFD);
8851 
8852     if (!NewFD->isInvalidDecl())
8853       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8854                                                   isMemberSpecialization));
8855     else if (!Previous.empty())
8856       // Recover gracefully from an invalid redeclaration.
8857       D.setRedeclaration(true);
8858     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8859             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8860            "previous declaration set still overloaded");
8861 
8862     // Diagnose no-prototype function declarations with calling conventions that
8863     // don't support variadic calls. Only do this in C and do it after merging
8864     // possibly prototyped redeclarations.
8865     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
8866     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
8867       CallingConv CC = FT->getExtInfo().getCC();
8868       if (!supportsVariadicCall(CC)) {
8869         // Windows system headers sometimes accidentally use stdcall without
8870         // (void) parameters, so we relax this to a warning.
8871         int DiagID =
8872             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
8873         Diag(NewFD->getLocation(), DiagID)
8874             << FunctionType::getNameForCallConv(CC);
8875       }
8876     }
8877   } else {
8878     // C++11 [replacement.functions]p3:
8879     //  The program's definitions shall not be specified as inline.
8880     //
8881     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
8882     //
8883     // Suppress the diagnostic if the function is __attribute__((used)), since
8884     // that forces an external definition to be emitted.
8885     if (D.getDeclSpec().isInlineSpecified() &&
8886         NewFD->isReplaceableGlobalAllocationFunction() &&
8887         !NewFD->hasAttr<UsedAttr>())
8888       Diag(D.getDeclSpec().getInlineSpecLoc(),
8889            diag::ext_operator_new_delete_declared_inline)
8890         << NewFD->getDeclName();
8891 
8892     // If the declarator is a template-id, translate the parser's template
8893     // argument list into our AST format.
8894     if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
8895       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
8896       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
8897       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
8898       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
8899                                          TemplateId->NumArgs);
8900       translateTemplateArguments(TemplateArgsPtr,
8901                                  TemplateArgs);
8902 
8903       HasExplicitTemplateArgs = true;
8904 
8905       if (NewFD->isInvalidDecl()) {
8906         HasExplicitTemplateArgs = false;
8907       } else if (FunctionTemplate) {
8908         // Function template with explicit template arguments.
8909         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
8910           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
8911 
8912         HasExplicitTemplateArgs = false;
8913       } else {
8914         assert((isFunctionTemplateSpecialization ||
8915                 D.getDeclSpec().isFriendSpecified()) &&
8916                "should have a 'template<>' for this decl");
8917         // "friend void foo<>(int);" is an implicit specialization decl.
8918         isFunctionTemplateSpecialization = true;
8919       }
8920     } else if (isFriend && isFunctionTemplateSpecialization) {
8921       // This combination is only possible in a recovery case;  the user
8922       // wrote something like:
8923       //   template <> friend void foo(int);
8924       // which we're recovering from as if the user had written:
8925       //   friend void foo<>(int);
8926       // Go ahead and fake up a template id.
8927       HasExplicitTemplateArgs = true;
8928       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
8929       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
8930     }
8931 
8932     // We do not add HD attributes to specializations here because
8933     // they may have different constexpr-ness compared to their
8934     // templates and, after maybeAddCUDAHostDeviceAttrs() is applied,
8935     // may end up with different effective targets. Instead, a
8936     // specialization inherits its target attributes from its template
8937     // in the CheckFunctionTemplateSpecialization() call below.
8938     if (getLangOpts().CUDA & !isFunctionTemplateSpecialization)
8939       maybeAddCUDAHostDeviceAttrs(NewFD, Previous);
8940 
8941     // If it's a friend (and only if it's a friend), it's possible
8942     // that either the specialized function type or the specialized
8943     // template is dependent, and therefore matching will fail.  In
8944     // this case, don't check the specialization yet.
8945     bool InstantiationDependent = false;
8946     if (isFunctionTemplateSpecialization && isFriend &&
8947         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
8948          TemplateSpecializationType::anyDependentTemplateArguments(
8949             TemplateArgs,
8950             InstantiationDependent))) {
8951       assert(HasExplicitTemplateArgs &&
8952              "friend function specialization without template args");
8953       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
8954                                                        Previous))
8955         NewFD->setInvalidDecl();
8956     } else if (isFunctionTemplateSpecialization) {
8957       if (CurContext->isDependentContext() && CurContext->isRecord()
8958           && !isFriend) {
8959         isDependentClassScopeExplicitSpecialization = true;
8960         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
8961           diag::ext_function_specialization_in_class :
8962           diag::err_function_specialization_in_class)
8963           << NewFD->getDeclName();
8964       } else if (CheckFunctionTemplateSpecialization(NewFD,
8965                                   (HasExplicitTemplateArgs ? &TemplateArgs
8966                                                            : nullptr),
8967                                                      Previous))
8968         NewFD->setInvalidDecl();
8969 
8970       // C++ [dcl.stc]p1:
8971       //   A storage-class-specifier shall not be specified in an explicit
8972       //   specialization (14.7.3)
8973       FunctionTemplateSpecializationInfo *Info =
8974           NewFD->getTemplateSpecializationInfo();
8975       if (Info && SC != SC_None) {
8976         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
8977           Diag(NewFD->getLocation(),
8978                diag::err_explicit_specialization_inconsistent_storage_class)
8979             << SC
8980             << FixItHint::CreateRemoval(
8981                                       D.getDeclSpec().getStorageClassSpecLoc());
8982 
8983         else
8984           Diag(NewFD->getLocation(),
8985                diag::ext_explicit_specialization_storage_class)
8986             << FixItHint::CreateRemoval(
8987                                       D.getDeclSpec().getStorageClassSpecLoc());
8988       }
8989     } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) {
8990       if (CheckMemberSpecialization(NewFD, Previous))
8991           NewFD->setInvalidDecl();
8992     }
8993 
8994     // Perform semantic checking on the function declaration.
8995     if (!isDependentClassScopeExplicitSpecialization) {
8996       if (!NewFD->isInvalidDecl() && NewFD->isMain())
8997         CheckMain(NewFD, D.getDeclSpec());
8998 
8999       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
9000         CheckMSVCRTEntryPoint(NewFD);
9001 
9002       if (!NewFD->isInvalidDecl())
9003         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
9004                                                     isMemberSpecialization));
9005       else if (!Previous.empty())
9006         // Recover gracefully from an invalid redeclaration.
9007         D.setRedeclaration(true);
9008     }
9009 
9010     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
9011             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
9012            "previous declaration set still overloaded");
9013 
9014     NamedDecl *PrincipalDecl = (FunctionTemplate
9015                                 ? cast<NamedDecl>(FunctionTemplate)
9016                                 : NewFD);
9017 
9018     if (isFriend && NewFD->getPreviousDecl()) {
9019       AccessSpecifier Access = AS_public;
9020       if (!NewFD->isInvalidDecl())
9021         Access = NewFD->getPreviousDecl()->getAccess();
9022 
9023       NewFD->setAccess(Access);
9024       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
9025     }
9026 
9027     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
9028         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
9029       PrincipalDecl->setNonMemberOperator();
9030 
9031     // If we have a function template, check the template parameter
9032     // list. This will check and merge default template arguments.
9033     if (FunctionTemplate) {
9034       FunctionTemplateDecl *PrevTemplate =
9035                                      FunctionTemplate->getPreviousDecl();
9036       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
9037                        PrevTemplate ? PrevTemplate->getTemplateParameters()
9038                                     : nullptr,
9039                             D.getDeclSpec().isFriendSpecified()
9040                               ? (D.isFunctionDefinition()
9041                                    ? TPC_FriendFunctionTemplateDefinition
9042                                    : TPC_FriendFunctionTemplate)
9043                               : (D.getCXXScopeSpec().isSet() &&
9044                                  DC && DC->isRecord() &&
9045                                  DC->isDependentContext())
9046                                   ? TPC_ClassTemplateMember
9047                                   : TPC_FunctionTemplate);
9048     }
9049 
9050     if (NewFD->isInvalidDecl()) {
9051       // Ignore all the rest of this.
9052     } else if (!D.isRedeclaration()) {
9053       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
9054                                        AddToScope };
9055       // Fake up an access specifier if it's supposed to be a class member.
9056       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
9057         NewFD->setAccess(AS_public);
9058 
9059       // Qualified decls generally require a previous declaration.
9060       if (D.getCXXScopeSpec().isSet()) {
9061         // ...with the major exception of templated-scope or
9062         // dependent-scope friend declarations.
9063 
9064         // TODO: we currently also suppress this check in dependent
9065         // contexts because (1) the parameter depth will be off when
9066         // matching friend templates and (2) we might actually be
9067         // selecting a friend based on a dependent factor.  But there
9068         // are situations where these conditions don't apply and we
9069         // can actually do this check immediately.
9070         if (isFriend &&
9071             (TemplateParamLists.size() ||
9072              D.getCXXScopeSpec().getScopeRep()->isDependent() ||
9073              CurContext->isDependentContext())) {
9074           // ignore these
9075         } else {
9076           // The user tried to provide an out-of-line definition for a
9077           // function that is a member of a class or namespace, but there
9078           // was no such member function declared (C++ [class.mfct]p2,
9079           // C++ [namespace.memdef]p2). For example:
9080           //
9081           // class X {
9082           //   void f() const;
9083           // };
9084           //
9085           // void X::f() { } // ill-formed
9086           //
9087           // Complain about this problem, and attempt to suggest close
9088           // matches (e.g., those that differ only in cv-qualifiers and
9089           // whether the parameter types are references).
9090 
9091           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
9092                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
9093             AddToScope = ExtraArgs.AddToScope;
9094             return Result;
9095           }
9096         }
9097 
9098         // Unqualified local friend declarations are required to resolve
9099         // to something.
9100       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
9101         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
9102                 *this, Previous, NewFD, ExtraArgs, true, S)) {
9103           AddToScope = ExtraArgs.AddToScope;
9104           return Result;
9105         }
9106       }
9107     } else if (!D.isFunctionDefinition() &&
9108                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
9109                !isFriend && !isFunctionTemplateSpecialization &&
9110                !isMemberSpecialization) {
9111       // An out-of-line member function declaration must also be a
9112       // definition (C++ [class.mfct]p2).
9113       // Note that this is not the case for explicit specializations of
9114       // function templates or member functions of class templates, per
9115       // C++ [temp.expl.spec]p2. We also allow these declarations as an
9116       // extension for compatibility with old SWIG code which likes to
9117       // generate them.
9118       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
9119         << D.getCXXScopeSpec().getRange();
9120     }
9121   }
9122 
9123   ProcessPragmaWeak(S, NewFD);
9124   checkAttributesAfterMerging(*this, *NewFD);
9125 
9126   AddKnownFunctionAttributes(NewFD);
9127 
9128   if (NewFD->hasAttr<OverloadableAttr>() &&
9129       !NewFD->getType()->getAs<FunctionProtoType>()) {
9130     Diag(NewFD->getLocation(),
9131          diag::err_attribute_overloadable_no_prototype)
9132       << NewFD;
9133 
9134     // Turn this into a variadic function with no parameters.
9135     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
9136     FunctionProtoType::ExtProtoInfo EPI(
9137         Context.getDefaultCallingConvention(true, false));
9138     EPI.Variadic = true;
9139     EPI.ExtInfo = FT->getExtInfo();
9140 
9141     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
9142     NewFD->setType(R);
9143   }
9144 
9145   // If there's a #pragma GCC visibility in scope, and this isn't a class
9146   // member, set the visibility of this function.
9147   if (!DC->isRecord() && NewFD->isExternallyVisible())
9148     AddPushedVisibilityAttribute(NewFD);
9149 
9150   // If there's a #pragma clang arc_cf_code_audited in scope, consider
9151   // marking the function.
9152   AddCFAuditedAttribute(NewFD);
9153 
9154   // If this is a function definition, check if we have to apply optnone due to
9155   // a pragma.
9156   if(D.isFunctionDefinition())
9157     AddRangeBasedOptnone(NewFD);
9158 
9159   // If this is the first declaration of an extern C variable, update
9160   // the map of such variables.
9161   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
9162       isIncompleteDeclExternC(*this, NewFD))
9163     RegisterLocallyScopedExternCDecl(NewFD, S);
9164 
9165   // Set this FunctionDecl's range up to the right paren.
9166   NewFD->setRangeEnd(D.getSourceRange().getEnd());
9167 
9168   if (D.isRedeclaration() && !Previous.empty()) {
9169     checkDLLAttributeRedeclaration(
9170         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD,
9171         isMemberSpecialization || isFunctionTemplateSpecialization,
9172         D.isFunctionDefinition());
9173   }
9174 
9175   if (getLangOpts().CUDA) {
9176     IdentifierInfo *II = NewFD->getIdentifier();
9177     if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() &&
9178         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
9179       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
9180         Diag(NewFD->getLocation(), diag::err_config_scalar_return);
9181 
9182       Context.setcudaConfigureCallDecl(NewFD);
9183     }
9184 
9185     // Variadic functions, other than a *declaration* of printf, are not allowed
9186     // in device-side CUDA code, unless someone passed
9187     // -fcuda-allow-variadic-functions.
9188     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
9189         (NewFD->hasAttr<CUDADeviceAttr>() ||
9190          NewFD->hasAttr<CUDAGlobalAttr>()) &&
9191         !(II && II->isStr("printf") && NewFD->isExternC() &&
9192           !D.isFunctionDefinition())) {
9193       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
9194     }
9195   }
9196 
9197   MarkUnusedFileScopedDecl(NewFD);
9198 
9199   if (getLangOpts().CPlusPlus) {
9200     if (FunctionTemplate) {
9201       if (NewFD->isInvalidDecl())
9202         FunctionTemplate->setInvalidDecl();
9203       return FunctionTemplate;
9204     }
9205 
9206     if (isMemberSpecialization && !NewFD->isInvalidDecl())
9207       CompleteMemberSpecialization(NewFD, Previous);
9208   }
9209 
9210   if (NewFD->hasAttr<OpenCLKernelAttr>()) {
9211     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
9212     if ((getLangOpts().OpenCLVersion >= 120)
9213         && (SC == SC_Static)) {
9214       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
9215       D.setInvalidType();
9216     }
9217 
9218     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
9219     if (!NewFD->getReturnType()->isVoidType()) {
9220       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
9221       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
9222           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
9223                                 : FixItHint());
9224       D.setInvalidType();
9225     }
9226 
9227     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
9228     for (auto Param : NewFD->parameters())
9229       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
9230   }
9231   for (const ParmVarDecl *Param : NewFD->parameters()) {
9232     QualType PT = Param->getType();
9233 
9234     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
9235     // types.
9236     if (getLangOpts().OpenCLVersion >= 200) {
9237       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
9238         QualType ElemTy = PipeTy->getElementType();
9239           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
9240             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
9241             D.setInvalidType();
9242           }
9243       }
9244     }
9245   }
9246 
9247   // Here we have an function template explicit specialization at class scope.
9248   // The actually specialization will be postponed to template instatiation
9249   // time via the ClassScopeFunctionSpecializationDecl node.
9250   if (isDependentClassScopeExplicitSpecialization) {
9251     ClassScopeFunctionSpecializationDecl *NewSpec =
9252                          ClassScopeFunctionSpecializationDecl::Create(
9253                                 Context, CurContext, SourceLocation(),
9254                                 cast<CXXMethodDecl>(NewFD),
9255                                 HasExplicitTemplateArgs, TemplateArgs);
9256     CurContext->addDecl(NewSpec);
9257     AddToScope = false;
9258   }
9259 
9260   return NewFD;
9261 }
9262 
9263 /// \brief Checks if the new declaration declared in dependent context must be
9264 /// put in the same redeclaration chain as the specified declaration.
9265 ///
9266 /// \param D Declaration that is checked.
9267 /// \param PrevDecl Previous declaration found with proper lookup method for the
9268 ///                 same declaration name.
9269 /// \returns True if D must be added to the redeclaration chain which PrevDecl
9270 ///          belongs to.
9271 ///
9272 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) {
9273   // Any declarations should be put into redeclaration chains except for
9274   // friend declaration in a dependent context that names a function in
9275   // namespace scope.
9276   //
9277   // This allows to compile code like:
9278   //
9279   //       void func();
9280   //       template<typename T> class C1 { friend void func() { } };
9281   //       template<typename T> class C2 { friend void func() { } };
9282   //
9283   // This code snippet is a valid code unless both templates are instantiated.
9284   return !(D->getLexicalDeclContext()->isDependentContext() &&
9285            D->getDeclContext()->isFileContext() &&
9286            D->getFriendObjectKind() != Decl::FOK_None);
9287 }
9288 
9289 /// \brief Perform semantic checking of a new function declaration.
9290 ///
9291 /// Performs semantic analysis of the new function declaration
9292 /// NewFD. This routine performs all semantic checking that does not
9293 /// require the actual declarator involved in the declaration, and is
9294 /// used both for the declaration of functions as they are parsed
9295 /// (called via ActOnDeclarator) and for the declaration of functions
9296 /// that have been instantiated via C++ template instantiation (called
9297 /// via InstantiateDecl).
9298 ///
9299 /// \param IsMemberSpecialization whether this new function declaration is
9300 /// a member specialization (that replaces any definition provided by the
9301 /// previous declaration).
9302 ///
9303 /// This sets NewFD->isInvalidDecl() to true if there was an error.
9304 ///
9305 /// \returns true if the function declaration is a redeclaration.
9306 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
9307                                     LookupResult &Previous,
9308                                     bool IsMemberSpecialization) {
9309   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
9310          "Variably modified return types are not handled here");
9311 
9312   // Determine whether the type of this function should be merged with
9313   // a previous visible declaration. This never happens for functions in C++,
9314   // and always happens in C if the previous declaration was visible.
9315   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
9316                                !Previous.isShadowed();
9317 
9318   bool Redeclaration = false;
9319   NamedDecl *OldDecl = nullptr;
9320   bool MayNeedOverloadableChecks = false;
9321 
9322   // Merge or overload the declaration with an existing declaration of
9323   // the same name, if appropriate.
9324   if (!Previous.empty()) {
9325     // Determine whether NewFD is an overload of PrevDecl or
9326     // a declaration that requires merging. If it's an overload,
9327     // there's no more work to do here; we'll just add the new
9328     // function to the scope.
9329     if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) {
9330       NamedDecl *Candidate = Previous.getRepresentativeDecl();
9331       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
9332         Redeclaration = true;
9333         OldDecl = Candidate;
9334       }
9335     } else {
9336       MayNeedOverloadableChecks = true;
9337       switch (CheckOverload(S, NewFD, Previous, OldDecl,
9338                             /*NewIsUsingDecl*/ false)) {
9339       case Ovl_Match:
9340         Redeclaration = true;
9341         break;
9342 
9343       case Ovl_NonFunction:
9344         Redeclaration = true;
9345         break;
9346 
9347       case Ovl_Overload:
9348         Redeclaration = false;
9349         break;
9350       }
9351     }
9352   }
9353 
9354   // Check for a previous extern "C" declaration with this name.
9355   if (!Redeclaration &&
9356       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
9357     if (!Previous.empty()) {
9358       // This is an extern "C" declaration with the same name as a previous
9359       // declaration, and thus redeclares that entity...
9360       Redeclaration = true;
9361       OldDecl = Previous.getFoundDecl();
9362       MergeTypeWithPrevious = false;
9363 
9364       // ... except in the presence of __attribute__((overloadable)).
9365       if (OldDecl->hasAttr<OverloadableAttr>() ||
9366           NewFD->hasAttr<OverloadableAttr>()) {
9367         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
9368           MayNeedOverloadableChecks = true;
9369           Redeclaration = false;
9370           OldDecl = nullptr;
9371         }
9372       }
9373     }
9374   }
9375 
9376   // C++11 [dcl.constexpr]p8:
9377   //   A constexpr specifier for a non-static member function that is not
9378   //   a constructor declares that member function to be const.
9379   //
9380   // This needs to be delayed until we know whether this is an out-of-line
9381   // definition of a static member function.
9382   //
9383   // This rule is not present in C++1y, so we produce a backwards
9384   // compatibility warning whenever it happens in C++11.
9385   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
9386   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
9387       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
9388       (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
9389     CXXMethodDecl *OldMD = nullptr;
9390     if (OldDecl)
9391       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
9392     if (!OldMD || !OldMD->isStatic()) {
9393       const FunctionProtoType *FPT =
9394         MD->getType()->castAs<FunctionProtoType>();
9395       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9396       EPI.TypeQuals |= Qualifiers::Const;
9397       MD->setType(Context.getFunctionType(FPT->getReturnType(),
9398                                           FPT->getParamTypes(), EPI));
9399 
9400       // Warn that we did this, if we're not performing template instantiation.
9401       // In that case, we'll have warned already when the template was defined.
9402       if (!inTemplateInstantiation()) {
9403         SourceLocation AddConstLoc;
9404         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
9405                 .IgnoreParens().getAs<FunctionTypeLoc>())
9406           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
9407 
9408         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
9409           << FixItHint::CreateInsertion(AddConstLoc, " const");
9410       }
9411     }
9412   }
9413 
9414   if (Redeclaration) {
9415     // NewFD and OldDecl represent declarations that need to be
9416     // merged.
9417     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
9418       NewFD->setInvalidDecl();
9419       return Redeclaration;
9420     }
9421 
9422     Previous.clear();
9423     Previous.addDecl(OldDecl);
9424 
9425     if (FunctionTemplateDecl *OldTemplateDecl
9426                                   = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
9427       NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
9428       FunctionTemplateDecl *NewTemplateDecl
9429         = NewFD->getDescribedFunctionTemplate();
9430       assert(NewTemplateDecl && "Template/non-template mismatch");
9431       if (CXXMethodDecl *Method
9432             = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
9433         Method->setAccess(OldTemplateDecl->getAccess());
9434         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
9435       }
9436 
9437       // If this is an explicit specialization of a member that is a function
9438       // template, mark it as a member specialization.
9439       if (IsMemberSpecialization &&
9440           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
9441         NewTemplateDecl->setMemberSpecialization();
9442         assert(OldTemplateDecl->isMemberSpecialization());
9443         // Explicit specializations of a member template do not inherit deleted
9444         // status from the parent member template that they are specializing.
9445         if (OldTemplateDecl->getTemplatedDecl()->isDeleted()) {
9446           FunctionDecl *const OldTemplatedDecl =
9447               OldTemplateDecl->getTemplatedDecl();
9448           // FIXME: This assert will not hold in the presence of modules.
9449           assert(OldTemplatedDecl->getCanonicalDecl() == OldTemplatedDecl);
9450           // FIXME: We need an update record for this AST mutation.
9451           OldTemplatedDecl->setDeletedAsWritten(false);
9452         }
9453       }
9454 
9455     } else {
9456       if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) {
9457         // This needs to happen first so that 'inline' propagates.
9458         NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
9459         if (isa<CXXMethodDecl>(NewFD))
9460           NewFD->setAccess(OldDecl->getAccess());
9461       }
9462     }
9463   } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks &&
9464              !NewFD->getAttr<OverloadableAttr>()) {
9465     assert((Previous.empty() ||
9466             llvm::any_of(Previous,
9467                          [](const NamedDecl *ND) {
9468                            return ND->hasAttr<OverloadableAttr>();
9469                          })) &&
9470            "Non-redecls shouldn't happen without overloadable present");
9471 
9472     auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) {
9473       const auto *FD = dyn_cast<FunctionDecl>(ND);
9474       return FD && !FD->hasAttr<OverloadableAttr>();
9475     });
9476 
9477     if (OtherUnmarkedIter != Previous.end()) {
9478       Diag(NewFD->getLocation(),
9479            diag::err_attribute_overloadable_multiple_unmarked_overloads);
9480       Diag((*OtherUnmarkedIter)->getLocation(),
9481            diag::note_attribute_overloadable_prev_overload)
9482           << false;
9483 
9484       NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
9485     }
9486   }
9487 
9488   // Semantic checking for this function declaration (in isolation).
9489 
9490   if (getLangOpts().CPlusPlus) {
9491     // C++-specific checks.
9492     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
9493       CheckConstructor(Constructor);
9494     } else if (CXXDestructorDecl *Destructor =
9495                 dyn_cast<CXXDestructorDecl>(NewFD)) {
9496       CXXRecordDecl *Record = Destructor->getParent();
9497       QualType ClassType = Context.getTypeDeclType(Record);
9498 
9499       // FIXME: Shouldn't we be able to perform this check even when the class
9500       // type is dependent? Both gcc and edg can handle that.
9501       if (!ClassType->isDependentType()) {
9502         DeclarationName Name
9503           = Context.DeclarationNames.getCXXDestructorName(
9504                                         Context.getCanonicalType(ClassType));
9505         if (NewFD->getDeclName() != Name) {
9506           Diag(NewFD->getLocation(), diag::err_destructor_name);
9507           NewFD->setInvalidDecl();
9508           return Redeclaration;
9509         }
9510       }
9511     } else if (CXXConversionDecl *Conversion
9512                = dyn_cast<CXXConversionDecl>(NewFD)) {
9513       ActOnConversionDeclarator(Conversion);
9514     } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) {
9515       if (auto *TD = Guide->getDescribedFunctionTemplate())
9516         CheckDeductionGuideTemplate(TD);
9517 
9518       // A deduction guide is not on the list of entities that can be
9519       // explicitly specialized.
9520       if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
9521         Diag(Guide->getLocStart(), diag::err_deduction_guide_specialized)
9522             << /*explicit specialization*/ 1;
9523     }
9524 
9525     // Find any virtual functions that this function overrides.
9526     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
9527       if (!Method->isFunctionTemplateSpecialization() &&
9528           !Method->getDescribedFunctionTemplate() &&
9529           Method->isCanonicalDecl()) {
9530         if (AddOverriddenMethods(Method->getParent(), Method)) {
9531           // If the function was marked as "static", we have a problem.
9532           if (NewFD->getStorageClass() == SC_Static) {
9533             ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
9534           }
9535         }
9536       }
9537 
9538       if (Method->isStatic())
9539         checkThisInStaticMemberFunctionType(Method);
9540     }
9541 
9542     // Extra checking for C++ overloaded operators (C++ [over.oper]).
9543     if (NewFD->isOverloadedOperator() &&
9544         CheckOverloadedOperatorDeclaration(NewFD)) {
9545       NewFD->setInvalidDecl();
9546       return Redeclaration;
9547     }
9548 
9549     // Extra checking for C++0x literal operators (C++0x [over.literal]).
9550     if (NewFD->getLiteralIdentifier() &&
9551         CheckLiteralOperatorDeclaration(NewFD)) {
9552       NewFD->setInvalidDecl();
9553       return Redeclaration;
9554     }
9555 
9556     // In C++, check default arguments now that we have merged decls. Unless
9557     // the lexical context is the class, because in this case this is done
9558     // during delayed parsing anyway.
9559     if (!CurContext->isRecord())
9560       CheckCXXDefaultArguments(NewFD);
9561 
9562     // If this function declares a builtin function, check the type of this
9563     // declaration against the expected type for the builtin.
9564     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
9565       ASTContext::GetBuiltinTypeError Error;
9566       LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
9567       QualType T = Context.GetBuiltinType(BuiltinID, Error);
9568       // If the type of the builtin differs only in its exception
9569       // specification, that's OK.
9570       // FIXME: If the types do differ in this way, it would be better to
9571       // retain the 'noexcept' form of the type.
9572       if (!T.isNull() &&
9573           !Context.hasSameFunctionTypeIgnoringExceptionSpec(T,
9574                                                             NewFD->getType()))
9575         // The type of this function differs from the type of the builtin,
9576         // so forget about the builtin entirely.
9577         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
9578     }
9579 
9580     // If this function is declared as being extern "C", then check to see if
9581     // the function returns a UDT (class, struct, or union type) that is not C
9582     // compatible, and if it does, warn the user.
9583     // But, issue any diagnostic on the first declaration only.
9584     if (Previous.empty() && NewFD->isExternC()) {
9585       QualType R = NewFD->getReturnType();
9586       if (R->isIncompleteType() && !R->isVoidType())
9587         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
9588             << NewFD << R;
9589       else if (!R.isPODType(Context) && !R->isVoidType() &&
9590                !R->isObjCObjectPointerType())
9591         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
9592     }
9593 
9594     // C++1z [dcl.fct]p6:
9595     //   [...] whether the function has a non-throwing exception-specification
9596     //   [is] part of the function type
9597     //
9598     // This results in an ABI break between C++14 and C++17 for functions whose
9599     // declared type includes an exception-specification in a parameter or
9600     // return type. (Exception specifications on the function itself are OK in
9601     // most cases, and exception specifications are not permitted in most other
9602     // contexts where they could make it into a mangling.)
9603     if (!getLangOpts().CPlusPlus1z && !NewFD->getPrimaryTemplate()) {
9604       auto HasNoexcept = [&](QualType T) -> bool {
9605         // Strip off declarator chunks that could be between us and a function
9606         // type. We don't need to look far, exception specifications are very
9607         // restricted prior to C++17.
9608         if (auto *RT = T->getAs<ReferenceType>())
9609           T = RT->getPointeeType();
9610         else if (T->isAnyPointerType())
9611           T = T->getPointeeType();
9612         else if (auto *MPT = T->getAs<MemberPointerType>())
9613           T = MPT->getPointeeType();
9614         if (auto *FPT = T->getAs<FunctionProtoType>())
9615           if (FPT->isNothrow(Context))
9616             return true;
9617         return false;
9618       };
9619 
9620       auto *FPT = NewFD->getType()->castAs<FunctionProtoType>();
9621       bool AnyNoexcept = HasNoexcept(FPT->getReturnType());
9622       for (QualType T : FPT->param_types())
9623         AnyNoexcept |= HasNoexcept(T);
9624       if (AnyNoexcept)
9625         Diag(NewFD->getLocation(),
9626              diag::warn_cxx17_compat_exception_spec_in_signature)
9627             << NewFD;
9628     }
9629 
9630     if (!Redeclaration && LangOpts.CUDA)
9631       checkCUDATargetOverload(NewFD, Previous);
9632   }
9633   return Redeclaration;
9634 }
9635 
9636 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
9637   // C++11 [basic.start.main]p3:
9638   //   A program that [...] declares main to be inline, static or
9639   //   constexpr is ill-formed.
9640   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
9641   //   appear in a declaration of main.
9642   // static main is not an error under C99, but we should warn about it.
9643   // We accept _Noreturn main as an extension.
9644   if (FD->getStorageClass() == SC_Static)
9645     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
9646          ? diag::err_static_main : diag::warn_static_main)
9647       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
9648   if (FD->isInlineSpecified())
9649     Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
9650       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
9651   if (DS.isNoreturnSpecified()) {
9652     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
9653     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
9654     Diag(NoreturnLoc, diag::ext_noreturn_main);
9655     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
9656       << FixItHint::CreateRemoval(NoreturnRange);
9657   }
9658   if (FD->isConstexpr()) {
9659     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
9660       << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
9661     FD->setConstexpr(false);
9662   }
9663 
9664   if (getLangOpts().OpenCL) {
9665     Diag(FD->getLocation(), diag::err_opencl_no_main)
9666         << FD->hasAttr<OpenCLKernelAttr>();
9667     FD->setInvalidDecl();
9668     return;
9669   }
9670 
9671   QualType T = FD->getType();
9672   assert(T->isFunctionType() && "function decl is not of function type");
9673   const FunctionType* FT = T->castAs<FunctionType>();
9674 
9675   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
9676     // In C with GNU extensions we allow main() to have non-integer return
9677     // type, but we should warn about the extension, and we disable the
9678     // implicit-return-zero rule.
9679 
9680     // GCC in C mode accepts qualified 'int'.
9681     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
9682       FD->setHasImplicitReturnZero(true);
9683     else {
9684       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
9685       SourceRange RTRange = FD->getReturnTypeSourceRange();
9686       if (RTRange.isValid())
9687         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
9688             << FixItHint::CreateReplacement(RTRange, "int");
9689     }
9690   } else {
9691     // In C and C++, main magically returns 0 if you fall off the end;
9692     // set the flag which tells us that.
9693     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
9694 
9695     // All the standards say that main() should return 'int'.
9696     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
9697       FD->setHasImplicitReturnZero(true);
9698     else {
9699       // Otherwise, this is just a flat-out error.
9700       SourceRange RTRange = FD->getReturnTypeSourceRange();
9701       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
9702           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
9703                                 : FixItHint());
9704       FD->setInvalidDecl(true);
9705     }
9706   }
9707 
9708   // Treat protoless main() as nullary.
9709   if (isa<FunctionNoProtoType>(FT)) return;
9710 
9711   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
9712   unsigned nparams = FTP->getNumParams();
9713   assert(FD->getNumParams() == nparams);
9714 
9715   bool HasExtraParameters = (nparams > 3);
9716 
9717   if (FTP->isVariadic()) {
9718     Diag(FD->getLocation(), diag::ext_variadic_main);
9719     // FIXME: if we had information about the location of the ellipsis, we
9720     // could add a FixIt hint to remove it as a parameter.
9721   }
9722 
9723   // Darwin passes an undocumented fourth argument of type char**.  If
9724   // other platforms start sprouting these, the logic below will start
9725   // getting shifty.
9726   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
9727     HasExtraParameters = false;
9728 
9729   if (HasExtraParameters) {
9730     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
9731     FD->setInvalidDecl(true);
9732     nparams = 3;
9733   }
9734 
9735   // FIXME: a lot of the following diagnostics would be improved
9736   // if we had some location information about types.
9737 
9738   QualType CharPP =
9739     Context.getPointerType(Context.getPointerType(Context.CharTy));
9740   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
9741 
9742   for (unsigned i = 0; i < nparams; ++i) {
9743     QualType AT = FTP->getParamType(i);
9744 
9745     bool mismatch = true;
9746 
9747     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
9748       mismatch = false;
9749     else if (Expected[i] == CharPP) {
9750       // As an extension, the following forms are okay:
9751       //   char const **
9752       //   char const * const *
9753       //   char * const *
9754 
9755       QualifierCollector qs;
9756       const PointerType* PT;
9757       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
9758           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
9759           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
9760                               Context.CharTy)) {
9761         qs.removeConst();
9762         mismatch = !qs.empty();
9763       }
9764     }
9765 
9766     if (mismatch) {
9767       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
9768       // TODO: suggest replacing given type with expected type
9769       FD->setInvalidDecl(true);
9770     }
9771   }
9772 
9773   if (nparams == 1 && !FD->isInvalidDecl()) {
9774     Diag(FD->getLocation(), diag::warn_main_one_arg);
9775   }
9776 
9777   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
9778     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
9779     FD->setInvalidDecl();
9780   }
9781 }
9782 
9783 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
9784   QualType T = FD->getType();
9785   assert(T->isFunctionType() && "function decl is not of function type");
9786   const FunctionType *FT = T->castAs<FunctionType>();
9787 
9788   // Set an implicit return of 'zero' if the function can return some integral,
9789   // enumeration, pointer or nullptr type.
9790   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
9791       FT->getReturnType()->isAnyPointerType() ||
9792       FT->getReturnType()->isNullPtrType())
9793     // DllMain is exempt because a return value of zero means it failed.
9794     if (FD->getName() != "DllMain")
9795       FD->setHasImplicitReturnZero(true);
9796 
9797   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
9798     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
9799     FD->setInvalidDecl();
9800   }
9801 }
9802 
9803 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
9804   // FIXME: Need strict checking.  In C89, we need to check for
9805   // any assignment, increment, decrement, function-calls, or
9806   // commas outside of a sizeof.  In C99, it's the same list,
9807   // except that the aforementioned are allowed in unevaluated
9808   // expressions.  Everything else falls under the
9809   // "may accept other forms of constant expressions" exception.
9810   // (We never end up here for C++, so the constant expression
9811   // rules there don't matter.)
9812   const Expr *Culprit;
9813   if (Init->isConstantInitializer(Context, false, &Culprit))
9814     return false;
9815   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
9816     << Culprit->getSourceRange();
9817   return true;
9818 }
9819 
9820 namespace {
9821   // Visits an initialization expression to see if OrigDecl is evaluated in
9822   // its own initialization and throws a warning if it does.
9823   class SelfReferenceChecker
9824       : public EvaluatedExprVisitor<SelfReferenceChecker> {
9825     Sema &S;
9826     Decl *OrigDecl;
9827     bool isRecordType;
9828     bool isPODType;
9829     bool isReferenceType;
9830 
9831     bool isInitList;
9832     llvm::SmallVector<unsigned, 4> InitFieldIndex;
9833 
9834   public:
9835     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
9836 
9837     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
9838                                                     S(S), OrigDecl(OrigDecl) {
9839       isPODType = false;
9840       isRecordType = false;
9841       isReferenceType = false;
9842       isInitList = false;
9843       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
9844         isPODType = VD->getType().isPODType(S.Context);
9845         isRecordType = VD->getType()->isRecordType();
9846         isReferenceType = VD->getType()->isReferenceType();
9847       }
9848     }
9849 
9850     // For most expressions, just call the visitor.  For initializer lists,
9851     // track the index of the field being initialized since fields are
9852     // initialized in order allowing use of previously initialized fields.
9853     void CheckExpr(Expr *E) {
9854       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
9855       if (!InitList) {
9856         Visit(E);
9857         return;
9858       }
9859 
9860       // Track and increment the index here.
9861       isInitList = true;
9862       InitFieldIndex.push_back(0);
9863       for (auto Child : InitList->children()) {
9864         CheckExpr(cast<Expr>(Child));
9865         ++InitFieldIndex.back();
9866       }
9867       InitFieldIndex.pop_back();
9868     }
9869 
9870     // Returns true if MemberExpr is checked and no further checking is needed.
9871     // Returns false if additional checking is required.
9872     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
9873       llvm::SmallVector<FieldDecl*, 4> Fields;
9874       Expr *Base = E;
9875       bool ReferenceField = false;
9876 
9877       // Get the field memebers used.
9878       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9879         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
9880         if (!FD)
9881           return false;
9882         Fields.push_back(FD);
9883         if (FD->getType()->isReferenceType())
9884           ReferenceField = true;
9885         Base = ME->getBase()->IgnoreParenImpCasts();
9886       }
9887 
9888       // Keep checking only if the base Decl is the same.
9889       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
9890       if (!DRE || DRE->getDecl() != OrigDecl)
9891         return false;
9892 
9893       // A reference field can be bound to an unininitialized field.
9894       if (CheckReference && !ReferenceField)
9895         return true;
9896 
9897       // Convert FieldDecls to their index number.
9898       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
9899       for (const FieldDecl *I : llvm::reverse(Fields))
9900         UsedFieldIndex.push_back(I->getFieldIndex());
9901 
9902       // See if a warning is needed by checking the first difference in index
9903       // numbers.  If field being used has index less than the field being
9904       // initialized, then the use is safe.
9905       for (auto UsedIter = UsedFieldIndex.begin(),
9906                 UsedEnd = UsedFieldIndex.end(),
9907                 OrigIter = InitFieldIndex.begin(),
9908                 OrigEnd = InitFieldIndex.end();
9909            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
9910         if (*UsedIter < *OrigIter)
9911           return true;
9912         if (*UsedIter > *OrigIter)
9913           break;
9914       }
9915 
9916       // TODO: Add a different warning which will print the field names.
9917       HandleDeclRefExpr(DRE);
9918       return true;
9919     }
9920 
9921     // For most expressions, the cast is directly above the DeclRefExpr.
9922     // For conditional operators, the cast can be outside the conditional
9923     // operator if both expressions are DeclRefExpr's.
9924     void HandleValue(Expr *E) {
9925       E = E->IgnoreParens();
9926       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
9927         HandleDeclRefExpr(DRE);
9928         return;
9929       }
9930 
9931       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
9932         Visit(CO->getCond());
9933         HandleValue(CO->getTrueExpr());
9934         HandleValue(CO->getFalseExpr());
9935         return;
9936       }
9937 
9938       if (BinaryConditionalOperator *BCO =
9939               dyn_cast<BinaryConditionalOperator>(E)) {
9940         Visit(BCO->getCond());
9941         HandleValue(BCO->getFalseExpr());
9942         return;
9943       }
9944 
9945       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
9946         HandleValue(OVE->getSourceExpr());
9947         return;
9948       }
9949 
9950       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
9951         if (BO->getOpcode() == BO_Comma) {
9952           Visit(BO->getLHS());
9953           HandleValue(BO->getRHS());
9954           return;
9955         }
9956       }
9957 
9958       if (isa<MemberExpr>(E)) {
9959         if (isInitList) {
9960           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
9961                                       false /*CheckReference*/))
9962             return;
9963         }
9964 
9965         Expr *Base = E->IgnoreParenImpCasts();
9966         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9967           // Check for static member variables and don't warn on them.
9968           if (!isa<FieldDecl>(ME->getMemberDecl()))
9969             return;
9970           Base = ME->getBase()->IgnoreParenImpCasts();
9971         }
9972         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
9973           HandleDeclRefExpr(DRE);
9974         return;
9975       }
9976 
9977       Visit(E);
9978     }
9979 
9980     // Reference types not handled in HandleValue are handled here since all
9981     // uses of references are bad, not just r-value uses.
9982     void VisitDeclRefExpr(DeclRefExpr *E) {
9983       if (isReferenceType)
9984         HandleDeclRefExpr(E);
9985     }
9986 
9987     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
9988       if (E->getCastKind() == CK_LValueToRValue) {
9989         HandleValue(E->getSubExpr());
9990         return;
9991       }
9992 
9993       Inherited::VisitImplicitCastExpr(E);
9994     }
9995 
9996     void VisitMemberExpr(MemberExpr *E) {
9997       if (isInitList) {
9998         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
9999           return;
10000       }
10001 
10002       // Don't warn on arrays since they can be treated as pointers.
10003       if (E->getType()->canDecayToPointerType()) return;
10004 
10005       // Warn when a non-static method call is followed by non-static member
10006       // field accesses, which is followed by a DeclRefExpr.
10007       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
10008       bool Warn = (MD && !MD->isStatic());
10009       Expr *Base = E->getBase()->IgnoreParenImpCasts();
10010       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
10011         if (!isa<FieldDecl>(ME->getMemberDecl()))
10012           Warn = false;
10013         Base = ME->getBase()->IgnoreParenImpCasts();
10014       }
10015 
10016       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
10017         if (Warn)
10018           HandleDeclRefExpr(DRE);
10019         return;
10020       }
10021 
10022       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
10023       // Visit that expression.
10024       Visit(Base);
10025     }
10026 
10027     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
10028       Expr *Callee = E->getCallee();
10029 
10030       if (isa<UnresolvedLookupExpr>(Callee))
10031         return Inherited::VisitCXXOperatorCallExpr(E);
10032 
10033       Visit(Callee);
10034       for (auto Arg: E->arguments())
10035         HandleValue(Arg->IgnoreParenImpCasts());
10036     }
10037 
10038     void VisitUnaryOperator(UnaryOperator *E) {
10039       // For POD record types, addresses of its own members are well-defined.
10040       if (E->getOpcode() == UO_AddrOf && isRecordType &&
10041           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
10042         if (!isPODType)
10043           HandleValue(E->getSubExpr());
10044         return;
10045       }
10046 
10047       if (E->isIncrementDecrementOp()) {
10048         HandleValue(E->getSubExpr());
10049         return;
10050       }
10051 
10052       Inherited::VisitUnaryOperator(E);
10053     }
10054 
10055     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
10056 
10057     void VisitCXXConstructExpr(CXXConstructExpr *E) {
10058       if (E->getConstructor()->isCopyConstructor()) {
10059         Expr *ArgExpr = E->getArg(0);
10060         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
10061           if (ILE->getNumInits() == 1)
10062             ArgExpr = ILE->getInit(0);
10063         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
10064           if (ICE->getCastKind() == CK_NoOp)
10065             ArgExpr = ICE->getSubExpr();
10066         HandleValue(ArgExpr);
10067         return;
10068       }
10069       Inherited::VisitCXXConstructExpr(E);
10070     }
10071 
10072     void VisitCallExpr(CallExpr *E) {
10073       // Treat std::move as a use.
10074       if (E->isCallToStdMove()) {
10075         HandleValue(E->getArg(0));
10076         return;
10077       }
10078 
10079       Inherited::VisitCallExpr(E);
10080     }
10081 
10082     void VisitBinaryOperator(BinaryOperator *E) {
10083       if (E->isCompoundAssignmentOp()) {
10084         HandleValue(E->getLHS());
10085         Visit(E->getRHS());
10086         return;
10087       }
10088 
10089       Inherited::VisitBinaryOperator(E);
10090     }
10091 
10092     // A custom visitor for BinaryConditionalOperator is needed because the
10093     // regular visitor would check the condition and true expression separately
10094     // but both point to the same place giving duplicate diagnostics.
10095     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
10096       Visit(E->getCond());
10097       Visit(E->getFalseExpr());
10098     }
10099 
10100     void HandleDeclRefExpr(DeclRefExpr *DRE) {
10101       Decl* ReferenceDecl = DRE->getDecl();
10102       if (OrigDecl != ReferenceDecl) return;
10103       unsigned diag;
10104       if (isReferenceType) {
10105         diag = diag::warn_uninit_self_reference_in_reference_init;
10106       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
10107         diag = diag::warn_static_self_reference_in_init;
10108       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
10109                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
10110                  DRE->getDecl()->getType()->isRecordType()) {
10111         diag = diag::warn_uninit_self_reference_in_init;
10112       } else {
10113         // Local variables will be handled by the CFG analysis.
10114         return;
10115       }
10116 
10117       S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
10118                             S.PDiag(diag)
10119                               << DRE->getNameInfo().getName()
10120                               << OrigDecl->getLocation()
10121                               << DRE->getSourceRange());
10122     }
10123   };
10124 
10125   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
10126   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
10127                                  bool DirectInit) {
10128     // Parameters arguments are occassionially constructed with itself,
10129     // for instance, in recursive functions.  Skip them.
10130     if (isa<ParmVarDecl>(OrigDecl))
10131       return;
10132 
10133     E = E->IgnoreParens();
10134 
10135     // Skip checking T a = a where T is not a record or reference type.
10136     // Doing so is a way to silence uninitialized warnings.
10137     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
10138       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
10139         if (ICE->getCastKind() == CK_LValueToRValue)
10140           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
10141             if (DRE->getDecl() == OrigDecl)
10142               return;
10143 
10144     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
10145   }
10146 } // end anonymous namespace
10147 
10148 namespace {
10149   // Simple wrapper to add the name of a variable or (if no variable is
10150   // available) a DeclarationName into a diagnostic.
10151   struct VarDeclOrName {
10152     VarDecl *VDecl;
10153     DeclarationName Name;
10154 
10155     friend const Sema::SemaDiagnosticBuilder &
10156     operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) {
10157       return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name;
10158     }
10159   };
10160 } // end anonymous namespace
10161 
10162 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
10163                                             DeclarationName Name, QualType Type,
10164                                             TypeSourceInfo *TSI,
10165                                             SourceRange Range, bool DirectInit,
10166                                             Expr *Init) {
10167   bool IsInitCapture = !VDecl;
10168   assert((!VDecl || !VDecl->isInitCapture()) &&
10169          "init captures are expected to be deduced prior to initialization");
10170 
10171   VarDeclOrName VN{VDecl, Name};
10172 
10173   DeducedType *Deduced = Type->getContainedDeducedType();
10174   assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type");
10175 
10176   // C++11 [dcl.spec.auto]p3
10177   if (!Init) {
10178     assert(VDecl && "no init for init capture deduction?");
10179     Diag(VDecl->getLocation(), diag::err_auto_var_requires_init)
10180       << VDecl->getDeclName() << Type;
10181     return QualType();
10182   }
10183 
10184   ArrayRef<Expr*> DeduceInits = Init;
10185   if (DirectInit) {
10186     if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init))
10187       DeduceInits = PL->exprs();
10188   }
10189 
10190   if (isa<DeducedTemplateSpecializationType>(Deduced)) {
10191     assert(VDecl && "non-auto type for init capture deduction?");
10192     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10193     InitializationKind Kind = InitializationKind::CreateForInit(
10194         VDecl->getLocation(), DirectInit, Init);
10195     // FIXME: Initialization should not be taking a mutable list of inits.
10196     SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end());
10197     return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind,
10198                                                        InitsCopy);
10199   }
10200 
10201   if (DirectInit) {
10202     if (auto *IL = dyn_cast<InitListExpr>(Init))
10203       DeduceInits = IL->inits();
10204   }
10205 
10206   // Deduction only works if we have exactly one source expression.
10207   if (DeduceInits.empty()) {
10208     // It isn't possible to write this directly, but it is possible to
10209     // end up in this situation with "auto x(some_pack...);"
10210     Diag(Init->getLocStart(), IsInitCapture
10211                                   ? diag::err_init_capture_no_expression
10212                                   : diag::err_auto_var_init_no_expression)
10213         << VN << Type << Range;
10214     return QualType();
10215   }
10216 
10217   if (DeduceInits.size() > 1) {
10218     Diag(DeduceInits[1]->getLocStart(),
10219          IsInitCapture ? diag::err_init_capture_multiple_expressions
10220                        : diag::err_auto_var_init_multiple_expressions)
10221         << VN << Type << Range;
10222     return QualType();
10223   }
10224 
10225   Expr *DeduceInit = DeduceInits[0];
10226   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
10227     Diag(Init->getLocStart(), IsInitCapture
10228                                   ? diag::err_init_capture_paren_braces
10229                                   : diag::err_auto_var_init_paren_braces)
10230         << isa<InitListExpr>(Init) << VN << Type << Range;
10231     return QualType();
10232   }
10233 
10234   // Expressions default to 'id' when we're in a debugger.
10235   bool DefaultedAnyToId = false;
10236   if (getLangOpts().DebuggerCastResultToId &&
10237       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
10238     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10239     if (Result.isInvalid()) {
10240       return QualType();
10241     }
10242     Init = Result.get();
10243     DefaultedAnyToId = true;
10244   }
10245 
10246   // C++ [dcl.decomp]p1:
10247   //   If the assignment-expression [...] has array type A and no ref-qualifier
10248   //   is present, e has type cv A
10249   if (VDecl && isa<DecompositionDecl>(VDecl) &&
10250       Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) &&
10251       DeduceInit->getType()->isConstantArrayType())
10252     return Context.getQualifiedType(DeduceInit->getType(),
10253                                     Type.getQualifiers());
10254 
10255   QualType DeducedType;
10256   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
10257     if (!IsInitCapture)
10258       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
10259     else if (isa<InitListExpr>(Init))
10260       Diag(Range.getBegin(),
10261            diag::err_init_capture_deduction_failure_from_init_list)
10262           << VN
10263           << (DeduceInit->getType().isNull() ? TSI->getType()
10264                                              : DeduceInit->getType())
10265           << DeduceInit->getSourceRange();
10266     else
10267       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
10268           << VN << TSI->getType()
10269           << (DeduceInit->getType().isNull() ? TSI->getType()
10270                                              : DeduceInit->getType())
10271           << DeduceInit->getSourceRange();
10272   }
10273 
10274   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
10275   // 'id' instead of a specific object type prevents most of our usual
10276   // checks.
10277   // We only want to warn outside of template instantiations, though:
10278   // inside a template, the 'id' could have come from a parameter.
10279   if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture &&
10280       !DeducedType.isNull() && DeducedType->isObjCIdType()) {
10281     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
10282     Diag(Loc, diag::warn_auto_var_is_id) << VN << Range;
10283   }
10284 
10285   return DeducedType;
10286 }
10287 
10288 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit,
10289                                          Expr *Init) {
10290   QualType DeducedType = deduceVarTypeFromInitializer(
10291       VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(),
10292       VDecl->getSourceRange(), DirectInit, Init);
10293   if (DeducedType.isNull()) {
10294     VDecl->setInvalidDecl();
10295     return true;
10296   }
10297 
10298   VDecl->setType(DeducedType);
10299   assert(VDecl->isLinkageValid());
10300 
10301   // In ARC, infer lifetime.
10302   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
10303     VDecl->setInvalidDecl();
10304 
10305   // If this is a redeclaration, check that the type we just deduced matches
10306   // the previously declared type.
10307   if (VarDecl *Old = VDecl->getPreviousDecl()) {
10308     // We never need to merge the type, because we cannot form an incomplete
10309     // array of auto, nor deduce such a type.
10310     MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
10311   }
10312 
10313   // Check the deduced type is valid for a variable declaration.
10314   CheckVariableDeclarationType(VDecl);
10315   return VDecl->isInvalidDecl();
10316 }
10317 
10318 /// AddInitializerToDecl - Adds the initializer Init to the
10319 /// declaration dcl. If DirectInit is true, this is C++ direct
10320 /// initialization rather than copy initialization.
10321 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
10322   // If there is no declaration, there was an error parsing it.  Just ignore
10323   // the initializer.
10324   if (!RealDecl || RealDecl->isInvalidDecl()) {
10325     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
10326     return;
10327   }
10328 
10329   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
10330     // Pure-specifiers are handled in ActOnPureSpecifier.
10331     Diag(Method->getLocation(), diag::err_member_function_initialization)
10332       << Method->getDeclName() << Init->getSourceRange();
10333     Method->setInvalidDecl();
10334     return;
10335   }
10336 
10337   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
10338   if (!VDecl) {
10339     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
10340     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
10341     RealDecl->setInvalidDecl();
10342     return;
10343   }
10344 
10345   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
10346   if (VDecl->getType()->isUndeducedType()) {
10347     // Attempt typo correction early so that the type of the init expression can
10348     // be deduced based on the chosen correction if the original init contains a
10349     // TypoExpr.
10350     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
10351     if (!Res.isUsable()) {
10352       RealDecl->setInvalidDecl();
10353       return;
10354     }
10355     Init = Res.get();
10356 
10357     if (DeduceVariableDeclarationType(VDecl, DirectInit, Init))
10358       return;
10359   }
10360 
10361   // dllimport cannot be used on variable definitions.
10362   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
10363     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
10364     VDecl->setInvalidDecl();
10365     return;
10366   }
10367 
10368   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
10369     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
10370     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
10371     VDecl->setInvalidDecl();
10372     return;
10373   }
10374 
10375   if (!VDecl->getType()->isDependentType()) {
10376     // A definition must end up with a complete type, which means it must be
10377     // complete with the restriction that an array type might be completed by
10378     // the initializer; note that later code assumes this restriction.
10379     QualType BaseDeclType = VDecl->getType();
10380     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
10381       BaseDeclType = Array->getElementType();
10382     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
10383                             diag::err_typecheck_decl_incomplete_type)) {
10384       RealDecl->setInvalidDecl();
10385       return;
10386     }
10387 
10388     // The variable can not have an abstract class type.
10389     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
10390                                diag::err_abstract_type_in_decl,
10391                                AbstractVariableType))
10392       VDecl->setInvalidDecl();
10393   }
10394 
10395   // If adding the initializer will turn this declaration into a definition,
10396   // and we already have a definition for this variable, diagnose or otherwise
10397   // handle the situation.
10398   VarDecl *Def;
10399   if ((Def = VDecl->getDefinition()) && Def != VDecl &&
10400       (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) &&
10401       !VDecl->isThisDeclarationADemotedDefinition() &&
10402       checkVarDeclRedefinition(Def, VDecl))
10403     return;
10404 
10405   if (getLangOpts().CPlusPlus) {
10406     // C++ [class.static.data]p4
10407     //   If a static data member is of const integral or const
10408     //   enumeration type, its declaration in the class definition can
10409     //   specify a constant-initializer which shall be an integral
10410     //   constant expression (5.19). In that case, the member can appear
10411     //   in integral constant expressions. The member shall still be
10412     //   defined in a namespace scope if it is used in the program and the
10413     //   namespace scope definition shall not contain an initializer.
10414     //
10415     // We already performed a redefinition check above, but for static
10416     // data members we also need to check whether there was an in-class
10417     // declaration with an initializer.
10418     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
10419       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
10420           << VDecl->getDeclName();
10421       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
10422            diag::note_previous_initializer)
10423           << 0;
10424       return;
10425     }
10426 
10427     if (VDecl->hasLocalStorage())
10428       getCurFunction()->setHasBranchProtectedScope();
10429 
10430     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
10431       VDecl->setInvalidDecl();
10432       return;
10433     }
10434   }
10435 
10436   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
10437   // a kernel function cannot be initialized."
10438   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
10439     Diag(VDecl->getLocation(), diag::err_local_cant_init);
10440     VDecl->setInvalidDecl();
10441     return;
10442   }
10443 
10444   // Get the decls type and save a reference for later, since
10445   // CheckInitializerTypes may change it.
10446   QualType DclT = VDecl->getType(), SavT = DclT;
10447 
10448   // Expressions default to 'id' when we're in a debugger
10449   // and we are assigning it to a variable of Objective-C pointer type.
10450   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
10451       Init->getType() == Context.UnknownAnyTy) {
10452     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10453     if (Result.isInvalid()) {
10454       VDecl->setInvalidDecl();
10455       return;
10456     }
10457     Init = Result.get();
10458   }
10459 
10460   // Perform the initialization.
10461   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
10462   if (!VDecl->isInvalidDecl()) {
10463     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10464     InitializationKind Kind = InitializationKind::CreateForInit(
10465         VDecl->getLocation(), DirectInit, Init);
10466 
10467     MultiExprArg Args = Init;
10468     if (CXXDirectInit)
10469       Args = MultiExprArg(CXXDirectInit->getExprs(),
10470                           CXXDirectInit->getNumExprs());
10471 
10472     // Try to correct any TypoExprs in the initialization arguments.
10473     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
10474       ExprResult Res = CorrectDelayedTyposInExpr(
10475           Args[Idx], VDecl, [this, Entity, Kind](Expr *E) {
10476             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
10477             return Init.Failed() ? ExprError() : E;
10478           });
10479       if (Res.isInvalid()) {
10480         VDecl->setInvalidDecl();
10481       } else if (Res.get() != Args[Idx]) {
10482         Args[Idx] = Res.get();
10483       }
10484     }
10485     if (VDecl->isInvalidDecl())
10486       return;
10487 
10488     InitializationSequence InitSeq(*this, Entity, Kind, Args,
10489                                    /*TopLevelOfInitList=*/false,
10490                                    /*TreatUnavailableAsInvalid=*/false);
10491     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
10492     if (Result.isInvalid()) {
10493       VDecl->setInvalidDecl();
10494       return;
10495     }
10496 
10497     Init = Result.getAs<Expr>();
10498   }
10499 
10500   // Check for self-references within variable initializers.
10501   // Variables declared within a function/method body (except for references)
10502   // are handled by a dataflow analysis.
10503   if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
10504       VDecl->getType()->isReferenceType()) {
10505     CheckSelfReference(*this, RealDecl, Init, DirectInit);
10506   }
10507 
10508   // If the type changed, it means we had an incomplete type that was
10509   // completed by the initializer. For example:
10510   //   int ary[] = { 1, 3, 5 };
10511   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
10512   if (!VDecl->isInvalidDecl() && (DclT != SavT))
10513     VDecl->setType(DclT);
10514 
10515   if (!VDecl->isInvalidDecl()) {
10516     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
10517 
10518     if (VDecl->hasAttr<BlocksAttr>())
10519       checkRetainCycles(VDecl, Init);
10520 
10521     // It is safe to assign a weak reference into a strong variable.
10522     // Although this code can still have problems:
10523     //   id x = self.weakProp;
10524     //   id y = self.weakProp;
10525     // we do not warn to warn spuriously when 'x' and 'y' are on separate
10526     // paths through the function. This should be revisited if
10527     // -Wrepeated-use-of-weak is made flow-sensitive.
10528     if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
10529          VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) &&
10530         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
10531                          Init->getLocStart()))
10532       getCurFunction()->markSafeWeakUse(Init);
10533   }
10534 
10535   // The initialization is usually a full-expression.
10536   //
10537   // FIXME: If this is a braced initialization of an aggregate, it is not
10538   // an expression, and each individual field initializer is a separate
10539   // full-expression. For instance, in:
10540   //
10541   //   struct Temp { ~Temp(); };
10542   //   struct S { S(Temp); };
10543   //   struct T { S a, b; } t = { Temp(), Temp() }
10544   //
10545   // we should destroy the first Temp before constructing the second.
10546   ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
10547                                           false,
10548                                           VDecl->isConstexpr());
10549   if (Result.isInvalid()) {
10550     VDecl->setInvalidDecl();
10551     return;
10552   }
10553   Init = Result.get();
10554 
10555   // Attach the initializer to the decl.
10556   VDecl->setInit(Init);
10557 
10558   if (VDecl->isLocalVarDecl()) {
10559     // Don't check the initializer if the declaration is malformed.
10560     if (VDecl->isInvalidDecl()) {
10561       // do nothing
10562 
10563     // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized.
10564     // This is true even in OpenCL C++.
10565     } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) {
10566       CheckForConstantInitializer(Init, DclT);
10567 
10568     // Otherwise, C++ does not restrict the initializer.
10569     } else if (getLangOpts().CPlusPlus) {
10570       // do nothing
10571 
10572     // C99 6.7.8p4: All the expressions in an initializer for an object that has
10573     // static storage duration shall be constant expressions or string literals.
10574     } else if (VDecl->getStorageClass() == SC_Static) {
10575       CheckForConstantInitializer(Init, DclT);
10576 
10577     // C89 is stricter than C99 for aggregate initializers.
10578     // C89 6.5.7p3: All the expressions [...] in an initializer list
10579     // for an object that has aggregate or union type shall be
10580     // constant expressions.
10581     } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
10582                isa<InitListExpr>(Init)) {
10583       const Expr *Culprit;
10584       if (!Init->isConstantInitializer(Context, false, &Culprit)) {
10585         Diag(Culprit->getExprLoc(),
10586              diag::ext_aggregate_init_not_constant)
10587           << Culprit->getSourceRange();
10588       }
10589     }
10590   } else if (VDecl->isStaticDataMember() && !VDecl->isInline() &&
10591              VDecl->getLexicalDeclContext()->isRecord()) {
10592     // This is an in-class initialization for a static data member, e.g.,
10593     //
10594     // struct S {
10595     //   static const int value = 17;
10596     // };
10597 
10598     // C++ [class.mem]p4:
10599     //   A member-declarator can contain a constant-initializer only
10600     //   if it declares a static member (9.4) of const integral or
10601     //   const enumeration type, see 9.4.2.
10602     //
10603     // C++11 [class.static.data]p3:
10604     //   If a non-volatile non-inline const static data member is of integral
10605     //   or enumeration type, its declaration in the class definition can
10606     //   specify a brace-or-equal-initializer in which every initializer-clause
10607     //   that is an assignment-expression is a constant expression. A static
10608     //   data member of literal type can be declared in the class definition
10609     //   with the constexpr specifier; if so, its declaration shall specify a
10610     //   brace-or-equal-initializer in which every initializer-clause that is
10611     //   an assignment-expression is a constant expression.
10612 
10613     // Do nothing on dependent types.
10614     if (DclT->isDependentType()) {
10615 
10616     // Allow any 'static constexpr' members, whether or not they are of literal
10617     // type. We separately check that every constexpr variable is of literal
10618     // type.
10619     } else if (VDecl->isConstexpr()) {
10620 
10621     // Require constness.
10622     } else if (!DclT.isConstQualified()) {
10623       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
10624         << Init->getSourceRange();
10625       VDecl->setInvalidDecl();
10626 
10627     // We allow integer constant expressions in all cases.
10628     } else if (DclT->isIntegralOrEnumerationType()) {
10629       // Check whether the expression is a constant expression.
10630       SourceLocation Loc;
10631       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
10632         // In C++11, a non-constexpr const static data member with an
10633         // in-class initializer cannot be volatile.
10634         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
10635       else if (Init->isValueDependent())
10636         ; // Nothing to check.
10637       else if (Init->isIntegerConstantExpr(Context, &Loc))
10638         ; // Ok, it's an ICE!
10639       else if (Init->isEvaluatable(Context)) {
10640         // If we can constant fold the initializer through heroics, accept it,
10641         // but report this as a use of an extension for -pedantic.
10642         Diag(Loc, diag::ext_in_class_initializer_non_constant)
10643           << Init->getSourceRange();
10644       } else {
10645         // Otherwise, this is some crazy unknown case.  Report the issue at the
10646         // location provided by the isIntegerConstantExpr failed check.
10647         Diag(Loc, diag::err_in_class_initializer_non_constant)
10648           << Init->getSourceRange();
10649         VDecl->setInvalidDecl();
10650       }
10651 
10652     // We allow foldable floating-point constants as an extension.
10653     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
10654       // In C++98, this is a GNU extension. In C++11, it is not, but we support
10655       // it anyway and provide a fixit to add the 'constexpr'.
10656       if (getLangOpts().CPlusPlus11) {
10657         Diag(VDecl->getLocation(),
10658              diag::ext_in_class_initializer_float_type_cxx11)
10659             << DclT << Init->getSourceRange();
10660         Diag(VDecl->getLocStart(),
10661              diag::note_in_class_initializer_float_type_cxx11)
10662             << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10663       } else {
10664         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
10665           << DclT << Init->getSourceRange();
10666 
10667         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
10668           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
10669             << Init->getSourceRange();
10670           VDecl->setInvalidDecl();
10671         }
10672       }
10673 
10674     // Suggest adding 'constexpr' in C++11 for literal types.
10675     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
10676       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
10677         << DclT << Init->getSourceRange()
10678         << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10679       VDecl->setConstexpr(true);
10680 
10681     } else {
10682       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
10683         << DclT << Init->getSourceRange();
10684       VDecl->setInvalidDecl();
10685     }
10686   } else if (VDecl->isFileVarDecl()) {
10687     // In C, extern is typically used to avoid tentative definitions when
10688     // declaring variables in headers, but adding an intializer makes it a
10689     // defintion. This is somewhat confusing, so GCC and Clang both warn on it.
10690     // In C++, extern is often used to give implictly static const variables
10691     // external linkage, so don't warn in that case. If selectany is present,
10692     // this might be header code intended for C and C++ inclusion, so apply the
10693     // C++ rules.
10694     if (VDecl->getStorageClass() == SC_Extern &&
10695         ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) ||
10696          !Context.getBaseElementType(VDecl->getType()).isConstQualified()) &&
10697         !(getLangOpts().CPlusPlus && VDecl->isExternC()) &&
10698         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
10699       Diag(VDecl->getLocation(), diag::warn_extern_init);
10700 
10701     // C99 6.7.8p4. All file scoped initializers need to be constant.
10702     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
10703       CheckForConstantInitializer(Init, DclT);
10704   }
10705 
10706   // We will represent direct-initialization similarly to copy-initialization:
10707   //    int x(1);  -as-> int x = 1;
10708   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
10709   //
10710   // Clients that want to distinguish between the two forms, can check for
10711   // direct initializer using VarDecl::getInitStyle().
10712   // A major benefit is that clients that don't particularly care about which
10713   // exactly form was it (like the CodeGen) can handle both cases without
10714   // special case code.
10715 
10716   // C++ 8.5p11:
10717   // The form of initialization (using parentheses or '=') is generally
10718   // insignificant, but does matter when the entity being initialized has a
10719   // class type.
10720   if (CXXDirectInit) {
10721     assert(DirectInit && "Call-style initializer must be direct init.");
10722     VDecl->setInitStyle(VarDecl::CallInit);
10723   } else if (DirectInit) {
10724     // This must be list-initialization. No other way is direct-initialization.
10725     VDecl->setInitStyle(VarDecl::ListInit);
10726   }
10727 
10728   CheckCompleteVariableDeclaration(VDecl);
10729 }
10730 
10731 /// ActOnInitializerError - Given that there was an error parsing an
10732 /// initializer for the given declaration, try to return to some form
10733 /// of sanity.
10734 void Sema::ActOnInitializerError(Decl *D) {
10735   // Our main concern here is re-establishing invariants like "a
10736   // variable's type is either dependent or complete".
10737   if (!D || D->isInvalidDecl()) return;
10738 
10739   VarDecl *VD = dyn_cast<VarDecl>(D);
10740   if (!VD) return;
10741 
10742   // Bindings are not usable if we can't make sense of the initializer.
10743   if (auto *DD = dyn_cast<DecompositionDecl>(D))
10744     for (auto *BD : DD->bindings())
10745       BD->setInvalidDecl();
10746 
10747   // Auto types are meaningless if we can't make sense of the initializer.
10748   if (ParsingInitForAutoVars.count(D)) {
10749     D->setInvalidDecl();
10750     return;
10751   }
10752 
10753   QualType Ty = VD->getType();
10754   if (Ty->isDependentType()) return;
10755 
10756   // Require a complete type.
10757   if (RequireCompleteType(VD->getLocation(),
10758                           Context.getBaseElementType(Ty),
10759                           diag::err_typecheck_decl_incomplete_type)) {
10760     VD->setInvalidDecl();
10761     return;
10762   }
10763 
10764   // Require a non-abstract type.
10765   if (RequireNonAbstractType(VD->getLocation(), Ty,
10766                              diag::err_abstract_type_in_decl,
10767                              AbstractVariableType)) {
10768     VD->setInvalidDecl();
10769     return;
10770   }
10771 
10772   // Don't bother complaining about constructors or destructors,
10773   // though.
10774 }
10775 
10776 void Sema::ActOnUninitializedDecl(Decl *RealDecl) {
10777   // If there is no declaration, there was an error parsing it. Just ignore it.
10778   if (!RealDecl)
10779     return;
10780 
10781   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
10782     QualType Type = Var->getType();
10783 
10784     // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory.
10785     if (isa<DecompositionDecl>(RealDecl)) {
10786       Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var;
10787       Var->setInvalidDecl();
10788       return;
10789     }
10790 
10791     if (Type->isUndeducedType() &&
10792         DeduceVariableDeclarationType(Var, false, nullptr))
10793       return;
10794 
10795     // C++11 [class.static.data]p3: A static data member can be declared with
10796     // the constexpr specifier; if so, its declaration shall specify
10797     // a brace-or-equal-initializer.
10798     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
10799     // the definition of a variable [...] or the declaration of a static data
10800     // member.
10801     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() &&
10802         !Var->isThisDeclarationADemotedDefinition()) {
10803       if (Var->isStaticDataMember()) {
10804         // C++1z removes the relevant rule; the in-class declaration is always
10805         // a definition there.
10806         if (!getLangOpts().CPlusPlus1z) {
10807           Diag(Var->getLocation(),
10808                diag::err_constexpr_static_mem_var_requires_init)
10809             << Var->getDeclName();
10810           Var->setInvalidDecl();
10811           return;
10812         }
10813       } else {
10814         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
10815         Var->setInvalidDecl();
10816         return;
10817       }
10818     }
10819 
10820     // C++ Concepts TS [dcl.spec.concept]p1: [...]  A variable template
10821     // definition having the concept specifier is called a variable concept. A
10822     // concept definition refers to [...] a variable concept and its initializer.
10823     if (VarTemplateDecl *VTD = Var->getDescribedVarTemplate()) {
10824       if (VTD->isConcept()) {
10825         Diag(Var->getLocation(), diag::err_var_concept_not_initialized);
10826         Var->setInvalidDecl();
10827         return;
10828       }
10829     }
10830 
10831     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
10832     // be initialized.
10833     if (!Var->isInvalidDecl() &&
10834         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
10835         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
10836       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
10837       Var->setInvalidDecl();
10838       return;
10839     }
10840 
10841     switch (Var->isThisDeclarationADefinition()) {
10842     case VarDecl::Definition:
10843       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
10844         break;
10845 
10846       // We have an out-of-line definition of a static data member
10847       // that has an in-class initializer, so we type-check this like
10848       // a declaration.
10849       //
10850       // Fall through
10851 
10852     case VarDecl::DeclarationOnly:
10853       // It's only a declaration.
10854 
10855       // Block scope. C99 6.7p7: If an identifier for an object is
10856       // declared with no linkage (C99 6.2.2p6), the type for the
10857       // object shall be complete.
10858       if (!Type->isDependentType() && Var->isLocalVarDecl() &&
10859           !Var->hasLinkage() && !Var->isInvalidDecl() &&
10860           RequireCompleteType(Var->getLocation(), Type,
10861                               diag::err_typecheck_decl_incomplete_type))
10862         Var->setInvalidDecl();
10863 
10864       // Make sure that the type is not abstract.
10865       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
10866           RequireNonAbstractType(Var->getLocation(), Type,
10867                                  diag::err_abstract_type_in_decl,
10868                                  AbstractVariableType))
10869         Var->setInvalidDecl();
10870       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
10871           Var->getStorageClass() == SC_PrivateExtern) {
10872         Diag(Var->getLocation(), diag::warn_private_extern);
10873         Diag(Var->getLocation(), diag::note_private_extern);
10874       }
10875 
10876       return;
10877 
10878     case VarDecl::TentativeDefinition:
10879       // File scope. C99 6.9.2p2: A declaration of an identifier for an
10880       // object that has file scope without an initializer, and without a
10881       // storage-class specifier or with the storage-class specifier "static",
10882       // constitutes a tentative definition. Note: A tentative definition with
10883       // external linkage is valid (C99 6.2.2p5).
10884       if (!Var->isInvalidDecl()) {
10885         if (const IncompleteArrayType *ArrayT
10886                                     = Context.getAsIncompleteArrayType(Type)) {
10887           if (RequireCompleteType(Var->getLocation(),
10888                                   ArrayT->getElementType(),
10889                                   diag::err_illegal_decl_array_incomplete_type))
10890             Var->setInvalidDecl();
10891         } else if (Var->getStorageClass() == SC_Static) {
10892           // C99 6.9.2p3: If the declaration of an identifier for an object is
10893           // a tentative definition and has internal linkage (C99 6.2.2p3), the
10894           // declared type shall not be an incomplete type.
10895           // NOTE: code such as the following
10896           //     static struct s;
10897           //     struct s { int a; };
10898           // is accepted by gcc. Hence here we issue a warning instead of
10899           // an error and we do not invalidate the static declaration.
10900           // NOTE: to avoid multiple warnings, only check the first declaration.
10901           if (Var->isFirstDecl())
10902             RequireCompleteType(Var->getLocation(), Type,
10903                                 diag::ext_typecheck_decl_incomplete_type);
10904         }
10905       }
10906 
10907       // Record the tentative definition; we're done.
10908       if (!Var->isInvalidDecl())
10909         TentativeDefinitions.push_back(Var);
10910       return;
10911     }
10912 
10913     // Provide a specific diagnostic for uninitialized variable
10914     // definitions with incomplete array type.
10915     if (Type->isIncompleteArrayType()) {
10916       Diag(Var->getLocation(),
10917            diag::err_typecheck_incomplete_array_needs_initializer);
10918       Var->setInvalidDecl();
10919       return;
10920     }
10921 
10922     // Provide a specific diagnostic for uninitialized variable
10923     // definitions with reference type.
10924     if (Type->isReferenceType()) {
10925       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
10926         << Var->getDeclName()
10927         << SourceRange(Var->getLocation(), Var->getLocation());
10928       Var->setInvalidDecl();
10929       return;
10930     }
10931 
10932     // Do not attempt to type-check the default initializer for a
10933     // variable with dependent type.
10934     if (Type->isDependentType())
10935       return;
10936 
10937     if (Var->isInvalidDecl())
10938       return;
10939 
10940     if (!Var->hasAttr<AliasAttr>()) {
10941       if (RequireCompleteType(Var->getLocation(),
10942                               Context.getBaseElementType(Type),
10943                               diag::err_typecheck_decl_incomplete_type)) {
10944         Var->setInvalidDecl();
10945         return;
10946       }
10947     } else {
10948       return;
10949     }
10950 
10951     // The variable can not have an abstract class type.
10952     if (RequireNonAbstractType(Var->getLocation(), Type,
10953                                diag::err_abstract_type_in_decl,
10954                                AbstractVariableType)) {
10955       Var->setInvalidDecl();
10956       return;
10957     }
10958 
10959     // Check for jumps past the implicit initializer.  C++0x
10960     // clarifies that this applies to a "variable with automatic
10961     // storage duration", not a "local variable".
10962     // C++11 [stmt.dcl]p3
10963     //   A program that jumps from a point where a variable with automatic
10964     //   storage duration is not in scope to a point where it is in scope is
10965     //   ill-formed unless the variable has scalar type, class type with a
10966     //   trivial default constructor and a trivial destructor, a cv-qualified
10967     //   version of one of these types, or an array of one of the preceding
10968     //   types and is declared without an initializer.
10969     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
10970       if (const RecordType *Record
10971             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
10972         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
10973         // Mark the function for further checking even if the looser rules of
10974         // C++11 do not require such checks, so that we can diagnose
10975         // incompatibilities with C++98.
10976         if (!CXXRecord->isPOD())
10977           getCurFunction()->setHasBranchProtectedScope();
10978       }
10979     }
10980 
10981     // C++03 [dcl.init]p9:
10982     //   If no initializer is specified for an object, and the
10983     //   object is of (possibly cv-qualified) non-POD class type (or
10984     //   array thereof), the object shall be default-initialized; if
10985     //   the object is of const-qualified type, the underlying class
10986     //   type shall have a user-declared default
10987     //   constructor. Otherwise, if no initializer is specified for
10988     //   a non- static object, the object and its subobjects, if
10989     //   any, have an indeterminate initial value); if the object
10990     //   or any of its subobjects are of const-qualified type, the
10991     //   program is ill-formed.
10992     // C++0x [dcl.init]p11:
10993     //   If no initializer is specified for an object, the object is
10994     //   default-initialized; [...].
10995     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
10996     InitializationKind Kind
10997       = InitializationKind::CreateDefault(Var->getLocation());
10998 
10999     InitializationSequence InitSeq(*this, Entity, Kind, None);
11000     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
11001     if (Init.isInvalid())
11002       Var->setInvalidDecl();
11003     else if (Init.get()) {
11004       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
11005       // This is important for template substitution.
11006       Var->setInitStyle(VarDecl::CallInit);
11007     }
11008 
11009     CheckCompleteVariableDeclaration(Var);
11010   }
11011 }
11012 
11013 void Sema::ActOnCXXForRangeDecl(Decl *D) {
11014   // If there is no declaration, there was an error parsing it. Ignore it.
11015   if (!D)
11016     return;
11017 
11018   VarDecl *VD = dyn_cast<VarDecl>(D);
11019   if (!VD) {
11020     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
11021     D->setInvalidDecl();
11022     return;
11023   }
11024 
11025   VD->setCXXForRangeDecl(true);
11026 
11027   // for-range-declaration cannot be given a storage class specifier.
11028   int Error = -1;
11029   switch (VD->getStorageClass()) {
11030   case SC_None:
11031     break;
11032   case SC_Extern:
11033     Error = 0;
11034     break;
11035   case SC_Static:
11036     Error = 1;
11037     break;
11038   case SC_PrivateExtern:
11039     Error = 2;
11040     break;
11041   case SC_Auto:
11042     Error = 3;
11043     break;
11044   case SC_Register:
11045     Error = 4;
11046     break;
11047   }
11048   if (Error != -1) {
11049     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
11050       << VD->getDeclName() << Error;
11051     D->setInvalidDecl();
11052   }
11053 }
11054 
11055 StmtResult
11056 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
11057                                  IdentifierInfo *Ident,
11058                                  ParsedAttributes &Attrs,
11059                                  SourceLocation AttrEnd) {
11060   // C++1y [stmt.iter]p1:
11061   //   A range-based for statement of the form
11062   //      for ( for-range-identifier : for-range-initializer ) statement
11063   //   is equivalent to
11064   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
11065   DeclSpec DS(Attrs.getPool().getFactory());
11066 
11067   const char *PrevSpec;
11068   unsigned DiagID;
11069   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
11070                      getPrintingPolicy());
11071 
11072   Declarator D(DS, Declarator::ForContext);
11073   D.SetIdentifier(Ident, IdentLoc);
11074   D.takeAttributes(Attrs, AttrEnd);
11075 
11076   ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory());
11077   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
11078                 EmptyAttrs, IdentLoc);
11079   Decl *Var = ActOnDeclarator(S, D);
11080   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
11081   FinalizeDeclaration(Var);
11082   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
11083                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
11084 }
11085 
11086 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
11087   if (var->isInvalidDecl()) return;
11088 
11089   if (getLangOpts().OpenCL) {
11090     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
11091     // initialiser
11092     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
11093         !var->hasInit()) {
11094       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
11095           << 1 /*Init*/;
11096       var->setInvalidDecl();
11097       return;
11098     }
11099   }
11100 
11101   // In Objective-C, don't allow jumps past the implicit initialization of a
11102   // local retaining variable.
11103   if (getLangOpts().ObjC1 &&
11104       var->hasLocalStorage()) {
11105     switch (var->getType().getObjCLifetime()) {
11106     case Qualifiers::OCL_None:
11107     case Qualifiers::OCL_ExplicitNone:
11108     case Qualifiers::OCL_Autoreleasing:
11109       break;
11110 
11111     case Qualifiers::OCL_Weak:
11112     case Qualifiers::OCL_Strong:
11113       getCurFunction()->setHasBranchProtectedScope();
11114       break;
11115     }
11116   }
11117 
11118   // Warn about externally-visible variables being defined without a
11119   // prior declaration.  We only want to do this for global
11120   // declarations, but we also specifically need to avoid doing it for
11121   // class members because the linkage of an anonymous class can
11122   // change if it's later given a typedef name.
11123   if (var->isThisDeclarationADefinition() &&
11124       var->getDeclContext()->getRedeclContext()->isFileContext() &&
11125       var->isExternallyVisible() && var->hasLinkage() &&
11126       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
11127                                   var->getLocation())) {
11128     // Find a previous declaration that's not a definition.
11129     VarDecl *prev = var->getPreviousDecl();
11130     while (prev && prev->isThisDeclarationADefinition())
11131       prev = prev->getPreviousDecl();
11132 
11133     if (!prev)
11134       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
11135   }
11136 
11137   // Cache the result of checking for constant initialization.
11138   Optional<bool> CacheHasConstInit;
11139   const Expr *CacheCulprit;
11140   auto checkConstInit = [&]() mutable {
11141     if (!CacheHasConstInit)
11142       CacheHasConstInit = var->getInit()->isConstantInitializer(
11143             Context, var->getType()->isReferenceType(), &CacheCulprit);
11144     return *CacheHasConstInit;
11145   };
11146 
11147   if (var->getTLSKind() == VarDecl::TLS_Static) {
11148     if (var->getType().isDestructedType()) {
11149       // GNU C++98 edits for __thread, [basic.start.term]p3:
11150       //   The type of an object with thread storage duration shall not
11151       //   have a non-trivial destructor.
11152       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
11153       if (getLangOpts().CPlusPlus11)
11154         Diag(var->getLocation(), diag::note_use_thread_local);
11155     } else if (getLangOpts().CPlusPlus && var->hasInit()) {
11156       if (!checkConstInit()) {
11157         // GNU C++98 edits for __thread, [basic.start.init]p4:
11158         //   An object of thread storage duration shall not require dynamic
11159         //   initialization.
11160         // FIXME: Need strict checking here.
11161         Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init)
11162           << CacheCulprit->getSourceRange();
11163         if (getLangOpts().CPlusPlus11)
11164           Diag(var->getLocation(), diag::note_use_thread_local);
11165       }
11166     }
11167   }
11168 
11169   // Apply section attributes and pragmas to global variables.
11170   bool GlobalStorage = var->hasGlobalStorage();
11171   if (GlobalStorage && var->isThisDeclarationADefinition() &&
11172       !inTemplateInstantiation()) {
11173     PragmaStack<StringLiteral *> *Stack = nullptr;
11174     int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read;
11175     if (var->getType().isConstQualified())
11176       Stack = &ConstSegStack;
11177     else if (!var->getInit()) {
11178       Stack = &BSSSegStack;
11179       SectionFlags |= ASTContext::PSF_Write;
11180     } else {
11181       Stack = &DataSegStack;
11182       SectionFlags |= ASTContext::PSF_Write;
11183     }
11184     if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) {
11185       var->addAttr(SectionAttr::CreateImplicit(
11186           Context, SectionAttr::Declspec_allocate,
11187           Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation));
11188     }
11189     if (const SectionAttr *SA = var->getAttr<SectionAttr>())
11190       if (UnifySection(SA->getName(), SectionFlags, var))
11191         var->dropAttr<SectionAttr>();
11192 
11193     // Apply the init_seg attribute if this has an initializer.  If the
11194     // initializer turns out to not be dynamic, we'll end up ignoring this
11195     // attribute.
11196     if (CurInitSeg && var->getInit())
11197       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
11198                                                CurInitSegLoc));
11199   }
11200 
11201   // All the following checks are C++ only.
11202   if (!getLangOpts().CPlusPlus) {
11203       // If this variable must be emitted, add it as an initializer for the
11204       // current module.
11205      if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11206        Context.addModuleInitializer(ModuleScopes.back().Module, var);
11207      return;
11208   }
11209 
11210   if (auto *DD = dyn_cast<DecompositionDecl>(var))
11211     CheckCompleteDecompositionDeclaration(DD);
11212 
11213   QualType type = var->getType();
11214   if (type->isDependentType()) return;
11215 
11216   // __block variables might require us to capture a copy-initializer.
11217   if (var->hasAttr<BlocksAttr>()) {
11218     // It's currently invalid to ever have a __block variable with an
11219     // array type; should we diagnose that here?
11220 
11221     // Regardless, we don't want to ignore array nesting when
11222     // constructing this copy.
11223     if (type->isStructureOrClassType()) {
11224       EnterExpressionEvaluationContext scope(
11225           *this, ExpressionEvaluationContext::PotentiallyEvaluated);
11226       SourceLocation poi = var->getLocation();
11227       Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
11228       ExprResult result
11229         = PerformMoveOrCopyInitialization(
11230             InitializedEntity::InitializeBlock(poi, type, false),
11231             var, var->getType(), varRef, /*AllowNRVO=*/true);
11232       if (!result.isInvalid()) {
11233         result = MaybeCreateExprWithCleanups(result);
11234         Expr *init = result.getAs<Expr>();
11235         Context.setBlockVarCopyInits(var, init);
11236       }
11237     }
11238   }
11239 
11240   Expr *Init = var->getInit();
11241   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
11242   QualType baseType = Context.getBaseElementType(type);
11243 
11244   if (Init && !Init->isValueDependent()) {
11245     if (var->isConstexpr()) {
11246       SmallVector<PartialDiagnosticAt, 8> Notes;
11247       if (!var->evaluateValue(Notes) || !var->isInitICE()) {
11248         SourceLocation DiagLoc = var->getLocation();
11249         // If the note doesn't add any useful information other than a source
11250         // location, fold it into the primary diagnostic.
11251         if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11252               diag::note_invalid_subexpr_in_const_expr) {
11253           DiagLoc = Notes[0].first;
11254           Notes.clear();
11255         }
11256         Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
11257           << var << Init->getSourceRange();
11258         for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11259           Diag(Notes[I].first, Notes[I].second);
11260       }
11261     } else if (var->isUsableInConstantExpressions(Context)) {
11262       // Check whether the initializer of a const variable of integral or
11263       // enumeration type is an ICE now, since we can't tell whether it was
11264       // initialized by a constant expression if we check later.
11265       var->checkInitIsICE();
11266     }
11267 
11268     // Don't emit further diagnostics about constexpr globals since they
11269     // were just diagnosed.
11270     if (!var->isConstexpr() && GlobalStorage &&
11271             var->hasAttr<RequireConstantInitAttr>()) {
11272       // FIXME: Need strict checking in C++03 here.
11273       bool DiagErr = getLangOpts().CPlusPlus11
11274           ? !var->checkInitIsICE() : !checkConstInit();
11275       if (DiagErr) {
11276         auto attr = var->getAttr<RequireConstantInitAttr>();
11277         Diag(var->getLocation(), diag::err_require_constant_init_failed)
11278           << Init->getSourceRange();
11279         Diag(attr->getLocation(), diag::note_declared_required_constant_init_here)
11280           << attr->getRange();
11281         if (getLangOpts().CPlusPlus11) {
11282           APValue Value;
11283           SmallVector<PartialDiagnosticAt, 8> Notes;
11284           Init->EvaluateAsInitializer(Value, getASTContext(), var, Notes);
11285           for (auto &it : Notes)
11286             Diag(it.first, it.second);
11287         } else {
11288           Diag(CacheCulprit->getExprLoc(),
11289                diag::note_invalid_subexpr_in_const_expr)
11290               << CacheCulprit->getSourceRange();
11291         }
11292       }
11293     }
11294     else if (!var->isConstexpr() && IsGlobal &&
11295              !getDiagnostics().isIgnored(diag::warn_global_constructor,
11296                                     var->getLocation())) {
11297       // Warn about globals which don't have a constant initializer.  Don't
11298       // warn about globals with a non-trivial destructor because we already
11299       // warned about them.
11300       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
11301       if (!(RD && !RD->hasTrivialDestructor())) {
11302         if (!checkConstInit())
11303           Diag(var->getLocation(), diag::warn_global_constructor)
11304             << Init->getSourceRange();
11305       }
11306     }
11307   }
11308 
11309   // Require the destructor.
11310   if (const RecordType *recordType = baseType->getAs<RecordType>())
11311     FinalizeVarWithDestructor(var, recordType);
11312 
11313   // If this variable must be emitted, add it as an initializer for the current
11314   // module.
11315   if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11316     Context.addModuleInitializer(ModuleScopes.back().Module, var);
11317 }
11318 
11319 /// \brief Determines if a variable's alignment is dependent.
11320 static bool hasDependentAlignment(VarDecl *VD) {
11321   if (VD->getType()->isDependentType())
11322     return true;
11323   for (auto *I : VD->specific_attrs<AlignedAttr>())
11324     if (I->isAlignmentDependent())
11325       return true;
11326   return false;
11327 }
11328 
11329 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
11330 /// any semantic actions necessary after any initializer has been attached.
11331 void Sema::FinalizeDeclaration(Decl *ThisDecl) {
11332   // Note that we are no longer parsing the initializer for this declaration.
11333   ParsingInitForAutoVars.erase(ThisDecl);
11334 
11335   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
11336   if (!VD)
11337     return;
11338 
11339   // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active
11340   if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() &&
11341       !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) {
11342     if (PragmaClangBSSSection.Valid)
11343       VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit(Context,
11344                                                             PragmaClangBSSSection.SectionName,
11345                                                             PragmaClangBSSSection.PragmaLocation));
11346     if (PragmaClangDataSection.Valid)
11347       VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit(Context,
11348                                                              PragmaClangDataSection.SectionName,
11349                                                              PragmaClangDataSection.PragmaLocation));
11350     if (PragmaClangRodataSection.Valid)
11351       VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit(Context,
11352                                                                PragmaClangRodataSection.SectionName,
11353                                                                PragmaClangRodataSection.PragmaLocation));
11354   }
11355 
11356   if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) {
11357     for (auto *BD : DD->bindings()) {
11358       FinalizeDeclaration(BD);
11359     }
11360   }
11361 
11362   checkAttributesAfterMerging(*this, *VD);
11363 
11364   // Perform TLS alignment check here after attributes attached to the variable
11365   // which may affect the alignment have been processed. Only perform the check
11366   // if the target has a maximum TLS alignment (zero means no constraints).
11367   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
11368     // Protect the check so that it's not performed on dependent types and
11369     // dependent alignments (we can't determine the alignment in that case).
11370     if (VD->getTLSKind() && !hasDependentAlignment(VD) &&
11371         !VD->isInvalidDecl()) {
11372       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
11373       if (Context.getDeclAlign(VD) > MaxAlignChars) {
11374         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
11375           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
11376           << (unsigned)MaxAlignChars.getQuantity();
11377       }
11378     }
11379   }
11380 
11381   if (VD->isStaticLocal()) {
11382     if (FunctionDecl *FD =
11383             dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) {
11384       // Static locals inherit dll attributes from their function.
11385       if (Attr *A = getDLLAttr(FD)) {
11386         auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
11387         NewAttr->setInherited(true);
11388         VD->addAttr(NewAttr);
11389       }
11390       // CUDA E.2.9.4: Within the body of a __device__ or __global__
11391       // function, only __shared__ variables may be declared with
11392       // static storage class.
11393       if (getLangOpts().CUDA && !VD->hasAttr<CUDASharedAttr>() &&
11394           CUDADiagIfDeviceCode(VD->getLocation(),
11395                                diag::err_device_static_local_var)
11396               << CurrentCUDATarget())
11397         VD->setInvalidDecl();
11398     }
11399   }
11400 
11401   // Perform check for initializers of device-side global variables.
11402   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
11403   // 7.5). We must also apply the same checks to all __shared__
11404   // variables whether they are local or not. CUDA also allows
11405   // constant initializers for __constant__ and __device__ variables.
11406   if (getLangOpts().CUDA) {
11407     const Expr *Init = VD->getInit();
11408     if (Init && VD->hasGlobalStorage()) {
11409       if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
11410           VD->hasAttr<CUDASharedAttr>()) {
11411         assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>());
11412         bool AllowedInit = false;
11413         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
11414           AllowedInit =
11415               isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
11416         // We'll allow constant initializers even if it's a non-empty
11417         // constructor according to CUDA rules. This deviates from NVCC,
11418         // but allows us to handle things like constexpr constructors.
11419         if (!AllowedInit &&
11420             (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>()))
11421           AllowedInit = VD->getInit()->isConstantInitializer(
11422               Context, VD->getType()->isReferenceType());
11423 
11424         // Also make sure that destructor, if there is one, is empty.
11425         if (AllowedInit)
11426           if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl())
11427             AllowedInit =
11428                 isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor());
11429 
11430         if (!AllowedInit) {
11431           Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
11432                                       ? diag::err_shared_var_init
11433                                       : diag::err_dynamic_var_init)
11434               << Init->getSourceRange();
11435           VD->setInvalidDecl();
11436         }
11437       } else {
11438         // This is a host-side global variable.  Check that the initializer is
11439         // callable from the host side.
11440         const FunctionDecl *InitFn = nullptr;
11441         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) {
11442           InitFn = CE->getConstructor();
11443         } else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) {
11444           InitFn = CE->getDirectCallee();
11445         }
11446         if (InitFn) {
11447           CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn);
11448           if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) {
11449             Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer)
11450                 << InitFnTarget << InitFn;
11451             Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn;
11452             VD->setInvalidDecl();
11453           }
11454         }
11455       }
11456     }
11457   }
11458 
11459   // Grab the dllimport or dllexport attribute off of the VarDecl.
11460   const InheritableAttr *DLLAttr = getDLLAttr(VD);
11461 
11462   // Imported static data members cannot be defined out-of-line.
11463   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
11464     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
11465         VD->isThisDeclarationADefinition()) {
11466       // We allow definitions of dllimport class template static data members
11467       // with a warning.
11468       CXXRecordDecl *Context =
11469         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
11470       bool IsClassTemplateMember =
11471           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
11472           Context->getDescribedClassTemplate();
11473 
11474       Diag(VD->getLocation(),
11475            IsClassTemplateMember
11476                ? diag::warn_attribute_dllimport_static_field_definition
11477                : diag::err_attribute_dllimport_static_field_definition);
11478       Diag(IA->getLocation(), diag::note_attribute);
11479       if (!IsClassTemplateMember)
11480         VD->setInvalidDecl();
11481     }
11482   }
11483 
11484   // dllimport/dllexport variables cannot be thread local, their TLS index
11485   // isn't exported with the variable.
11486   if (DLLAttr && VD->getTLSKind()) {
11487     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
11488     if (F && getDLLAttr(F)) {
11489       assert(VD->isStaticLocal());
11490       // But if this is a static local in a dlimport/dllexport function, the
11491       // function will never be inlined, which means the var would never be
11492       // imported, so having it marked import/export is safe.
11493     } else {
11494       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
11495                                                                     << DLLAttr;
11496       VD->setInvalidDecl();
11497     }
11498   }
11499 
11500   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
11501     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
11502       Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
11503       VD->dropAttr<UsedAttr>();
11504     }
11505   }
11506 
11507   const DeclContext *DC = VD->getDeclContext();
11508   // If there's a #pragma GCC visibility in scope, and this isn't a class
11509   // member, set the visibility of this variable.
11510   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
11511     AddPushedVisibilityAttribute(VD);
11512 
11513   // FIXME: Warn on unused var template partial specializations.
11514   if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD))
11515     MarkUnusedFileScopedDecl(VD);
11516 
11517   // Now we have parsed the initializer and can update the table of magic
11518   // tag values.
11519   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
11520       !VD->getType()->isIntegralOrEnumerationType())
11521     return;
11522 
11523   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
11524     const Expr *MagicValueExpr = VD->getInit();
11525     if (!MagicValueExpr) {
11526       continue;
11527     }
11528     llvm::APSInt MagicValueInt;
11529     if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
11530       Diag(I->getRange().getBegin(),
11531            diag::err_type_tag_for_datatype_not_ice)
11532         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11533       continue;
11534     }
11535     if (MagicValueInt.getActiveBits() > 64) {
11536       Diag(I->getRange().getBegin(),
11537            diag::err_type_tag_for_datatype_too_large)
11538         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11539       continue;
11540     }
11541     uint64_t MagicValue = MagicValueInt.getZExtValue();
11542     RegisterTypeTagForDatatype(I->getArgumentKind(),
11543                                MagicValue,
11544                                I->getMatchingCType(),
11545                                I->getLayoutCompatible(),
11546                                I->getMustBeNull());
11547   }
11548 }
11549 
11550 static bool hasDeducedAuto(DeclaratorDecl *DD) {
11551   auto *VD = dyn_cast<VarDecl>(DD);
11552   return VD && !VD->getType()->hasAutoForTrailingReturnType();
11553 }
11554 
11555 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
11556                                                    ArrayRef<Decl *> Group) {
11557   SmallVector<Decl*, 8> Decls;
11558 
11559   if (DS.isTypeSpecOwned())
11560     Decls.push_back(DS.getRepAsDecl());
11561 
11562   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
11563   DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr;
11564   bool DiagnosedMultipleDecomps = false;
11565   DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr;
11566   bool DiagnosedNonDeducedAuto = false;
11567 
11568   for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11569     if (Decl *D = Group[i]) {
11570       // For declarators, there are some additional syntactic-ish checks we need
11571       // to perform.
11572       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
11573         if (!FirstDeclaratorInGroup)
11574           FirstDeclaratorInGroup = DD;
11575         if (!FirstDecompDeclaratorInGroup)
11576           FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D);
11577         if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() &&
11578             !hasDeducedAuto(DD))
11579           FirstNonDeducedAutoInGroup = DD;
11580 
11581         if (FirstDeclaratorInGroup != DD) {
11582           // A decomposition declaration cannot be combined with any other
11583           // declaration in the same group.
11584           if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) {
11585             Diag(FirstDecompDeclaratorInGroup->getLocation(),
11586                  diag::err_decomp_decl_not_alone)
11587                 << FirstDeclaratorInGroup->getSourceRange()
11588                 << DD->getSourceRange();
11589             DiagnosedMultipleDecomps = true;
11590           }
11591 
11592           // A declarator that uses 'auto' in any way other than to declare a
11593           // variable with a deduced type cannot be combined with any other
11594           // declarator in the same group.
11595           if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) {
11596             Diag(FirstNonDeducedAutoInGroup->getLocation(),
11597                  diag::err_auto_non_deduced_not_alone)
11598                 << FirstNonDeducedAutoInGroup->getType()
11599                        ->hasAutoForTrailingReturnType()
11600                 << FirstDeclaratorInGroup->getSourceRange()
11601                 << DD->getSourceRange();
11602             DiagnosedNonDeducedAuto = true;
11603           }
11604         }
11605       }
11606 
11607       Decls.push_back(D);
11608     }
11609   }
11610 
11611   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
11612     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
11613       handleTagNumbering(Tag, S);
11614       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
11615           getLangOpts().CPlusPlus)
11616         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
11617     }
11618   }
11619 
11620   return BuildDeclaratorGroup(Decls);
11621 }
11622 
11623 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
11624 /// group, performing any necessary semantic checking.
11625 Sema::DeclGroupPtrTy
11626 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) {
11627   // C++14 [dcl.spec.auto]p7: (DR1347)
11628   //   If the type that replaces the placeholder type is not the same in each
11629   //   deduction, the program is ill-formed.
11630   if (Group.size() > 1) {
11631     QualType Deduced;
11632     VarDecl *DeducedDecl = nullptr;
11633     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11634       VarDecl *D = dyn_cast<VarDecl>(Group[i]);
11635       if (!D || D->isInvalidDecl())
11636         break;
11637       DeducedType *DT = D->getType()->getContainedDeducedType();
11638       if (!DT || DT->getDeducedType().isNull())
11639         continue;
11640       if (Deduced.isNull()) {
11641         Deduced = DT->getDeducedType();
11642         DeducedDecl = D;
11643       } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) {
11644         auto *AT = dyn_cast<AutoType>(DT);
11645         Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
11646              diag::err_auto_different_deductions)
11647           << (AT ? (unsigned)AT->getKeyword() : 3)
11648           << Deduced << DeducedDecl->getDeclName()
11649           << DT->getDeducedType() << D->getDeclName()
11650           << DeducedDecl->getInit()->getSourceRange()
11651           << D->getInit()->getSourceRange();
11652         D->setInvalidDecl();
11653         break;
11654       }
11655     }
11656   }
11657 
11658   ActOnDocumentableDecls(Group);
11659 
11660   return DeclGroupPtrTy::make(
11661       DeclGroupRef::Create(Context, Group.data(), Group.size()));
11662 }
11663 
11664 void Sema::ActOnDocumentableDecl(Decl *D) {
11665   ActOnDocumentableDecls(D);
11666 }
11667 
11668 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
11669   // Don't parse the comment if Doxygen diagnostics are ignored.
11670   if (Group.empty() || !Group[0])
11671     return;
11672 
11673   if (Diags.isIgnored(diag::warn_doc_param_not_found,
11674                       Group[0]->getLocation()) &&
11675       Diags.isIgnored(diag::warn_unknown_comment_command_name,
11676                       Group[0]->getLocation()))
11677     return;
11678 
11679   if (Group.size() >= 2) {
11680     // This is a decl group.  Normally it will contain only declarations
11681     // produced from declarator list.  But in case we have any definitions or
11682     // additional declaration references:
11683     //   'typedef struct S {} S;'
11684     //   'typedef struct S *S;'
11685     //   'struct S *pS;'
11686     // FinalizeDeclaratorGroup adds these as separate declarations.
11687     Decl *MaybeTagDecl = Group[0];
11688     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
11689       Group = Group.slice(1);
11690     }
11691   }
11692 
11693   // See if there are any new comments that are not attached to a decl.
11694   ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
11695   if (!Comments.empty() &&
11696       !Comments.back()->isAttached()) {
11697     // There is at least one comment that not attached to a decl.
11698     // Maybe it should be attached to one of these decls?
11699     //
11700     // Note that this way we pick up not only comments that precede the
11701     // declaration, but also comments that *follow* the declaration -- thanks to
11702     // the lookahead in the lexer: we've consumed the semicolon and looked
11703     // ahead through comments.
11704     for (unsigned i = 0, e = Group.size(); i != e; ++i)
11705       Context.getCommentForDecl(Group[i], &PP);
11706   }
11707 }
11708 
11709 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
11710 /// to introduce parameters into function prototype scope.
11711 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
11712   const DeclSpec &DS = D.getDeclSpec();
11713 
11714   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
11715 
11716   // C++03 [dcl.stc]p2 also permits 'auto'.
11717   StorageClass SC = SC_None;
11718   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
11719     SC = SC_Register;
11720   } else if (getLangOpts().CPlusPlus &&
11721              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
11722     SC = SC_Auto;
11723   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
11724     Diag(DS.getStorageClassSpecLoc(),
11725          diag::err_invalid_storage_class_in_func_decl);
11726     D.getMutableDeclSpec().ClearStorageClassSpecs();
11727   }
11728 
11729   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
11730     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
11731       << DeclSpec::getSpecifierName(TSCS);
11732   if (DS.isInlineSpecified())
11733     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
11734         << getLangOpts().CPlusPlus1z;
11735   if (DS.isConstexprSpecified())
11736     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
11737       << 0;
11738   if (DS.isConceptSpecified())
11739     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
11740 
11741   DiagnoseFunctionSpecifiers(DS);
11742 
11743   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
11744   QualType parmDeclType = TInfo->getType();
11745 
11746   if (getLangOpts().CPlusPlus) {
11747     // Check that there are no default arguments inside the type of this
11748     // parameter.
11749     CheckExtraCXXDefaultArguments(D);
11750 
11751     // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
11752     if (D.getCXXScopeSpec().isSet()) {
11753       Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
11754         << D.getCXXScopeSpec().getRange();
11755       D.getCXXScopeSpec().clear();
11756     }
11757   }
11758 
11759   // Ensure we have a valid name
11760   IdentifierInfo *II = nullptr;
11761   if (D.hasName()) {
11762     II = D.getIdentifier();
11763     if (!II) {
11764       Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
11765         << GetNameForDeclarator(D).getName();
11766       D.setInvalidType(true);
11767     }
11768   }
11769 
11770   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
11771   if (II) {
11772     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
11773                    ForVisibleRedeclaration);
11774     LookupName(R, S);
11775     if (R.isSingleResult()) {
11776       NamedDecl *PrevDecl = R.getFoundDecl();
11777       if (PrevDecl->isTemplateParameter()) {
11778         // Maybe we will complain about the shadowed template parameter.
11779         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
11780         // Just pretend that we didn't see the previous declaration.
11781         PrevDecl = nullptr;
11782       } else if (S->isDeclScope(PrevDecl)) {
11783         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
11784         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
11785 
11786         // Recover by removing the name
11787         II = nullptr;
11788         D.SetIdentifier(nullptr, D.getIdentifierLoc());
11789         D.setInvalidType(true);
11790       }
11791     }
11792   }
11793 
11794   // Temporarily put parameter variables in the translation unit, not
11795   // the enclosing context.  This prevents them from accidentally
11796   // looking like class members in C++.
11797   ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
11798                                     D.getLocStart(),
11799                                     D.getIdentifierLoc(), II,
11800                                     parmDeclType, TInfo,
11801                                     SC);
11802 
11803   if (D.isInvalidType())
11804     New->setInvalidDecl();
11805 
11806   assert(S->isFunctionPrototypeScope());
11807   assert(S->getFunctionPrototypeDepth() >= 1);
11808   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
11809                     S->getNextFunctionPrototypeIndex());
11810 
11811   // Add the parameter declaration into this scope.
11812   S->AddDecl(New);
11813   if (II)
11814     IdResolver.AddDecl(New);
11815 
11816   ProcessDeclAttributes(S, New, D);
11817 
11818   if (D.getDeclSpec().isModulePrivateSpecified())
11819     Diag(New->getLocation(), diag::err_module_private_local)
11820       << 1 << New->getDeclName()
11821       << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
11822       << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
11823 
11824   if (New->hasAttr<BlocksAttr>()) {
11825     Diag(New->getLocation(), diag::err_block_on_nonlocal);
11826   }
11827   return New;
11828 }
11829 
11830 /// \brief Synthesizes a variable for a parameter arising from a
11831 /// typedef.
11832 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
11833                                               SourceLocation Loc,
11834                                               QualType T) {
11835   /* FIXME: setting StartLoc == Loc.
11836      Would it be worth to modify callers so as to provide proper source
11837      location for the unnamed parameters, embedding the parameter's type? */
11838   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
11839                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
11840                                            SC_None, nullptr);
11841   Param->setImplicit();
11842   return Param;
11843 }
11844 
11845 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) {
11846   // Don't diagnose unused-parameter errors in template instantiations; we
11847   // will already have done so in the template itself.
11848   if (inTemplateInstantiation())
11849     return;
11850 
11851   for (const ParmVarDecl *Parameter : Parameters) {
11852     if (!Parameter->isReferenced() && Parameter->getDeclName() &&
11853         !Parameter->hasAttr<UnusedAttr>()) {
11854       Diag(Parameter->getLocation(), diag::warn_unused_parameter)
11855         << Parameter->getDeclName();
11856     }
11857   }
11858 }
11859 
11860 void Sema::DiagnoseSizeOfParametersAndReturnValue(
11861     ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) {
11862   if (LangOpts.NumLargeByValueCopy == 0) // No check.
11863     return;
11864 
11865   // Warn if the return value is pass-by-value and larger than the specified
11866   // threshold.
11867   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
11868     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
11869     if (Size > LangOpts.NumLargeByValueCopy)
11870       Diag(D->getLocation(), diag::warn_return_value_size)
11871           << D->getDeclName() << Size;
11872   }
11873 
11874   // Warn if any parameter is pass-by-value and larger than the specified
11875   // threshold.
11876   for (const ParmVarDecl *Parameter : Parameters) {
11877     QualType T = Parameter->getType();
11878     if (T->isDependentType() || !T.isPODType(Context))
11879       continue;
11880     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
11881     if (Size > LangOpts.NumLargeByValueCopy)
11882       Diag(Parameter->getLocation(), diag::warn_parameter_size)
11883           << Parameter->getDeclName() << Size;
11884   }
11885 }
11886 
11887 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
11888                                   SourceLocation NameLoc, IdentifierInfo *Name,
11889                                   QualType T, TypeSourceInfo *TSInfo,
11890                                   StorageClass SC) {
11891   // In ARC, infer a lifetime qualifier for appropriate parameter types.
11892   if (getLangOpts().ObjCAutoRefCount &&
11893       T.getObjCLifetime() == Qualifiers::OCL_None &&
11894       T->isObjCLifetimeType()) {
11895 
11896     Qualifiers::ObjCLifetime lifetime;
11897 
11898     // Special cases for arrays:
11899     //   - if it's const, use __unsafe_unretained
11900     //   - otherwise, it's an error
11901     if (T->isArrayType()) {
11902       if (!T.isConstQualified()) {
11903         DelayedDiagnostics.add(
11904             sema::DelayedDiagnostic::makeForbiddenType(
11905             NameLoc, diag::err_arc_array_param_no_ownership, T, false));
11906       }
11907       lifetime = Qualifiers::OCL_ExplicitNone;
11908     } else {
11909       lifetime = T->getObjCARCImplicitLifetime();
11910     }
11911     T = Context.getLifetimeQualifiedType(T, lifetime);
11912   }
11913 
11914   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
11915                                          Context.getAdjustedParameterType(T),
11916                                          TSInfo, SC, nullptr);
11917 
11918   // Parameters can not be abstract class types.
11919   // For record types, this is done by the AbstractClassUsageDiagnoser once
11920   // the class has been completely parsed.
11921   if (!CurContext->isRecord() &&
11922       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
11923                              AbstractParamType))
11924     New->setInvalidDecl();
11925 
11926   // Parameter declarators cannot be interface types. All ObjC objects are
11927   // passed by reference.
11928   if (T->isObjCObjectType()) {
11929     SourceLocation TypeEndLoc =
11930         getLocForEndOfToken(TSInfo->getTypeLoc().getLocEnd());
11931     Diag(NameLoc,
11932          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
11933       << FixItHint::CreateInsertion(TypeEndLoc, "*");
11934     T = Context.getObjCObjectPointerType(T);
11935     New->setType(T);
11936   }
11937 
11938   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
11939   // duration shall not be qualified by an address-space qualifier."
11940   // Since all parameters have automatic store duration, they can not have
11941   // an address space.
11942   if (T.getAddressSpace() != 0) {
11943     // OpenCL allows function arguments declared to be an array of a type
11944     // to be qualified with an address space.
11945     if (!(getLangOpts().OpenCL && T->isArrayType())) {
11946       Diag(NameLoc, diag::err_arg_with_address_space);
11947       New->setInvalidDecl();
11948     }
11949   }
11950 
11951   return New;
11952 }
11953 
11954 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
11955                                            SourceLocation LocAfterDecls) {
11956   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
11957 
11958   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
11959   // for a K&R function.
11960   if (!FTI.hasPrototype) {
11961     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
11962       --i;
11963       if (FTI.Params[i].Param == nullptr) {
11964         SmallString<256> Code;
11965         llvm::raw_svector_ostream(Code)
11966             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
11967         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
11968             << FTI.Params[i].Ident
11969             << FixItHint::CreateInsertion(LocAfterDecls, Code);
11970 
11971         // Implicitly declare the argument as type 'int' for lack of a better
11972         // type.
11973         AttributeFactory attrs;
11974         DeclSpec DS(attrs);
11975         const char* PrevSpec; // unused
11976         unsigned DiagID; // unused
11977         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
11978                            DiagID, Context.getPrintingPolicy());
11979         // Use the identifier location for the type source range.
11980         DS.SetRangeStart(FTI.Params[i].IdentLoc);
11981         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
11982         Declarator ParamD(DS, Declarator::KNRTypeListContext);
11983         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
11984         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
11985       }
11986     }
11987   }
11988 }
11989 
11990 Decl *
11991 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
11992                               MultiTemplateParamsArg TemplateParameterLists,
11993                               SkipBodyInfo *SkipBody) {
11994   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
11995   assert(D.isFunctionDeclarator() && "Not a function declarator!");
11996   Scope *ParentScope = FnBodyScope->getParent();
11997 
11998   D.setFunctionDefinitionKind(FDK_Definition);
11999   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
12000   return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
12001 }
12002 
12003 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) {
12004   Consumer.HandleInlineFunctionDefinition(D);
12005 }
12006 
12007 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
12008                              const FunctionDecl*& PossibleZeroParamPrototype) {
12009   // Don't warn about invalid declarations.
12010   if (FD->isInvalidDecl())
12011     return false;
12012 
12013   // Or declarations that aren't global.
12014   if (!FD->isGlobal())
12015     return false;
12016 
12017   // Don't warn about C++ member functions.
12018   if (isa<CXXMethodDecl>(FD))
12019     return false;
12020 
12021   // Don't warn about 'main'.
12022   if (FD->isMain())
12023     return false;
12024 
12025   // Don't warn about inline functions.
12026   if (FD->isInlined())
12027     return false;
12028 
12029   // Don't warn about function templates.
12030   if (FD->getDescribedFunctionTemplate())
12031     return false;
12032 
12033   // Don't warn about function template specializations.
12034   if (FD->isFunctionTemplateSpecialization())
12035     return false;
12036 
12037   // Don't warn for OpenCL kernels.
12038   if (FD->hasAttr<OpenCLKernelAttr>())
12039     return false;
12040 
12041   // Don't warn on explicitly deleted functions.
12042   if (FD->isDeleted())
12043     return false;
12044 
12045   bool MissingPrototype = true;
12046   for (const FunctionDecl *Prev = FD->getPreviousDecl();
12047        Prev; Prev = Prev->getPreviousDecl()) {
12048     // Ignore any declarations that occur in function or method
12049     // scope, because they aren't visible from the header.
12050     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
12051       continue;
12052 
12053     MissingPrototype = !Prev->getType()->isFunctionProtoType();
12054     if (FD->getNumParams() == 0)
12055       PossibleZeroParamPrototype = Prev;
12056     break;
12057   }
12058 
12059   return MissingPrototype;
12060 }
12061 
12062 void
12063 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
12064                                    const FunctionDecl *EffectiveDefinition,
12065                                    SkipBodyInfo *SkipBody) {
12066   const FunctionDecl *Definition = EffectiveDefinition;
12067   if (!Definition)
12068     if (!FD->isDefined(Definition))
12069       return;
12070 
12071   if (canRedefineFunction(Definition, getLangOpts()))
12072     return;
12073 
12074   // Don't emit an error when this is redefinition of a typo-corrected
12075   // definition.
12076   if (TypoCorrectedFunctionDefinitions.count(Definition))
12077     return;
12078 
12079   // If we don't have a visible definition of the function, and it's inline or
12080   // a template, skip the new definition.
12081   if (SkipBody && !hasVisibleDefinition(Definition) &&
12082       (Definition->getFormalLinkage() == InternalLinkage ||
12083        Definition->isInlined() ||
12084        Definition->getDescribedFunctionTemplate() ||
12085        Definition->getNumTemplateParameterLists())) {
12086     SkipBody->ShouldSkip = true;
12087     if (auto *TD = Definition->getDescribedFunctionTemplate())
12088       makeMergedDefinitionVisible(TD);
12089     makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition));
12090     return;
12091   }
12092 
12093   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
12094       Definition->getStorageClass() == SC_Extern)
12095     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
12096         << FD->getDeclName() << getLangOpts().CPlusPlus;
12097   else
12098     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
12099 
12100   Diag(Definition->getLocation(), diag::note_previous_definition);
12101   FD->setInvalidDecl();
12102 }
12103 
12104 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
12105                                    Sema &S) {
12106   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
12107 
12108   LambdaScopeInfo *LSI = S.PushLambdaScope();
12109   LSI->CallOperator = CallOperator;
12110   LSI->Lambda = LambdaClass;
12111   LSI->ReturnType = CallOperator->getReturnType();
12112   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
12113 
12114   if (LCD == LCD_None)
12115     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
12116   else if (LCD == LCD_ByCopy)
12117     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
12118   else if (LCD == LCD_ByRef)
12119     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
12120   DeclarationNameInfo DNI = CallOperator->getNameInfo();
12121 
12122   LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
12123   LSI->Mutable = !CallOperator->isConst();
12124 
12125   // Add the captures to the LSI so they can be noted as already
12126   // captured within tryCaptureVar.
12127   auto I = LambdaClass->field_begin();
12128   for (const auto &C : LambdaClass->captures()) {
12129     if (C.capturesVariable()) {
12130       VarDecl *VD = C.getCapturedVar();
12131       if (VD->isInitCapture())
12132         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
12133       QualType CaptureType = VD->getType();
12134       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
12135       LSI->addCapture(VD, /*IsBlock*/false, ByRef,
12136           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
12137           /*EllipsisLoc*/C.isPackExpansion()
12138                          ? C.getEllipsisLoc() : SourceLocation(),
12139           CaptureType, /*Expr*/ nullptr);
12140 
12141     } else if (C.capturesThis()) {
12142       LSI->addThisCapture(/*Nested*/ false, C.getLocation(),
12143                               /*Expr*/ nullptr,
12144                               C.getCaptureKind() == LCK_StarThis);
12145     } else {
12146       LSI->addVLATypeCapture(C.getLocation(), I->getType());
12147     }
12148     ++I;
12149   }
12150 }
12151 
12152 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
12153                                     SkipBodyInfo *SkipBody) {
12154   if (!D)
12155     return D;
12156   FunctionDecl *FD = nullptr;
12157 
12158   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
12159     FD = FunTmpl->getTemplatedDecl();
12160   else
12161     FD = cast<FunctionDecl>(D);
12162 
12163   // Check for defining attributes before the check for redefinition.
12164   if (const auto *Attr = FD->getAttr<AliasAttr>()) {
12165     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0;
12166     FD->dropAttr<AliasAttr>();
12167     FD->setInvalidDecl();
12168   }
12169   if (const auto *Attr = FD->getAttr<IFuncAttr>()) {
12170     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1;
12171     FD->dropAttr<IFuncAttr>();
12172     FD->setInvalidDecl();
12173   }
12174 
12175   // See if this is a redefinition. If 'will have body' is already set, then
12176   // these checks were already performed when it was set.
12177   if (!FD->willHaveBody() && !FD->isLateTemplateParsed()) {
12178     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
12179 
12180     // If we're skipping the body, we're done. Don't enter the scope.
12181     if (SkipBody && SkipBody->ShouldSkip)
12182       return D;
12183   }
12184 
12185   // Mark this function as "will have a body eventually".  This lets users to
12186   // call e.g. isInlineDefinitionExternallyVisible while we're still parsing
12187   // this function.
12188   FD->setWillHaveBody();
12189 
12190   // If we are instantiating a generic lambda call operator, push
12191   // a LambdaScopeInfo onto the function stack.  But use the information
12192   // that's already been calculated (ActOnLambdaExpr) to prime the current
12193   // LambdaScopeInfo.
12194   // When the template operator is being specialized, the LambdaScopeInfo,
12195   // has to be properly restored so that tryCaptureVariable doesn't try
12196   // and capture any new variables. In addition when calculating potential
12197   // captures during transformation of nested lambdas, it is necessary to
12198   // have the LSI properly restored.
12199   if (isGenericLambdaCallOperatorSpecialization(FD)) {
12200     assert(inTemplateInstantiation() &&
12201            "There should be an active template instantiation on the stack "
12202            "when instantiating a generic lambda!");
12203     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
12204   } else {
12205     // Enter a new function scope
12206     PushFunctionScope();
12207   }
12208 
12209   // Builtin functions cannot be defined.
12210   if (unsigned BuiltinID = FD->getBuiltinID()) {
12211     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
12212         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
12213       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
12214       FD->setInvalidDecl();
12215     }
12216   }
12217 
12218   // The return type of a function definition must be complete
12219   // (C99 6.9.1p3, C++ [dcl.fct]p6).
12220   QualType ResultType = FD->getReturnType();
12221   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
12222       !FD->isInvalidDecl() &&
12223       RequireCompleteType(FD->getLocation(), ResultType,
12224                           diag::err_func_def_incomplete_result))
12225     FD->setInvalidDecl();
12226 
12227   if (FnBodyScope)
12228     PushDeclContext(FnBodyScope, FD);
12229 
12230   // Check the validity of our function parameters
12231   CheckParmsForFunctionDef(FD->parameters(),
12232                            /*CheckParameterNames=*/true);
12233 
12234   // Add non-parameter declarations already in the function to the current
12235   // scope.
12236   if (FnBodyScope) {
12237     for (Decl *NPD : FD->decls()) {
12238       auto *NonParmDecl = dyn_cast<NamedDecl>(NPD);
12239       if (!NonParmDecl)
12240         continue;
12241       assert(!isa<ParmVarDecl>(NonParmDecl) &&
12242              "parameters should not be in newly created FD yet");
12243 
12244       // If the decl has a name, make it accessible in the current scope.
12245       if (NonParmDecl->getDeclName())
12246         PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false);
12247 
12248       // Similarly, dive into enums and fish their constants out, making them
12249       // accessible in this scope.
12250       if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) {
12251         for (auto *EI : ED->enumerators())
12252           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
12253       }
12254     }
12255   }
12256 
12257   // Introduce our parameters into the function scope
12258   for (auto Param : FD->parameters()) {
12259     Param->setOwningFunction(FD);
12260 
12261     // If this has an identifier, add it to the scope stack.
12262     if (Param->getIdentifier() && FnBodyScope) {
12263       CheckShadow(FnBodyScope, Param);
12264 
12265       PushOnScopeChains(Param, FnBodyScope);
12266     }
12267   }
12268 
12269   // Ensure that the function's exception specification is instantiated.
12270   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
12271     ResolveExceptionSpec(D->getLocation(), FPT);
12272 
12273   // dllimport cannot be applied to non-inline function definitions.
12274   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
12275       !FD->isTemplateInstantiation()) {
12276     assert(!FD->hasAttr<DLLExportAttr>());
12277     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
12278     FD->setInvalidDecl();
12279     return D;
12280   }
12281   // We want to attach documentation to original Decl (which might be
12282   // a function template).
12283   ActOnDocumentableDecl(D);
12284   if (getCurLexicalContext()->isObjCContainer() &&
12285       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
12286       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
12287     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
12288 
12289   return D;
12290 }
12291 
12292 /// \brief Given the set of return statements within a function body,
12293 /// compute the variables that are subject to the named return value
12294 /// optimization.
12295 ///
12296 /// Each of the variables that is subject to the named return value
12297 /// optimization will be marked as NRVO variables in the AST, and any
12298 /// return statement that has a marked NRVO variable as its NRVO candidate can
12299 /// use the named return value optimization.
12300 ///
12301 /// This function applies a very simplistic algorithm for NRVO: if every return
12302 /// statement in the scope of a variable has the same NRVO candidate, that
12303 /// candidate is an NRVO variable.
12304 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
12305   ReturnStmt **Returns = Scope->Returns.data();
12306 
12307   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
12308     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
12309       if (!NRVOCandidate->isNRVOVariable())
12310         Returns[I]->setNRVOCandidate(nullptr);
12311     }
12312   }
12313 }
12314 
12315 bool Sema::canDelayFunctionBody(const Declarator &D) {
12316   // We can't delay parsing the body of a constexpr function template (yet).
12317   if (D.getDeclSpec().isConstexprSpecified())
12318     return false;
12319 
12320   // We can't delay parsing the body of a function template with a deduced
12321   // return type (yet).
12322   if (D.getDeclSpec().hasAutoTypeSpec()) {
12323     // If the placeholder introduces a non-deduced trailing return type,
12324     // we can still delay parsing it.
12325     if (D.getNumTypeObjects()) {
12326       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
12327       if (Outer.Kind == DeclaratorChunk::Function &&
12328           Outer.Fun.hasTrailingReturnType()) {
12329         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
12330         return Ty.isNull() || !Ty->isUndeducedType();
12331       }
12332     }
12333     return false;
12334   }
12335 
12336   return true;
12337 }
12338 
12339 bool Sema::canSkipFunctionBody(Decl *D) {
12340   // We cannot skip the body of a function (or function template) which is
12341   // constexpr, since we may need to evaluate its body in order to parse the
12342   // rest of the file.
12343   // We cannot skip the body of a function with an undeduced return type,
12344   // because any callers of that function need to know the type.
12345   if (const FunctionDecl *FD = D->getAsFunction())
12346     if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
12347       return false;
12348   return Consumer.shouldSkipFunctionBody(D);
12349 }
12350 
12351 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
12352   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl))
12353     FD->setHasSkippedBody();
12354   else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl))
12355     MD->setHasSkippedBody();
12356   return Decl;
12357 }
12358 
12359 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
12360   return ActOnFinishFunctionBody(D, BodyArg, false);
12361 }
12362 
12363 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
12364                                     bool IsInstantiation) {
12365   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
12366 
12367   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
12368   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
12369 
12370   if (getLangOpts().CoroutinesTS && getCurFunction()->isCoroutine())
12371     CheckCompletedCoroutineBody(FD, Body);
12372 
12373   if (FD) {
12374     FD->setBody(Body);
12375     FD->setWillHaveBody(false);
12376 
12377     if (getLangOpts().CPlusPlus14) {
12378       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
12379           FD->getReturnType()->isUndeducedType()) {
12380         // If the function has a deduced result type but contains no 'return'
12381         // statements, the result type as written must be exactly 'auto', and
12382         // the deduced result type is 'void'.
12383         if (!FD->getReturnType()->getAs<AutoType>()) {
12384           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
12385               << FD->getReturnType();
12386           FD->setInvalidDecl();
12387         } else {
12388           // Substitute 'void' for the 'auto' in the type.
12389           TypeLoc ResultType = getReturnTypeLoc(FD);
12390           Context.adjustDeducedFunctionResultType(
12391               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
12392         }
12393       }
12394     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
12395       // In C++11, we don't use 'auto' deduction rules for lambda call
12396       // operators because we don't support return type deduction.
12397       auto *LSI = getCurLambda();
12398       if (LSI->HasImplicitReturnType) {
12399         deduceClosureReturnType(*LSI);
12400 
12401         // C++11 [expr.prim.lambda]p4:
12402         //   [...] if there are no return statements in the compound-statement
12403         //   [the deduced type is] the type void
12404         QualType RetType =
12405             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
12406 
12407         // Update the return type to the deduced type.
12408         const FunctionProtoType *Proto =
12409             FD->getType()->getAs<FunctionProtoType>();
12410         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
12411                                             Proto->getExtProtoInfo()));
12412       }
12413     }
12414 
12415     // If the function implicitly returns zero (like 'main') or is naked,
12416     // don't complain about missing return statements.
12417     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
12418       WP.disableCheckFallThrough();
12419 
12420     // MSVC permits the use of pure specifier (=0) on function definition,
12421     // defined at class scope, warn about this non-standard construct.
12422     if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
12423       Diag(FD->getLocation(), diag::ext_pure_function_definition);
12424 
12425     if (!FD->isInvalidDecl()) {
12426       // Don't diagnose unused parameters of defaulted or deleted functions.
12427       if (!FD->isDeleted() && !FD->isDefaulted())
12428         DiagnoseUnusedParameters(FD->parameters());
12429       DiagnoseSizeOfParametersAndReturnValue(FD->parameters(),
12430                                              FD->getReturnType(), FD);
12431 
12432       // If this is a structor, we need a vtable.
12433       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
12434         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
12435       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
12436         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
12437 
12438       // Try to apply the named return value optimization. We have to check
12439       // if we can do this here because lambdas keep return statements around
12440       // to deduce an implicit return type.
12441       if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
12442           !FD->isDependentContext())
12443         computeNRVO(Body, getCurFunction());
12444     }
12445 
12446     // GNU warning -Wmissing-prototypes:
12447     //   Warn if a global function is defined without a previous
12448     //   prototype declaration. This warning is issued even if the
12449     //   definition itself provides a prototype. The aim is to detect
12450     //   global functions that fail to be declared in header files.
12451     const FunctionDecl *PossibleZeroParamPrototype = nullptr;
12452     if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
12453       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
12454 
12455       if (PossibleZeroParamPrototype) {
12456         // We found a declaration that is not a prototype,
12457         // but that could be a zero-parameter prototype
12458         if (TypeSourceInfo *TI =
12459                 PossibleZeroParamPrototype->getTypeSourceInfo()) {
12460           TypeLoc TL = TI->getTypeLoc();
12461           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
12462             Diag(PossibleZeroParamPrototype->getLocation(),
12463                  diag::note_declaration_not_a_prototype)
12464                 << PossibleZeroParamPrototype
12465                 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
12466         }
12467       }
12468 
12469       // GNU warning -Wstrict-prototypes
12470       //   Warn if K&R function is defined without a previous declaration.
12471       //   This warning is issued only if the definition itself does not provide
12472       //   a prototype. Only K&R definitions do not provide a prototype.
12473       //   An empty list in a function declarator that is part of a definition
12474       //   of that function specifies that the function has no parameters
12475       //   (C99 6.7.5.3p14)
12476       if (!FD->hasWrittenPrototype() && FD->getNumParams() > 0 &&
12477           !LangOpts.CPlusPlus) {
12478         TypeSourceInfo *TI = FD->getTypeSourceInfo();
12479         TypeLoc TL = TI->getTypeLoc();
12480         FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>();
12481         Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;
12482       }
12483     }
12484 
12485     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
12486       const CXXMethodDecl *KeyFunction;
12487       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
12488           MD->isVirtual() &&
12489           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
12490           MD == KeyFunction->getCanonicalDecl()) {
12491         // Update the key-function state if necessary for this ABI.
12492         if (FD->isInlined() &&
12493             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
12494           Context.setNonKeyFunction(MD);
12495 
12496           // If the newly-chosen key function is already defined, then we
12497           // need to mark the vtable as used retroactively.
12498           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
12499           const FunctionDecl *Definition;
12500           if (KeyFunction && KeyFunction->isDefined(Definition))
12501             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
12502         } else {
12503           // We just defined they key function; mark the vtable as used.
12504           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
12505         }
12506       }
12507     }
12508 
12509     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
12510            "Function parsing confused");
12511   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
12512     assert(MD == getCurMethodDecl() && "Method parsing confused");
12513     MD->setBody(Body);
12514     if (!MD->isInvalidDecl()) {
12515       DiagnoseUnusedParameters(MD->parameters());
12516       DiagnoseSizeOfParametersAndReturnValue(MD->parameters(),
12517                                              MD->getReturnType(), MD);
12518 
12519       if (Body)
12520         computeNRVO(Body, getCurFunction());
12521     }
12522     if (getCurFunction()->ObjCShouldCallSuper) {
12523       Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
12524         << MD->getSelector().getAsString();
12525       getCurFunction()->ObjCShouldCallSuper = false;
12526     }
12527     if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
12528       const ObjCMethodDecl *InitMethod = nullptr;
12529       bool isDesignated =
12530           MD->isDesignatedInitializerForTheInterface(&InitMethod);
12531       assert(isDesignated && InitMethod);
12532       (void)isDesignated;
12533 
12534       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
12535         auto IFace = MD->getClassInterface();
12536         if (!IFace)
12537           return false;
12538         auto SuperD = IFace->getSuperClass();
12539         if (!SuperD)
12540           return false;
12541         return SuperD->getIdentifier() ==
12542             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
12543       };
12544       // Don't issue this warning for unavailable inits or direct subclasses
12545       // of NSObject.
12546       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
12547         Diag(MD->getLocation(),
12548              diag::warn_objc_designated_init_missing_super_call);
12549         Diag(InitMethod->getLocation(),
12550              diag::note_objc_designated_init_marked_here);
12551       }
12552       getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
12553     }
12554     if (getCurFunction()->ObjCWarnForNoInitDelegation) {
12555       // Don't issue this warning for unavaialable inits.
12556       if (!MD->isUnavailable())
12557         Diag(MD->getLocation(),
12558              diag::warn_objc_secondary_init_missing_init_call);
12559       getCurFunction()->ObjCWarnForNoInitDelegation = false;
12560     }
12561   } else {
12562     return nullptr;
12563   }
12564 
12565   if (Body && getCurFunction()->HasPotentialAvailabilityViolations)
12566     DiagnoseUnguardedAvailabilityViolations(dcl);
12567 
12568   assert(!getCurFunction()->ObjCShouldCallSuper &&
12569          "This should only be set for ObjC methods, which should have been "
12570          "handled in the block above.");
12571 
12572   // Verify and clean out per-function state.
12573   if (Body && (!FD || !FD->isDefaulted())) {
12574     // C++ constructors that have function-try-blocks can't have return
12575     // statements in the handlers of that block. (C++ [except.handle]p14)
12576     // Verify this.
12577     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
12578       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
12579 
12580     // Verify that gotos and switch cases don't jump into scopes illegally.
12581     if (getCurFunction()->NeedsScopeChecking() &&
12582         !PP.isCodeCompletionEnabled())
12583       DiagnoseInvalidJumps(Body);
12584 
12585     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
12586       if (!Destructor->getParent()->isDependentType())
12587         CheckDestructor(Destructor);
12588 
12589       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
12590                                              Destructor->getParent());
12591     }
12592 
12593     // If any errors have occurred, clear out any temporaries that may have
12594     // been leftover. This ensures that these temporaries won't be picked up for
12595     // deletion in some later function.
12596     if (getDiagnostics().hasErrorOccurred() ||
12597         getDiagnostics().getSuppressAllDiagnostics()) {
12598       DiscardCleanupsInEvaluationContext();
12599     }
12600     if (!getDiagnostics().hasUncompilableErrorOccurred() &&
12601         !isa<FunctionTemplateDecl>(dcl)) {
12602       // Since the body is valid, issue any analysis-based warnings that are
12603       // enabled.
12604       ActivePolicy = &WP;
12605     }
12606 
12607     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
12608         (!CheckConstexprFunctionDecl(FD) ||
12609          !CheckConstexprFunctionBody(FD, Body)))
12610       FD->setInvalidDecl();
12611 
12612     if (FD && FD->hasAttr<NakedAttr>()) {
12613       for (const Stmt *S : Body->children()) {
12614         // Allow local register variables without initializer as they don't
12615         // require prologue.
12616         bool RegisterVariables = false;
12617         if (auto *DS = dyn_cast<DeclStmt>(S)) {
12618           for (const auto *Decl : DS->decls()) {
12619             if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
12620               RegisterVariables =
12621                   Var->hasAttr<AsmLabelAttr>() && !Var->hasInit();
12622               if (!RegisterVariables)
12623                 break;
12624             }
12625           }
12626         }
12627         if (RegisterVariables)
12628           continue;
12629         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
12630           Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function);
12631           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
12632           FD->setInvalidDecl();
12633           break;
12634         }
12635       }
12636     }
12637 
12638     assert(ExprCleanupObjects.size() ==
12639                ExprEvalContexts.back().NumCleanupObjects &&
12640            "Leftover temporaries in function");
12641     assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function");
12642     assert(MaybeODRUseExprs.empty() &&
12643            "Leftover expressions for odr-use checking");
12644   }
12645 
12646   if (!IsInstantiation)
12647     PopDeclContext();
12648 
12649   PopFunctionScopeInfo(ActivePolicy, dcl);
12650   // If any errors have occurred, clear out any temporaries that may have
12651   // been leftover. This ensures that these temporaries won't be picked up for
12652   // deletion in some later function.
12653   if (getDiagnostics().hasErrorOccurred()) {
12654     DiscardCleanupsInEvaluationContext();
12655   }
12656 
12657   return dcl;
12658 }
12659 
12660 /// When we finish delayed parsing of an attribute, we must attach it to the
12661 /// relevant Decl.
12662 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
12663                                        ParsedAttributes &Attrs) {
12664   // Always attach attributes to the underlying decl.
12665   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
12666     D = TD->getTemplatedDecl();
12667   ProcessDeclAttributeList(S, D, Attrs.getList());
12668 
12669   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
12670     if (Method->isStatic())
12671       checkThisInStaticMemberFunctionAttributes(Method);
12672 }
12673 
12674 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
12675 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
12676 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
12677                                           IdentifierInfo &II, Scope *S) {
12678   Scope *BlockScope = S;
12679   while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent())
12680     BlockScope = BlockScope->getParent();
12681 
12682   // Before we produce a declaration for an implicitly defined
12683   // function, see whether there was a locally-scoped declaration of
12684   // this name as a function or variable. If so, use that
12685   // (non-visible) declaration, and complain about it.
12686   NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II);
12687   if (ExternCPrev) {
12688     // We still need to inject the function into the enclosing block scope so
12689     // that later (non-call) uses can see it.
12690     PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false);
12691 
12692     // C89 footnote 38:
12693     //   If in fact it is not defined as having type "function returning int",
12694     //   the behavior is undefined.
12695     if (!isa<FunctionDecl>(ExternCPrev) ||
12696         !Context.typesAreCompatible(
12697             cast<FunctionDecl>(ExternCPrev)->getType(),
12698             Context.getFunctionNoProtoType(Context.IntTy))) {
12699       Diag(Loc, diag::ext_use_out_of_scope_declaration)
12700           << ExternCPrev << !getLangOpts().C99;
12701       Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
12702       return ExternCPrev;
12703     }
12704   }
12705 
12706   // Extension in C99.  Legal in C90, but warn about it.
12707   // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported.
12708   unsigned diag_id;
12709   if (II.getName().startswith("__builtin_"))
12710     diag_id = diag::warn_builtin_unknown;
12711   else if (getLangOpts().C99 || getLangOpts().OpenCL)
12712     diag_id = diag::ext_implicit_function_decl;
12713   else
12714     diag_id = diag::warn_implicit_function_decl;
12715   Diag(Loc, diag_id) << &II << getLangOpts().OpenCL;
12716 
12717   // If we found a prior declaration of this function, don't bother building
12718   // another one. We've already pushed that one into scope, so there's nothing
12719   // more to do.
12720   if (ExternCPrev)
12721     return ExternCPrev;
12722 
12723   // Because typo correction is expensive, only do it if the implicit
12724   // function declaration is going to be treated as an error.
12725   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
12726     TypoCorrection Corrected;
12727     if (S &&
12728         (Corrected = CorrectTypo(
12729              DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr,
12730              llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError)))
12731       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
12732                    /*ErrorRecovery*/false);
12733   }
12734 
12735   // Set a Declarator for the implicit definition: int foo();
12736   const char *Dummy;
12737   AttributeFactory attrFactory;
12738   DeclSpec DS(attrFactory);
12739   unsigned DiagID;
12740   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
12741                                   Context.getPrintingPolicy());
12742   (void)Error; // Silence warning.
12743   assert(!Error && "Error setting up implicit decl!");
12744   SourceLocation NoLoc;
12745   Declarator D(DS, Declarator::BlockContext);
12746   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
12747                                              /*IsAmbiguous=*/false,
12748                                              /*LParenLoc=*/NoLoc,
12749                                              /*Params=*/nullptr,
12750                                              /*NumParams=*/0,
12751                                              /*EllipsisLoc=*/NoLoc,
12752                                              /*RParenLoc=*/NoLoc,
12753                                              /*TypeQuals=*/0,
12754                                              /*RefQualifierIsLvalueRef=*/true,
12755                                              /*RefQualifierLoc=*/NoLoc,
12756                                              /*ConstQualifierLoc=*/NoLoc,
12757                                              /*VolatileQualifierLoc=*/NoLoc,
12758                                              /*RestrictQualifierLoc=*/NoLoc,
12759                                              /*MutableLoc=*/NoLoc,
12760                                              EST_None,
12761                                              /*ESpecRange=*/SourceRange(),
12762                                              /*Exceptions=*/nullptr,
12763                                              /*ExceptionRanges=*/nullptr,
12764                                              /*NumExceptions=*/0,
12765                                              /*NoexceptExpr=*/nullptr,
12766                                              /*ExceptionSpecTokens=*/nullptr,
12767                                              /*DeclsInPrototype=*/None,
12768                                              Loc, Loc, D),
12769                 DS.getAttributes(),
12770                 SourceLocation());
12771   D.SetIdentifier(&II, Loc);
12772 
12773   // Insert this function into the enclosing block scope.
12774   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D));
12775   FD->setImplicit();
12776 
12777   AddKnownFunctionAttributes(FD);
12778 
12779   return FD;
12780 }
12781 
12782 /// \brief Adds any function attributes that we know a priori based on
12783 /// the declaration of this function.
12784 ///
12785 /// These attributes can apply both to implicitly-declared builtins
12786 /// (like __builtin___printf_chk) or to library-declared functions
12787 /// like NSLog or printf.
12788 ///
12789 /// We need to check for duplicate attributes both here and where user-written
12790 /// attributes are applied to declarations.
12791 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
12792   if (FD->isInvalidDecl())
12793     return;
12794 
12795   // If this is a built-in function, map its builtin attributes to
12796   // actual attributes.
12797   if (unsigned BuiltinID = FD->getBuiltinID()) {
12798     // Handle printf-formatting attributes.
12799     unsigned FormatIdx;
12800     bool HasVAListArg;
12801     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
12802       if (!FD->hasAttr<FormatAttr>()) {
12803         const char *fmt = "printf";
12804         unsigned int NumParams = FD->getNumParams();
12805         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
12806             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
12807           fmt = "NSString";
12808         FD->addAttr(FormatAttr::CreateImplicit(Context,
12809                                                &Context.Idents.get(fmt),
12810                                                FormatIdx+1,
12811                                                HasVAListArg ? 0 : FormatIdx+2,
12812                                                FD->getLocation()));
12813       }
12814     }
12815     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
12816                                              HasVAListArg)) {
12817      if (!FD->hasAttr<FormatAttr>())
12818        FD->addAttr(FormatAttr::CreateImplicit(Context,
12819                                               &Context.Idents.get("scanf"),
12820                                               FormatIdx+1,
12821                                               HasVAListArg ? 0 : FormatIdx+2,
12822                                               FD->getLocation()));
12823     }
12824 
12825     // Mark const if we don't care about errno and that is the only
12826     // thing preventing the function from being const. This allows
12827     // IRgen to use LLVM intrinsics for such functions.
12828     if (!getLangOpts().MathErrno &&
12829         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
12830       if (!FD->hasAttr<ConstAttr>())
12831         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
12832     }
12833 
12834     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
12835         !FD->hasAttr<ReturnsTwiceAttr>())
12836       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
12837                                          FD->getLocation()));
12838     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
12839       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
12840     if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>())
12841       FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation()));
12842     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
12843       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
12844     if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
12845         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
12846       // Add the appropriate attribute, depending on the CUDA compilation mode
12847       // and which target the builtin belongs to. For example, during host
12848       // compilation, aux builtins are __device__, while the rest are __host__.
12849       if (getLangOpts().CUDAIsDevice !=
12850           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
12851         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
12852       else
12853         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
12854     }
12855   }
12856 
12857   // If C++ exceptions are enabled but we are told extern "C" functions cannot
12858   // throw, add an implicit nothrow attribute to any extern "C" function we come
12859   // across.
12860   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
12861       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
12862     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
12863     if (!FPT || FPT->getExceptionSpecType() == EST_None)
12864       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
12865   }
12866 
12867   IdentifierInfo *Name = FD->getIdentifier();
12868   if (!Name)
12869     return;
12870   if ((!getLangOpts().CPlusPlus &&
12871        FD->getDeclContext()->isTranslationUnit()) ||
12872       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
12873        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
12874        LinkageSpecDecl::lang_c)) {
12875     // Okay: this could be a libc/libm/Objective-C function we know
12876     // about.
12877   } else
12878     return;
12879 
12880   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
12881     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
12882     // target-specific builtins, perhaps?
12883     if (!FD->hasAttr<FormatAttr>())
12884       FD->addAttr(FormatAttr::CreateImplicit(Context,
12885                                              &Context.Idents.get("printf"), 2,
12886                                              Name->isStr("vasprintf") ? 0 : 3,
12887                                              FD->getLocation()));
12888   }
12889 
12890   if (Name->isStr("__CFStringMakeConstantString")) {
12891     // We already have a __builtin___CFStringMakeConstantString,
12892     // but builds that use -fno-constant-cfstrings don't go through that.
12893     if (!FD->hasAttr<FormatArgAttr>())
12894       FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1,
12895                                                 FD->getLocation()));
12896   }
12897 }
12898 
12899 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
12900                                     TypeSourceInfo *TInfo) {
12901   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
12902   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
12903 
12904   if (!TInfo) {
12905     assert(D.isInvalidType() && "no declarator info for valid type");
12906     TInfo = Context.getTrivialTypeSourceInfo(T);
12907   }
12908 
12909   // Scope manipulation handled by caller.
12910   TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
12911                                            D.getLocStart(),
12912                                            D.getIdentifierLoc(),
12913                                            D.getIdentifier(),
12914                                            TInfo);
12915 
12916   // Bail out immediately if we have an invalid declaration.
12917   if (D.isInvalidType()) {
12918     NewTD->setInvalidDecl();
12919     return NewTD;
12920   }
12921 
12922   if (D.getDeclSpec().isModulePrivateSpecified()) {
12923     if (CurContext->isFunctionOrMethod())
12924       Diag(NewTD->getLocation(), diag::err_module_private_local)
12925         << 2 << NewTD->getDeclName()
12926         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
12927         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
12928     else
12929       NewTD->setModulePrivate();
12930   }
12931 
12932   // C++ [dcl.typedef]p8:
12933   //   If the typedef declaration defines an unnamed class (or
12934   //   enum), the first typedef-name declared by the declaration
12935   //   to be that class type (or enum type) is used to denote the
12936   //   class type (or enum type) for linkage purposes only.
12937   // We need to check whether the type was declared in the declaration.
12938   switch (D.getDeclSpec().getTypeSpecType()) {
12939   case TST_enum:
12940   case TST_struct:
12941   case TST_interface:
12942   case TST_union:
12943   case TST_class: {
12944     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
12945     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
12946     break;
12947   }
12948 
12949   default:
12950     break;
12951   }
12952 
12953   return NewTD;
12954 }
12955 
12956 /// \brief Check that this is a valid underlying type for an enum declaration.
12957 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
12958   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
12959   QualType T = TI->getType();
12960 
12961   if (T->isDependentType())
12962     return false;
12963 
12964   if (const BuiltinType *BT = T->getAs<BuiltinType>())
12965     if (BT->isInteger())
12966       return false;
12967 
12968   Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
12969   return true;
12970 }
12971 
12972 /// Check whether this is a valid redeclaration of a previous enumeration.
12973 /// \return true if the redeclaration was invalid.
12974 bool Sema::CheckEnumRedeclaration(
12975     SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy,
12976     bool EnumUnderlyingIsImplicit, const EnumDecl *Prev) {
12977   bool IsFixed = !EnumUnderlyingTy.isNull();
12978 
12979   if (IsScoped != Prev->isScoped()) {
12980     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
12981       << Prev->isScoped();
12982     Diag(Prev->getLocation(), diag::note_previous_declaration);
12983     return true;
12984   }
12985 
12986   if (IsFixed && Prev->isFixed()) {
12987     if (!EnumUnderlyingTy->isDependentType() &&
12988         !Prev->getIntegerType()->isDependentType() &&
12989         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
12990                                         Prev->getIntegerType())) {
12991       // TODO: Highlight the underlying type of the redeclaration.
12992       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
12993         << EnumUnderlyingTy << Prev->getIntegerType();
12994       Diag(Prev->getLocation(), diag::note_previous_declaration)
12995           << Prev->getIntegerTypeRange();
12996       return true;
12997     }
12998   } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) {
12999     ;
13000   } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) {
13001     ;
13002   } else if (IsFixed != Prev->isFixed()) {
13003     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
13004       << Prev->isFixed();
13005     Diag(Prev->getLocation(), diag::note_previous_declaration);
13006     return true;
13007   }
13008 
13009   return false;
13010 }
13011 
13012 /// \brief Get diagnostic %select index for tag kind for
13013 /// redeclaration diagnostic message.
13014 /// WARNING: Indexes apply to particular diagnostics only!
13015 ///
13016 /// \returns diagnostic %select index.
13017 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
13018   switch (Tag) {
13019   case TTK_Struct: return 0;
13020   case TTK_Interface: return 1;
13021   case TTK_Class:  return 2;
13022   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
13023   }
13024 }
13025 
13026 /// \brief Determine if tag kind is a class-key compatible with
13027 /// class for redeclaration (class, struct, or __interface).
13028 ///
13029 /// \returns true iff the tag kind is compatible.
13030 static bool isClassCompatTagKind(TagTypeKind Tag)
13031 {
13032   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
13033 }
13034 
13035 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl,
13036                                              TagTypeKind TTK) {
13037   if (isa<TypedefDecl>(PrevDecl))
13038     return NTK_Typedef;
13039   else if (isa<TypeAliasDecl>(PrevDecl))
13040     return NTK_TypeAlias;
13041   else if (isa<ClassTemplateDecl>(PrevDecl))
13042     return NTK_Template;
13043   else if (isa<TypeAliasTemplateDecl>(PrevDecl))
13044     return NTK_TypeAliasTemplate;
13045   else if (isa<TemplateTemplateParmDecl>(PrevDecl))
13046     return NTK_TemplateTemplateArgument;
13047   switch (TTK) {
13048   case TTK_Struct:
13049   case TTK_Interface:
13050   case TTK_Class:
13051     return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct;
13052   case TTK_Union:
13053     return NTK_NonUnion;
13054   case TTK_Enum:
13055     return NTK_NonEnum;
13056   }
13057   llvm_unreachable("invalid TTK");
13058 }
13059 
13060 /// \brief Determine whether a tag with a given kind is acceptable
13061 /// as a redeclaration of the given tag declaration.
13062 ///
13063 /// \returns true if the new tag kind is acceptable, false otherwise.
13064 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
13065                                         TagTypeKind NewTag, bool isDefinition,
13066                                         SourceLocation NewTagLoc,
13067                                         const IdentifierInfo *Name) {
13068   // C++ [dcl.type.elab]p3:
13069   //   The class-key or enum keyword present in the
13070   //   elaborated-type-specifier shall agree in kind with the
13071   //   declaration to which the name in the elaborated-type-specifier
13072   //   refers. This rule also applies to the form of
13073   //   elaborated-type-specifier that declares a class-name or
13074   //   friend class since it can be construed as referring to the
13075   //   definition of the class. Thus, in any
13076   //   elaborated-type-specifier, the enum keyword shall be used to
13077   //   refer to an enumeration (7.2), the union class-key shall be
13078   //   used to refer to a union (clause 9), and either the class or
13079   //   struct class-key shall be used to refer to a class (clause 9)
13080   //   declared using the class or struct class-key.
13081   TagTypeKind OldTag = Previous->getTagKind();
13082   if (!isDefinition || !isClassCompatTagKind(NewTag))
13083     if (OldTag == NewTag)
13084       return true;
13085 
13086   if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
13087     // Warn about the struct/class tag mismatch.
13088     bool isTemplate = false;
13089     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
13090       isTemplate = Record->getDescribedClassTemplate();
13091 
13092     if (inTemplateInstantiation()) {
13093       // In a template instantiation, do not offer fix-its for tag mismatches
13094       // since they usually mess up the template instead of fixing the problem.
13095       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
13096         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13097         << getRedeclDiagFromTagKind(OldTag);
13098       return true;
13099     }
13100 
13101     if (isDefinition) {
13102       // On definitions, check previous tags and issue a fix-it for each
13103       // one that doesn't match the current tag.
13104       if (Previous->getDefinition()) {
13105         // Don't suggest fix-its for redefinitions.
13106         return true;
13107       }
13108 
13109       bool previousMismatch = false;
13110       for (auto I : Previous->redecls()) {
13111         if (I->getTagKind() != NewTag) {
13112           if (!previousMismatch) {
13113             previousMismatch = true;
13114             Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
13115               << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13116               << getRedeclDiagFromTagKind(I->getTagKind());
13117           }
13118           Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
13119             << getRedeclDiagFromTagKind(NewTag)
13120             << FixItHint::CreateReplacement(I->getInnerLocStart(),
13121                  TypeWithKeyword::getTagTypeKindName(NewTag));
13122         }
13123       }
13124       return true;
13125     }
13126 
13127     // Check for a previous definition.  If current tag and definition
13128     // are same type, do nothing.  If no definition, but disagree with
13129     // with previous tag type, give a warning, but no fix-it.
13130     const TagDecl *Redecl = Previous->getDefinition() ?
13131                             Previous->getDefinition() : Previous;
13132     if (Redecl->getTagKind() == NewTag) {
13133       return true;
13134     }
13135 
13136     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
13137       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13138       << getRedeclDiagFromTagKind(OldTag);
13139     Diag(Redecl->getLocation(), diag::note_previous_use);
13140 
13141     // If there is a previous definition, suggest a fix-it.
13142     if (Previous->getDefinition()) {
13143         Diag(NewTagLoc, diag::note_struct_class_suggestion)
13144           << getRedeclDiagFromTagKind(Redecl->getTagKind())
13145           << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
13146                TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
13147     }
13148 
13149     return true;
13150   }
13151   return false;
13152 }
13153 
13154 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
13155 /// from an outer enclosing namespace or file scope inside a friend declaration.
13156 /// This should provide the commented out code in the following snippet:
13157 ///   namespace N {
13158 ///     struct X;
13159 ///     namespace M {
13160 ///       struct Y { friend struct /*N::*/ X; };
13161 ///     }
13162 ///   }
13163 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
13164                                          SourceLocation NameLoc) {
13165   // While the decl is in a namespace, do repeated lookup of that name and see
13166   // if we get the same namespace back.  If we do not, continue until
13167   // translation unit scope, at which point we have a fully qualified NNS.
13168   SmallVector<IdentifierInfo *, 4> Namespaces;
13169   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13170   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
13171     // This tag should be declared in a namespace, which can only be enclosed by
13172     // other namespaces.  Bail if there's an anonymous namespace in the chain.
13173     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
13174     if (!Namespace || Namespace->isAnonymousNamespace())
13175       return FixItHint();
13176     IdentifierInfo *II = Namespace->getIdentifier();
13177     Namespaces.push_back(II);
13178     NamedDecl *Lookup = SemaRef.LookupSingleName(
13179         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
13180     if (Lookup == Namespace)
13181       break;
13182   }
13183 
13184   // Once we have all the namespaces, reverse them to go outermost first, and
13185   // build an NNS.
13186   SmallString<64> Insertion;
13187   llvm::raw_svector_ostream OS(Insertion);
13188   if (DC->isTranslationUnit())
13189     OS << "::";
13190   std::reverse(Namespaces.begin(), Namespaces.end());
13191   for (auto *II : Namespaces)
13192     OS << II->getName() << "::";
13193   return FixItHint::CreateInsertion(NameLoc, Insertion);
13194 }
13195 
13196 /// \brief Determine whether a tag originally declared in context \p OldDC can
13197 /// be redeclared with an unqualfied name in \p NewDC (assuming name lookup
13198 /// found a declaration in \p OldDC as a previous decl, perhaps through a
13199 /// using-declaration).
13200 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
13201                                          DeclContext *NewDC) {
13202   OldDC = OldDC->getRedeclContext();
13203   NewDC = NewDC->getRedeclContext();
13204 
13205   if (OldDC->Equals(NewDC))
13206     return true;
13207 
13208   // In MSVC mode, we allow a redeclaration if the contexts are related (either
13209   // encloses the other).
13210   if (S.getLangOpts().MSVCCompat &&
13211       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
13212     return true;
13213 
13214   return false;
13215 }
13216 
13217 /// \brief This is invoked when we see 'struct foo' or 'struct {'.  In the
13218 /// former case, Name will be non-null.  In the later case, Name will be null.
13219 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
13220 /// reference/declaration/definition of a tag.
13221 ///
13222 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
13223 /// trailing-type-specifier) other than one in an alias-declaration.
13224 ///
13225 /// \param SkipBody If non-null, will be set to indicate if the caller should
13226 /// skip the definition of this tag and treat it as if it were a declaration.
13227 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
13228                      SourceLocation KWLoc, CXXScopeSpec &SS,
13229                      IdentifierInfo *Name, SourceLocation NameLoc,
13230                      AttributeList *Attr, AccessSpecifier AS,
13231                      SourceLocation ModulePrivateLoc,
13232                      MultiTemplateParamsArg TemplateParameterLists,
13233                      bool &OwnedDecl, bool &IsDependent,
13234                      SourceLocation ScopedEnumKWLoc,
13235                      bool ScopedEnumUsesClassTag,
13236                      TypeResult UnderlyingType,
13237                      bool IsTypeSpecifier, bool IsTemplateParamOrArg,
13238                      SkipBodyInfo *SkipBody) {
13239   // If this is not a definition, it must have a name.
13240   IdentifierInfo *OrigName = Name;
13241   assert((Name != nullptr || TUK == TUK_Definition) &&
13242          "Nameless record must be a definition!");
13243   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
13244 
13245   OwnedDecl = false;
13246   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
13247   bool ScopedEnum = ScopedEnumKWLoc.isValid();
13248 
13249   // FIXME: Check member specializations more carefully.
13250   bool isMemberSpecialization = false;
13251   bool Invalid = false;
13252 
13253   // We only need to do this matching if we have template parameters
13254   // or a scope specifier, which also conveniently avoids this work
13255   // for non-C++ cases.
13256   if (TemplateParameterLists.size() > 0 ||
13257       (SS.isNotEmpty() && TUK != TUK_Reference)) {
13258     if (TemplateParameterList *TemplateParams =
13259             MatchTemplateParametersToScopeSpecifier(
13260                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
13261                 TUK == TUK_Friend, isMemberSpecialization, Invalid)) {
13262       if (Kind == TTK_Enum) {
13263         Diag(KWLoc, diag::err_enum_template);
13264         return nullptr;
13265       }
13266 
13267       if (TemplateParams->size() > 0) {
13268         // This is a declaration or definition of a class template (which may
13269         // be a member of another template).
13270 
13271         if (Invalid)
13272           return nullptr;
13273 
13274         OwnedDecl = false;
13275         DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
13276                                                SS, Name, NameLoc, Attr,
13277                                                TemplateParams, AS,
13278                                                ModulePrivateLoc,
13279                                                /*FriendLoc*/SourceLocation(),
13280                                                TemplateParameterLists.size()-1,
13281                                                TemplateParameterLists.data(),
13282                                                SkipBody);
13283         return Result.get();
13284       } else {
13285         // The "template<>" header is extraneous.
13286         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
13287           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
13288         isMemberSpecialization = true;
13289       }
13290     }
13291   }
13292 
13293   // Figure out the underlying type if this a enum declaration. We need to do
13294   // this early, because it's needed to detect if this is an incompatible
13295   // redeclaration.
13296   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
13297   bool EnumUnderlyingIsImplicit = false;
13298 
13299   if (Kind == TTK_Enum) {
13300     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum))
13301       // No underlying type explicitly specified, or we failed to parse the
13302       // type, default to int.
13303       EnumUnderlying = Context.IntTy.getTypePtr();
13304     else if (UnderlyingType.get()) {
13305       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
13306       // integral type; any cv-qualification is ignored.
13307       TypeSourceInfo *TI = nullptr;
13308       GetTypeFromParser(UnderlyingType.get(), &TI);
13309       EnumUnderlying = TI;
13310 
13311       if (CheckEnumUnderlyingType(TI))
13312         // Recover by falling back to int.
13313         EnumUnderlying = Context.IntTy.getTypePtr();
13314 
13315       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
13316                                           UPPC_FixedUnderlyingType))
13317         EnumUnderlying = Context.IntTy.getTypePtr();
13318 
13319     } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
13320       if (getLangOpts().MSVCCompat || TUK == TUK_Definition) {
13321         // Microsoft enums are always of int type.
13322         EnumUnderlying = Context.IntTy.getTypePtr();
13323         EnumUnderlyingIsImplicit = true;
13324       }
13325     }
13326   }
13327 
13328   DeclContext *SearchDC = CurContext;
13329   DeclContext *DC = CurContext;
13330   bool isStdBadAlloc = false;
13331   bool isStdAlignValT = false;
13332 
13333   RedeclarationKind Redecl = forRedeclarationInCurContext();
13334   if (TUK == TUK_Friend || TUK == TUK_Reference)
13335     Redecl = NotForRedeclaration;
13336 
13337   /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C
13338   /// implemented asks for structural equivalence checking, the returned decl
13339   /// here is passed back to the parser, allowing the tag body to be parsed.
13340   auto createTagFromNewDecl = [&]() -> TagDecl * {
13341     assert(!getLangOpts().CPlusPlus && "not meant for C++ usage");
13342     // If there is an identifier, use the location of the identifier as the
13343     // location of the decl, otherwise use the location of the struct/union
13344     // keyword.
13345     SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
13346     TagDecl *New = nullptr;
13347 
13348     if (Kind == TTK_Enum) {
13349       New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr,
13350                              ScopedEnum, ScopedEnumUsesClassTag,
13351                              !EnumUnderlying.isNull());
13352       // If this is an undefined enum, bail.
13353       if (TUK != TUK_Definition && !Invalid)
13354         return nullptr;
13355       if (EnumUnderlying) {
13356         EnumDecl *ED = cast<EnumDecl>(New);
13357         if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>())
13358           ED->setIntegerTypeSourceInfo(TI);
13359         else
13360           ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0));
13361         ED->setPromotionType(ED->getIntegerType());
13362       }
13363     } else { // struct/union
13364       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13365                                nullptr);
13366     }
13367 
13368     if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
13369       // Add alignment attributes if necessary; these attributes are checked
13370       // when the ASTContext lays out the structure.
13371       //
13372       // It is important for implementing the correct semantics that this
13373       // happen here (in ActOnTag). The #pragma pack stack is
13374       // maintained as a result of parser callbacks which can occur at
13375       // many points during the parsing of a struct declaration (because
13376       // the #pragma tokens are effectively skipped over during the
13377       // parsing of the struct).
13378       if (TUK == TUK_Definition) {
13379         AddAlignmentAttributesForRecord(RD);
13380         AddMsStructLayoutForRecord(RD);
13381       }
13382     }
13383     New->setLexicalDeclContext(CurContext);
13384     return New;
13385   };
13386 
13387   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
13388   if (Name && SS.isNotEmpty()) {
13389     // We have a nested-name tag ('struct foo::bar').
13390 
13391     // Check for invalid 'foo::'.
13392     if (SS.isInvalid()) {
13393       Name = nullptr;
13394       goto CreateNewDecl;
13395     }
13396 
13397     // If this is a friend or a reference to a class in a dependent
13398     // context, don't try to make a decl for it.
13399     if (TUK == TUK_Friend || TUK == TUK_Reference) {
13400       DC = computeDeclContext(SS, false);
13401       if (!DC) {
13402         IsDependent = true;
13403         return nullptr;
13404       }
13405     } else {
13406       DC = computeDeclContext(SS, true);
13407       if (!DC) {
13408         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
13409           << SS.getRange();
13410         return nullptr;
13411       }
13412     }
13413 
13414     if (RequireCompleteDeclContext(SS, DC))
13415       return nullptr;
13416 
13417     SearchDC = DC;
13418     // Look-up name inside 'foo::'.
13419     LookupQualifiedName(Previous, DC);
13420 
13421     if (Previous.isAmbiguous())
13422       return nullptr;
13423 
13424     if (Previous.empty()) {
13425       // Name lookup did not find anything. However, if the
13426       // nested-name-specifier refers to the current instantiation,
13427       // and that current instantiation has any dependent base
13428       // classes, we might find something at instantiation time: treat
13429       // this as a dependent elaborated-type-specifier.
13430       // But this only makes any sense for reference-like lookups.
13431       if (Previous.wasNotFoundInCurrentInstantiation() &&
13432           (TUK == TUK_Reference || TUK == TUK_Friend)) {
13433         IsDependent = true;
13434         return nullptr;
13435       }
13436 
13437       // A tag 'foo::bar' must already exist.
13438       Diag(NameLoc, diag::err_not_tag_in_scope)
13439         << Kind << Name << DC << SS.getRange();
13440       Name = nullptr;
13441       Invalid = true;
13442       goto CreateNewDecl;
13443     }
13444   } else if (Name) {
13445     // C++14 [class.mem]p14:
13446     //   If T is the name of a class, then each of the following shall have a
13447     //   name different from T:
13448     //    -- every member of class T that is itself a type
13449     if (TUK != TUK_Reference && TUK != TUK_Friend &&
13450         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
13451       return nullptr;
13452 
13453     // If this is a named struct, check to see if there was a previous forward
13454     // declaration or definition.
13455     // FIXME: We're looking into outer scopes here, even when we
13456     // shouldn't be. Doing so can result in ambiguities that we
13457     // shouldn't be diagnosing.
13458     LookupName(Previous, S);
13459 
13460     // When declaring or defining a tag, ignore ambiguities introduced
13461     // by types using'ed into this scope.
13462     if (Previous.isAmbiguous() &&
13463         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
13464       LookupResult::Filter F = Previous.makeFilter();
13465       while (F.hasNext()) {
13466         NamedDecl *ND = F.next();
13467         if (!ND->getDeclContext()->getRedeclContext()->Equals(
13468                 SearchDC->getRedeclContext()))
13469           F.erase();
13470       }
13471       F.done();
13472     }
13473 
13474     // C++11 [namespace.memdef]p3:
13475     //   If the name in a friend declaration is neither qualified nor
13476     //   a template-id and the declaration is a function or an
13477     //   elaborated-type-specifier, the lookup to determine whether
13478     //   the entity has been previously declared shall not consider
13479     //   any scopes outside the innermost enclosing namespace.
13480     //
13481     // MSVC doesn't implement the above rule for types, so a friend tag
13482     // declaration may be a redeclaration of a type declared in an enclosing
13483     // scope.  They do implement this rule for friend functions.
13484     //
13485     // Does it matter that this should be by scope instead of by
13486     // semantic context?
13487     if (!Previous.empty() && TUK == TUK_Friend) {
13488       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
13489       LookupResult::Filter F = Previous.makeFilter();
13490       bool FriendSawTagOutsideEnclosingNamespace = false;
13491       while (F.hasNext()) {
13492         NamedDecl *ND = F.next();
13493         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13494         if (DC->isFileContext() &&
13495             !EnclosingNS->Encloses(ND->getDeclContext())) {
13496           if (getLangOpts().MSVCCompat)
13497             FriendSawTagOutsideEnclosingNamespace = true;
13498           else
13499             F.erase();
13500         }
13501       }
13502       F.done();
13503 
13504       // Diagnose this MSVC extension in the easy case where lookup would have
13505       // unambiguously found something outside the enclosing namespace.
13506       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
13507         NamedDecl *ND = Previous.getFoundDecl();
13508         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
13509             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
13510       }
13511     }
13512 
13513     // Note:  there used to be some attempt at recovery here.
13514     if (Previous.isAmbiguous())
13515       return nullptr;
13516 
13517     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
13518       // FIXME: This makes sure that we ignore the contexts associated
13519       // with C structs, unions, and enums when looking for a matching
13520       // tag declaration or definition. See the similar lookup tweak
13521       // in Sema::LookupName; is there a better way to deal with this?
13522       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
13523         SearchDC = SearchDC->getParent();
13524     }
13525   }
13526 
13527   if (Previous.isSingleResult() &&
13528       Previous.getFoundDecl()->isTemplateParameter()) {
13529     // Maybe we will complain about the shadowed template parameter.
13530     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
13531     // Just pretend that we didn't see the previous declaration.
13532     Previous.clear();
13533   }
13534 
13535   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
13536       DC->Equals(getStdNamespace())) {
13537     if (Name->isStr("bad_alloc")) {
13538       // This is a declaration of or a reference to "std::bad_alloc".
13539       isStdBadAlloc = true;
13540 
13541       // If std::bad_alloc has been implicitly declared (but made invisible to
13542       // name lookup), fill in this implicit declaration as the previous
13543       // declaration, so that the declarations get chained appropriately.
13544       if (Previous.empty() && StdBadAlloc)
13545         Previous.addDecl(getStdBadAlloc());
13546     } else if (Name->isStr("align_val_t")) {
13547       isStdAlignValT = true;
13548       if (Previous.empty() && StdAlignValT)
13549         Previous.addDecl(getStdAlignValT());
13550     }
13551   }
13552 
13553   // If we didn't find a previous declaration, and this is a reference
13554   // (or friend reference), move to the correct scope.  In C++, we
13555   // also need to do a redeclaration lookup there, just in case
13556   // there's a shadow friend decl.
13557   if (Name && Previous.empty() &&
13558       (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) {
13559     if (Invalid) goto CreateNewDecl;
13560     assert(SS.isEmpty());
13561 
13562     if (TUK == TUK_Reference || IsTemplateParamOrArg) {
13563       // C++ [basic.scope.pdecl]p5:
13564       //   -- for an elaborated-type-specifier of the form
13565       //
13566       //          class-key identifier
13567       //
13568       //      if the elaborated-type-specifier is used in the
13569       //      decl-specifier-seq or parameter-declaration-clause of a
13570       //      function defined in namespace scope, the identifier is
13571       //      declared as a class-name in the namespace that contains
13572       //      the declaration; otherwise, except as a friend
13573       //      declaration, the identifier is declared in the smallest
13574       //      non-class, non-function-prototype scope that contains the
13575       //      declaration.
13576       //
13577       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
13578       // C structs and unions.
13579       //
13580       // It is an error in C++ to declare (rather than define) an enum
13581       // type, including via an elaborated type specifier.  We'll
13582       // diagnose that later; for now, declare the enum in the same
13583       // scope as we would have picked for any other tag type.
13584       //
13585       // GNU C also supports this behavior as part of its incomplete
13586       // enum types extension, while GNU C++ does not.
13587       //
13588       // Find the context where we'll be declaring the tag.
13589       // FIXME: We would like to maintain the current DeclContext as the
13590       // lexical context,
13591       SearchDC = getTagInjectionContext(SearchDC);
13592 
13593       // Find the scope where we'll be declaring the tag.
13594       S = getTagInjectionScope(S, getLangOpts());
13595     } else {
13596       assert(TUK == TUK_Friend);
13597       // C++ [namespace.memdef]p3:
13598       //   If a friend declaration in a non-local class first declares a
13599       //   class or function, the friend class or function is a member of
13600       //   the innermost enclosing namespace.
13601       SearchDC = SearchDC->getEnclosingNamespaceContext();
13602     }
13603 
13604     // In C++, we need to do a redeclaration lookup to properly
13605     // diagnose some problems.
13606     // FIXME: redeclaration lookup is also used (with and without C++) to find a
13607     // hidden declaration so that we don't get ambiguity errors when using a
13608     // type declared by an elaborated-type-specifier.  In C that is not correct
13609     // and we should instead merge compatible types found by lookup.
13610     if (getLangOpts().CPlusPlus) {
13611       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13612       LookupQualifiedName(Previous, SearchDC);
13613     } else {
13614       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13615       LookupName(Previous, S);
13616     }
13617   }
13618 
13619   // If we have a known previous declaration to use, then use it.
13620   if (Previous.empty() && SkipBody && SkipBody->Previous)
13621     Previous.addDecl(SkipBody->Previous);
13622 
13623   if (!Previous.empty()) {
13624     NamedDecl *PrevDecl = Previous.getFoundDecl();
13625     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
13626 
13627     // It's okay to have a tag decl in the same scope as a typedef
13628     // which hides a tag decl in the same scope.  Finding this
13629     // insanity with a redeclaration lookup can only actually happen
13630     // in C++.
13631     //
13632     // This is also okay for elaborated-type-specifiers, which is
13633     // technically forbidden by the current standard but which is
13634     // okay according to the likely resolution of an open issue;
13635     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
13636     if (getLangOpts().CPlusPlus) {
13637       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
13638         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
13639           TagDecl *Tag = TT->getDecl();
13640           if (Tag->getDeclName() == Name &&
13641               Tag->getDeclContext()->getRedeclContext()
13642                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
13643             PrevDecl = Tag;
13644             Previous.clear();
13645             Previous.addDecl(Tag);
13646             Previous.resolveKind();
13647           }
13648         }
13649       }
13650     }
13651 
13652     // If this is a redeclaration of a using shadow declaration, it must
13653     // declare a tag in the same context. In MSVC mode, we allow a
13654     // redefinition if either context is within the other.
13655     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
13656       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
13657       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
13658           isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) &&
13659           !(OldTag && isAcceptableTagRedeclContext(
13660                           *this, OldTag->getDeclContext(), SearchDC))) {
13661         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
13662         Diag(Shadow->getTargetDecl()->getLocation(),
13663              diag::note_using_decl_target);
13664         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
13665             << 0;
13666         // Recover by ignoring the old declaration.
13667         Previous.clear();
13668         goto CreateNewDecl;
13669       }
13670     }
13671 
13672     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
13673       // If this is a use of a previous tag, or if the tag is already declared
13674       // in the same scope (so that the definition/declaration completes or
13675       // rementions the tag), reuse the decl.
13676       if (TUK == TUK_Reference || TUK == TUK_Friend ||
13677           isDeclInScope(DirectPrevDecl, SearchDC, S,
13678                         SS.isNotEmpty() || isMemberSpecialization)) {
13679         // Make sure that this wasn't declared as an enum and now used as a
13680         // struct or something similar.
13681         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
13682                                           TUK == TUK_Definition, KWLoc,
13683                                           Name)) {
13684           bool SafeToContinue
13685             = (PrevTagDecl->getTagKind() != TTK_Enum &&
13686                Kind != TTK_Enum);
13687           if (SafeToContinue)
13688             Diag(KWLoc, diag::err_use_with_wrong_tag)
13689               << Name
13690               << FixItHint::CreateReplacement(SourceRange(KWLoc),
13691                                               PrevTagDecl->getKindName());
13692           else
13693             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
13694           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
13695 
13696           if (SafeToContinue)
13697             Kind = PrevTagDecl->getTagKind();
13698           else {
13699             // Recover by making this an anonymous redefinition.
13700             Name = nullptr;
13701             Previous.clear();
13702             Invalid = true;
13703           }
13704         }
13705 
13706         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
13707           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
13708 
13709           // If this is an elaborated-type-specifier for a scoped enumeration,
13710           // the 'class' keyword is not necessary and not permitted.
13711           if (TUK == TUK_Reference || TUK == TUK_Friend) {
13712             if (ScopedEnum)
13713               Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
13714                 << PrevEnum->isScoped()
13715                 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
13716             return PrevTagDecl;
13717           }
13718 
13719           QualType EnumUnderlyingTy;
13720           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
13721             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
13722           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
13723             EnumUnderlyingTy = QualType(T, 0);
13724 
13725           // All conflicts with previous declarations are recovered by
13726           // returning the previous declaration, unless this is a definition,
13727           // in which case we want the caller to bail out.
13728           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
13729                                      ScopedEnum, EnumUnderlyingTy,
13730                                      EnumUnderlyingIsImplicit, PrevEnum))
13731             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
13732         }
13733 
13734         // C++11 [class.mem]p1:
13735         //   A member shall not be declared twice in the member-specification,
13736         //   except that a nested class or member class template can be declared
13737         //   and then later defined.
13738         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
13739             S->isDeclScope(PrevDecl)) {
13740           Diag(NameLoc, diag::ext_member_redeclared);
13741           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
13742         }
13743 
13744         if (!Invalid) {
13745           // If this is a use, just return the declaration we found, unless
13746           // we have attributes.
13747           if (TUK == TUK_Reference || TUK == TUK_Friend) {
13748             if (Attr) {
13749               // FIXME: Diagnose these attributes. For now, we create a new
13750               // declaration to hold them.
13751             } else if (TUK == TUK_Reference &&
13752                        (PrevTagDecl->getFriendObjectKind() ==
13753                             Decl::FOK_Undeclared ||
13754                         PrevDecl->getOwningModule() != getCurrentModule()) &&
13755                        SS.isEmpty()) {
13756               // This declaration is a reference to an existing entity, but
13757               // has different visibility from that entity: it either makes
13758               // a friend visible or it makes a type visible in a new module.
13759               // In either case, create a new declaration. We only do this if
13760               // the declaration would have meant the same thing if no prior
13761               // declaration were found, that is, if it was found in the same
13762               // scope where we would have injected a declaration.
13763               if (!getTagInjectionContext(CurContext)->getRedeclContext()
13764                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
13765                 return PrevTagDecl;
13766               // This is in the injected scope, create a new declaration in
13767               // that scope.
13768               S = getTagInjectionScope(S, getLangOpts());
13769             } else {
13770               return PrevTagDecl;
13771             }
13772           }
13773 
13774           // Diagnose attempts to redefine a tag.
13775           if (TUK == TUK_Definition) {
13776             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
13777               // If we're defining a specialization and the previous definition
13778               // is from an implicit instantiation, don't emit an error
13779               // here; we'll catch this in the general case below.
13780               bool IsExplicitSpecializationAfterInstantiation = false;
13781               if (isMemberSpecialization) {
13782                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
13783                   IsExplicitSpecializationAfterInstantiation =
13784                     RD->getTemplateSpecializationKind() !=
13785                     TSK_ExplicitSpecialization;
13786                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
13787                   IsExplicitSpecializationAfterInstantiation =
13788                     ED->getTemplateSpecializationKind() !=
13789                     TSK_ExplicitSpecialization;
13790               }
13791 
13792               // Note that clang allows ODR-like semantics for ObjC/C, i.e., do
13793               // not keep more that one definition around (merge them). However,
13794               // ensure the decl passes the structural compatibility check in
13795               // C11 6.2.7/1 (or 6.1.2.6/1 in C89).
13796               NamedDecl *Hidden = nullptr;
13797               if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
13798                 // There is a definition of this tag, but it is not visible. We
13799                 // explicitly make use of C++'s one definition rule here, and
13800                 // assume that this definition is identical to the hidden one
13801                 // we already have. Make the existing definition visible and
13802                 // use it in place of this one.
13803                 if (!getLangOpts().CPlusPlus) {
13804                   // Postpone making the old definition visible until after we
13805                   // complete parsing the new one and do the structural
13806                   // comparison.
13807                   SkipBody->CheckSameAsPrevious = true;
13808                   SkipBody->New = createTagFromNewDecl();
13809                   SkipBody->Previous = Hidden;
13810                 } else {
13811                   SkipBody->ShouldSkip = true;
13812                   makeMergedDefinitionVisible(Hidden);
13813                 }
13814                 return Def;
13815               } else if (!IsExplicitSpecializationAfterInstantiation) {
13816                 // A redeclaration in function prototype scope in C isn't
13817                 // visible elsewhere, so merely issue a warning.
13818                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
13819                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
13820                 else
13821                   Diag(NameLoc, diag::err_redefinition) << Name;
13822                 notePreviousDefinition(Def,
13823                                        NameLoc.isValid() ? NameLoc : KWLoc);
13824                 // If this is a redefinition, recover by making this
13825                 // struct be anonymous, which will make any later
13826                 // references get the previous definition.
13827                 Name = nullptr;
13828                 Previous.clear();
13829                 Invalid = true;
13830               }
13831             } else {
13832               // If the type is currently being defined, complain
13833               // about a nested redefinition.
13834               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
13835               if (TD->isBeingDefined()) {
13836                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
13837                 Diag(PrevTagDecl->getLocation(),
13838                      diag::note_previous_definition);
13839                 Name = nullptr;
13840                 Previous.clear();
13841                 Invalid = true;
13842               }
13843             }
13844 
13845             // Okay, this is definition of a previously declared or referenced
13846             // tag. We're going to create a new Decl for it.
13847           }
13848 
13849           // Okay, we're going to make a redeclaration.  If this is some kind
13850           // of reference, make sure we build the redeclaration in the same DC
13851           // as the original, and ignore the current access specifier.
13852           if (TUK == TUK_Friend || TUK == TUK_Reference) {
13853             SearchDC = PrevTagDecl->getDeclContext();
13854             AS = AS_none;
13855           }
13856         }
13857         // If we get here we have (another) forward declaration or we
13858         // have a definition.  Just create a new decl.
13859 
13860       } else {
13861         // If we get here, this is a definition of a new tag type in a nested
13862         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
13863         // new decl/type.  We set PrevDecl to NULL so that the entities
13864         // have distinct types.
13865         Previous.clear();
13866       }
13867       // If we get here, we're going to create a new Decl. If PrevDecl
13868       // is non-NULL, it's a definition of the tag declared by
13869       // PrevDecl. If it's NULL, we have a new definition.
13870 
13871     // Otherwise, PrevDecl is not a tag, but was found with tag
13872     // lookup.  This is only actually possible in C++, where a few
13873     // things like templates still live in the tag namespace.
13874     } else {
13875       // Use a better diagnostic if an elaborated-type-specifier
13876       // found the wrong kind of type on the first
13877       // (non-redeclaration) lookup.
13878       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
13879           !Previous.isForRedeclaration()) {
13880         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
13881         Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK
13882                                                        << Kind;
13883         Diag(PrevDecl->getLocation(), diag::note_declared_at);
13884         Invalid = true;
13885 
13886       // Otherwise, only diagnose if the declaration is in scope.
13887       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
13888                                 SS.isNotEmpty() || isMemberSpecialization)) {
13889         // do nothing
13890 
13891       // Diagnose implicit declarations introduced by elaborated types.
13892       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
13893         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
13894         Diag(NameLoc, diag::err_tag_reference_conflict) << NTK;
13895         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
13896         Invalid = true;
13897 
13898       // Otherwise it's a declaration.  Call out a particularly common
13899       // case here.
13900       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
13901         unsigned Kind = 0;
13902         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
13903         Diag(NameLoc, diag::err_tag_definition_of_typedef)
13904           << Name << Kind << TND->getUnderlyingType();
13905         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
13906         Invalid = true;
13907 
13908       // Otherwise, diagnose.
13909       } else {
13910         // The tag name clashes with something else in the target scope,
13911         // issue an error and recover by making this tag be anonymous.
13912         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
13913         notePreviousDefinition(PrevDecl, NameLoc);
13914         Name = nullptr;
13915         Invalid = true;
13916       }
13917 
13918       // The existing declaration isn't relevant to us; we're in a
13919       // new scope, so clear out the previous declaration.
13920       Previous.clear();
13921     }
13922   }
13923 
13924 CreateNewDecl:
13925 
13926   TagDecl *PrevDecl = nullptr;
13927   if (Previous.isSingleResult())
13928     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
13929 
13930   // If there is an identifier, use the location of the identifier as the
13931   // location of the decl, otherwise use the location of the struct/union
13932   // keyword.
13933   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
13934 
13935   // Otherwise, create a new declaration. If there is a previous
13936   // declaration of the same entity, the two will be linked via
13937   // PrevDecl.
13938   TagDecl *New;
13939 
13940   bool IsForwardReference = false;
13941   if (Kind == TTK_Enum) {
13942     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
13943     // enum X { A, B, C } D;    D should chain to X.
13944     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
13945                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
13946                            ScopedEnumUsesClassTag, !EnumUnderlying.isNull());
13947 
13948     if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit()))
13949       StdAlignValT = cast<EnumDecl>(New);
13950 
13951     // If this is an undefined enum, warn.
13952     if (TUK != TUK_Definition && !Invalid) {
13953       TagDecl *Def;
13954       if (!EnumUnderlyingIsImplicit &&
13955           (getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
13956           cast<EnumDecl>(New)->isFixed()) {
13957         // C++0x: 7.2p2: opaque-enum-declaration.
13958         // Conflicts are diagnosed above. Do nothing.
13959       }
13960       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
13961         Diag(Loc, diag::ext_forward_ref_enum_def)
13962           << New;
13963         Diag(Def->getLocation(), diag::note_previous_definition);
13964       } else {
13965         unsigned DiagID = diag::ext_forward_ref_enum;
13966         if (getLangOpts().MSVCCompat)
13967           DiagID = diag::ext_ms_forward_ref_enum;
13968         else if (getLangOpts().CPlusPlus)
13969           DiagID = diag::err_forward_ref_enum;
13970         Diag(Loc, DiagID);
13971 
13972         // If this is a forward-declared reference to an enumeration, make a
13973         // note of it; we won't actually be introducing the declaration into
13974         // the declaration context.
13975         if (TUK == TUK_Reference)
13976           IsForwardReference = true;
13977       }
13978     }
13979 
13980     if (EnumUnderlying) {
13981       EnumDecl *ED = cast<EnumDecl>(New);
13982       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
13983         ED->setIntegerTypeSourceInfo(TI);
13984       else
13985         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
13986       ED->setPromotionType(ED->getIntegerType());
13987     }
13988   } else {
13989     // struct/union/class
13990 
13991     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
13992     // struct X { int A; } D;    D should chain to X.
13993     if (getLangOpts().CPlusPlus) {
13994       // FIXME: Look for a way to use RecordDecl for simple structs.
13995       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13996                                   cast_or_null<CXXRecordDecl>(PrevDecl));
13997 
13998       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
13999         StdBadAlloc = cast<CXXRecordDecl>(New);
14000     } else
14001       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
14002                                cast_or_null<RecordDecl>(PrevDecl));
14003   }
14004 
14005   // C++11 [dcl.type]p3:
14006   //   A type-specifier-seq shall not define a class or enumeration [...].
14007   if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) &&
14008       TUK == TUK_Definition) {
14009     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
14010       << Context.getTagDeclType(New);
14011     Invalid = true;
14012   }
14013 
14014   if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition &&
14015       DC->getDeclKind() == Decl::Enum) {
14016     Diag(New->getLocation(), diag::err_type_defined_in_enum)
14017       << Context.getTagDeclType(New);
14018     Invalid = true;
14019   }
14020 
14021   // Maybe add qualifier info.
14022   if (SS.isNotEmpty()) {
14023     if (SS.isSet()) {
14024       // If this is either a declaration or a definition, check the
14025       // nested-name-specifier against the current context. We don't do this
14026       // for explicit specializations, because they have similar checking
14027       // (with more specific diagnostics) in the call to
14028       // CheckMemberSpecialization, below.
14029       if (!isMemberSpecialization &&
14030           (TUK == TUK_Definition || TUK == TUK_Declaration) &&
14031           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc))
14032         Invalid = true;
14033 
14034       New->setQualifierInfo(SS.getWithLocInContext(Context));
14035       if (TemplateParameterLists.size() > 0) {
14036         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
14037       }
14038     }
14039     else
14040       Invalid = true;
14041   }
14042 
14043   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
14044     // Add alignment attributes if necessary; these attributes are checked when
14045     // the ASTContext lays out the structure.
14046     //
14047     // It is important for implementing the correct semantics that this
14048     // happen here (in ActOnTag). The #pragma pack stack is
14049     // maintained as a result of parser callbacks which can occur at
14050     // many points during the parsing of a struct declaration (because
14051     // the #pragma tokens are effectively skipped over during the
14052     // parsing of the struct).
14053     if (TUK == TUK_Definition) {
14054       AddAlignmentAttributesForRecord(RD);
14055       AddMsStructLayoutForRecord(RD);
14056     }
14057   }
14058 
14059   if (ModulePrivateLoc.isValid()) {
14060     if (isMemberSpecialization)
14061       Diag(New->getLocation(), diag::err_module_private_specialization)
14062         << 2
14063         << FixItHint::CreateRemoval(ModulePrivateLoc);
14064     // __module_private__ does not apply to local classes. However, we only
14065     // diagnose this as an error when the declaration specifiers are
14066     // freestanding. Here, we just ignore the __module_private__.
14067     else if (!SearchDC->isFunctionOrMethod())
14068       New->setModulePrivate();
14069   }
14070 
14071   // If this is a specialization of a member class (of a class template),
14072   // check the specialization.
14073   if (isMemberSpecialization && CheckMemberSpecialization(New, Previous))
14074     Invalid = true;
14075 
14076   // If we're declaring or defining a tag in function prototype scope in C,
14077   // note that this type can only be used within the function and add it to
14078   // the list of decls to inject into the function definition scope.
14079   if ((Name || Kind == TTK_Enum) &&
14080       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
14081     if (getLangOpts().CPlusPlus) {
14082       // C++ [dcl.fct]p6:
14083       //   Types shall not be defined in return or parameter types.
14084       if (TUK == TUK_Definition && !IsTypeSpecifier) {
14085         Diag(Loc, diag::err_type_defined_in_param_type)
14086             << Name;
14087         Invalid = true;
14088       }
14089     } else if (!PrevDecl) {
14090       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
14091     }
14092   }
14093 
14094   if (Invalid)
14095     New->setInvalidDecl();
14096 
14097   // Set the lexical context. If the tag has a C++ scope specifier, the
14098   // lexical context will be different from the semantic context.
14099   New->setLexicalDeclContext(CurContext);
14100 
14101   // Mark this as a friend decl if applicable.
14102   // In Microsoft mode, a friend declaration also acts as a forward
14103   // declaration so we always pass true to setObjectOfFriendDecl to make
14104   // the tag name visible.
14105   if (TUK == TUK_Friend)
14106     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
14107 
14108   // Set the access specifier.
14109   if (!Invalid && SearchDC->isRecord())
14110     SetMemberAccessSpecifier(New, PrevDecl, AS);
14111 
14112   if (PrevDecl)
14113     CheckRedeclarationModuleOwnership(New, PrevDecl);
14114 
14115   if (TUK == TUK_Definition)
14116     New->startDefinition();
14117 
14118   if (Attr)
14119     ProcessDeclAttributeList(S, New, Attr);
14120   AddPragmaAttributes(S, New);
14121 
14122   // If this has an identifier, add it to the scope stack.
14123   if (TUK == TUK_Friend) {
14124     // We might be replacing an existing declaration in the lookup tables;
14125     // if so, borrow its access specifier.
14126     if (PrevDecl)
14127       New->setAccess(PrevDecl->getAccess());
14128 
14129     DeclContext *DC = New->getDeclContext()->getRedeclContext();
14130     DC->makeDeclVisibleInContext(New);
14131     if (Name) // can be null along some error paths
14132       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
14133         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
14134   } else if (Name) {
14135     S = getNonFieldDeclScope(S);
14136     PushOnScopeChains(New, S, !IsForwardReference);
14137     if (IsForwardReference)
14138       SearchDC->makeDeclVisibleInContext(New);
14139   } else {
14140     CurContext->addDecl(New);
14141   }
14142 
14143   // If this is the C FILE type, notify the AST context.
14144   if (IdentifierInfo *II = New->getIdentifier())
14145     if (!New->isInvalidDecl() &&
14146         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
14147         II->isStr("FILE"))
14148       Context.setFILEDecl(New);
14149 
14150   if (PrevDecl)
14151     mergeDeclAttributes(New, PrevDecl);
14152 
14153   // If there's a #pragma GCC visibility in scope, set the visibility of this
14154   // record.
14155   AddPushedVisibilityAttribute(New);
14156 
14157   if (isMemberSpecialization && !New->isInvalidDecl())
14158     CompleteMemberSpecialization(New, Previous);
14159 
14160   OwnedDecl = true;
14161   // In C++, don't return an invalid declaration. We can't recover well from
14162   // the cases where we make the type anonymous.
14163   if (Invalid && getLangOpts().CPlusPlus) {
14164     if (New->isBeingDefined())
14165       if (auto RD = dyn_cast<RecordDecl>(New))
14166         RD->completeDefinition();
14167     return nullptr;
14168   } else {
14169     return New;
14170   }
14171 }
14172 
14173 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
14174   AdjustDeclIfTemplate(TagD);
14175   TagDecl *Tag = cast<TagDecl>(TagD);
14176 
14177   // Enter the tag context.
14178   PushDeclContext(S, Tag);
14179 
14180   ActOnDocumentableDecl(TagD);
14181 
14182   // If there's a #pragma GCC visibility in scope, set the visibility of this
14183   // record.
14184   AddPushedVisibilityAttribute(Tag);
14185 }
14186 
14187 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev,
14188                                     SkipBodyInfo &SkipBody) {
14189   if (!hasStructuralCompatLayout(Prev, SkipBody.New))
14190     return false;
14191 
14192   // Make the previous decl visible.
14193   makeMergedDefinitionVisible(SkipBody.Previous);
14194   return true;
14195 }
14196 
14197 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
14198   assert(isa<ObjCContainerDecl>(IDecl) &&
14199          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
14200   DeclContext *OCD = cast<DeclContext>(IDecl);
14201   assert(getContainingDC(OCD) == CurContext &&
14202       "The next DeclContext should be lexically contained in the current one.");
14203   CurContext = OCD;
14204   return IDecl;
14205 }
14206 
14207 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
14208                                            SourceLocation FinalLoc,
14209                                            bool IsFinalSpelledSealed,
14210                                            SourceLocation LBraceLoc) {
14211   AdjustDeclIfTemplate(TagD);
14212   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
14213 
14214   FieldCollector->StartClass();
14215 
14216   if (!Record->getIdentifier())
14217     return;
14218 
14219   if (FinalLoc.isValid())
14220     Record->addAttr(new (Context)
14221                     FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
14222 
14223   // C++ [class]p2:
14224   //   [...] The class-name is also inserted into the scope of the
14225   //   class itself; this is known as the injected-class-name. For
14226   //   purposes of access checking, the injected-class-name is treated
14227   //   as if it were a public member name.
14228   CXXRecordDecl *InjectedClassName
14229     = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
14230                             Record->getLocStart(), Record->getLocation(),
14231                             Record->getIdentifier(),
14232                             /*PrevDecl=*/nullptr,
14233                             /*DelayTypeCreation=*/true);
14234   Context.getTypeDeclType(InjectedClassName, Record);
14235   InjectedClassName->setImplicit();
14236   InjectedClassName->setAccess(AS_public);
14237   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
14238       InjectedClassName->setDescribedClassTemplate(Template);
14239   PushOnScopeChains(InjectedClassName, S);
14240   assert(InjectedClassName->isInjectedClassName() &&
14241          "Broken injected-class-name");
14242 }
14243 
14244 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
14245                                     SourceRange BraceRange) {
14246   AdjustDeclIfTemplate(TagD);
14247   TagDecl *Tag = cast<TagDecl>(TagD);
14248   Tag->setBraceRange(BraceRange);
14249 
14250   // Make sure we "complete" the definition even it is invalid.
14251   if (Tag->isBeingDefined()) {
14252     assert(Tag->isInvalidDecl() && "We should already have completed it");
14253     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14254       RD->completeDefinition();
14255   }
14256 
14257   if (isa<CXXRecordDecl>(Tag)) {
14258     FieldCollector->FinishClass();
14259   }
14260 
14261   // Exit this scope of this tag's definition.
14262   PopDeclContext();
14263 
14264   if (getCurLexicalContext()->isObjCContainer() &&
14265       Tag->getDeclContext()->isFileContext())
14266     Tag->setTopLevelDeclInObjCContainer();
14267 
14268   // Notify the consumer that we've defined a tag.
14269   if (!Tag->isInvalidDecl())
14270     Consumer.HandleTagDeclDefinition(Tag);
14271 }
14272 
14273 void Sema::ActOnObjCContainerFinishDefinition() {
14274   // Exit this scope of this interface definition.
14275   PopDeclContext();
14276 }
14277 
14278 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
14279   assert(DC == CurContext && "Mismatch of container contexts");
14280   OriginalLexicalContext = DC;
14281   ActOnObjCContainerFinishDefinition();
14282 }
14283 
14284 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
14285   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
14286   OriginalLexicalContext = nullptr;
14287 }
14288 
14289 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
14290   AdjustDeclIfTemplate(TagD);
14291   TagDecl *Tag = cast<TagDecl>(TagD);
14292   Tag->setInvalidDecl();
14293 
14294   // Make sure we "complete" the definition even it is invalid.
14295   if (Tag->isBeingDefined()) {
14296     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14297       RD->completeDefinition();
14298   }
14299 
14300   // We're undoing ActOnTagStartDefinition here, not
14301   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
14302   // the FieldCollector.
14303 
14304   PopDeclContext();
14305 }
14306 
14307 // Note that FieldName may be null for anonymous bitfields.
14308 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
14309                                 IdentifierInfo *FieldName,
14310                                 QualType FieldTy, bool IsMsStruct,
14311                                 Expr *BitWidth, bool *ZeroWidth) {
14312   // Default to true; that shouldn't confuse checks for emptiness
14313   if (ZeroWidth)
14314     *ZeroWidth = true;
14315 
14316   // C99 6.7.2.1p4 - verify the field type.
14317   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
14318   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
14319     // Handle incomplete types with specific error.
14320     if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
14321       return ExprError();
14322     if (FieldName)
14323       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
14324         << FieldName << FieldTy << BitWidth->getSourceRange();
14325     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
14326       << FieldTy << BitWidth->getSourceRange();
14327   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
14328                                              UPPC_BitFieldWidth))
14329     return ExprError();
14330 
14331   // If the bit-width is type- or value-dependent, don't try to check
14332   // it now.
14333   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
14334     return BitWidth;
14335 
14336   llvm::APSInt Value;
14337   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
14338   if (ICE.isInvalid())
14339     return ICE;
14340   BitWidth = ICE.get();
14341 
14342   if (Value != 0 && ZeroWidth)
14343     *ZeroWidth = false;
14344 
14345   // Zero-width bitfield is ok for anonymous field.
14346   if (Value == 0 && FieldName)
14347     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
14348 
14349   if (Value.isSigned() && Value.isNegative()) {
14350     if (FieldName)
14351       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
14352                << FieldName << Value.toString(10);
14353     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
14354       << Value.toString(10);
14355   }
14356 
14357   if (!FieldTy->isDependentType()) {
14358     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
14359     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
14360     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
14361 
14362     // Over-wide bitfields are an error in C or when using the MSVC bitfield
14363     // ABI.
14364     bool CStdConstraintViolation =
14365         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
14366     bool MSBitfieldViolation =
14367         Value.ugt(TypeStorageSize) &&
14368         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
14369     if (CStdConstraintViolation || MSBitfieldViolation) {
14370       unsigned DiagWidth =
14371           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
14372       if (FieldName)
14373         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
14374                << FieldName << (unsigned)Value.getZExtValue()
14375                << !CStdConstraintViolation << DiagWidth;
14376 
14377       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
14378              << (unsigned)Value.getZExtValue() << !CStdConstraintViolation
14379              << DiagWidth;
14380     }
14381 
14382     // Warn on types where the user might conceivably expect to get all
14383     // specified bits as value bits: that's all integral types other than
14384     // 'bool'.
14385     if (BitfieldIsOverwide && !FieldTy->isBooleanType()) {
14386       if (FieldName)
14387         Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
14388             << FieldName << (unsigned)Value.getZExtValue()
14389             << (unsigned)TypeWidth;
14390       else
14391         Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)
14392             << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;
14393     }
14394   }
14395 
14396   return BitWidth;
14397 }
14398 
14399 /// ActOnField - Each field of a C struct/union is passed into this in order
14400 /// to create a FieldDecl object for it.
14401 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
14402                        Declarator &D, Expr *BitfieldWidth) {
14403   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
14404                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
14405                                /*InitStyle=*/ICIS_NoInit, AS_public);
14406   return Res;
14407 }
14408 
14409 /// HandleField - Analyze a field of a C struct or a C++ data member.
14410 ///
14411 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
14412                              SourceLocation DeclStart,
14413                              Declarator &D, Expr *BitWidth,
14414                              InClassInitStyle InitStyle,
14415                              AccessSpecifier AS) {
14416   if (D.isDecompositionDeclarator()) {
14417     const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
14418     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
14419       << Decomp.getSourceRange();
14420     return nullptr;
14421   }
14422 
14423   IdentifierInfo *II = D.getIdentifier();
14424   SourceLocation Loc = DeclStart;
14425   if (II) Loc = D.getIdentifierLoc();
14426 
14427   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14428   QualType T = TInfo->getType();
14429   if (getLangOpts().CPlusPlus) {
14430     CheckExtraCXXDefaultArguments(D);
14431 
14432     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
14433                                         UPPC_DataMemberType)) {
14434       D.setInvalidType();
14435       T = Context.IntTy;
14436       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
14437     }
14438   }
14439 
14440   // TR 18037 does not allow fields to be declared with address spaces.
14441   if (T.getQualifiers().hasAddressSpace() ||
14442       T->isDependentAddressSpaceType() ||
14443       T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) {
14444     Diag(Loc, diag::err_field_with_address_space);
14445     D.setInvalidType();
14446   }
14447 
14448   // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
14449   // used as structure or union field: image, sampler, event or block types.
14450   if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() ||
14451                           T->isSamplerT() || T->isBlockPointerType())) {
14452     Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
14453     D.setInvalidType();
14454   }
14455 
14456   DiagnoseFunctionSpecifiers(D.getDeclSpec());
14457 
14458   if (D.getDeclSpec().isInlineSpecified())
14459     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
14460         << getLangOpts().CPlusPlus1z;
14461   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
14462     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
14463          diag::err_invalid_thread)
14464       << DeclSpec::getSpecifierName(TSCS);
14465 
14466   // Check to see if this name was declared as a member previously
14467   NamedDecl *PrevDecl = nullptr;
14468   LookupResult Previous(*this, II, Loc, LookupMemberName,
14469                         ForVisibleRedeclaration);
14470   LookupName(Previous, S);
14471   switch (Previous.getResultKind()) {
14472     case LookupResult::Found:
14473     case LookupResult::FoundUnresolvedValue:
14474       PrevDecl = Previous.getAsSingle<NamedDecl>();
14475       break;
14476 
14477     case LookupResult::FoundOverloaded:
14478       PrevDecl = Previous.getRepresentativeDecl();
14479       break;
14480 
14481     case LookupResult::NotFound:
14482     case LookupResult::NotFoundInCurrentInstantiation:
14483     case LookupResult::Ambiguous:
14484       break;
14485   }
14486   Previous.suppressDiagnostics();
14487 
14488   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14489     // Maybe we will complain about the shadowed template parameter.
14490     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
14491     // Just pretend that we didn't see the previous declaration.
14492     PrevDecl = nullptr;
14493   }
14494 
14495   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
14496     PrevDecl = nullptr;
14497 
14498   bool Mutable
14499     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
14500   SourceLocation TSSL = D.getLocStart();
14501   FieldDecl *NewFD
14502     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
14503                      TSSL, AS, PrevDecl, &D);
14504 
14505   if (NewFD->isInvalidDecl())
14506     Record->setInvalidDecl();
14507 
14508   if (D.getDeclSpec().isModulePrivateSpecified())
14509     NewFD->setModulePrivate();
14510 
14511   if (NewFD->isInvalidDecl() && PrevDecl) {
14512     // Don't introduce NewFD into scope; there's already something
14513     // with the same name in the same scope.
14514   } else if (II) {
14515     PushOnScopeChains(NewFD, S);
14516   } else
14517     Record->addDecl(NewFD);
14518 
14519   return NewFD;
14520 }
14521 
14522 /// \brief Build a new FieldDecl and check its well-formedness.
14523 ///
14524 /// This routine builds a new FieldDecl given the fields name, type,
14525 /// record, etc. \p PrevDecl should refer to any previous declaration
14526 /// with the same name and in the same scope as the field to be
14527 /// created.
14528 ///
14529 /// \returns a new FieldDecl.
14530 ///
14531 /// \todo The Declarator argument is a hack. It will be removed once
14532 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
14533                                 TypeSourceInfo *TInfo,
14534                                 RecordDecl *Record, SourceLocation Loc,
14535                                 bool Mutable, Expr *BitWidth,
14536                                 InClassInitStyle InitStyle,
14537                                 SourceLocation TSSL,
14538                                 AccessSpecifier AS, NamedDecl *PrevDecl,
14539                                 Declarator *D) {
14540   IdentifierInfo *II = Name.getAsIdentifierInfo();
14541   bool InvalidDecl = false;
14542   if (D) InvalidDecl = D->isInvalidType();
14543 
14544   // If we receive a broken type, recover by assuming 'int' and
14545   // marking this declaration as invalid.
14546   if (T.isNull()) {
14547     InvalidDecl = true;
14548     T = Context.IntTy;
14549   }
14550 
14551   QualType EltTy = Context.getBaseElementType(T);
14552   if (!EltTy->isDependentType()) {
14553     if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
14554       // Fields of incomplete type force their record to be invalid.
14555       Record->setInvalidDecl();
14556       InvalidDecl = true;
14557     } else {
14558       NamedDecl *Def;
14559       EltTy->isIncompleteType(&Def);
14560       if (Def && Def->isInvalidDecl()) {
14561         Record->setInvalidDecl();
14562         InvalidDecl = true;
14563       }
14564     }
14565   }
14566 
14567   // OpenCL v1.2 s6.9.c: bitfields are not supported.
14568   if (BitWidth && getLangOpts().OpenCL) {
14569     Diag(Loc, diag::err_opencl_bitfields);
14570     InvalidDecl = true;
14571   }
14572 
14573   // C99 6.7.2.1p8: A member of a structure or union may have any type other
14574   // than a variably modified type.
14575   if (!InvalidDecl && T->isVariablyModifiedType()) {
14576     bool SizeIsNegative;
14577     llvm::APSInt Oversized;
14578 
14579     TypeSourceInfo *FixedTInfo =
14580       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
14581                                                     SizeIsNegative,
14582                                                     Oversized);
14583     if (FixedTInfo) {
14584       Diag(Loc, diag::warn_illegal_constant_array_size);
14585       TInfo = FixedTInfo;
14586       T = FixedTInfo->getType();
14587     } else {
14588       if (SizeIsNegative)
14589         Diag(Loc, diag::err_typecheck_negative_array_size);
14590       else if (Oversized.getBoolValue())
14591         Diag(Loc, diag::err_array_too_large)
14592           << Oversized.toString(10);
14593       else
14594         Diag(Loc, diag::err_typecheck_field_variable_size);
14595       InvalidDecl = true;
14596     }
14597   }
14598 
14599   // Fields can not have abstract class types
14600   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
14601                                              diag::err_abstract_type_in_decl,
14602                                              AbstractFieldType))
14603     InvalidDecl = true;
14604 
14605   bool ZeroWidth = false;
14606   if (InvalidDecl)
14607     BitWidth = nullptr;
14608   // If this is declared as a bit-field, check the bit-field.
14609   if (BitWidth) {
14610     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
14611                               &ZeroWidth).get();
14612     if (!BitWidth) {
14613       InvalidDecl = true;
14614       BitWidth = nullptr;
14615       ZeroWidth = false;
14616     }
14617   }
14618 
14619   // Check that 'mutable' is consistent with the type of the declaration.
14620   if (!InvalidDecl && Mutable) {
14621     unsigned DiagID = 0;
14622     if (T->isReferenceType())
14623       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
14624                                         : diag::err_mutable_reference;
14625     else if (T.isConstQualified())
14626       DiagID = diag::err_mutable_const;
14627 
14628     if (DiagID) {
14629       SourceLocation ErrLoc = Loc;
14630       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
14631         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
14632       Diag(ErrLoc, DiagID);
14633       if (DiagID != diag::ext_mutable_reference) {
14634         Mutable = false;
14635         InvalidDecl = true;
14636       }
14637     }
14638   }
14639 
14640   // C++11 [class.union]p8 (DR1460):
14641   //   At most one variant member of a union may have a
14642   //   brace-or-equal-initializer.
14643   if (InitStyle != ICIS_NoInit)
14644     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
14645 
14646   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
14647                                        BitWidth, Mutable, InitStyle);
14648   if (InvalidDecl)
14649     NewFD->setInvalidDecl();
14650 
14651   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
14652     Diag(Loc, diag::err_duplicate_member) << II;
14653     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
14654     NewFD->setInvalidDecl();
14655   }
14656 
14657   if (!InvalidDecl && getLangOpts().CPlusPlus) {
14658     if (Record->isUnion()) {
14659       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
14660         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
14661         if (RDecl->getDefinition()) {
14662           // C++ [class.union]p1: An object of a class with a non-trivial
14663           // constructor, a non-trivial copy constructor, a non-trivial
14664           // destructor, or a non-trivial copy assignment operator
14665           // cannot be a member of a union, nor can an array of such
14666           // objects.
14667           if (CheckNontrivialField(NewFD))
14668             NewFD->setInvalidDecl();
14669         }
14670       }
14671 
14672       // C++ [class.union]p1: If a union contains a member of reference type,
14673       // the program is ill-formed, except when compiling with MSVC extensions
14674       // enabled.
14675       if (EltTy->isReferenceType()) {
14676         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
14677                                     diag::ext_union_member_of_reference_type :
14678                                     diag::err_union_member_of_reference_type)
14679           << NewFD->getDeclName() << EltTy;
14680         if (!getLangOpts().MicrosoftExt)
14681           NewFD->setInvalidDecl();
14682       }
14683     }
14684   }
14685 
14686   // FIXME: We need to pass in the attributes given an AST
14687   // representation, not a parser representation.
14688   if (D) {
14689     // FIXME: The current scope is almost... but not entirely... correct here.
14690     ProcessDeclAttributes(getCurScope(), NewFD, *D);
14691 
14692     if (NewFD->hasAttrs())
14693       CheckAlignasUnderalignment(NewFD);
14694   }
14695 
14696   // In auto-retain/release, infer strong retension for fields of
14697   // retainable type.
14698   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
14699     NewFD->setInvalidDecl();
14700 
14701   if (T.isObjCGCWeak())
14702     Diag(Loc, diag::warn_attribute_weak_on_field);
14703 
14704   NewFD->setAccess(AS);
14705   return NewFD;
14706 }
14707 
14708 bool Sema::CheckNontrivialField(FieldDecl *FD) {
14709   assert(FD);
14710   assert(getLangOpts().CPlusPlus && "valid check only for C++");
14711 
14712   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
14713     return false;
14714 
14715   QualType EltTy = Context.getBaseElementType(FD->getType());
14716   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
14717     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
14718     if (RDecl->getDefinition()) {
14719       // We check for copy constructors before constructors
14720       // because otherwise we'll never get complaints about
14721       // copy constructors.
14722 
14723       CXXSpecialMember member = CXXInvalid;
14724       // We're required to check for any non-trivial constructors. Since the
14725       // implicit default constructor is suppressed if there are any
14726       // user-declared constructors, we just need to check that there is a
14727       // trivial default constructor and a trivial copy constructor. (We don't
14728       // worry about move constructors here, since this is a C++98 check.)
14729       if (RDecl->hasNonTrivialCopyConstructor())
14730         member = CXXCopyConstructor;
14731       else if (!RDecl->hasTrivialDefaultConstructor())
14732         member = CXXDefaultConstructor;
14733       else if (RDecl->hasNonTrivialCopyAssignment())
14734         member = CXXCopyAssignment;
14735       else if (RDecl->hasNonTrivialDestructor())
14736         member = CXXDestructor;
14737 
14738       if (member != CXXInvalid) {
14739         if (!getLangOpts().CPlusPlus11 &&
14740             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
14741           // Objective-C++ ARC: it is an error to have a non-trivial field of
14742           // a union. However, system headers in Objective-C programs
14743           // occasionally have Objective-C lifetime objects within unions,
14744           // and rather than cause the program to fail, we make those
14745           // members unavailable.
14746           SourceLocation Loc = FD->getLocation();
14747           if (getSourceManager().isInSystemHeader(Loc)) {
14748             if (!FD->hasAttr<UnavailableAttr>())
14749               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
14750                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
14751             return false;
14752           }
14753         }
14754 
14755         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
14756                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
14757                diag::err_illegal_union_or_anon_struct_member)
14758           << FD->getParent()->isUnion() << FD->getDeclName() << member;
14759         DiagnoseNontrivial(RDecl, member);
14760         return !getLangOpts().CPlusPlus11;
14761       }
14762     }
14763   }
14764 
14765   return false;
14766 }
14767 
14768 /// TranslateIvarVisibility - Translate visibility from a token ID to an
14769 ///  AST enum value.
14770 static ObjCIvarDecl::AccessControl
14771 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
14772   switch (ivarVisibility) {
14773   default: llvm_unreachable("Unknown visitibility kind");
14774   case tok::objc_private: return ObjCIvarDecl::Private;
14775   case tok::objc_public: return ObjCIvarDecl::Public;
14776   case tok::objc_protected: return ObjCIvarDecl::Protected;
14777   case tok::objc_package: return ObjCIvarDecl::Package;
14778   }
14779 }
14780 
14781 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
14782 /// in order to create an IvarDecl object for it.
14783 Decl *Sema::ActOnIvar(Scope *S,
14784                                 SourceLocation DeclStart,
14785                                 Declarator &D, Expr *BitfieldWidth,
14786                                 tok::ObjCKeywordKind Visibility) {
14787 
14788   IdentifierInfo *II = D.getIdentifier();
14789   Expr *BitWidth = (Expr*)BitfieldWidth;
14790   SourceLocation Loc = DeclStart;
14791   if (II) Loc = D.getIdentifierLoc();
14792 
14793   // FIXME: Unnamed fields can be handled in various different ways, for
14794   // example, unnamed unions inject all members into the struct namespace!
14795 
14796   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14797   QualType T = TInfo->getType();
14798 
14799   if (BitWidth) {
14800     // 6.7.2.1p3, 6.7.2.1p4
14801     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
14802     if (!BitWidth)
14803       D.setInvalidType();
14804   } else {
14805     // Not a bitfield.
14806 
14807     // validate II.
14808 
14809   }
14810   if (T->isReferenceType()) {
14811     Diag(Loc, diag::err_ivar_reference_type);
14812     D.setInvalidType();
14813   }
14814   // C99 6.7.2.1p8: A member of a structure or union may have any type other
14815   // than a variably modified type.
14816   else if (T->isVariablyModifiedType()) {
14817     Diag(Loc, diag::err_typecheck_ivar_variable_size);
14818     D.setInvalidType();
14819   }
14820 
14821   // Get the visibility (access control) for this ivar.
14822   ObjCIvarDecl::AccessControl ac =
14823     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
14824                                         : ObjCIvarDecl::None;
14825   // Must set ivar's DeclContext to its enclosing interface.
14826   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
14827   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
14828     return nullptr;
14829   ObjCContainerDecl *EnclosingContext;
14830   if (ObjCImplementationDecl *IMPDecl =
14831       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
14832     if (LangOpts.ObjCRuntime.isFragile()) {
14833     // Case of ivar declared in an implementation. Context is that of its class.
14834       EnclosingContext = IMPDecl->getClassInterface();
14835       assert(EnclosingContext && "Implementation has no class interface!");
14836     }
14837     else
14838       EnclosingContext = EnclosingDecl;
14839   } else {
14840     if (ObjCCategoryDecl *CDecl =
14841         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
14842       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
14843         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
14844         return nullptr;
14845       }
14846     }
14847     EnclosingContext = EnclosingDecl;
14848   }
14849 
14850   // Construct the decl.
14851   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
14852                                              DeclStart, Loc, II, T,
14853                                              TInfo, ac, (Expr *)BitfieldWidth);
14854 
14855   if (II) {
14856     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
14857                                            ForVisibleRedeclaration);
14858     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
14859         && !isa<TagDecl>(PrevDecl)) {
14860       Diag(Loc, diag::err_duplicate_member) << II;
14861       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
14862       NewID->setInvalidDecl();
14863     }
14864   }
14865 
14866   // Process attributes attached to the ivar.
14867   ProcessDeclAttributes(S, NewID, D);
14868 
14869   if (D.isInvalidType())
14870     NewID->setInvalidDecl();
14871 
14872   // In ARC, infer 'retaining' for ivars of retainable type.
14873   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
14874     NewID->setInvalidDecl();
14875 
14876   if (D.getDeclSpec().isModulePrivateSpecified())
14877     NewID->setModulePrivate();
14878 
14879   if (II) {
14880     // FIXME: When interfaces are DeclContexts, we'll need to add
14881     // these to the interface.
14882     S->AddDecl(NewID);
14883     IdResolver.AddDecl(NewID);
14884   }
14885 
14886   if (LangOpts.ObjCRuntime.isNonFragile() &&
14887       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
14888     Diag(Loc, diag::warn_ivars_in_interface);
14889 
14890   return NewID;
14891 }
14892 
14893 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for
14894 /// class and class extensions. For every class \@interface and class
14895 /// extension \@interface, if the last ivar is a bitfield of any type,
14896 /// then add an implicit `char :0` ivar to the end of that interface.
14897 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
14898                              SmallVectorImpl<Decl *> &AllIvarDecls) {
14899   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
14900     return;
14901 
14902   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
14903   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
14904 
14905   if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
14906     return;
14907   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
14908   if (!ID) {
14909     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
14910       if (!CD->IsClassExtension())
14911         return;
14912     }
14913     // No need to add this to end of @implementation.
14914     else
14915       return;
14916   }
14917   // All conditions are met. Add a new bitfield to the tail end of ivars.
14918   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
14919   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
14920 
14921   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
14922                               DeclLoc, DeclLoc, nullptr,
14923                               Context.CharTy,
14924                               Context.getTrivialTypeSourceInfo(Context.CharTy,
14925                                                                DeclLoc),
14926                               ObjCIvarDecl::Private, BW,
14927                               true);
14928   AllIvarDecls.push_back(Ivar);
14929 }
14930 
14931 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
14932                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
14933                        SourceLocation RBrac, AttributeList *Attr) {
14934   assert(EnclosingDecl && "missing record or interface decl");
14935 
14936   // If this is an Objective-C @implementation or category and we have
14937   // new fields here we should reset the layout of the interface since
14938   // it will now change.
14939   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
14940     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
14941     switch (DC->getKind()) {
14942     default: break;
14943     case Decl::ObjCCategory:
14944       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
14945       break;
14946     case Decl::ObjCImplementation:
14947       Context.
14948         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
14949       break;
14950     }
14951   }
14952 
14953   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
14954 
14955   // Start counting up the number of named members; make sure to include
14956   // members of anonymous structs and unions in the total.
14957   unsigned NumNamedMembers = 0;
14958   if (Record) {
14959     for (const auto *I : Record->decls()) {
14960       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
14961         if (IFD->getDeclName())
14962           ++NumNamedMembers;
14963     }
14964   }
14965 
14966   // Verify that all the fields are okay.
14967   SmallVector<FieldDecl*, 32> RecFields;
14968 
14969   bool ObjCFieldLifetimeErrReported = false;
14970   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
14971        i != end; ++i) {
14972     FieldDecl *FD = cast<FieldDecl>(*i);
14973 
14974     // Get the type for the field.
14975     const Type *FDTy = FD->getType().getTypePtr();
14976 
14977     if (!FD->isAnonymousStructOrUnion()) {
14978       // Remember all fields written by the user.
14979       RecFields.push_back(FD);
14980     }
14981 
14982     // If the field is already invalid for some reason, don't emit more
14983     // diagnostics about it.
14984     if (FD->isInvalidDecl()) {
14985       EnclosingDecl->setInvalidDecl();
14986       continue;
14987     }
14988 
14989     // C99 6.7.2.1p2:
14990     //   A structure or union shall not contain a member with
14991     //   incomplete or function type (hence, a structure shall not
14992     //   contain an instance of itself, but may contain a pointer to
14993     //   an instance of itself), except that the last member of a
14994     //   structure with more than one named member may have incomplete
14995     //   array type; such a structure (and any union containing,
14996     //   possibly recursively, a member that is such a structure)
14997     //   shall not be a member of a structure or an element of an
14998     //   array.
14999     if (FDTy->isFunctionType()) {
15000       // Field declared as a function.
15001       Diag(FD->getLocation(), diag::err_field_declared_as_function)
15002         << FD->getDeclName();
15003       FD->setInvalidDecl();
15004       EnclosingDecl->setInvalidDecl();
15005       continue;
15006     } else if (FDTy->isIncompleteArrayType() && Record &&
15007                ((i + 1 == Fields.end() && !Record->isUnion()) ||
15008                 ((getLangOpts().MicrosoftExt ||
15009                   getLangOpts().CPlusPlus) &&
15010                  (i + 1 == Fields.end() || Record->isUnion())))) {
15011       // Flexible array member.
15012       // Microsoft and g++ is more permissive regarding flexible array.
15013       // It will accept flexible array in union and also
15014       // as the sole element of a struct/class.
15015       unsigned DiagID = 0;
15016       if (Record->isUnion())
15017         DiagID = getLangOpts().MicrosoftExt
15018                      ? diag::ext_flexible_array_union_ms
15019                      : getLangOpts().CPlusPlus
15020                            ? diag::ext_flexible_array_union_gnu
15021                            : diag::err_flexible_array_union;
15022       else if (NumNamedMembers < 1)
15023         DiagID = getLangOpts().MicrosoftExt
15024                      ? diag::ext_flexible_array_empty_aggregate_ms
15025                      : getLangOpts().CPlusPlus
15026                            ? diag::ext_flexible_array_empty_aggregate_gnu
15027                            : diag::err_flexible_array_empty_aggregate;
15028 
15029       if (DiagID)
15030         Diag(FD->getLocation(), DiagID) << FD->getDeclName()
15031                                         << Record->getTagKind();
15032       // While the layout of types that contain virtual bases is not specified
15033       // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
15034       // virtual bases after the derived members.  This would make a flexible
15035       // array member declared at the end of an object not adjacent to the end
15036       // of the type.
15037       if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
15038         if (RD->getNumVBases() != 0)
15039           Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
15040             << FD->getDeclName() << Record->getTagKind();
15041       if (!getLangOpts().C99)
15042         Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
15043           << FD->getDeclName() << Record->getTagKind();
15044 
15045       // If the element type has a non-trivial destructor, we would not
15046       // implicitly destroy the elements, so disallow it for now.
15047       //
15048       // FIXME: GCC allows this. We should probably either implicitly delete
15049       // the destructor of the containing class, or just allow this.
15050       QualType BaseElem = Context.getBaseElementType(FD->getType());
15051       if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
15052         Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
15053           << FD->getDeclName() << FD->getType();
15054         FD->setInvalidDecl();
15055         EnclosingDecl->setInvalidDecl();
15056         continue;
15057       }
15058       // Okay, we have a legal flexible array member at the end of the struct.
15059       Record->setHasFlexibleArrayMember(true);
15060     } else if (!FDTy->isDependentType() &&
15061                RequireCompleteType(FD->getLocation(), FD->getType(),
15062                                    diag::err_field_incomplete)) {
15063       // Incomplete type
15064       FD->setInvalidDecl();
15065       EnclosingDecl->setInvalidDecl();
15066       continue;
15067     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
15068       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
15069         // A type which contains a flexible array member is considered to be a
15070         // flexible array member.
15071         Record->setHasFlexibleArrayMember(true);
15072         if (!Record->isUnion()) {
15073           // If this is a struct/class and this is not the last element, reject
15074           // it.  Note that GCC supports variable sized arrays in the middle of
15075           // structures.
15076           if (i + 1 != Fields.end())
15077             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
15078               << FD->getDeclName() << FD->getType();
15079           else {
15080             // We support flexible arrays at the end of structs in
15081             // other structs as an extension.
15082             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
15083               << FD->getDeclName();
15084           }
15085         }
15086       }
15087       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
15088           RequireNonAbstractType(FD->getLocation(), FD->getType(),
15089                                  diag::err_abstract_type_in_decl,
15090                                  AbstractIvarType)) {
15091         // Ivars can not have abstract class types
15092         FD->setInvalidDecl();
15093       }
15094       if (Record && FDTTy->getDecl()->hasObjectMember())
15095         Record->setHasObjectMember(true);
15096       if (Record && FDTTy->getDecl()->hasVolatileMember())
15097         Record->setHasVolatileMember(true);
15098     } else if (FDTy->isObjCObjectType()) {
15099       /// A field cannot be an Objective-c object
15100       Diag(FD->getLocation(), diag::err_statically_allocated_object)
15101         << FixItHint::CreateInsertion(FD->getLocation(), "*");
15102       QualType T = Context.getObjCObjectPointerType(FD->getType());
15103       FD->setType(T);
15104     } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
15105                Record && !ObjCFieldLifetimeErrReported &&
15106                (!getLangOpts().CPlusPlus || Record->isUnion())) {
15107       // It's an error in ARC or Weak if a field has lifetime.
15108       // We don't want to report this in a system header, though,
15109       // so we just make the field unavailable.
15110       // FIXME: that's really not sufficient; we need to make the type
15111       // itself invalid to, say, initialize or copy.
15112       QualType T = FD->getType();
15113       if (T.hasNonTrivialObjCLifetime()) {
15114         SourceLocation loc = FD->getLocation();
15115         if (getSourceManager().isInSystemHeader(loc)) {
15116           if (!FD->hasAttr<UnavailableAttr>()) {
15117             FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
15118                           UnavailableAttr::IR_ARCFieldWithOwnership, loc));
15119           }
15120         } else {
15121           Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag)
15122             << T->isBlockPointerType() << Record->getTagKind();
15123         }
15124         ObjCFieldLifetimeErrReported = true;
15125       }
15126     } else if (getLangOpts().ObjC1 &&
15127                getLangOpts().getGC() != LangOptions::NonGC &&
15128                Record && !Record->hasObjectMember()) {
15129       if (FD->getType()->isObjCObjectPointerType() ||
15130           FD->getType().isObjCGCStrong())
15131         Record->setHasObjectMember(true);
15132       else if (Context.getAsArrayType(FD->getType())) {
15133         QualType BaseType = Context.getBaseElementType(FD->getType());
15134         if (BaseType->isRecordType() &&
15135             BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
15136           Record->setHasObjectMember(true);
15137         else if (BaseType->isObjCObjectPointerType() ||
15138                  BaseType.isObjCGCStrong())
15139                Record->setHasObjectMember(true);
15140       }
15141     }
15142     if (Record && FD->getType().isVolatileQualified())
15143       Record->setHasVolatileMember(true);
15144     // Keep track of the number of named members.
15145     if (FD->getIdentifier())
15146       ++NumNamedMembers;
15147   }
15148 
15149   // Okay, we successfully defined 'Record'.
15150   if (Record) {
15151     bool Completed = false;
15152     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15153       if (!CXXRecord->isInvalidDecl()) {
15154         // Set access bits correctly on the directly-declared conversions.
15155         for (CXXRecordDecl::conversion_iterator
15156                I = CXXRecord->conversion_begin(),
15157                E = CXXRecord->conversion_end(); I != E; ++I)
15158           I.setAccess((*I)->getAccess());
15159       }
15160 
15161       if (!CXXRecord->isDependentType()) {
15162         if (CXXRecord->hasUserDeclaredDestructor()) {
15163           // Adjust user-defined destructor exception spec.
15164           if (getLangOpts().CPlusPlus11)
15165             AdjustDestructorExceptionSpec(CXXRecord,
15166                                           CXXRecord->getDestructor());
15167         }
15168 
15169         if (!CXXRecord->isInvalidDecl()) {
15170           // Add any implicitly-declared members to this class.
15171           AddImplicitlyDeclaredMembersToClass(CXXRecord);
15172 
15173           // If we have virtual base classes, we may end up finding multiple
15174           // final overriders for a given virtual function. Check for this
15175           // problem now.
15176           if (CXXRecord->getNumVBases()) {
15177             CXXFinalOverriderMap FinalOverriders;
15178             CXXRecord->getFinalOverriders(FinalOverriders);
15179 
15180             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
15181                                              MEnd = FinalOverriders.end();
15182                  M != MEnd; ++M) {
15183               for (OverridingMethods::iterator SO = M->second.begin(),
15184                                             SOEnd = M->second.end();
15185                    SO != SOEnd; ++SO) {
15186                 assert(SO->second.size() > 0 &&
15187                        "Virtual function without overridding functions?");
15188                 if (SO->second.size() == 1)
15189                   continue;
15190 
15191                 // C++ [class.virtual]p2:
15192                 //   In a derived class, if a virtual member function of a base
15193                 //   class subobject has more than one final overrider the
15194                 //   program is ill-formed.
15195                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
15196                   << (const NamedDecl *)M->first << Record;
15197                 Diag(M->first->getLocation(),
15198                      diag::note_overridden_virtual_function);
15199                 for (OverridingMethods::overriding_iterator
15200                           OM = SO->second.begin(),
15201                        OMEnd = SO->second.end();
15202                      OM != OMEnd; ++OM)
15203                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
15204                     << (const NamedDecl *)M->first << OM->Method->getParent();
15205 
15206                 Record->setInvalidDecl();
15207               }
15208             }
15209             CXXRecord->completeDefinition(&FinalOverriders);
15210             Completed = true;
15211           }
15212         }
15213       }
15214     }
15215 
15216     if (!Completed)
15217       Record->completeDefinition();
15218 
15219     // We may have deferred checking for a deleted destructor. Check now.
15220     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15221       auto *Dtor = CXXRecord->getDestructor();
15222       if (Dtor && Dtor->isImplicit() &&
15223           ShouldDeleteSpecialMember(Dtor, CXXDestructor)) {
15224         CXXRecord->setImplicitDestructorIsDeleted();
15225         SetDeclDeleted(Dtor, CXXRecord->getLocation());
15226       }
15227     }
15228 
15229     if (Record->hasAttrs()) {
15230       CheckAlignasUnderalignment(Record);
15231 
15232       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
15233         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
15234                                            IA->getRange(), IA->getBestCase(),
15235                                            IA->getSemanticSpelling());
15236     }
15237 
15238     // Check if the structure/union declaration is a type that can have zero
15239     // size in C. For C this is a language extension, for C++ it may cause
15240     // compatibility problems.
15241     bool CheckForZeroSize;
15242     if (!getLangOpts().CPlusPlus) {
15243       CheckForZeroSize = true;
15244     } else {
15245       // For C++ filter out types that cannot be referenced in C code.
15246       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
15247       CheckForZeroSize =
15248           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
15249           !CXXRecord->isDependentType() &&
15250           CXXRecord->isCLike();
15251     }
15252     if (CheckForZeroSize) {
15253       bool ZeroSize = true;
15254       bool IsEmpty = true;
15255       unsigned NonBitFields = 0;
15256       for (RecordDecl::field_iterator I = Record->field_begin(),
15257                                       E = Record->field_end();
15258            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
15259         IsEmpty = false;
15260         if (I->isUnnamedBitfield()) {
15261           if (I->getBitWidthValue(Context) > 0)
15262             ZeroSize = false;
15263         } else {
15264           ++NonBitFields;
15265           QualType FieldType = I->getType();
15266           if (FieldType->isIncompleteType() ||
15267               !Context.getTypeSizeInChars(FieldType).isZero())
15268             ZeroSize = false;
15269         }
15270       }
15271 
15272       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
15273       // allowed in C++, but warn if its declaration is inside
15274       // extern "C" block.
15275       if (ZeroSize) {
15276         Diag(RecLoc, getLangOpts().CPlusPlus ?
15277                          diag::warn_zero_size_struct_union_in_extern_c :
15278                          diag::warn_zero_size_struct_union_compat)
15279           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
15280       }
15281 
15282       // Structs without named members are extension in C (C99 6.7.2.1p7),
15283       // but are accepted by GCC.
15284       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
15285         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
15286                                diag::ext_no_named_members_in_struct_union)
15287           << Record->isUnion();
15288       }
15289     }
15290   } else {
15291     ObjCIvarDecl **ClsFields =
15292       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
15293     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
15294       ID->setEndOfDefinitionLoc(RBrac);
15295       // Add ivar's to class's DeclContext.
15296       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15297         ClsFields[i]->setLexicalDeclContext(ID);
15298         ID->addDecl(ClsFields[i]);
15299       }
15300       // Must enforce the rule that ivars in the base classes may not be
15301       // duplicates.
15302       if (ID->getSuperClass())
15303         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
15304     } else if (ObjCImplementationDecl *IMPDecl =
15305                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
15306       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
15307       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
15308         // Ivar declared in @implementation never belongs to the implementation.
15309         // Only it is in implementation's lexical context.
15310         ClsFields[I]->setLexicalDeclContext(IMPDecl);
15311       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
15312       IMPDecl->setIvarLBraceLoc(LBrac);
15313       IMPDecl->setIvarRBraceLoc(RBrac);
15314     } else if (ObjCCategoryDecl *CDecl =
15315                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
15316       // case of ivars in class extension; all other cases have been
15317       // reported as errors elsewhere.
15318       // FIXME. Class extension does not have a LocEnd field.
15319       // CDecl->setLocEnd(RBrac);
15320       // Add ivar's to class extension's DeclContext.
15321       // Diagnose redeclaration of private ivars.
15322       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
15323       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15324         if (IDecl) {
15325           if (const ObjCIvarDecl *ClsIvar =
15326               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
15327             Diag(ClsFields[i]->getLocation(),
15328                  diag::err_duplicate_ivar_declaration);
15329             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
15330             continue;
15331           }
15332           for (const auto *Ext : IDecl->known_extensions()) {
15333             if (const ObjCIvarDecl *ClsExtIvar
15334                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
15335               Diag(ClsFields[i]->getLocation(),
15336                    diag::err_duplicate_ivar_declaration);
15337               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
15338               continue;
15339             }
15340           }
15341         }
15342         ClsFields[i]->setLexicalDeclContext(CDecl);
15343         CDecl->addDecl(ClsFields[i]);
15344       }
15345       CDecl->setIvarLBraceLoc(LBrac);
15346       CDecl->setIvarRBraceLoc(RBrac);
15347     }
15348   }
15349 
15350   if (Attr)
15351     ProcessDeclAttributeList(S, Record, Attr);
15352 }
15353 
15354 /// \brief Determine whether the given integral value is representable within
15355 /// the given type T.
15356 static bool isRepresentableIntegerValue(ASTContext &Context,
15357                                         llvm::APSInt &Value,
15358                                         QualType T) {
15359   assert(T->isIntegralType(Context) && "Integral type required!");
15360   unsigned BitWidth = Context.getIntWidth(T);
15361 
15362   if (Value.isUnsigned() || Value.isNonNegative()) {
15363     if (T->isSignedIntegerOrEnumerationType())
15364       --BitWidth;
15365     return Value.getActiveBits() <= BitWidth;
15366   }
15367   return Value.getMinSignedBits() <= BitWidth;
15368 }
15369 
15370 // \brief Given an integral type, return the next larger integral type
15371 // (or a NULL type of no such type exists).
15372 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
15373   // FIXME: Int128/UInt128 support, which also needs to be introduced into
15374   // enum checking below.
15375   assert(T->isIntegralType(Context) && "Integral type required!");
15376   const unsigned NumTypes = 4;
15377   QualType SignedIntegralTypes[NumTypes] = {
15378     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
15379   };
15380   QualType UnsignedIntegralTypes[NumTypes] = {
15381     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
15382     Context.UnsignedLongLongTy
15383   };
15384 
15385   unsigned BitWidth = Context.getTypeSize(T);
15386   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
15387                                                         : UnsignedIntegralTypes;
15388   for (unsigned I = 0; I != NumTypes; ++I)
15389     if (Context.getTypeSize(Types[I]) > BitWidth)
15390       return Types[I];
15391 
15392   return QualType();
15393 }
15394 
15395 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
15396                                           EnumConstantDecl *LastEnumConst,
15397                                           SourceLocation IdLoc,
15398                                           IdentifierInfo *Id,
15399                                           Expr *Val) {
15400   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
15401   llvm::APSInt EnumVal(IntWidth);
15402   QualType EltTy;
15403 
15404   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
15405     Val = nullptr;
15406 
15407   if (Val)
15408     Val = DefaultLvalueConversion(Val).get();
15409 
15410   if (Val) {
15411     if (Enum->isDependentType() || Val->isTypeDependent())
15412       EltTy = Context.DependentTy;
15413     else {
15414       if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
15415           !getLangOpts().MSVCCompat) {
15416         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
15417         // constant-expression in the enumerator-definition shall be a converted
15418         // constant expression of the underlying type.
15419         EltTy = Enum->getIntegerType();
15420         ExprResult Converted =
15421           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
15422                                            CCEK_Enumerator);
15423         if (Converted.isInvalid())
15424           Val = nullptr;
15425         else
15426           Val = Converted.get();
15427       } else if (!Val->isValueDependent() &&
15428                  !(Val = VerifyIntegerConstantExpression(Val,
15429                                                          &EnumVal).get())) {
15430         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
15431       } else {
15432         if (Enum->isFixed()) {
15433           EltTy = Enum->getIntegerType();
15434 
15435           // In Obj-C and Microsoft mode, require the enumeration value to be
15436           // representable in the underlying type of the enumeration. In C++11,
15437           // we perform a non-narrowing conversion as part of converted constant
15438           // expression checking.
15439           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15440             if (getLangOpts().MSVCCompat) {
15441               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
15442               Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
15443             } else
15444               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
15445           } else
15446             Val = ImpCastExprToType(Val, EltTy,
15447                                     EltTy->isBooleanType() ?
15448                                     CK_IntegralToBoolean : CK_IntegralCast)
15449                     .get();
15450         } else if (getLangOpts().CPlusPlus) {
15451           // C++11 [dcl.enum]p5:
15452           //   If the underlying type is not fixed, the type of each enumerator
15453           //   is the type of its initializing value:
15454           //     - If an initializer is specified for an enumerator, the
15455           //       initializing value has the same type as the expression.
15456           EltTy = Val->getType();
15457         } else {
15458           // C99 6.7.2.2p2:
15459           //   The expression that defines the value of an enumeration constant
15460           //   shall be an integer constant expression that has a value
15461           //   representable as an int.
15462 
15463           // Complain if the value is not representable in an int.
15464           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
15465             Diag(IdLoc, diag::ext_enum_value_not_int)
15466               << EnumVal.toString(10) << Val->getSourceRange()
15467               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
15468           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
15469             // Force the type of the expression to 'int'.
15470             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
15471           }
15472           EltTy = Val->getType();
15473         }
15474       }
15475     }
15476   }
15477 
15478   if (!Val) {
15479     if (Enum->isDependentType())
15480       EltTy = Context.DependentTy;
15481     else if (!LastEnumConst) {
15482       // C++0x [dcl.enum]p5:
15483       //   If the underlying type is not fixed, the type of each enumerator
15484       //   is the type of its initializing value:
15485       //     - If no initializer is specified for the first enumerator, the
15486       //       initializing value has an unspecified integral type.
15487       //
15488       // GCC uses 'int' for its unspecified integral type, as does
15489       // C99 6.7.2.2p3.
15490       if (Enum->isFixed()) {
15491         EltTy = Enum->getIntegerType();
15492       }
15493       else {
15494         EltTy = Context.IntTy;
15495       }
15496     } else {
15497       // Assign the last value + 1.
15498       EnumVal = LastEnumConst->getInitVal();
15499       ++EnumVal;
15500       EltTy = LastEnumConst->getType();
15501 
15502       // Check for overflow on increment.
15503       if (EnumVal < LastEnumConst->getInitVal()) {
15504         // C++0x [dcl.enum]p5:
15505         //   If the underlying type is not fixed, the type of each enumerator
15506         //   is the type of its initializing value:
15507         //
15508         //     - Otherwise the type of the initializing value is the same as
15509         //       the type of the initializing value of the preceding enumerator
15510         //       unless the incremented value is not representable in that type,
15511         //       in which case the type is an unspecified integral type
15512         //       sufficient to contain the incremented value. If no such type
15513         //       exists, the program is ill-formed.
15514         QualType T = getNextLargerIntegralType(Context, EltTy);
15515         if (T.isNull() || Enum->isFixed()) {
15516           // There is no integral type larger enough to represent this
15517           // value. Complain, then allow the value to wrap around.
15518           EnumVal = LastEnumConst->getInitVal();
15519           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
15520           ++EnumVal;
15521           if (Enum->isFixed())
15522             // When the underlying type is fixed, this is ill-formed.
15523             Diag(IdLoc, diag::err_enumerator_wrapped)
15524               << EnumVal.toString(10)
15525               << EltTy;
15526           else
15527             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
15528               << EnumVal.toString(10);
15529         } else {
15530           EltTy = T;
15531         }
15532 
15533         // Retrieve the last enumerator's value, extent that type to the
15534         // type that is supposed to be large enough to represent the incremented
15535         // value, then increment.
15536         EnumVal = LastEnumConst->getInitVal();
15537         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15538         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
15539         ++EnumVal;
15540 
15541         // If we're not in C++, diagnose the overflow of enumerator values,
15542         // which in C99 means that the enumerator value is not representable in
15543         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
15544         // permits enumerator values that are representable in some larger
15545         // integral type.
15546         if (!getLangOpts().CPlusPlus && !T.isNull())
15547           Diag(IdLoc, diag::warn_enum_value_overflow);
15548       } else if (!getLangOpts().CPlusPlus &&
15549                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15550         // Enforce C99 6.7.2.2p2 even when we compute the next value.
15551         Diag(IdLoc, diag::ext_enum_value_not_int)
15552           << EnumVal.toString(10) << 1;
15553       }
15554     }
15555   }
15556 
15557   if (!EltTy->isDependentType()) {
15558     // Make the enumerator value match the signedness and size of the
15559     // enumerator's type.
15560     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
15561     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15562   }
15563 
15564   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
15565                                   Val, EnumVal);
15566 }
15567 
15568 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
15569                                                 SourceLocation IILoc) {
15570   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
15571       !getLangOpts().CPlusPlus)
15572     return SkipBodyInfo();
15573 
15574   // We have an anonymous enum definition. Look up the first enumerator to
15575   // determine if we should merge the definition with an existing one and
15576   // skip the body.
15577   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
15578                                          forRedeclarationInCurContext());
15579   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
15580   if (!PrevECD)
15581     return SkipBodyInfo();
15582 
15583   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
15584   NamedDecl *Hidden;
15585   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
15586     SkipBodyInfo Skip;
15587     Skip.Previous = Hidden;
15588     return Skip;
15589   }
15590 
15591   return SkipBodyInfo();
15592 }
15593 
15594 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
15595                               SourceLocation IdLoc, IdentifierInfo *Id,
15596                               AttributeList *Attr,
15597                               SourceLocation EqualLoc, Expr *Val) {
15598   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
15599   EnumConstantDecl *LastEnumConst =
15600     cast_or_null<EnumConstantDecl>(lastEnumConst);
15601 
15602   // The scope passed in may not be a decl scope.  Zip up the scope tree until
15603   // we find one that is.
15604   S = getNonFieldDeclScope(S);
15605 
15606   // Verify that there isn't already something declared with this name in this
15607   // scope.
15608   NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
15609                                          ForVisibleRedeclaration);
15610   if (PrevDecl && PrevDecl->isTemplateParameter()) {
15611     // Maybe we will complain about the shadowed template parameter.
15612     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
15613     // Just pretend that we didn't see the previous declaration.
15614     PrevDecl = nullptr;
15615   }
15616 
15617   // C++ [class.mem]p15:
15618   // If T is the name of a class, then each of the following shall have a name
15619   // different from T:
15620   // - every enumerator of every member of class T that is an unscoped
15621   // enumerated type
15622   if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped())
15623     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
15624                             DeclarationNameInfo(Id, IdLoc));
15625 
15626   EnumConstantDecl *New =
15627     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
15628   if (!New)
15629     return nullptr;
15630 
15631   if (PrevDecl) {
15632     // When in C++, we may get a TagDecl with the same name; in this case the
15633     // enum constant will 'hide' the tag.
15634     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
15635            "Received TagDecl when not in C++!");
15636     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
15637       if (isa<EnumConstantDecl>(PrevDecl))
15638         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
15639       else
15640         Diag(IdLoc, diag::err_redefinition) << Id;
15641       notePreviousDefinition(PrevDecl, IdLoc);
15642       return nullptr;
15643     }
15644   }
15645 
15646   // Process attributes.
15647   if (Attr) ProcessDeclAttributeList(S, New, Attr);
15648   AddPragmaAttributes(S, New);
15649 
15650   // Register this decl in the current scope stack.
15651   New->setAccess(TheEnumDecl->getAccess());
15652   PushOnScopeChains(New, S);
15653 
15654   ActOnDocumentableDecl(New);
15655 
15656   return New;
15657 }
15658 
15659 // Returns true when the enum initial expression does not trigger the
15660 // duplicate enum warning.  A few common cases are exempted as follows:
15661 // Element2 = Element1
15662 // Element2 = Element1 + 1
15663 // Element2 = Element1 - 1
15664 // Where Element2 and Element1 are from the same enum.
15665 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
15666   Expr *InitExpr = ECD->getInitExpr();
15667   if (!InitExpr)
15668     return true;
15669   InitExpr = InitExpr->IgnoreImpCasts();
15670 
15671   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
15672     if (!BO->isAdditiveOp())
15673       return true;
15674     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
15675     if (!IL)
15676       return true;
15677     if (IL->getValue() != 1)
15678       return true;
15679 
15680     InitExpr = BO->getLHS();
15681   }
15682 
15683   // This checks if the elements are from the same enum.
15684   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
15685   if (!DRE)
15686     return true;
15687 
15688   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
15689   if (!EnumConstant)
15690     return true;
15691 
15692   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
15693       Enum)
15694     return true;
15695 
15696   return false;
15697 }
15698 
15699 namespace {
15700 struct DupKey {
15701   int64_t val;
15702   bool isTombstoneOrEmptyKey;
15703   DupKey(int64_t val, bool isTombstoneOrEmptyKey)
15704     : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
15705 };
15706 
15707 static DupKey GetDupKey(const llvm::APSInt& Val) {
15708   return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
15709                 false);
15710 }
15711 
15712 struct DenseMapInfoDupKey {
15713   static DupKey getEmptyKey() { return DupKey(0, true); }
15714   static DupKey getTombstoneKey() { return DupKey(1, true); }
15715   static unsigned getHashValue(const DupKey Key) {
15716     return (unsigned)(Key.val * 37);
15717   }
15718   static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
15719     return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
15720            LHS.val == RHS.val;
15721   }
15722 };
15723 } // end anonymous namespace
15724 
15725 // Emits a warning when an element is implicitly set a value that
15726 // a previous element has already been set to.
15727 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
15728                                         EnumDecl *Enum,
15729                                         QualType EnumType) {
15730   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
15731     return;
15732   // Avoid anonymous enums
15733   if (!Enum->getIdentifier())
15734     return;
15735 
15736   // Only check for small enums.
15737   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
15738     return;
15739 
15740   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
15741   typedef SmallVector<ECDVector *, 3> DuplicatesVector;
15742 
15743   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
15744   typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
15745           ValueToVectorMap;
15746 
15747   DuplicatesVector DupVector;
15748   ValueToVectorMap EnumMap;
15749 
15750   // Populate the EnumMap with all values represented by enum constants without
15751   // an initialier.
15752   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15753     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
15754 
15755     // Null EnumConstantDecl means a previous diagnostic has been emitted for
15756     // this constant.  Skip this enum since it may be ill-formed.
15757     if (!ECD) {
15758       return;
15759     }
15760 
15761     if (ECD->getInitExpr())
15762       continue;
15763 
15764     DupKey Key = GetDupKey(ECD->getInitVal());
15765     DeclOrVector &Entry = EnumMap[Key];
15766 
15767     // First time encountering this value.
15768     if (Entry.isNull())
15769       Entry = ECD;
15770   }
15771 
15772   // Create vectors for any values that has duplicates.
15773   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15774     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
15775     if (!ValidDuplicateEnum(ECD, Enum))
15776       continue;
15777 
15778     DupKey Key = GetDupKey(ECD->getInitVal());
15779 
15780     DeclOrVector& Entry = EnumMap[Key];
15781     if (Entry.isNull())
15782       continue;
15783 
15784     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
15785       // Ensure constants are different.
15786       if (D == ECD)
15787         continue;
15788 
15789       // Create new vector and push values onto it.
15790       ECDVector *Vec = new ECDVector();
15791       Vec->push_back(D);
15792       Vec->push_back(ECD);
15793 
15794       // Update entry to point to the duplicates vector.
15795       Entry = Vec;
15796 
15797       // Store the vector somewhere we can consult later for quick emission of
15798       // diagnostics.
15799       DupVector.push_back(Vec);
15800       continue;
15801     }
15802 
15803     ECDVector *Vec = Entry.get<ECDVector*>();
15804     // Make sure constants are not added more than once.
15805     if (*Vec->begin() == ECD)
15806       continue;
15807 
15808     Vec->push_back(ECD);
15809   }
15810 
15811   // Emit diagnostics.
15812   for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
15813                                   DupVectorEnd = DupVector.end();
15814        DupVectorIter != DupVectorEnd; ++DupVectorIter) {
15815     ECDVector *Vec = *DupVectorIter;
15816     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
15817 
15818     // Emit warning for one enum constant.
15819     ECDVector::iterator I = Vec->begin();
15820     S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
15821       << (*I)->getName() << (*I)->getInitVal().toString(10)
15822       << (*I)->getSourceRange();
15823     ++I;
15824 
15825     // Emit one note for each of the remaining enum constants with
15826     // the same value.
15827     for (ECDVector::iterator E = Vec->end(); I != E; ++I)
15828       S.Diag((*I)->getLocation(), diag::note_duplicate_element)
15829         << (*I)->getName() << (*I)->getInitVal().toString(10)
15830         << (*I)->getSourceRange();
15831     delete Vec;
15832   }
15833 }
15834 
15835 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
15836                              bool AllowMask) const {
15837   assert(ED->isClosedFlag() && "looking for value in non-flag or open enum");
15838   assert(ED->isCompleteDefinition() && "expected enum definition");
15839 
15840   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
15841   llvm::APInt &FlagBits = R.first->second;
15842 
15843   if (R.second) {
15844     for (auto *E : ED->enumerators()) {
15845       const auto &EVal = E->getInitVal();
15846       // Only single-bit enumerators introduce new flag values.
15847       if (EVal.isPowerOf2())
15848         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
15849     }
15850   }
15851 
15852   // A value is in a flag enum if either its bits are a subset of the enum's
15853   // flag bits (the first condition) or we are allowing masks and the same is
15854   // true of its complement (the second condition). When masks are allowed, we
15855   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
15856   //
15857   // While it's true that any value could be used as a mask, the assumption is
15858   // that a mask will have all of the insignificant bits set. Anything else is
15859   // likely a logic error.
15860   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
15861   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
15862 }
15863 
15864 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange,
15865                          Decl *EnumDeclX,
15866                          ArrayRef<Decl *> Elements,
15867                          Scope *S, AttributeList *Attr) {
15868   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
15869   QualType EnumType = Context.getTypeDeclType(Enum);
15870 
15871   if (Attr)
15872     ProcessDeclAttributeList(S, Enum, Attr);
15873 
15874   if (Enum->isDependentType()) {
15875     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15876       EnumConstantDecl *ECD =
15877         cast_or_null<EnumConstantDecl>(Elements[i]);
15878       if (!ECD) continue;
15879 
15880       ECD->setType(EnumType);
15881     }
15882 
15883     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
15884     return;
15885   }
15886 
15887   // TODO: If the result value doesn't fit in an int, it must be a long or long
15888   // long value.  ISO C does not support this, but GCC does as an extension,
15889   // emit a warning.
15890   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
15891   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
15892   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
15893 
15894   // Verify that all the values are okay, compute the size of the values, and
15895   // reverse the list.
15896   unsigned NumNegativeBits = 0;
15897   unsigned NumPositiveBits = 0;
15898 
15899   // Keep track of whether all elements have type int.
15900   bool AllElementsInt = true;
15901 
15902   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
15903     EnumConstantDecl *ECD =
15904       cast_or_null<EnumConstantDecl>(Elements[i]);
15905     if (!ECD) continue;  // Already issued a diagnostic.
15906 
15907     const llvm::APSInt &InitVal = ECD->getInitVal();
15908 
15909     // Keep track of the size of positive and negative values.
15910     if (InitVal.isUnsigned() || InitVal.isNonNegative())
15911       NumPositiveBits = std::max(NumPositiveBits,
15912                                  (unsigned)InitVal.getActiveBits());
15913     else
15914       NumNegativeBits = std::max(NumNegativeBits,
15915                                  (unsigned)InitVal.getMinSignedBits());
15916 
15917     // Keep track of whether every enum element has type int (very commmon).
15918     if (AllElementsInt)
15919       AllElementsInt = ECD->getType() == Context.IntTy;
15920   }
15921 
15922   // Figure out the type that should be used for this enum.
15923   QualType BestType;
15924   unsigned BestWidth;
15925 
15926   // C++0x N3000 [conv.prom]p3:
15927   //   An rvalue of an unscoped enumeration type whose underlying
15928   //   type is not fixed can be converted to an rvalue of the first
15929   //   of the following types that can represent all the values of
15930   //   the enumeration: int, unsigned int, long int, unsigned long
15931   //   int, long long int, or unsigned long long int.
15932   // C99 6.4.4.3p2:
15933   //   An identifier declared as an enumeration constant has type int.
15934   // The C99 rule is modified by a gcc extension
15935   QualType BestPromotionType;
15936 
15937   bool Packed = Enum->hasAttr<PackedAttr>();
15938   // -fshort-enums is the equivalent to specifying the packed attribute on all
15939   // enum definitions.
15940   if (LangOpts.ShortEnums)
15941     Packed = true;
15942 
15943   if (Enum->isFixed()) {
15944     BestType = Enum->getIntegerType();
15945     if (BestType->isPromotableIntegerType())
15946       BestPromotionType = Context.getPromotedIntegerType(BestType);
15947     else
15948       BestPromotionType = BestType;
15949 
15950     BestWidth = Context.getIntWidth(BestType);
15951   }
15952   else if (NumNegativeBits) {
15953     // If there is a negative value, figure out the smallest integer type (of
15954     // int/long/longlong) that fits.
15955     // If it's packed, check also if it fits a char or a short.
15956     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
15957       BestType = Context.SignedCharTy;
15958       BestWidth = CharWidth;
15959     } else if (Packed && NumNegativeBits <= ShortWidth &&
15960                NumPositiveBits < ShortWidth) {
15961       BestType = Context.ShortTy;
15962       BestWidth = ShortWidth;
15963     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
15964       BestType = Context.IntTy;
15965       BestWidth = IntWidth;
15966     } else {
15967       BestWidth = Context.getTargetInfo().getLongWidth();
15968 
15969       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
15970         BestType = Context.LongTy;
15971       } else {
15972         BestWidth = Context.getTargetInfo().getLongLongWidth();
15973 
15974         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
15975           Diag(Enum->getLocation(), diag::ext_enum_too_large);
15976         BestType = Context.LongLongTy;
15977       }
15978     }
15979     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
15980   } else {
15981     // If there is no negative value, figure out the smallest type that fits
15982     // all of the enumerator values.
15983     // If it's packed, check also if it fits a char or a short.
15984     if (Packed && NumPositiveBits <= CharWidth) {
15985       BestType = Context.UnsignedCharTy;
15986       BestPromotionType = Context.IntTy;
15987       BestWidth = CharWidth;
15988     } else if (Packed && NumPositiveBits <= ShortWidth) {
15989       BestType = Context.UnsignedShortTy;
15990       BestPromotionType = Context.IntTy;
15991       BestWidth = ShortWidth;
15992     } else if (NumPositiveBits <= IntWidth) {
15993       BestType = Context.UnsignedIntTy;
15994       BestWidth = IntWidth;
15995       BestPromotionType
15996         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
15997                            ? Context.UnsignedIntTy : Context.IntTy;
15998     } else if (NumPositiveBits <=
15999                (BestWidth = Context.getTargetInfo().getLongWidth())) {
16000       BestType = Context.UnsignedLongTy;
16001       BestPromotionType
16002         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
16003                            ? Context.UnsignedLongTy : Context.LongTy;
16004     } else {
16005       BestWidth = Context.getTargetInfo().getLongLongWidth();
16006       assert(NumPositiveBits <= BestWidth &&
16007              "How could an initializer get larger than ULL?");
16008       BestType = Context.UnsignedLongLongTy;
16009       BestPromotionType
16010         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
16011                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
16012     }
16013   }
16014 
16015   // Loop over all of the enumerator constants, changing their types to match
16016   // the type of the enum if needed.
16017   for (auto *D : Elements) {
16018     auto *ECD = cast_or_null<EnumConstantDecl>(D);
16019     if (!ECD) continue;  // Already issued a diagnostic.
16020 
16021     // Standard C says the enumerators have int type, but we allow, as an
16022     // extension, the enumerators to be larger than int size.  If each
16023     // enumerator value fits in an int, type it as an int, otherwise type it the
16024     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
16025     // that X has type 'int', not 'unsigned'.
16026 
16027     // Determine whether the value fits into an int.
16028     llvm::APSInt InitVal = ECD->getInitVal();
16029 
16030     // If it fits into an integer type, force it.  Otherwise force it to match
16031     // the enum decl type.
16032     QualType NewTy;
16033     unsigned NewWidth;
16034     bool NewSign;
16035     if (!getLangOpts().CPlusPlus &&
16036         !Enum->isFixed() &&
16037         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
16038       NewTy = Context.IntTy;
16039       NewWidth = IntWidth;
16040       NewSign = true;
16041     } else if (ECD->getType() == BestType) {
16042       // Already the right type!
16043       if (getLangOpts().CPlusPlus)
16044         // C++ [dcl.enum]p4: Following the closing brace of an
16045         // enum-specifier, each enumerator has the type of its
16046         // enumeration.
16047         ECD->setType(EnumType);
16048       continue;
16049     } else {
16050       NewTy = BestType;
16051       NewWidth = BestWidth;
16052       NewSign = BestType->isSignedIntegerOrEnumerationType();
16053     }
16054 
16055     // Adjust the APSInt value.
16056     InitVal = InitVal.extOrTrunc(NewWidth);
16057     InitVal.setIsSigned(NewSign);
16058     ECD->setInitVal(InitVal);
16059 
16060     // Adjust the Expr initializer and type.
16061     if (ECD->getInitExpr() &&
16062         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
16063       ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
16064                                                 CK_IntegralCast,
16065                                                 ECD->getInitExpr(),
16066                                                 /*base paths*/ nullptr,
16067                                                 VK_RValue));
16068     if (getLangOpts().CPlusPlus)
16069       // C++ [dcl.enum]p4: Following the closing brace of an
16070       // enum-specifier, each enumerator has the type of its
16071       // enumeration.
16072       ECD->setType(EnumType);
16073     else
16074       ECD->setType(NewTy);
16075   }
16076 
16077   Enum->completeDefinition(BestType, BestPromotionType,
16078                            NumPositiveBits, NumNegativeBits);
16079 
16080   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
16081 
16082   if (Enum->isClosedFlag()) {
16083     for (Decl *D : Elements) {
16084       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
16085       if (!ECD) continue;  // Already issued a diagnostic.
16086 
16087       llvm::APSInt InitVal = ECD->getInitVal();
16088       if (InitVal != 0 && !InitVal.isPowerOf2() &&
16089           !IsValueInFlagEnum(Enum, InitVal, true))
16090         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
16091           << ECD << Enum;
16092     }
16093   }
16094 
16095   // Now that the enum type is defined, ensure it's not been underaligned.
16096   if (Enum->hasAttrs())
16097     CheckAlignasUnderalignment(Enum);
16098 }
16099 
16100 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
16101                                   SourceLocation StartLoc,
16102                                   SourceLocation EndLoc) {
16103   StringLiteral *AsmString = cast<StringLiteral>(expr);
16104 
16105   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
16106                                                    AsmString, StartLoc,
16107                                                    EndLoc);
16108   CurContext->addDecl(New);
16109   return New;
16110 }
16111 
16112 static void checkModuleImportContext(Sema &S, Module *M,
16113                                      SourceLocation ImportLoc, DeclContext *DC,
16114                                      bool FromInclude = false) {
16115   SourceLocation ExternCLoc;
16116 
16117   if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
16118     switch (LSD->getLanguage()) {
16119     case LinkageSpecDecl::lang_c:
16120       if (ExternCLoc.isInvalid())
16121         ExternCLoc = LSD->getLocStart();
16122       break;
16123     case LinkageSpecDecl::lang_cxx:
16124       break;
16125     }
16126     DC = LSD->getParent();
16127   }
16128 
16129   while (isa<LinkageSpecDecl>(DC))
16130     DC = DC->getParent();
16131 
16132   if (!isa<TranslationUnitDecl>(DC)) {
16133     S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M))
16134                           ? diag::ext_module_import_not_at_top_level_noop
16135                           : diag::err_module_import_not_at_top_level_fatal)
16136         << M->getFullModuleName() << DC;
16137     S.Diag(cast<Decl>(DC)->getLocStart(),
16138            diag::note_module_import_not_at_top_level) << DC;
16139   } else if (!M->IsExternC && ExternCLoc.isValid()) {
16140     S.Diag(ImportLoc, diag::ext_module_import_in_extern_c)
16141       << M->getFullModuleName();
16142     S.Diag(ExternCLoc, diag::note_extern_c_begins_here);
16143   }
16144 }
16145 
16146 Sema::DeclGroupPtrTy Sema::ActOnModuleDecl(SourceLocation StartLoc,
16147                                            SourceLocation ModuleLoc,
16148                                            ModuleDeclKind MDK,
16149                                            ModuleIdPath Path) {
16150   assert(getLangOpts().ModulesTS &&
16151          "should only have module decl in modules TS");
16152 
16153   // A module implementation unit requires that we are not compiling a module
16154   // of any kind. A module interface unit requires that we are not compiling a
16155   // module map.
16156   switch (getLangOpts().getCompilingModule()) {
16157   case LangOptions::CMK_None:
16158     // It's OK to compile a module interface as a normal translation unit.
16159     break;
16160 
16161   case LangOptions::CMK_ModuleInterface:
16162     if (MDK != ModuleDeclKind::Implementation)
16163       break;
16164 
16165     // We were asked to compile a module interface unit but this is a module
16166     // implementation unit. That indicates the 'export' is missing.
16167     Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch)
16168       << FixItHint::CreateInsertion(ModuleLoc, "export ");
16169     MDK = ModuleDeclKind::Interface;
16170     break;
16171 
16172   case LangOptions::CMK_ModuleMap:
16173     Diag(ModuleLoc, diag::err_module_decl_in_module_map_module);
16174     return nullptr;
16175   }
16176 
16177   assert(ModuleScopes.size() == 1 && "expected to be at global module scope");
16178 
16179   // FIXME: Most of this work should be done by the preprocessor rather than
16180   // here, in order to support macro import.
16181 
16182   // Only one module-declaration is permitted per source file.
16183   if (ModuleScopes.back().Module->Kind == Module::ModuleInterfaceUnit) {
16184     Diag(ModuleLoc, diag::err_module_redeclaration);
16185     Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module),
16186          diag::note_prev_module_declaration);
16187     return nullptr;
16188   }
16189 
16190   // Flatten the dots in a module name. Unlike Clang's hierarchical module map
16191   // modules, the dots here are just another character that can appear in a
16192   // module name.
16193   std::string ModuleName;
16194   for (auto &Piece : Path) {
16195     if (!ModuleName.empty())
16196       ModuleName += ".";
16197     ModuleName += Piece.first->getName();
16198   }
16199 
16200   // If a module name was explicitly specified on the command line, it must be
16201   // correct.
16202   if (!getLangOpts().CurrentModule.empty() &&
16203       getLangOpts().CurrentModule != ModuleName) {
16204     Diag(Path.front().second, diag::err_current_module_name_mismatch)
16205         << SourceRange(Path.front().second, Path.back().second)
16206         << getLangOpts().CurrentModule;
16207     return nullptr;
16208   }
16209   const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName;
16210 
16211   auto &Map = PP.getHeaderSearchInfo().getModuleMap();
16212   Module *Mod;
16213 
16214   switch (MDK) {
16215   case ModuleDeclKind::Interface: {
16216     // We can't have parsed or imported a definition of this module or parsed a
16217     // module map defining it already.
16218     if (auto *M = Map.findModule(ModuleName)) {
16219       Diag(Path[0].second, diag::err_module_redefinition) << ModuleName;
16220       if (M->DefinitionLoc.isValid())
16221         Diag(M->DefinitionLoc, diag::note_prev_module_definition);
16222       else if (const auto *FE = M->getASTFile())
16223         Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file)
16224             << FE->getName();
16225       Mod = M;
16226       break;
16227     }
16228 
16229     // Create a Module for the module that we're defining.
16230     Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16231                                            ModuleScopes.front().Module);
16232     assert(Mod && "module creation should not fail");
16233     break;
16234   }
16235 
16236   case ModuleDeclKind::Partition:
16237     // FIXME: Check we are in a submodule of the named module.
16238     return nullptr;
16239 
16240   case ModuleDeclKind::Implementation:
16241     std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc(
16242         PP.getIdentifierInfo(ModuleName), Path[0].second);
16243     Mod = getModuleLoader().loadModule(ModuleLoc, Path, Module::AllVisible,
16244                                        /*IsIncludeDirective=*/false);
16245     if (!Mod) {
16246       Diag(ModuleLoc, diag::err_module_not_defined) << ModuleName;
16247       // Create an empty module interface unit for error recovery.
16248       Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16249                                              ModuleScopes.front().Module);
16250     }
16251     break;
16252   }
16253 
16254   // Switch from the global module to the named module.
16255   ModuleScopes.back().Module = Mod;
16256   ModuleScopes.back().ModuleInterface = MDK != ModuleDeclKind::Implementation;
16257   VisibleModules.setVisible(Mod, ModuleLoc);
16258 
16259   // From now on, we have an owning module for all declarations we see.
16260   // However, those declarations are module-private unless explicitly
16261   // exported.
16262   auto *TU = Context.getTranslationUnitDecl();
16263   TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
16264   TU->setLocalOwningModule(Mod);
16265 
16266   // FIXME: Create a ModuleDecl.
16267   return nullptr;
16268 }
16269 
16270 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc,
16271                                    SourceLocation ImportLoc,
16272                                    ModuleIdPath Path) {
16273   Module *Mod =
16274       getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
16275                                    /*IsIncludeDirective=*/false);
16276   if (!Mod)
16277     return true;
16278 
16279   VisibleModules.setVisible(Mod, ImportLoc);
16280 
16281   checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
16282 
16283   // FIXME: we should support importing a submodule within a different submodule
16284   // of the same top-level module. Until we do, make it an error rather than
16285   // silently ignoring the import.
16286   // Import-from-implementation is valid in the Modules TS. FIXME: Should we
16287   // warn on a redundant import of the current module?
16288   if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule &&
16289       (getLangOpts().isCompilingModule() || !getLangOpts().ModulesTS))
16290     Diag(ImportLoc, getLangOpts().isCompilingModule()
16291                         ? diag::err_module_self_import
16292                         : diag::err_module_import_in_implementation)
16293         << Mod->getFullModuleName() << getLangOpts().CurrentModule;
16294 
16295   SmallVector<SourceLocation, 2> IdentifierLocs;
16296   Module *ModCheck = Mod;
16297   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
16298     // If we've run out of module parents, just drop the remaining identifiers.
16299     // We need the length to be consistent.
16300     if (!ModCheck)
16301       break;
16302     ModCheck = ModCheck->Parent;
16303 
16304     IdentifierLocs.push_back(Path[I].second);
16305   }
16306 
16307   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16308   ImportDecl *Import = ImportDecl::Create(Context, TU, StartLoc,
16309                                           Mod, IdentifierLocs);
16310   if (!ModuleScopes.empty())
16311     Context.addModuleInitializer(ModuleScopes.back().Module, Import);
16312   TU->addDecl(Import);
16313   return Import;
16314 }
16315 
16316 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16317   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16318   BuildModuleInclude(DirectiveLoc, Mod);
16319 }
16320 
16321 void Sema::BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16322   // Determine whether we're in the #include buffer for a module. The #includes
16323   // in that buffer do not qualify as module imports; they're just an
16324   // implementation detail of us building the module.
16325   //
16326   // FIXME: Should we even get ActOnModuleInclude calls for those?
16327   bool IsInModuleIncludes =
16328       TUKind == TU_Module &&
16329       getSourceManager().isWrittenInMainFile(DirectiveLoc);
16330 
16331   bool ShouldAddImport = !IsInModuleIncludes;
16332 
16333   // If this module import was due to an inclusion directive, create an
16334   // implicit import declaration to capture it in the AST.
16335   if (ShouldAddImport) {
16336     TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16337     ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16338                                                      DirectiveLoc, Mod,
16339                                                      DirectiveLoc);
16340     if (!ModuleScopes.empty())
16341       Context.addModuleInitializer(ModuleScopes.back().Module, ImportD);
16342     TU->addDecl(ImportD);
16343     Consumer.HandleImplicitImportDecl(ImportD);
16344   }
16345 
16346   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc);
16347   VisibleModules.setVisible(Mod, DirectiveLoc);
16348 }
16349 
16350 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) {
16351   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16352 
16353   ModuleScopes.push_back({});
16354   ModuleScopes.back().Module = Mod;
16355   if (getLangOpts().ModulesLocalVisibility)
16356     ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules);
16357 
16358   VisibleModules.setVisible(Mod, DirectiveLoc);
16359 
16360   // The enclosing context is now part of this module.
16361   // FIXME: Consider creating a child DeclContext to hold the entities
16362   // lexically within the module.
16363   if (getLangOpts().trackLocalOwningModule()) {
16364     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16365       cast<Decl>(DC)->setModuleOwnershipKind(
16366           getLangOpts().ModulesLocalVisibility
16367               ? Decl::ModuleOwnershipKind::VisibleWhenImported
16368               : Decl::ModuleOwnershipKind::Visible);
16369       cast<Decl>(DC)->setLocalOwningModule(Mod);
16370     }
16371   }
16372 }
16373 
16374 void Sema::ActOnModuleEnd(SourceLocation EomLoc, Module *Mod) {
16375   if (getLangOpts().ModulesLocalVisibility) {
16376     VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules);
16377     // Leaving a module hides namespace names, so our visible namespace cache
16378     // is now out of date.
16379     VisibleNamespaceCache.clear();
16380   }
16381 
16382   assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod &&
16383          "left the wrong module scope");
16384   ModuleScopes.pop_back();
16385 
16386   // We got to the end of processing a local module. Create an
16387   // ImportDecl as we would for an imported module.
16388   FileID File = getSourceManager().getFileID(EomLoc);
16389   SourceLocation DirectiveLoc;
16390   if (EomLoc == getSourceManager().getLocForEndOfFile(File)) {
16391     // We reached the end of a #included module header. Use the #include loc.
16392     assert(File != getSourceManager().getMainFileID() &&
16393            "end of submodule in main source file");
16394     DirectiveLoc = getSourceManager().getIncludeLoc(File);
16395   } else {
16396     // We reached an EOM pragma. Use the pragma location.
16397     DirectiveLoc = EomLoc;
16398   }
16399   BuildModuleInclude(DirectiveLoc, Mod);
16400 
16401   // Any further declarations are in whatever module we returned to.
16402   if (getLangOpts().trackLocalOwningModule()) {
16403     // The parser guarantees that this is the same context that we entered
16404     // the module within.
16405     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16406       cast<Decl>(DC)->setLocalOwningModule(getCurrentModule());
16407       if (!getCurrentModule())
16408         cast<Decl>(DC)->setModuleOwnershipKind(
16409             Decl::ModuleOwnershipKind::Unowned);
16410     }
16411   }
16412 }
16413 
16414 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
16415                                                       Module *Mod) {
16416   // Bail if we're not allowed to implicitly import a module here.
16417   if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery ||
16418       VisibleModules.isVisible(Mod))
16419     return;
16420 
16421   // Create the implicit import declaration.
16422   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16423   ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16424                                                    Loc, Mod, Loc);
16425   TU->addDecl(ImportD);
16426   Consumer.HandleImplicitImportDecl(ImportD);
16427 
16428   // Make the module visible.
16429   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc);
16430   VisibleModules.setVisible(Mod, Loc);
16431 }
16432 
16433 /// We have parsed the start of an export declaration, including the '{'
16434 /// (if present).
16435 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc,
16436                                  SourceLocation LBraceLoc) {
16437   ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc);
16438 
16439   // C++ Modules TS draft:
16440   //   An export-declaration shall appear in the purview of a module other than
16441   //   the global module.
16442   if (ModuleScopes.empty() || !ModuleScopes.back().ModuleInterface)
16443     Diag(ExportLoc, diag::err_export_not_in_module_interface);
16444 
16445   //   An export-declaration [...] shall not contain more than one
16446   //   export keyword.
16447   //
16448   // The intent here is that an export-declaration cannot appear within another
16449   // export-declaration.
16450   if (D->isExported())
16451     Diag(ExportLoc, diag::err_export_within_export);
16452 
16453   CurContext->addDecl(D);
16454   PushDeclContext(S, D);
16455   D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported);
16456   return D;
16457 }
16458 
16459 /// Complete the definition of an export declaration.
16460 Decl *Sema::ActOnFinishExportDecl(Scope *S, Decl *D, SourceLocation RBraceLoc) {
16461   auto *ED = cast<ExportDecl>(D);
16462   if (RBraceLoc.isValid())
16463     ED->setRBraceLoc(RBraceLoc);
16464 
16465   // FIXME: Diagnose export of internal-linkage declaration (including
16466   // anonymous namespace).
16467 
16468   PopDeclContext();
16469   return D;
16470 }
16471 
16472 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
16473                                       IdentifierInfo* AliasName,
16474                                       SourceLocation PragmaLoc,
16475                                       SourceLocation NameLoc,
16476                                       SourceLocation AliasNameLoc) {
16477   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
16478                                          LookupOrdinaryName);
16479   AsmLabelAttr *Attr =
16480       AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc);
16481 
16482   // If a declaration that:
16483   // 1) declares a function or a variable
16484   // 2) has external linkage
16485   // already exists, add a label attribute to it.
16486   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16487     if (isDeclExternC(PrevDecl))
16488       PrevDecl->addAttr(Attr);
16489     else
16490       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
16491           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
16492   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
16493   } else
16494     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
16495 }
16496 
16497 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
16498                              SourceLocation PragmaLoc,
16499                              SourceLocation NameLoc) {
16500   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
16501 
16502   if (PrevDecl) {
16503     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
16504   } else {
16505     (void)WeakUndeclaredIdentifiers.insert(
16506       std::pair<IdentifierInfo*,WeakInfo>
16507         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
16508   }
16509 }
16510 
16511 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
16512                                 IdentifierInfo* AliasName,
16513                                 SourceLocation PragmaLoc,
16514                                 SourceLocation NameLoc,
16515                                 SourceLocation AliasNameLoc) {
16516   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
16517                                     LookupOrdinaryName);
16518   WeakInfo W = WeakInfo(Name, NameLoc);
16519 
16520   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16521     if (!PrevDecl->hasAttr<AliasAttr>())
16522       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
16523         DeclApplyPragmaWeak(TUScope, ND, W);
16524   } else {
16525     (void)WeakUndeclaredIdentifiers.insert(
16526       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
16527   }
16528 }
16529 
16530 Decl *Sema::getObjCDeclContext() const {
16531   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
16532 }
16533