1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements semantic analysis for declarations.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "TypeLocBuilder.h"
15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTLambda.h"
18 #include "clang/AST/CXXInheritance.h"
19 #include "clang/AST/CharUnits.h"
20 #include "clang/AST/CommentDiagnostic.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclTemplate.h"
24 #include "clang/AST/EvaluatedExprVisitor.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/StmtCXX.h"
27 #include "clang/Basic/Builtins.h"
28 #include "clang/Basic/PartialDiagnostic.h"
29 #include "clang/Basic/SourceManager.h"
30 #include "clang/Basic/TargetInfo.h"
31 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
32 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
33 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
34 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
35 #include "clang/Sema/CXXFieldCollector.h"
36 #include "clang/Sema/DeclSpec.h"
37 #include "clang/Sema/DelayedDiagnostic.h"
38 #include "clang/Sema/Initialization.h"
39 #include "clang/Sema/Lookup.h"
40 #include "clang/Sema/ParsedTemplate.h"
41 #include "clang/Sema/Scope.h"
42 #include "clang/Sema/ScopeInfo.h"
43 #include "clang/Sema/SemaInternal.h"
44 #include "clang/Sema/Template.h"
45 #include "llvm/ADT/SmallString.h"
46 #include "llvm/ADT/Triple.h"
47 #include <algorithm>
48 #include <cstring>
49 #include <functional>
50 
51 using namespace clang;
52 using namespace sema;
53 
54 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) {
55   if (OwnedType) {
56     Decl *Group[2] = { OwnedType, Ptr };
57     return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
58   }
59 
60   return DeclGroupPtrTy::make(DeclGroupRef(Ptr));
61 }
62 
63 namespace {
64 
65 class TypeNameValidatorCCC : public CorrectionCandidateCallback {
66  public:
67    TypeNameValidatorCCC(bool AllowInvalid, bool WantClass = false,
68                         bool AllowTemplates = false,
69                         bool AllowNonTemplates = true)
70        : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
71          AllowTemplates(AllowTemplates), AllowNonTemplates(AllowNonTemplates) {
72      WantExpressionKeywords = false;
73      WantCXXNamedCasts = false;
74      WantRemainingKeywords = false;
75   }
76 
77   bool ValidateCandidate(const TypoCorrection &candidate) override {
78     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
79       if (!AllowInvalidDecl && ND->isInvalidDecl())
80         return false;
81 
82       if (getAsTypeTemplateDecl(ND))
83         return AllowTemplates;
84 
85       bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
86       if (!IsType)
87         return false;
88 
89       if (AllowNonTemplates)
90         return true;
91 
92       // An injected-class-name of a class template (specialization) is valid
93       // as a template or as a non-template.
94       if (AllowTemplates) {
95         auto *RD = dyn_cast<CXXRecordDecl>(ND);
96         if (!RD || !RD->isInjectedClassName())
97           return false;
98         RD = cast<CXXRecordDecl>(RD->getDeclContext());
99         return RD->getDescribedClassTemplate() ||
100                isa<ClassTemplateSpecializationDecl>(RD);
101       }
102 
103       return false;
104     }
105 
106     return !WantClassName && candidate.isKeyword();
107   }
108 
109  private:
110   bool AllowInvalidDecl;
111   bool WantClassName;
112   bool AllowTemplates;
113   bool AllowNonTemplates;
114 };
115 
116 } // end anonymous namespace
117 
118 /// \brief Determine whether the token kind starts a simple-type-specifier.
119 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
120   switch (Kind) {
121   // FIXME: Take into account the current language when deciding whether a
122   // token kind is a valid type specifier
123   case tok::kw_short:
124   case tok::kw_long:
125   case tok::kw___int64:
126   case tok::kw___int128:
127   case tok::kw_signed:
128   case tok::kw_unsigned:
129   case tok::kw_void:
130   case tok::kw_char:
131   case tok::kw_int:
132   case tok::kw_half:
133   case tok::kw_float:
134   case tok::kw_double:
135   case tok::kw__Float16:
136   case tok::kw___float128:
137   case tok::kw_wchar_t:
138   case tok::kw_bool:
139   case tok::kw___underlying_type:
140   case tok::kw___auto_type:
141     return true;
142 
143   case tok::annot_typename:
144   case tok::kw_char16_t:
145   case tok::kw_char32_t:
146   case tok::kw_typeof:
147   case tok::annot_decltype:
148   case tok::kw_decltype:
149     return getLangOpts().CPlusPlus;
150 
151   default:
152     break;
153   }
154 
155   return false;
156 }
157 
158 namespace {
159 enum class UnqualifiedTypeNameLookupResult {
160   NotFound,
161   FoundNonType,
162   FoundType
163 };
164 } // end anonymous namespace
165 
166 /// \brief Tries to perform unqualified lookup of the type decls in bases for
167 /// dependent class.
168 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
169 /// type decl, \a FoundType if only type decls are found.
170 static UnqualifiedTypeNameLookupResult
171 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II,
172                                 SourceLocation NameLoc,
173                                 const CXXRecordDecl *RD) {
174   if (!RD->hasDefinition())
175     return UnqualifiedTypeNameLookupResult::NotFound;
176   // Look for type decls in base classes.
177   UnqualifiedTypeNameLookupResult FoundTypeDecl =
178       UnqualifiedTypeNameLookupResult::NotFound;
179   for (const auto &Base : RD->bases()) {
180     const CXXRecordDecl *BaseRD = nullptr;
181     if (auto *BaseTT = Base.getType()->getAs<TagType>())
182       BaseRD = BaseTT->getAsCXXRecordDecl();
183     else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
184       // Look for type decls in dependent base classes that have known primary
185       // templates.
186       if (!TST || !TST->isDependentType())
187         continue;
188       auto *TD = TST->getTemplateName().getAsTemplateDecl();
189       if (!TD)
190         continue;
191       if (auto *BasePrimaryTemplate =
192           dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) {
193         if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl())
194           BaseRD = BasePrimaryTemplate;
195         else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) {
196           if (const ClassTemplatePartialSpecializationDecl *PS =
197                   CTD->findPartialSpecialization(Base.getType()))
198             if (PS->getCanonicalDecl() != RD->getCanonicalDecl())
199               BaseRD = PS;
200         }
201       }
202     }
203     if (BaseRD) {
204       for (NamedDecl *ND : BaseRD->lookup(&II)) {
205         if (!isa<TypeDecl>(ND))
206           return UnqualifiedTypeNameLookupResult::FoundNonType;
207         FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
208       }
209       if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) {
210         switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
211         case UnqualifiedTypeNameLookupResult::FoundNonType:
212           return UnqualifiedTypeNameLookupResult::FoundNonType;
213         case UnqualifiedTypeNameLookupResult::FoundType:
214           FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
215           break;
216         case UnqualifiedTypeNameLookupResult::NotFound:
217           break;
218         }
219       }
220     }
221   }
222 
223   return FoundTypeDecl;
224 }
225 
226 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S,
227                                                       const IdentifierInfo &II,
228                                                       SourceLocation NameLoc) {
229   // Lookup in the parent class template context, if any.
230   const CXXRecordDecl *RD = nullptr;
231   UnqualifiedTypeNameLookupResult FoundTypeDecl =
232       UnqualifiedTypeNameLookupResult::NotFound;
233   for (DeclContext *DC = S.CurContext;
234        DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound;
235        DC = DC->getParent()) {
236     // Look for type decls in dependent base classes that have known primary
237     // templates.
238     RD = dyn_cast<CXXRecordDecl>(DC);
239     if (RD && RD->getDescribedClassTemplate())
240       FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
241   }
242   if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType)
243     return nullptr;
244 
245   // We found some types in dependent base classes.  Recover as if the user
246   // wrote 'typename MyClass::II' instead of 'II'.  We'll fully resolve the
247   // lookup during template instantiation.
248   S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
249 
250   ASTContext &Context = S.Context;
251   auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false,
252                                           cast<Type>(Context.getRecordType(RD)));
253   QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
254 
255   CXXScopeSpec SS;
256   SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
257 
258   TypeLocBuilder Builder;
259   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
260   DepTL.setNameLoc(NameLoc);
261   DepTL.setElaboratedKeywordLoc(SourceLocation());
262   DepTL.setQualifierLoc(SS.getWithLocInContext(Context));
263   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
264 }
265 
266 /// \brief If the identifier refers to a type name within this scope,
267 /// return the declaration of that type.
268 ///
269 /// This routine performs ordinary name lookup of the identifier II
270 /// within the given scope, with optional C++ scope specifier SS, to
271 /// determine whether the name refers to a type. If so, returns an
272 /// opaque pointer (actually a QualType) corresponding to that
273 /// type. Otherwise, returns NULL.
274 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
275                              Scope *S, CXXScopeSpec *SS,
276                              bool isClassName, bool HasTrailingDot,
277                              ParsedType ObjectTypePtr,
278                              bool IsCtorOrDtorName,
279                              bool WantNontrivialTypeSourceInfo,
280                              bool IsClassTemplateDeductionContext,
281                              IdentifierInfo **CorrectedII) {
282   // FIXME: Consider allowing this outside C++1z mode as an extension.
283   bool AllowDeducedTemplate = IsClassTemplateDeductionContext &&
284                               getLangOpts().CPlusPlus17 && !IsCtorOrDtorName &&
285                               !isClassName && !HasTrailingDot;
286 
287   // Determine where we will perform name lookup.
288   DeclContext *LookupCtx = nullptr;
289   if (ObjectTypePtr) {
290     QualType ObjectType = ObjectTypePtr.get();
291     if (ObjectType->isRecordType())
292       LookupCtx = computeDeclContext(ObjectType);
293   } else if (SS && SS->isNotEmpty()) {
294     LookupCtx = computeDeclContext(*SS, false);
295 
296     if (!LookupCtx) {
297       if (isDependentScopeSpecifier(*SS)) {
298         // C++ [temp.res]p3:
299         //   A qualified-id that refers to a type and in which the
300         //   nested-name-specifier depends on a template-parameter (14.6.2)
301         //   shall be prefixed by the keyword typename to indicate that the
302         //   qualified-id denotes a type, forming an
303         //   elaborated-type-specifier (7.1.5.3).
304         //
305         // We therefore do not perform any name lookup if the result would
306         // refer to a member of an unknown specialization.
307         if (!isClassName && !IsCtorOrDtorName)
308           return nullptr;
309 
310         // We know from the grammar that this name refers to a type,
311         // so build a dependent node to describe the type.
312         if (WantNontrivialTypeSourceInfo)
313           return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
314 
315         NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
316         QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
317                                        II, NameLoc);
318         return ParsedType::make(T);
319       }
320 
321       return nullptr;
322     }
323 
324     if (!LookupCtx->isDependentContext() &&
325         RequireCompleteDeclContext(*SS, LookupCtx))
326       return nullptr;
327   }
328 
329   // FIXME: LookupNestedNameSpecifierName isn't the right kind of
330   // lookup for class-names.
331   LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
332                                       LookupOrdinaryName;
333   LookupResult Result(*this, &II, NameLoc, Kind);
334   if (LookupCtx) {
335     // Perform "qualified" name lookup into the declaration context we
336     // computed, which is either the type of the base of a member access
337     // expression or the declaration context associated with a prior
338     // nested-name-specifier.
339     LookupQualifiedName(Result, LookupCtx);
340 
341     if (ObjectTypePtr && Result.empty()) {
342       // C++ [basic.lookup.classref]p3:
343       //   If the unqualified-id is ~type-name, the type-name is looked up
344       //   in the context of the entire postfix-expression. If the type T of
345       //   the object expression is of a class type C, the type-name is also
346       //   looked up in the scope of class C. At least one of the lookups shall
347       //   find a name that refers to (possibly cv-qualified) T.
348       LookupName(Result, S);
349     }
350   } else {
351     // Perform unqualified name lookup.
352     LookupName(Result, S);
353 
354     // For unqualified lookup in a class template in MSVC mode, look into
355     // dependent base classes where the primary class template is known.
356     if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) {
357       if (ParsedType TypeInBase =
358               recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
359         return TypeInBase;
360     }
361   }
362 
363   NamedDecl *IIDecl = nullptr;
364   switch (Result.getResultKind()) {
365   case LookupResult::NotFound:
366   case LookupResult::NotFoundInCurrentInstantiation:
367     if (CorrectedII) {
368       TypoCorrection Correction =
369           CorrectTypo(Result.getLookupNameInfo(), Kind, S, SS,
370                       llvm::make_unique<TypeNameValidatorCCC>(
371                           true, isClassName, AllowDeducedTemplate),
372                       CTK_ErrorRecovery);
373       IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
374       TemplateTy Template;
375       bool MemberOfUnknownSpecialization;
376       UnqualifiedId TemplateName;
377       TemplateName.setIdentifier(NewII, NameLoc);
378       NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
379       CXXScopeSpec NewSS, *NewSSPtr = SS;
380       if (SS && NNS) {
381         NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
382         NewSSPtr = &NewSS;
383       }
384       if (Correction && (NNS || NewII != &II) &&
385           // Ignore a correction to a template type as the to-be-corrected
386           // identifier is not a template (typo correction for template names
387           // is handled elsewhere).
388           !(getLangOpts().CPlusPlus && NewSSPtr &&
389             isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false,
390                            Template, MemberOfUnknownSpecialization))) {
391         ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
392                                     isClassName, HasTrailingDot, ObjectTypePtr,
393                                     IsCtorOrDtorName,
394                                     WantNontrivialTypeSourceInfo,
395                                     IsClassTemplateDeductionContext);
396         if (Ty) {
397           diagnoseTypo(Correction,
398                        PDiag(diag::err_unknown_type_or_class_name_suggest)
399                          << Result.getLookupName() << isClassName);
400           if (SS && NNS)
401             SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
402           *CorrectedII = NewII;
403           return Ty;
404         }
405       }
406     }
407     // If typo correction failed or was not performed, fall through
408     LLVM_FALLTHROUGH;
409   case LookupResult::FoundOverloaded:
410   case LookupResult::FoundUnresolvedValue:
411     Result.suppressDiagnostics();
412     return nullptr;
413 
414   case LookupResult::Ambiguous:
415     // Recover from type-hiding ambiguities by hiding the type.  We'll
416     // do the lookup again when looking for an object, and we can
417     // diagnose the error then.  If we don't do this, then the error
418     // about hiding the type will be immediately followed by an error
419     // that only makes sense if the identifier was treated like a type.
420     if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
421       Result.suppressDiagnostics();
422       return nullptr;
423     }
424 
425     // Look to see if we have a type anywhere in the list of results.
426     for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
427          Res != ResEnd; ++Res) {
428       if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res) ||
429           (AllowDeducedTemplate && getAsTypeTemplateDecl(*Res))) {
430         if (!IIDecl ||
431             (*Res)->getLocation().getRawEncoding() <
432               IIDecl->getLocation().getRawEncoding())
433           IIDecl = *Res;
434       }
435     }
436 
437     if (!IIDecl) {
438       // None of the entities we found is a type, so there is no way
439       // to even assume that the result is a type. In this case, don't
440       // complain about the ambiguity. The parser will either try to
441       // perform this lookup again (e.g., as an object name), which
442       // will produce the ambiguity, or will complain that it expected
443       // a type name.
444       Result.suppressDiagnostics();
445       return nullptr;
446     }
447 
448     // We found a type within the ambiguous lookup; diagnose the
449     // ambiguity and then return that type. This might be the right
450     // answer, or it might not be, but it suppresses any attempt to
451     // perform the name lookup again.
452     break;
453 
454   case LookupResult::Found:
455     IIDecl = Result.getFoundDecl();
456     break;
457   }
458 
459   assert(IIDecl && "Didn't find decl");
460 
461   QualType T;
462   if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
463     // C++ [class.qual]p2: A lookup that would find the injected-class-name
464     // instead names the constructors of the class, except when naming a class.
465     // This is ill-formed when we're not actually forming a ctor or dtor name.
466     auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);
467     auto *FoundRD = dyn_cast<CXXRecordDecl>(TD);
468     if (!isClassName && !IsCtorOrDtorName && LookupRD && FoundRD &&
469         FoundRD->isInjectedClassName() &&
470         declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent())))
471       Diag(NameLoc, diag::err_out_of_line_qualified_id_type_names_constructor)
472           << &II << /*Type*/1;
473 
474     DiagnoseUseOfDecl(IIDecl, NameLoc);
475 
476     T = Context.getTypeDeclType(TD);
477     MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
478   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
479     (void)DiagnoseUseOfDecl(IDecl, NameLoc);
480     if (!HasTrailingDot)
481       T = Context.getObjCInterfaceType(IDecl);
482   } else if (AllowDeducedTemplate) {
483     if (auto *TD = getAsTypeTemplateDecl(IIDecl))
484       T = Context.getDeducedTemplateSpecializationType(TemplateName(TD),
485                                                        QualType(), false);
486   }
487 
488   if (T.isNull()) {
489     // If it's not plausibly a type, suppress diagnostics.
490     Result.suppressDiagnostics();
491     return nullptr;
492   }
493 
494   // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
495   // constructor or destructor name (in such a case, the scope specifier
496   // will be attached to the enclosing Expr or Decl node).
497   if (SS && SS->isNotEmpty() && !IsCtorOrDtorName &&
498       !isa<ObjCInterfaceDecl>(IIDecl)) {
499     if (WantNontrivialTypeSourceInfo) {
500       // Construct a type with type-source information.
501       TypeLocBuilder Builder;
502       Builder.pushTypeSpec(T).setNameLoc(NameLoc);
503 
504       T = getElaboratedType(ETK_None, *SS, T);
505       ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
506       ElabTL.setElaboratedKeywordLoc(SourceLocation());
507       ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
508       return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
509     } else {
510       T = getElaboratedType(ETK_None, *SS, T);
511     }
512   }
513 
514   return ParsedType::make(T);
515 }
516 
517 // Builds a fake NNS for the given decl context.
518 static NestedNameSpecifier *
519 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) {
520   for (;; DC = DC->getLookupParent()) {
521     DC = DC->getPrimaryContext();
522     auto *ND = dyn_cast<NamespaceDecl>(DC);
523     if (ND && !ND->isInline() && !ND->isAnonymousNamespace())
524       return NestedNameSpecifier::Create(Context, nullptr, ND);
525     else if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
526       return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
527                                          RD->getTypeForDecl());
528     else if (isa<TranslationUnitDecl>(DC))
529       return NestedNameSpecifier::GlobalSpecifier(Context);
530   }
531   llvm_unreachable("something isn't in TU scope?");
532 }
533 
534 /// Find the parent class with dependent bases of the innermost enclosing method
535 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end
536 /// up allowing unqualified dependent type names at class-level, which MSVC
537 /// correctly rejects.
538 static const CXXRecordDecl *
539 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) {
540   for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) {
541     DC = DC->getPrimaryContext();
542     if (const auto *MD = dyn_cast<CXXMethodDecl>(DC))
543       if (MD->getParent()->hasAnyDependentBases())
544         return MD->getParent();
545   }
546   return nullptr;
547 }
548 
549 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II,
550                                           SourceLocation NameLoc,
551                                           bool IsTemplateTypeArg) {
552   assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode");
553 
554   NestedNameSpecifier *NNS = nullptr;
555   if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) {
556     // If we weren't able to parse a default template argument, delay lookup
557     // until instantiation time by making a non-dependent DependentTypeName. We
558     // pretend we saw a NestedNameSpecifier referring to the current scope, and
559     // lookup is retried.
560     // FIXME: This hurts our diagnostic quality, since we get errors like "no
561     // type named 'Foo' in 'current_namespace'" when the user didn't write any
562     // name specifiers.
563     NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext);
564     Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
565   } else if (const CXXRecordDecl *RD =
566                  findRecordWithDependentBasesOfEnclosingMethod(CurContext)) {
567     // Build a DependentNameType that will perform lookup into RD at
568     // instantiation time.
569     NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
570                                       RD->getTypeForDecl());
571 
572     // Diagnose that this identifier was undeclared, and retry the lookup during
573     // template instantiation.
574     Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II
575                                                                       << RD;
576   } else {
577     // This is not a situation that we should recover from.
578     return ParsedType();
579   }
580 
581   QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
582 
583   // Build type location information.  We synthesized the qualifier, so we have
584   // to build a fake NestedNameSpecifierLoc.
585   NestedNameSpecifierLocBuilder NNSLocBuilder;
586   NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc));
587   NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context);
588 
589   TypeLocBuilder Builder;
590   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
591   DepTL.setNameLoc(NameLoc);
592   DepTL.setElaboratedKeywordLoc(SourceLocation());
593   DepTL.setQualifierLoc(QualifierLoc);
594   return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
595 }
596 
597 /// isTagName() - This method is called *for error recovery purposes only*
598 /// to determine if the specified name is a valid tag name ("struct foo").  If
599 /// so, this returns the TST for the tag corresponding to it (TST_enum,
600 /// TST_union, TST_struct, TST_interface, TST_class).  This is used to diagnose
601 /// cases in C where the user forgot to specify the tag.
602 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
603   // Do a tag name lookup in this scope.
604   LookupResult R(*this, &II, SourceLocation(), LookupTagName);
605   LookupName(R, S, false);
606   R.suppressDiagnostics();
607   if (R.getResultKind() == LookupResult::Found)
608     if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
609       switch (TD->getTagKind()) {
610       case TTK_Struct: return DeclSpec::TST_struct;
611       case TTK_Interface: return DeclSpec::TST_interface;
612       case TTK_Union:  return DeclSpec::TST_union;
613       case TTK_Class:  return DeclSpec::TST_class;
614       case TTK_Enum:   return DeclSpec::TST_enum;
615       }
616     }
617 
618   return DeclSpec::TST_unspecified;
619 }
620 
621 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
622 /// if a CXXScopeSpec's type is equal to the type of one of the base classes
623 /// then downgrade the missing typename error to a warning.
624 /// This is needed for MSVC compatibility; Example:
625 /// @code
626 /// template<class T> class A {
627 /// public:
628 ///   typedef int TYPE;
629 /// };
630 /// template<class T> class B : public A<T> {
631 /// public:
632 ///   A<T>::TYPE a; // no typename required because A<T> is a base class.
633 /// };
634 /// @endcode
635 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
636   if (CurContext->isRecord()) {
637     if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
638       return true;
639 
640     const Type *Ty = SS->getScopeRep()->getAsType();
641 
642     CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
643     for (const auto &Base : RD->bases())
644       if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
645         return true;
646     return S->isFunctionPrototypeScope();
647   }
648   return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
649 }
650 
651 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
652                                    SourceLocation IILoc,
653                                    Scope *S,
654                                    CXXScopeSpec *SS,
655                                    ParsedType &SuggestedType,
656                                    bool IsTemplateName) {
657   // Don't report typename errors for editor placeholders.
658   if (II->isEditorPlaceholder())
659     return;
660   // We don't have anything to suggest (yet).
661   SuggestedType = nullptr;
662 
663   // There may have been a typo in the name of the type. Look up typo
664   // results, in case we have something that we can suggest.
665   if (TypoCorrection Corrected =
666           CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS,
667                       llvm::make_unique<TypeNameValidatorCCC>(
668                           false, false, IsTemplateName, !IsTemplateName),
669                       CTK_ErrorRecovery)) {
670     // FIXME: Support error recovery for the template-name case.
671     bool CanRecover = !IsTemplateName;
672     if (Corrected.isKeyword()) {
673       // We corrected to a keyword.
674       diagnoseTypo(Corrected,
675                    PDiag(IsTemplateName ? diag::err_no_template_suggest
676                                         : diag::err_unknown_typename_suggest)
677                        << II);
678       II = Corrected.getCorrectionAsIdentifierInfo();
679     } else {
680       // We found a similarly-named type or interface; suggest that.
681       if (!SS || !SS->isSet()) {
682         diagnoseTypo(Corrected,
683                      PDiag(IsTemplateName ? diag::err_no_template_suggest
684                                           : diag::err_unknown_typename_suggest)
685                          << II, CanRecover);
686       } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
687         std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
688         bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
689                                 II->getName().equals(CorrectedStr);
690         diagnoseTypo(Corrected,
691                      PDiag(IsTemplateName
692                                ? diag::err_no_member_template_suggest
693                                : diag::err_unknown_nested_typename_suggest)
694                          << II << DC << DroppedSpecifier << SS->getRange(),
695                      CanRecover);
696       } else {
697         llvm_unreachable("could not have corrected a typo here");
698       }
699 
700       if (!CanRecover)
701         return;
702 
703       CXXScopeSpec tmpSS;
704       if (Corrected.getCorrectionSpecifier())
705         tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
706                           SourceRange(IILoc));
707       // FIXME: Support class template argument deduction here.
708       SuggestedType =
709           getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S,
710                       tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
711                       /*IsCtorOrDtorName=*/false,
712                       /*NonTrivialTypeSourceInfo=*/true);
713     }
714     return;
715   }
716 
717   if (getLangOpts().CPlusPlus && !IsTemplateName) {
718     // See if II is a class template that the user forgot to pass arguments to.
719     UnqualifiedId Name;
720     Name.setIdentifier(II, IILoc);
721     CXXScopeSpec EmptySS;
722     TemplateTy TemplateResult;
723     bool MemberOfUnknownSpecialization;
724     if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
725                        Name, nullptr, true, TemplateResult,
726                        MemberOfUnknownSpecialization) == TNK_Type_template) {
727       TemplateName TplName = TemplateResult.get();
728       Diag(IILoc, diag::err_template_missing_args)
729         << (int)getTemplateNameKindForDiagnostics(TplName) << TplName;
730       if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) {
731         Diag(TplDecl->getLocation(), diag::note_template_decl_here)
732           << TplDecl->getTemplateParameters()->getSourceRange();
733       }
734       return;
735     }
736   }
737 
738   // FIXME: Should we move the logic that tries to recover from a missing tag
739   // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
740 
741   if (!SS || (!SS->isSet() && !SS->isInvalid()))
742     Diag(IILoc, IsTemplateName ? diag::err_no_template
743                                : diag::err_unknown_typename)
744         << II;
745   else if (DeclContext *DC = computeDeclContext(*SS, false))
746     Diag(IILoc, IsTemplateName ? diag::err_no_member_template
747                                : diag::err_typename_nested_not_found)
748         << II << DC << SS->getRange();
749   else if (isDependentScopeSpecifier(*SS)) {
750     unsigned DiagID = diag::err_typename_missing;
751     if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
752       DiagID = diag::ext_typename_missing;
753 
754     Diag(SS->getRange().getBegin(), DiagID)
755       << SS->getScopeRep() << II->getName()
756       << SourceRange(SS->getRange().getBegin(), IILoc)
757       << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
758     SuggestedType = ActOnTypenameType(S, SourceLocation(),
759                                       *SS, *II, IILoc).get();
760   } else {
761     assert(SS && SS->isInvalid() &&
762            "Invalid scope specifier has already been diagnosed");
763   }
764 }
765 
766 /// \brief Determine whether the given result set contains either a type name
767 /// or
768 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
769   bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
770                        NextToken.is(tok::less);
771 
772   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
773     if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
774       return true;
775 
776     if (CheckTemplate && isa<TemplateDecl>(*I))
777       return true;
778   }
779 
780   return false;
781 }
782 
783 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
784                                     Scope *S, CXXScopeSpec &SS,
785                                     IdentifierInfo *&Name,
786                                     SourceLocation NameLoc) {
787   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
788   SemaRef.LookupParsedName(R, S, &SS);
789   if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
790     StringRef FixItTagName;
791     switch (Tag->getTagKind()) {
792       case TTK_Class:
793         FixItTagName = "class ";
794         break;
795 
796       case TTK_Enum:
797         FixItTagName = "enum ";
798         break;
799 
800       case TTK_Struct:
801         FixItTagName = "struct ";
802         break;
803 
804       case TTK_Interface:
805         FixItTagName = "__interface ";
806         break;
807 
808       case TTK_Union:
809         FixItTagName = "union ";
810         break;
811     }
812 
813     StringRef TagName = FixItTagName.drop_back();
814     SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
815       << Name << TagName << SemaRef.getLangOpts().CPlusPlus
816       << FixItHint::CreateInsertion(NameLoc, FixItTagName);
817 
818     for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
819          I != IEnd; ++I)
820       SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
821         << Name << TagName;
822 
823     // Replace lookup results with just the tag decl.
824     Result.clear(Sema::LookupTagName);
825     SemaRef.LookupParsedName(Result, S, &SS);
826     return true;
827   }
828 
829   return false;
830 }
831 
832 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
833 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
834                                   QualType T, SourceLocation NameLoc) {
835   ASTContext &Context = S.Context;
836 
837   TypeLocBuilder Builder;
838   Builder.pushTypeSpec(T).setNameLoc(NameLoc);
839 
840   T = S.getElaboratedType(ETK_None, SS, T);
841   ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
842   ElabTL.setElaboratedKeywordLoc(SourceLocation());
843   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
844   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
845 }
846 
847 Sema::NameClassification
848 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name,
849                    SourceLocation NameLoc, const Token &NextToken,
850                    bool IsAddressOfOperand,
851                    std::unique_ptr<CorrectionCandidateCallback> CCC) {
852   DeclarationNameInfo NameInfo(Name, NameLoc);
853   ObjCMethodDecl *CurMethod = getCurMethodDecl();
854 
855   if (NextToken.is(tok::coloncolon)) {
856     NestedNameSpecInfo IdInfo(Name, NameLoc, NextToken.getLocation());
857     BuildCXXNestedNameSpecifier(S, IdInfo, false, SS, nullptr, false);
858   } else if (getLangOpts().CPlusPlus && SS.isSet() &&
859              isCurrentClassName(*Name, S, &SS)) {
860     // Per [class.qual]p2, this names the constructors of SS, not the
861     // injected-class-name. We don't have a classification for that.
862     // There's not much point caching this result, since the parser
863     // will reject it later.
864     return NameClassification::Unknown();
865   }
866 
867   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
868   LookupParsedName(Result, S, &SS, !CurMethod);
869 
870   // For unqualified lookup in a class template in MSVC mode, look into
871   // dependent base classes where the primary class template is known.
872   if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) {
873     if (ParsedType TypeInBase =
874             recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc))
875       return TypeInBase;
876   }
877 
878   // Perform lookup for Objective-C instance variables (including automatically
879   // synthesized instance variables), if we're in an Objective-C method.
880   // FIXME: This lookup really, really needs to be folded in to the normal
881   // unqualified lookup mechanism.
882   if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
883     ExprResult E = LookupInObjCMethod(Result, S, Name, true);
884     if (E.get() || E.isInvalid())
885       return E;
886   }
887 
888   bool SecondTry = false;
889   bool IsFilteredTemplateName = false;
890 
891 Corrected:
892   switch (Result.getResultKind()) {
893   case LookupResult::NotFound:
894     // If an unqualified-id is followed by a '(', then we have a function
895     // call.
896     if (!SS.isSet() && NextToken.is(tok::l_paren)) {
897       // In C++, this is an ADL-only call.
898       // FIXME: Reference?
899       if (getLangOpts().CPlusPlus)
900         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
901 
902       // C90 6.3.2.2:
903       //   If the expression that precedes the parenthesized argument list in a
904       //   function call consists solely of an identifier, and if no
905       //   declaration is visible for this identifier, the identifier is
906       //   implicitly declared exactly as if, in the innermost block containing
907       //   the function call, the declaration
908       //
909       //     extern int identifier ();
910       //
911       //   appeared.
912       //
913       // We also allow this in C99 as an extension.
914       if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
915         Result.addDecl(D);
916         Result.resolveKind();
917         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false);
918       }
919     }
920 
921     // In C, we first see whether there is a tag type by the same name, in
922     // which case it's likely that the user just forgot to write "enum",
923     // "struct", or "union".
924     if (!getLangOpts().CPlusPlus && !SecondTry &&
925         isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
926       break;
927     }
928 
929     // Perform typo correction to determine if there is another name that is
930     // close to this name.
931     if (!SecondTry && CCC) {
932       SecondTry = true;
933       if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(),
934                                                  Result.getLookupKind(), S,
935                                                  &SS, std::move(CCC),
936                                                  CTK_ErrorRecovery)) {
937         unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
938         unsigned QualifiedDiag = diag::err_no_member_suggest;
939 
940         NamedDecl *FirstDecl = Corrected.getFoundDecl();
941         NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl();
942         if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
943             UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
944           UnqualifiedDiag = diag::err_no_template_suggest;
945           QualifiedDiag = diag::err_no_member_template_suggest;
946         } else if (UnderlyingFirstDecl &&
947                    (isa<TypeDecl>(UnderlyingFirstDecl) ||
948                     isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
949                     isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
950           UnqualifiedDiag = diag::err_unknown_typename_suggest;
951           QualifiedDiag = diag::err_unknown_nested_typename_suggest;
952         }
953 
954         if (SS.isEmpty()) {
955           diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
956         } else {// FIXME: is this even reachable? Test it.
957           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
958           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
959                                   Name->getName().equals(CorrectedStr);
960           diagnoseTypo(Corrected, PDiag(QualifiedDiag)
961                                     << Name << computeDeclContext(SS, false)
962                                     << DroppedSpecifier << SS.getRange());
963         }
964 
965         // Update the name, so that the caller has the new name.
966         Name = Corrected.getCorrectionAsIdentifierInfo();
967 
968         // Typo correction corrected to a keyword.
969         if (Corrected.isKeyword())
970           return Name;
971 
972         // Also update the LookupResult...
973         // FIXME: This should probably go away at some point
974         Result.clear();
975         Result.setLookupName(Corrected.getCorrection());
976         if (FirstDecl)
977           Result.addDecl(FirstDecl);
978 
979         // If we found an Objective-C instance variable, let
980         // LookupInObjCMethod build the appropriate expression to
981         // reference the ivar.
982         // FIXME: This is a gross hack.
983         if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
984           Result.clear();
985           ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
986           return E;
987         }
988 
989         goto Corrected;
990       }
991     }
992 
993     // We failed to correct; just fall through and let the parser deal with it.
994     Result.suppressDiagnostics();
995     return NameClassification::Unknown();
996 
997   case LookupResult::NotFoundInCurrentInstantiation: {
998     // We performed name lookup into the current instantiation, and there were
999     // dependent bases, so we treat this result the same way as any other
1000     // dependent nested-name-specifier.
1001 
1002     // C++ [temp.res]p2:
1003     //   A name used in a template declaration or definition and that is
1004     //   dependent on a template-parameter is assumed not to name a type
1005     //   unless the applicable name lookup finds a type name or the name is
1006     //   qualified by the keyword typename.
1007     //
1008     // FIXME: If the next token is '<', we might want to ask the parser to
1009     // perform some heroics to see if we actually have a
1010     // template-argument-list, which would indicate a missing 'template'
1011     // keyword here.
1012     return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
1013                                       NameInfo, IsAddressOfOperand,
1014                                       /*TemplateArgs=*/nullptr);
1015   }
1016 
1017   case LookupResult::Found:
1018   case LookupResult::FoundOverloaded:
1019   case LookupResult::FoundUnresolvedValue:
1020     break;
1021 
1022   case LookupResult::Ambiguous:
1023     if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1024         hasAnyAcceptableTemplateNames(Result)) {
1025       // C++ [temp.local]p3:
1026       //   A lookup that finds an injected-class-name (10.2) can result in an
1027       //   ambiguity in certain cases (for example, if it is found in more than
1028       //   one base class). If all of the injected-class-names that are found
1029       //   refer to specializations of the same class template, and if the name
1030       //   is followed by a template-argument-list, the reference refers to the
1031       //   class template itself and not a specialization thereof, and is not
1032       //   ambiguous.
1033       //
1034       // This filtering can make an ambiguous result into an unambiguous one,
1035       // so try again after filtering out template names.
1036       FilterAcceptableTemplateNames(Result);
1037       if (!Result.isAmbiguous()) {
1038         IsFilteredTemplateName = true;
1039         break;
1040       }
1041     }
1042 
1043     // Diagnose the ambiguity and return an error.
1044     return NameClassification::Error();
1045   }
1046 
1047   if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1048       (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) {
1049     // C++ [temp.names]p3:
1050     //   After name lookup (3.4) finds that a name is a template-name or that
1051     //   an operator-function-id or a literal- operator-id refers to a set of
1052     //   overloaded functions any member of which is a function template if
1053     //   this is followed by a <, the < is always taken as the delimiter of a
1054     //   template-argument-list and never as the less-than operator.
1055     if (!IsFilteredTemplateName)
1056       FilterAcceptableTemplateNames(Result);
1057 
1058     if (!Result.empty()) {
1059       bool IsFunctionTemplate;
1060       bool IsVarTemplate;
1061       TemplateName Template;
1062       if (Result.end() - Result.begin() > 1) {
1063         IsFunctionTemplate = true;
1064         Template = Context.getOverloadedTemplateName(Result.begin(),
1065                                                      Result.end());
1066       } else {
1067         TemplateDecl *TD
1068           = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl());
1069         IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
1070         IsVarTemplate = isa<VarTemplateDecl>(TD);
1071 
1072         if (SS.isSet() && !SS.isInvalid())
1073           Template = Context.getQualifiedTemplateName(SS.getScopeRep(),
1074                                                     /*TemplateKeyword=*/false,
1075                                                       TD);
1076         else
1077           Template = TemplateName(TD);
1078       }
1079 
1080       if (IsFunctionTemplate) {
1081         // Function templates always go through overload resolution, at which
1082         // point we'll perform the various checks (e.g., accessibility) we need
1083         // to based on which function we selected.
1084         Result.suppressDiagnostics();
1085 
1086         return NameClassification::FunctionTemplate(Template);
1087       }
1088 
1089       return IsVarTemplate ? NameClassification::VarTemplate(Template)
1090                            : NameClassification::TypeTemplate(Template);
1091     }
1092   }
1093 
1094   NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
1095   if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
1096     DiagnoseUseOfDecl(Type, NameLoc);
1097     MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
1098     QualType T = Context.getTypeDeclType(Type);
1099     if (SS.isNotEmpty())
1100       return buildNestedType(*this, SS, T, NameLoc);
1101     return ParsedType::make(T);
1102   }
1103 
1104   ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
1105   if (!Class) {
1106     // FIXME: It's unfortunate that we don't have a Type node for handling this.
1107     if (ObjCCompatibleAliasDecl *Alias =
1108             dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
1109       Class = Alias->getClassInterface();
1110   }
1111 
1112   if (Class) {
1113     DiagnoseUseOfDecl(Class, NameLoc);
1114 
1115     if (NextToken.is(tok::period)) {
1116       // Interface. <something> is parsed as a property reference expression.
1117       // Just return "unknown" as a fall-through for now.
1118       Result.suppressDiagnostics();
1119       return NameClassification::Unknown();
1120     }
1121 
1122     QualType T = Context.getObjCInterfaceType(Class);
1123     return ParsedType::make(T);
1124   }
1125 
1126   // We can have a type template here if we're classifying a template argument.
1127   if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) &&
1128       !isa<VarTemplateDecl>(FirstDecl))
1129     return NameClassification::TypeTemplate(
1130         TemplateName(cast<TemplateDecl>(FirstDecl)));
1131 
1132   // Check for a tag type hidden by a non-type decl in a few cases where it
1133   // seems likely a type is wanted instead of the non-type that was found.
1134   bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star);
1135   if ((NextToken.is(tok::identifier) ||
1136        (NextIsOp &&
1137         FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
1138       isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
1139     TypeDecl *Type = Result.getAsSingle<TypeDecl>();
1140     DiagnoseUseOfDecl(Type, NameLoc);
1141     QualType T = Context.getTypeDeclType(Type);
1142     if (SS.isNotEmpty())
1143       return buildNestedType(*this, SS, T, NameLoc);
1144     return ParsedType::make(T);
1145   }
1146 
1147   if (FirstDecl->isCXXClassMember())
1148     return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
1149                                            nullptr, S);
1150 
1151   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1152   return BuildDeclarationNameExpr(SS, Result, ADL);
1153 }
1154 
1155 Sema::TemplateNameKindForDiagnostics
1156 Sema::getTemplateNameKindForDiagnostics(TemplateName Name) {
1157   auto *TD = Name.getAsTemplateDecl();
1158   if (!TD)
1159     return TemplateNameKindForDiagnostics::DependentTemplate;
1160   if (isa<ClassTemplateDecl>(TD))
1161     return TemplateNameKindForDiagnostics::ClassTemplate;
1162   if (isa<FunctionTemplateDecl>(TD))
1163     return TemplateNameKindForDiagnostics::FunctionTemplate;
1164   if (isa<VarTemplateDecl>(TD))
1165     return TemplateNameKindForDiagnostics::VarTemplate;
1166   if (isa<TypeAliasTemplateDecl>(TD))
1167     return TemplateNameKindForDiagnostics::AliasTemplate;
1168   if (isa<TemplateTemplateParmDecl>(TD))
1169     return TemplateNameKindForDiagnostics::TemplateTemplateParam;
1170   return TemplateNameKindForDiagnostics::DependentTemplate;
1171 }
1172 
1173 // Determines the context to return to after temporarily entering a
1174 // context.  This depends in an unnecessarily complicated way on the
1175 // exact ordering of callbacks from the parser.
1176 DeclContext *Sema::getContainingDC(DeclContext *DC) {
1177 
1178   // Functions defined inline within classes aren't parsed until we've
1179   // finished parsing the top-level class, so the top-level class is
1180   // the context we'll need to return to.
1181   // A Lambda call operator whose parent is a class must not be treated
1182   // as an inline member function.  A Lambda can be used legally
1183   // either as an in-class member initializer or a default argument.  These
1184   // are parsed once the class has been marked complete and so the containing
1185   // context would be the nested class (when the lambda is defined in one);
1186   // If the class is not complete, then the lambda is being used in an
1187   // ill-formed fashion (such as to specify the width of a bit-field, or
1188   // in an array-bound) - in which case we still want to return the
1189   // lexically containing DC (which could be a nested class).
1190   if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) {
1191     DC = DC->getLexicalParent();
1192 
1193     // A function not defined within a class will always return to its
1194     // lexical context.
1195     if (!isa<CXXRecordDecl>(DC))
1196       return DC;
1197 
1198     // A C++ inline method/friend is parsed *after* the topmost class
1199     // it was declared in is fully parsed ("complete");  the topmost
1200     // class is the context we need to return to.
1201     while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
1202       DC = RD;
1203 
1204     // Return the declaration context of the topmost class the inline method is
1205     // declared in.
1206     return DC;
1207   }
1208 
1209   return DC->getLexicalParent();
1210 }
1211 
1212 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1213   assert(getContainingDC(DC) == CurContext &&
1214       "The next DeclContext should be lexically contained in the current one.");
1215   CurContext = DC;
1216   S->setEntity(DC);
1217 }
1218 
1219 void Sema::PopDeclContext() {
1220   assert(CurContext && "DeclContext imbalance!");
1221 
1222   CurContext = getContainingDC(CurContext);
1223   assert(CurContext && "Popped translation unit!");
1224 }
1225 
1226 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S,
1227                                                                     Decl *D) {
1228   // Unlike PushDeclContext, the context to which we return is not necessarily
1229   // the containing DC of TD, because the new context will be some pre-existing
1230   // TagDecl definition instead of a fresh one.
1231   auto Result = static_cast<SkippedDefinitionContext>(CurContext);
1232   CurContext = cast<TagDecl>(D)->getDefinition();
1233   assert(CurContext && "skipping definition of undefined tag");
1234   // Start lookups from the parent of the current context; we don't want to look
1235   // into the pre-existing complete definition.
1236   S->setEntity(CurContext->getLookupParent());
1237   return Result;
1238 }
1239 
1240 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) {
1241   CurContext = static_cast<decltype(CurContext)>(Context);
1242 }
1243 
1244 /// EnterDeclaratorContext - Used when we must lookup names in the context
1245 /// of a declarator's nested name specifier.
1246 ///
1247 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1248   // C++0x [basic.lookup.unqual]p13:
1249   //   A name used in the definition of a static data member of class
1250   //   X (after the qualified-id of the static member) is looked up as
1251   //   if the name was used in a member function of X.
1252   // C++0x [basic.lookup.unqual]p14:
1253   //   If a variable member of a namespace is defined outside of the
1254   //   scope of its namespace then any name used in the definition of
1255   //   the variable member (after the declarator-id) is looked up as
1256   //   if the definition of the variable member occurred in its
1257   //   namespace.
1258   // Both of these imply that we should push a scope whose context
1259   // is the semantic context of the declaration.  We can't use
1260   // PushDeclContext here because that context is not necessarily
1261   // lexically contained in the current context.  Fortunately,
1262   // the containing scope should have the appropriate information.
1263 
1264   assert(!S->getEntity() && "scope already has entity");
1265 
1266 #ifndef NDEBUG
1267   Scope *Ancestor = S->getParent();
1268   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1269   assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
1270 #endif
1271 
1272   CurContext = DC;
1273   S->setEntity(DC);
1274 }
1275 
1276 void Sema::ExitDeclaratorContext(Scope *S) {
1277   assert(S->getEntity() == CurContext && "Context imbalance!");
1278 
1279   // Switch back to the lexical context.  The safety of this is
1280   // enforced by an assert in EnterDeclaratorContext.
1281   Scope *Ancestor = S->getParent();
1282   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1283   CurContext = Ancestor->getEntity();
1284 
1285   // We don't need to do anything with the scope, which is going to
1286   // disappear.
1287 }
1288 
1289 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
1290   // We assume that the caller has already called
1291   // ActOnReenterTemplateScope so getTemplatedDecl() works.
1292   FunctionDecl *FD = D->getAsFunction();
1293   if (!FD)
1294     return;
1295 
1296   // Same implementation as PushDeclContext, but enters the context
1297   // from the lexical parent, rather than the top-level class.
1298   assert(CurContext == FD->getLexicalParent() &&
1299     "The next DeclContext should be lexically contained in the current one.");
1300   CurContext = FD;
1301   S->setEntity(CurContext);
1302 
1303   for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
1304     ParmVarDecl *Param = FD->getParamDecl(P);
1305     // If the parameter has an identifier, then add it to the scope
1306     if (Param->getIdentifier()) {
1307       S->AddDecl(Param);
1308       IdResolver.AddDecl(Param);
1309     }
1310   }
1311 }
1312 
1313 void Sema::ActOnExitFunctionContext() {
1314   // Same implementation as PopDeclContext, but returns to the lexical parent,
1315   // rather than the top-level class.
1316   assert(CurContext && "DeclContext imbalance!");
1317   CurContext = CurContext->getLexicalParent();
1318   assert(CurContext && "Popped translation unit!");
1319 }
1320 
1321 /// \brief Determine whether we allow overloading of the function
1322 /// PrevDecl with another declaration.
1323 ///
1324 /// This routine determines whether overloading is possible, not
1325 /// whether some new function is actually an overload. It will return
1326 /// true in C++ (where we can always provide overloads) or, as an
1327 /// extension, in C when the previous function is already an
1328 /// overloaded function declaration or has the "overloadable"
1329 /// attribute.
1330 static bool AllowOverloadingOfFunction(LookupResult &Previous,
1331                                        ASTContext &Context,
1332                                        const FunctionDecl *New) {
1333   if (Context.getLangOpts().CPlusPlus)
1334     return true;
1335 
1336   if (Previous.getResultKind() == LookupResult::FoundOverloaded)
1337     return true;
1338 
1339   return Previous.getResultKind() == LookupResult::Found &&
1340          (Previous.getFoundDecl()->hasAttr<OverloadableAttr>() ||
1341           New->hasAttr<OverloadableAttr>());
1342 }
1343 
1344 /// Add this decl to the scope shadowed decl chains.
1345 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
1346   // Move up the scope chain until we find the nearest enclosing
1347   // non-transparent context. The declaration will be introduced into this
1348   // scope.
1349   while (S->getEntity() && S->getEntity()->isTransparentContext())
1350     S = S->getParent();
1351 
1352   // Add scoped declarations into their context, so that they can be
1353   // found later. Declarations without a context won't be inserted
1354   // into any context.
1355   if (AddToContext)
1356     CurContext->addDecl(D);
1357 
1358   // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1359   // are function-local declarations.
1360   if (getLangOpts().CPlusPlus && D->isOutOfLine() &&
1361       !D->getDeclContext()->getRedeclContext()->Equals(
1362         D->getLexicalDeclContext()->getRedeclContext()) &&
1363       !D->getLexicalDeclContext()->isFunctionOrMethod())
1364     return;
1365 
1366   // Template instantiations should also not be pushed into scope.
1367   if (isa<FunctionDecl>(D) &&
1368       cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
1369     return;
1370 
1371   // If this replaces anything in the current scope,
1372   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1373                                IEnd = IdResolver.end();
1374   for (; I != IEnd; ++I) {
1375     if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1376       S->RemoveDecl(*I);
1377       IdResolver.RemoveDecl(*I);
1378 
1379       // Should only need to replace one decl.
1380       break;
1381     }
1382   }
1383 
1384   S->AddDecl(D);
1385 
1386   if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1387     // Implicitly-generated labels may end up getting generated in an order that
1388     // isn't strictly lexical, which breaks name lookup. Be careful to insert
1389     // the label at the appropriate place in the identifier chain.
1390     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
1391       DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
1392       if (IDC == CurContext) {
1393         if (!S->isDeclScope(*I))
1394           continue;
1395       } else if (IDC->Encloses(CurContext))
1396         break;
1397     }
1398 
1399     IdResolver.InsertDeclAfter(I, D);
1400   } else {
1401     IdResolver.AddDecl(D);
1402   }
1403 }
1404 
1405 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
1406   if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope)
1407     TUScope->AddDecl(D);
1408 }
1409 
1410 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
1411                          bool AllowInlineNamespace) {
1412   return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
1413 }
1414 
1415 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1416   DeclContext *TargetDC = DC->getPrimaryContext();
1417   do {
1418     if (DeclContext *ScopeDC = S->getEntity())
1419       if (ScopeDC->getPrimaryContext() == TargetDC)
1420         return S;
1421   } while ((S = S->getParent()));
1422 
1423   return nullptr;
1424 }
1425 
1426 static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1427                                             DeclContext*,
1428                                             ASTContext&);
1429 
1430 /// Filters out lookup results that don't fall within the given scope
1431 /// as determined by isDeclInScope.
1432 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1433                                 bool ConsiderLinkage,
1434                                 bool AllowInlineNamespace) {
1435   LookupResult::Filter F = R.makeFilter();
1436   while (F.hasNext()) {
1437     NamedDecl *D = F.next();
1438 
1439     if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
1440       continue;
1441 
1442     if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
1443       continue;
1444 
1445     F.erase();
1446   }
1447 
1448   F.done();
1449 }
1450 
1451 /// We've determined that \p New is a redeclaration of \p Old. Check that they
1452 /// have compatible owning modules.
1453 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) {
1454   // FIXME: The Modules TS is not clear about how friend declarations are
1455   // to be treated. It's not meaningful to have different owning modules for
1456   // linkage in redeclarations of the same entity, so for now allow the
1457   // redeclaration and change the owning modules to match.
1458   if (New->getFriendObjectKind() &&
1459       Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) {
1460     New->setLocalOwningModule(Old->getOwningModule());
1461     makeMergedDefinitionVisible(New);
1462     return false;
1463   }
1464 
1465   Module *NewM = New->getOwningModule();
1466   Module *OldM = Old->getOwningModule();
1467   if (NewM == OldM)
1468     return false;
1469 
1470   // FIXME: Check proclaimed-ownership-declarations here too.
1471   bool NewIsModuleInterface = NewM && NewM->Kind == Module::ModuleInterfaceUnit;
1472   bool OldIsModuleInterface = OldM && OldM->Kind == Module::ModuleInterfaceUnit;
1473   if (NewIsModuleInterface || OldIsModuleInterface) {
1474     // C++ Modules TS [basic.def.odr] 6.2/6.7 [sic]:
1475     //   if a declaration of D [...] appears in the purview of a module, all
1476     //   other such declarations shall appear in the purview of the same module
1477     Diag(New->getLocation(), diag::err_mismatched_owning_module)
1478       << New
1479       << NewIsModuleInterface
1480       << (NewIsModuleInterface ? NewM->getFullModuleName() : "")
1481       << OldIsModuleInterface
1482       << (OldIsModuleInterface ? OldM->getFullModuleName() : "");
1483     Diag(Old->getLocation(), diag::note_previous_declaration);
1484     New->setInvalidDecl();
1485     return true;
1486   }
1487 
1488   return false;
1489 }
1490 
1491 static bool isUsingDecl(NamedDecl *D) {
1492   return isa<UsingShadowDecl>(D) ||
1493          isa<UnresolvedUsingTypenameDecl>(D) ||
1494          isa<UnresolvedUsingValueDecl>(D);
1495 }
1496 
1497 /// Removes using shadow declarations from the lookup results.
1498 static void RemoveUsingDecls(LookupResult &R) {
1499   LookupResult::Filter F = R.makeFilter();
1500   while (F.hasNext())
1501     if (isUsingDecl(F.next()))
1502       F.erase();
1503 
1504   F.done();
1505 }
1506 
1507 /// \brief Check for this common pattern:
1508 /// @code
1509 /// class S {
1510 ///   S(const S&); // DO NOT IMPLEMENT
1511 ///   void operator=(const S&); // DO NOT IMPLEMENT
1512 /// };
1513 /// @endcode
1514 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1515   // FIXME: Should check for private access too but access is set after we get
1516   // the decl here.
1517   if (D->doesThisDeclarationHaveABody())
1518     return false;
1519 
1520   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1521     return CD->isCopyConstructor();
1522   return D->isCopyAssignmentOperator();
1523 }
1524 
1525 // We need this to handle
1526 //
1527 // typedef struct {
1528 //   void *foo() { return 0; }
1529 // } A;
1530 //
1531 // When we see foo we don't know if after the typedef we will get 'A' or '*A'
1532 // for example. If 'A', foo will have external linkage. If we have '*A',
1533 // foo will have no linkage. Since we can't know until we get to the end
1534 // of the typedef, this function finds out if D might have non-external linkage.
1535 // Callers should verify at the end of the TU if it D has external linkage or
1536 // not.
1537 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1538   const DeclContext *DC = D->getDeclContext();
1539   while (!DC->isTranslationUnit()) {
1540     if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1541       if (!RD->hasNameForLinkage())
1542         return true;
1543     }
1544     DC = DC->getParent();
1545   }
1546 
1547   return !D->isExternallyVisible();
1548 }
1549 
1550 // FIXME: This needs to be refactored; some other isInMainFile users want
1551 // these semantics.
1552 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1553   if (S.TUKind != TU_Complete)
1554     return false;
1555   return S.SourceMgr.isInMainFile(Loc);
1556 }
1557 
1558 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1559   assert(D);
1560 
1561   if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1562     return false;
1563 
1564   // Ignore all entities declared within templates, and out-of-line definitions
1565   // of members of class templates.
1566   if (D->getDeclContext()->isDependentContext() ||
1567       D->getLexicalDeclContext()->isDependentContext())
1568     return false;
1569 
1570   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1571     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1572       return false;
1573     // A non-out-of-line declaration of a member specialization was implicitly
1574     // instantiated; it's the out-of-line declaration that we're interested in.
1575     if (FD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1576         FD->getMemberSpecializationInfo() && !FD->isOutOfLine())
1577       return false;
1578 
1579     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1580       if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1581         return false;
1582     } else {
1583       // 'static inline' functions are defined in headers; don't warn.
1584       if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
1585         return false;
1586     }
1587 
1588     if (FD->doesThisDeclarationHaveABody() &&
1589         Context.DeclMustBeEmitted(FD))
1590       return false;
1591   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1592     // Constants and utility variables are defined in headers with internal
1593     // linkage; don't warn.  (Unlike functions, there isn't a convenient marker
1594     // like "inline".)
1595     if (!isMainFileLoc(*this, VD->getLocation()))
1596       return false;
1597 
1598     if (Context.DeclMustBeEmitted(VD))
1599       return false;
1600 
1601     if (VD->isStaticDataMember() &&
1602         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1603       return false;
1604     if (VD->isStaticDataMember() &&
1605         VD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1606         VD->getMemberSpecializationInfo() && !VD->isOutOfLine())
1607       return false;
1608 
1609     if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation()))
1610       return false;
1611   } else {
1612     return false;
1613   }
1614 
1615   // Only warn for unused decls internal to the translation unit.
1616   // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1617   // for inline functions defined in the main source file, for instance.
1618   return mightHaveNonExternalLinkage(D);
1619 }
1620 
1621 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
1622   if (!D)
1623     return;
1624 
1625   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1626     const FunctionDecl *First = FD->getFirstDecl();
1627     if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1628       return; // First should already be in the vector.
1629   }
1630 
1631   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1632     const VarDecl *First = VD->getFirstDecl();
1633     if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1634       return; // First should already be in the vector.
1635   }
1636 
1637   if (ShouldWarnIfUnusedFileScopedDecl(D))
1638     UnusedFileScopedDecls.push_back(D);
1639 }
1640 
1641 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
1642   if (D->isInvalidDecl())
1643     return false;
1644 
1645   bool Referenced = false;
1646   if (auto *DD = dyn_cast<DecompositionDecl>(D)) {
1647     // For a decomposition declaration, warn if none of the bindings are
1648     // referenced, instead of if the variable itself is referenced (which
1649     // it is, by the bindings' expressions).
1650     for (auto *BD : DD->bindings()) {
1651       if (BD->isReferenced()) {
1652         Referenced = true;
1653         break;
1654       }
1655     }
1656   } else if (!D->getDeclName()) {
1657     return false;
1658   } else if (D->isReferenced() || D->isUsed()) {
1659     Referenced = true;
1660   }
1661 
1662   if (Referenced || D->hasAttr<UnusedAttr>() ||
1663       D->hasAttr<ObjCPreciseLifetimeAttr>())
1664     return false;
1665 
1666   if (isa<LabelDecl>(D))
1667     return true;
1668 
1669   // Except for labels, we only care about unused decls that are local to
1670   // functions.
1671   bool WithinFunction = D->getDeclContext()->isFunctionOrMethod();
1672   if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext()))
1673     // For dependent types, the diagnostic is deferred.
1674     WithinFunction =
1675         WithinFunction || (R->isLocalClass() && !R->isDependentType());
1676   if (!WithinFunction)
1677     return false;
1678 
1679   if (isa<TypedefNameDecl>(D))
1680     return true;
1681 
1682   // White-list anything that isn't a local variable.
1683   if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D))
1684     return false;
1685 
1686   // Types of valid local variables should be complete, so this should succeed.
1687   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1688 
1689     // White-list anything with an __attribute__((unused)) type.
1690     const auto *Ty = VD->getType().getTypePtr();
1691 
1692     // Only look at the outermost level of typedef.
1693     if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
1694       if (TT->getDecl()->hasAttr<UnusedAttr>())
1695         return false;
1696     }
1697 
1698     // If we failed to complete the type for some reason, or if the type is
1699     // dependent, don't diagnose the variable.
1700     if (Ty->isIncompleteType() || Ty->isDependentType())
1701       return false;
1702 
1703     // Look at the element type to ensure that the warning behaviour is
1704     // consistent for both scalars and arrays.
1705     Ty = Ty->getBaseElementTypeUnsafe();
1706 
1707     if (const TagType *TT = Ty->getAs<TagType>()) {
1708       const TagDecl *Tag = TT->getDecl();
1709       if (Tag->hasAttr<UnusedAttr>())
1710         return false;
1711 
1712       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
1713         if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
1714           return false;
1715 
1716         if (const Expr *Init = VD->getInit()) {
1717           if (const ExprWithCleanups *Cleanups =
1718                   dyn_cast<ExprWithCleanups>(Init))
1719             Init = Cleanups->getSubExpr();
1720           const CXXConstructExpr *Construct =
1721             dyn_cast<CXXConstructExpr>(Init);
1722           if (Construct && !Construct->isElidable()) {
1723             CXXConstructorDecl *CD = Construct->getConstructor();
1724             if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() &&
1725                 (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
1726               return false;
1727           }
1728         }
1729       }
1730     }
1731 
1732     // TODO: __attribute__((unused)) templates?
1733   }
1734 
1735   return true;
1736 }
1737 
1738 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1739                                      FixItHint &Hint) {
1740   if (isa<LabelDecl>(D)) {
1741     SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
1742                 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
1743     if (AfterColon.isInvalid())
1744       return;
1745     Hint = FixItHint::CreateRemoval(CharSourceRange::
1746                                     getCharRange(D->getLocStart(), AfterColon));
1747   }
1748 }
1749 
1750 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1751   if (D->getTypeForDecl()->isDependentType())
1752     return;
1753 
1754   for (auto *TmpD : D->decls()) {
1755     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1756       DiagnoseUnusedDecl(T);
1757     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1758       DiagnoseUnusedNestedTypedefs(R);
1759   }
1760 }
1761 
1762 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1763 /// unless they are marked attr(unused).
1764 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1765   if (!ShouldDiagnoseUnusedDecl(D))
1766     return;
1767 
1768   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1769     // typedefs can be referenced later on, so the diagnostics are emitted
1770     // at end-of-translation-unit.
1771     UnusedLocalTypedefNameCandidates.insert(TD);
1772     return;
1773   }
1774 
1775   FixItHint Hint;
1776   GenerateFixForUnusedDecl(D, Context, Hint);
1777 
1778   unsigned DiagID;
1779   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1780     DiagID = diag::warn_unused_exception_param;
1781   else if (isa<LabelDecl>(D))
1782     DiagID = diag::warn_unused_label;
1783   else
1784     DiagID = diag::warn_unused_variable;
1785 
1786   Diag(D->getLocation(), DiagID) << D << Hint;
1787 }
1788 
1789 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1790   // Verify that we have no forward references left.  If so, there was a goto
1791   // or address of a label taken, but no definition of it.  Label fwd
1792   // definitions are indicated with a null substmt which is also not a resolved
1793   // MS inline assembly label name.
1794   bool Diagnose = false;
1795   if (L->isMSAsmLabel())
1796     Diagnose = !L->isResolvedMSAsmLabel();
1797   else
1798     Diagnose = L->getStmt() == nullptr;
1799   if (Diagnose)
1800     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1801 }
1802 
1803 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1804   S->mergeNRVOIntoParent();
1805 
1806   if (S->decl_empty()) return;
1807   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1808          "Scope shouldn't contain decls!");
1809 
1810   for (auto *TmpD : S->decls()) {
1811     assert(TmpD && "This decl didn't get pushed??");
1812 
1813     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1814     NamedDecl *D = cast<NamedDecl>(TmpD);
1815 
1816     // Diagnose unused variables in this scope.
1817     if (!S->hasUnrecoverableErrorOccurred()) {
1818       DiagnoseUnusedDecl(D);
1819       if (const auto *RD = dyn_cast<RecordDecl>(D))
1820         DiagnoseUnusedNestedTypedefs(RD);
1821     }
1822 
1823     if (!D->getDeclName()) continue;
1824 
1825     // If this was a forward reference to a label, verify it was defined.
1826     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1827       CheckPoppedLabel(LD, *this);
1828 
1829     // Remove this name from our lexical scope, and warn on it if we haven't
1830     // already.
1831     IdResolver.RemoveDecl(D);
1832     auto ShadowI = ShadowingDecls.find(D);
1833     if (ShadowI != ShadowingDecls.end()) {
1834       if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) {
1835         Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field)
1836             << D << FD << FD->getParent();
1837         Diag(FD->getLocation(), diag::note_previous_declaration);
1838       }
1839       ShadowingDecls.erase(ShadowI);
1840     }
1841   }
1842 }
1843 
1844 /// \brief Look for an Objective-C class in the translation unit.
1845 ///
1846 /// \param Id The name of the Objective-C class we're looking for. If
1847 /// typo-correction fixes this name, the Id will be updated
1848 /// to the fixed name.
1849 ///
1850 /// \param IdLoc The location of the name in the translation unit.
1851 ///
1852 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1853 /// if there is no class with the given name.
1854 ///
1855 /// \returns The declaration of the named Objective-C class, or NULL if the
1856 /// class could not be found.
1857 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1858                                               SourceLocation IdLoc,
1859                                               bool DoTypoCorrection) {
1860   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1861   // creation from this context.
1862   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1863 
1864   if (!IDecl && DoTypoCorrection) {
1865     // Perform typo correction at the given location, but only if we
1866     // find an Objective-C class name.
1867     if (TypoCorrection C = CorrectTypo(
1868             DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr,
1869             llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(),
1870             CTK_ErrorRecovery)) {
1871       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1872       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1873       Id = IDecl->getIdentifier();
1874     }
1875   }
1876   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1877   // This routine must always return a class definition, if any.
1878   if (Def && Def->getDefinition())
1879       Def = Def->getDefinition();
1880   return Def;
1881 }
1882 
1883 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
1884 /// from S, where a non-field would be declared. This routine copes
1885 /// with the difference between C and C++ scoping rules in structs and
1886 /// unions. For example, the following code is well-formed in C but
1887 /// ill-formed in C++:
1888 /// @code
1889 /// struct S6 {
1890 ///   enum { BAR } e;
1891 /// };
1892 ///
1893 /// void test_S6() {
1894 ///   struct S6 a;
1895 ///   a.e = BAR;
1896 /// }
1897 /// @endcode
1898 /// For the declaration of BAR, this routine will return a different
1899 /// scope. The scope S will be the scope of the unnamed enumeration
1900 /// within S6. In C++, this routine will return the scope associated
1901 /// with S6, because the enumeration's scope is a transparent
1902 /// context but structures can contain non-field names. In C, this
1903 /// routine will return the translation unit scope, since the
1904 /// enumeration's scope is a transparent context and structures cannot
1905 /// contain non-field names.
1906 Scope *Sema::getNonFieldDeclScope(Scope *S) {
1907   while (((S->getFlags() & Scope::DeclScope) == 0) ||
1908          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
1909          (S->isClassScope() && !getLangOpts().CPlusPlus))
1910     S = S->getParent();
1911   return S;
1912 }
1913 
1914 /// \brief Looks up the declaration of "struct objc_super" and
1915 /// saves it for later use in building builtin declaration of
1916 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1917 /// pre-existing declaration exists no action takes place.
1918 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1919                                         IdentifierInfo *II) {
1920   if (!II->isStr("objc_msgSendSuper"))
1921     return;
1922   ASTContext &Context = ThisSema.Context;
1923 
1924   LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1925                       SourceLocation(), Sema::LookupTagName);
1926   ThisSema.LookupName(Result, S);
1927   if (Result.getResultKind() == LookupResult::Found)
1928     if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1929       Context.setObjCSuperType(Context.getTagDeclType(TD));
1930 }
1931 
1932 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) {
1933   switch (Error) {
1934   case ASTContext::GE_None:
1935     return "";
1936   case ASTContext::GE_Missing_stdio:
1937     return "stdio.h";
1938   case ASTContext::GE_Missing_setjmp:
1939     return "setjmp.h";
1940   case ASTContext::GE_Missing_ucontext:
1941     return "ucontext.h";
1942   }
1943   llvm_unreachable("unhandled error kind");
1944 }
1945 
1946 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1947 /// file scope.  lazily create a decl for it. ForRedeclaration is true
1948 /// if we're creating this built-in in anticipation of redeclaring the
1949 /// built-in.
1950 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1951                                      Scope *S, bool ForRedeclaration,
1952                                      SourceLocation Loc) {
1953   LookupPredefedObjCSuperType(*this, S, II);
1954 
1955   ASTContext::GetBuiltinTypeError Error;
1956   QualType R = Context.GetBuiltinType(ID, Error);
1957   if (Error) {
1958     if (ForRedeclaration)
1959       Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
1960           << getHeaderName(Error) << Context.BuiltinInfo.getName(ID);
1961     return nullptr;
1962   }
1963 
1964   if (!ForRedeclaration &&
1965       (Context.BuiltinInfo.isPredefinedLibFunction(ID) ||
1966        Context.BuiltinInfo.isHeaderDependentFunction(ID))) {
1967     Diag(Loc, diag::ext_implicit_lib_function_decl)
1968         << Context.BuiltinInfo.getName(ID) << R;
1969     if (Context.BuiltinInfo.getHeaderName(ID) &&
1970         !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc))
1971       Diag(Loc, diag::note_include_header_or_declare)
1972           << Context.BuiltinInfo.getHeaderName(ID)
1973           << Context.BuiltinInfo.getName(ID);
1974   }
1975 
1976   if (R.isNull())
1977     return nullptr;
1978 
1979   DeclContext *Parent = Context.getTranslationUnitDecl();
1980   if (getLangOpts().CPlusPlus) {
1981     LinkageSpecDecl *CLinkageDecl =
1982         LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1983                                 LinkageSpecDecl::lang_c, false);
1984     CLinkageDecl->setImplicit();
1985     Parent->addDecl(CLinkageDecl);
1986     Parent = CLinkageDecl;
1987   }
1988 
1989   FunctionDecl *New = FunctionDecl::Create(Context,
1990                                            Parent,
1991                                            Loc, Loc, II, R, /*TInfo=*/nullptr,
1992                                            SC_Extern,
1993                                            false,
1994                                            R->isFunctionProtoType());
1995   New->setImplicit();
1996 
1997   // Create Decl objects for each parameter, adding them to the
1998   // FunctionDecl.
1999   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
2000     SmallVector<ParmVarDecl*, 16> Params;
2001     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2002       ParmVarDecl *parm =
2003           ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
2004                               nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
2005                               SC_None, nullptr);
2006       parm->setScopeInfo(0, i);
2007       Params.push_back(parm);
2008     }
2009     New->setParams(Params);
2010   }
2011 
2012   AddKnownFunctionAttributes(New);
2013   RegisterLocallyScopedExternCDecl(New, S);
2014 
2015   // TUScope is the translation-unit scope to insert this function into.
2016   // FIXME: This is hideous. We need to teach PushOnScopeChains to
2017   // relate Scopes to DeclContexts, and probably eliminate CurContext
2018   // entirely, but we're not there yet.
2019   DeclContext *SavedContext = CurContext;
2020   CurContext = Parent;
2021   PushOnScopeChains(New, TUScope);
2022   CurContext = SavedContext;
2023   return New;
2024 }
2025 
2026 /// Typedef declarations don't have linkage, but they still denote the same
2027 /// entity if their types are the same.
2028 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
2029 /// isSameEntity.
2030 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
2031                                                      TypedefNameDecl *Decl,
2032                                                      LookupResult &Previous) {
2033   // This is only interesting when modules are enabled.
2034   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
2035     return;
2036 
2037   // Empty sets are uninteresting.
2038   if (Previous.empty())
2039     return;
2040 
2041   LookupResult::Filter Filter = Previous.makeFilter();
2042   while (Filter.hasNext()) {
2043     NamedDecl *Old = Filter.next();
2044 
2045     // Non-hidden declarations are never ignored.
2046     if (S.isVisible(Old))
2047       continue;
2048 
2049     // Declarations of the same entity are not ignored, even if they have
2050     // different linkages.
2051     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2052       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
2053                                 Decl->getUnderlyingType()))
2054         continue;
2055 
2056       // If both declarations give a tag declaration a typedef name for linkage
2057       // purposes, then they declare the same entity.
2058       if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
2059           Decl->getAnonDeclWithTypedefName())
2060         continue;
2061     }
2062 
2063     Filter.erase();
2064   }
2065 
2066   Filter.done();
2067 }
2068 
2069 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
2070   QualType OldType;
2071   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
2072     OldType = OldTypedef->getUnderlyingType();
2073   else
2074     OldType = Context.getTypeDeclType(Old);
2075   QualType NewType = New->getUnderlyingType();
2076 
2077   if (NewType->isVariablyModifiedType()) {
2078     // Must not redefine a typedef with a variably-modified type.
2079     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2080     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
2081       << Kind << NewType;
2082     if (Old->getLocation().isValid())
2083       notePreviousDefinition(Old, New->getLocation());
2084     New->setInvalidDecl();
2085     return true;
2086   }
2087 
2088   if (OldType != NewType &&
2089       !OldType->isDependentType() &&
2090       !NewType->isDependentType() &&
2091       !Context.hasSameType(OldType, NewType)) {
2092     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2093     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
2094       << Kind << NewType << OldType;
2095     if (Old->getLocation().isValid())
2096       notePreviousDefinition(Old, New->getLocation());
2097     New->setInvalidDecl();
2098     return true;
2099   }
2100   return false;
2101 }
2102 
2103 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
2104 /// same name and scope as a previous declaration 'Old'.  Figure out
2105 /// how to resolve this situation, merging decls or emitting
2106 /// diagnostics as appropriate. If there was an error, set New to be invalid.
2107 ///
2108 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
2109                                 LookupResult &OldDecls) {
2110   // If the new decl is known invalid already, don't bother doing any
2111   // merging checks.
2112   if (New->isInvalidDecl()) return;
2113 
2114   // Allow multiple definitions for ObjC built-in typedefs.
2115   // FIXME: Verify the underlying types are equivalent!
2116   if (getLangOpts().ObjC1) {
2117     const IdentifierInfo *TypeID = New->getIdentifier();
2118     switch (TypeID->getLength()) {
2119     default: break;
2120     case 2:
2121       {
2122         if (!TypeID->isStr("id"))
2123           break;
2124         QualType T = New->getUnderlyingType();
2125         if (!T->isPointerType())
2126           break;
2127         if (!T->isVoidPointerType()) {
2128           QualType PT = T->getAs<PointerType>()->getPointeeType();
2129           if (!PT->isStructureType())
2130             break;
2131         }
2132         Context.setObjCIdRedefinitionType(T);
2133         // Install the built-in type for 'id', ignoring the current definition.
2134         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
2135         return;
2136       }
2137     case 5:
2138       if (!TypeID->isStr("Class"))
2139         break;
2140       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
2141       // Install the built-in type for 'Class', ignoring the current definition.
2142       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
2143       return;
2144     case 3:
2145       if (!TypeID->isStr("SEL"))
2146         break;
2147       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
2148       // Install the built-in type for 'SEL', ignoring the current definition.
2149       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
2150       return;
2151     }
2152     // Fall through - the typedef name was not a builtin type.
2153   }
2154 
2155   // Verify the old decl was also a type.
2156   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
2157   if (!Old) {
2158     Diag(New->getLocation(), diag::err_redefinition_different_kind)
2159       << New->getDeclName();
2160 
2161     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
2162     if (OldD->getLocation().isValid())
2163       notePreviousDefinition(OldD, New->getLocation());
2164 
2165     return New->setInvalidDecl();
2166   }
2167 
2168   // If the old declaration is invalid, just give up here.
2169   if (Old->isInvalidDecl())
2170     return New->setInvalidDecl();
2171 
2172   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2173     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
2174     auto *NewTag = New->getAnonDeclWithTypedefName();
2175     NamedDecl *Hidden = nullptr;
2176     if (OldTag && NewTag &&
2177         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
2178         !hasVisibleDefinition(OldTag, &Hidden)) {
2179       // There is a definition of this tag, but it is not visible. Use it
2180       // instead of our tag.
2181       New->setTypeForDecl(OldTD->getTypeForDecl());
2182       if (OldTD->isModed())
2183         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
2184                                     OldTD->getUnderlyingType());
2185       else
2186         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
2187 
2188       // Make the old tag definition visible.
2189       makeMergedDefinitionVisible(Hidden);
2190 
2191       // If this was an unscoped enumeration, yank all of its enumerators
2192       // out of the scope.
2193       if (isa<EnumDecl>(NewTag)) {
2194         Scope *EnumScope = getNonFieldDeclScope(S);
2195         for (auto *D : NewTag->decls()) {
2196           auto *ED = cast<EnumConstantDecl>(D);
2197           assert(EnumScope->isDeclScope(ED));
2198           EnumScope->RemoveDecl(ED);
2199           IdResolver.RemoveDecl(ED);
2200           ED->getLexicalDeclContext()->removeDecl(ED);
2201         }
2202       }
2203     }
2204   }
2205 
2206   // If the typedef types are not identical, reject them in all languages and
2207   // with any extensions enabled.
2208   if (isIncompatibleTypedef(Old, New))
2209     return;
2210 
2211   // The types match.  Link up the redeclaration chain and merge attributes if
2212   // the old declaration was a typedef.
2213   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
2214     New->setPreviousDecl(Typedef);
2215     mergeDeclAttributes(New, Old);
2216   }
2217 
2218   if (getLangOpts().MicrosoftExt)
2219     return;
2220 
2221   if (getLangOpts().CPlusPlus) {
2222     // C++ [dcl.typedef]p2:
2223     //   In a given non-class scope, a typedef specifier can be used to
2224     //   redefine the name of any type declared in that scope to refer
2225     //   to the type to which it already refers.
2226     if (!isa<CXXRecordDecl>(CurContext))
2227       return;
2228 
2229     // C++0x [dcl.typedef]p4:
2230     //   In a given class scope, a typedef specifier can be used to redefine
2231     //   any class-name declared in that scope that is not also a typedef-name
2232     //   to refer to the type to which it already refers.
2233     //
2234     // This wording came in via DR424, which was a correction to the
2235     // wording in DR56, which accidentally banned code like:
2236     //
2237     //   struct S {
2238     //     typedef struct A { } A;
2239     //   };
2240     //
2241     // in the C++03 standard. We implement the C++0x semantics, which
2242     // allow the above but disallow
2243     //
2244     //   struct S {
2245     //     typedef int I;
2246     //     typedef int I;
2247     //   };
2248     //
2249     // since that was the intent of DR56.
2250     if (!isa<TypedefNameDecl>(Old))
2251       return;
2252 
2253     Diag(New->getLocation(), diag::err_redefinition)
2254       << New->getDeclName();
2255     notePreviousDefinition(Old, New->getLocation());
2256     return New->setInvalidDecl();
2257   }
2258 
2259   // Modules always permit redefinition of typedefs, as does C11.
2260   if (getLangOpts().Modules || getLangOpts().C11)
2261     return;
2262 
2263   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2264   // is normally mapped to an error, but can be controlled with
2265   // -Wtypedef-redefinition.  If either the original or the redefinition is
2266   // in a system header, don't emit this for compatibility with GCC.
2267   if (getDiagnostics().getSuppressSystemWarnings() &&
2268       // Some standard types are defined implicitly in Clang (e.g. OpenCL).
2269       (Old->isImplicit() ||
2270        Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2271        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2272     return;
2273 
2274   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2275     << New->getDeclName();
2276   notePreviousDefinition(Old, New->getLocation());
2277 }
2278 
2279 /// DeclhasAttr - returns true if decl Declaration already has the target
2280 /// attribute.
2281 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2282   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2283   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2284   for (const auto *i : D->attrs())
2285     if (i->getKind() == A->getKind()) {
2286       if (Ann) {
2287         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2288           return true;
2289         continue;
2290       }
2291       // FIXME: Don't hardcode this check
2292       if (OA && isa<OwnershipAttr>(i))
2293         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2294       return true;
2295     }
2296 
2297   return false;
2298 }
2299 
2300 static bool isAttributeTargetADefinition(Decl *D) {
2301   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2302     return VD->isThisDeclarationADefinition();
2303   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2304     return TD->isCompleteDefinition() || TD->isBeingDefined();
2305   return true;
2306 }
2307 
2308 /// Merge alignment attributes from \p Old to \p New, taking into account the
2309 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2310 ///
2311 /// \return \c true if any attributes were added to \p New.
2312 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2313   // Look for alignas attributes on Old, and pick out whichever attribute
2314   // specifies the strictest alignment requirement.
2315   AlignedAttr *OldAlignasAttr = nullptr;
2316   AlignedAttr *OldStrictestAlignAttr = nullptr;
2317   unsigned OldAlign = 0;
2318   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2319     // FIXME: We have no way of representing inherited dependent alignments
2320     // in a case like:
2321     //   template<int A, int B> struct alignas(A) X;
2322     //   template<int A, int B> struct alignas(B) X {};
2323     // For now, we just ignore any alignas attributes which are not on the
2324     // definition in such a case.
2325     if (I->isAlignmentDependent())
2326       return false;
2327 
2328     if (I->isAlignas())
2329       OldAlignasAttr = I;
2330 
2331     unsigned Align = I->getAlignment(S.Context);
2332     if (Align > OldAlign) {
2333       OldAlign = Align;
2334       OldStrictestAlignAttr = I;
2335     }
2336   }
2337 
2338   // Look for alignas attributes on New.
2339   AlignedAttr *NewAlignasAttr = nullptr;
2340   unsigned NewAlign = 0;
2341   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2342     if (I->isAlignmentDependent())
2343       return false;
2344 
2345     if (I->isAlignas())
2346       NewAlignasAttr = I;
2347 
2348     unsigned Align = I->getAlignment(S.Context);
2349     if (Align > NewAlign)
2350       NewAlign = Align;
2351   }
2352 
2353   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2354     // Both declarations have 'alignas' attributes. We require them to match.
2355     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2356     // fall short. (If two declarations both have alignas, they must both match
2357     // every definition, and so must match each other if there is a definition.)
2358 
2359     // If either declaration only contains 'alignas(0)' specifiers, then it
2360     // specifies the natural alignment for the type.
2361     if (OldAlign == 0 || NewAlign == 0) {
2362       QualType Ty;
2363       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2364         Ty = VD->getType();
2365       else
2366         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2367 
2368       if (OldAlign == 0)
2369         OldAlign = S.Context.getTypeAlign(Ty);
2370       if (NewAlign == 0)
2371         NewAlign = S.Context.getTypeAlign(Ty);
2372     }
2373 
2374     if (OldAlign != NewAlign) {
2375       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2376         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2377         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2378       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2379     }
2380   }
2381 
2382   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2383     // C++11 [dcl.align]p6:
2384     //   if any declaration of an entity has an alignment-specifier,
2385     //   every defining declaration of that entity shall specify an
2386     //   equivalent alignment.
2387     // C11 6.7.5/7:
2388     //   If the definition of an object does not have an alignment
2389     //   specifier, any other declaration of that object shall also
2390     //   have no alignment specifier.
2391     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2392       << OldAlignasAttr;
2393     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2394       << OldAlignasAttr;
2395   }
2396 
2397   bool AnyAdded = false;
2398 
2399   // Ensure we have an attribute representing the strictest alignment.
2400   if (OldAlign > NewAlign) {
2401     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2402     Clone->setInherited(true);
2403     New->addAttr(Clone);
2404     AnyAdded = true;
2405   }
2406 
2407   // Ensure we have an alignas attribute if the old declaration had one.
2408   if (OldAlignasAttr && !NewAlignasAttr &&
2409       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2410     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2411     Clone->setInherited(true);
2412     New->addAttr(Clone);
2413     AnyAdded = true;
2414   }
2415 
2416   return AnyAdded;
2417 }
2418 
2419 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2420                                const InheritableAttr *Attr,
2421                                Sema::AvailabilityMergeKind AMK) {
2422   // This function copies an attribute Attr from a previous declaration to the
2423   // new declaration D if the new declaration doesn't itself have that attribute
2424   // yet or if that attribute allows duplicates.
2425   // If you're adding a new attribute that requires logic different from
2426   // "use explicit attribute on decl if present, else use attribute from
2427   // previous decl", for example if the attribute needs to be consistent
2428   // between redeclarations, you need to call a custom merge function here.
2429   InheritableAttr *NewAttr = nullptr;
2430   unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
2431   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2432     NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
2433                                       AA->isImplicit(), AA->getIntroduced(),
2434                                       AA->getDeprecated(),
2435                                       AA->getObsoleted(), AA->getUnavailable(),
2436                                       AA->getMessage(), AA->getStrict(),
2437                                       AA->getReplacement(), AMK,
2438                                       AttrSpellingListIndex);
2439   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2440     NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2441                                     AttrSpellingListIndex);
2442   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2443     NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2444                                         AttrSpellingListIndex);
2445   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2446     NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
2447                                    AttrSpellingListIndex);
2448   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2449     NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
2450                                    AttrSpellingListIndex);
2451   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2452     NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
2453                                 FA->getFormatIdx(), FA->getFirstArg(),
2454                                 AttrSpellingListIndex);
2455   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2456     NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
2457                                  AttrSpellingListIndex);
2458   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2459     NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
2460                                        AttrSpellingListIndex,
2461                                        IA->getSemanticSpelling());
2462   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2463     NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(),
2464                                       &S.Context.Idents.get(AA->getSpelling()),
2465                                       AttrSpellingListIndex);
2466   else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) &&
2467            (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) ||
2468             isa<CUDAGlobalAttr>(Attr))) {
2469     // CUDA target attributes are part of function signature for
2470     // overloading purposes and must not be merged.
2471     return false;
2472   } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2473     NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex);
2474   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2475     NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex);
2476   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2477     NewAttr = S.mergeInternalLinkageAttr(
2478         D, InternalLinkageA->getRange(),
2479         &S.Context.Idents.get(InternalLinkageA->getSpelling()),
2480         AttrSpellingListIndex);
2481   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2482     NewAttr = S.mergeCommonAttr(D, CommonA->getRange(),
2483                                 &S.Context.Idents.get(CommonA->getSpelling()),
2484                                 AttrSpellingListIndex);
2485   else if (isa<AlignedAttr>(Attr))
2486     // AlignedAttrs are handled separately, because we need to handle all
2487     // such attributes on a declaration at the same time.
2488     NewAttr = nullptr;
2489   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2490            (AMK == Sema::AMK_Override ||
2491             AMK == Sema::AMK_ProtocolImplementation))
2492     NewAttr = nullptr;
2493   else if (const auto *UA = dyn_cast<UuidAttr>(Attr))
2494     NewAttr = S.mergeUuidAttr(D, UA->getRange(), AttrSpellingListIndex,
2495                               UA->getGuid());
2496   else if (Attr->shouldInheritEvenIfAlreadyPresent() || !DeclHasAttr(D, Attr))
2497     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2498 
2499   if (NewAttr) {
2500     NewAttr->setInherited(true);
2501     D->addAttr(NewAttr);
2502     if (isa<MSInheritanceAttr>(NewAttr))
2503       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2504     return true;
2505   }
2506 
2507   return false;
2508 }
2509 
2510 static const NamedDecl *getDefinition(const Decl *D) {
2511   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2512     return TD->getDefinition();
2513   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2514     const VarDecl *Def = VD->getDefinition();
2515     if (Def)
2516       return Def;
2517     return VD->getActingDefinition();
2518   }
2519   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2520     return FD->getDefinition();
2521   return nullptr;
2522 }
2523 
2524 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2525   for (const auto *Attribute : D->attrs())
2526     if (Attribute->getKind() == Kind)
2527       return true;
2528   return false;
2529 }
2530 
2531 /// checkNewAttributesAfterDef - If we already have a definition, check that
2532 /// there are no new attributes in this declaration.
2533 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2534   if (!New->hasAttrs())
2535     return;
2536 
2537   const NamedDecl *Def = getDefinition(Old);
2538   if (!Def || Def == New)
2539     return;
2540 
2541   AttrVec &NewAttributes = New->getAttrs();
2542   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2543     const Attr *NewAttribute = NewAttributes[I];
2544 
2545     if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) {
2546       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2547         Sema::SkipBodyInfo SkipBody;
2548         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2549 
2550         // If we're skipping this definition, drop the "alias" attribute.
2551         if (SkipBody.ShouldSkip) {
2552           NewAttributes.erase(NewAttributes.begin() + I);
2553           --E;
2554           continue;
2555         }
2556       } else {
2557         VarDecl *VD = cast<VarDecl>(New);
2558         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2559                                 VarDecl::TentativeDefinition
2560                             ? diag::err_alias_after_tentative
2561                             : diag::err_redefinition;
2562         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2563         if (Diag == diag::err_redefinition)
2564           S.notePreviousDefinition(Def, VD->getLocation());
2565         else
2566           S.Diag(Def->getLocation(), diag::note_previous_definition);
2567         VD->setInvalidDecl();
2568       }
2569       ++I;
2570       continue;
2571     }
2572 
2573     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2574       // Tentative definitions are only interesting for the alias check above.
2575       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2576         ++I;
2577         continue;
2578       }
2579     }
2580 
2581     if (hasAttribute(Def, NewAttribute->getKind())) {
2582       ++I;
2583       continue; // regular attr merging will take care of validating this.
2584     }
2585 
2586     if (isa<C11NoReturnAttr>(NewAttribute)) {
2587       // C's _Noreturn is allowed to be added to a function after it is defined.
2588       ++I;
2589       continue;
2590     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2591       if (AA->isAlignas()) {
2592         // C++11 [dcl.align]p6:
2593         //   if any declaration of an entity has an alignment-specifier,
2594         //   every defining declaration of that entity shall specify an
2595         //   equivalent alignment.
2596         // C11 6.7.5/7:
2597         //   If the definition of an object does not have an alignment
2598         //   specifier, any other declaration of that object shall also
2599         //   have no alignment specifier.
2600         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2601           << AA;
2602         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2603           << AA;
2604         NewAttributes.erase(NewAttributes.begin() + I);
2605         --E;
2606         continue;
2607       }
2608     }
2609 
2610     S.Diag(NewAttribute->getLocation(),
2611            diag::warn_attribute_precede_definition);
2612     S.Diag(Def->getLocation(), diag::note_previous_definition);
2613     NewAttributes.erase(NewAttributes.begin() + I);
2614     --E;
2615   }
2616 }
2617 
2618 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2619 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2620                                AvailabilityMergeKind AMK) {
2621   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2622     UsedAttr *NewAttr = OldAttr->clone(Context);
2623     NewAttr->setInherited(true);
2624     New->addAttr(NewAttr);
2625   }
2626 
2627   if (!Old->hasAttrs() && !New->hasAttrs())
2628     return;
2629 
2630   // Attributes declared post-definition are currently ignored.
2631   checkNewAttributesAfterDef(*this, New, Old);
2632 
2633   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2634     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2635       if (OldA->getLabel() != NewA->getLabel()) {
2636         // This redeclaration changes __asm__ label.
2637         Diag(New->getLocation(), diag::err_different_asm_label);
2638         Diag(OldA->getLocation(), diag::note_previous_declaration);
2639       }
2640     } else if (Old->isUsed()) {
2641       // This redeclaration adds an __asm__ label to a declaration that has
2642       // already been ODR-used.
2643       Diag(New->getLocation(), diag::err_late_asm_label_name)
2644         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2645     }
2646   }
2647 
2648   // Re-declaration cannot add abi_tag's.
2649   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2650     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2651       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2652         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2653                       NewTag) == OldAbiTagAttr->tags_end()) {
2654           Diag(NewAbiTagAttr->getLocation(),
2655                diag::err_new_abi_tag_on_redeclaration)
2656               << NewTag;
2657           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2658         }
2659       }
2660     } else {
2661       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2662       Diag(Old->getLocation(), diag::note_previous_declaration);
2663     }
2664   }
2665 
2666   // This redeclaration adds a section attribute.
2667   if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) {
2668     if (auto *VD = dyn_cast<VarDecl>(New)) {
2669       if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) {
2670         Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration);
2671         Diag(Old->getLocation(), diag::note_previous_declaration);
2672       }
2673     }
2674   }
2675 
2676   if (!Old->hasAttrs())
2677     return;
2678 
2679   bool foundAny = New->hasAttrs();
2680 
2681   // Ensure that any moving of objects within the allocated map is done before
2682   // we process them.
2683   if (!foundAny) New->setAttrs(AttrVec());
2684 
2685   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2686     // Ignore deprecated/unavailable/availability attributes if requested.
2687     AvailabilityMergeKind LocalAMK = AMK_None;
2688     if (isa<DeprecatedAttr>(I) ||
2689         isa<UnavailableAttr>(I) ||
2690         isa<AvailabilityAttr>(I)) {
2691       switch (AMK) {
2692       case AMK_None:
2693         continue;
2694 
2695       case AMK_Redeclaration:
2696       case AMK_Override:
2697       case AMK_ProtocolImplementation:
2698         LocalAMK = AMK;
2699         break;
2700       }
2701     }
2702 
2703     // Already handled.
2704     if (isa<UsedAttr>(I))
2705       continue;
2706 
2707     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2708       foundAny = true;
2709   }
2710 
2711   if (mergeAlignedAttrs(*this, New, Old))
2712     foundAny = true;
2713 
2714   if (!foundAny) New->dropAttrs();
2715 }
2716 
2717 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2718 /// to the new one.
2719 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2720                                      const ParmVarDecl *oldDecl,
2721                                      Sema &S) {
2722   // C++11 [dcl.attr.depend]p2:
2723   //   The first declaration of a function shall specify the
2724   //   carries_dependency attribute for its declarator-id if any declaration
2725   //   of the function specifies the carries_dependency attribute.
2726   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2727   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2728     S.Diag(CDA->getLocation(),
2729            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2730     // Find the first declaration of the parameter.
2731     // FIXME: Should we build redeclaration chains for function parameters?
2732     const FunctionDecl *FirstFD =
2733       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2734     const ParmVarDecl *FirstVD =
2735       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2736     S.Diag(FirstVD->getLocation(),
2737            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2738   }
2739 
2740   if (!oldDecl->hasAttrs())
2741     return;
2742 
2743   bool foundAny = newDecl->hasAttrs();
2744 
2745   // Ensure that any moving of objects within the allocated map is
2746   // done before we process them.
2747   if (!foundAny) newDecl->setAttrs(AttrVec());
2748 
2749   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2750     if (!DeclHasAttr(newDecl, I)) {
2751       InheritableAttr *newAttr =
2752         cast<InheritableParamAttr>(I->clone(S.Context));
2753       newAttr->setInherited(true);
2754       newDecl->addAttr(newAttr);
2755       foundAny = true;
2756     }
2757   }
2758 
2759   if (!foundAny) newDecl->dropAttrs();
2760 }
2761 
2762 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
2763                                 const ParmVarDecl *OldParam,
2764                                 Sema &S) {
2765   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
2766     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
2767       if (*Oldnullability != *Newnullability) {
2768         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
2769           << DiagNullabilityKind(
2770                *Newnullability,
2771                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2772                 != 0))
2773           << DiagNullabilityKind(
2774                *Oldnullability,
2775                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2776                 != 0));
2777         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
2778       }
2779     } else {
2780       QualType NewT = NewParam->getType();
2781       NewT = S.Context.getAttributedType(
2782                          AttributedType::getNullabilityAttrKind(*Oldnullability),
2783                          NewT, NewT);
2784       NewParam->setType(NewT);
2785     }
2786   }
2787 }
2788 
2789 namespace {
2790 
2791 /// Used in MergeFunctionDecl to keep track of function parameters in
2792 /// C.
2793 struct GNUCompatibleParamWarning {
2794   ParmVarDecl *OldParm;
2795   ParmVarDecl *NewParm;
2796   QualType PromotedType;
2797 };
2798 
2799 } // end anonymous namespace
2800 
2801 /// getSpecialMember - get the special member enum for a method.
2802 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
2803   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
2804     if (Ctor->isDefaultConstructor())
2805       return Sema::CXXDefaultConstructor;
2806 
2807     if (Ctor->isCopyConstructor())
2808       return Sema::CXXCopyConstructor;
2809 
2810     if (Ctor->isMoveConstructor())
2811       return Sema::CXXMoveConstructor;
2812   } else if (isa<CXXDestructorDecl>(MD)) {
2813     return Sema::CXXDestructor;
2814   } else if (MD->isCopyAssignmentOperator()) {
2815     return Sema::CXXCopyAssignment;
2816   } else if (MD->isMoveAssignmentOperator()) {
2817     return Sema::CXXMoveAssignment;
2818   }
2819 
2820   return Sema::CXXInvalid;
2821 }
2822 
2823 // Determine whether the previous declaration was a definition, implicit
2824 // declaration, or a declaration.
2825 template <typename T>
2826 static std::pair<diag::kind, SourceLocation>
2827 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
2828   diag::kind PrevDiag;
2829   SourceLocation OldLocation = Old->getLocation();
2830   if (Old->isThisDeclarationADefinition())
2831     PrevDiag = diag::note_previous_definition;
2832   else if (Old->isImplicit()) {
2833     PrevDiag = diag::note_previous_implicit_declaration;
2834     if (OldLocation.isInvalid())
2835       OldLocation = New->getLocation();
2836   } else
2837     PrevDiag = diag::note_previous_declaration;
2838   return std::make_pair(PrevDiag, OldLocation);
2839 }
2840 
2841 /// canRedefineFunction - checks if a function can be redefined. Currently,
2842 /// only extern inline functions can be redefined, and even then only in
2843 /// GNU89 mode.
2844 static bool canRedefineFunction(const FunctionDecl *FD,
2845                                 const LangOptions& LangOpts) {
2846   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2847           !LangOpts.CPlusPlus &&
2848           FD->isInlineSpecified() &&
2849           FD->getStorageClass() == SC_Extern);
2850 }
2851 
2852 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2853   const AttributedType *AT = T->getAs<AttributedType>();
2854   while (AT && !AT->isCallingConv())
2855     AT = AT->getModifiedType()->getAs<AttributedType>();
2856   return AT;
2857 }
2858 
2859 template <typename T>
2860 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
2861   const DeclContext *DC = Old->getDeclContext();
2862   if (DC->isRecord())
2863     return false;
2864 
2865   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
2866   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
2867     return true;
2868   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
2869     return true;
2870   return false;
2871 }
2872 
2873 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
2874 static bool isExternC(VarTemplateDecl *) { return false; }
2875 
2876 /// \brief Check whether a redeclaration of an entity introduced by a
2877 /// using-declaration is valid, given that we know it's not an overload
2878 /// (nor a hidden tag declaration).
2879 template<typename ExpectedDecl>
2880 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
2881                                    ExpectedDecl *New) {
2882   // C++11 [basic.scope.declarative]p4:
2883   //   Given a set of declarations in a single declarative region, each of
2884   //   which specifies the same unqualified name,
2885   //   -- they shall all refer to the same entity, or all refer to functions
2886   //      and function templates; or
2887   //   -- exactly one declaration shall declare a class name or enumeration
2888   //      name that is not a typedef name and the other declarations shall all
2889   //      refer to the same variable or enumerator, or all refer to functions
2890   //      and function templates; in this case the class name or enumeration
2891   //      name is hidden (3.3.10).
2892 
2893   // C++11 [namespace.udecl]p14:
2894   //   If a function declaration in namespace scope or block scope has the
2895   //   same name and the same parameter-type-list as a function introduced
2896   //   by a using-declaration, and the declarations do not declare the same
2897   //   function, the program is ill-formed.
2898 
2899   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
2900   if (Old &&
2901       !Old->getDeclContext()->getRedeclContext()->Equals(
2902           New->getDeclContext()->getRedeclContext()) &&
2903       !(isExternC(Old) && isExternC(New)))
2904     Old = nullptr;
2905 
2906   if (!Old) {
2907     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2908     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
2909     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2910     return true;
2911   }
2912   return false;
2913 }
2914 
2915 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
2916                                             const FunctionDecl *B) {
2917   assert(A->getNumParams() == B->getNumParams());
2918 
2919   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
2920     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
2921     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
2922     if (AttrA == AttrB)
2923       return true;
2924     return AttrA && AttrB && AttrA->getType() == AttrB->getType();
2925   };
2926 
2927   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
2928 }
2929 
2930 /// If necessary, adjust the semantic declaration context for a qualified
2931 /// declaration to name the correct inline namespace within the qualifier.
2932 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD,
2933                                                DeclaratorDecl *OldD) {
2934   // The only case where we need to update the DeclContext is when
2935   // redeclaration lookup for a qualified name finds a declaration
2936   // in an inline namespace within the context named by the qualifier:
2937   //
2938   //   inline namespace N { int f(); }
2939   //   int ::f(); // Sema DC needs adjusting from :: to N::.
2940   //
2941   // For unqualified declarations, the semantic context *can* change
2942   // along the redeclaration chain (for local extern declarations,
2943   // extern "C" declarations, and friend declarations in particular).
2944   if (!NewD->getQualifier())
2945     return;
2946 
2947   // NewD is probably already in the right context.
2948   auto *NamedDC = NewD->getDeclContext()->getRedeclContext();
2949   auto *SemaDC = OldD->getDeclContext()->getRedeclContext();
2950   if (NamedDC->Equals(SemaDC))
2951     return;
2952 
2953   assert((NamedDC->InEnclosingNamespaceSetOf(SemaDC) ||
2954           NewD->isInvalidDecl() || OldD->isInvalidDecl()) &&
2955          "unexpected context for redeclaration");
2956 
2957   auto *LexDC = NewD->getLexicalDeclContext();
2958   auto FixSemaDC = [=](NamedDecl *D) {
2959     if (!D)
2960       return;
2961     D->setDeclContext(SemaDC);
2962     D->setLexicalDeclContext(LexDC);
2963   };
2964 
2965   FixSemaDC(NewD);
2966   if (auto *FD = dyn_cast<FunctionDecl>(NewD))
2967     FixSemaDC(FD->getDescribedFunctionTemplate());
2968   else if (auto *VD = dyn_cast<VarDecl>(NewD))
2969     FixSemaDC(VD->getDescribedVarTemplate());
2970 }
2971 
2972 /// MergeFunctionDecl - We just parsed a function 'New' from
2973 /// declarator D which has the same name and scope as a previous
2974 /// declaration 'Old'.  Figure out how to resolve this situation,
2975 /// merging decls or emitting diagnostics as appropriate.
2976 ///
2977 /// In C++, New and Old must be declarations that are not
2978 /// overloaded. Use IsOverload to determine whether New and Old are
2979 /// overloaded, and to select the Old declaration that New should be
2980 /// merged with.
2981 ///
2982 /// Returns true if there was an error, false otherwise.
2983 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2984                              Scope *S, bool MergeTypeWithOld) {
2985   // Verify the old decl was also a function.
2986   FunctionDecl *Old = OldD->getAsFunction();
2987   if (!Old) {
2988     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
2989       if (New->getFriendObjectKind()) {
2990         Diag(New->getLocation(), diag::err_using_decl_friend);
2991         Diag(Shadow->getTargetDecl()->getLocation(),
2992              diag::note_using_decl_target);
2993         Diag(Shadow->getUsingDecl()->getLocation(),
2994              diag::note_using_decl) << 0;
2995         return true;
2996       }
2997 
2998       // Check whether the two declarations might declare the same function.
2999       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
3000         return true;
3001       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
3002     } else {
3003       Diag(New->getLocation(), diag::err_redefinition_different_kind)
3004         << New->getDeclName();
3005       notePreviousDefinition(OldD, New->getLocation());
3006       return true;
3007     }
3008   }
3009 
3010   // If the old declaration is invalid, just give up here.
3011   if (Old->isInvalidDecl())
3012     return true;
3013 
3014   diag::kind PrevDiag;
3015   SourceLocation OldLocation;
3016   std::tie(PrevDiag, OldLocation) =
3017       getNoteDiagForInvalidRedeclaration(Old, New);
3018 
3019   // Don't complain about this if we're in GNU89 mode and the old function
3020   // is an extern inline function.
3021   // Don't complain about specializations. They are not supposed to have
3022   // storage classes.
3023   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
3024       New->getStorageClass() == SC_Static &&
3025       Old->hasExternalFormalLinkage() &&
3026       !New->getTemplateSpecializationInfo() &&
3027       !canRedefineFunction(Old, getLangOpts())) {
3028     if (getLangOpts().MicrosoftExt) {
3029       Diag(New->getLocation(), diag::ext_static_non_static) << New;
3030       Diag(OldLocation, PrevDiag);
3031     } else {
3032       Diag(New->getLocation(), diag::err_static_non_static) << New;
3033       Diag(OldLocation, PrevDiag);
3034       return true;
3035     }
3036   }
3037 
3038   if (New->hasAttr<InternalLinkageAttr>() &&
3039       !Old->hasAttr<InternalLinkageAttr>()) {
3040     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3041         << New->getDeclName();
3042     notePreviousDefinition(Old, New->getLocation());
3043     New->dropAttr<InternalLinkageAttr>();
3044   }
3045 
3046   if (CheckRedeclarationModuleOwnership(New, Old))
3047     return true;
3048 
3049   if (!getLangOpts().CPlusPlus) {
3050     bool OldOvl = Old->hasAttr<OverloadableAttr>();
3051     if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) {
3052       Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch)
3053         << New << OldOvl;
3054 
3055       // Try our best to find a decl that actually has the overloadable
3056       // attribute for the note. In most cases (e.g. programs with only one
3057       // broken declaration/definition), this won't matter.
3058       //
3059       // FIXME: We could do this if we juggled some extra state in
3060       // OverloadableAttr, rather than just removing it.
3061       const Decl *DiagOld = Old;
3062       if (OldOvl) {
3063         auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) {
3064           const auto *A = D->getAttr<OverloadableAttr>();
3065           return A && !A->isImplicit();
3066         });
3067         // If we've implicitly added *all* of the overloadable attrs to this
3068         // chain, emitting a "previous redecl" note is pointless.
3069         DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter;
3070       }
3071 
3072       if (DiagOld)
3073         Diag(DiagOld->getLocation(),
3074              diag::note_attribute_overloadable_prev_overload)
3075           << OldOvl;
3076 
3077       if (OldOvl)
3078         New->addAttr(OverloadableAttr::CreateImplicit(Context));
3079       else
3080         New->dropAttr<OverloadableAttr>();
3081     }
3082   }
3083 
3084   // If a function is first declared with a calling convention, but is later
3085   // declared or defined without one, all following decls assume the calling
3086   // convention of the first.
3087   //
3088   // It's OK if a function is first declared without a calling convention,
3089   // but is later declared or defined with the default calling convention.
3090   //
3091   // To test if either decl has an explicit calling convention, we look for
3092   // AttributedType sugar nodes on the type as written.  If they are missing or
3093   // were canonicalized away, we assume the calling convention was implicit.
3094   //
3095   // Note also that we DO NOT return at this point, because we still have
3096   // other tests to run.
3097   QualType OldQType = Context.getCanonicalType(Old->getType());
3098   QualType NewQType = Context.getCanonicalType(New->getType());
3099   const FunctionType *OldType = cast<FunctionType>(OldQType);
3100   const FunctionType *NewType = cast<FunctionType>(NewQType);
3101   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
3102   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
3103   bool RequiresAdjustment = false;
3104 
3105   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
3106     FunctionDecl *First = Old->getFirstDecl();
3107     const FunctionType *FT =
3108         First->getType().getCanonicalType()->castAs<FunctionType>();
3109     FunctionType::ExtInfo FI = FT->getExtInfo();
3110     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
3111     if (!NewCCExplicit) {
3112       // Inherit the CC from the previous declaration if it was specified
3113       // there but not here.
3114       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
3115       RequiresAdjustment = true;
3116     } else {
3117       // Calling conventions aren't compatible, so complain.
3118       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
3119       Diag(New->getLocation(), diag::err_cconv_change)
3120         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
3121         << !FirstCCExplicit
3122         << (!FirstCCExplicit ? "" :
3123             FunctionType::getNameForCallConv(FI.getCC()));
3124 
3125       // Put the note on the first decl, since it is the one that matters.
3126       Diag(First->getLocation(), diag::note_previous_declaration);
3127       return true;
3128     }
3129   }
3130 
3131   // FIXME: diagnose the other way around?
3132   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
3133     NewTypeInfo = NewTypeInfo.withNoReturn(true);
3134     RequiresAdjustment = true;
3135   }
3136 
3137   // Merge regparm attribute.
3138   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
3139       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
3140     if (NewTypeInfo.getHasRegParm()) {
3141       Diag(New->getLocation(), diag::err_regparm_mismatch)
3142         << NewType->getRegParmType()
3143         << OldType->getRegParmType();
3144       Diag(OldLocation, diag::note_previous_declaration);
3145       return true;
3146     }
3147 
3148     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
3149     RequiresAdjustment = true;
3150   }
3151 
3152   // Merge ns_returns_retained attribute.
3153   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
3154     if (NewTypeInfo.getProducesResult()) {
3155       Diag(New->getLocation(), diag::err_function_attribute_mismatch)
3156           << "'ns_returns_retained'";
3157       Diag(OldLocation, diag::note_previous_declaration);
3158       return true;
3159     }
3160 
3161     NewTypeInfo = NewTypeInfo.withProducesResult(true);
3162     RequiresAdjustment = true;
3163   }
3164 
3165   if (OldTypeInfo.getNoCallerSavedRegs() !=
3166       NewTypeInfo.getNoCallerSavedRegs()) {
3167     if (NewTypeInfo.getNoCallerSavedRegs()) {
3168       AnyX86NoCallerSavedRegistersAttr *Attr =
3169         New->getAttr<AnyX86NoCallerSavedRegistersAttr>();
3170       Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr;
3171       Diag(OldLocation, diag::note_previous_declaration);
3172       return true;
3173     }
3174 
3175     NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true);
3176     RequiresAdjustment = true;
3177   }
3178 
3179   if (RequiresAdjustment) {
3180     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
3181     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
3182     New->setType(QualType(AdjustedType, 0));
3183     NewQType = Context.getCanonicalType(New->getType());
3184     NewType = cast<FunctionType>(NewQType);
3185   }
3186 
3187   // If this redeclaration makes the function inline, we may need to add it to
3188   // UndefinedButUsed.
3189   if (!Old->isInlined() && New->isInlined() &&
3190       !New->hasAttr<GNUInlineAttr>() &&
3191       !getLangOpts().GNUInline &&
3192       Old->isUsed(false) &&
3193       !Old->isDefined() && !New->isThisDeclarationADefinition())
3194     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3195                                            SourceLocation()));
3196 
3197   // If this redeclaration makes it newly gnu_inline, we don't want to warn
3198   // about it.
3199   if (New->hasAttr<GNUInlineAttr>() &&
3200       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
3201     UndefinedButUsed.erase(Old->getCanonicalDecl());
3202   }
3203 
3204   // If pass_object_size params don't match up perfectly, this isn't a valid
3205   // redeclaration.
3206   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
3207       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
3208     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
3209         << New->getDeclName();
3210     Diag(OldLocation, PrevDiag) << Old << Old->getType();
3211     return true;
3212   }
3213 
3214   if (getLangOpts().CPlusPlus) {
3215     // C++1z [over.load]p2
3216     //   Certain function declarations cannot be overloaded:
3217     //     -- Function declarations that differ only in the return type,
3218     //        the exception specification, or both cannot be overloaded.
3219 
3220     // Check the exception specifications match. This may recompute the type of
3221     // both Old and New if it resolved exception specifications, so grab the
3222     // types again after this. Because this updates the type, we do this before
3223     // any of the other checks below, which may update the "de facto" NewQType
3224     // but do not necessarily update the type of New.
3225     if (CheckEquivalentExceptionSpec(Old, New))
3226       return true;
3227     OldQType = Context.getCanonicalType(Old->getType());
3228     NewQType = Context.getCanonicalType(New->getType());
3229 
3230     // Go back to the type source info to compare the declared return types,
3231     // per C++1y [dcl.type.auto]p13:
3232     //   Redeclarations or specializations of a function or function template
3233     //   with a declared return type that uses a placeholder type shall also
3234     //   use that placeholder, not a deduced type.
3235     QualType OldDeclaredReturnType =
3236         (Old->getTypeSourceInfo()
3237              ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3238              : OldType)->getReturnType();
3239     QualType NewDeclaredReturnType =
3240         (New->getTypeSourceInfo()
3241              ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
3242              : NewType)->getReturnType();
3243     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
3244         !((NewQType->isDependentType() || OldQType->isDependentType()) &&
3245           New->isLocalExternDecl())) {
3246       QualType ResQT;
3247       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
3248           OldDeclaredReturnType->isObjCObjectPointerType())
3249         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
3250       if (ResQT.isNull()) {
3251         if (New->isCXXClassMember() && New->isOutOfLine())
3252           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
3253               << New << New->getReturnTypeSourceRange();
3254         else
3255           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
3256               << New->getReturnTypeSourceRange();
3257         Diag(OldLocation, PrevDiag) << Old << Old->getType()
3258                                     << Old->getReturnTypeSourceRange();
3259         return true;
3260       }
3261       else
3262         NewQType = ResQT;
3263     }
3264 
3265     QualType OldReturnType = OldType->getReturnType();
3266     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
3267     if (OldReturnType != NewReturnType) {
3268       // If this function has a deduced return type and has already been
3269       // defined, copy the deduced value from the old declaration.
3270       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
3271       if (OldAT && OldAT->isDeduced()) {
3272         New->setType(
3273             SubstAutoType(New->getType(),
3274                           OldAT->isDependentType() ? Context.DependentTy
3275                                                    : OldAT->getDeducedType()));
3276         NewQType = Context.getCanonicalType(
3277             SubstAutoType(NewQType,
3278                           OldAT->isDependentType() ? Context.DependentTy
3279                                                    : OldAT->getDeducedType()));
3280       }
3281     }
3282 
3283     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
3284     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
3285     if (OldMethod && NewMethod) {
3286       // Preserve triviality.
3287       NewMethod->setTrivial(OldMethod->isTrivial());
3288 
3289       // MSVC allows explicit template specialization at class scope:
3290       // 2 CXXMethodDecls referring to the same function will be injected.
3291       // We don't want a redeclaration error.
3292       bool IsClassScopeExplicitSpecialization =
3293                               OldMethod->isFunctionTemplateSpecialization() &&
3294                               NewMethod->isFunctionTemplateSpecialization();
3295       bool isFriend = NewMethod->getFriendObjectKind();
3296 
3297       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
3298           !IsClassScopeExplicitSpecialization) {
3299         //    -- Member function declarations with the same name and the
3300         //       same parameter types cannot be overloaded if any of them
3301         //       is a static member function declaration.
3302         if (OldMethod->isStatic() != NewMethod->isStatic()) {
3303           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
3304           Diag(OldLocation, PrevDiag) << Old << Old->getType();
3305           return true;
3306         }
3307 
3308         // C++ [class.mem]p1:
3309         //   [...] A member shall not be declared twice in the
3310         //   member-specification, except that a nested class or member
3311         //   class template can be declared and then later defined.
3312         if (!inTemplateInstantiation()) {
3313           unsigned NewDiag;
3314           if (isa<CXXConstructorDecl>(OldMethod))
3315             NewDiag = diag::err_constructor_redeclared;
3316           else if (isa<CXXDestructorDecl>(NewMethod))
3317             NewDiag = diag::err_destructor_redeclared;
3318           else if (isa<CXXConversionDecl>(NewMethod))
3319             NewDiag = diag::err_conv_function_redeclared;
3320           else
3321             NewDiag = diag::err_member_redeclared;
3322 
3323           Diag(New->getLocation(), NewDiag);
3324         } else {
3325           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
3326             << New << New->getType();
3327         }
3328         Diag(OldLocation, PrevDiag) << Old << Old->getType();
3329         return true;
3330 
3331       // Complain if this is an explicit declaration of a special
3332       // member that was initially declared implicitly.
3333       //
3334       // As an exception, it's okay to befriend such methods in order
3335       // to permit the implicit constructor/destructor/operator calls.
3336       } else if (OldMethod->isImplicit()) {
3337         if (isFriend) {
3338           NewMethod->setImplicit();
3339         } else {
3340           Diag(NewMethod->getLocation(),
3341                diag::err_definition_of_implicitly_declared_member)
3342             << New << getSpecialMember(OldMethod);
3343           return true;
3344         }
3345       } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) {
3346         Diag(NewMethod->getLocation(),
3347              diag::err_definition_of_explicitly_defaulted_member)
3348           << getSpecialMember(OldMethod);
3349         return true;
3350       }
3351     }
3352 
3353     // C++11 [dcl.attr.noreturn]p1:
3354     //   The first declaration of a function shall specify the noreturn
3355     //   attribute if any declaration of that function specifies the noreturn
3356     //   attribute.
3357     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
3358     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
3359       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
3360       Diag(Old->getFirstDecl()->getLocation(),
3361            diag::note_noreturn_missing_first_decl);
3362     }
3363 
3364     // C++11 [dcl.attr.depend]p2:
3365     //   The first declaration of a function shall specify the
3366     //   carries_dependency attribute for its declarator-id if any declaration
3367     //   of the function specifies the carries_dependency attribute.
3368     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3369     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3370       Diag(CDA->getLocation(),
3371            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3372       Diag(Old->getFirstDecl()->getLocation(),
3373            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3374     }
3375 
3376     // (C++98 8.3.5p3):
3377     //   All declarations for a function shall agree exactly in both the
3378     //   return type and the parameter-type-list.
3379     // We also want to respect all the extended bits except noreturn.
3380 
3381     // noreturn should now match unless the old type info didn't have it.
3382     QualType OldQTypeForComparison = OldQType;
3383     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3384       auto *OldType = OldQType->castAs<FunctionProtoType>();
3385       const FunctionType *OldTypeForComparison
3386         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3387       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3388       assert(OldQTypeForComparison.isCanonical());
3389     }
3390 
3391     if (haveIncompatibleLanguageLinkages(Old, New)) {
3392       // As a special case, retain the language linkage from previous
3393       // declarations of a friend function as an extension.
3394       //
3395       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3396       // and is useful because there's otherwise no way to specify language
3397       // linkage within class scope.
3398       //
3399       // Check cautiously as the friend object kind isn't yet complete.
3400       if (New->getFriendObjectKind() != Decl::FOK_None) {
3401         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3402         Diag(OldLocation, PrevDiag);
3403       } else {
3404         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3405         Diag(OldLocation, PrevDiag);
3406         return true;
3407       }
3408     }
3409 
3410     if (OldQTypeForComparison == NewQType)
3411       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3412 
3413     if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
3414         New->isLocalExternDecl()) {
3415       // It's OK if we couldn't merge types for a local function declaraton
3416       // if either the old or new type is dependent. We'll merge the types
3417       // when we instantiate the function.
3418       return false;
3419     }
3420 
3421     // Fall through for conflicting redeclarations and redefinitions.
3422   }
3423 
3424   // C: Function types need to be compatible, not identical. This handles
3425   // duplicate function decls like "void f(int); void f(enum X);" properly.
3426   if (!getLangOpts().CPlusPlus &&
3427       Context.typesAreCompatible(OldQType, NewQType)) {
3428     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3429     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3430     const FunctionProtoType *OldProto = nullptr;
3431     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3432         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3433       // The old declaration provided a function prototype, but the
3434       // new declaration does not. Merge in the prototype.
3435       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3436       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3437       NewQType =
3438           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3439                                   OldProto->getExtProtoInfo());
3440       New->setType(NewQType);
3441       New->setHasInheritedPrototype();
3442 
3443       // Synthesize parameters with the same types.
3444       SmallVector<ParmVarDecl*, 16> Params;
3445       for (const auto &ParamType : OldProto->param_types()) {
3446         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3447                                                  SourceLocation(), nullptr,
3448                                                  ParamType, /*TInfo=*/nullptr,
3449                                                  SC_None, nullptr);
3450         Param->setScopeInfo(0, Params.size());
3451         Param->setImplicit();
3452         Params.push_back(Param);
3453       }
3454 
3455       New->setParams(Params);
3456     }
3457 
3458     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3459   }
3460 
3461   // GNU C permits a K&R definition to follow a prototype declaration
3462   // if the declared types of the parameters in the K&R definition
3463   // match the types in the prototype declaration, even when the
3464   // promoted types of the parameters from the K&R definition differ
3465   // from the types in the prototype. GCC then keeps the types from
3466   // the prototype.
3467   //
3468   // If a variadic prototype is followed by a non-variadic K&R definition,
3469   // the K&R definition becomes variadic.  This is sort of an edge case, but
3470   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3471   // C99 6.9.1p8.
3472   if (!getLangOpts().CPlusPlus &&
3473       Old->hasPrototype() && !New->hasPrototype() &&
3474       New->getType()->getAs<FunctionProtoType>() &&
3475       Old->getNumParams() == New->getNumParams()) {
3476     SmallVector<QualType, 16> ArgTypes;
3477     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3478     const FunctionProtoType *OldProto
3479       = Old->getType()->getAs<FunctionProtoType>();
3480     const FunctionProtoType *NewProto
3481       = New->getType()->getAs<FunctionProtoType>();
3482 
3483     // Determine whether this is the GNU C extension.
3484     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3485                                                NewProto->getReturnType());
3486     bool LooseCompatible = !MergedReturn.isNull();
3487     for (unsigned Idx = 0, End = Old->getNumParams();
3488          LooseCompatible && Idx != End; ++Idx) {
3489       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3490       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3491       if (Context.typesAreCompatible(OldParm->getType(),
3492                                      NewProto->getParamType(Idx))) {
3493         ArgTypes.push_back(NewParm->getType());
3494       } else if (Context.typesAreCompatible(OldParm->getType(),
3495                                             NewParm->getType(),
3496                                             /*CompareUnqualified=*/true)) {
3497         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3498                                            NewProto->getParamType(Idx) };
3499         Warnings.push_back(Warn);
3500         ArgTypes.push_back(NewParm->getType());
3501       } else
3502         LooseCompatible = false;
3503     }
3504 
3505     if (LooseCompatible) {
3506       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3507         Diag(Warnings[Warn].NewParm->getLocation(),
3508              diag::ext_param_promoted_not_compatible_with_prototype)
3509           << Warnings[Warn].PromotedType
3510           << Warnings[Warn].OldParm->getType();
3511         if (Warnings[Warn].OldParm->getLocation().isValid())
3512           Diag(Warnings[Warn].OldParm->getLocation(),
3513                diag::note_previous_declaration);
3514       }
3515 
3516       if (MergeTypeWithOld)
3517         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3518                                              OldProto->getExtProtoInfo()));
3519       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3520     }
3521 
3522     // Fall through to diagnose conflicting types.
3523   }
3524 
3525   // A function that has already been declared has been redeclared or
3526   // defined with a different type; show an appropriate diagnostic.
3527 
3528   // If the previous declaration was an implicitly-generated builtin
3529   // declaration, then at the very least we should use a specialized note.
3530   unsigned BuiltinID;
3531   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3532     // If it's actually a library-defined builtin function like 'malloc'
3533     // or 'printf', just warn about the incompatible redeclaration.
3534     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3535       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3536       Diag(OldLocation, diag::note_previous_builtin_declaration)
3537         << Old << Old->getType();
3538 
3539       // If this is a global redeclaration, just forget hereafter
3540       // about the "builtin-ness" of the function.
3541       //
3542       // Doing this for local extern declarations is problematic.  If
3543       // the builtin declaration remains visible, a second invalid
3544       // local declaration will produce a hard error; if it doesn't
3545       // remain visible, a single bogus local redeclaration (which is
3546       // actually only a warning) could break all the downstream code.
3547       if (!New->getLexicalDeclContext()->isFunctionOrMethod())
3548         New->getIdentifier()->revertBuiltin();
3549 
3550       return false;
3551     }
3552 
3553     PrevDiag = diag::note_previous_builtin_declaration;
3554   }
3555 
3556   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3557   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3558   return true;
3559 }
3560 
3561 /// \brief Completes the merge of two function declarations that are
3562 /// known to be compatible.
3563 ///
3564 /// This routine handles the merging of attributes and other
3565 /// properties of function declarations from the old declaration to
3566 /// the new declaration, once we know that New is in fact a
3567 /// redeclaration of Old.
3568 ///
3569 /// \returns false
3570 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3571                                         Scope *S, bool MergeTypeWithOld) {
3572   // Merge the attributes
3573   mergeDeclAttributes(New, Old);
3574 
3575   // Merge "pure" flag.
3576   if (Old->isPure())
3577     New->setPure();
3578 
3579   // Merge "used" flag.
3580   if (Old->getMostRecentDecl()->isUsed(false))
3581     New->setIsUsed();
3582 
3583   // Merge attributes from the parameters.  These can mismatch with K&R
3584   // declarations.
3585   if (New->getNumParams() == Old->getNumParams())
3586       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3587         ParmVarDecl *NewParam = New->getParamDecl(i);
3588         ParmVarDecl *OldParam = Old->getParamDecl(i);
3589         mergeParamDeclAttributes(NewParam, OldParam, *this);
3590         mergeParamDeclTypes(NewParam, OldParam, *this);
3591       }
3592 
3593   if (getLangOpts().CPlusPlus)
3594     return MergeCXXFunctionDecl(New, Old, S);
3595 
3596   // Merge the function types so the we get the composite types for the return
3597   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3598   // was visible.
3599   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3600   if (!Merged.isNull() && MergeTypeWithOld)
3601     New->setType(Merged);
3602 
3603   return false;
3604 }
3605 
3606 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3607                                 ObjCMethodDecl *oldMethod) {
3608   // Merge the attributes, including deprecated/unavailable
3609   AvailabilityMergeKind MergeKind =
3610     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3611       ? AMK_ProtocolImplementation
3612       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3613                                                        : AMK_Override;
3614 
3615   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3616 
3617   // Merge attributes from the parameters.
3618   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3619                                        oe = oldMethod->param_end();
3620   for (ObjCMethodDecl::param_iterator
3621          ni = newMethod->param_begin(), ne = newMethod->param_end();
3622        ni != ne && oi != oe; ++ni, ++oi)
3623     mergeParamDeclAttributes(*ni, *oi, *this);
3624 
3625   CheckObjCMethodOverride(newMethod, oldMethod);
3626 }
3627 
3628 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3629   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3630 
3631   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3632          ? diag::err_redefinition_different_type
3633          : diag::err_redeclaration_different_type)
3634     << New->getDeclName() << New->getType() << Old->getType();
3635 
3636   diag::kind PrevDiag;
3637   SourceLocation OldLocation;
3638   std::tie(PrevDiag, OldLocation)
3639     = getNoteDiagForInvalidRedeclaration(Old, New);
3640   S.Diag(OldLocation, PrevDiag);
3641   New->setInvalidDecl();
3642 }
3643 
3644 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3645 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3646 /// emitting diagnostics as appropriate.
3647 ///
3648 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3649 /// to here in AddInitializerToDecl. We can't check them before the initializer
3650 /// is attached.
3651 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3652                              bool MergeTypeWithOld) {
3653   if (New->isInvalidDecl() || Old->isInvalidDecl())
3654     return;
3655 
3656   QualType MergedT;
3657   if (getLangOpts().CPlusPlus) {
3658     if (New->getType()->isUndeducedType()) {
3659       // We don't know what the new type is until the initializer is attached.
3660       return;
3661     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3662       // These could still be something that needs exception specs checked.
3663       return MergeVarDeclExceptionSpecs(New, Old);
3664     }
3665     // C++ [basic.link]p10:
3666     //   [...] the types specified by all declarations referring to a given
3667     //   object or function shall be identical, except that declarations for an
3668     //   array object can specify array types that differ by the presence or
3669     //   absence of a major array bound (8.3.4).
3670     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3671       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3672       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3673 
3674       // We are merging a variable declaration New into Old. If it has an array
3675       // bound, and that bound differs from Old's bound, we should diagnose the
3676       // mismatch.
3677       if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) {
3678         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3679              PrevVD = PrevVD->getPreviousDecl()) {
3680           const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType());
3681           if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType())
3682             continue;
3683 
3684           if (!Context.hasSameType(NewArray, PrevVDTy))
3685             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3686         }
3687       }
3688 
3689       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3690         if (Context.hasSameType(OldArray->getElementType(),
3691                                 NewArray->getElementType()))
3692           MergedT = New->getType();
3693       }
3694       // FIXME: Check visibility. New is hidden but has a complete type. If New
3695       // has no array bound, it should not inherit one from Old, if Old is not
3696       // visible.
3697       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3698         if (Context.hasSameType(OldArray->getElementType(),
3699                                 NewArray->getElementType()))
3700           MergedT = Old->getType();
3701       }
3702     }
3703     else if (New->getType()->isObjCObjectPointerType() &&
3704                Old->getType()->isObjCObjectPointerType()) {
3705       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3706                                               Old->getType());
3707     }
3708   } else {
3709     // C 6.2.7p2:
3710     //   All declarations that refer to the same object or function shall have
3711     //   compatible type.
3712     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3713   }
3714   if (MergedT.isNull()) {
3715     // It's OK if we couldn't merge types if either type is dependent, for a
3716     // block-scope variable. In other cases (static data members of class
3717     // templates, variable templates, ...), we require the types to be
3718     // equivalent.
3719     // FIXME: The C++ standard doesn't say anything about this.
3720     if ((New->getType()->isDependentType() ||
3721          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3722       // If the old type was dependent, we can't merge with it, so the new type
3723       // becomes dependent for now. We'll reproduce the original type when we
3724       // instantiate the TypeSourceInfo for the variable.
3725       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3726         New->setType(Context.DependentTy);
3727       return;
3728     }
3729     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3730   }
3731 
3732   // Don't actually update the type on the new declaration if the old
3733   // declaration was an extern declaration in a different scope.
3734   if (MergeTypeWithOld)
3735     New->setType(MergedT);
3736 }
3737 
3738 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3739                                   LookupResult &Previous) {
3740   // C11 6.2.7p4:
3741   //   For an identifier with internal or external linkage declared
3742   //   in a scope in which a prior declaration of that identifier is
3743   //   visible, if the prior declaration specifies internal or
3744   //   external linkage, the type of the identifier at the later
3745   //   declaration becomes the composite type.
3746   //
3747   // If the variable isn't visible, we do not merge with its type.
3748   if (Previous.isShadowed())
3749     return false;
3750 
3751   if (S.getLangOpts().CPlusPlus) {
3752     // C++11 [dcl.array]p3:
3753     //   If there is a preceding declaration of the entity in the same
3754     //   scope in which the bound was specified, an omitted array bound
3755     //   is taken to be the same as in that earlier declaration.
3756     return NewVD->isPreviousDeclInSameBlockScope() ||
3757            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
3758             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
3759   } else {
3760     // If the old declaration was function-local, don't merge with its
3761     // type unless we're in the same function.
3762     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
3763            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
3764   }
3765 }
3766 
3767 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
3768 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
3769 /// situation, merging decls or emitting diagnostics as appropriate.
3770 ///
3771 /// Tentative definition rules (C99 6.9.2p2) are checked by
3772 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
3773 /// definitions here, since the initializer hasn't been attached.
3774 ///
3775 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
3776   // If the new decl is already invalid, don't do any other checking.
3777   if (New->isInvalidDecl())
3778     return;
3779 
3780   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
3781     return;
3782 
3783   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
3784 
3785   // Verify the old decl was also a variable or variable template.
3786   VarDecl *Old = nullptr;
3787   VarTemplateDecl *OldTemplate = nullptr;
3788   if (Previous.isSingleResult()) {
3789     if (NewTemplate) {
3790       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
3791       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
3792 
3793       if (auto *Shadow =
3794               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3795         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
3796           return New->setInvalidDecl();
3797     } else {
3798       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
3799 
3800       if (auto *Shadow =
3801               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3802         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
3803           return New->setInvalidDecl();
3804     }
3805   }
3806   if (!Old) {
3807     Diag(New->getLocation(), diag::err_redefinition_different_kind)
3808         << New->getDeclName();
3809     notePreviousDefinition(Previous.getRepresentativeDecl(),
3810                            New->getLocation());
3811     return New->setInvalidDecl();
3812   }
3813 
3814   // Ensure the template parameters are compatible.
3815   if (NewTemplate &&
3816       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
3817                                       OldTemplate->getTemplateParameters(),
3818                                       /*Complain=*/true, TPL_TemplateMatch))
3819     return New->setInvalidDecl();
3820 
3821   // C++ [class.mem]p1:
3822   //   A member shall not be declared twice in the member-specification [...]
3823   //
3824   // Here, we need only consider static data members.
3825   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3826     Diag(New->getLocation(), diag::err_duplicate_member)
3827       << New->getIdentifier();
3828     Diag(Old->getLocation(), diag::note_previous_declaration);
3829     New->setInvalidDecl();
3830   }
3831 
3832   mergeDeclAttributes(New, Old);
3833   // Warn if an already-declared variable is made a weak_import in a subsequent
3834   // declaration
3835   if (New->hasAttr<WeakImportAttr>() &&
3836       Old->getStorageClass() == SC_None &&
3837       !Old->hasAttr<WeakImportAttr>()) {
3838     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3839     notePreviousDefinition(Old, New->getLocation());
3840     // Remove weak_import attribute on new declaration.
3841     New->dropAttr<WeakImportAttr>();
3842   }
3843 
3844   if (New->hasAttr<InternalLinkageAttr>() &&
3845       !Old->hasAttr<InternalLinkageAttr>()) {
3846     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3847         << New->getDeclName();
3848     notePreviousDefinition(Old, New->getLocation());
3849     New->dropAttr<InternalLinkageAttr>();
3850   }
3851 
3852   // Merge the types.
3853   VarDecl *MostRecent = Old->getMostRecentDecl();
3854   if (MostRecent != Old) {
3855     MergeVarDeclTypes(New, MostRecent,
3856                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
3857     if (New->isInvalidDecl())
3858       return;
3859   }
3860 
3861   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3862   if (New->isInvalidDecl())
3863     return;
3864 
3865   diag::kind PrevDiag;
3866   SourceLocation OldLocation;
3867   std::tie(PrevDiag, OldLocation) =
3868       getNoteDiagForInvalidRedeclaration(Old, New);
3869 
3870   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
3871   if (New->getStorageClass() == SC_Static &&
3872       !New->isStaticDataMember() &&
3873       Old->hasExternalFormalLinkage()) {
3874     if (getLangOpts().MicrosoftExt) {
3875       Diag(New->getLocation(), diag::ext_static_non_static)
3876           << New->getDeclName();
3877       Diag(OldLocation, PrevDiag);
3878     } else {
3879       Diag(New->getLocation(), diag::err_static_non_static)
3880           << New->getDeclName();
3881       Diag(OldLocation, PrevDiag);
3882       return New->setInvalidDecl();
3883     }
3884   }
3885   // C99 6.2.2p4:
3886   //   For an identifier declared with the storage-class specifier
3887   //   extern in a scope in which a prior declaration of that
3888   //   identifier is visible,23) if the prior declaration specifies
3889   //   internal or external linkage, the linkage of the identifier at
3890   //   the later declaration is the same as the linkage specified at
3891   //   the prior declaration. If no prior declaration is visible, or
3892   //   if the prior declaration specifies no linkage, then the
3893   //   identifier has external linkage.
3894   if (New->hasExternalStorage() && Old->hasLinkage())
3895     /* Okay */;
3896   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
3897            !New->isStaticDataMember() &&
3898            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
3899     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
3900     Diag(OldLocation, PrevDiag);
3901     return New->setInvalidDecl();
3902   }
3903 
3904   // Check if extern is followed by non-extern and vice-versa.
3905   if (New->hasExternalStorage() &&
3906       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
3907     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3908     Diag(OldLocation, PrevDiag);
3909     return New->setInvalidDecl();
3910   }
3911   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
3912       !New->hasExternalStorage()) {
3913     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3914     Diag(OldLocation, PrevDiag);
3915     return New->setInvalidDecl();
3916   }
3917 
3918   if (CheckRedeclarationModuleOwnership(New, Old))
3919     return;
3920 
3921   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
3922 
3923   // FIXME: The test for external storage here seems wrong? We still
3924   // need to check for mismatches.
3925   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
3926       // Don't complain about out-of-line definitions of static members.
3927       !(Old->getLexicalDeclContext()->isRecord() &&
3928         !New->getLexicalDeclContext()->isRecord())) {
3929     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
3930     Diag(OldLocation, PrevDiag);
3931     return New->setInvalidDecl();
3932   }
3933 
3934   if (New->isInline() && !Old->getMostRecentDecl()->isInline()) {
3935     if (VarDecl *Def = Old->getDefinition()) {
3936       // C++1z [dcl.fcn.spec]p4:
3937       //   If the definition of a variable appears in a translation unit before
3938       //   its first declaration as inline, the program is ill-formed.
3939       Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
3940       Diag(Def->getLocation(), diag::note_previous_definition);
3941     }
3942   }
3943 
3944   // If this redeclaration makes the variable inline, we may need to add it to
3945   // UndefinedButUsed.
3946   if (!Old->isInline() && New->isInline() && Old->isUsed(false) &&
3947       !Old->getDefinition() && !New->isThisDeclarationADefinition())
3948     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3949                                            SourceLocation()));
3950 
3951   if (New->getTLSKind() != Old->getTLSKind()) {
3952     if (!Old->getTLSKind()) {
3953       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3954       Diag(OldLocation, PrevDiag);
3955     } else if (!New->getTLSKind()) {
3956       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3957       Diag(OldLocation, PrevDiag);
3958     } else {
3959       // Do not allow redeclaration to change the variable between requiring
3960       // static and dynamic initialization.
3961       // FIXME: GCC allows this, but uses the TLS keyword on the first
3962       // declaration to determine the kind. Do we need to be compatible here?
3963       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3964         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3965       Diag(OldLocation, PrevDiag);
3966     }
3967   }
3968 
3969   // C++ doesn't have tentative definitions, so go right ahead and check here.
3970   if (getLangOpts().CPlusPlus &&
3971       New->isThisDeclarationADefinition() == VarDecl::Definition) {
3972     if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() &&
3973         Old->getCanonicalDecl()->isConstexpr()) {
3974       // This definition won't be a definition any more once it's been merged.
3975       Diag(New->getLocation(),
3976            diag::warn_deprecated_redundant_constexpr_static_def);
3977     } else if (VarDecl *Def = Old->getDefinition()) {
3978       if (checkVarDeclRedefinition(Def, New))
3979         return;
3980     }
3981   }
3982 
3983   if (haveIncompatibleLanguageLinkages(Old, New)) {
3984     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3985     Diag(OldLocation, PrevDiag);
3986     New->setInvalidDecl();
3987     return;
3988   }
3989 
3990   // Merge "used" flag.
3991   if (Old->getMostRecentDecl()->isUsed(false))
3992     New->setIsUsed();
3993 
3994   // Keep a chain of previous declarations.
3995   New->setPreviousDecl(Old);
3996   if (NewTemplate)
3997     NewTemplate->setPreviousDecl(OldTemplate);
3998   adjustDeclContextForDeclaratorDecl(New, Old);
3999 
4000   // Inherit access appropriately.
4001   New->setAccess(Old->getAccess());
4002   if (NewTemplate)
4003     NewTemplate->setAccess(New->getAccess());
4004 
4005   if (Old->isInline())
4006     New->setImplicitlyInline();
4007 }
4008 
4009 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) {
4010   SourceManager &SrcMgr = getSourceManager();
4011   auto FNewDecLoc = SrcMgr.getDecomposedLoc(New);
4012   auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation());
4013   auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first);
4014   auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first);
4015   auto &HSI = PP.getHeaderSearchInfo();
4016   StringRef HdrFilename =
4017       SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation()));
4018 
4019   auto noteFromModuleOrInclude = [&](Module *Mod,
4020                                      SourceLocation IncLoc) -> bool {
4021     // Redefinition errors with modules are common with non modular mapped
4022     // headers, example: a non-modular header H in module A that also gets
4023     // included directly in a TU. Pointing twice to the same header/definition
4024     // is confusing, try to get better diagnostics when modules is on.
4025     if (IncLoc.isValid()) {
4026       if (Mod) {
4027         Diag(IncLoc, diag::note_redefinition_modules_same_file)
4028             << HdrFilename.str() << Mod->getFullModuleName();
4029         if (!Mod->DefinitionLoc.isInvalid())
4030           Diag(Mod->DefinitionLoc, diag::note_defined_here)
4031               << Mod->getFullModuleName();
4032       } else {
4033         Diag(IncLoc, diag::note_redefinition_include_same_file)
4034             << HdrFilename.str();
4035       }
4036       return true;
4037     }
4038 
4039     return false;
4040   };
4041 
4042   // Is it the same file and same offset? Provide more information on why
4043   // this leads to a redefinition error.
4044   bool EmittedDiag = false;
4045   if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) {
4046     SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first);
4047     SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first);
4048     EmittedDiag = noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc);
4049     EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc);
4050 
4051     // If the header has no guards, emit a note suggesting one.
4052     if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld))
4053       Diag(Old->getLocation(), diag::note_use_ifdef_guards);
4054 
4055     if (EmittedDiag)
4056       return;
4057   }
4058 
4059   // Redefinition coming from different files or couldn't do better above.
4060   Diag(Old->getLocation(), diag::note_previous_definition);
4061 }
4062 
4063 /// We've just determined that \p Old and \p New both appear to be definitions
4064 /// of the same variable. Either diagnose or fix the problem.
4065 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) {
4066   if (!hasVisibleDefinition(Old) &&
4067       (New->getFormalLinkage() == InternalLinkage ||
4068        New->isInline() ||
4069        New->getDescribedVarTemplate() ||
4070        New->getNumTemplateParameterLists() ||
4071        New->getDeclContext()->isDependentContext())) {
4072     // The previous definition is hidden, and multiple definitions are
4073     // permitted (in separate TUs). Demote this to a declaration.
4074     New->demoteThisDefinitionToDeclaration();
4075 
4076     // Make the canonical definition visible.
4077     if (auto *OldTD = Old->getDescribedVarTemplate())
4078       makeMergedDefinitionVisible(OldTD);
4079     makeMergedDefinitionVisible(Old);
4080     return false;
4081   } else {
4082     Diag(New->getLocation(), diag::err_redefinition) << New;
4083     notePreviousDefinition(Old, New->getLocation());
4084     New->setInvalidDecl();
4085     return true;
4086   }
4087 }
4088 
4089 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4090 /// no declarator (e.g. "struct foo;") is parsed.
4091 Decl *
4092 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4093                                  RecordDecl *&AnonRecord) {
4094   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
4095                                     AnonRecord);
4096 }
4097 
4098 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
4099 // disambiguate entities defined in different scopes.
4100 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
4101 // compatibility.
4102 // We will pick our mangling number depending on which version of MSVC is being
4103 // targeted.
4104 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
4105   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
4106              ? S->getMSCurManglingNumber()
4107              : S->getMSLastManglingNumber();
4108 }
4109 
4110 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
4111   if (!Context.getLangOpts().CPlusPlus)
4112     return;
4113 
4114   if (isa<CXXRecordDecl>(Tag->getParent())) {
4115     // If this tag is the direct child of a class, number it if
4116     // it is anonymous.
4117     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
4118       return;
4119     MangleNumberingContext &MCtx =
4120         Context.getManglingNumberContext(Tag->getParent());
4121     Context.setManglingNumber(
4122         Tag, MCtx.getManglingNumber(
4123                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4124     return;
4125   }
4126 
4127   // If this tag isn't a direct child of a class, number it if it is local.
4128   Decl *ManglingContextDecl;
4129   if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4130           Tag->getDeclContext(), ManglingContextDecl)) {
4131     Context.setManglingNumber(
4132         Tag, MCtx->getManglingNumber(
4133                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4134   }
4135 }
4136 
4137 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
4138                                         TypedefNameDecl *NewTD) {
4139   if (TagFromDeclSpec->isInvalidDecl())
4140     return;
4141 
4142   // Do nothing if the tag already has a name for linkage purposes.
4143   if (TagFromDeclSpec->hasNameForLinkage())
4144     return;
4145 
4146   // A well-formed anonymous tag must always be a TUK_Definition.
4147   assert(TagFromDeclSpec->isThisDeclarationADefinition());
4148 
4149   // The type must match the tag exactly;  no qualifiers allowed.
4150   if (!Context.hasSameType(NewTD->getUnderlyingType(),
4151                            Context.getTagDeclType(TagFromDeclSpec))) {
4152     if (getLangOpts().CPlusPlus)
4153       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
4154     return;
4155   }
4156 
4157   // If we've already computed linkage for the anonymous tag, then
4158   // adding a typedef name for the anonymous decl can change that
4159   // linkage, which might be a serious problem.  Diagnose this as
4160   // unsupported and ignore the typedef name.  TODO: we should
4161   // pursue this as a language defect and establish a formal rule
4162   // for how to handle it.
4163   if (TagFromDeclSpec->hasLinkageBeenComputed()) {
4164     Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage);
4165 
4166     SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart();
4167     tagLoc = getLocForEndOfToken(tagLoc);
4168 
4169     llvm::SmallString<40> textToInsert;
4170     textToInsert += ' ';
4171     textToInsert += NewTD->getIdentifier()->getName();
4172     Diag(tagLoc, diag::note_typedef_changes_linkage)
4173         << FixItHint::CreateInsertion(tagLoc, textToInsert);
4174     return;
4175   }
4176 
4177   // Otherwise, set this is the anon-decl typedef for the tag.
4178   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
4179 }
4180 
4181 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
4182   switch (T) {
4183   case DeclSpec::TST_class:
4184     return 0;
4185   case DeclSpec::TST_struct:
4186     return 1;
4187   case DeclSpec::TST_interface:
4188     return 2;
4189   case DeclSpec::TST_union:
4190     return 3;
4191   case DeclSpec::TST_enum:
4192     return 4;
4193   default:
4194     llvm_unreachable("unexpected type specifier");
4195   }
4196 }
4197 
4198 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4199 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
4200 /// parameters to cope with template friend declarations.
4201 Decl *
4202 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4203                                  MultiTemplateParamsArg TemplateParams,
4204                                  bool IsExplicitInstantiation,
4205                                  RecordDecl *&AnonRecord) {
4206   Decl *TagD = nullptr;
4207   TagDecl *Tag = nullptr;
4208   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
4209       DS.getTypeSpecType() == DeclSpec::TST_struct ||
4210       DS.getTypeSpecType() == DeclSpec::TST_interface ||
4211       DS.getTypeSpecType() == DeclSpec::TST_union ||
4212       DS.getTypeSpecType() == DeclSpec::TST_enum) {
4213     TagD = DS.getRepAsDecl();
4214 
4215     if (!TagD) // We probably had an error
4216       return nullptr;
4217 
4218     // Note that the above type specs guarantee that the
4219     // type rep is a Decl, whereas in many of the others
4220     // it's a Type.
4221     if (isa<TagDecl>(TagD))
4222       Tag = cast<TagDecl>(TagD);
4223     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
4224       Tag = CTD->getTemplatedDecl();
4225   }
4226 
4227   if (Tag) {
4228     handleTagNumbering(Tag, S);
4229     Tag->setFreeStanding();
4230     if (Tag->isInvalidDecl())
4231       return Tag;
4232   }
4233 
4234   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
4235     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
4236     // or incomplete types shall not be restrict-qualified."
4237     if (TypeQuals & DeclSpec::TQ_restrict)
4238       Diag(DS.getRestrictSpecLoc(),
4239            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
4240            << DS.getSourceRange();
4241   }
4242 
4243   if (DS.isInlineSpecified())
4244     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
4245         << getLangOpts().CPlusPlus17;
4246 
4247   if (DS.isConstexprSpecified()) {
4248     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
4249     // and definitions of functions and variables.
4250     if (Tag)
4251       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
4252           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType());
4253     else
4254       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
4255     // Don't emit warnings after this error.
4256     return TagD;
4257   }
4258 
4259   DiagnoseFunctionSpecifiers(DS);
4260 
4261   if (DS.isFriendSpecified()) {
4262     // If we're dealing with a decl but not a TagDecl, assume that
4263     // whatever routines created it handled the friendship aspect.
4264     if (TagD && !Tag)
4265       return nullptr;
4266     return ActOnFriendTypeDecl(S, DS, TemplateParams);
4267   }
4268 
4269   const CXXScopeSpec &SS = DS.getTypeSpecScope();
4270   bool IsExplicitSpecialization =
4271     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
4272   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
4273       !IsExplicitInstantiation && !IsExplicitSpecialization &&
4274       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
4275     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
4276     // nested-name-specifier unless it is an explicit instantiation
4277     // or an explicit specialization.
4278     //
4279     // FIXME: We allow class template partial specializations here too, per the
4280     // obvious intent of DR1819.
4281     //
4282     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
4283     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
4284         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
4285     return nullptr;
4286   }
4287 
4288   // Track whether this decl-specifier declares anything.
4289   bool DeclaresAnything = true;
4290 
4291   // Handle anonymous struct definitions.
4292   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
4293     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
4294         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
4295       if (getLangOpts().CPlusPlus ||
4296           Record->getDeclContext()->isRecord()) {
4297         // If CurContext is a DeclContext that can contain statements,
4298         // RecursiveASTVisitor won't visit the decls that
4299         // BuildAnonymousStructOrUnion() will put into CurContext.
4300         // Also store them here so that they can be part of the
4301         // DeclStmt that gets created in this case.
4302         // FIXME: Also return the IndirectFieldDecls created by
4303         // BuildAnonymousStructOr union, for the same reason?
4304         if (CurContext->isFunctionOrMethod())
4305           AnonRecord = Record;
4306         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
4307                                            Context.getPrintingPolicy());
4308       }
4309 
4310       DeclaresAnything = false;
4311     }
4312   }
4313 
4314   // C11 6.7.2.1p2:
4315   //   A struct-declaration that does not declare an anonymous structure or
4316   //   anonymous union shall contain a struct-declarator-list.
4317   //
4318   // This rule also existed in C89 and C99; the grammar for struct-declaration
4319   // did not permit a struct-declaration without a struct-declarator-list.
4320   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
4321       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
4322     // Check for Microsoft C extension: anonymous struct/union member.
4323     // Handle 2 kinds of anonymous struct/union:
4324     //   struct STRUCT;
4325     //   union UNION;
4326     // and
4327     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
4328     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
4329     if ((Tag && Tag->getDeclName()) ||
4330         DS.getTypeSpecType() == DeclSpec::TST_typename) {
4331       RecordDecl *Record = nullptr;
4332       if (Tag)
4333         Record = dyn_cast<RecordDecl>(Tag);
4334       else if (const RecordType *RT =
4335                    DS.getRepAsType().get()->getAsStructureType())
4336         Record = RT->getDecl();
4337       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
4338         Record = UT->getDecl();
4339 
4340       if (Record && getLangOpts().MicrosoftExt) {
4341         Diag(DS.getLocStart(), diag::ext_ms_anonymous_record)
4342           << Record->isUnion() << DS.getSourceRange();
4343         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
4344       }
4345 
4346       DeclaresAnything = false;
4347     }
4348   }
4349 
4350   // Skip all the checks below if we have a type error.
4351   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
4352       (TagD && TagD->isInvalidDecl()))
4353     return TagD;
4354 
4355   if (getLangOpts().CPlusPlus &&
4356       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
4357     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
4358       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
4359           !Enum->getIdentifier() && !Enum->isInvalidDecl())
4360         DeclaresAnything = false;
4361 
4362   if (!DS.isMissingDeclaratorOk()) {
4363     // Customize diagnostic for a typedef missing a name.
4364     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
4365       Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
4366         << DS.getSourceRange();
4367     else
4368       DeclaresAnything = false;
4369   }
4370 
4371   if (DS.isModulePrivateSpecified() &&
4372       Tag && Tag->getDeclContext()->isFunctionOrMethod())
4373     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
4374       << Tag->getTagKind()
4375       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
4376 
4377   ActOnDocumentableDecl(TagD);
4378 
4379   // C 6.7/2:
4380   //   A declaration [...] shall declare at least a declarator [...], a tag,
4381   //   or the members of an enumeration.
4382   // C++ [dcl.dcl]p3:
4383   //   [If there are no declarators], and except for the declaration of an
4384   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
4385   //   names into the program, or shall redeclare a name introduced by a
4386   //   previous declaration.
4387   if (!DeclaresAnything) {
4388     // In C, we allow this as a (popular) extension / bug. Don't bother
4389     // producing further diagnostics for redundant qualifiers after this.
4390     Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
4391     return TagD;
4392   }
4393 
4394   // C++ [dcl.stc]p1:
4395   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
4396   //   init-declarator-list of the declaration shall not be empty.
4397   // C++ [dcl.fct.spec]p1:
4398   //   If a cv-qualifier appears in a decl-specifier-seq, the
4399   //   init-declarator-list of the declaration shall not be empty.
4400   //
4401   // Spurious qualifiers here appear to be valid in C.
4402   unsigned DiagID = diag::warn_standalone_specifier;
4403   if (getLangOpts().CPlusPlus)
4404     DiagID = diag::ext_standalone_specifier;
4405 
4406   // Note that a linkage-specification sets a storage class, but
4407   // 'extern "C" struct foo;' is actually valid and not theoretically
4408   // useless.
4409   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
4410     if (SCS == DeclSpec::SCS_mutable)
4411       // Since mutable is not a viable storage class specifier in C, there is
4412       // no reason to treat it as an extension. Instead, diagnose as an error.
4413       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
4414     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
4415       Diag(DS.getStorageClassSpecLoc(), DiagID)
4416         << DeclSpec::getSpecifierName(SCS);
4417   }
4418 
4419   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
4420     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
4421       << DeclSpec::getSpecifierName(TSCS);
4422   if (DS.getTypeQualifiers()) {
4423     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4424       Diag(DS.getConstSpecLoc(), DiagID) << "const";
4425     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4426       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
4427     // Restrict is covered above.
4428     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4429       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
4430     if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4431       Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned";
4432   }
4433 
4434   // Warn about ignored type attributes, for example:
4435   // __attribute__((aligned)) struct A;
4436   // Attributes should be placed after tag to apply to type declaration.
4437   if (!DS.getAttributes().empty()) {
4438     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
4439     if (TypeSpecType == DeclSpec::TST_class ||
4440         TypeSpecType == DeclSpec::TST_struct ||
4441         TypeSpecType == DeclSpec::TST_interface ||
4442         TypeSpecType == DeclSpec::TST_union ||
4443         TypeSpecType == DeclSpec::TST_enum) {
4444       for (AttributeList* attrs = DS.getAttributes().getList(); attrs;
4445            attrs = attrs->getNext())
4446         Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
4447             << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType);
4448     }
4449   }
4450 
4451   return TagD;
4452 }
4453 
4454 /// We are trying to inject an anonymous member into the given scope;
4455 /// check if there's an existing declaration that can't be overloaded.
4456 ///
4457 /// \return true if this is a forbidden redeclaration
4458 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4459                                          Scope *S,
4460                                          DeclContext *Owner,
4461                                          DeclarationName Name,
4462                                          SourceLocation NameLoc,
4463                                          bool IsUnion) {
4464   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4465                  Sema::ForVisibleRedeclaration);
4466   if (!SemaRef.LookupName(R, S)) return false;
4467 
4468   // Pick a representative declaration.
4469   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4470   assert(PrevDecl && "Expected a non-null Decl");
4471 
4472   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4473     return false;
4474 
4475   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4476     << IsUnion << Name;
4477   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4478 
4479   return true;
4480 }
4481 
4482 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4483 /// anonymous struct or union AnonRecord into the owning context Owner
4484 /// and scope S. This routine will be invoked just after we realize
4485 /// that an unnamed union or struct is actually an anonymous union or
4486 /// struct, e.g.,
4487 ///
4488 /// @code
4489 /// union {
4490 ///   int i;
4491 ///   float f;
4492 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4493 ///    // f into the surrounding scope.x
4494 /// @endcode
4495 ///
4496 /// This routine is recursive, injecting the names of nested anonymous
4497 /// structs/unions into the owning context and scope as well.
4498 static bool
4499 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4500                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4501                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4502   bool Invalid = false;
4503 
4504   // Look every FieldDecl and IndirectFieldDecl with a name.
4505   for (auto *D : AnonRecord->decls()) {
4506     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4507         cast<NamedDecl>(D)->getDeclName()) {
4508       ValueDecl *VD = cast<ValueDecl>(D);
4509       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4510                                        VD->getLocation(),
4511                                        AnonRecord->isUnion())) {
4512         // C++ [class.union]p2:
4513         //   The names of the members of an anonymous union shall be
4514         //   distinct from the names of any other entity in the
4515         //   scope in which the anonymous union is declared.
4516         Invalid = true;
4517       } else {
4518         // C++ [class.union]p2:
4519         //   For the purpose of name lookup, after the anonymous union
4520         //   definition, the members of the anonymous union are
4521         //   considered to have been defined in the scope in which the
4522         //   anonymous union is declared.
4523         unsigned OldChainingSize = Chaining.size();
4524         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4525           Chaining.append(IF->chain_begin(), IF->chain_end());
4526         else
4527           Chaining.push_back(VD);
4528 
4529         assert(Chaining.size() >= 2);
4530         NamedDecl **NamedChain =
4531           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4532         for (unsigned i = 0; i < Chaining.size(); i++)
4533           NamedChain[i] = Chaining[i];
4534 
4535         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4536             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4537             VD->getType(), {NamedChain, Chaining.size()});
4538 
4539         for (const auto *Attr : VD->attrs())
4540           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4541 
4542         IndirectField->setAccess(AS);
4543         IndirectField->setImplicit();
4544         SemaRef.PushOnScopeChains(IndirectField, S);
4545 
4546         // That includes picking up the appropriate access specifier.
4547         if (AS != AS_none) IndirectField->setAccess(AS);
4548 
4549         Chaining.resize(OldChainingSize);
4550       }
4551     }
4552   }
4553 
4554   return Invalid;
4555 }
4556 
4557 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4558 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4559 /// illegal input values are mapped to SC_None.
4560 static StorageClass
4561 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4562   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4563   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4564          "Parser allowed 'typedef' as storage class VarDecl.");
4565   switch (StorageClassSpec) {
4566   case DeclSpec::SCS_unspecified:    return SC_None;
4567   case DeclSpec::SCS_extern:
4568     if (DS.isExternInLinkageSpec())
4569       return SC_None;
4570     return SC_Extern;
4571   case DeclSpec::SCS_static:         return SC_Static;
4572   case DeclSpec::SCS_auto:           return SC_Auto;
4573   case DeclSpec::SCS_register:       return SC_Register;
4574   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4575     // Illegal SCSs map to None: error reporting is up to the caller.
4576   case DeclSpec::SCS_mutable:        // Fall through.
4577   case DeclSpec::SCS_typedef:        return SC_None;
4578   }
4579   llvm_unreachable("unknown storage class specifier");
4580 }
4581 
4582 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4583   assert(Record->hasInClassInitializer());
4584 
4585   for (const auto *I : Record->decls()) {
4586     const auto *FD = dyn_cast<FieldDecl>(I);
4587     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4588       FD = IFD->getAnonField();
4589     if (FD && FD->hasInClassInitializer())
4590       return FD->getLocation();
4591   }
4592 
4593   llvm_unreachable("couldn't find in-class initializer");
4594 }
4595 
4596 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4597                                       SourceLocation DefaultInitLoc) {
4598   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4599     return;
4600 
4601   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4602   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4603 }
4604 
4605 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4606                                       CXXRecordDecl *AnonUnion) {
4607   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4608     return;
4609 
4610   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4611 }
4612 
4613 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4614 /// anonymous structure or union. Anonymous unions are a C++ feature
4615 /// (C++ [class.union]) and a C11 feature; anonymous structures
4616 /// are a C11 feature and GNU C++ extension.
4617 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4618                                         AccessSpecifier AS,
4619                                         RecordDecl *Record,
4620                                         const PrintingPolicy &Policy) {
4621   DeclContext *Owner = Record->getDeclContext();
4622 
4623   // Diagnose whether this anonymous struct/union is an extension.
4624   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4625     Diag(Record->getLocation(), diag::ext_anonymous_union);
4626   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4627     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4628   else if (!Record->isUnion() && !getLangOpts().C11)
4629     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4630 
4631   // C and C++ require different kinds of checks for anonymous
4632   // structs/unions.
4633   bool Invalid = false;
4634   if (getLangOpts().CPlusPlus) {
4635     const char *PrevSpec = nullptr;
4636     unsigned DiagID;
4637     if (Record->isUnion()) {
4638       // C++ [class.union]p6:
4639       //   Anonymous unions declared in a named namespace or in the
4640       //   global namespace shall be declared static.
4641       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
4642           (isa<TranslationUnitDecl>(Owner) ||
4643            (isa<NamespaceDecl>(Owner) &&
4644             cast<NamespaceDecl>(Owner)->getDeclName()))) {
4645         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
4646           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
4647 
4648         // Recover by adding 'static'.
4649         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
4650                                PrevSpec, DiagID, Policy);
4651       }
4652       // C++ [class.union]p6:
4653       //   A storage class is not allowed in a declaration of an
4654       //   anonymous union in a class scope.
4655       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
4656                isa<RecordDecl>(Owner)) {
4657         Diag(DS.getStorageClassSpecLoc(),
4658              diag::err_anonymous_union_with_storage_spec)
4659           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
4660 
4661         // Recover by removing the storage specifier.
4662         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
4663                                SourceLocation(),
4664                                PrevSpec, DiagID, Context.getPrintingPolicy());
4665       }
4666     }
4667 
4668     // Ignore const/volatile/restrict qualifiers.
4669     if (DS.getTypeQualifiers()) {
4670       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4671         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
4672           << Record->isUnion() << "const"
4673           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
4674       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4675         Diag(DS.getVolatileSpecLoc(),
4676              diag::ext_anonymous_struct_union_qualified)
4677           << Record->isUnion() << "volatile"
4678           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
4679       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
4680         Diag(DS.getRestrictSpecLoc(),
4681              diag::ext_anonymous_struct_union_qualified)
4682           << Record->isUnion() << "restrict"
4683           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
4684       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4685         Diag(DS.getAtomicSpecLoc(),
4686              diag::ext_anonymous_struct_union_qualified)
4687           << Record->isUnion() << "_Atomic"
4688           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
4689       if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4690         Diag(DS.getUnalignedSpecLoc(),
4691              diag::ext_anonymous_struct_union_qualified)
4692           << Record->isUnion() << "__unaligned"
4693           << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc());
4694 
4695       DS.ClearTypeQualifiers();
4696     }
4697 
4698     // C++ [class.union]p2:
4699     //   The member-specification of an anonymous union shall only
4700     //   define non-static data members. [Note: nested types and
4701     //   functions cannot be declared within an anonymous union. ]
4702     for (auto *Mem : Record->decls()) {
4703       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
4704         // C++ [class.union]p3:
4705         //   An anonymous union shall not have private or protected
4706         //   members (clause 11).
4707         assert(FD->getAccess() != AS_none);
4708         if (FD->getAccess() != AS_public) {
4709           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
4710             << Record->isUnion() << (FD->getAccess() == AS_protected);
4711           Invalid = true;
4712         }
4713 
4714         // C++ [class.union]p1
4715         //   An object of a class with a non-trivial constructor, a non-trivial
4716         //   copy constructor, a non-trivial destructor, or a non-trivial copy
4717         //   assignment operator cannot be a member of a union, nor can an
4718         //   array of such objects.
4719         if (CheckNontrivialField(FD))
4720           Invalid = true;
4721       } else if (Mem->isImplicit()) {
4722         // Any implicit members are fine.
4723       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
4724         // This is a type that showed up in an
4725         // elaborated-type-specifier inside the anonymous struct or
4726         // union, but which actually declares a type outside of the
4727         // anonymous struct or union. It's okay.
4728       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
4729         if (!MemRecord->isAnonymousStructOrUnion() &&
4730             MemRecord->getDeclName()) {
4731           // Visual C++ allows type definition in anonymous struct or union.
4732           if (getLangOpts().MicrosoftExt)
4733             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
4734               << Record->isUnion();
4735           else {
4736             // This is a nested type declaration.
4737             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
4738               << Record->isUnion();
4739             Invalid = true;
4740           }
4741         } else {
4742           // This is an anonymous type definition within another anonymous type.
4743           // This is a popular extension, provided by Plan9, MSVC and GCC, but
4744           // not part of standard C++.
4745           Diag(MemRecord->getLocation(),
4746                diag::ext_anonymous_record_with_anonymous_type)
4747             << Record->isUnion();
4748         }
4749       } else if (isa<AccessSpecDecl>(Mem)) {
4750         // Any access specifier is fine.
4751       } else if (isa<StaticAssertDecl>(Mem)) {
4752         // In C++1z, static_assert declarations are also fine.
4753       } else {
4754         // We have something that isn't a non-static data
4755         // member. Complain about it.
4756         unsigned DK = diag::err_anonymous_record_bad_member;
4757         if (isa<TypeDecl>(Mem))
4758           DK = diag::err_anonymous_record_with_type;
4759         else if (isa<FunctionDecl>(Mem))
4760           DK = diag::err_anonymous_record_with_function;
4761         else if (isa<VarDecl>(Mem))
4762           DK = diag::err_anonymous_record_with_static;
4763 
4764         // Visual C++ allows type definition in anonymous struct or union.
4765         if (getLangOpts().MicrosoftExt &&
4766             DK == diag::err_anonymous_record_with_type)
4767           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
4768             << Record->isUnion();
4769         else {
4770           Diag(Mem->getLocation(), DK) << Record->isUnion();
4771           Invalid = true;
4772         }
4773       }
4774     }
4775 
4776     // C++11 [class.union]p8 (DR1460):
4777     //   At most one variant member of a union may have a
4778     //   brace-or-equal-initializer.
4779     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
4780         Owner->isRecord())
4781       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
4782                                 cast<CXXRecordDecl>(Record));
4783   }
4784 
4785   if (!Record->isUnion() && !Owner->isRecord()) {
4786     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
4787       << getLangOpts().CPlusPlus;
4788     Invalid = true;
4789   }
4790 
4791   // Mock up a declarator.
4792   Declarator Dc(DS, DeclaratorContext::MemberContext);
4793   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4794   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
4795 
4796   // Create a declaration for this anonymous struct/union.
4797   NamedDecl *Anon = nullptr;
4798   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
4799     Anon = FieldDecl::Create(Context, OwningClass,
4800                              DS.getLocStart(),
4801                              Record->getLocation(),
4802                              /*IdentifierInfo=*/nullptr,
4803                              Context.getTypeDeclType(Record),
4804                              TInfo,
4805                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4806                              /*InitStyle=*/ICIS_NoInit);
4807     Anon->setAccess(AS);
4808     if (getLangOpts().CPlusPlus)
4809       FieldCollector->Add(cast<FieldDecl>(Anon));
4810   } else {
4811     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
4812     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
4813     if (SCSpec == DeclSpec::SCS_mutable) {
4814       // mutable can only appear on non-static class members, so it's always
4815       // an error here
4816       Diag(Record->getLocation(), diag::err_mutable_nonmember);
4817       Invalid = true;
4818       SC = SC_None;
4819     }
4820 
4821     Anon = VarDecl::Create(Context, Owner,
4822                            DS.getLocStart(),
4823                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
4824                            Context.getTypeDeclType(Record),
4825                            TInfo, SC);
4826 
4827     // Default-initialize the implicit variable. This initialization will be
4828     // trivial in almost all cases, except if a union member has an in-class
4829     // initializer:
4830     //   union { int n = 0; };
4831     ActOnUninitializedDecl(Anon);
4832   }
4833   Anon->setImplicit();
4834 
4835   // Mark this as an anonymous struct/union type.
4836   Record->setAnonymousStructOrUnion(true);
4837 
4838   // Add the anonymous struct/union object to the current
4839   // context. We'll be referencing this object when we refer to one of
4840   // its members.
4841   Owner->addDecl(Anon);
4842 
4843   // Inject the members of the anonymous struct/union into the owning
4844   // context and into the identifier resolver chain for name lookup
4845   // purposes.
4846   SmallVector<NamedDecl*, 2> Chain;
4847   Chain.push_back(Anon);
4848 
4849   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
4850     Invalid = true;
4851 
4852   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
4853     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
4854       Decl *ManglingContextDecl;
4855       if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4856               NewVD->getDeclContext(), ManglingContextDecl)) {
4857         Context.setManglingNumber(
4858             NewVD, MCtx->getManglingNumber(
4859                        NewVD, getMSManglingNumber(getLangOpts(), S)));
4860         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
4861       }
4862     }
4863   }
4864 
4865   if (Invalid)
4866     Anon->setInvalidDecl();
4867 
4868   return Anon;
4869 }
4870 
4871 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
4872 /// Microsoft C anonymous structure.
4873 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
4874 /// Example:
4875 ///
4876 /// struct A { int a; };
4877 /// struct B { struct A; int b; };
4878 ///
4879 /// void foo() {
4880 ///   B var;
4881 ///   var.a = 3;
4882 /// }
4883 ///
4884 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
4885                                            RecordDecl *Record) {
4886   assert(Record && "expected a record!");
4887 
4888   // Mock up a declarator.
4889   Declarator Dc(DS, DeclaratorContext::TypeNameContext);
4890   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4891   assert(TInfo && "couldn't build declarator info for anonymous struct");
4892 
4893   auto *ParentDecl = cast<RecordDecl>(CurContext);
4894   QualType RecTy = Context.getTypeDeclType(Record);
4895 
4896   // Create a declaration for this anonymous struct.
4897   NamedDecl *Anon = FieldDecl::Create(Context,
4898                              ParentDecl,
4899                              DS.getLocStart(),
4900                              DS.getLocStart(),
4901                              /*IdentifierInfo=*/nullptr,
4902                              RecTy,
4903                              TInfo,
4904                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4905                              /*InitStyle=*/ICIS_NoInit);
4906   Anon->setImplicit();
4907 
4908   // Add the anonymous struct object to the current context.
4909   CurContext->addDecl(Anon);
4910 
4911   // Inject the members of the anonymous struct into the current
4912   // context and into the identifier resolver chain for name lookup
4913   // purposes.
4914   SmallVector<NamedDecl*, 2> Chain;
4915   Chain.push_back(Anon);
4916 
4917   RecordDecl *RecordDef = Record->getDefinition();
4918   if (RequireCompleteType(Anon->getLocation(), RecTy,
4919                           diag::err_field_incomplete) ||
4920       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
4921                                           AS_none, Chain)) {
4922     Anon->setInvalidDecl();
4923     ParentDecl->setInvalidDecl();
4924   }
4925 
4926   return Anon;
4927 }
4928 
4929 /// GetNameForDeclarator - Determine the full declaration name for the
4930 /// given Declarator.
4931 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
4932   return GetNameFromUnqualifiedId(D.getName());
4933 }
4934 
4935 /// \brief Retrieves the declaration name from a parsed unqualified-id.
4936 DeclarationNameInfo
4937 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
4938   DeclarationNameInfo NameInfo;
4939   NameInfo.setLoc(Name.StartLocation);
4940 
4941   switch (Name.getKind()) {
4942 
4943   case UnqualifiedIdKind::IK_ImplicitSelfParam:
4944   case UnqualifiedIdKind::IK_Identifier:
4945     NameInfo.setName(Name.Identifier);
4946     NameInfo.setLoc(Name.StartLocation);
4947     return NameInfo;
4948 
4949   case UnqualifiedIdKind::IK_DeductionGuideName: {
4950     // C++ [temp.deduct.guide]p3:
4951     //   The simple-template-id shall name a class template specialization.
4952     //   The template-name shall be the same identifier as the template-name
4953     //   of the simple-template-id.
4954     // These together intend to imply that the template-name shall name a
4955     // class template.
4956     // FIXME: template<typename T> struct X {};
4957     //        template<typename T> using Y = X<T>;
4958     //        Y(int) -> Y<int>;
4959     //   satisfies these rules but does not name a class template.
4960     TemplateName TN = Name.TemplateName.get().get();
4961     auto *Template = TN.getAsTemplateDecl();
4962     if (!Template || !isa<ClassTemplateDecl>(Template)) {
4963       Diag(Name.StartLocation,
4964            diag::err_deduction_guide_name_not_class_template)
4965         << (int)getTemplateNameKindForDiagnostics(TN) << TN;
4966       if (Template)
4967         Diag(Template->getLocation(), diag::note_template_decl_here);
4968       return DeclarationNameInfo();
4969     }
4970 
4971     NameInfo.setName(
4972         Context.DeclarationNames.getCXXDeductionGuideName(Template));
4973     NameInfo.setLoc(Name.StartLocation);
4974     return NameInfo;
4975   }
4976 
4977   case UnqualifiedIdKind::IK_OperatorFunctionId:
4978     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
4979                                            Name.OperatorFunctionId.Operator));
4980     NameInfo.setLoc(Name.StartLocation);
4981     NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
4982       = Name.OperatorFunctionId.SymbolLocations[0];
4983     NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
4984       = Name.EndLocation.getRawEncoding();
4985     return NameInfo;
4986 
4987   case UnqualifiedIdKind::IK_LiteralOperatorId:
4988     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
4989                                                            Name.Identifier));
4990     NameInfo.setLoc(Name.StartLocation);
4991     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
4992     return NameInfo;
4993 
4994   case UnqualifiedIdKind::IK_ConversionFunctionId: {
4995     TypeSourceInfo *TInfo;
4996     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
4997     if (Ty.isNull())
4998       return DeclarationNameInfo();
4999     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
5000                                                Context.getCanonicalType(Ty)));
5001     NameInfo.setLoc(Name.StartLocation);
5002     NameInfo.setNamedTypeInfo(TInfo);
5003     return NameInfo;
5004   }
5005 
5006   case UnqualifiedIdKind::IK_ConstructorName: {
5007     TypeSourceInfo *TInfo;
5008     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
5009     if (Ty.isNull())
5010       return DeclarationNameInfo();
5011     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5012                                               Context.getCanonicalType(Ty)));
5013     NameInfo.setLoc(Name.StartLocation);
5014     NameInfo.setNamedTypeInfo(TInfo);
5015     return NameInfo;
5016   }
5017 
5018   case UnqualifiedIdKind::IK_ConstructorTemplateId: {
5019     // In well-formed code, we can only have a constructor
5020     // template-id that refers to the current context, so go there
5021     // to find the actual type being constructed.
5022     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
5023     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
5024       return DeclarationNameInfo();
5025 
5026     // Determine the type of the class being constructed.
5027     QualType CurClassType = Context.getTypeDeclType(CurClass);
5028 
5029     // FIXME: Check two things: that the template-id names the same type as
5030     // CurClassType, and that the template-id does not occur when the name
5031     // was qualified.
5032 
5033     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5034                                     Context.getCanonicalType(CurClassType)));
5035     NameInfo.setLoc(Name.StartLocation);
5036     // FIXME: should we retrieve TypeSourceInfo?
5037     NameInfo.setNamedTypeInfo(nullptr);
5038     return NameInfo;
5039   }
5040 
5041   case UnqualifiedIdKind::IK_DestructorName: {
5042     TypeSourceInfo *TInfo;
5043     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
5044     if (Ty.isNull())
5045       return DeclarationNameInfo();
5046     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
5047                                               Context.getCanonicalType(Ty)));
5048     NameInfo.setLoc(Name.StartLocation);
5049     NameInfo.setNamedTypeInfo(TInfo);
5050     return NameInfo;
5051   }
5052 
5053   case UnqualifiedIdKind::IK_TemplateId: {
5054     TemplateName TName = Name.TemplateId->Template.get();
5055     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
5056     return Context.getNameForTemplate(TName, TNameLoc);
5057   }
5058 
5059   } // switch (Name.getKind())
5060 
5061   llvm_unreachable("Unknown name kind");
5062 }
5063 
5064 static QualType getCoreType(QualType Ty) {
5065   do {
5066     if (Ty->isPointerType() || Ty->isReferenceType())
5067       Ty = Ty->getPointeeType();
5068     else if (Ty->isArrayType())
5069       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
5070     else
5071       return Ty.withoutLocalFastQualifiers();
5072   } while (true);
5073 }
5074 
5075 /// hasSimilarParameters - Determine whether the C++ functions Declaration
5076 /// and Definition have "nearly" matching parameters. This heuristic is
5077 /// used to improve diagnostics in the case where an out-of-line function
5078 /// definition doesn't match any declaration within the class or namespace.
5079 /// Also sets Params to the list of indices to the parameters that differ
5080 /// between the declaration and the definition. If hasSimilarParameters
5081 /// returns true and Params is empty, then all of the parameters match.
5082 static bool hasSimilarParameters(ASTContext &Context,
5083                                      FunctionDecl *Declaration,
5084                                      FunctionDecl *Definition,
5085                                      SmallVectorImpl<unsigned> &Params) {
5086   Params.clear();
5087   if (Declaration->param_size() != Definition->param_size())
5088     return false;
5089   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
5090     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
5091     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
5092 
5093     // The parameter types are identical
5094     if (Context.hasSameType(DefParamTy, DeclParamTy))
5095       continue;
5096 
5097     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
5098     QualType DefParamBaseTy = getCoreType(DefParamTy);
5099     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
5100     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
5101 
5102     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
5103         (DeclTyName && DeclTyName == DefTyName))
5104       Params.push_back(Idx);
5105     else  // The two parameters aren't even close
5106       return false;
5107   }
5108 
5109   return true;
5110 }
5111 
5112 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
5113 /// declarator needs to be rebuilt in the current instantiation.
5114 /// Any bits of declarator which appear before the name are valid for
5115 /// consideration here.  That's specifically the type in the decl spec
5116 /// and the base type in any member-pointer chunks.
5117 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
5118                                                     DeclarationName Name) {
5119   // The types we specifically need to rebuild are:
5120   //   - typenames, typeofs, and decltypes
5121   //   - types which will become injected class names
5122   // Of course, we also need to rebuild any type referencing such a
5123   // type.  It's safest to just say "dependent", but we call out a
5124   // few cases here.
5125 
5126   DeclSpec &DS = D.getMutableDeclSpec();
5127   switch (DS.getTypeSpecType()) {
5128   case DeclSpec::TST_typename:
5129   case DeclSpec::TST_typeofType:
5130   case DeclSpec::TST_underlyingType:
5131   case DeclSpec::TST_atomic: {
5132     // Grab the type from the parser.
5133     TypeSourceInfo *TSI = nullptr;
5134     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
5135     if (T.isNull() || !T->isDependentType()) break;
5136 
5137     // Make sure there's a type source info.  This isn't really much
5138     // of a waste; most dependent types should have type source info
5139     // attached already.
5140     if (!TSI)
5141       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
5142 
5143     // Rebuild the type in the current instantiation.
5144     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
5145     if (!TSI) return true;
5146 
5147     // Store the new type back in the decl spec.
5148     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
5149     DS.UpdateTypeRep(LocType);
5150     break;
5151   }
5152 
5153   case DeclSpec::TST_decltype:
5154   case DeclSpec::TST_typeofExpr: {
5155     Expr *E = DS.getRepAsExpr();
5156     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
5157     if (Result.isInvalid()) return true;
5158     DS.UpdateExprRep(Result.get());
5159     break;
5160   }
5161 
5162   default:
5163     // Nothing to do for these decl specs.
5164     break;
5165   }
5166 
5167   // It doesn't matter what order we do this in.
5168   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
5169     DeclaratorChunk &Chunk = D.getTypeObject(I);
5170 
5171     // The only type information in the declarator which can come
5172     // before the declaration name is the base type of a member
5173     // pointer.
5174     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
5175       continue;
5176 
5177     // Rebuild the scope specifier in-place.
5178     CXXScopeSpec &SS = Chunk.Mem.Scope();
5179     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
5180       return true;
5181   }
5182 
5183   return false;
5184 }
5185 
5186 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
5187   D.setFunctionDefinitionKind(FDK_Declaration);
5188   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
5189 
5190   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
5191       Dcl && Dcl->getDeclContext()->isFileContext())
5192     Dcl->setTopLevelDeclInObjCContainer();
5193 
5194   if (getLangOpts().OpenCL)
5195     setCurrentOpenCLExtensionForDecl(Dcl);
5196 
5197   return Dcl;
5198 }
5199 
5200 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
5201 ///   If T is the name of a class, then each of the following shall have a
5202 ///   name different from T:
5203 ///     - every static data member of class T;
5204 ///     - every member function of class T
5205 ///     - every member of class T that is itself a type;
5206 /// \returns true if the declaration name violates these rules.
5207 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
5208                                    DeclarationNameInfo NameInfo) {
5209   DeclarationName Name = NameInfo.getName();
5210 
5211   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
5212   while (Record && Record->isAnonymousStructOrUnion())
5213     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
5214   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
5215     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
5216     return true;
5217   }
5218 
5219   return false;
5220 }
5221 
5222 /// \brief Diagnose a declaration whose declarator-id has the given
5223 /// nested-name-specifier.
5224 ///
5225 /// \param SS The nested-name-specifier of the declarator-id.
5226 ///
5227 /// \param DC The declaration context to which the nested-name-specifier
5228 /// resolves.
5229 ///
5230 /// \param Name The name of the entity being declared.
5231 ///
5232 /// \param Loc The location of the name of the entity being declared.
5233 ///
5234 /// \returns true if we cannot safely recover from this error, false otherwise.
5235 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
5236                                         DeclarationName Name,
5237                                         SourceLocation Loc) {
5238   DeclContext *Cur = CurContext;
5239   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
5240     Cur = Cur->getParent();
5241 
5242   // If the user provided a superfluous scope specifier that refers back to the
5243   // class in which the entity is already declared, diagnose and ignore it.
5244   //
5245   // class X {
5246   //   void X::f();
5247   // };
5248   //
5249   // Note, it was once ill-formed to give redundant qualification in all
5250   // contexts, but that rule was removed by DR482.
5251   if (Cur->Equals(DC)) {
5252     if (Cur->isRecord()) {
5253       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
5254                                       : diag::err_member_extra_qualification)
5255         << Name << FixItHint::CreateRemoval(SS.getRange());
5256       SS.clear();
5257     } else {
5258       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
5259     }
5260     return false;
5261   }
5262 
5263   // Check whether the qualifying scope encloses the scope of the original
5264   // declaration.
5265   if (!Cur->Encloses(DC)) {
5266     if (Cur->isRecord())
5267       Diag(Loc, diag::err_member_qualification)
5268         << Name << SS.getRange();
5269     else if (isa<TranslationUnitDecl>(DC))
5270       Diag(Loc, diag::err_invalid_declarator_global_scope)
5271         << Name << SS.getRange();
5272     else if (isa<FunctionDecl>(Cur))
5273       Diag(Loc, diag::err_invalid_declarator_in_function)
5274         << Name << SS.getRange();
5275     else if (isa<BlockDecl>(Cur))
5276       Diag(Loc, diag::err_invalid_declarator_in_block)
5277         << Name << SS.getRange();
5278     else
5279       Diag(Loc, diag::err_invalid_declarator_scope)
5280       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
5281 
5282     return true;
5283   }
5284 
5285   if (Cur->isRecord()) {
5286     // Cannot qualify members within a class.
5287     Diag(Loc, diag::err_member_qualification)
5288       << Name << SS.getRange();
5289     SS.clear();
5290 
5291     // C++ constructors and destructors with incorrect scopes can break
5292     // our AST invariants by having the wrong underlying types. If
5293     // that's the case, then drop this declaration entirely.
5294     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
5295          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
5296         !Context.hasSameType(Name.getCXXNameType(),
5297                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
5298       return true;
5299 
5300     return false;
5301   }
5302 
5303   // C++11 [dcl.meaning]p1:
5304   //   [...] "The nested-name-specifier of the qualified declarator-id shall
5305   //   not begin with a decltype-specifer"
5306   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
5307   while (SpecLoc.getPrefix())
5308     SpecLoc = SpecLoc.getPrefix();
5309   if (dyn_cast_or_null<DecltypeType>(
5310         SpecLoc.getNestedNameSpecifier()->getAsType()))
5311     Diag(Loc, diag::err_decltype_in_declarator)
5312       << SpecLoc.getTypeLoc().getSourceRange();
5313 
5314   return false;
5315 }
5316 
5317 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
5318                                   MultiTemplateParamsArg TemplateParamLists) {
5319   // TODO: consider using NameInfo for diagnostic.
5320   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5321   DeclarationName Name = NameInfo.getName();
5322 
5323   // All of these full declarators require an identifier.  If it doesn't have
5324   // one, the ParsedFreeStandingDeclSpec action should be used.
5325   if (D.isDecompositionDeclarator()) {
5326     return ActOnDecompositionDeclarator(S, D, TemplateParamLists);
5327   } else if (!Name) {
5328     if (!D.isInvalidType())  // Reject this if we think it is valid.
5329       Diag(D.getDeclSpec().getLocStart(),
5330            diag::err_declarator_need_ident)
5331         << D.getDeclSpec().getSourceRange() << D.getSourceRange();
5332     return nullptr;
5333   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
5334     return nullptr;
5335 
5336   // The scope passed in may not be a decl scope.  Zip up the scope tree until
5337   // we find one that is.
5338   while ((S->getFlags() & Scope::DeclScope) == 0 ||
5339          (S->getFlags() & Scope::TemplateParamScope) != 0)
5340     S = S->getParent();
5341 
5342   DeclContext *DC = CurContext;
5343   if (D.getCXXScopeSpec().isInvalid())
5344     D.setInvalidType();
5345   else if (D.getCXXScopeSpec().isSet()) {
5346     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
5347                                         UPPC_DeclarationQualifier))
5348       return nullptr;
5349 
5350     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
5351     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
5352     if (!DC || isa<EnumDecl>(DC)) {
5353       // If we could not compute the declaration context, it's because the
5354       // declaration context is dependent but does not refer to a class,
5355       // class template, or class template partial specialization. Complain
5356       // and return early, to avoid the coming semantic disaster.
5357       Diag(D.getIdentifierLoc(),
5358            diag::err_template_qualified_declarator_no_match)
5359         << D.getCXXScopeSpec().getScopeRep()
5360         << D.getCXXScopeSpec().getRange();
5361       return nullptr;
5362     }
5363     bool IsDependentContext = DC->isDependentContext();
5364 
5365     if (!IsDependentContext &&
5366         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
5367       return nullptr;
5368 
5369     // If a class is incomplete, do not parse entities inside it.
5370     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
5371       Diag(D.getIdentifierLoc(),
5372            diag::err_member_def_undefined_record)
5373         << Name << DC << D.getCXXScopeSpec().getRange();
5374       return nullptr;
5375     }
5376     if (!D.getDeclSpec().isFriendSpecified()) {
5377       if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
5378                                       Name, D.getIdentifierLoc())) {
5379         if (DC->isRecord())
5380           return nullptr;
5381 
5382         D.setInvalidType();
5383       }
5384     }
5385 
5386     // Check whether we need to rebuild the type of the given
5387     // declaration in the current instantiation.
5388     if (EnteringContext && IsDependentContext &&
5389         TemplateParamLists.size() != 0) {
5390       ContextRAII SavedContext(*this, DC);
5391       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
5392         D.setInvalidType();
5393     }
5394   }
5395 
5396   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
5397   QualType R = TInfo->getType();
5398 
5399   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
5400                                       UPPC_DeclarationType))
5401     D.setInvalidType();
5402 
5403   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
5404                         forRedeclarationInCurContext());
5405 
5406   // See if this is a redefinition of a variable in the same scope.
5407   if (!D.getCXXScopeSpec().isSet()) {
5408     bool IsLinkageLookup = false;
5409     bool CreateBuiltins = false;
5410 
5411     // If the declaration we're planning to build will be a function
5412     // or object with linkage, then look for another declaration with
5413     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
5414     //
5415     // If the declaration we're planning to build will be declared with
5416     // external linkage in the translation unit, create any builtin with
5417     // the same name.
5418     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
5419       /* Do nothing*/;
5420     else if (CurContext->isFunctionOrMethod() &&
5421              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
5422               R->isFunctionType())) {
5423       IsLinkageLookup = true;
5424       CreateBuiltins =
5425           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
5426     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
5427                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
5428       CreateBuiltins = true;
5429 
5430     if (IsLinkageLookup) {
5431       Previous.clear(LookupRedeclarationWithLinkage);
5432       Previous.setRedeclarationKind(ForExternalRedeclaration);
5433     }
5434 
5435     LookupName(Previous, S, CreateBuiltins);
5436   } else { // Something like "int foo::x;"
5437     LookupQualifiedName(Previous, DC);
5438 
5439     // C++ [dcl.meaning]p1:
5440     //   When the declarator-id is qualified, the declaration shall refer to a
5441     //  previously declared member of the class or namespace to which the
5442     //  qualifier refers (or, in the case of a namespace, of an element of the
5443     //  inline namespace set of that namespace (7.3.1)) or to a specialization
5444     //  thereof; [...]
5445     //
5446     // Note that we already checked the context above, and that we do not have
5447     // enough information to make sure that Previous contains the declaration
5448     // we want to match. For example, given:
5449     //
5450     //   class X {
5451     //     void f();
5452     //     void f(float);
5453     //   };
5454     //
5455     //   void X::f(int) { } // ill-formed
5456     //
5457     // In this case, Previous will point to the overload set
5458     // containing the two f's declared in X, but neither of them
5459     // matches.
5460 
5461     // C++ [dcl.meaning]p1:
5462     //   [...] the member shall not merely have been introduced by a
5463     //   using-declaration in the scope of the class or namespace nominated by
5464     //   the nested-name-specifier of the declarator-id.
5465     RemoveUsingDecls(Previous);
5466   }
5467 
5468   if (Previous.isSingleResult() &&
5469       Previous.getFoundDecl()->isTemplateParameter()) {
5470     // Maybe we will complain about the shadowed template parameter.
5471     if (!D.isInvalidType())
5472       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
5473                                       Previous.getFoundDecl());
5474 
5475     // Just pretend that we didn't see the previous declaration.
5476     Previous.clear();
5477   }
5478 
5479   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
5480     // Forget that the previous declaration is the injected-class-name.
5481     Previous.clear();
5482 
5483   // In C++, the previous declaration we find might be a tag type
5484   // (class or enum). In this case, the new declaration will hide the
5485   // tag type. Note that this applies to functions, function templates, and
5486   // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates.
5487   if (Previous.isSingleTagDecl() &&
5488       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
5489       (TemplateParamLists.size() == 0 || R->isFunctionType()))
5490     Previous.clear();
5491 
5492   // Check that there are no default arguments other than in the parameters
5493   // of a function declaration (C++ only).
5494   if (getLangOpts().CPlusPlus)
5495     CheckExtraCXXDefaultArguments(D);
5496 
5497   NamedDecl *New;
5498 
5499   bool AddToScope = true;
5500   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5501     if (TemplateParamLists.size()) {
5502       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5503       return nullptr;
5504     }
5505 
5506     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5507   } else if (R->isFunctionType()) {
5508     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5509                                   TemplateParamLists,
5510                                   AddToScope);
5511   } else {
5512     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5513                                   AddToScope);
5514   }
5515 
5516   if (!New)
5517     return nullptr;
5518 
5519   // If this has an identifier and is not a function template specialization,
5520   // add it to the scope stack.
5521   if (New->getDeclName() && AddToScope) {
5522     // Only make a locally-scoped extern declaration visible if it is the first
5523     // declaration of this entity. Qualified lookup for such an entity should
5524     // only find this declaration if there is no visible declaration of it.
5525     bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
5526     PushOnScopeChains(New, S, AddToContext);
5527     if (!AddToContext)
5528       CurContext->addHiddenDecl(New);
5529   }
5530 
5531   if (isInOpenMPDeclareTargetContext())
5532     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
5533 
5534   return New;
5535 }
5536 
5537 /// Helper method to turn variable array types into constant array
5538 /// types in certain situations which would otherwise be errors (for
5539 /// GCC compatibility).
5540 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5541                                                     ASTContext &Context,
5542                                                     bool &SizeIsNegative,
5543                                                     llvm::APSInt &Oversized) {
5544   // This method tries to turn a variable array into a constant
5545   // array even when the size isn't an ICE.  This is necessary
5546   // for compatibility with code that depends on gcc's buggy
5547   // constant expression folding, like struct {char x[(int)(char*)2];}
5548   SizeIsNegative = false;
5549   Oversized = 0;
5550 
5551   if (T->isDependentType())
5552     return QualType();
5553 
5554   QualifierCollector Qs;
5555   const Type *Ty = Qs.strip(T);
5556 
5557   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5558     QualType Pointee = PTy->getPointeeType();
5559     QualType FixedType =
5560         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5561                                             Oversized);
5562     if (FixedType.isNull()) return FixedType;
5563     FixedType = Context.getPointerType(FixedType);
5564     return Qs.apply(Context, FixedType);
5565   }
5566   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5567     QualType Inner = PTy->getInnerType();
5568     QualType FixedType =
5569         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5570                                             Oversized);
5571     if (FixedType.isNull()) return FixedType;
5572     FixedType = Context.getParenType(FixedType);
5573     return Qs.apply(Context, FixedType);
5574   }
5575 
5576   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5577   if (!VLATy)
5578     return QualType();
5579   // FIXME: We should probably handle this case
5580   if (VLATy->getElementType()->isVariablyModifiedType())
5581     return QualType();
5582 
5583   llvm::APSInt Res;
5584   if (!VLATy->getSizeExpr() ||
5585       !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
5586     return QualType();
5587 
5588   // Check whether the array size is negative.
5589   if (Res.isSigned() && Res.isNegative()) {
5590     SizeIsNegative = true;
5591     return QualType();
5592   }
5593 
5594   // Check whether the array is too large to be addressed.
5595   unsigned ActiveSizeBits
5596     = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
5597                                               Res);
5598   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5599     Oversized = Res;
5600     return QualType();
5601   }
5602 
5603   return Context.getConstantArrayType(VLATy->getElementType(),
5604                                       Res, ArrayType::Normal, 0);
5605 }
5606 
5607 static void
5608 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5609   SrcTL = SrcTL.getUnqualifiedLoc();
5610   DstTL = DstTL.getUnqualifiedLoc();
5611   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5612     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5613     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5614                                       DstPTL.getPointeeLoc());
5615     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5616     return;
5617   }
5618   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5619     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5620     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5621                                       DstPTL.getInnerLoc());
5622     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5623     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5624     return;
5625   }
5626   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
5627   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
5628   TypeLoc SrcElemTL = SrcATL.getElementLoc();
5629   TypeLoc DstElemTL = DstATL.getElementLoc();
5630   DstElemTL.initializeFullCopy(SrcElemTL);
5631   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
5632   DstATL.setSizeExpr(SrcATL.getSizeExpr());
5633   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
5634 }
5635 
5636 /// Helper method to turn variable array types into constant array
5637 /// types in certain situations which would otherwise be errors (for
5638 /// GCC compatibility).
5639 static TypeSourceInfo*
5640 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
5641                                               ASTContext &Context,
5642                                               bool &SizeIsNegative,
5643                                               llvm::APSInt &Oversized) {
5644   QualType FixedTy
5645     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
5646                                           SizeIsNegative, Oversized);
5647   if (FixedTy.isNull())
5648     return nullptr;
5649   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
5650   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
5651                                     FixedTInfo->getTypeLoc());
5652   return FixedTInfo;
5653 }
5654 
5655 /// \brief Register the given locally-scoped extern "C" declaration so
5656 /// that it can be found later for redeclarations. We include any extern "C"
5657 /// declaration that is not visible in the translation unit here, not just
5658 /// function-scope declarations.
5659 void
5660 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
5661   if (!getLangOpts().CPlusPlus &&
5662       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
5663     // Don't need to track declarations in the TU in C.
5664     return;
5665 
5666   // Note that we have a locally-scoped external with this name.
5667   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
5668 }
5669 
5670 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
5671   // FIXME: We can have multiple results via __attribute__((overloadable)).
5672   auto Result = Context.getExternCContextDecl()->lookup(Name);
5673   return Result.empty() ? nullptr : *Result.begin();
5674 }
5675 
5676 /// \brief Diagnose function specifiers on a declaration of an identifier that
5677 /// does not identify a function.
5678 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
5679   // FIXME: We should probably indicate the identifier in question to avoid
5680   // confusion for constructs like "virtual int a(), b;"
5681   if (DS.isVirtualSpecified())
5682     Diag(DS.getVirtualSpecLoc(),
5683          diag::err_virtual_non_function);
5684 
5685   if (DS.isExplicitSpecified())
5686     Diag(DS.getExplicitSpecLoc(),
5687          diag::err_explicit_non_function);
5688 
5689   if (DS.isNoreturnSpecified())
5690     Diag(DS.getNoreturnSpecLoc(),
5691          diag::err_noreturn_non_function);
5692 }
5693 
5694 NamedDecl*
5695 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
5696                              TypeSourceInfo *TInfo, LookupResult &Previous) {
5697   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
5698   if (D.getCXXScopeSpec().isSet()) {
5699     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
5700       << D.getCXXScopeSpec().getRange();
5701     D.setInvalidType();
5702     // Pretend we didn't see the scope specifier.
5703     DC = CurContext;
5704     Previous.clear();
5705   }
5706 
5707   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5708 
5709   if (D.getDeclSpec().isInlineSpecified())
5710     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
5711         << getLangOpts().CPlusPlus17;
5712   if (D.getDeclSpec().isConstexprSpecified())
5713     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
5714       << 1;
5715 
5716   if (D.getName().Kind != UnqualifiedIdKind::IK_Identifier) {
5717     if (D.getName().Kind == UnqualifiedIdKind::IK_DeductionGuideName)
5718       Diag(D.getName().StartLocation,
5719            diag::err_deduction_guide_invalid_specifier)
5720           << "typedef";
5721     else
5722       Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
5723           << D.getName().getSourceRange();
5724     return nullptr;
5725   }
5726 
5727   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
5728   if (!NewTD) return nullptr;
5729 
5730   // Handle attributes prior to checking for duplicates in MergeVarDecl
5731   ProcessDeclAttributes(S, NewTD, D);
5732 
5733   CheckTypedefForVariablyModifiedType(S, NewTD);
5734 
5735   bool Redeclaration = D.isRedeclaration();
5736   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
5737   D.setRedeclaration(Redeclaration);
5738   return ND;
5739 }
5740 
5741 void
5742 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
5743   // C99 6.7.7p2: If a typedef name specifies a variably modified type
5744   // then it shall have block scope.
5745   // Note that variably modified types must be fixed before merging the decl so
5746   // that redeclarations will match.
5747   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
5748   QualType T = TInfo->getType();
5749   if (T->isVariablyModifiedType()) {
5750     setFunctionHasBranchProtectedScope();
5751 
5752     if (S->getFnParent() == nullptr) {
5753       bool SizeIsNegative;
5754       llvm::APSInt Oversized;
5755       TypeSourceInfo *FixedTInfo =
5756         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5757                                                       SizeIsNegative,
5758                                                       Oversized);
5759       if (FixedTInfo) {
5760         Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
5761         NewTD->setTypeSourceInfo(FixedTInfo);
5762       } else {
5763         if (SizeIsNegative)
5764           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
5765         else if (T->isVariableArrayType())
5766           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
5767         else if (Oversized.getBoolValue())
5768           Diag(NewTD->getLocation(), diag::err_array_too_large)
5769             << Oversized.toString(10);
5770         else
5771           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
5772         NewTD->setInvalidDecl();
5773       }
5774     }
5775   }
5776 }
5777 
5778 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
5779 /// declares a typedef-name, either using the 'typedef' type specifier or via
5780 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
5781 NamedDecl*
5782 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
5783                            LookupResult &Previous, bool &Redeclaration) {
5784 
5785   // Find the shadowed declaration before filtering for scope.
5786   NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous);
5787 
5788   // Merge the decl with the existing one if appropriate. If the decl is
5789   // in an outer scope, it isn't the same thing.
5790   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
5791                        /*AllowInlineNamespace*/false);
5792   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
5793   if (!Previous.empty()) {
5794     Redeclaration = true;
5795     MergeTypedefNameDecl(S, NewTD, Previous);
5796   }
5797 
5798   if (ShadowedDecl && !Redeclaration)
5799     CheckShadow(NewTD, ShadowedDecl, Previous);
5800 
5801   // If this is the C FILE type, notify the AST context.
5802   if (IdentifierInfo *II = NewTD->getIdentifier())
5803     if (!NewTD->isInvalidDecl() &&
5804         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5805       if (II->isStr("FILE"))
5806         Context.setFILEDecl(NewTD);
5807       else if (II->isStr("jmp_buf"))
5808         Context.setjmp_bufDecl(NewTD);
5809       else if (II->isStr("sigjmp_buf"))
5810         Context.setsigjmp_bufDecl(NewTD);
5811       else if (II->isStr("ucontext_t"))
5812         Context.setucontext_tDecl(NewTD);
5813     }
5814 
5815   return NewTD;
5816 }
5817 
5818 /// \brief Determines whether the given declaration is an out-of-scope
5819 /// previous declaration.
5820 ///
5821 /// This routine should be invoked when name lookup has found a
5822 /// previous declaration (PrevDecl) that is not in the scope where a
5823 /// new declaration by the same name is being introduced. If the new
5824 /// declaration occurs in a local scope, previous declarations with
5825 /// linkage may still be considered previous declarations (C99
5826 /// 6.2.2p4-5, C++ [basic.link]p6).
5827 ///
5828 /// \param PrevDecl the previous declaration found by name
5829 /// lookup
5830 ///
5831 /// \param DC the context in which the new declaration is being
5832 /// declared.
5833 ///
5834 /// \returns true if PrevDecl is an out-of-scope previous declaration
5835 /// for a new delcaration with the same name.
5836 static bool
5837 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
5838                                 ASTContext &Context) {
5839   if (!PrevDecl)
5840     return false;
5841 
5842   if (!PrevDecl->hasLinkage())
5843     return false;
5844 
5845   if (Context.getLangOpts().CPlusPlus) {
5846     // C++ [basic.link]p6:
5847     //   If there is a visible declaration of an entity with linkage
5848     //   having the same name and type, ignoring entities declared
5849     //   outside the innermost enclosing namespace scope, the block
5850     //   scope declaration declares that same entity and receives the
5851     //   linkage of the previous declaration.
5852     DeclContext *OuterContext = DC->getRedeclContext();
5853     if (!OuterContext->isFunctionOrMethod())
5854       // This rule only applies to block-scope declarations.
5855       return false;
5856 
5857     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
5858     if (PrevOuterContext->isRecord())
5859       // We found a member function: ignore it.
5860       return false;
5861 
5862     // Find the innermost enclosing namespace for the new and
5863     // previous declarations.
5864     OuterContext = OuterContext->getEnclosingNamespaceContext();
5865     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
5866 
5867     // The previous declaration is in a different namespace, so it
5868     // isn't the same function.
5869     if (!OuterContext->Equals(PrevOuterContext))
5870       return false;
5871   }
5872 
5873   return true;
5874 }
5875 
5876 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
5877   CXXScopeSpec &SS = D.getCXXScopeSpec();
5878   if (!SS.isSet()) return;
5879   DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
5880 }
5881 
5882 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
5883   QualType type = decl->getType();
5884   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5885   if (lifetime == Qualifiers::OCL_Autoreleasing) {
5886     // Various kinds of declaration aren't allowed to be __autoreleasing.
5887     unsigned kind = -1U;
5888     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5889       if (var->hasAttr<BlocksAttr>())
5890         kind = 0; // __block
5891       else if (!var->hasLocalStorage())
5892         kind = 1; // global
5893     } else if (isa<ObjCIvarDecl>(decl)) {
5894       kind = 3; // ivar
5895     } else if (isa<FieldDecl>(decl)) {
5896       kind = 2; // field
5897     }
5898 
5899     if (kind != -1U) {
5900       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
5901         << kind;
5902     }
5903   } else if (lifetime == Qualifiers::OCL_None) {
5904     // Try to infer lifetime.
5905     if (!type->isObjCLifetimeType())
5906       return false;
5907 
5908     lifetime = type->getObjCARCImplicitLifetime();
5909     type = Context.getLifetimeQualifiedType(type, lifetime);
5910     decl->setType(type);
5911   }
5912 
5913   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5914     // Thread-local variables cannot have lifetime.
5915     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
5916         var->getTLSKind()) {
5917       Diag(var->getLocation(), diag::err_arc_thread_ownership)
5918         << var->getType();
5919       return true;
5920     }
5921   }
5922 
5923   return false;
5924 }
5925 
5926 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
5927   // Ensure that an auto decl is deduced otherwise the checks below might cache
5928   // the wrong linkage.
5929   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
5930 
5931   // 'weak' only applies to declarations with external linkage.
5932   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
5933     if (!ND.isExternallyVisible()) {
5934       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
5935       ND.dropAttr<WeakAttr>();
5936     }
5937   }
5938   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
5939     if (ND.isExternallyVisible()) {
5940       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
5941       ND.dropAttr<WeakRefAttr>();
5942       ND.dropAttr<AliasAttr>();
5943     }
5944   }
5945 
5946   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
5947     if (VD->hasInit()) {
5948       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
5949         assert(VD->isThisDeclarationADefinition() &&
5950                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
5951         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0;
5952         VD->dropAttr<AliasAttr>();
5953       }
5954     }
5955   }
5956 
5957   // 'selectany' only applies to externally visible variable declarations.
5958   // It does not apply to functions.
5959   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
5960     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
5961       S.Diag(Attr->getLocation(),
5962              diag::err_attribute_selectany_non_extern_data);
5963       ND.dropAttr<SelectAnyAttr>();
5964     }
5965   }
5966 
5967   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
5968     // dll attributes require external linkage. Static locals may have external
5969     // linkage but still cannot be explicitly imported or exported.
5970     auto *VD = dyn_cast<VarDecl>(&ND);
5971     if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) {
5972       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
5973         << &ND << Attr;
5974       ND.setInvalidDecl();
5975     }
5976   }
5977 
5978   // Virtual functions cannot be marked as 'notail'.
5979   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
5980     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
5981       if (MD->isVirtual()) {
5982         S.Diag(ND.getLocation(),
5983                diag::err_invalid_attribute_on_virtual_function)
5984             << Attr;
5985         ND.dropAttr<NotTailCalledAttr>();
5986       }
5987 }
5988 
5989 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
5990                                            NamedDecl *NewDecl,
5991                                            bool IsSpecialization,
5992                                            bool IsDefinition) {
5993   if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl())
5994     return;
5995 
5996   bool IsTemplate = false;
5997   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) {
5998     OldDecl = OldTD->getTemplatedDecl();
5999     IsTemplate = true;
6000     if (!IsSpecialization)
6001       IsDefinition = false;
6002   }
6003   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) {
6004     NewDecl = NewTD->getTemplatedDecl();
6005     IsTemplate = true;
6006   }
6007 
6008   if (!OldDecl || !NewDecl)
6009     return;
6010 
6011   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
6012   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
6013   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
6014   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
6015 
6016   // dllimport and dllexport are inheritable attributes so we have to exclude
6017   // inherited attribute instances.
6018   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
6019                     (NewExportAttr && !NewExportAttr->isInherited());
6020 
6021   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
6022   // the only exception being explicit specializations.
6023   // Implicitly generated declarations are also excluded for now because there
6024   // is no other way to switch these to use dllimport or dllexport.
6025   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
6026 
6027   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
6028     // Allow with a warning for free functions and global variables.
6029     bool JustWarn = false;
6030     if (!OldDecl->isCXXClassMember()) {
6031       auto *VD = dyn_cast<VarDecl>(OldDecl);
6032       if (VD && !VD->getDescribedVarTemplate())
6033         JustWarn = true;
6034       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
6035       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
6036         JustWarn = true;
6037     }
6038 
6039     // We cannot change a declaration that's been used because IR has already
6040     // been emitted. Dllimported functions will still work though (modulo
6041     // address equality) as they can use the thunk.
6042     if (OldDecl->isUsed())
6043       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
6044         JustWarn = false;
6045 
6046     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
6047                                : diag::err_attribute_dll_redeclaration;
6048     S.Diag(NewDecl->getLocation(), DiagID)
6049         << NewDecl
6050         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
6051     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6052     if (!JustWarn) {
6053       NewDecl->setInvalidDecl();
6054       return;
6055     }
6056   }
6057 
6058   // A redeclaration is not allowed to drop a dllimport attribute, the only
6059   // exceptions being inline function definitions (except for function
6060   // templates), local extern declarations, qualified friend declarations or
6061   // special MSVC extension: in the last case, the declaration is treated as if
6062   // it were marked dllexport.
6063   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
6064   bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft();
6065   if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) {
6066     // Ignore static data because out-of-line definitions are diagnosed
6067     // separately.
6068     IsStaticDataMember = VD->isStaticDataMember();
6069     IsDefinition = VD->isThisDeclarationADefinition(S.Context) !=
6070                    VarDecl::DeclarationOnly;
6071   } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
6072     IsInline = FD->isInlined();
6073     IsQualifiedFriend = FD->getQualifier() &&
6074                         FD->getFriendObjectKind() == Decl::FOK_Declared;
6075   }
6076 
6077   if (OldImportAttr && !HasNewAttr &&
6078       (!IsInline || (IsMicrosoft && IsTemplate)) && !IsStaticDataMember &&
6079       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
6080     if (IsMicrosoft && IsDefinition) {
6081       S.Diag(NewDecl->getLocation(),
6082              diag::warn_redeclaration_without_import_attribute)
6083           << NewDecl;
6084       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6085       NewDecl->dropAttr<DLLImportAttr>();
6086       NewDecl->addAttr(::new (S.Context) DLLExportAttr(
6087           NewImportAttr->getRange(), S.Context,
6088           NewImportAttr->getSpellingListIndex()));
6089     } else {
6090       S.Diag(NewDecl->getLocation(),
6091              diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
6092           << NewDecl << OldImportAttr;
6093       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6094       S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
6095       OldDecl->dropAttr<DLLImportAttr>();
6096       NewDecl->dropAttr<DLLImportAttr>();
6097     }
6098   } else if (IsInline && OldImportAttr && !IsMicrosoft) {
6099     // In MinGW, seeing a function declared inline drops the dllimport
6100     // attribute.
6101     OldDecl->dropAttr<DLLImportAttr>();
6102     NewDecl->dropAttr<DLLImportAttr>();
6103     S.Diag(NewDecl->getLocation(),
6104            diag::warn_dllimport_dropped_from_inline_function)
6105         << NewDecl << OldImportAttr;
6106   }
6107 
6108   // A specialization of a class template member function is processed here
6109   // since it's a redeclaration. If the parent class is dllexport, the
6110   // specialization inherits that attribute. This doesn't happen automatically
6111   // since the parent class isn't instantiated until later.
6112   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) {
6113     if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization &&
6114         !NewImportAttr && !NewExportAttr) {
6115       if (const DLLExportAttr *ParentExportAttr =
6116               MD->getParent()->getAttr<DLLExportAttr>()) {
6117         DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context);
6118         NewAttr->setInherited(true);
6119         NewDecl->addAttr(NewAttr);
6120       }
6121     }
6122   }
6123 }
6124 
6125 /// Given that we are within the definition of the given function,
6126 /// will that definition behave like C99's 'inline', where the
6127 /// definition is discarded except for optimization purposes?
6128 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
6129   // Try to avoid calling GetGVALinkageForFunction.
6130 
6131   // All cases of this require the 'inline' keyword.
6132   if (!FD->isInlined()) return false;
6133 
6134   // This is only possible in C++ with the gnu_inline attribute.
6135   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
6136     return false;
6137 
6138   // Okay, go ahead and call the relatively-more-expensive function.
6139   return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
6140 }
6141 
6142 /// Determine whether a variable is extern "C" prior to attaching
6143 /// an initializer. We can't just call isExternC() here, because that
6144 /// will also compute and cache whether the declaration is externally
6145 /// visible, which might change when we attach the initializer.
6146 ///
6147 /// This can only be used if the declaration is known to not be a
6148 /// redeclaration of an internal linkage declaration.
6149 ///
6150 /// For instance:
6151 ///
6152 ///   auto x = []{};
6153 ///
6154 /// Attaching the initializer here makes this declaration not externally
6155 /// visible, because its type has internal linkage.
6156 ///
6157 /// FIXME: This is a hack.
6158 template<typename T>
6159 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
6160   if (S.getLangOpts().CPlusPlus) {
6161     // In C++, the overloadable attribute negates the effects of extern "C".
6162     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
6163       return false;
6164 
6165     // So do CUDA's host/device attributes.
6166     if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() ||
6167                                  D->template hasAttr<CUDAHostAttr>()))
6168       return false;
6169   }
6170   return D->isExternC();
6171 }
6172 
6173 static bool shouldConsiderLinkage(const VarDecl *VD) {
6174   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
6175   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC))
6176     return VD->hasExternalStorage();
6177   if (DC->isFileContext())
6178     return true;
6179   if (DC->isRecord())
6180     return false;
6181   llvm_unreachable("Unexpected context");
6182 }
6183 
6184 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
6185   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
6186   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
6187       isa<OMPDeclareReductionDecl>(DC))
6188     return true;
6189   if (DC->isRecord())
6190     return false;
6191   llvm_unreachable("Unexpected context");
6192 }
6193 
6194 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
6195                           AttributeList::Kind Kind) {
6196   for (const AttributeList *L = AttrList; L; L = L->getNext())
6197     if (L->getKind() == Kind)
6198       return true;
6199   return false;
6200 }
6201 
6202 static bool hasParsedAttr(Scope *S, const Declarator &PD,
6203                           AttributeList::Kind Kind) {
6204   // Check decl attributes on the DeclSpec.
6205   if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
6206     return true;
6207 
6208   // Walk the declarator structure, checking decl attributes that were in a type
6209   // position to the decl itself.
6210   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
6211     if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
6212       return true;
6213   }
6214 
6215   // Finally, check attributes on the decl itself.
6216   return hasParsedAttr(S, PD.getAttributes(), Kind);
6217 }
6218 
6219 /// Adjust the \c DeclContext for a function or variable that might be a
6220 /// function-local external declaration.
6221 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
6222   if (!DC->isFunctionOrMethod())
6223     return false;
6224 
6225   // If this is a local extern function or variable declared within a function
6226   // template, don't add it into the enclosing namespace scope until it is
6227   // instantiated; it might have a dependent type right now.
6228   if (DC->isDependentContext())
6229     return true;
6230 
6231   // C++11 [basic.link]p7:
6232   //   When a block scope declaration of an entity with linkage is not found to
6233   //   refer to some other declaration, then that entity is a member of the
6234   //   innermost enclosing namespace.
6235   //
6236   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
6237   // semantically-enclosing namespace, not a lexically-enclosing one.
6238   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
6239     DC = DC->getParent();
6240   return true;
6241 }
6242 
6243 /// \brief Returns true if given declaration has external C language linkage.
6244 static bool isDeclExternC(const Decl *D) {
6245   if (const auto *FD = dyn_cast<FunctionDecl>(D))
6246     return FD->isExternC();
6247   if (const auto *VD = dyn_cast<VarDecl>(D))
6248     return VD->isExternC();
6249 
6250   llvm_unreachable("Unknown type of decl!");
6251 }
6252 
6253 NamedDecl *Sema::ActOnVariableDeclarator(
6254     Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo,
6255     LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists,
6256     bool &AddToScope, ArrayRef<BindingDecl *> Bindings) {
6257   QualType R = TInfo->getType();
6258   DeclarationName Name = GetNameForDeclarator(D).getName();
6259 
6260   IdentifierInfo *II = Name.getAsIdentifierInfo();
6261 
6262   if (D.isDecompositionDeclarator()) {
6263     // Take the name of the first declarator as our name for diagnostic
6264     // purposes.
6265     auto &Decomp = D.getDecompositionDeclarator();
6266     if (!Decomp.bindings().empty()) {
6267       II = Decomp.bindings()[0].Name;
6268       Name = II;
6269     }
6270   } else if (!II) {
6271     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name;
6272     return nullptr;
6273   }
6274 
6275   if (getLangOpts().OpenCL) {
6276     // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
6277     // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
6278     // argument.
6279     if (R->isImageType() || R->isPipeType()) {
6280       Diag(D.getIdentifierLoc(),
6281            diag::err_opencl_type_can_only_be_used_as_function_parameter)
6282           << R;
6283       D.setInvalidType();
6284       return nullptr;
6285     }
6286 
6287     // OpenCL v1.2 s6.9.r:
6288     // The event type cannot be used to declare a program scope variable.
6289     // OpenCL v2.0 s6.9.q:
6290     // The clk_event_t and reserve_id_t types cannot be declared in program scope.
6291     if (NULL == S->getParent()) {
6292       if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) {
6293         Diag(D.getIdentifierLoc(),
6294              diag::err_invalid_type_for_program_scope_var) << R;
6295         D.setInvalidType();
6296         return nullptr;
6297       }
6298     }
6299 
6300     // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
6301     QualType NR = R;
6302     while (NR->isPointerType()) {
6303       if (NR->isFunctionPointerType()) {
6304         Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer);
6305         D.setInvalidType();
6306         break;
6307       }
6308       NR = NR->getPointeeType();
6309     }
6310 
6311     if (!getOpenCLOptions().isEnabled("cl_khr_fp16")) {
6312       // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
6313       // half array type (unless the cl_khr_fp16 extension is enabled).
6314       if (Context.getBaseElementType(R)->isHalfType()) {
6315         Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
6316         D.setInvalidType();
6317       }
6318     }
6319 
6320     if (R->isSamplerT()) {
6321       // OpenCL v1.2 s6.9.b p4:
6322       // The sampler type cannot be used with the __local and __global address
6323       // space qualifiers.
6324       if (R.getAddressSpace() == LangAS::opencl_local ||
6325           R.getAddressSpace() == LangAS::opencl_global) {
6326         Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
6327       }
6328 
6329       // OpenCL v1.2 s6.12.14.1:
6330       // A global sampler must be declared with either the constant address
6331       // space qualifier or with the const qualifier.
6332       if (DC->isTranslationUnit() &&
6333           !(R.getAddressSpace() == LangAS::opencl_constant ||
6334           R.isConstQualified())) {
6335         Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler);
6336         D.setInvalidType();
6337       }
6338     }
6339 
6340     // OpenCL v1.2 s6.9.r:
6341     // The event type cannot be used with the __local, __constant and __global
6342     // address space qualifiers.
6343     if (R->isEventT()) {
6344       if (R.getAddressSpace() != LangAS::opencl_private) {
6345         Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
6346         D.setInvalidType();
6347       }
6348     }
6349   }
6350 
6351   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
6352   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
6353 
6354   // dllimport globals without explicit storage class are treated as extern. We
6355   // have to change the storage class this early to get the right DeclContext.
6356   if (SC == SC_None && !DC->isRecord() &&
6357       hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
6358       !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
6359     SC = SC_Extern;
6360 
6361   DeclContext *OriginalDC = DC;
6362   bool IsLocalExternDecl = SC == SC_Extern &&
6363                            adjustContextForLocalExternDecl(DC);
6364 
6365   if (SCSpec == DeclSpec::SCS_mutable) {
6366     // mutable can only appear on non-static class members, so it's always
6367     // an error here
6368     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
6369     D.setInvalidType();
6370     SC = SC_None;
6371   }
6372 
6373   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
6374       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
6375                               D.getDeclSpec().getStorageClassSpecLoc())) {
6376     // In C++11, the 'register' storage class specifier is deprecated.
6377     // Suppress the warning in system macros, it's used in macros in some
6378     // popular C system headers, such as in glibc's htonl() macro.
6379     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6380          getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
6381                                    : diag::warn_deprecated_register)
6382       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6383   }
6384 
6385   DiagnoseFunctionSpecifiers(D.getDeclSpec());
6386 
6387   if (!DC->isRecord() && S->getFnParent() == nullptr) {
6388     // C99 6.9p2: The storage-class specifiers auto and register shall not
6389     // appear in the declaration specifiers in an external declaration.
6390     // Global Register+Asm is a GNU extension we support.
6391     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
6392       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
6393       D.setInvalidType();
6394     }
6395   }
6396 
6397   bool IsMemberSpecialization = false;
6398   bool IsVariableTemplateSpecialization = false;
6399   bool IsPartialSpecialization = false;
6400   bool IsVariableTemplate = false;
6401   VarDecl *NewVD = nullptr;
6402   VarTemplateDecl *NewTemplate = nullptr;
6403   TemplateParameterList *TemplateParams = nullptr;
6404   if (!getLangOpts().CPlusPlus) {
6405     NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6406                             D.getIdentifierLoc(), II,
6407                             R, TInfo, SC);
6408 
6409     if (R->getContainedDeducedType())
6410       ParsingInitForAutoVars.insert(NewVD);
6411 
6412     if (D.isInvalidType())
6413       NewVD->setInvalidDecl();
6414   } else {
6415     bool Invalid = false;
6416 
6417     if (DC->isRecord() && !CurContext->isRecord()) {
6418       // This is an out-of-line definition of a static data member.
6419       switch (SC) {
6420       case SC_None:
6421         break;
6422       case SC_Static:
6423         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6424              diag::err_static_out_of_line)
6425           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6426         break;
6427       case SC_Auto:
6428       case SC_Register:
6429       case SC_Extern:
6430         // [dcl.stc] p2: The auto or register specifiers shall be applied only
6431         // to names of variables declared in a block or to function parameters.
6432         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
6433         // of class members
6434 
6435         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6436              diag::err_storage_class_for_static_member)
6437           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6438         break;
6439       case SC_PrivateExtern:
6440         llvm_unreachable("C storage class in c++!");
6441       }
6442     }
6443 
6444     if (SC == SC_Static && CurContext->isRecord()) {
6445       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
6446         if (RD->isLocalClass())
6447           Diag(D.getIdentifierLoc(),
6448                diag::err_static_data_member_not_allowed_in_local_class)
6449             << Name << RD->getDeclName();
6450 
6451         // C++98 [class.union]p1: If a union contains a static data member,
6452         // the program is ill-formed. C++11 drops this restriction.
6453         if (RD->isUnion())
6454           Diag(D.getIdentifierLoc(),
6455                getLangOpts().CPlusPlus11
6456                  ? diag::warn_cxx98_compat_static_data_member_in_union
6457                  : diag::ext_static_data_member_in_union) << Name;
6458         // We conservatively disallow static data members in anonymous structs.
6459         else if (!RD->getDeclName())
6460           Diag(D.getIdentifierLoc(),
6461                diag::err_static_data_member_not_allowed_in_anon_struct)
6462             << Name << RD->isUnion();
6463       }
6464     }
6465 
6466     // Match up the template parameter lists with the scope specifier, then
6467     // determine whether we have a template or a template specialization.
6468     TemplateParams = MatchTemplateParametersToScopeSpecifier(
6469         D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
6470         D.getCXXScopeSpec(),
6471         D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
6472             ? D.getName().TemplateId
6473             : nullptr,
6474         TemplateParamLists,
6475         /*never a friend*/ false, IsMemberSpecialization, Invalid);
6476 
6477     if (TemplateParams) {
6478       if (!TemplateParams->size() &&
6479           D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
6480         // There is an extraneous 'template<>' for this variable. Complain
6481         // about it, but allow the declaration of the variable.
6482         Diag(TemplateParams->getTemplateLoc(),
6483              diag::err_template_variable_noparams)
6484           << II
6485           << SourceRange(TemplateParams->getTemplateLoc(),
6486                          TemplateParams->getRAngleLoc());
6487         TemplateParams = nullptr;
6488       } else {
6489         if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
6490           // This is an explicit specialization or a partial specialization.
6491           // FIXME: Check that we can declare a specialization here.
6492           IsVariableTemplateSpecialization = true;
6493           IsPartialSpecialization = TemplateParams->size() > 0;
6494         } else { // if (TemplateParams->size() > 0)
6495           // This is a template declaration.
6496           IsVariableTemplate = true;
6497 
6498           // Check that we can declare a template here.
6499           if (CheckTemplateDeclScope(S, TemplateParams))
6500             return nullptr;
6501 
6502           // Only C++1y supports variable templates (N3651).
6503           Diag(D.getIdentifierLoc(),
6504                getLangOpts().CPlusPlus14
6505                    ? diag::warn_cxx11_compat_variable_template
6506                    : diag::ext_variable_template);
6507         }
6508       }
6509     } else {
6510       assert((Invalid ||
6511               D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) &&
6512              "should have a 'template<>' for this decl");
6513     }
6514 
6515     if (IsVariableTemplateSpecialization) {
6516       SourceLocation TemplateKWLoc =
6517           TemplateParamLists.size() > 0
6518               ? TemplateParamLists[0]->getTemplateLoc()
6519               : SourceLocation();
6520       DeclResult Res = ActOnVarTemplateSpecialization(
6521           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
6522           IsPartialSpecialization);
6523       if (Res.isInvalid())
6524         return nullptr;
6525       NewVD = cast<VarDecl>(Res.get());
6526       AddToScope = false;
6527     } else if (D.isDecompositionDeclarator()) {
6528       NewVD = DecompositionDecl::Create(Context, DC, D.getLocStart(),
6529                                         D.getIdentifierLoc(), R, TInfo, SC,
6530                                         Bindings);
6531     } else
6532       NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
6533                               D.getIdentifierLoc(), II, R, TInfo, SC);
6534 
6535     // If this is supposed to be a variable template, create it as such.
6536     if (IsVariableTemplate) {
6537       NewTemplate =
6538           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
6539                                   TemplateParams, NewVD);
6540       NewVD->setDescribedVarTemplate(NewTemplate);
6541     }
6542 
6543     // If this decl has an auto type in need of deduction, make a note of the
6544     // Decl so we can diagnose uses of it in its own initializer.
6545     if (R->getContainedDeducedType())
6546       ParsingInitForAutoVars.insert(NewVD);
6547 
6548     if (D.isInvalidType() || Invalid) {
6549       NewVD->setInvalidDecl();
6550       if (NewTemplate)
6551         NewTemplate->setInvalidDecl();
6552     }
6553 
6554     SetNestedNameSpecifier(NewVD, D);
6555 
6556     // If we have any template parameter lists that don't directly belong to
6557     // the variable (matching the scope specifier), store them.
6558     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
6559     if (TemplateParamLists.size() > VDTemplateParamLists)
6560       NewVD->setTemplateParameterListsInfo(
6561           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
6562 
6563     if (D.getDeclSpec().isConstexprSpecified()) {
6564       NewVD->setConstexpr(true);
6565       // C++1z [dcl.spec.constexpr]p1:
6566       //   A static data member declared with the constexpr specifier is
6567       //   implicitly an inline variable.
6568       if (NewVD->isStaticDataMember() && getLangOpts().CPlusPlus17)
6569         NewVD->setImplicitlyInline();
6570     }
6571   }
6572 
6573   if (D.getDeclSpec().isInlineSpecified()) {
6574     if (!getLangOpts().CPlusPlus) {
6575       Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
6576           << 0;
6577     } else if (CurContext->isFunctionOrMethod()) {
6578       // 'inline' is not allowed on block scope variable declaration.
6579       Diag(D.getDeclSpec().getInlineSpecLoc(),
6580            diag::err_inline_declaration_block_scope) << Name
6581         << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
6582     } else {
6583       Diag(D.getDeclSpec().getInlineSpecLoc(),
6584            getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_inline_variable
6585                                      : diag::ext_inline_variable);
6586       NewVD->setInlineSpecified();
6587     }
6588   }
6589 
6590   // Set the lexical context. If the declarator has a C++ scope specifier, the
6591   // lexical context will be different from the semantic context.
6592   NewVD->setLexicalDeclContext(CurContext);
6593   if (NewTemplate)
6594     NewTemplate->setLexicalDeclContext(CurContext);
6595 
6596   if (IsLocalExternDecl) {
6597     if (D.isDecompositionDeclarator())
6598       for (auto *B : Bindings)
6599         B->setLocalExternDecl();
6600     else
6601       NewVD->setLocalExternDecl();
6602   }
6603 
6604   bool EmitTLSUnsupportedError = false;
6605   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
6606     // C++11 [dcl.stc]p4:
6607     //   When thread_local is applied to a variable of block scope the
6608     //   storage-class-specifier static is implied if it does not appear
6609     //   explicitly.
6610     // Core issue: 'static' is not implied if the variable is declared
6611     //   'extern'.
6612     if (NewVD->hasLocalStorage() &&
6613         (SCSpec != DeclSpec::SCS_unspecified ||
6614          TSCS != DeclSpec::TSCS_thread_local ||
6615          !DC->isFunctionOrMethod()))
6616       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6617            diag::err_thread_non_global)
6618         << DeclSpec::getSpecifierName(TSCS);
6619     else if (!Context.getTargetInfo().isTLSSupported()) {
6620       if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6621         // Postpone error emission until we've collected attributes required to
6622         // figure out whether it's a host or device variable and whether the
6623         // error should be ignored.
6624         EmitTLSUnsupportedError = true;
6625         // We still need to mark the variable as TLS so it shows up in AST with
6626         // proper storage class for other tools to use even if we're not going
6627         // to emit any code for it.
6628         NewVD->setTSCSpec(TSCS);
6629       } else
6630         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6631              diag::err_thread_unsupported);
6632     } else
6633       NewVD->setTSCSpec(TSCS);
6634   }
6635 
6636   // C99 6.7.4p3
6637   //   An inline definition of a function with external linkage shall
6638   //   not contain a definition of a modifiable object with static or
6639   //   thread storage duration...
6640   // We only apply this when the function is required to be defined
6641   // elsewhere, i.e. when the function is not 'extern inline'.  Note
6642   // that a local variable with thread storage duration still has to
6643   // be marked 'static'.  Also note that it's possible to get these
6644   // semantics in C++ using __attribute__((gnu_inline)).
6645   if (SC == SC_Static && S->getFnParent() != nullptr &&
6646       !NewVD->getType().isConstQualified()) {
6647     FunctionDecl *CurFD = getCurFunctionDecl();
6648     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
6649       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6650            diag::warn_static_local_in_extern_inline);
6651       MaybeSuggestAddingStaticToDecl(CurFD);
6652     }
6653   }
6654 
6655   if (D.getDeclSpec().isModulePrivateSpecified()) {
6656     if (IsVariableTemplateSpecialization)
6657       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6658           << (IsPartialSpecialization ? 1 : 0)
6659           << FixItHint::CreateRemoval(
6660                  D.getDeclSpec().getModulePrivateSpecLoc());
6661     else if (IsMemberSpecialization)
6662       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6663         << 2
6664         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6665     else if (NewVD->hasLocalStorage())
6666       Diag(NewVD->getLocation(), diag::err_module_private_local)
6667         << 0 << NewVD->getDeclName()
6668         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
6669         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6670     else {
6671       NewVD->setModulePrivate();
6672       if (NewTemplate)
6673         NewTemplate->setModulePrivate();
6674       for (auto *B : Bindings)
6675         B->setModulePrivate();
6676     }
6677   }
6678 
6679   // Handle attributes prior to checking for duplicates in MergeVarDecl
6680   ProcessDeclAttributes(S, NewVD, D);
6681 
6682   if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) {
6683     if (EmitTLSUnsupportedError &&
6684         ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) ||
6685          (getLangOpts().OpenMPIsDevice &&
6686           NewVD->hasAttr<OMPDeclareTargetDeclAttr>())))
6687       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6688            diag::err_thread_unsupported);
6689     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
6690     // storage [duration]."
6691     if (SC == SC_None && S->getFnParent() != nullptr &&
6692         (NewVD->hasAttr<CUDASharedAttr>() ||
6693          NewVD->hasAttr<CUDAConstantAttr>())) {
6694       NewVD->setStorageClass(SC_Static);
6695     }
6696   }
6697 
6698   // Ensure that dllimport globals without explicit storage class are treated as
6699   // extern. The storage class is set above using parsed attributes. Now we can
6700   // check the VarDecl itself.
6701   assert(!NewVD->hasAttr<DLLImportAttr>() ||
6702          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
6703          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
6704 
6705   // In auto-retain/release, infer strong retension for variables of
6706   // retainable type.
6707   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
6708     NewVD->setInvalidDecl();
6709 
6710   // Handle GNU asm-label extension (encoded as an attribute).
6711   if (Expr *E = (Expr*)D.getAsmLabel()) {
6712     // The parser guarantees this is a string.
6713     StringLiteral *SE = cast<StringLiteral>(E);
6714     StringRef Label = SE->getString();
6715     if (S->getFnParent() != nullptr) {
6716       switch (SC) {
6717       case SC_None:
6718       case SC_Auto:
6719         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
6720         break;
6721       case SC_Register:
6722         // Local Named register
6723         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
6724             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
6725           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6726         break;
6727       case SC_Static:
6728       case SC_Extern:
6729       case SC_PrivateExtern:
6730         break;
6731       }
6732     } else if (SC == SC_Register) {
6733       // Global Named register
6734       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
6735         const auto &TI = Context.getTargetInfo();
6736         bool HasSizeMismatch;
6737 
6738         if (!TI.isValidGCCRegisterName(Label))
6739           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6740         else if (!TI.validateGlobalRegisterVariable(Label,
6741                                                     Context.getTypeSize(R),
6742                                                     HasSizeMismatch))
6743           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
6744         else if (HasSizeMismatch)
6745           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
6746       }
6747 
6748       if (!R->isIntegralType(Context) && !R->isPointerType()) {
6749         Diag(D.getLocStart(), diag::err_asm_bad_register_type);
6750         NewVD->setInvalidDecl(true);
6751       }
6752     }
6753 
6754     NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
6755                                                 Context, Label, 0));
6756   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6757     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6758       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
6759     if (I != ExtnameUndeclaredIdentifiers.end()) {
6760       if (isDeclExternC(NewVD)) {
6761         NewVD->addAttr(I->second);
6762         ExtnameUndeclaredIdentifiers.erase(I);
6763       } else
6764         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
6765             << /*Variable*/1 << NewVD;
6766     }
6767   }
6768 
6769   // Find the shadowed declaration before filtering for scope.
6770   NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty()
6771                                 ? getShadowedDeclaration(NewVD, Previous)
6772                                 : nullptr;
6773 
6774   // Don't consider existing declarations that are in a different
6775   // scope and are out-of-semantic-context declarations (if the new
6776   // declaration has linkage).
6777   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
6778                        D.getCXXScopeSpec().isNotEmpty() ||
6779                        IsMemberSpecialization ||
6780                        IsVariableTemplateSpecialization);
6781 
6782   // Check whether the previous declaration is in the same block scope. This
6783   // affects whether we merge types with it, per C++11 [dcl.array]p3.
6784   if (getLangOpts().CPlusPlus &&
6785       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
6786     NewVD->setPreviousDeclInSameBlockScope(
6787         Previous.isSingleResult() && !Previous.isShadowed() &&
6788         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
6789 
6790   if (!getLangOpts().CPlusPlus) {
6791     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6792   } else {
6793     // If this is an explicit specialization of a static data member, check it.
6794     if (IsMemberSpecialization && !NewVD->isInvalidDecl() &&
6795         CheckMemberSpecialization(NewVD, Previous))
6796       NewVD->setInvalidDecl();
6797 
6798     // Merge the decl with the existing one if appropriate.
6799     if (!Previous.empty()) {
6800       if (Previous.isSingleResult() &&
6801           isa<FieldDecl>(Previous.getFoundDecl()) &&
6802           D.getCXXScopeSpec().isSet()) {
6803         // The user tried to define a non-static data member
6804         // out-of-line (C++ [dcl.meaning]p1).
6805         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
6806           << D.getCXXScopeSpec().getRange();
6807         Previous.clear();
6808         NewVD->setInvalidDecl();
6809       }
6810     } else if (D.getCXXScopeSpec().isSet()) {
6811       // No previous declaration in the qualifying scope.
6812       Diag(D.getIdentifierLoc(), diag::err_no_member)
6813         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
6814         << D.getCXXScopeSpec().getRange();
6815       NewVD->setInvalidDecl();
6816     }
6817 
6818     if (!IsVariableTemplateSpecialization)
6819       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6820 
6821     if (NewTemplate) {
6822       VarTemplateDecl *PrevVarTemplate =
6823           NewVD->getPreviousDecl()
6824               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
6825               : nullptr;
6826 
6827       // Check the template parameter list of this declaration, possibly
6828       // merging in the template parameter list from the previous variable
6829       // template declaration.
6830       if (CheckTemplateParameterList(
6831               TemplateParams,
6832               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
6833                               : nullptr,
6834               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
6835                DC->isDependentContext())
6836                   ? TPC_ClassTemplateMember
6837                   : TPC_VarTemplate))
6838         NewVD->setInvalidDecl();
6839 
6840       // If we are providing an explicit specialization of a static variable
6841       // template, make a note of that.
6842       if (PrevVarTemplate &&
6843           PrevVarTemplate->getInstantiatedFromMemberTemplate())
6844         PrevVarTemplate->setMemberSpecialization();
6845     }
6846   }
6847 
6848   // Diagnose shadowed variables iff this isn't a redeclaration.
6849   if (ShadowedDecl && !D.isRedeclaration())
6850     CheckShadow(NewVD, ShadowedDecl, Previous);
6851 
6852   ProcessPragmaWeak(S, NewVD);
6853 
6854   // If this is the first declaration of an extern C variable, update
6855   // the map of such variables.
6856   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
6857       isIncompleteDeclExternC(*this, NewVD))
6858     RegisterLocallyScopedExternCDecl(NewVD, S);
6859 
6860   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
6861     Decl *ManglingContextDecl;
6862     if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
6863             NewVD->getDeclContext(), ManglingContextDecl)) {
6864       Context.setManglingNumber(
6865           NewVD, MCtx->getManglingNumber(
6866                      NewVD, getMSManglingNumber(getLangOpts(), S)));
6867       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
6868     }
6869   }
6870 
6871   // Special handling of variable named 'main'.
6872   if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") &&
6873       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
6874       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
6875 
6876     // C++ [basic.start.main]p3
6877     // A program that declares a variable main at global scope is ill-formed.
6878     if (getLangOpts().CPlusPlus)
6879       Diag(D.getLocStart(), diag::err_main_global_variable);
6880 
6881     // In C, and external-linkage variable named main results in undefined
6882     // behavior.
6883     else if (NewVD->hasExternalFormalLinkage())
6884       Diag(D.getLocStart(), diag::warn_main_redefined);
6885   }
6886 
6887   if (D.isRedeclaration() && !Previous.empty()) {
6888     NamedDecl *Prev = Previous.getRepresentativeDecl();
6889     checkDLLAttributeRedeclaration(*this, Prev, NewVD, IsMemberSpecialization,
6890                                    D.isFunctionDefinition());
6891   }
6892 
6893   if (NewTemplate) {
6894     if (NewVD->isInvalidDecl())
6895       NewTemplate->setInvalidDecl();
6896     ActOnDocumentableDecl(NewTemplate);
6897     return NewTemplate;
6898   }
6899 
6900   if (IsMemberSpecialization && !NewVD->isInvalidDecl())
6901     CompleteMemberSpecialization(NewVD, Previous);
6902 
6903   return NewVD;
6904 }
6905 
6906 /// Enum describing the %select options in diag::warn_decl_shadow.
6907 enum ShadowedDeclKind {
6908   SDK_Local,
6909   SDK_Global,
6910   SDK_StaticMember,
6911   SDK_Field,
6912   SDK_Typedef,
6913   SDK_Using
6914 };
6915 
6916 /// Determine what kind of declaration we're shadowing.
6917 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl,
6918                                                 const DeclContext *OldDC) {
6919   if (isa<TypeAliasDecl>(ShadowedDecl))
6920     return SDK_Using;
6921   else if (isa<TypedefDecl>(ShadowedDecl))
6922     return SDK_Typedef;
6923   else if (isa<RecordDecl>(OldDC))
6924     return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember;
6925 
6926   return OldDC->isFileContext() ? SDK_Global : SDK_Local;
6927 }
6928 
6929 /// Return the location of the capture if the given lambda captures the given
6930 /// variable \p VD, or an invalid source location otherwise.
6931 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI,
6932                                          const VarDecl *VD) {
6933   for (const Capture &Capture : LSI->Captures) {
6934     if (Capture.isVariableCapture() && Capture.getVariable() == VD)
6935       return Capture.getLocation();
6936   }
6937   return SourceLocation();
6938 }
6939 
6940 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags,
6941                                      const LookupResult &R) {
6942   // Only diagnose if we're shadowing an unambiguous field or variable.
6943   if (R.getResultKind() != LookupResult::Found)
6944     return false;
6945 
6946   // Return false if warning is ignored.
6947   return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc());
6948 }
6949 
6950 /// \brief Return the declaration shadowed by the given variable \p D, or null
6951 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
6952 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D,
6953                                         const LookupResult &R) {
6954   if (!shouldWarnIfShadowedDecl(Diags, R))
6955     return nullptr;
6956 
6957   // Don't diagnose declarations at file scope.
6958   if (D->hasGlobalStorage())
6959     return nullptr;
6960 
6961   NamedDecl *ShadowedDecl = R.getFoundDecl();
6962   return isa<VarDecl>(ShadowedDecl) || isa<FieldDecl>(ShadowedDecl)
6963              ? ShadowedDecl
6964              : nullptr;
6965 }
6966 
6967 /// \brief Return the declaration shadowed by the given typedef \p D, or null
6968 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
6969 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D,
6970                                         const LookupResult &R) {
6971   // Don't warn if typedef declaration is part of a class
6972   if (D->getDeclContext()->isRecord())
6973     return nullptr;
6974 
6975   if (!shouldWarnIfShadowedDecl(Diags, R))
6976     return nullptr;
6977 
6978   NamedDecl *ShadowedDecl = R.getFoundDecl();
6979   return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr;
6980 }
6981 
6982 /// \brief Diagnose variable or built-in function shadowing.  Implements
6983 /// -Wshadow.
6984 ///
6985 /// This method is called whenever a VarDecl is added to a "useful"
6986 /// scope.
6987 ///
6988 /// \param ShadowedDecl the declaration that is shadowed by the given variable
6989 /// \param R the lookup of the name
6990 ///
6991 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
6992                        const LookupResult &R) {
6993   DeclContext *NewDC = D->getDeclContext();
6994 
6995   if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) {
6996     // Fields are not shadowed by variables in C++ static methods.
6997     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
6998       if (MD->isStatic())
6999         return;
7000 
7001     // Fields shadowed by constructor parameters are a special case. Usually
7002     // the constructor initializes the field with the parameter.
7003     if (isa<CXXConstructorDecl>(NewDC))
7004       if (const auto PVD = dyn_cast<ParmVarDecl>(D)) {
7005         // Remember that this was shadowed so we can either warn about its
7006         // modification or its existence depending on warning settings.
7007         ShadowingDecls.insert({PVD->getCanonicalDecl(), FD});
7008         return;
7009       }
7010   }
7011 
7012   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
7013     if (shadowedVar->isExternC()) {
7014       // For shadowing external vars, make sure that we point to the global
7015       // declaration, not a locally scoped extern declaration.
7016       for (auto I : shadowedVar->redecls())
7017         if (I->isFileVarDecl()) {
7018           ShadowedDecl = I;
7019           break;
7020         }
7021     }
7022 
7023   DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext();
7024 
7025   unsigned WarningDiag = diag::warn_decl_shadow;
7026   SourceLocation CaptureLoc;
7027   if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC &&
7028       isa<CXXMethodDecl>(NewDC)) {
7029     if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) {
7030       if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) {
7031         if (RD->getLambdaCaptureDefault() == LCD_None) {
7032           // Try to avoid warnings for lambdas with an explicit capture list.
7033           const auto *LSI = cast<LambdaScopeInfo>(getCurFunction());
7034           // Warn only when the lambda captures the shadowed decl explicitly.
7035           CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl));
7036           if (CaptureLoc.isInvalid())
7037             WarningDiag = diag::warn_decl_shadow_uncaptured_local;
7038         } else {
7039           // Remember that this was shadowed so we can avoid the warning if the
7040           // shadowed decl isn't captured and the warning settings allow it.
7041           cast<LambdaScopeInfo>(getCurFunction())
7042               ->ShadowingDecls.push_back(
7043                   {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)});
7044           return;
7045         }
7046       }
7047 
7048       if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) {
7049         // A variable can't shadow a local variable in an enclosing scope, if
7050         // they are separated by a non-capturing declaration context.
7051         for (DeclContext *ParentDC = NewDC;
7052              ParentDC && !ParentDC->Equals(OldDC);
7053              ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) {
7054           // Only block literals, captured statements, and lambda expressions
7055           // can capture; other scopes don't.
7056           if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) &&
7057               !isLambdaCallOperator(ParentDC)) {
7058             return;
7059           }
7060         }
7061       }
7062     }
7063   }
7064 
7065   // Only warn about certain kinds of shadowing for class members.
7066   if (NewDC && NewDC->isRecord()) {
7067     // In particular, don't warn about shadowing non-class members.
7068     if (!OldDC->isRecord())
7069       return;
7070 
7071     // TODO: should we warn about static data members shadowing
7072     // static data members from base classes?
7073 
7074     // TODO: don't diagnose for inaccessible shadowed members.
7075     // This is hard to do perfectly because we might friend the
7076     // shadowing context, but that's just a false negative.
7077   }
7078 
7079 
7080   DeclarationName Name = R.getLookupName();
7081 
7082   // Emit warning and note.
7083   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
7084     return;
7085   ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC);
7086   Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC;
7087   if (!CaptureLoc.isInvalid())
7088     Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7089         << Name << /*explicitly*/ 1;
7090   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7091 }
7092 
7093 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD
7094 /// when these variables are captured by the lambda.
7095 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) {
7096   for (const auto &Shadow : LSI->ShadowingDecls) {
7097     const VarDecl *ShadowedDecl = Shadow.ShadowedDecl;
7098     // Try to avoid the warning when the shadowed decl isn't captured.
7099     SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl);
7100     const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7101     Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid()
7102                                        ? diag::warn_decl_shadow_uncaptured_local
7103                                        : diag::warn_decl_shadow)
7104         << Shadow.VD->getDeclName()
7105         << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC;
7106     if (!CaptureLoc.isInvalid())
7107       Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7108           << Shadow.VD->getDeclName() << /*explicitly*/ 0;
7109     Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7110   }
7111 }
7112 
7113 /// \brief Check -Wshadow without the advantage of a previous lookup.
7114 void Sema::CheckShadow(Scope *S, VarDecl *D) {
7115   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
7116     return;
7117 
7118   LookupResult R(*this, D->getDeclName(), D->getLocation(),
7119                  Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration);
7120   LookupName(R, S);
7121   if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R))
7122     CheckShadow(D, ShadowedDecl, R);
7123 }
7124 
7125 /// Check if 'E', which is an expression that is about to be modified, refers
7126 /// to a constructor parameter that shadows a field.
7127 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) {
7128   // Quickly ignore expressions that can't be shadowing ctor parameters.
7129   if (!getLangOpts().CPlusPlus || ShadowingDecls.empty())
7130     return;
7131   E = E->IgnoreParenImpCasts();
7132   auto *DRE = dyn_cast<DeclRefExpr>(E);
7133   if (!DRE)
7134     return;
7135   const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
7136   auto I = ShadowingDecls.find(D);
7137   if (I == ShadowingDecls.end())
7138     return;
7139   const NamedDecl *ShadowedDecl = I->second;
7140   const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7141   Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC;
7142   Diag(D->getLocation(), diag::note_var_declared_here) << D;
7143   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7144 
7145   // Avoid issuing multiple warnings about the same decl.
7146   ShadowingDecls.erase(I);
7147 }
7148 
7149 /// Check for conflict between this global or extern "C" declaration and
7150 /// previous global or extern "C" declarations. This is only used in C++.
7151 template<typename T>
7152 static bool checkGlobalOrExternCConflict(
7153     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
7154   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
7155   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
7156 
7157   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
7158     // The common case: this global doesn't conflict with any extern "C"
7159     // declaration.
7160     return false;
7161   }
7162 
7163   if (Prev) {
7164     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
7165       // Both the old and new declarations have C language linkage. This is a
7166       // redeclaration.
7167       Previous.clear();
7168       Previous.addDecl(Prev);
7169       return true;
7170     }
7171 
7172     // This is a global, non-extern "C" declaration, and there is a previous
7173     // non-global extern "C" declaration. Diagnose if this is a variable
7174     // declaration.
7175     if (!isa<VarDecl>(ND))
7176       return false;
7177   } else {
7178     // The declaration is extern "C". Check for any declaration in the
7179     // translation unit which might conflict.
7180     if (IsGlobal) {
7181       // We have already performed the lookup into the translation unit.
7182       IsGlobal = false;
7183       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7184            I != E; ++I) {
7185         if (isa<VarDecl>(*I)) {
7186           Prev = *I;
7187           break;
7188         }
7189       }
7190     } else {
7191       DeclContext::lookup_result R =
7192           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
7193       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
7194            I != E; ++I) {
7195         if (isa<VarDecl>(*I)) {
7196           Prev = *I;
7197           break;
7198         }
7199         // FIXME: If we have any other entity with this name in global scope,
7200         // the declaration is ill-formed, but that is a defect: it breaks the
7201         // 'stat' hack, for instance. Only variables can have mangled name
7202         // clashes with extern "C" declarations, so only they deserve a
7203         // diagnostic.
7204       }
7205     }
7206 
7207     if (!Prev)
7208       return false;
7209   }
7210 
7211   // Use the first declaration's location to ensure we point at something which
7212   // is lexically inside an extern "C" linkage-spec.
7213   assert(Prev && "should have found a previous declaration to diagnose");
7214   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
7215     Prev = FD->getFirstDecl();
7216   else
7217     Prev = cast<VarDecl>(Prev)->getFirstDecl();
7218 
7219   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
7220     << IsGlobal << ND;
7221   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
7222     << IsGlobal;
7223   return false;
7224 }
7225 
7226 /// Apply special rules for handling extern "C" declarations. Returns \c true
7227 /// if we have found that this is a redeclaration of some prior entity.
7228 ///
7229 /// Per C++ [dcl.link]p6:
7230 ///   Two declarations [for a function or variable] with C language linkage
7231 ///   with the same name that appear in different scopes refer to the same
7232 ///   [entity]. An entity with C language linkage shall not be declared with
7233 ///   the same name as an entity in global scope.
7234 template<typename T>
7235 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
7236                                                   LookupResult &Previous) {
7237   if (!S.getLangOpts().CPlusPlus) {
7238     // In C, when declaring a global variable, look for a corresponding 'extern'
7239     // variable declared in function scope. We don't need this in C++, because
7240     // we find local extern decls in the surrounding file-scope DeclContext.
7241     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
7242       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
7243         Previous.clear();
7244         Previous.addDecl(Prev);
7245         return true;
7246       }
7247     }
7248     return false;
7249   }
7250 
7251   // A declaration in the translation unit can conflict with an extern "C"
7252   // declaration.
7253   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
7254     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
7255 
7256   // An extern "C" declaration can conflict with a declaration in the
7257   // translation unit or can be a redeclaration of an extern "C" declaration
7258   // in another scope.
7259   if (isIncompleteDeclExternC(S,ND))
7260     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
7261 
7262   // Neither global nor extern "C": nothing to do.
7263   return false;
7264 }
7265 
7266 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
7267   // If the decl is already known invalid, don't check it.
7268   if (NewVD->isInvalidDecl())
7269     return;
7270 
7271   TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
7272   QualType T = TInfo->getType();
7273 
7274   // Defer checking an 'auto' type until its initializer is attached.
7275   if (T->isUndeducedType())
7276     return;
7277 
7278   if (NewVD->hasAttrs())
7279     CheckAlignasUnderalignment(NewVD);
7280 
7281   if (T->isObjCObjectType()) {
7282     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
7283       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
7284     T = Context.getObjCObjectPointerType(T);
7285     NewVD->setType(T);
7286   }
7287 
7288   // Emit an error if an address space was applied to decl with local storage.
7289   // This includes arrays of objects with address space qualifiers, but not
7290   // automatic variables that point to other address spaces.
7291   // ISO/IEC TR 18037 S5.1.2
7292   if (!getLangOpts().OpenCL && NewVD->hasLocalStorage() &&
7293       T.getAddressSpace() != LangAS::Default) {
7294     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0;
7295     NewVD->setInvalidDecl();
7296     return;
7297   }
7298 
7299   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
7300   // scope.
7301   if (getLangOpts().OpenCLVersion == 120 &&
7302       !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") &&
7303       NewVD->isStaticLocal()) {
7304     Diag(NewVD->getLocation(), diag::err_static_function_scope);
7305     NewVD->setInvalidDecl();
7306     return;
7307   }
7308 
7309   if (getLangOpts().OpenCL) {
7310     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
7311     if (NewVD->hasAttr<BlocksAttr>()) {
7312       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
7313       return;
7314     }
7315 
7316     if (T->isBlockPointerType()) {
7317       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
7318       // can't use 'extern' storage class.
7319       if (!T.isConstQualified()) {
7320         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
7321             << 0 /*const*/;
7322         NewVD->setInvalidDecl();
7323         return;
7324       }
7325       if (NewVD->hasExternalStorage()) {
7326         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
7327         NewVD->setInvalidDecl();
7328         return;
7329       }
7330     }
7331     // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
7332     // __constant address space.
7333     // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static
7334     // variables inside a function can also be declared in the global
7335     // address space.
7336     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
7337         NewVD->hasExternalStorage()) {
7338       if (!T->isSamplerT() &&
7339           !(T.getAddressSpace() == LangAS::opencl_constant ||
7340             (T.getAddressSpace() == LangAS::opencl_global &&
7341              getLangOpts().OpenCLVersion == 200))) {
7342         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
7343         if (getLangOpts().OpenCLVersion == 200)
7344           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7345               << Scope << "global or constant";
7346         else
7347           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7348               << Scope << "constant";
7349         NewVD->setInvalidDecl();
7350         return;
7351       }
7352     } else {
7353       if (T.getAddressSpace() == LangAS::opencl_global) {
7354         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7355             << 1 /*is any function*/ << "global";
7356         NewVD->setInvalidDecl();
7357         return;
7358       }
7359       if (T.getAddressSpace() == LangAS::opencl_constant ||
7360           T.getAddressSpace() == LangAS::opencl_local) {
7361         FunctionDecl *FD = getCurFunctionDecl();
7362         // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables
7363         // in functions.
7364         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
7365           if (T.getAddressSpace() == LangAS::opencl_constant)
7366             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7367                 << 0 /*non-kernel only*/ << "constant";
7368           else
7369             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7370                 << 0 /*non-kernel only*/ << "local";
7371           NewVD->setInvalidDecl();
7372           return;
7373         }
7374         // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be
7375         // in the outermost scope of a kernel function.
7376         if (FD && FD->hasAttr<OpenCLKernelAttr>()) {
7377           if (!getCurScope()->isFunctionScope()) {
7378             if (T.getAddressSpace() == LangAS::opencl_constant)
7379               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7380                   << "constant";
7381             else
7382               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7383                   << "local";
7384             NewVD->setInvalidDecl();
7385             return;
7386           }
7387         }
7388       } else if (T.getAddressSpace() != LangAS::opencl_private) {
7389         // Do not allow other address spaces on automatic variable.
7390         Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1;
7391         NewVD->setInvalidDecl();
7392         return;
7393       }
7394     }
7395   }
7396 
7397   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
7398       && !NewVD->hasAttr<BlocksAttr>()) {
7399     if (getLangOpts().getGC() != LangOptions::NonGC)
7400       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
7401     else {
7402       assert(!getLangOpts().ObjCAutoRefCount);
7403       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
7404     }
7405   }
7406 
7407   bool isVM = T->isVariablyModifiedType();
7408   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
7409       NewVD->hasAttr<BlocksAttr>())
7410     setFunctionHasBranchProtectedScope();
7411 
7412   if ((isVM && NewVD->hasLinkage()) ||
7413       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
7414     bool SizeIsNegative;
7415     llvm::APSInt Oversized;
7416     TypeSourceInfo *FixedTInfo =
7417       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
7418                                                     SizeIsNegative, Oversized);
7419     if (!FixedTInfo && T->isVariableArrayType()) {
7420       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
7421       // FIXME: This won't give the correct result for
7422       // int a[10][n];
7423       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
7424 
7425       if (NewVD->isFileVarDecl())
7426         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
7427         << SizeRange;
7428       else if (NewVD->isStaticLocal())
7429         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
7430         << SizeRange;
7431       else
7432         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
7433         << SizeRange;
7434       NewVD->setInvalidDecl();
7435       return;
7436     }
7437 
7438     if (!FixedTInfo) {
7439       if (NewVD->isFileVarDecl())
7440         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
7441       else
7442         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
7443       NewVD->setInvalidDecl();
7444       return;
7445     }
7446 
7447     Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
7448     NewVD->setType(FixedTInfo->getType());
7449     NewVD->setTypeSourceInfo(FixedTInfo);
7450   }
7451 
7452   if (T->isVoidType()) {
7453     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
7454     //                    of objects and functions.
7455     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
7456       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
7457         << T;
7458       NewVD->setInvalidDecl();
7459       return;
7460     }
7461   }
7462 
7463   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
7464     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
7465     NewVD->setInvalidDecl();
7466     return;
7467   }
7468 
7469   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
7470     Diag(NewVD->getLocation(), diag::err_block_on_vm);
7471     NewVD->setInvalidDecl();
7472     return;
7473   }
7474 
7475   if (NewVD->isConstexpr() && !T->isDependentType() &&
7476       RequireLiteralType(NewVD->getLocation(), T,
7477                          diag::err_constexpr_var_non_literal)) {
7478     NewVD->setInvalidDecl();
7479     return;
7480   }
7481 }
7482 
7483 /// \brief Perform semantic checking on a newly-created variable
7484 /// declaration.
7485 ///
7486 /// This routine performs all of the type-checking required for a
7487 /// variable declaration once it has been built. It is used both to
7488 /// check variables after they have been parsed and their declarators
7489 /// have been translated into a declaration, and to check variables
7490 /// that have been instantiated from a template.
7491 ///
7492 /// Sets NewVD->isInvalidDecl() if an error was encountered.
7493 ///
7494 /// Returns true if the variable declaration is a redeclaration.
7495 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
7496   CheckVariableDeclarationType(NewVD);
7497 
7498   // If the decl is already known invalid, don't check it.
7499   if (NewVD->isInvalidDecl())
7500     return false;
7501 
7502   // If we did not find anything by this name, look for a non-visible
7503   // extern "C" declaration with the same name.
7504   if (Previous.empty() &&
7505       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
7506     Previous.setShadowed();
7507 
7508   if (!Previous.empty()) {
7509     MergeVarDecl(NewVD, Previous);
7510     return true;
7511   }
7512   return false;
7513 }
7514 
7515 namespace {
7516 struct FindOverriddenMethod {
7517   Sema *S;
7518   CXXMethodDecl *Method;
7519 
7520   /// Member lookup function that determines whether a given C++
7521   /// method overrides a method in a base class, to be used with
7522   /// CXXRecordDecl::lookupInBases().
7523   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
7524     RecordDecl *BaseRecord =
7525         Specifier->getType()->getAs<RecordType>()->getDecl();
7526 
7527     DeclarationName Name = Method->getDeclName();
7528 
7529     // FIXME: Do we care about other names here too?
7530     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7531       // We really want to find the base class destructor here.
7532       QualType T = S->Context.getTypeDeclType(BaseRecord);
7533       CanQualType CT = S->Context.getCanonicalType(T);
7534 
7535       Name = S->Context.DeclarationNames.getCXXDestructorName(CT);
7536     }
7537 
7538     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
7539          Path.Decls = Path.Decls.slice(1)) {
7540       NamedDecl *D = Path.Decls.front();
7541       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
7542         if (MD->isVirtual() && !S->IsOverload(Method, MD, false))
7543           return true;
7544       }
7545     }
7546 
7547     return false;
7548   }
7549 };
7550 
7551 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
7552 } // end anonymous namespace
7553 
7554 /// \brief Report an error regarding overriding, along with any relevant
7555 /// overriden methods.
7556 ///
7557 /// \param DiagID the primary error to report.
7558 /// \param MD the overriding method.
7559 /// \param OEK which overrides to include as notes.
7560 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
7561                             OverrideErrorKind OEK = OEK_All) {
7562   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
7563   for (const CXXMethodDecl *O : MD->overridden_methods()) {
7564     // This check (& the OEK parameter) could be replaced by a predicate, but
7565     // without lambdas that would be overkill. This is still nicer than writing
7566     // out the diag loop 3 times.
7567     if ((OEK == OEK_All) ||
7568         (OEK == OEK_NonDeleted && !O->isDeleted()) ||
7569         (OEK == OEK_Deleted && O->isDeleted()))
7570       S.Diag(O->getLocation(), diag::note_overridden_virtual_function);
7571   }
7572 }
7573 
7574 /// AddOverriddenMethods - See if a method overrides any in the base classes,
7575 /// and if so, check that it's a valid override and remember it.
7576 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
7577   // Look for methods in base classes that this method might override.
7578   CXXBasePaths Paths;
7579   FindOverriddenMethod FOM;
7580   FOM.Method = MD;
7581   FOM.S = this;
7582   bool hasDeletedOverridenMethods = false;
7583   bool hasNonDeletedOverridenMethods = false;
7584   bool AddedAny = false;
7585   if (DC->lookupInBases(FOM, Paths)) {
7586     for (auto *I : Paths.found_decls()) {
7587       if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
7588         MD->addOverriddenMethod(OldMD->getCanonicalDecl());
7589         if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
7590             !CheckOverridingFunctionAttributes(MD, OldMD) &&
7591             !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
7592             !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
7593           hasDeletedOverridenMethods |= OldMD->isDeleted();
7594           hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
7595           AddedAny = true;
7596         }
7597       }
7598     }
7599   }
7600 
7601   if (hasDeletedOverridenMethods && !MD->isDeleted()) {
7602     ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
7603   }
7604   if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
7605     ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
7606   }
7607 
7608   return AddedAny;
7609 }
7610 
7611 namespace {
7612   // Struct for holding all of the extra arguments needed by
7613   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
7614   struct ActOnFDArgs {
7615     Scope *S;
7616     Declarator &D;
7617     MultiTemplateParamsArg TemplateParamLists;
7618     bool AddToScope;
7619   };
7620 } // end anonymous namespace
7621 
7622 namespace {
7623 
7624 // Callback to only accept typo corrections that have a non-zero edit distance.
7625 // Also only accept corrections that have the same parent decl.
7626 class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
7627  public:
7628   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
7629                             CXXRecordDecl *Parent)
7630       : Context(Context), OriginalFD(TypoFD),
7631         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
7632 
7633   bool ValidateCandidate(const TypoCorrection &candidate) override {
7634     if (candidate.getEditDistance() == 0)
7635       return false;
7636 
7637     SmallVector<unsigned, 1> MismatchedParams;
7638     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
7639                                           CDeclEnd = candidate.end();
7640          CDecl != CDeclEnd; ++CDecl) {
7641       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7642 
7643       if (FD && !FD->hasBody() &&
7644           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
7645         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
7646           CXXRecordDecl *Parent = MD->getParent();
7647           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
7648             return true;
7649         } else if (!ExpectedParent) {
7650           return true;
7651         }
7652       }
7653     }
7654 
7655     return false;
7656   }
7657 
7658  private:
7659   ASTContext &Context;
7660   FunctionDecl *OriginalFD;
7661   CXXRecordDecl *ExpectedParent;
7662 };
7663 
7664 } // end anonymous namespace
7665 
7666 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) {
7667   TypoCorrectedFunctionDefinitions.insert(F);
7668 }
7669 
7670 /// \brief Generate diagnostics for an invalid function redeclaration.
7671 ///
7672 /// This routine handles generating the diagnostic messages for an invalid
7673 /// function redeclaration, including finding possible similar declarations
7674 /// or performing typo correction if there are no previous declarations with
7675 /// the same name.
7676 ///
7677 /// Returns a NamedDecl iff typo correction was performed and substituting in
7678 /// the new declaration name does not cause new errors.
7679 static NamedDecl *DiagnoseInvalidRedeclaration(
7680     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
7681     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
7682   DeclarationName Name = NewFD->getDeclName();
7683   DeclContext *NewDC = NewFD->getDeclContext();
7684   SmallVector<unsigned, 1> MismatchedParams;
7685   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
7686   TypoCorrection Correction;
7687   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
7688   unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
7689                                    : diag::err_member_decl_does_not_match;
7690   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
7691                     IsLocalFriend ? Sema::LookupLocalFriendName
7692                                   : Sema::LookupOrdinaryName,
7693                     Sema::ForVisibleRedeclaration);
7694 
7695   NewFD->setInvalidDecl();
7696   if (IsLocalFriend)
7697     SemaRef.LookupName(Prev, S);
7698   else
7699     SemaRef.LookupQualifiedName(Prev, NewDC);
7700   assert(!Prev.isAmbiguous() &&
7701          "Cannot have an ambiguity in previous-declaration lookup");
7702   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
7703   if (!Prev.empty()) {
7704     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
7705          Func != FuncEnd; ++Func) {
7706       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
7707       if (FD &&
7708           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7709         // Add 1 to the index so that 0 can mean the mismatch didn't
7710         // involve a parameter
7711         unsigned ParamNum =
7712             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
7713         NearMatches.push_back(std::make_pair(FD, ParamNum));
7714       }
7715     }
7716   // If the qualified name lookup yielded nothing, try typo correction
7717   } else if ((Correction = SemaRef.CorrectTypo(
7718                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
7719                   &ExtraArgs.D.getCXXScopeSpec(),
7720                   llvm::make_unique<DifferentNameValidatorCCC>(
7721                       SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr),
7722                   Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
7723     // Set up everything for the call to ActOnFunctionDeclarator
7724     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
7725                               ExtraArgs.D.getIdentifierLoc());
7726     Previous.clear();
7727     Previous.setLookupName(Correction.getCorrection());
7728     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
7729                                     CDeclEnd = Correction.end();
7730          CDecl != CDeclEnd; ++CDecl) {
7731       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7732       if (FD && !FD->hasBody() &&
7733           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7734         Previous.addDecl(FD);
7735       }
7736     }
7737     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
7738 
7739     NamedDecl *Result;
7740     // Retry building the function declaration with the new previous
7741     // declarations, and with errors suppressed.
7742     {
7743       // Trap errors.
7744       Sema::SFINAETrap Trap(SemaRef);
7745 
7746       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
7747       // pieces need to verify the typo-corrected C++ declaration and hopefully
7748       // eliminate the need for the parameter pack ExtraArgs.
7749       Result = SemaRef.ActOnFunctionDeclarator(
7750           ExtraArgs.S, ExtraArgs.D,
7751           Correction.getCorrectionDecl()->getDeclContext(),
7752           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
7753           ExtraArgs.AddToScope);
7754 
7755       if (Trap.hasErrorOccurred())
7756         Result = nullptr;
7757     }
7758 
7759     if (Result) {
7760       // Determine which correction we picked.
7761       Decl *Canonical = Result->getCanonicalDecl();
7762       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7763            I != E; ++I)
7764         if ((*I)->getCanonicalDecl() == Canonical)
7765           Correction.setCorrectionDecl(*I);
7766 
7767       // Let Sema know about the correction.
7768       SemaRef.MarkTypoCorrectedFunctionDefinition(Result);
7769       SemaRef.diagnoseTypo(
7770           Correction,
7771           SemaRef.PDiag(IsLocalFriend
7772                           ? diag::err_no_matching_local_friend_suggest
7773                           : diag::err_member_decl_does_not_match_suggest)
7774             << Name << NewDC << IsDefinition);
7775       return Result;
7776     }
7777 
7778     // Pretend the typo correction never occurred
7779     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
7780                               ExtraArgs.D.getIdentifierLoc());
7781     ExtraArgs.D.setRedeclaration(wasRedeclaration);
7782     Previous.clear();
7783     Previous.setLookupName(Name);
7784   }
7785 
7786   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
7787       << Name << NewDC << IsDefinition << NewFD->getLocation();
7788 
7789   bool NewFDisConst = false;
7790   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
7791     NewFDisConst = NewMD->isConst();
7792 
7793   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
7794        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
7795        NearMatch != NearMatchEnd; ++NearMatch) {
7796     FunctionDecl *FD = NearMatch->first;
7797     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7798     bool FDisConst = MD && MD->isConst();
7799     bool IsMember = MD || !IsLocalFriend;
7800 
7801     // FIXME: These notes are poorly worded for the local friend case.
7802     if (unsigned Idx = NearMatch->second) {
7803       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
7804       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
7805       if (Loc.isInvalid()) Loc = FD->getLocation();
7806       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
7807                                  : diag::note_local_decl_close_param_match)
7808         << Idx << FDParam->getType()
7809         << NewFD->getParamDecl(Idx - 1)->getType();
7810     } else if (FDisConst != NewFDisConst) {
7811       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
7812           << NewFDisConst << FD->getSourceRange().getEnd();
7813     } else
7814       SemaRef.Diag(FD->getLocation(),
7815                    IsMember ? diag::note_member_def_close_match
7816                             : diag::note_local_decl_close_match);
7817   }
7818   return nullptr;
7819 }
7820 
7821 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
7822   switch (D.getDeclSpec().getStorageClassSpec()) {
7823   default: llvm_unreachable("Unknown storage class!");
7824   case DeclSpec::SCS_auto:
7825   case DeclSpec::SCS_register:
7826   case DeclSpec::SCS_mutable:
7827     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7828                  diag::err_typecheck_sclass_func);
7829     D.getMutableDeclSpec().ClearStorageClassSpecs();
7830     D.setInvalidType();
7831     break;
7832   case DeclSpec::SCS_unspecified: break;
7833   case DeclSpec::SCS_extern:
7834     if (D.getDeclSpec().isExternInLinkageSpec())
7835       return SC_None;
7836     return SC_Extern;
7837   case DeclSpec::SCS_static: {
7838     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
7839       // C99 6.7.1p5:
7840       //   The declaration of an identifier for a function that has
7841       //   block scope shall have no explicit storage-class specifier
7842       //   other than extern
7843       // See also (C++ [dcl.stc]p4).
7844       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7845                    diag::err_static_block_func);
7846       break;
7847     } else
7848       return SC_Static;
7849   }
7850   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
7851   }
7852 
7853   // No explicit storage class has already been returned
7854   return SC_None;
7855 }
7856 
7857 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
7858                                            DeclContext *DC, QualType &R,
7859                                            TypeSourceInfo *TInfo,
7860                                            StorageClass SC,
7861                                            bool &IsVirtualOkay) {
7862   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
7863   DeclarationName Name = NameInfo.getName();
7864 
7865   FunctionDecl *NewFD = nullptr;
7866   bool isInline = D.getDeclSpec().isInlineSpecified();
7867 
7868   if (!SemaRef.getLangOpts().CPlusPlus) {
7869     // Determine whether the function was written with a
7870     // prototype. This true when:
7871     //   - there is a prototype in the declarator, or
7872     //   - the type R of the function is some kind of typedef or other non-
7873     //     attributed reference to a type name (which eventually refers to a
7874     //     function type).
7875     bool HasPrototype =
7876       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
7877       (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType());
7878 
7879     NewFD = FunctionDecl::Create(SemaRef.Context, DC,
7880                                  D.getLocStart(), NameInfo, R,
7881                                  TInfo, SC, isInline,
7882                                  HasPrototype, false);
7883     if (D.isInvalidType())
7884       NewFD->setInvalidDecl();
7885 
7886     return NewFD;
7887   }
7888 
7889   bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7890   bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7891 
7892   // Check that the return type is not an abstract class type.
7893   // For record types, this is done by the AbstractClassUsageDiagnoser once
7894   // the class has been completely parsed.
7895   if (!DC->isRecord() &&
7896       SemaRef.RequireNonAbstractType(
7897           D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
7898           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
7899     D.setInvalidType();
7900 
7901   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
7902     // This is a C++ constructor declaration.
7903     assert(DC->isRecord() &&
7904            "Constructors can only be declared in a member context");
7905 
7906     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
7907     return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7908                                       D.getLocStart(), NameInfo,
7909                                       R, TInfo, isExplicit, isInline,
7910                                       /*isImplicitlyDeclared=*/false,
7911                                       isConstexpr);
7912 
7913   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7914     // This is a C++ destructor declaration.
7915     if (DC->isRecord()) {
7916       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
7917       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
7918       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
7919                                         SemaRef.Context, Record,
7920                                         D.getLocStart(),
7921                                         NameInfo, R, TInfo, isInline,
7922                                         /*isImplicitlyDeclared=*/false);
7923 
7924       // If the class is complete, then we now create the implicit exception
7925       // specification. If the class is incomplete or dependent, we can't do
7926       // it yet.
7927       if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
7928           Record->getDefinition() && !Record->isBeingDefined() &&
7929           R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
7930         SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
7931       }
7932 
7933       IsVirtualOkay = true;
7934       return NewDD;
7935 
7936     } else {
7937       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
7938       D.setInvalidType();
7939 
7940       // Create a FunctionDecl to satisfy the function definition parsing
7941       // code path.
7942       return FunctionDecl::Create(SemaRef.Context, DC,
7943                                   D.getLocStart(),
7944                                   D.getIdentifierLoc(), Name, R, TInfo,
7945                                   SC, isInline,
7946                                   /*hasPrototype=*/true, isConstexpr);
7947     }
7948 
7949   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
7950     if (!DC->isRecord()) {
7951       SemaRef.Diag(D.getIdentifierLoc(),
7952            diag::err_conv_function_not_member);
7953       return nullptr;
7954     }
7955 
7956     SemaRef.CheckConversionDeclarator(D, R, SC);
7957     IsVirtualOkay = true;
7958     return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7959                                      D.getLocStart(), NameInfo,
7960                                      R, TInfo, isInline, isExplicit,
7961                                      isConstexpr, SourceLocation());
7962 
7963   } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) {
7964     SemaRef.CheckDeductionGuideDeclarator(D, R, SC);
7965 
7966     return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getLocStart(),
7967                                          isExplicit, NameInfo, R, TInfo,
7968                                          D.getLocEnd());
7969   } else if (DC->isRecord()) {
7970     // If the name of the function is the same as the name of the record,
7971     // then this must be an invalid constructor that has a return type.
7972     // (The parser checks for a return type and makes the declarator a
7973     // constructor if it has no return type).
7974     if (Name.getAsIdentifierInfo() &&
7975         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
7976       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
7977         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7978         << SourceRange(D.getIdentifierLoc());
7979       return nullptr;
7980     }
7981 
7982     // This is a C++ method declaration.
7983     CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
7984                                                cast<CXXRecordDecl>(DC),
7985                                                D.getLocStart(), NameInfo, R,
7986                                                TInfo, SC, isInline,
7987                                                isConstexpr, SourceLocation());
7988     IsVirtualOkay = !Ret->isStatic();
7989     return Ret;
7990   } else {
7991     bool isFriend =
7992         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
7993     if (!isFriend && SemaRef.CurContext->isRecord())
7994       return nullptr;
7995 
7996     // Determine whether the function was written with a
7997     // prototype. This true when:
7998     //   - we're in C++ (where every function has a prototype),
7999     return FunctionDecl::Create(SemaRef.Context, DC,
8000                                 D.getLocStart(),
8001                                 NameInfo, R, TInfo, SC, isInline,
8002                                 true/*HasPrototype*/, isConstexpr);
8003   }
8004 }
8005 
8006 enum OpenCLParamType {
8007   ValidKernelParam,
8008   PtrPtrKernelParam,
8009   PtrKernelParam,
8010   InvalidAddrSpacePtrKernelParam,
8011   InvalidKernelParam,
8012   RecordKernelParam
8013 };
8014 
8015 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) {
8016   if (PT->isPointerType()) {
8017     QualType PointeeType = PT->getPointeeType();
8018     if (PointeeType->isPointerType())
8019       return PtrPtrKernelParam;
8020     if (PointeeType.getAddressSpace() == LangAS::opencl_generic ||
8021         PointeeType.getAddressSpace() == LangAS::opencl_private ||
8022         PointeeType.getAddressSpace() == LangAS::Default)
8023       return InvalidAddrSpacePtrKernelParam;
8024     return PtrKernelParam;
8025   }
8026 
8027   // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
8028   // be used as builtin types.
8029 
8030   if (PT->isImageType())
8031     return PtrKernelParam;
8032 
8033   if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT())
8034     return InvalidKernelParam;
8035 
8036   // OpenCL extension spec v1.2 s9.5:
8037   // This extension adds support for half scalar and vector types as built-in
8038   // types that can be used for arithmetic operations, conversions etc.
8039   if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType())
8040     return InvalidKernelParam;
8041 
8042   if (PT->isRecordType())
8043     return RecordKernelParam;
8044 
8045   return ValidKernelParam;
8046 }
8047 
8048 static void checkIsValidOpenCLKernelParameter(
8049   Sema &S,
8050   Declarator &D,
8051   ParmVarDecl *Param,
8052   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
8053   QualType PT = Param->getType();
8054 
8055   // Cache the valid types we encounter to avoid rechecking structs that are
8056   // used again
8057   if (ValidTypes.count(PT.getTypePtr()))
8058     return;
8059 
8060   switch (getOpenCLKernelParameterType(S, PT)) {
8061   case PtrPtrKernelParam:
8062     // OpenCL v1.2 s6.9.a:
8063     // A kernel function argument cannot be declared as a
8064     // pointer to a pointer type.
8065     S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
8066     D.setInvalidType();
8067     return;
8068 
8069   case InvalidAddrSpacePtrKernelParam:
8070     // OpenCL v1.0 s6.5:
8071     // __kernel function arguments declared to be a pointer of a type can point
8072     // to one of the following address spaces only : __global, __local or
8073     // __constant.
8074     S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space);
8075     D.setInvalidType();
8076     return;
8077 
8078     // OpenCL v1.2 s6.9.k:
8079     // Arguments to kernel functions in a program cannot be declared with the
8080     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
8081     // uintptr_t or a struct and/or union that contain fields declared to be
8082     // one of these built-in scalar types.
8083 
8084   case InvalidKernelParam:
8085     // OpenCL v1.2 s6.8 n:
8086     // A kernel function argument cannot be declared
8087     // of event_t type.
8088     // Do not diagnose half type since it is diagnosed as invalid argument
8089     // type for any function elsewhere.
8090     if (!PT->isHalfType())
8091       S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8092     D.setInvalidType();
8093     return;
8094 
8095   case PtrKernelParam:
8096   case ValidKernelParam:
8097     ValidTypes.insert(PT.getTypePtr());
8098     return;
8099 
8100   case RecordKernelParam:
8101     break;
8102   }
8103 
8104   // Track nested structs we will inspect
8105   SmallVector<const Decl *, 4> VisitStack;
8106 
8107   // Track where we are in the nested structs. Items will migrate from
8108   // VisitStack to HistoryStack as we do the DFS for bad field.
8109   SmallVector<const FieldDecl *, 4> HistoryStack;
8110   HistoryStack.push_back(nullptr);
8111 
8112   const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
8113   VisitStack.push_back(PD);
8114 
8115   assert(VisitStack.back() && "First decl null?");
8116 
8117   do {
8118     const Decl *Next = VisitStack.pop_back_val();
8119     if (!Next) {
8120       assert(!HistoryStack.empty());
8121       // Found a marker, we have gone up a level
8122       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
8123         ValidTypes.insert(Hist->getType().getTypePtr());
8124 
8125       continue;
8126     }
8127 
8128     // Adds everything except the original parameter declaration (which is not a
8129     // field itself) to the history stack.
8130     const RecordDecl *RD;
8131     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
8132       HistoryStack.push_back(Field);
8133       RD = Field->getType()->castAs<RecordType>()->getDecl();
8134     } else {
8135       RD = cast<RecordDecl>(Next);
8136     }
8137 
8138     // Add a null marker so we know when we've gone back up a level
8139     VisitStack.push_back(nullptr);
8140 
8141     for (const auto *FD : RD->fields()) {
8142       QualType QT = FD->getType();
8143 
8144       if (ValidTypes.count(QT.getTypePtr()))
8145         continue;
8146 
8147       OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT);
8148       if (ParamType == ValidKernelParam)
8149         continue;
8150 
8151       if (ParamType == RecordKernelParam) {
8152         VisitStack.push_back(FD);
8153         continue;
8154       }
8155 
8156       // OpenCL v1.2 s6.9.p:
8157       // Arguments to kernel functions that are declared to be a struct or union
8158       // do not allow OpenCL objects to be passed as elements of the struct or
8159       // union.
8160       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
8161           ParamType == InvalidAddrSpacePtrKernelParam) {
8162         S.Diag(Param->getLocation(),
8163                diag::err_record_with_pointers_kernel_param)
8164           << PT->isUnionType()
8165           << PT;
8166       } else {
8167         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8168       }
8169 
8170       S.Diag(PD->getLocation(), diag::note_within_field_of_type)
8171         << PD->getDeclName();
8172 
8173       // We have an error, now let's go back up through history and show where
8174       // the offending field came from
8175       for (ArrayRef<const FieldDecl *>::const_iterator
8176                I = HistoryStack.begin() + 1,
8177                E = HistoryStack.end();
8178            I != E; ++I) {
8179         const FieldDecl *OuterField = *I;
8180         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
8181           << OuterField->getType();
8182       }
8183 
8184       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
8185         << QT->isPointerType()
8186         << QT;
8187       D.setInvalidType();
8188       return;
8189     }
8190   } while (!VisitStack.empty());
8191 }
8192 
8193 /// Find the DeclContext in which a tag is implicitly declared if we see an
8194 /// elaborated type specifier in the specified context, and lookup finds
8195 /// nothing.
8196 static DeclContext *getTagInjectionContext(DeclContext *DC) {
8197   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
8198     DC = DC->getParent();
8199   return DC;
8200 }
8201 
8202 /// Find the Scope in which a tag is implicitly declared if we see an
8203 /// elaborated type specifier in the specified context, and lookup finds
8204 /// nothing.
8205 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
8206   while (S->isClassScope() ||
8207          (LangOpts.CPlusPlus &&
8208           S->isFunctionPrototypeScope()) ||
8209          ((S->getFlags() & Scope::DeclScope) == 0) ||
8210          (S->getEntity() && S->getEntity()->isTransparentContext()))
8211     S = S->getParent();
8212   return S;
8213 }
8214 
8215 NamedDecl*
8216 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
8217                               TypeSourceInfo *TInfo, LookupResult &Previous,
8218                               MultiTemplateParamsArg TemplateParamLists,
8219                               bool &AddToScope) {
8220   QualType R = TInfo->getType();
8221 
8222   assert(R.getTypePtr()->isFunctionType());
8223 
8224   // TODO: consider using NameInfo for diagnostic.
8225   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8226   DeclarationName Name = NameInfo.getName();
8227   StorageClass SC = getFunctionStorageClass(*this, D);
8228 
8229   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
8230     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
8231          diag::err_invalid_thread)
8232       << DeclSpec::getSpecifierName(TSCS);
8233 
8234   if (D.isFirstDeclarationOfMember())
8235     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
8236                            D.getIdentifierLoc());
8237 
8238   bool isFriend = false;
8239   FunctionTemplateDecl *FunctionTemplate = nullptr;
8240   bool isMemberSpecialization = false;
8241   bool isFunctionTemplateSpecialization = false;
8242 
8243   bool isDependentClassScopeExplicitSpecialization = false;
8244   bool HasExplicitTemplateArgs = false;
8245   TemplateArgumentListInfo TemplateArgs;
8246 
8247   bool isVirtualOkay = false;
8248 
8249   DeclContext *OriginalDC = DC;
8250   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
8251 
8252   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
8253                                               isVirtualOkay);
8254   if (!NewFD) return nullptr;
8255 
8256   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
8257     NewFD->setTopLevelDeclInObjCContainer();
8258 
8259   // Set the lexical context. If this is a function-scope declaration, or has a
8260   // C++ scope specifier, or is the object of a friend declaration, the lexical
8261   // context will be different from the semantic context.
8262   NewFD->setLexicalDeclContext(CurContext);
8263 
8264   if (IsLocalExternDecl)
8265     NewFD->setLocalExternDecl();
8266 
8267   if (getLangOpts().CPlusPlus) {
8268     bool isInline = D.getDeclSpec().isInlineSpecified();
8269     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
8270     bool isExplicit = D.getDeclSpec().isExplicitSpecified();
8271     bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
8272     isFriend = D.getDeclSpec().isFriendSpecified();
8273     if (isFriend && !isInline && D.isFunctionDefinition()) {
8274       // C++ [class.friend]p5
8275       //   A function can be defined in a friend declaration of a
8276       //   class . . . . Such a function is implicitly inline.
8277       NewFD->setImplicitlyInline();
8278     }
8279 
8280     // If this is a method defined in an __interface, and is not a constructor
8281     // or an overloaded operator, then set the pure flag (isVirtual will already
8282     // return true).
8283     if (const CXXRecordDecl *Parent =
8284           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
8285       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
8286         NewFD->setPure(true);
8287 
8288       // C++ [class.union]p2
8289       //   A union can have member functions, but not virtual functions.
8290       if (isVirtual && Parent->isUnion())
8291         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
8292     }
8293 
8294     SetNestedNameSpecifier(NewFD, D);
8295     isMemberSpecialization = false;
8296     isFunctionTemplateSpecialization = false;
8297     if (D.isInvalidType())
8298       NewFD->setInvalidDecl();
8299 
8300     // Match up the template parameter lists with the scope specifier, then
8301     // determine whether we have a template or a template specialization.
8302     bool Invalid = false;
8303     if (TemplateParameterList *TemplateParams =
8304             MatchTemplateParametersToScopeSpecifier(
8305                 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
8306                 D.getCXXScopeSpec(),
8307                 D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
8308                     ? D.getName().TemplateId
8309                     : nullptr,
8310                 TemplateParamLists, isFriend, isMemberSpecialization,
8311                 Invalid)) {
8312       if (TemplateParams->size() > 0) {
8313         // This is a function template
8314 
8315         // Check that we can declare a template here.
8316         if (CheckTemplateDeclScope(S, TemplateParams))
8317           NewFD->setInvalidDecl();
8318 
8319         // A destructor cannot be a template.
8320         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
8321           Diag(NewFD->getLocation(), diag::err_destructor_template);
8322           NewFD->setInvalidDecl();
8323         }
8324 
8325         // If we're adding a template to a dependent context, we may need to
8326         // rebuilding some of the types used within the template parameter list,
8327         // now that we know what the current instantiation is.
8328         if (DC->isDependentContext()) {
8329           ContextRAII SavedContext(*this, DC);
8330           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
8331             Invalid = true;
8332         }
8333 
8334         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
8335                                                         NewFD->getLocation(),
8336                                                         Name, TemplateParams,
8337                                                         NewFD);
8338         FunctionTemplate->setLexicalDeclContext(CurContext);
8339         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
8340 
8341         // For source fidelity, store the other template param lists.
8342         if (TemplateParamLists.size() > 1) {
8343           NewFD->setTemplateParameterListsInfo(Context,
8344                                                TemplateParamLists.drop_back(1));
8345         }
8346       } else {
8347         // This is a function template specialization.
8348         isFunctionTemplateSpecialization = true;
8349         // For source fidelity, store all the template param lists.
8350         if (TemplateParamLists.size() > 0)
8351           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8352 
8353         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
8354         if (isFriend) {
8355           // We want to remove the "template<>", found here.
8356           SourceRange RemoveRange = TemplateParams->getSourceRange();
8357 
8358           // If we remove the template<> and the name is not a
8359           // template-id, we're actually silently creating a problem:
8360           // the friend declaration will refer to an untemplated decl,
8361           // and clearly the user wants a template specialization.  So
8362           // we need to insert '<>' after the name.
8363           SourceLocation InsertLoc;
8364           if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
8365             InsertLoc = D.getName().getSourceRange().getEnd();
8366             InsertLoc = getLocForEndOfToken(InsertLoc);
8367           }
8368 
8369           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
8370             << Name << RemoveRange
8371             << FixItHint::CreateRemoval(RemoveRange)
8372             << FixItHint::CreateInsertion(InsertLoc, "<>");
8373         }
8374       }
8375     }
8376     else {
8377       // All template param lists were matched against the scope specifier:
8378       // this is NOT (an explicit specialization of) a template.
8379       if (TemplateParamLists.size() > 0)
8380         // For source fidelity, store all the template param lists.
8381         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
8382     }
8383 
8384     if (Invalid) {
8385       NewFD->setInvalidDecl();
8386       if (FunctionTemplate)
8387         FunctionTemplate->setInvalidDecl();
8388     }
8389 
8390     // C++ [dcl.fct.spec]p5:
8391     //   The virtual specifier shall only be used in declarations of
8392     //   nonstatic class member functions that appear within a
8393     //   member-specification of a class declaration; see 10.3.
8394     //
8395     if (isVirtual && !NewFD->isInvalidDecl()) {
8396       if (!isVirtualOkay) {
8397         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8398              diag::err_virtual_non_function);
8399       } else if (!CurContext->isRecord()) {
8400         // 'virtual' was specified outside of the class.
8401         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8402              diag::err_virtual_out_of_class)
8403           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8404       } else if (NewFD->getDescribedFunctionTemplate()) {
8405         // C++ [temp.mem]p3:
8406         //  A member function template shall not be virtual.
8407         Diag(D.getDeclSpec().getVirtualSpecLoc(),
8408              diag::err_virtual_member_function_template)
8409           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
8410       } else {
8411         // Okay: Add virtual to the method.
8412         NewFD->setVirtualAsWritten(true);
8413       }
8414 
8415       if (getLangOpts().CPlusPlus14 &&
8416           NewFD->getReturnType()->isUndeducedType())
8417         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
8418     }
8419 
8420     if (getLangOpts().CPlusPlus14 &&
8421         (NewFD->isDependentContext() ||
8422          (isFriend && CurContext->isDependentContext())) &&
8423         NewFD->getReturnType()->isUndeducedType()) {
8424       // If the function template is referenced directly (for instance, as a
8425       // member of the current instantiation), pretend it has a dependent type.
8426       // This is not really justified by the standard, but is the only sane
8427       // thing to do.
8428       // FIXME: For a friend function, we have not marked the function as being
8429       // a friend yet, so 'isDependentContext' on the FD doesn't work.
8430       const FunctionProtoType *FPT =
8431           NewFD->getType()->castAs<FunctionProtoType>();
8432       QualType Result =
8433           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
8434       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
8435                                              FPT->getExtProtoInfo()));
8436     }
8437 
8438     // C++ [dcl.fct.spec]p3:
8439     //  The inline specifier shall not appear on a block scope function
8440     //  declaration.
8441     if (isInline && !NewFD->isInvalidDecl()) {
8442       if (CurContext->isFunctionOrMethod()) {
8443         // 'inline' is not allowed on block scope function declaration.
8444         Diag(D.getDeclSpec().getInlineSpecLoc(),
8445              diag::err_inline_declaration_block_scope) << Name
8446           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
8447       }
8448     }
8449 
8450     // C++ [dcl.fct.spec]p6:
8451     //  The explicit specifier shall be used only in the declaration of a
8452     //  constructor or conversion function within its class definition;
8453     //  see 12.3.1 and 12.3.2.
8454     if (isExplicit && !NewFD->isInvalidDecl() &&
8455         !isa<CXXDeductionGuideDecl>(NewFD)) {
8456       if (!CurContext->isRecord()) {
8457         // 'explicit' was specified outside of the class.
8458         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8459              diag::err_explicit_out_of_class)
8460           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8461       } else if (!isa<CXXConstructorDecl>(NewFD) &&
8462                  !isa<CXXConversionDecl>(NewFD)) {
8463         // 'explicit' was specified on a function that wasn't a constructor
8464         // or conversion function.
8465         Diag(D.getDeclSpec().getExplicitSpecLoc(),
8466              diag::err_explicit_non_ctor_or_conv_function)
8467           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
8468       }
8469     }
8470 
8471     if (isConstexpr) {
8472       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
8473       // are implicitly inline.
8474       NewFD->setImplicitlyInline();
8475 
8476       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
8477       // be either constructors or to return a literal type. Therefore,
8478       // destructors cannot be declared constexpr.
8479       if (isa<CXXDestructorDecl>(NewFD))
8480         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
8481     }
8482 
8483     // If __module_private__ was specified, mark the function accordingly.
8484     if (D.getDeclSpec().isModulePrivateSpecified()) {
8485       if (isFunctionTemplateSpecialization) {
8486         SourceLocation ModulePrivateLoc
8487           = D.getDeclSpec().getModulePrivateSpecLoc();
8488         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
8489           << 0
8490           << FixItHint::CreateRemoval(ModulePrivateLoc);
8491       } else {
8492         NewFD->setModulePrivate();
8493         if (FunctionTemplate)
8494           FunctionTemplate->setModulePrivate();
8495       }
8496     }
8497 
8498     if (isFriend) {
8499       if (FunctionTemplate) {
8500         FunctionTemplate->setObjectOfFriendDecl();
8501         FunctionTemplate->setAccess(AS_public);
8502       }
8503       NewFD->setObjectOfFriendDecl();
8504       NewFD->setAccess(AS_public);
8505     }
8506 
8507     // If a function is defined as defaulted or deleted, mark it as such now.
8508     // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
8509     // definition kind to FDK_Definition.
8510     switch (D.getFunctionDefinitionKind()) {
8511       case FDK_Declaration:
8512       case FDK_Definition:
8513         break;
8514 
8515       case FDK_Defaulted:
8516         NewFD->setDefaulted();
8517         break;
8518 
8519       case FDK_Deleted:
8520         NewFD->setDeletedAsWritten();
8521         break;
8522     }
8523 
8524     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
8525         D.isFunctionDefinition()) {
8526       // C++ [class.mfct]p2:
8527       //   A member function may be defined (8.4) in its class definition, in
8528       //   which case it is an inline member function (7.1.2)
8529       NewFD->setImplicitlyInline();
8530     }
8531 
8532     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
8533         !CurContext->isRecord()) {
8534       // C++ [class.static]p1:
8535       //   A data or function member of a class may be declared static
8536       //   in a class definition, in which case it is a static member of
8537       //   the class.
8538 
8539       // Complain about the 'static' specifier if it's on an out-of-line
8540       // member function definition.
8541       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
8542            diag::err_static_out_of_line)
8543         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
8544     }
8545 
8546     // C++11 [except.spec]p15:
8547     //   A deallocation function with no exception-specification is treated
8548     //   as if it were specified with noexcept(true).
8549     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
8550     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
8551          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
8552         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
8553       NewFD->setType(Context.getFunctionType(
8554           FPT->getReturnType(), FPT->getParamTypes(),
8555           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
8556   }
8557 
8558   // Filter out previous declarations that don't match the scope.
8559   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
8560                        D.getCXXScopeSpec().isNotEmpty() ||
8561                        isMemberSpecialization ||
8562                        isFunctionTemplateSpecialization);
8563 
8564   // Handle GNU asm-label extension (encoded as an attribute).
8565   if (Expr *E = (Expr*) D.getAsmLabel()) {
8566     // The parser guarantees this is a string.
8567     StringLiteral *SE = cast<StringLiteral>(E);
8568     NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
8569                                                 SE->getString(), 0));
8570   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
8571     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
8572       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
8573     if (I != ExtnameUndeclaredIdentifiers.end()) {
8574       if (isDeclExternC(NewFD)) {
8575         NewFD->addAttr(I->second);
8576         ExtnameUndeclaredIdentifiers.erase(I);
8577       } else
8578         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
8579             << /*Variable*/0 << NewFD;
8580     }
8581   }
8582 
8583   // Copy the parameter declarations from the declarator D to the function
8584   // declaration NewFD, if they are available.  First scavenge them into Params.
8585   SmallVector<ParmVarDecl*, 16> Params;
8586   unsigned FTIIdx;
8587   if (D.isFunctionDeclarator(FTIIdx)) {
8588     DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun;
8589 
8590     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
8591     // function that takes no arguments, not a function that takes a
8592     // single void argument.
8593     // We let through "const void" here because Sema::GetTypeForDeclarator
8594     // already checks for that case.
8595     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
8596       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
8597         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
8598         assert(Param->getDeclContext() != NewFD && "Was set before ?");
8599         Param->setDeclContext(NewFD);
8600         Params.push_back(Param);
8601 
8602         if (Param->isInvalidDecl())
8603           NewFD->setInvalidDecl();
8604       }
8605     }
8606 
8607     if (!getLangOpts().CPlusPlus) {
8608       // In C, find all the tag declarations from the prototype and move them
8609       // into the function DeclContext. Remove them from the surrounding tag
8610       // injection context of the function, which is typically but not always
8611       // the TU.
8612       DeclContext *PrototypeTagContext =
8613           getTagInjectionContext(NewFD->getLexicalDeclContext());
8614       for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) {
8615         auto *TD = dyn_cast<TagDecl>(NonParmDecl);
8616 
8617         // We don't want to reparent enumerators. Look at their parent enum
8618         // instead.
8619         if (!TD) {
8620           if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl))
8621             TD = cast<EnumDecl>(ECD->getDeclContext());
8622         }
8623         if (!TD)
8624           continue;
8625         DeclContext *TagDC = TD->getLexicalDeclContext();
8626         if (!TagDC->containsDecl(TD))
8627           continue;
8628         TagDC->removeDecl(TD);
8629         TD->setDeclContext(NewFD);
8630         NewFD->addDecl(TD);
8631 
8632         // Preserve the lexical DeclContext if it is not the surrounding tag
8633         // injection context of the FD. In this example, the semantic context of
8634         // E will be f and the lexical context will be S, while both the
8635         // semantic and lexical contexts of S will be f:
8636         //   void f(struct S { enum E { a } f; } s);
8637         if (TagDC != PrototypeTagContext)
8638           TD->setLexicalDeclContext(TagDC);
8639       }
8640     }
8641   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
8642     // When we're declaring a function with a typedef, typeof, etc as in the
8643     // following example, we'll need to synthesize (unnamed)
8644     // parameters for use in the declaration.
8645     //
8646     // @code
8647     // typedef void fn(int);
8648     // fn f;
8649     // @endcode
8650 
8651     // Synthesize a parameter for each argument type.
8652     for (const auto &AI : FT->param_types()) {
8653       ParmVarDecl *Param =
8654           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
8655       Param->setScopeInfo(0, Params.size());
8656       Params.push_back(Param);
8657     }
8658   } else {
8659     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
8660            "Should not need args for typedef of non-prototype fn");
8661   }
8662 
8663   // Finally, we know we have the right number of parameters, install them.
8664   NewFD->setParams(Params);
8665 
8666   if (D.getDeclSpec().isNoreturnSpecified())
8667     NewFD->addAttr(
8668         ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
8669                                        Context, 0));
8670 
8671   // Functions returning a variably modified type violate C99 6.7.5.2p2
8672   // because all functions have linkage.
8673   if (!NewFD->isInvalidDecl() &&
8674       NewFD->getReturnType()->isVariablyModifiedType()) {
8675     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
8676     NewFD->setInvalidDecl();
8677   }
8678 
8679   // Apply an implicit SectionAttr if '#pragma clang section text' is active
8680   if (PragmaClangTextSection.Valid && D.isFunctionDefinition() &&
8681       !NewFD->hasAttr<SectionAttr>()) {
8682     NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit(Context,
8683                                                  PragmaClangTextSection.SectionName,
8684                                                  PragmaClangTextSection.PragmaLocation));
8685   }
8686 
8687   // Apply an implicit SectionAttr if #pragma code_seg is active.
8688   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
8689       !NewFD->hasAttr<SectionAttr>()) {
8690     NewFD->addAttr(
8691         SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
8692                                     CodeSegStack.CurrentValue->getString(),
8693                                     CodeSegStack.CurrentPragmaLocation));
8694     if (UnifySection(CodeSegStack.CurrentValue->getString(),
8695                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
8696                          ASTContext::PSF_Read,
8697                      NewFD))
8698       NewFD->dropAttr<SectionAttr>();
8699   }
8700 
8701   // Handle attributes.
8702   ProcessDeclAttributes(S, NewFD, D);
8703 
8704   if (getLangOpts().OpenCL) {
8705     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
8706     // type declaration will generate a compilation error.
8707     LangAS AddressSpace = NewFD->getReturnType().getAddressSpace();
8708     if (AddressSpace != LangAS::Default) {
8709       Diag(NewFD->getLocation(),
8710            diag::err_opencl_return_value_with_address_space);
8711       NewFD->setInvalidDecl();
8712     }
8713   }
8714 
8715   if (!getLangOpts().CPlusPlus) {
8716     // Perform semantic checking on the function declaration.
8717     if (!NewFD->isInvalidDecl() && NewFD->isMain())
8718       CheckMain(NewFD, D.getDeclSpec());
8719 
8720     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8721       CheckMSVCRTEntryPoint(NewFD);
8722 
8723     if (!NewFD->isInvalidDecl())
8724       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8725                                                   isMemberSpecialization));
8726     else if (!Previous.empty())
8727       // Recover gracefully from an invalid redeclaration.
8728       D.setRedeclaration(true);
8729     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8730             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8731            "previous declaration set still overloaded");
8732 
8733     // Diagnose no-prototype function declarations with calling conventions that
8734     // don't support variadic calls. Only do this in C and do it after merging
8735     // possibly prototyped redeclarations.
8736     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
8737     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
8738       CallingConv CC = FT->getExtInfo().getCC();
8739       if (!supportsVariadicCall(CC)) {
8740         // Windows system headers sometimes accidentally use stdcall without
8741         // (void) parameters, so we relax this to a warning.
8742         int DiagID =
8743             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
8744         Diag(NewFD->getLocation(), DiagID)
8745             << FunctionType::getNameForCallConv(CC);
8746       }
8747     }
8748   } else {
8749     // C++11 [replacement.functions]p3:
8750     //  The program's definitions shall not be specified as inline.
8751     //
8752     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
8753     //
8754     // Suppress the diagnostic if the function is __attribute__((used)), since
8755     // that forces an external definition to be emitted.
8756     if (D.getDeclSpec().isInlineSpecified() &&
8757         NewFD->isReplaceableGlobalAllocationFunction() &&
8758         !NewFD->hasAttr<UsedAttr>())
8759       Diag(D.getDeclSpec().getInlineSpecLoc(),
8760            diag::ext_operator_new_delete_declared_inline)
8761         << NewFD->getDeclName();
8762 
8763     // If the declarator is a template-id, translate the parser's template
8764     // argument list into our AST format.
8765     if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
8766       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
8767       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
8768       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
8769       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
8770                                          TemplateId->NumArgs);
8771       translateTemplateArguments(TemplateArgsPtr,
8772                                  TemplateArgs);
8773 
8774       HasExplicitTemplateArgs = true;
8775 
8776       if (NewFD->isInvalidDecl()) {
8777         HasExplicitTemplateArgs = false;
8778       } else if (FunctionTemplate) {
8779         // Function template with explicit template arguments.
8780         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
8781           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
8782 
8783         HasExplicitTemplateArgs = false;
8784       } else {
8785         assert((isFunctionTemplateSpecialization ||
8786                 D.getDeclSpec().isFriendSpecified()) &&
8787                "should have a 'template<>' for this decl");
8788         // "friend void foo<>(int);" is an implicit specialization decl.
8789         isFunctionTemplateSpecialization = true;
8790       }
8791     } else if (isFriend && isFunctionTemplateSpecialization) {
8792       // This combination is only possible in a recovery case;  the user
8793       // wrote something like:
8794       //   template <> friend void foo(int);
8795       // which we're recovering from as if the user had written:
8796       //   friend void foo<>(int);
8797       // Go ahead and fake up a template id.
8798       HasExplicitTemplateArgs = true;
8799       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
8800       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
8801     }
8802 
8803     // We do not add HD attributes to specializations here because
8804     // they may have different constexpr-ness compared to their
8805     // templates and, after maybeAddCUDAHostDeviceAttrs() is applied,
8806     // may end up with different effective targets. Instead, a
8807     // specialization inherits its target attributes from its template
8808     // in the CheckFunctionTemplateSpecialization() call below.
8809     if (getLangOpts().CUDA & !isFunctionTemplateSpecialization)
8810       maybeAddCUDAHostDeviceAttrs(NewFD, Previous);
8811 
8812     // If it's a friend (and only if it's a friend), it's possible
8813     // that either the specialized function type or the specialized
8814     // template is dependent, and therefore matching will fail.  In
8815     // this case, don't check the specialization yet.
8816     bool InstantiationDependent = false;
8817     if (isFunctionTemplateSpecialization && isFriend &&
8818         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
8819          TemplateSpecializationType::anyDependentTemplateArguments(
8820             TemplateArgs,
8821             InstantiationDependent))) {
8822       assert(HasExplicitTemplateArgs &&
8823              "friend function specialization without template args");
8824       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
8825                                                        Previous))
8826         NewFD->setInvalidDecl();
8827     } else if (isFunctionTemplateSpecialization) {
8828       if (CurContext->isDependentContext() && CurContext->isRecord()
8829           && !isFriend) {
8830         isDependentClassScopeExplicitSpecialization = true;
8831         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
8832           diag::ext_function_specialization_in_class :
8833           diag::err_function_specialization_in_class)
8834           << NewFD->getDeclName();
8835       } else if (!NewFD->isInvalidDecl() &&
8836                  CheckFunctionTemplateSpecialization(
8837                      NewFD, (HasExplicitTemplateArgs ? &TemplateArgs : nullptr),
8838                      Previous))
8839         NewFD->setInvalidDecl();
8840 
8841       // C++ [dcl.stc]p1:
8842       //   A storage-class-specifier shall not be specified in an explicit
8843       //   specialization (14.7.3)
8844       FunctionTemplateSpecializationInfo *Info =
8845           NewFD->getTemplateSpecializationInfo();
8846       if (Info && SC != SC_None) {
8847         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
8848           Diag(NewFD->getLocation(),
8849                diag::err_explicit_specialization_inconsistent_storage_class)
8850             << SC
8851             << FixItHint::CreateRemoval(
8852                                       D.getDeclSpec().getStorageClassSpecLoc());
8853 
8854         else
8855           Diag(NewFD->getLocation(),
8856                diag::ext_explicit_specialization_storage_class)
8857             << FixItHint::CreateRemoval(
8858                                       D.getDeclSpec().getStorageClassSpecLoc());
8859       }
8860     } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) {
8861       if (CheckMemberSpecialization(NewFD, Previous))
8862           NewFD->setInvalidDecl();
8863     }
8864 
8865     // Perform semantic checking on the function declaration.
8866     if (!isDependentClassScopeExplicitSpecialization) {
8867       if (!NewFD->isInvalidDecl() && NewFD->isMain())
8868         CheckMain(NewFD, D.getDeclSpec());
8869 
8870       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8871         CheckMSVCRTEntryPoint(NewFD);
8872 
8873       if (!NewFD->isInvalidDecl())
8874         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8875                                                     isMemberSpecialization));
8876       else if (!Previous.empty())
8877         // Recover gracefully from an invalid redeclaration.
8878         D.setRedeclaration(true);
8879     }
8880 
8881     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8882             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8883            "previous declaration set still overloaded");
8884 
8885     NamedDecl *PrincipalDecl = (FunctionTemplate
8886                                 ? cast<NamedDecl>(FunctionTemplate)
8887                                 : NewFD);
8888 
8889     if (isFriend && NewFD->getPreviousDecl()) {
8890       AccessSpecifier Access = AS_public;
8891       if (!NewFD->isInvalidDecl())
8892         Access = NewFD->getPreviousDecl()->getAccess();
8893 
8894       NewFD->setAccess(Access);
8895       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
8896     }
8897 
8898     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
8899         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
8900       PrincipalDecl->setNonMemberOperator();
8901 
8902     // If we have a function template, check the template parameter
8903     // list. This will check and merge default template arguments.
8904     if (FunctionTemplate) {
8905       FunctionTemplateDecl *PrevTemplate =
8906                                      FunctionTemplate->getPreviousDecl();
8907       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
8908                        PrevTemplate ? PrevTemplate->getTemplateParameters()
8909                                     : nullptr,
8910                             D.getDeclSpec().isFriendSpecified()
8911                               ? (D.isFunctionDefinition()
8912                                    ? TPC_FriendFunctionTemplateDefinition
8913                                    : TPC_FriendFunctionTemplate)
8914                               : (D.getCXXScopeSpec().isSet() &&
8915                                  DC && DC->isRecord() &&
8916                                  DC->isDependentContext())
8917                                   ? TPC_ClassTemplateMember
8918                                   : TPC_FunctionTemplate);
8919     }
8920 
8921     if (NewFD->isInvalidDecl()) {
8922       // Ignore all the rest of this.
8923     } else if (!D.isRedeclaration()) {
8924       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
8925                                        AddToScope };
8926       // Fake up an access specifier if it's supposed to be a class member.
8927       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
8928         NewFD->setAccess(AS_public);
8929 
8930       // Qualified decls generally require a previous declaration.
8931       if (D.getCXXScopeSpec().isSet()) {
8932         // ...with the major exception of templated-scope or
8933         // dependent-scope friend declarations.
8934 
8935         // TODO: we currently also suppress this check in dependent
8936         // contexts because (1) the parameter depth will be off when
8937         // matching friend templates and (2) we might actually be
8938         // selecting a friend based on a dependent factor.  But there
8939         // are situations where these conditions don't apply and we
8940         // can actually do this check immediately.
8941         if (isFriend &&
8942             (TemplateParamLists.size() ||
8943              D.getCXXScopeSpec().getScopeRep()->isDependent() ||
8944              CurContext->isDependentContext())) {
8945           // ignore these
8946         } else {
8947           // The user tried to provide an out-of-line definition for a
8948           // function that is a member of a class or namespace, but there
8949           // was no such member function declared (C++ [class.mfct]p2,
8950           // C++ [namespace.memdef]p2). For example:
8951           //
8952           // class X {
8953           //   void f() const;
8954           // };
8955           //
8956           // void X::f() { } // ill-formed
8957           //
8958           // Complain about this problem, and attempt to suggest close
8959           // matches (e.g., those that differ only in cv-qualifiers and
8960           // whether the parameter types are references).
8961 
8962           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8963                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
8964             AddToScope = ExtraArgs.AddToScope;
8965             return Result;
8966           }
8967         }
8968 
8969         // Unqualified local friend declarations are required to resolve
8970         // to something.
8971       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
8972         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8973                 *this, Previous, NewFD, ExtraArgs, true, S)) {
8974           AddToScope = ExtraArgs.AddToScope;
8975           return Result;
8976         }
8977       }
8978     } else if (!D.isFunctionDefinition() &&
8979                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
8980                !isFriend && !isFunctionTemplateSpecialization &&
8981                !isMemberSpecialization) {
8982       // An out-of-line member function declaration must also be a
8983       // definition (C++ [class.mfct]p2).
8984       // Note that this is not the case for explicit specializations of
8985       // function templates or member functions of class templates, per
8986       // C++ [temp.expl.spec]p2. We also allow these declarations as an
8987       // extension for compatibility with old SWIG code which likes to
8988       // generate them.
8989       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
8990         << D.getCXXScopeSpec().getRange();
8991     }
8992   }
8993 
8994   ProcessPragmaWeak(S, NewFD);
8995   checkAttributesAfterMerging(*this, *NewFD);
8996 
8997   AddKnownFunctionAttributes(NewFD);
8998 
8999   if (NewFD->hasAttr<OverloadableAttr>() &&
9000       !NewFD->getType()->getAs<FunctionProtoType>()) {
9001     Diag(NewFD->getLocation(),
9002          diag::err_attribute_overloadable_no_prototype)
9003       << NewFD;
9004 
9005     // Turn this into a variadic function with no parameters.
9006     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
9007     FunctionProtoType::ExtProtoInfo EPI(
9008         Context.getDefaultCallingConvention(true, false));
9009     EPI.Variadic = true;
9010     EPI.ExtInfo = FT->getExtInfo();
9011 
9012     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
9013     NewFD->setType(R);
9014   }
9015 
9016   // If there's a #pragma GCC visibility in scope, and this isn't a class
9017   // member, set the visibility of this function.
9018   if (!DC->isRecord() && NewFD->isExternallyVisible())
9019     AddPushedVisibilityAttribute(NewFD);
9020 
9021   // If there's a #pragma clang arc_cf_code_audited in scope, consider
9022   // marking the function.
9023   AddCFAuditedAttribute(NewFD);
9024 
9025   // If this is a function definition, check if we have to apply optnone due to
9026   // a pragma.
9027   if(D.isFunctionDefinition())
9028     AddRangeBasedOptnone(NewFD);
9029 
9030   // If this is the first declaration of an extern C variable, update
9031   // the map of such variables.
9032   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
9033       isIncompleteDeclExternC(*this, NewFD))
9034     RegisterLocallyScopedExternCDecl(NewFD, S);
9035 
9036   // Set this FunctionDecl's range up to the right paren.
9037   NewFD->setRangeEnd(D.getSourceRange().getEnd());
9038 
9039   if (D.isRedeclaration() && !Previous.empty()) {
9040     NamedDecl *Prev = Previous.getRepresentativeDecl();
9041     checkDLLAttributeRedeclaration(*this, Prev, NewFD,
9042                                    isMemberSpecialization ||
9043                                        isFunctionTemplateSpecialization,
9044                                    D.isFunctionDefinition());
9045   }
9046 
9047   if (getLangOpts().CUDA) {
9048     IdentifierInfo *II = NewFD->getIdentifier();
9049     if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() &&
9050         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
9051       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
9052         Diag(NewFD->getLocation(), diag::err_config_scalar_return);
9053 
9054       Context.setcudaConfigureCallDecl(NewFD);
9055     }
9056 
9057     // Variadic functions, other than a *declaration* of printf, are not allowed
9058     // in device-side CUDA code, unless someone passed
9059     // -fcuda-allow-variadic-functions.
9060     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
9061         (NewFD->hasAttr<CUDADeviceAttr>() ||
9062          NewFD->hasAttr<CUDAGlobalAttr>()) &&
9063         !(II && II->isStr("printf") && NewFD->isExternC() &&
9064           !D.isFunctionDefinition())) {
9065       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
9066     }
9067   }
9068 
9069   MarkUnusedFileScopedDecl(NewFD);
9070 
9071   if (getLangOpts().CPlusPlus) {
9072     if (FunctionTemplate) {
9073       if (NewFD->isInvalidDecl())
9074         FunctionTemplate->setInvalidDecl();
9075       return FunctionTemplate;
9076     }
9077 
9078     if (isMemberSpecialization && !NewFD->isInvalidDecl())
9079       CompleteMemberSpecialization(NewFD, Previous);
9080   }
9081 
9082   if (NewFD->hasAttr<OpenCLKernelAttr>()) {
9083     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
9084     if ((getLangOpts().OpenCLVersion >= 120)
9085         && (SC == SC_Static)) {
9086       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
9087       D.setInvalidType();
9088     }
9089 
9090     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
9091     if (!NewFD->getReturnType()->isVoidType()) {
9092       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
9093       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
9094           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
9095                                 : FixItHint());
9096       D.setInvalidType();
9097     }
9098 
9099     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
9100     for (auto Param : NewFD->parameters())
9101       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
9102   }
9103   for (const ParmVarDecl *Param : NewFD->parameters()) {
9104     QualType PT = Param->getType();
9105 
9106     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
9107     // types.
9108     if (getLangOpts().OpenCLVersion >= 200) {
9109       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
9110         QualType ElemTy = PipeTy->getElementType();
9111           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
9112             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
9113             D.setInvalidType();
9114           }
9115       }
9116     }
9117   }
9118 
9119   // Here we have an function template explicit specialization at class scope.
9120   // The actually specialization will be postponed to template instatiation
9121   // time via the ClassScopeFunctionSpecializationDecl node.
9122   if (isDependentClassScopeExplicitSpecialization) {
9123     ClassScopeFunctionSpecializationDecl *NewSpec =
9124                          ClassScopeFunctionSpecializationDecl::Create(
9125                                 Context, CurContext, SourceLocation(),
9126                                 cast<CXXMethodDecl>(NewFD),
9127                                 HasExplicitTemplateArgs, TemplateArgs);
9128     CurContext->addDecl(NewSpec);
9129     AddToScope = false;
9130   }
9131 
9132   return NewFD;
9133 }
9134 
9135 /// \brief Checks if the new declaration declared in dependent context must be
9136 /// put in the same redeclaration chain as the specified declaration.
9137 ///
9138 /// \param D Declaration that is checked.
9139 /// \param PrevDecl Previous declaration found with proper lookup method for the
9140 ///                 same declaration name.
9141 /// \returns True if D must be added to the redeclaration chain which PrevDecl
9142 ///          belongs to.
9143 ///
9144 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) {
9145   // Any declarations should be put into redeclaration chains except for
9146   // friend declaration in a dependent context that names a function in
9147   // namespace scope.
9148   //
9149   // This allows to compile code like:
9150   //
9151   //       void func();
9152   //       template<typename T> class C1 { friend void func() { } };
9153   //       template<typename T> class C2 { friend void func() { } };
9154   //
9155   // This code snippet is a valid code unless both templates are instantiated.
9156   return !(D->getLexicalDeclContext()->isDependentContext() &&
9157            D->getDeclContext()->isFileContext() &&
9158            D->getFriendObjectKind() != Decl::FOK_None);
9159 }
9160 
9161 /// \brief Check the target attribute of the function for MultiVersion
9162 /// validity.
9163 ///
9164 /// Returns true if there was an error, false otherwise.
9165 static bool CheckMultiVersionValue(Sema &S, const FunctionDecl *FD) {
9166   const auto *TA = FD->getAttr<TargetAttr>();
9167   assert(TA && "MultiVersion Candidate requires a target attribute");
9168   TargetAttr::ParsedTargetAttr ParseInfo = TA->parse();
9169   const TargetInfo &TargetInfo = S.Context.getTargetInfo();
9170   enum ErrType { Feature = 0, Architecture = 1 };
9171 
9172   if (!ParseInfo.Architecture.empty() &&
9173       !TargetInfo.validateCpuIs(ParseInfo.Architecture)) {
9174     S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
9175         << Architecture << ParseInfo.Architecture;
9176     return true;
9177   }
9178 
9179   for (const auto &Feat : ParseInfo.Features) {
9180     auto BareFeat = StringRef{Feat}.substr(1);
9181     if (Feat[0] == '-') {
9182       S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
9183           << Feature << ("no-" + BareFeat).str();
9184       return true;
9185     }
9186 
9187     if (!TargetInfo.validateCpuSupports(BareFeat) ||
9188         !TargetInfo.isValidFeatureName(BareFeat)) {
9189       S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
9190           << Feature << BareFeat;
9191       return true;
9192     }
9193   }
9194   return false;
9195 }
9196 
9197 static bool CheckMultiVersionAdditionalRules(Sema &S, const FunctionDecl *OldFD,
9198                                              const FunctionDecl *NewFD,
9199                                              bool CausesMV) {
9200   enum DoesntSupport {
9201     FuncTemplates = 0,
9202     VirtFuncs = 1,
9203     DeducedReturn = 2,
9204     Constructors = 3,
9205     Destructors = 4,
9206     DeletedFuncs = 5,
9207     DefaultedFuncs = 6
9208   };
9209   enum Different {
9210     CallingConv = 0,
9211     ReturnType = 1,
9212     ConstexprSpec = 2,
9213     InlineSpec = 3,
9214     StorageClass = 4,
9215     Linkage = 5
9216   };
9217 
9218   // For now, disallow all other attributes.  These should be opt-in, but
9219   // an analysis of all of them is a future FIXME.
9220   if (CausesMV && OldFD &&
9221       std::distance(OldFD->attr_begin(), OldFD->attr_end()) != 1) {
9222     S.Diag(OldFD->getLocation(), diag::err_multiversion_no_other_attrs);
9223     S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
9224     return true;
9225   }
9226 
9227   if (std::distance(NewFD->attr_begin(), NewFD->attr_end()) != 1)
9228     return S.Diag(NewFD->getLocation(), diag::err_multiversion_no_other_attrs);
9229 
9230   if (NewFD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
9231     return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support)
9232            << FuncTemplates;
9233 
9234   if (const auto *NewCXXFD = dyn_cast<CXXMethodDecl>(NewFD)) {
9235     if (NewCXXFD->isVirtual())
9236       return S.Diag(NewCXXFD->getLocation(),
9237                     diag::err_multiversion_doesnt_support)
9238              << VirtFuncs;
9239 
9240     if (const auto *NewCXXCtor = dyn_cast<CXXConstructorDecl>(NewFD))
9241       return S.Diag(NewCXXCtor->getLocation(),
9242                     diag::err_multiversion_doesnt_support)
9243              << Constructors;
9244 
9245     if (const auto *NewCXXDtor = dyn_cast<CXXDestructorDecl>(NewFD))
9246       return S.Diag(NewCXXDtor->getLocation(),
9247                     diag::err_multiversion_doesnt_support)
9248              << Destructors;
9249   }
9250 
9251   if (NewFD->isDeleted())
9252     return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support)
9253            << DeletedFuncs;
9254 
9255   if (NewFD->isDefaulted())
9256     return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support)
9257            << DefaultedFuncs;
9258 
9259   QualType NewQType = S.getASTContext().getCanonicalType(NewFD->getType());
9260   const auto *NewType = cast<FunctionType>(NewQType);
9261   QualType NewReturnType = NewType->getReturnType();
9262 
9263   if (NewReturnType->isUndeducedType())
9264     return S.Diag(NewFD->getLocation(), diag::err_multiversion_doesnt_support)
9265            << DeducedReturn;
9266 
9267   // Only allow transition to MultiVersion if it hasn't been used.
9268   if (OldFD && CausesMV && OldFD->isUsed(false))
9269     return S.Diag(NewFD->getLocation(), diag::err_multiversion_after_used);
9270 
9271   // Ensure the return type is identical.
9272   if (OldFD) {
9273     QualType OldQType = S.getASTContext().getCanonicalType(OldFD->getType());
9274     const auto *OldType = cast<FunctionType>(OldQType);
9275     FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
9276     FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
9277 
9278     if (OldTypeInfo.getCC() != NewTypeInfo.getCC())
9279       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9280              << CallingConv;
9281 
9282     QualType OldReturnType = OldType->getReturnType();
9283 
9284     if (OldReturnType != NewReturnType)
9285       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9286              << ReturnType;
9287 
9288     if (OldFD->isConstexpr() != NewFD->isConstexpr())
9289       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9290              << ConstexprSpec;
9291 
9292     if (OldFD->isInlineSpecified() != NewFD->isInlineSpecified())
9293       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9294              << InlineSpec;
9295 
9296     if (OldFD->getStorageClass() != NewFD->getStorageClass())
9297       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9298              << StorageClass;
9299 
9300     if (OldFD->isExternC() != NewFD->isExternC())
9301       return S.Diag(NewFD->getLocation(), diag::err_multiversion_diff)
9302              << Linkage;
9303 
9304     if (S.CheckEquivalentExceptionSpec(
9305             OldFD->getType()->getAs<FunctionProtoType>(), OldFD->getLocation(),
9306             NewFD->getType()->getAs<FunctionProtoType>(), NewFD->getLocation()))
9307       return true;
9308   }
9309   return false;
9310 }
9311 
9312 /// \brief Check the validity of a mulitversion function declaration.
9313 /// Also sets the multiversion'ness' of the function itself.
9314 ///
9315 /// This sets NewFD->isInvalidDecl() to true if there was an error.
9316 ///
9317 /// Returns true if there was an error, false otherwise.
9318 static bool CheckMultiVersionFunction(Sema &S, FunctionDecl *NewFD,
9319                                       bool &Redeclaration, NamedDecl *&OldDecl,
9320                                       bool &MergeTypeWithPrevious,
9321                                       LookupResult &Previous) {
9322   const auto *NewTA = NewFD->getAttr<TargetAttr>();
9323   if (NewFD->isMain()) {
9324     if (NewTA && NewTA->isDefaultVersion()) {
9325       S.Diag(NewFD->getLocation(), diag::err_multiversion_not_allowed_on_main);
9326       NewFD->setInvalidDecl();
9327       return true;
9328     }
9329     return false;
9330   }
9331 
9332   // If there is no matching previous decl, only 'default' can
9333   // cause MultiVersioning.
9334   if (!OldDecl) {
9335     if (NewTA && NewTA->isDefaultVersion()) {
9336       if (!NewFD->getType()->getAs<FunctionProtoType>()) {
9337         S.Diag(NewFD->getLocation(), diag::err_multiversion_noproto);
9338         NewFD->setInvalidDecl();
9339         return true;
9340       }
9341       if (CheckMultiVersionAdditionalRules(S, nullptr, NewFD, true)) {
9342         NewFD->setInvalidDecl();
9343         return true;
9344       }
9345       if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) {
9346         S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported);
9347         NewFD->setInvalidDecl();
9348         return true;
9349       }
9350 
9351       NewFD->setIsMultiVersion();
9352     }
9353     return false;
9354   }
9355 
9356   if (OldDecl->getDeclContext()->getRedeclContext() !=
9357       NewFD->getDeclContext()->getRedeclContext())
9358     return false;
9359 
9360   FunctionDecl *OldFD = OldDecl->getAsFunction();
9361   // Unresolved 'using' statements (the other way OldDecl can be not a function)
9362   // likely cannot cause a problem here.
9363   if (!OldFD)
9364     return false;
9365 
9366   if (!OldFD->isMultiVersion() && !NewTA)
9367     return false;
9368 
9369   if (OldFD->isMultiVersion() && !NewTA) {
9370     S.Diag(NewFD->getLocation(), diag::err_target_required_in_redecl);
9371     NewFD->setInvalidDecl();
9372     return true;
9373   }
9374 
9375   TargetAttr::ParsedTargetAttr NewParsed = NewTA->parse();
9376   // Sort order doesn't matter, it just needs to be consistent.
9377   std::sort(NewParsed.Features.begin(), NewParsed.Features.end());
9378 
9379   const auto *OldTA = OldFD->getAttr<TargetAttr>();
9380   if (!OldFD->isMultiVersion()) {
9381     // If the old decl is NOT MultiVersioned yet, and we don't cause that
9382     // to change, this is a simple redeclaration.
9383     if (!OldTA || OldTA->getFeaturesStr() == NewTA->getFeaturesStr())
9384       return false;
9385 
9386     // Otherwise, this decl causes MultiVersioning.
9387     if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) {
9388       S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported);
9389       S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
9390       NewFD->setInvalidDecl();
9391       return true;
9392     }
9393 
9394     if (!OldFD->getType()->getAs<FunctionProtoType>()) {
9395       S.Diag(OldFD->getLocation(), diag::err_multiversion_noproto);
9396       S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
9397       NewFD->setInvalidDecl();
9398       return true;
9399     }
9400 
9401     if (CheckMultiVersionValue(S, NewFD)) {
9402       NewFD->setInvalidDecl();
9403       return true;
9404     }
9405 
9406     if (CheckMultiVersionValue(S, OldFD)) {
9407       S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
9408       NewFD->setInvalidDecl();
9409       return true;
9410     }
9411 
9412     TargetAttr::ParsedTargetAttr OldParsed =
9413         OldTA->parse(std::less<std::string>());
9414 
9415     if (OldParsed == NewParsed) {
9416       S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate);
9417       S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
9418       NewFD->setInvalidDecl();
9419       return true;
9420     }
9421 
9422     for (const auto *FD : OldFD->redecls()) {
9423       const auto *CurTA = FD->getAttr<TargetAttr>();
9424       if (!CurTA || CurTA->isInherited()) {
9425         S.Diag(FD->getLocation(), diag::err_target_required_in_redecl);
9426         S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
9427         NewFD->setInvalidDecl();
9428         return true;
9429       }
9430     }
9431 
9432     if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, true)) {
9433       NewFD->setInvalidDecl();
9434       return true;
9435     }
9436 
9437     OldFD->setIsMultiVersion();
9438     NewFD->setIsMultiVersion();
9439     Redeclaration = false;
9440     MergeTypeWithPrevious = false;
9441     OldDecl = nullptr;
9442     Previous.clear();
9443     return false;
9444   }
9445 
9446   bool UseMemberUsingDeclRules =
9447       S.CurContext->isRecord() && !NewFD->getFriendObjectKind();
9448 
9449   // Next, check ALL non-overloads to see if this is a redeclaration of a
9450   // previous member of the MultiVersion set.
9451   for (NamedDecl *ND : Previous) {
9452     FunctionDecl *CurFD = ND->getAsFunction();
9453     if (!CurFD)
9454       continue;
9455     if (S.IsOverload(NewFD, CurFD, UseMemberUsingDeclRules))
9456       continue;
9457 
9458     const auto *CurTA = CurFD->getAttr<TargetAttr>();
9459     if (CurTA->getFeaturesStr() == NewTA->getFeaturesStr()) {
9460       NewFD->setIsMultiVersion();
9461       Redeclaration = true;
9462       OldDecl = ND;
9463       return false;
9464     }
9465 
9466     TargetAttr::ParsedTargetAttr CurParsed =
9467         CurTA->parse(std::less<std::string>());
9468 
9469     if (CurParsed == NewParsed) {
9470       S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate);
9471       S.Diag(CurFD->getLocation(), diag::note_previous_declaration);
9472       NewFD->setInvalidDecl();
9473       return true;
9474     }
9475   }
9476 
9477   // Else, this is simply a non-redecl case.
9478   if (CheckMultiVersionValue(S, NewFD)) {
9479     NewFD->setInvalidDecl();
9480     return true;
9481   }
9482 
9483   if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, false)) {
9484     NewFD->setInvalidDecl();
9485     return true;
9486   }
9487 
9488   NewFD->setIsMultiVersion();
9489   Redeclaration = false;
9490   MergeTypeWithPrevious = false;
9491   OldDecl = nullptr;
9492   Previous.clear();
9493   return false;
9494 }
9495 
9496 /// \brief Perform semantic checking of a new function declaration.
9497 ///
9498 /// Performs semantic analysis of the new function declaration
9499 /// NewFD. This routine performs all semantic checking that does not
9500 /// require the actual declarator involved in the declaration, and is
9501 /// used both for the declaration of functions as they are parsed
9502 /// (called via ActOnDeclarator) and for the declaration of functions
9503 /// that have been instantiated via C++ template instantiation (called
9504 /// via InstantiateDecl).
9505 ///
9506 /// \param IsMemberSpecialization whether this new function declaration is
9507 /// a member specialization (that replaces any definition provided by the
9508 /// previous declaration).
9509 ///
9510 /// This sets NewFD->isInvalidDecl() to true if there was an error.
9511 ///
9512 /// \returns true if the function declaration is a redeclaration.
9513 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
9514                                     LookupResult &Previous,
9515                                     bool IsMemberSpecialization) {
9516   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
9517          "Variably modified return types are not handled here");
9518 
9519   // Determine whether the type of this function should be merged with
9520   // a previous visible declaration. This never happens for functions in C++,
9521   // and always happens in C if the previous declaration was visible.
9522   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
9523                                !Previous.isShadowed();
9524 
9525   bool Redeclaration = false;
9526   NamedDecl *OldDecl = nullptr;
9527   bool MayNeedOverloadableChecks = false;
9528 
9529   // Merge or overload the declaration with an existing declaration of
9530   // the same name, if appropriate.
9531   if (!Previous.empty()) {
9532     // Determine whether NewFD is an overload of PrevDecl or
9533     // a declaration that requires merging. If it's an overload,
9534     // there's no more work to do here; we'll just add the new
9535     // function to the scope.
9536     if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) {
9537       NamedDecl *Candidate = Previous.getRepresentativeDecl();
9538       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
9539         Redeclaration = true;
9540         OldDecl = Candidate;
9541       }
9542     } else {
9543       MayNeedOverloadableChecks = true;
9544       switch (CheckOverload(S, NewFD, Previous, OldDecl,
9545                             /*NewIsUsingDecl*/ false)) {
9546       case Ovl_Match:
9547         Redeclaration = true;
9548         break;
9549 
9550       case Ovl_NonFunction:
9551         Redeclaration = true;
9552         break;
9553 
9554       case Ovl_Overload:
9555         Redeclaration = false;
9556         break;
9557       }
9558     }
9559   }
9560 
9561   // Check for a previous extern "C" declaration with this name.
9562   if (!Redeclaration &&
9563       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
9564     if (!Previous.empty()) {
9565       // This is an extern "C" declaration with the same name as a previous
9566       // declaration, and thus redeclares that entity...
9567       Redeclaration = true;
9568       OldDecl = Previous.getFoundDecl();
9569       MergeTypeWithPrevious = false;
9570 
9571       // ... except in the presence of __attribute__((overloadable)).
9572       if (OldDecl->hasAttr<OverloadableAttr>() ||
9573           NewFD->hasAttr<OverloadableAttr>()) {
9574         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
9575           MayNeedOverloadableChecks = true;
9576           Redeclaration = false;
9577           OldDecl = nullptr;
9578         }
9579       }
9580     }
9581   }
9582 
9583   if (CheckMultiVersionFunction(*this, NewFD, Redeclaration, OldDecl,
9584                                 MergeTypeWithPrevious, Previous))
9585     return Redeclaration;
9586 
9587   // C++11 [dcl.constexpr]p8:
9588   //   A constexpr specifier for a non-static member function that is not
9589   //   a constructor declares that member function to be const.
9590   //
9591   // This needs to be delayed until we know whether this is an out-of-line
9592   // definition of a static member function.
9593   //
9594   // This rule is not present in C++1y, so we produce a backwards
9595   // compatibility warning whenever it happens in C++11.
9596   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
9597   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
9598       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
9599       (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
9600     CXXMethodDecl *OldMD = nullptr;
9601     if (OldDecl)
9602       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
9603     if (!OldMD || !OldMD->isStatic()) {
9604       const FunctionProtoType *FPT =
9605         MD->getType()->castAs<FunctionProtoType>();
9606       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9607       EPI.TypeQuals |= Qualifiers::Const;
9608       MD->setType(Context.getFunctionType(FPT->getReturnType(),
9609                                           FPT->getParamTypes(), EPI));
9610 
9611       // Warn that we did this, if we're not performing template instantiation.
9612       // In that case, we'll have warned already when the template was defined.
9613       if (!inTemplateInstantiation()) {
9614         SourceLocation AddConstLoc;
9615         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
9616                 .IgnoreParens().getAs<FunctionTypeLoc>())
9617           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
9618 
9619         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
9620           << FixItHint::CreateInsertion(AddConstLoc, " const");
9621       }
9622     }
9623   }
9624 
9625   if (Redeclaration) {
9626     // NewFD and OldDecl represent declarations that need to be
9627     // merged.
9628     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
9629       NewFD->setInvalidDecl();
9630       return Redeclaration;
9631     }
9632 
9633     Previous.clear();
9634     Previous.addDecl(OldDecl);
9635 
9636     if (FunctionTemplateDecl *OldTemplateDecl
9637                                   = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
9638       auto *OldFD = OldTemplateDecl->getTemplatedDecl();
9639       NewFD->setPreviousDeclaration(OldFD);
9640       adjustDeclContextForDeclaratorDecl(NewFD, OldFD);
9641       FunctionTemplateDecl *NewTemplateDecl
9642         = NewFD->getDescribedFunctionTemplate();
9643       assert(NewTemplateDecl && "Template/non-template mismatch");
9644       if (auto *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
9645         Method->setAccess(OldTemplateDecl->getAccess());
9646         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
9647       }
9648 
9649       // If this is an explicit specialization of a member that is a function
9650       // template, mark it as a member specialization.
9651       if (IsMemberSpecialization &&
9652           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
9653         NewTemplateDecl->setMemberSpecialization();
9654         assert(OldTemplateDecl->isMemberSpecialization());
9655         // Explicit specializations of a member template do not inherit deleted
9656         // status from the parent member template that they are specializing.
9657         if (OldFD->isDeleted()) {
9658           // FIXME: This assert will not hold in the presence of modules.
9659           assert(OldFD->getCanonicalDecl() == OldFD);
9660           // FIXME: We need an update record for this AST mutation.
9661           OldFD->setDeletedAsWritten(false);
9662         }
9663       }
9664 
9665     } else {
9666       if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) {
9667         auto *OldFD = cast<FunctionDecl>(OldDecl);
9668         // This needs to happen first so that 'inline' propagates.
9669         NewFD->setPreviousDeclaration(OldFD);
9670         adjustDeclContextForDeclaratorDecl(NewFD, OldFD);
9671         if (isa<CXXMethodDecl>(NewFD))
9672           NewFD->setAccess(OldFD->getAccess());
9673       }
9674     }
9675   } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks &&
9676              !NewFD->getAttr<OverloadableAttr>()) {
9677     assert((Previous.empty() ||
9678             llvm::any_of(Previous,
9679                          [](const NamedDecl *ND) {
9680                            return ND->hasAttr<OverloadableAttr>();
9681                          })) &&
9682            "Non-redecls shouldn't happen without overloadable present");
9683 
9684     auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) {
9685       const auto *FD = dyn_cast<FunctionDecl>(ND);
9686       return FD && !FD->hasAttr<OverloadableAttr>();
9687     });
9688 
9689     if (OtherUnmarkedIter != Previous.end()) {
9690       Diag(NewFD->getLocation(),
9691            diag::err_attribute_overloadable_multiple_unmarked_overloads);
9692       Diag((*OtherUnmarkedIter)->getLocation(),
9693            diag::note_attribute_overloadable_prev_overload)
9694           << false;
9695 
9696       NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
9697     }
9698   }
9699 
9700   // Semantic checking for this function declaration (in isolation).
9701 
9702   if (getLangOpts().CPlusPlus) {
9703     // C++-specific checks.
9704     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
9705       CheckConstructor(Constructor);
9706     } else if (CXXDestructorDecl *Destructor =
9707                 dyn_cast<CXXDestructorDecl>(NewFD)) {
9708       CXXRecordDecl *Record = Destructor->getParent();
9709       QualType ClassType = Context.getTypeDeclType(Record);
9710 
9711       // FIXME: Shouldn't we be able to perform this check even when the class
9712       // type is dependent? Both gcc and edg can handle that.
9713       if (!ClassType->isDependentType()) {
9714         DeclarationName Name
9715           = Context.DeclarationNames.getCXXDestructorName(
9716                                         Context.getCanonicalType(ClassType));
9717         if (NewFD->getDeclName() != Name) {
9718           Diag(NewFD->getLocation(), diag::err_destructor_name);
9719           NewFD->setInvalidDecl();
9720           return Redeclaration;
9721         }
9722       }
9723     } else if (CXXConversionDecl *Conversion
9724                = dyn_cast<CXXConversionDecl>(NewFD)) {
9725       ActOnConversionDeclarator(Conversion);
9726     } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) {
9727       if (auto *TD = Guide->getDescribedFunctionTemplate())
9728         CheckDeductionGuideTemplate(TD);
9729 
9730       // A deduction guide is not on the list of entities that can be
9731       // explicitly specialized.
9732       if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
9733         Diag(Guide->getLocStart(), diag::err_deduction_guide_specialized)
9734             << /*explicit specialization*/ 1;
9735     }
9736 
9737     // Find any virtual functions that this function overrides.
9738     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
9739       if (!Method->isFunctionTemplateSpecialization() &&
9740           !Method->getDescribedFunctionTemplate() &&
9741           Method->isCanonicalDecl()) {
9742         if (AddOverriddenMethods(Method->getParent(), Method)) {
9743           // If the function was marked as "static", we have a problem.
9744           if (NewFD->getStorageClass() == SC_Static) {
9745             ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
9746           }
9747         }
9748       }
9749 
9750       if (Method->isStatic())
9751         checkThisInStaticMemberFunctionType(Method);
9752     }
9753 
9754     // Extra checking for C++ overloaded operators (C++ [over.oper]).
9755     if (NewFD->isOverloadedOperator() &&
9756         CheckOverloadedOperatorDeclaration(NewFD)) {
9757       NewFD->setInvalidDecl();
9758       return Redeclaration;
9759     }
9760 
9761     // Extra checking for C++0x literal operators (C++0x [over.literal]).
9762     if (NewFD->getLiteralIdentifier() &&
9763         CheckLiteralOperatorDeclaration(NewFD)) {
9764       NewFD->setInvalidDecl();
9765       return Redeclaration;
9766     }
9767 
9768     // In C++, check default arguments now that we have merged decls. Unless
9769     // the lexical context is the class, because in this case this is done
9770     // during delayed parsing anyway.
9771     if (!CurContext->isRecord())
9772       CheckCXXDefaultArguments(NewFD);
9773 
9774     // If this function declares a builtin function, check the type of this
9775     // declaration against the expected type for the builtin.
9776     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
9777       ASTContext::GetBuiltinTypeError Error;
9778       LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
9779       QualType T = Context.GetBuiltinType(BuiltinID, Error);
9780       // If the type of the builtin differs only in its exception
9781       // specification, that's OK.
9782       // FIXME: If the types do differ in this way, it would be better to
9783       // retain the 'noexcept' form of the type.
9784       if (!T.isNull() &&
9785           !Context.hasSameFunctionTypeIgnoringExceptionSpec(T,
9786                                                             NewFD->getType()))
9787         // The type of this function differs from the type of the builtin,
9788         // so forget about the builtin entirely.
9789         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
9790     }
9791 
9792     // If this function is declared as being extern "C", then check to see if
9793     // the function returns a UDT (class, struct, or union type) that is not C
9794     // compatible, and if it does, warn the user.
9795     // But, issue any diagnostic on the first declaration only.
9796     if (Previous.empty() && NewFD->isExternC()) {
9797       QualType R = NewFD->getReturnType();
9798       if (R->isIncompleteType() && !R->isVoidType())
9799         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
9800             << NewFD << R;
9801       else if (!R.isPODType(Context) && !R->isVoidType() &&
9802                !R->isObjCObjectPointerType())
9803         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
9804     }
9805 
9806     // C++1z [dcl.fct]p6:
9807     //   [...] whether the function has a non-throwing exception-specification
9808     //   [is] part of the function type
9809     //
9810     // This results in an ABI break between C++14 and C++17 for functions whose
9811     // declared type includes an exception-specification in a parameter or
9812     // return type. (Exception specifications on the function itself are OK in
9813     // most cases, and exception specifications are not permitted in most other
9814     // contexts where they could make it into a mangling.)
9815     if (!getLangOpts().CPlusPlus17 && !NewFD->getPrimaryTemplate()) {
9816       auto HasNoexcept = [&](QualType T) -> bool {
9817         // Strip off declarator chunks that could be between us and a function
9818         // type. We don't need to look far, exception specifications are very
9819         // restricted prior to C++17.
9820         if (auto *RT = T->getAs<ReferenceType>())
9821           T = RT->getPointeeType();
9822         else if (T->isAnyPointerType())
9823           T = T->getPointeeType();
9824         else if (auto *MPT = T->getAs<MemberPointerType>())
9825           T = MPT->getPointeeType();
9826         if (auto *FPT = T->getAs<FunctionProtoType>())
9827           if (FPT->isNothrow(Context))
9828             return true;
9829         return false;
9830       };
9831 
9832       auto *FPT = NewFD->getType()->castAs<FunctionProtoType>();
9833       bool AnyNoexcept = HasNoexcept(FPT->getReturnType());
9834       for (QualType T : FPT->param_types())
9835         AnyNoexcept |= HasNoexcept(T);
9836       if (AnyNoexcept)
9837         Diag(NewFD->getLocation(),
9838              diag::warn_cxx17_compat_exception_spec_in_signature)
9839             << NewFD;
9840     }
9841 
9842     if (!Redeclaration && LangOpts.CUDA)
9843       checkCUDATargetOverload(NewFD, Previous);
9844   }
9845   return Redeclaration;
9846 }
9847 
9848 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
9849   // C++11 [basic.start.main]p3:
9850   //   A program that [...] declares main to be inline, static or
9851   //   constexpr is ill-formed.
9852   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
9853   //   appear in a declaration of main.
9854   // static main is not an error under C99, but we should warn about it.
9855   // We accept _Noreturn main as an extension.
9856   if (FD->getStorageClass() == SC_Static)
9857     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
9858          ? diag::err_static_main : diag::warn_static_main)
9859       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
9860   if (FD->isInlineSpecified())
9861     Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
9862       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
9863   if (DS.isNoreturnSpecified()) {
9864     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
9865     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
9866     Diag(NoreturnLoc, diag::ext_noreturn_main);
9867     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
9868       << FixItHint::CreateRemoval(NoreturnRange);
9869   }
9870   if (FD->isConstexpr()) {
9871     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
9872       << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
9873     FD->setConstexpr(false);
9874   }
9875 
9876   if (getLangOpts().OpenCL) {
9877     Diag(FD->getLocation(), diag::err_opencl_no_main)
9878         << FD->hasAttr<OpenCLKernelAttr>();
9879     FD->setInvalidDecl();
9880     return;
9881   }
9882 
9883   QualType T = FD->getType();
9884   assert(T->isFunctionType() && "function decl is not of function type");
9885   const FunctionType* FT = T->castAs<FunctionType>();
9886 
9887   // Set default calling convention for main()
9888   if (FT->getCallConv() != CC_C) {
9889     FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C));
9890     FD->setType(QualType(FT, 0));
9891     T = Context.getCanonicalType(FD->getType());
9892   }
9893 
9894   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
9895     // In C with GNU extensions we allow main() to have non-integer return
9896     // type, but we should warn about the extension, and we disable the
9897     // implicit-return-zero rule.
9898 
9899     // GCC in C mode accepts qualified 'int'.
9900     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
9901       FD->setHasImplicitReturnZero(true);
9902     else {
9903       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
9904       SourceRange RTRange = FD->getReturnTypeSourceRange();
9905       if (RTRange.isValid())
9906         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
9907             << FixItHint::CreateReplacement(RTRange, "int");
9908     }
9909   } else {
9910     // In C and C++, main magically returns 0 if you fall off the end;
9911     // set the flag which tells us that.
9912     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
9913 
9914     // All the standards say that main() should return 'int'.
9915     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
9916       FD->setHasImplicitReturnZero(true);
9917     else {
9918       // Otherwise, this is just a flat-out error.
9919       SourceRange RTRange = FD->getReturnTypeSourceRange();
9920       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
9921           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
9922                                 : FixItHint());
9923       FD->setInvalidDecl(true);
9924     }
9925   }
9926 
9927   // Treat protoless main() as nullary.
9928   if (isa<FunctionNoProtoType>(FT)) return;
9929 
9930   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
9931   unsigned nparams = FTP->getNumParams();
9932   assert(FD->getNumParams() == nparams);
9933 
9934   bool HasExtraParameters = (nparams > 3);
9935 
9936   if (FTP->isVariadic()) {
9937     Diag(FD->getLocation(), diag::ext_variadic_main);
9938     // FIXME: if we had information about the location of the ellipsis, we
9939     // could add a FixIt hint to remove it as a parameter.
9940   }
9941 
9942   // Darwin passes an undocumented fourth argument of type char**.  If
9943   // other platforms start sprouting these, the logic below will start
9944   // getting shifty.
9945   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
9946     HasExtraParameters = false;
9947 
9948   if (HasExtraParameters) {
9949     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
9950     FD->setInvalidDecl(true);
9951     nparams = 3;
9952   }
9953 
9954   // FIXME: a lot of the following diagnostics would be improved
9955   // if we had some location information about types.
9956 
9957   QualType CharPP =
9958     Context.getPointerType(Context.getPointerType(Context.CharTy));
9959   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
9960 
9961   for (unsigned i = 0; i < nparams; ++i) {
9962     QualType AT = FTP->getParamType(i);
9963 
9964     bool mismatch = true;
9965 
9966     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
9967       mismatch = false;
9968     else if (Expected[i] == CharPP) {
9969       // As an extension, the following forms are okay:
9970       //   char const **
9971       //   char const * const *
9972       //   char * const *
9973 
9974       QualifierCollector qs;
9975       const PointerType* PT;
9976       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
9977           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
9978           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
9979                               Context.CharTy)) {
9980         qs.removeConst();
9981         mismatch = !qs.empty();
9982       }
9983     }
9984 
9985     if (mismatch) {
9986       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
9987       // TODO: suggest replacing given type with expected type
9988       FD->setInvalidDecl(true);
9989     }
9990   }
9991 
9992   if (nparams == 1 && !FD->isInvalidDecl()) {
9993     Diag(FD->getLocation(), diag::warn_main_one_arg);
9994   }
9995 
9996   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
9997     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
9998     FD->setInvalidDecl();
9999   }
10000 }
10001 
10002 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
10003   QualType T = FD->getType();
10004   assert(T->isFunctionType() && "function decl is not of function type");
10005   const FunctionType *FT = T->castAs<FunctionType>();
10006 
10007   // Set an implicit return of 'zero' if the function can return some integral,
10008   // enumeration, pointer or nullptr type.
10009   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
10010       FT->getReturnType()->isAnyPointerType() ||
10011       FT->getReturnType()->isNullPtrType())
10012     // DllMain is exempt because a return value of zero means it failed.
10013     if (FD->getName() != "DllMain")
10014       FD->setHasImplicitReturnZero(true);
10015 
10016   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
10017     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
10018     FD->setInvalidDecl();
10019   }
10020 }
10021 
10022 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
10023   // FIXME: Need strict checking.  In C89, we need to check for
10024   // any assignment, increment, decrement, function-calls, or
10025   // commas outside of a sizeof.  In C99, it's the same list,
10026   // except that the aforementioned are allowed in unevaluated
10027   // expressions.  Everything else falls under the
10028   // "may accept other forms of constant expressions" exception.
10029   // (We never end up here for C++, so the constant expression
10030   // rules there don't matter.)
10031   const Expr *Culprit;
10032   if (Init->isConstantInitializer(Context, false, &Culprit))
10033     return false;
10034   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
10035     << Culprit->getSourceRange();
10036   return true;
10037 }
10038 
10039 namespace {
10040   // Visits an initialization expression to see if OrigDecl is evaluated in
10041   // its own initialization and throws a warning if it does.
10042   class SelfReferenceChecker
10043       : public EvaluatedExprVisitor<SelfReferenceChecker> {
10044     Sema &S;
10045     Decl *OrigDecl;
10046     bool isRecordType;
10047     bool isPODType;
10048     bool isReferenceType;
10049 
10050     bool isInitList;
10051     llvm::SmallVector<unsigned, 4> InitFieldIndex;
10052 
10053   public:
10054     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
10055 
10056     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
10057                                                     S(S), OrigDecl(OrigDecl) {
10058       isPODType = false;
10059       isRecordType = false;
10060       isReferenceType = false;
10061       isInitList = false;
10062       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
10063         isPODType = VD->getType().isPODType(S.Context);
10064         isRecordType = VD->getType()->isRecordType();
10065         isReferenceType = VD->getType()->isReferenceType();
10066       }
10067     }
10068 
10069     // For most expressions, just call the visitor.  For initializer lists,
10070     // track the index of the field being initialized since fields are
10071     // initialized in order allowing use of previously initialized fields.
10072     void CheckExpr(Expr *E) {
10073       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
10074       if (!InitList) {
10075         Visit(E);
10076         return;
10077       }
10078 
10079       // Track and increment the index here.
10080       isInitList = true;
10081       InitFieldIndex.push_back(0);
10082       for (auto Child : InitList->children()) {
10083         CheckExpr(cast<Expr>(Child));
10084         ++InitFieldIndex.back();
10085       }
10086       InitFieldIndex.pop_back();
10087     }
10088 
10089     // Returns true if MemberExpr is checked and no further checking is needed.
10090     // Returns false if additional checking is required.
10091     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
10092       llvm::SmallVector<FieldDecl*, 4> Fields;
10093       Expr *Base = E;
10094       bool ReferenceField = false;
10095 
10096       // Get the field memebers used.
10097       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
10098         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
10099         if (!FD)
10100           return false;
10101         Fields.push_back(FD);
10102         if (FD->getType()->isReferenceType())
10103           ReferenceField = true;
10104         Base = ME->getBase()->IgnoreParenImpCasts();
10105       }
10106 
10107       // Keep checking only if the base Decl is the same.
10108       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
10109       if (!DRE || DRE->getDecl() != OrigDecl)
10110         return false;
10111 
10112       // A reference field can be bound to an unininitialized field.
10113       if (CheckReference && !ReferenceField)
10114         return true;
10115 
10116       // Convert FieldDecls to their index number.
10117       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
10118       for (const FieldDecl *I : llvm::reverse(Fields))
10119         UsedFieldIndex.push_back(I->getFieldIndex());
10120 
10121       // See if a warning is needed by checking the first difference in index
10122       // numbers.  If field being used has index less than the field being
10123       // initialized, then the use is safe.
10124       for (auto UsedIter = UsedFieldIndex.begin(),
10125                 UsedEnd = UsedFieldIndex.end(),
10126                 OrigIter = InitFieldIndex.begin(),
10127                 OrigEnd = InitFieldIndex.end();
10128            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
10129         if (*UsedIter < *OrigIter)
10130           return true;
10131         if (*UsedIter > *OrigIter)
10132           break;
10133       }
10134 
10135       // TODO: Add a different warning which will print the field names.
10136       HandleDeclRefExpr(DRE);
10137       return true;
10138     }
10139 
10140     // For most expressions, the cast is directly above the DeclRefExpr.
10141     // For conditional operators, the cast can be outside the conditional
10142     // operator if both expressions are DeclRefExpr's.
10143     void HandleValue(Expr *E) {
10144       E = E->IgnoreParens();
10145       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
10146         HandleDeclRefExpr(DRE);
10147         return;
10148       }
10149 
10150       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
10151         Visit(CO->getCond());
10152         HandleValue(CO->getTrueExpr());
10153         HandleValue(CO->getFalseExpr());
10154         return;
10155       }
10156 
10157       if (BinaryConditionalOperator *BCO =
10158               dyn_cast<BinaryConditionalOperator>(E)) {
10159         Visit(BCO->getCond());
10160         HandleValue(BCO->getFalseExpr());
10161         return;
10162       }
10163 
10164       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
10165         HandleValue(OVE->getSourceExpr());
10166         return;
10167       }
10168 
10169       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
10170         if (BO->getOpcode() == BO_Comma) {
10171           Visit(BO->getLHS());
10172           HandleValue(BO->getRHS());
10173           return;
10174         }
10175       }
10176 
10177       if (isa<MemberExpr>(E)) {
10178         if (isInitList) {
10179           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
10180                                       false /*CheckReference*/))
10181             return;
10182         }
10183 
10184         Expr *Base = E->IgnoreParenImpCasts();
10185         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
10186           // Check for static member variables and don't warn on them.
10187           if (!isa<FieldDecl>(ME->getMemberDecl()))
10188             return;
10189           Base = ME->getBase()->IgnoreParenImpCasts();
10190         }
10191         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
10192           HandleDeclRefExpr(DRE);
10193         return;
10194       }
10195 
10196       Visit(E);
10197     }
10198 
10199     // Reference types not handled in HandleValue are handled here since all
10200     // uses of references are bad, not just r-value uses.
10201     void VisitDeclRefExpr(DeclRefExpr *E) {
10202       if (isReferenceType)
10203         HandleDeclRefExpr(E);
10204     }
10205 
10206     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
10207       if (E->getCastKind() == CK_LValueToRValue) {
10208         HandleValue(E->getSubExpr());
10209         return;
10210       }
10211 
10212       Inherited::VisitImplicitCastExpr(E);
10213     }
10214 
10215     void VisitMemberExpr(MemberExpr *E) {
10216       if (isInitList) {
10217         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
10218           return;
10219       }
10220 
10221       // Don't warn on arrays since they can be treated as pointers.
10222       if (E->getType()->canDecayToPointerType()) return;
10223 
10224       // Warn when a non-static method call is followed by non-static member
10225       // field accesses, which is followed by a DeclRefExpr.
10226       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
10227       bool Warn = (MD && !MD->isStatic());
10228       Expr *Base = E->getBase()->IgnoreParenImpCasts();
10229       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
10230         if (!isa<FieldDecl>(ME->getMemberDecl()))
10231           Warn = false;
10232         Base = ME->getBase()->IgnoreParenImpCasts();
10233       }
10234 
10235       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
10236         if (Warn)
10237           HandleDeclRefExpr(DRE);
10238         return;
10239       }
10240 
10241       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
10242       // Visit that expression.
10243       Visit(Base);
10244     }
10245 
10246     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
10247       Expr *Callee = E->getCallee();
10248 
10249       if (isa<UnresolvedLookupExpr>(Callee))
10250         return Inherited::VisitCXXOperatorCallExpr(E);
10251 
10252       Visit(Callee);
10253       for (auto Arg: E->arguments())
10254         HandleValue(Arg->IgnoreParenImpCasts());
10255     }
10256 
10257     void VisitUnaryOperator(UnaryOperator *E) {
10258       // For POD record types, addresses of its own members are well-defined.
10259       if (E->getOpcode() == UO_AddrOf && isRecordType &&
10260           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
10261         if (!isPODType)
10262           HandleValue(E->getSubExpr());
10263         return;
10264       }
10265 
10266       if (E->isIncrementDecrementOp()) {
10267         HandleValue(E->getSubExpr());
10268         return;
10269       }
10270 
10271       Inherited::VisitUnaryOperator(E);
10272     }
10273 
10274     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
10275 
10276     void VisitCXXConstructExpr(CXXConstructExpr *E) {
10277       if (E->getConstructor()->isCopyConstructor()) {
10278         Expr *ArgExpr = E->getArg(0);
10279         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
10280           if (ILE->getNumInits() == 1)
10281             ArgExpr = ILE->getInit(0);
10282         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
10283           if (ICE->getCastKind() == CK_NoOp)
10284             ArgExpr = ICE->getSubExpr();
10285         HandleValue(ArgExpr);
10286         return;
10287       }
10288       Inherited::VisitCXXConstructExpr(E);
10289     }
10290 
10291     void VisitCallExpr(CallExpr *E) {
10292       // Treat std::move as a use.
10293       if (E->isCallToStdMove()) {
10294         HandleValue(E->getArg(0));
10295         return;
10296       }
10297 
10298       Inherited::VisitCallExpr(E);
10299     }
10300 
10301     void VisitBinaryOperator(BinaryOperator *E) {
10302       if (E->isCompoundAssignmentOp()) {
10303         HandleValue(E->getLHS());
10304         Visit(E->getRHS());
10305         return;
10306       }
10307 
10308       Inherited::VisitBinaryOperator(E);
10309     }
10310 
10311     // A custom visitor for BinaryConditionalOperator is needed because the
10312     // regular visitor would check the condition and true expression separately
10313     // but both point to the same place giving duplicate diagnostics.
10314     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
10315       Visit(E->getCond());
10316       Visit(E->getFalseExpr());
10317     }
10318 
10319     void HandleDeclRefExpr(DeclRefExpr *DRE) {
10320       Decl* ReferenceDecl = DRE->getDecl();
10321       if (OrigDecl != ReferenceDecl) return;
10322       unsigned diag;
10323       if (isReferenceType) {
10324         diag = diag::warn_uninit_self_reference_in_reference_init;
10325       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
10326         diag = diag::warn_static_self_reference_in_init;
10327       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
10328                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
10329                  DRE->getDecl()->getType()->isRecordType()) {
10330         diag = diag::warn_uninit_self_reference_in_init;
10331       } else {
10332         // Local variables will be handled by the CFG analysis.
10333         return;
10334       }
10335 
10336       S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
10337                             S.PDiag(diag)
10338                               << DRE->getNameInfo().getName()
10339                               << OrigDecl->getLocation()
10340                               << DRE->getSourceRange());
10341     }
10342   };
10343 
10344   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
10345   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
10346                                  bool DirectInit) {
10347     // Parameters arguments are occassionially constructed with itself,
10348     // for instance, in recursive functions.  Skip them.
10349     if (isa<ParmVarDecl>(OrigDecl))
10350       return;
10351 
10352     E = E->IgnoreParens();
10353 
10354     // Skip checking T a = a where T is not a record or reference type.
10355     // Doing so is a way to silence uninitialized warnings.
10356     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
10357       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
10358         if (ICE->getCastKind() == CK_LValueToRValue)
10359           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
10360             if (DRE->getDecl() == OrigDecl)
10361               return;
10362 
10363     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
10364   }
10365 } // end anonymous namespace
10366 
10367 namespace {
10368   // Simple wrapper to add the name of a variable or (if no variable is
10369   // available) a DeclarationName into a diagnostic.
10370   struct VarDeclOrName {
10371     VarDecl *VDecl;
10372     DeclarationName Name;
10373 
10374     friend const Sema::SemaDiagnosticBuilder &
10375     operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) {
10376       return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name;
10377     }
10378   };
10379 } // end anonymous namespace
10380 
10381 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
10382                                             DeclarationName Name, QualType Type,
10383                                             TypeSourceInfo *TSI,
10384                                             SourceRange Range, bool DirectInit,
10385                                             Expr *Init) {
10386   bool IsInitCapture = !VDecl;
10387   assert((!VDecl || !VDecl->isInitCapture()) &&
10388          "init captures are expected to be deduced prior to initialization");
10389 
10390   VarDeclOrName VN{VDecl, Name};
10391 
10392   DeducedType *Deduced = Type->getContainedDeducedType();
10393   assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type");
10394 
10395   // C++11 [dcl.spec.auto]p3
10396   if (!Init) {
10397     assert(VDecl && "no init for init capture deduction?");
10398     Diag(VDecl->getLocation(), diag::err_auto_var_requires_init)
10399       << VDecl->getDeclName() << Type;
10400     return QualType();
10401   }
10402 
10403   ArrayRef<Expr*> DeduceInits = Init;
10404   if (DirectInit) {
10405     if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init))
10406       DeduceInits = PL->exprs();
10407   }
10408 
10409   if (isa<DeducedTemplateSpecializationType>(Deduced)) {
10410     assert(VDecl && "non-auto type for init capture deduction?");
10411     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10412     InitializationKind Kind = InitializationKind::CreateForInit(
10413         VDecl->getLocation(), DirectInit, Init);
10414     // FIXME: Initialization should not be taking a mutable list of inits.
10415     SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end());
10416     return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind,
10417                                                        InitsCopy);
10418   }
10419 
10420   if (DirectInit) {
10421     if (auto *IL = dyn_cast<InitListExpr>(Init))
10422       DeduceInits = IL->inits();
10423   }
10424 
10425   // Deduction only works if we have exactly one source expression.
10426   if (DeduceInits.empty()) {
10427     // It isn't possible to write this directly, but it is possible to
10428     // end up in this situation with "auto x(some_pack...);"
10429     Diag(Init->getLocStart(), IsInitCapture
10430                                   ? diag::err_init_capture_no_expression
10431                                   : diag::err_auto_var_init_no_expression)
10432         << VN << Type << Range;
10433     return QualType();
10434   }
10435 
10436   if (DeduceInits.size() > 1) {
10437     Diag(DeduceInits[1]->getLocStart(),
10438          IsInitCapture ? diag::err_init_capture_multiple_expressions
10439                        : diag::err_auto_var_init_multiple_expressions)
10440         << VN << Type << Range;
10441     return QualType();
10442   }
10443 
10444   Expr *DeduceInit = DeduceInits[0];
10445   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
10446     Diag(Init->getLocStart(), IsInitCapture
10447                                   ? diag::err_init_capture_paren_braces
10448                                   : diag::err_auto_var_init_paren_braces)
10449         << isa<InitListExpr>(Init) << VN << Type << Range;
10450     return QualType();
10451   }
10452 
10453   // Expressions default to 'id' when we're in a debugger.
10454   bool DefaultedAnyToId = false;
10455   if (getLangOpts().DebuggerCastResultToId &&
10456       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
10457     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10458     if (Result.isInvalid()) {
10459       return QualType();
10460     }
10461     Init = Result.get();
10462     DefaultedAnyToId = true;
10463   }
10464 
10465   // C++ [dcl.decomp]p1:
10466   //   If the assignment-expression [...] has array type A and no ref-qualifier
10467   //   is present, e has type cv A
10468   if (VDecl && isa<DecompositionDecl>(VDecl) &&
10469       Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) &&
10470       DeduceInit->getType()->isConstantArrayType())
10471     return Context.getQualifiedType(DeduceInit->getType(),
10472                                     Type.getQualifiers());
10473 
10474   QualType DeducedType;
10475   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
10476     if (!IsInitCapture)
10477       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
10478     else if (isa<InitListExpr>(Init))
10479       Diag(Range.getBegin(),
10480            diag::err_init_capture_deduction_failure_from_init_list)
10481           << VN
10482           << (DeduceInit->getType().isNull() ? TSI->getType()
10483                                              : DeduceInit->getType())
10484           << DeduceInit->getSourceRange();
10485     else
10486       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
10487           << VN << TSI->getType()
10488           << (DeduceInit->getType().isNull() ? TSI->getType()
10489                                              : DeduceInit->getType())
10490           << DeduceInit->getSourceRange();
10491   }
10492 
10493   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
10494   // 'id' instead of a specific object type prevents most of our usual
10495   // checks.
10496   // We only want to warn outside of template instantiations, though:
10497   // inside a template, the 'id' could have come from a parameter.
10498   if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture &&
10499       !DeducedType.isNull() && DeducedType->isObjCIdType()) {
10500     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
10501     Diag(Loc, diag::warn_auto_var_is_id) << VN << Range;
10502   }
10503 
10504   return DeducedType;
10505 }
10506 
10507 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit,
10508                                          Expr *Init) {
10509   QualType DeducedType = deduceVarTypeFromInitializer(
10510       VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(),
10511       VDecl->getSourceRange(), DirectInit, Init);
10512   if (DeducedType.isNull()) {
10513     VDecl->setInvalidDecl();
10514     return true;
10515   }
10516 
10517   VDecl->setType(DeducedType);
10518   assert(VDecl->isLinkageValid());
10519 
10520   // In ARC, infer lifetime.
10521   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
10522     VDecl->setInvalidDecl();
10523 
10524   // If this is a redeclaration, check that the type we just deduced matches
10525   // the previously declared type.
10526   if (VarDecl *Old = VDecl->getPreviousDecl()) {
10527     // We never need to merge the type, because we cannot form an incomplete
10528     // array of auto, nor deduce such a type.
10529     MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
10530   }
10531 
10532   // Check the deduced type is valid for a variable declaration.
10533   CheckVariableDeclarationType(VDecl);
10534   return VDecl->isInvalidDecl();
10535 }
10536 
10537 /// AddInitializerToDecl - Adds the initializer Init to the
10538 /// declaration dcl. If DirectInit is true, this is C++ direct
10539 /// initialization rather than copy initialization.
10540 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
10541   // If there is no declaration, there was an error parsing it.  Just ignore
10542   // the initializer.
10543   if (!RealDecl || RealDecl->isInvalidDecl()) {
10544     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
10545     return;
10546   }
10547 
10548   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
10549     // Pure-specifiers are handled in ActOnPureSpecifier.
10550     Diag(Method->getLocation(), diag::err_member_function_initialization)
10551       << Method->getDeclName() << Init->getSourceRange();
10552     Method->setInvalidDecl();
10553     return;
10554   }
10555 
10556   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
10557   if (!VDecl) {
10558     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
10559     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
10560     RealDecl->setInvalidDecl();
10561     return;
10562   }
10563 
10564   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
10565   if (VDecl->getType()->isUndeducedType()) {
10566     // Attempt typo correction early so that the type of the init expression can
10567     // be deduced based on the chosen correction if the original init contains a
10568     // TypoExpr.
10569     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
10570     if (!Res.isUsable()) {
10571       RealDecl->setInvalidDecl();
10572       return;
10573     }
10574     Init = Res.get();
10575 
10576     if (DeduceVariableDeclarationType(VDecl, DirectInit, Init))
10577       return;
10578   }
10579 
10580   // dllimport cannot be used on variable definitions.
10581   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
10582     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
10583     VDecl->setInvalidDecl();
10584     return;
10585   }
10586 
10587   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
10588     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
10589     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
10590     VDecl->setInvalidDecl();
10591     return;
10592   }
10593 
10594   if (!VDecl->getType()->isDependentType()) {
10595     // A definition must end up with a complete type, which means it must be
10596     // complete with the restriction that an array type might be completed by
10597     // the initializer; note that later code assumes this restriction.
10598     QualType BaseDeclType = VDecl->getType();
10599     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
10600       BaseDeclType = Array->getElementType();
10601     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
10602                             diag::err_typecheck_decl_incomplete_type)) {
10603       RealDecl->setInvalidDecl();
10604       return;
10605     }
10606 
10607     // The variable can not have an abstract class type.
10608     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
10609                                diag::err_abstract_type_in_decl,
10610                                AbstractVariableType))
10611       VDecl->setInvalidDecl();
10612   }
10613 
10614   // If adding the initializer will turn this declaration into a definition,
10615   // and we already have a definition for this variable, diagnose or otherwise
10616   // handle the situation.
10617   VarDecl *Def;
10618   if ((Def = VDecl->getDefinition()) && Def != VDecl &&
10619       (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) &&
10620       !VDecl->isThisDeclarationADemotedDefinition() &&
10621       checkVarDeclRedefinition(Def, VDecl))
10622     return;
10623 
10624   if (getLangOpts().CPlusPlus) {
10625     // C++ [class.static.data]p4
10626     //   If a static data member is of const integral or const
10627     //   enumeration type, its declaration in the class definition can
10628     //   specify a constant-initializer which shall be an integral
10629     //   constant expression (5.19). In that case, the member can appear
10630     //   in integral constant expressions. The member shall still be
10631     //   defined in a namespace scope if it is used in the program and the
10632     //   namespace scope definition shall not contain an initializer.
10633     //
10634     // We already performed a redefinition check above, but for static
10635     // data members we also need to check whether there was an in-class
10636     // declaration with an initializer.
10637     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
10638       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
10639           << VDecl->getDeclName();
10640       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
10641            diag::note_previous_initializer)
10642           << 0;
10643       return;
10644     }
10645 
10646     if (VDecl->hasLocalStorage())
10647       setFunctionHasBranchProtectedScope();
10648 
10649     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
10650       VDecl->setInvalidDecl();
10651       return;
10652     }
10653   }
10654 
10655   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
10656   // a kernel function cannot be initialized."
10657   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
10658     Diag(VDecl->getLocation(), diag::err_local_cant_init);
10659     VDecl->setInvalidDecl();
10660     return;
10661   }
10662 
10663   // Get the decls type and save a reference for later, since
10664   // CheckInitializerTypes may change it.
10665   QualType DclT = VDecl->getType(), SavT = DclT;
10666 
10667   // Expressions default to 'id' when we're in a debugger
10668   // and we are assigning it to a variable of Objective-C pointer type.
10669   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
10670       Init->getType() == Context.UnknownAnyTy) {
10671     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
10672     if (Result.isInvalid()) {
10673       VDecl->setInvalidDecl();
10674       return;
10675     }
10676     Init = Result.get();
10677   }
10678 
10679   // Perform the initialization.
10680   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
10681   if (!VDecl->isInvalidDecl()) {
10682     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
10683     InitializationKind Kind = InitializationKind::CreateForInit(
10684         VDecl->getLocation(), DirectInit, Init);
10685 
10686     MultiExprArg Args = Init;
10687     if (CXXDirectInit)
10688       Args = MultiExprArg(CXXDirectInit->getExprs(),
10689                           CXXDirectInit->getNumExprs());
10690 
10691     // Try to correct any TypoExprs in the initialization arguments.
10692     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
10693       ExprResult Res = CorrectDelayedTyposInExpr(
10694           Args[Idx], VDecl, [this, Entity, Kind](Expr *E) {
10695             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
10696             return Init.Failed() ? ExprError() : E;
10697           });
10698       if (Res.isInvalid()) {
10699         VDecl->setInvalidDecl();
10700       } else if (Res.get() != Args[Idx]) {
10701         Args[Idx] = Res.get();
10702       }
10703     }
10704     if (VDecl->isInvalidDecl())
10705       return;
10706 
10707     InitializationSequence InitSeq(*this, Entity, Kind, Args,
10708                                    /*TopLevelOfInitList=*/false,
10709                                    /*TreatUnavailableAsInvalid=*/false);
10710     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
10711     if (Result.isInvalid()) {
10712       VDecl->setInvalidDecl();
10713       return;
10714     }
10715 
10716     Init = Result.getAs<Expr>();
10717   }
10718 
10719   // Check for self-references within variable initializers.
10720   // Variables declared within a function/method body (except for references)
10721   // are handled by a dataflow analysis.
10722   if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
10723       VDecl->getType()->isReferenceType()) {
10724     CheckSelfReference(*this, RealDecl, Init, DirectInit);
10725   }
10726 
10727   // If the type changed, it means we had an incomplete type that was
10728   // completed by the initializer. For example:
10729   //   int ary[] = { 1, 3, 5 };
10730   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
10731   if (!VDecl->isInvalidDecl() && (DclT != SavT))
10732     VDecl->setType(DclT);
10733 
10734   if (!VDecl->isInvalidDecl()) {
10735     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
10736 
10737     if (VDecl->hasAttr<BlocksAttr>())
10738       checkRetainCycles(VDecl, Init);
10739 
10740     // It is safe to assign a weak reference into a strong variable.
10741     // Although this code can still have problems:
10742     //   id x = self.weakProp;
10743     //   id y = self.weakProp;
10744     // we do not warn to warn spuriously when 'x' and 'y' are on separate
10745     // paths through the function. This should be revisited if
10746     // -Wrepeated-use-of-weak is made flow-sensitive.
10747     if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
10748          VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) &&
10749         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
10750                          Init->getLocStart()))
10751       getCurFunction()->markSafeWeakUse(Init);
10752   }
10753 
10754   // The initialization is usually a full-expression.
10755   //
10756   // FIXME: If this is a braced initialization of an aggregate, it is not
10757   // an expression, and each individual field initializer is a separate
10758   // full-expression. For instance, in:
10759   //
10760   //   struct Temp { ~Temp(); };
10761   //   struct S { S(Temp); };
10762   //   struct T { S a, b; } t = { Temp(), Temp() }
10763   //
10764   // we should destroy the first Temp before constructing the second.
10765   ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
10766                                           false,
10767                                           VDecl->isConstexpr());
10768   if (Result.isInvalid()) {
10769     VDecl->setInvalidDecl();
10770     return;
10771   }
10772   Init = Result.get();
10773 
10774   // Attach the initializer to the decl.
10775   VDecl->setInit(Init);
10776 
10777   if (VDecl->isLocalVarDecl()) {
10778     // Don't check the initializer if the declaration is malformed.
10779     if (VDecl->isInvalidDecl()) {
10780       // do nothing
10781 
10782     // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized.
10783     // This is true even in OpenCL C++.
10784     } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) {
10785       CheckForConstantInitializer(Init, DclT);
10786 
10787     // Otherwise, C++ does not restrict the initializer.
10788     } else if (getLangOpts().CPlusPlus) {
10789       // do nothing
10790 
10791     // C99 6.7.8p4: All the expressions in an initializer for an object that has
10792     // static storage duration shall be constant expressions or string literals.
10793     } else if (VDecl->getStorageClass() == SC_Static) {
10794       CheckForConstantInitializer(Init, DclT);
10795 
10796     // C89 is stricter than C99 for aggregate initializers.
10797     // C89 6.5.7p3: All the expressions [...] in an initializer list
10798     // for an object that has aggregate or union type shall be
10799     // constant expressions.
10800     } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
10801                isa<InitListExpr>(Init)) {
10802       const Expr *Culprit;
10803       if (!Init->isConstantInitializer(Context, false, &Culprit)) {
10804         Diag(Culprit->getExprLoc(),
10805              diag::ext_aggregate_init_not_constant)
10806           << Culprit->getSourceRange();
10807       }
10808     }
10809   } else if (VDecl->isStaticDataMember() && !VDecl->isInline() &&
10810              VDecl->getLexicalDeclContext()->isRecord()) {
10811     // This is an in-class initialization for a static data member, e.g.,
10812     //
10813     // struct S {
10814     //   static const int value = 17;
10815     // };
10816 
10817     // C++ [class.mem]p4:
10818     //   A member-declarator can contain a constant-initializer only
10819     //   if it declares a static member (9.4) of const integral or
10820     //   const enumeration type, see 9.4.2.
10821     //
10822     // C++11 [class.static.data]p3:
10823     //   If a non-volatile non-inline const static data member is of integral
10824     //   or enumeration type, its declaration in the class definition can
10825     //   specify a brace-or-equal-initializer in which every initializer-clause
10826     //   that is an assignment-expression is a constant expression. A static
10827     //   data member of literal type can be declared in the class definition
10828     //   with the constexpr specifier; if so, its declaration shall specify a
10829     //   brace-or-equal-initializer in which every initializer-clause that is
10830     //   an assignment-expression is a constant expression.
10831 
10832     // Do nothing on dependent types.
10833     if (DclT->isDependentType()) {
10834 
10835     // Allow any 'static constexpr' members, whether or not they are of literal
10836     // type. We separately check that every constexpr variable is of literal
10837     // type.
10838     } else if (VDecl->isConstexpr()) {
10839 
10840     // Require constness.
10841     } else if (!DclT.isConstQualified()) {
10842       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
10843         << Init->getSourceRange();
10844       VDecl->setInvalidDecl();
10845 
10846     // We allow integer constant expressions in all cases.
10847     } else if (DclT->isIntegralOrEnumerationType()) {
10848       // Check whether the expression is a constant expression.
10849       SourceLocation Loc;
10850       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
10851         // In C++11, a non-constexpr const static data member with an
10852         // in-class initializer cannot be volatile.
10853         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
10854       else if (Init->isValueDependent())
10855         ; // Nothing to check.
10856       else if (Init->isIntegerConstantExpr(Context, &Loc))
10857         ; // Ok, it's an ICE!
10858       else if (Init->isEvaluatable(Context)) {
10859         // If we can constant fold the initializer through heroics, accept it,
10860         // but report this as a use of an extension for -pedantic.
10861         Diag(Loc, diag::ext_in_class_initializer_non_constant)
10862           << Init->getSourceRange();
10863       } else {
10864         // Otherwise, this is some crazy unknown case.  Report the issue at the
10865         // location provided by the isIntegerConstantExpr failed check.
10866         Diag(Loc, diag::err_in_class_initializer_non_constant)
10867           << Init->getSourceRange();
10868         VDecl->setInvalidDecl();
10869       }
10870 
10871     // We allow foldable floating-point constants as an extension.
10872     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
10873       // In C++98, this is a GNU extension. In C++11, it is not, but we support
10874       // it anyway and provide a fixit to add the 'constexpr'.
10875       if (getLangOpts().CPlusPlus11) {
10876         Diag(VDecl->getLocation(),
10877              diag::ext_in_class_initializer_float_type_cxx11)
10878             << DclT << Init->getSourceRange();
10879         Diag(VDecl->getLocStart(),
10880              diag::note_in_class_initializer_float_type_cxx11)
10881             << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10882       } else {
10883         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
10884           << DclT << Init->getSourceRange();
10885 
10886         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
10887           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
10888             << Init->getSourceRange();
10889           VDecl->setInvalidDecl();
10890         }
10891       }
10892 
10893     // Suggest adding 'constexpr' in C++11 for literal types.
10894     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
10895       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
10896         << DclT << Init->getSourceRange()
10897         << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
10898       VDecl->setConstexpr(true);
10899 
10900     } else {
10901       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
10902         << DclT << Init->getSourceRange();
10903       VDecl->setInvalidDecl();
10904     }
10905   } else if (VDecl->isFileVarDecl()) {
10906     // In C, extern is typically used to avoid tentative definitions when
10907     // declaring variables in headers, but adding an intializer makes it a
10908     // defintion. This is somewhat confusing, so GCC and Clang both warn on it.
10909     // In C++, extern is often used to give implictly static const variables
10910     // external linkage, so don't warn in that case. If selectany is present,
10911     // this might be header code intended for C and C++ inclusion, so apply the
10912     // C++ rules.
10913     if (VDecl->getStorageClass() == SC_Extern &&
10914         ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) ||
10915          !Context.getBaseElementType(VDecl->getType()).isConstQualified()) &&
10916         !(getLangOpts().CPlusPlus && VDecl->isExternC()) &&
10917         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
10918       Diag(VDecl->getLocation(), diag::warn_extern_init);
10919 
10920     // C99 6.7.8p4. All file scoped initializers need to be constant.
10921     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
10922       CheckForConstantInitializer(Init, DclT);
10923   }
10924 
10925   // We will represent direct-initialization similarly to copy-initialization:
10926   //    int x(1);  -as-> int x = 1;
10927   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
10928   //
10929   // Clients that want to distinguish between the two forms, can check for
10930   // direct initializer using VarDecl::getInitStyle().
10931   // A major benefit is that clients that don't particularly care about which
10932   // exactly form was it (like the CodeGen) can handle both cases without
10933   // special case code.
10934 
10935   // C++ 8.5p11:
10936   // The form of initialization (using parentheses or '=') is generally
10937   // insignificant, but does matter when the entity being initialized has a
10938   // class type.
10939   if (CXXDirectInit) {
10940     assert(DirectInit && "Call-style initializer must be direct init.");
10941     VDecl->setInitStyle(VarDecl::CallInit);
10942   } else if (DirectInit) {
10943     // This must be list-initialization. No other way is direct-initialization.
10944     VDecl->setInitStyle(VarDecl::ListInit);
10945   }
10946 
10947   CheckCompleteVariableDeclaration(VDecl);
10948 }
10949 
10950 /// ActOnInitializerError - Given that there was an error parsing an
10951 /// initializer for the given declaration, try to return to some form
10952 /// of sanity.
10953 void Sema::ActOnInitializerError(Decl *D) {
10954   // Our main concern here is re-establishing invariants like "a
10955   // variable's type is either dependent or complete".
10956   if (!D || D->isInvalidDecl()) return;
10957 
10958   VarDecl *VD = dyn_cast<VarDecl>(D);
10959   if (!VD) return;
10960 
10961   // Bindings are not usable if we can't make sense of the initializer.
10962   if (auto *DD = dyn_cast<DecompositionDecl>(D))
10963     for (auto *BD : DD->bindings())
10964       BD->setInvalidDecl();
10965 
10966   // Auto types are meaningless if we can't make sense of the initializer.
10967   if (ParsingInitForAutoVars.count(D)) {
10968     D->setInvalidDecl();
10969     return;
10970   }
10971 
10972   QualType Ty = VD->getType();
10973   if (Ty->isDependentType()) return;
10974 
10975   // Require a complete type.
10976   if (RequireCompleteType(VD->getLocation(),
10977                           Context.getBaseElementType(Ty),
10978                           diag::err_typecheck_decl_incomplete_type)) {
10979     VD->setInvalidDecl();
10980     return;
10981   }
10982 
10983   // Require a non-abstract type.
10984   if (RequireNonAbstractType(VD->getLocation(), Ty,
10985                              diag::err_abstract_type_in_decl,
10986                              AbstractVariableType)) {
10987     VD->setInvalidDecl();
10988     return;
10989   }
10990 
10991   // Don't bother complaining about constructors or destructors,
10992   // though.
10993 }
10994 
10995 void Sema::ActOnUninitializedDecl(Decl *RealDecl) {
10996   // If there is no declaration, there was an error parsing it. Just ignore it.
10997   if (!RealDecl)
10998     return;
10999 
11000   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
11001     QualType Type = Var->getType();
11002 
11003     // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory.
11004     if (isa<DecompositionDecl>(RealDecl)) {
11005       Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var;
11006       Var->setInvalidDecl();
11007       return;
11008     }
11009 
11010     if (Type->isUndeducedType() &&
11011         DeduceVariableDeclarationType(Var, false, nullptr))
11012       return;
11013 
11014     // C++11 [class.static.data]p3: A static data member can be declared with
11015     // the constexpr specifier; if so, its declaration shall specify
11016     // a brace-or-equal-initializer.
11017     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
11018     // the definition of a variable [...] or the declaration of a static data
11019     // member.
11020     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() &&
11021         !Var->isThisDeclarationADemotedDefinition()) {
11022       if (Var->isStaticDataMember()) {
11023         // C++1z removes the relevant rule; the in-class declaration is always
11024         // a definition there.
11025         if (!getLangOpts().CPlusPlus17) {
11026           Diag(Var->getLocation(),
11027                diag::err_constexpr_static_mem_var_requires_init)
11028             << Var->getDeclName();
11029           Var->setInvalidDecl();
11030           return;
11031         }
11032       } else {
11033         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
11034         Var->setInvalidDecl();
11035         return;
11036       }
11037     }
11038 
11039     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
11040     // be initialized.
11041     if (!Var->isInvalidDecl() &&
11042         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
11043         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
11044       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
11045       Var->setInvalidDecl();
11046       return;
11047     }
11048 
11049     switch (Var->isThisDeclarationADefinition()) {
11050     case VarDecl::Definition:
11051       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
11052         break;
11053 
11054       // We have an out-of-line definition of a static data member
11055       // that has an in-class initializer, so we type-check this like
11056       // a declaration.
11057       //
11058       LLVM_FALLTHROUGH;
11059 
11060     case VarDecl::DeclarationOnly:
11061       // It's only a declaration.
11062 
11063       // Block scope. C99 6.7p7: If an identifier for an object is
11064       // declared with no linkage (C99 6.2.2p6), the type for the
11065       // object shall be complete.
11066       if (!Type->isDependentType() && Var->isLocalVarDecl() &&
11067           !Var->hasLinkage() && !Var->isInvalidDecl() &&
11068           RequireCompleteType(Var->getLocation(), Type,
11069                               diag::err_typecheck_decl_incomplete_type))
11070         Var->setInvalidDecl();
11071 
11072       // Make sure that the type is not abstract.
11073       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
11074           RequireNonAbstractType(Var->getLocation(), Type,
11075                                  diag::err_abstract_type_in_decl,
11076                                  AbstractVariableType))
11077         Var->setInvalidDecl();
11078       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
11079           Var->getStorageClass() == SC_PrivateExtern) {
11080         Diag(Var->getLocation(), diag::warn_private_extern);
11081         Diag(Var->getLocation(), diag::note_private_extern);
11082       }
11083 
11084       return;
11085 
11086     case VarDecl::TentativeDefinition:
11087       // File scope. C99 6.9.2p2: A declaration of an identifier for an
11088       // object that has file scope without an initializer, and without a
11089       // storage-class specifier or with the storage-class specifier "static",
11090       // constitutes a tentative definition. Note: A tentative definition with
11091       // external linkage is valid (C99 6.2.2p5).
11092       if (!Var->isInvalidDecl()) {
11093         if (const IncompleteArrayType *ArrayT
11094                                     = Context.getAsIncompleteArrayType(Type)) {
11095           if (RequireCompleteType(Var->getLocation(),
11096                                   ArrayT->getElementType(),
11097                                   diag::err_illegal_decl_array_incomplete_type))
11098             Var->setInvalidDecl();
11099         } else if (Var->getStorageClass() == SC_Static) {
11100           // C99 6.9.2p3: If the declaration of an identifier for an object is
11101           // a tentative definition and has internal linkage (C99 6.2.2p3), the
11102           // declared type shall not be an incomplete type.
11103           // NOTE: code such as the following
11104           //     static struct s;
11105           //     struct s { int a; };
11106           // is accepted by gcc. Hence here we issue a warning instead of
11107           // an error and we do not invalidate the static declaration.
11108           // NOTE: to avoid multiple warnings, only check the first declaration.
11109           if (Var->isFirstDecl())
11110             RequireCompleteType(Var->getLocation(), Type,
11111                                 diag::ext_typecheck_decl_incomplete_type);
11112         }
11113       }
11114 
11115       // Record the tentative definition; we're done.
11116       if (!Var->isInvalidDecl())
11117         TentativeDefinitions.push_back(Var);
11118       return;
11119     }
11120 
11121     // Provide a specific diagnostic for uninitialized variable
11122     // definitions with incomplete array type.
11123     if (Type->isIncompleteArrayType()) {
11124       Diag(Var->getLocation(),
11125            diag::err_typecheck_incomplete_array_needs_initializer);
11126       Var->setInvalidDecl();
11127       return;
11128     }
11129 
11130     // Provide a specific diagnostic for uninitialized variable
11131     // definitions with reference type.
11132     if (Type->isReferenceType()) {
11133       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
11134         << Var->getDeclName()
11135         << SourceRange(Var->getLocation(), Var->getLocation());
11136       Var->setInvalidDecl();
11137       return;
11138     }
11139 
11140     // Do not attempt to type-check the default initializer for a
11141     // variable with dependent type.
11142     if (Type->isDependentType())
11143       return;
11144 
11145     if (Var->isInvalidDecl())
11146       return;
11147 
11148     if (!Var->hasAttr<AliasAttr>()) {
11149       if (RequireCompleteType(Var->getLocation(),
11150                               Context.getBaseElementType(Type),
11151                               diag::err_typecheck_decl_incomplete_type)) {
11152         Var->setInvalidDecl();
11153         return;
11154       }
11155     } else {
11156       return;
11157     }
11158 
11159     // The variable can not have an abstract class type.
11160     if (RequireNonAbstractType(Var->getLocation(), Type,
11161                                diag::err_abstract_type_in_decl,
11162                                AbstractVariableType)) {
11163       Var->setInvalidDecl();
11164       return;
11165     }
11166 
11167     // Check for jumps past the implicit initializer.  C++0x
11168     // clarifies that this applies to a "variable with automatic
11169     // storage duration", not a "local variable".
11170     // C++11 [stmt.dcl]p3
11171     //   A program that jumps from a point where a variable with automatic
11172     //   storage duration is not in scope to a point where it is in scope is
11173     //   ill-formed unless the variable has scalar type, class type with a
11174     //   trivial default constructor and a trivial destructor, a cv-qualified
11175     //   version of one of these types, or an array of one of the preceding
11176     //   types and is declared without an initializer.
11177     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
11178       if (const RecordType *Record
11179             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
11180         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
11181         // Mark the function (if we're in one) for further checking even if the
11182         // looser rules of C++11 do not require such checks, so that we can
11183         // diagnose incompatibilities with C++98.
11184         if (!CXXRecord->isPOD())
11185           setFunctionHasBranchProtectedScope();
11186       }
11187     }
11188 
11189     // C++03 [dcl.init]p9:
11190     //   If no initializer is specified for an object, and the
11191     //   object is of (possibly cv-qualified) non-POD class type (or
11192     //   array thereof), the object shall be default-initialized; if
11193     //   the object is of const-qualified type, the underlying class
11194     //   type shall have a user-declared default
11195     //   constructor. Otherwise, if no initializer is specified for
11196     //   a non- static object, the object and its subobjects, if
11197     //   any, have an indeterminate initial value); if the object
11198     //   or any of its subobjects are of const-qualified type, the
11199     //   program is ill-formed.
11200     // C++0x [dcl.init]p11:
11201     //   If no initializer is specified for an object, the object is
11202     //   default-initialized; [...].
11203     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
11204     InitializationKind Kind
11205       = InitializationKind::CreateDefault(Var->getLocation());
11206 
11207     InitializationSequence InitSeq(*this, Entity, Kind, None);
11208     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
11209     if (Init.isInvalid())
11210       Var->setInvalidDecl();
11211     else if (Init.get()) {
11212       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
11213       // This is important for template substitution.
11214       Var->setInitStyle(VarDecl::CallInit);
11215     }
11216 
11217     CheckCompleteVariableDeclaration(Var);
11218   }
11219 }
11220 
11221 void Sema::ActOnCXXForRangeDecl(Decl *D) {
11222   // If there is no declaration, there was an error parsing it. Ignore it.
11223   if (!D)
11224     return;
11225 
11226   VarDecl *VD = dyn_cast<VarDecl>(D);
11227   if (!VD) {
11228     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
11229     D->setInvalidDecl();
11230     return;
11231   }
11232 
11233   VD->setCXXForRangeDecl(true);
11234 
11235   // for-range-declaration cannot be given a storage class specifier.
11236   int Error = -1;
11237   switch (VD->getStorageClass()) {
11238   case SC_None:
11239     break;
11240   case SC_Extern:
11241     Error = 0;
11242     break;
11243   case SC_Static:
11244     Error = 1;
11245     break;
11246   case SC_PrivateExtern:
11247     Error = 2;
11248     break;
11249   case SC_Auto:
11250     Error = 3;
11251     break;
11252   case SC_Register:
11253     Error = 4;
11254     break;
11255   }
11256   if (Error != -1) {
11257     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
11258       << VD->getDeclName() << Error;
11259     D->setInvalidDecl();
11260   }
11261 }
11262 
11263 StmtResult
11264 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
11265                                  IdentifierInfo *Ident,
11266                                  ParsedAttributes &Attrs,
11267                                  SourceLocation AttrEnd) {
11268   // C++1y [stmt.iter]p1:
11269   //   A range-based for statement of the form
11270   //      for ( for-range-identifier : for-range-initializer ) statement
11271   //   is equivalent to
11272   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
11273   DeclSpec DS(Attrs.getPool().getFactory());
11274 
11275   const char *PrevSpec;
11276   unsigned DiagID;
11277   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
11278                      getPrintingPolicy());
11279 
11280   Declarator D(DS, DeclaratorContext::ForContext);
11281   D.SetIdentifier(Ident, IdentLoc);
11282   D.takeAttributes(Attrs, AttrEnd);
11283 
11284   ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory());
11285   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
11286                 EmptyAttrs, IdentLoc);
11287   Decl *Var = ActOnDeclarator(S, D);
11288   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
11289   FinalizeDeclaration(Var);
11290   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
11291                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
11292 }
11293 
11294 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
11295   if (var->isInvalidDecl()) return;
11296 
11297   if (getLangOpts().OpenCL) {
11298     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
11299     // initialiser
11300     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
11301         !var->hasInit()) {
11302       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
11303           << 1 /*Init*/;
11304       var->setInvalidDecl();
11305       return;
11306     }
11307   }
11308 
11309   // In Objective-C, don't allow jumps past the implicit initialization of a
11310   // local retaining variable.
11311   if (getLangOpts().ObjC1 &&
11312       var->hasLocalStorage()) {
11313     switch (var->getType().getObjCLifetime()) {
11314     case Qualifiers::OCL_None:
11315     case Qualifiers::OCL_ExplicitNone:
11316     case Qualifiers::OCL_Autoreleasing:
11317       break;
11318 
11319     case Qualifiers::OCL_Weak:
11320     case Qualifiers::OCL_Strong:
11321       setFunctionHasBranchProtectedScope();
11322       break;
11323     }
11324   }
11325 
11326   if (var->hasLocalStorage() &&
11327       var->getType().isDestructedType() == QualType::DK_nontrivial_c_struct)
11328     setFunctionHasBranchProtectedScope();
11329 
11330   // Warn about externally-visible variables being defined without a
11331   // prior declaration.  We only want to do this for global
11332   // declarations, but we also specifically need to avoid doing it for
11333   // class members because the linkage of an anonymous class can
11334   // change if it's later given a typedef name.
11335   if (var->isThisDeclarationADefinition() &&
11336       var->getDeclContext()->getRedeclContext()->isFileContext() &&
11337       var->isExternallyVisible() && var->hasLinkage() &&
11338       !var->isInline() && !var->getDescribedVarTemplate() &&
11339       !isTemplateInstantiation(var->getTemplateSpecializationKind()) &&
11340       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
11341                                   var->getLocation())) {
11342     // Find a previous declaration that's not a definition.
11343     VarDecl *prev = var->getPreviousDecl();
11344     while (prev && prev->isThisDeclarationADefinition())
11345       prev = prev->getPreviousDecl();
11346 
11347     if (!prev)
11348       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
11349   }
11350 
11351   // Cache the result of checking for constant initialization.
11352   Optional<bool> CacheHasConstInit;
11353   const Expr *CacheCulprit;
11354   auto checkConstInit = [&]() mutable {
11355     if (!CacheHasConstInit)
11356       CacheHasConstInit = var->getInit()->isConstantInitializer(
11357             Context, var->getType()->isReferenceType(), &CacheCulprit);
11358     return *CacheHasConstInit;
11359   };
11360 
11361   if (var->getTLSKind() == VarDecl::TLS_Static) {
11362     if (var->getType().isDestructedType()) {
11363       // GNU C++98 edits for __thread, [basic.start.term]p3:
11364       //   The type of an object with thread storage duration shall not
11365       //   have a non-trivial destructor.
11366       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
11367       if (getLangOpts().CPlusPlus11)
11368         Diag(var->getLocation(), diag::note_use_thread_local);
11369     } else if (getLangOpts().CPlusPlus && var->hasInit()) {
11370       if (!checkConstInit()) {
11371         // GNU C++98 edits for __thread, [basic.start.init]p4:
11372         //   An object of thread storage duration shall not require dynamic
11373         //   initialization.
11374         // FIXME: Need strict checking here.
11375         Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init)
11376           << CacheCulprit->getSourceRange();
11377         if (getLangOpts().CPlusPlus11)
11378           Diag(var->getLocation(), diag::note_use_thread_local);
11379       }
11380     }
11381   }
11382 
11383   // Apply section attributes and pragmas to global variables.
11384   bool GlobalStorage = var->hasGlobalStorage();
11385   if (GlobalStorage && var->isThisDeclarationADefinition() &&
11386       !inTemplateInstantiation()) {
11387     PragmaStack<StringLiteral *> *Stack = nullptr;
11388     int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read;
11389     if (var->getType().isConstQualified())
11390       Stack = &ConstSegStack;
11391     else if (!var->getInit()) {
11392       Stack = &BSSSegStack;
11393       SectionFlags |= ASTContext::PSF_Write;
11394     } else {
11395       Stack = &DataSegStack;
11396       SectionFlags |= ASTContext::PSF_Write;
11397     }
11398     if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) {
11399       var->addAttr(SectionAttr::CreateImplicit(
11400           Context, SectionAttr::Declspec_allocate,
11401           Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation));
11402     }
11403     if (const SectionAttr *SA = var->getAttr<SectionAttr>())
11404       if (UnifySection(SA->getName(), SectionFlags, var))
11405         var->dropAttr<SectionAttr>();
11406 
11407     // Apply the init_seg attribute if this has an initializer.  If the
11408     // initializer turns out to not be dynamic, we'll end up ignoring this
11409     // attribute.
11410     if (CurInitSeg && var->getInit())
11411       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
11412                                                CurInitSegLoc));
11413   }
11414 
11415   // All the following checks are C++ only.
11416   if (!getLangOpts().CPlusPlus) {
11417       // If this variable must be emitted, add it as an initializer for the
11418       // current module.
11419      if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11420        Context.addModuleInitializer(ModuleScopes.back().Module, var);
11421      return;
11422   }
11423 
11424   if (auto *DD = dyn_cast<DecompositionDecl>(var))
11425     CheckCompleteDecompositionDeclaration(DD);
11426 
11427   QualType type = var->getType();
11428   if (type->isDependentType()) return;
11429 
11430   // __block variables might require us to capture a copy-initializer.
11431   if (var->hasAttr<BlocksAttr>()) {
11432     // It's currently invalid to ever have a __block variable with an
11433     // array type; should we diagnose that here?
11434 
11435     // Regardless, we don't want to ignore array nesting when
11436     // constructing this copy.
11437     if (type->isStructureOrClassType()) {
11438       EnterExpressionEvaluationContext scope(
11439           *this, ExpressionEvaluationContext::PotentiallyEvaluated);
11440       SourceLocation poi = var->getLocation();
11441       Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
11442       ExprResult result
11443         = PerformMoveOrCopyInitialization(
11444             InitializedEntity::InitializeBlock(poi, type, false),
11445             var, var->getType(), varRef, /*AllowNRVO=*/true);
11446       if (!result.isInvalid()) {
11447         result = MaybeCreateExprWithCleanups(result);
11448         Expr *init = result.getAs<Expr>();
11449         Context.setBlockVarCopyInits(var, init);
11450       }
11451     }
11452   }
11453 
11454   Expr *Init = var->getInit();
11455   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
11456   QualType baseType = Context.getBaseElementType(type);
11457 
11458   if (Init && !Init->isValueDependent()) {
11459     if (var->isConstexpr()) {
11460       SmallVector<PartialDiagnosticAt, 8> Notes;
11461       if (!var->evaluateValue(Notes) || !var->isInitICE()) {
11462         SourceLocation DiagLoc = var->getLocation();
11463         // If the note doesn't add any useful information other than a source
11464         // location, fold it into the primary diagnostic.
11465         if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11466               diag::note_invalid_subexpr_in_const_expr) {
11467           DiagLoc = Notes[0].first;
11468           Notes.clear();
11469         }
11470         Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
11471           << var << Init->getSourceRange();
11472         for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11473           Diag(Notes[I].first, Notes[I].second);
11474       }
11475     } else if (var->isUsableInConstantExpressions(Context)) {
11476       // Check whether the initializer of a const variable of integral or
11477       // enumeration type is an ICE now, since we can't tell whether it was
11478       // initialized by a constant expression if we check later.
11479       var->checkInitIsICE();
11480     }
11481 
11482     // Don't emit further diagnostics about constexpr globals since they
11483     // were just diagnosed.
11484     if (!var->isConstexpr() && GlobalStorage &&
11485             var->hasAttr<RequireConstantInitAttr>()) {
11486       // FIXME: Need strict checking in C++03 here.
11487       bool DiagErr = getLangOpts().CPlusPlus11
11488           ? !var->checkInitIsICE() : !checkConstInit();
11489       if (DiagErr) {
11490         auto attr = var->getAttr<RequireConstantInitAttr>();
11491         Diag(var->getLocation(), diag::err_require_constant_init_failed)
11492           << Init->getSourceRange();
11493         Diag(attr->getLocation(), diag::note_declared_required_constant_init_here)
11494           << attr->getRange();
11495         if (getLangOpts().CPlusPlus11) {
11496           APValue Value;
11497           SmallVector<PartialDiagnosticAt, 8> Notes;
11498           Init->EvaluateAsInitializer(Value, getASTContext(), var, Notes);
11499           for (auto &it : Notes)
11500             Diag(it.first, it.second);
11501         } else {
11502           Diag(CacheCulprit->getExprLoc(),
11503                diag::note_invalid_subexpr_in_const_expr)
11504               << CacheCulprit->getSourceRange();
11505         }
11506       }
11507     }
11508     else if (!var->isConstexpr() && IsGlobal &&
11509              !getDiagnostics().isIgnored(diag::warn_global_constructor,
11510                                     var->getLocation())) {
11511       // Warn about globals which don't have a constant initializer.  Don't
11512       // warn about globals with a non-trivial destructor because we already
11513       // warned about them.
11514       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
11515       if (!(RD && !RD->hasTrivialDestructor())) {
11516         if (!checkConstInit())
11517           Diag(var->getLocation(), diag::warn_global_constructor)
11518             << Init->getSourceRange();
11519       }
11520     }
11521   }
11522 
11523   // Require the destructor.
11524   if (const RecordType *recordType = baseType->getAs<RecordType>())
11525     FinalizeVarWithDestructor(var, recordType);
11526 
11527   // If this variable must be emitted, add it as an initializer for the current
11528   // module.
11529   if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
11530     Context.addModuleInitializer(ModuleScopes.back().Module, var);
11531 }
11532 
11533 /// \brief Determines if a variable's alignment is dependent.
11534 static bool hasDependentAlignment(VarDecl *VD) {
11535   if (VD->getType()->isDependentType())
11536     return true;
11537   for (auto *I : VD->specific_attrs<AlignedAttr>())
11538     if (I->isAlignmentDependent())
11539       return true;
11540   return false;
11541 }
11542 
11543 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
11544 /// any semantic actions necessary after any initializer has been attached.
11545 void Sema::FinalizeDeclaration(Decl *ThisDecl) {
11546   // Note that we are no longer parsing the initializer for this declaration.
11547   ParsingInitForAutoVars.erase(ThisDecl);
11548 
11549   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
11550   if (!VD)
11551     return;
11552 
11553   // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active
11554   if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() &&
11555       !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) {
11556     if (PragmaClangBSSSection.Valid)
11557       VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit(Context,
11558                                                             PragmaClangBSSSection.SectionName,
11559                                                             PragmaClangBSSSection.PragmaLocation));
11560     if (PragmaClangDataSection.Valid)
11561       VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit(Context,
11562                                                              PragmaClangDataSection.SectionName,
11563                                                              PragmaClangDataSection.PragmaLocation));
11564     if (PragmaClangRodataSection.Valid)
11565       VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit(Context,
11566                                                                PragmaClangRodataSection.SectionName,
11567                                                                PragmaClangRodataSection.PragmaLocation));
11568   }
11569 
11570   if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) {
11571     for (auto *BD : DD->bindings()) {
11572       FinalizeDeclaration(BD);
11573     }
11574   }
11575 
11576   checkAttributesAfterMerging(*this, *VD);
11577 
11578   // Perform TLS alignment check here after attributes attached to the variable
11579   // which may affect the alignment have been processed. Only perform the check
11580   // if the target has a maximum TLS alignment (zero means no constraints).
11581   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
11582     // Protect the check so that it's not performed on dependent types and
11583     // dependent alignments (we can't determine the alignment in that case).
11584     if (VD->getTLSKind() && !hasDependentAlignment(VD) &&
11585         !VD->isInvalidDecl()) {
11586       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
11587       if (Context.getDeclAlign(VD) > MaxAlignChars) {
11588         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
11589           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
11590           << (unsigned)MaxAlignChars.getQuantity();
11591       }
11592     }
11593   }
11594 
11595   if (VD->isStaticLocal()) {
11596     if (FunctionDecl *FD =
11597             dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) {
11598       // Static locals inherit dll attributes from their function.
11599       if (Attr *A = getDLLAttr(FD)) {
11600         auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
11601         NewAttr->setInherited(true);
11602         VD->addAttr(NewAttr);
11603       }
11604       // CUDA E.2.9.4: Within the body of a __device__ or __global__
11605       // function, only __shared__ variables may be declared with
11606       // static storage class.
11607       if (getLangOpts().CUDA && !VD->hasAttr<CUDASharedAttr>() &&
11608           CUDADiagIfDeviceCode(VD->getLocation(),
11609                                diag::err_device_static_local_var)
11610               << CurrentCUDATarget())
11611         VD->setInvalidDecl();
11612     }
11613   }
11614 
11615   // Perform check for initializers of device-side global variables.
11616   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
11617   // 7.5). We must also apply the same checks to all __shared__
11618   // variables whether they are local or not. CUDA also allows
11619   // constant initializers for __constant__ and __device__ variables.
11620   if (getLangOpts().CUDA) {
11621     const Expr *Init = VD->getInit();
11622     if (Init && VD->hasGlobalStorage()) {
11623       if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
11624           VD->hasAttr<CUDASharedAttr>()) {
11625         assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>());
11626         bool AllowedInit = false;
11627         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
11628           AllowedInit =
11629               isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
11630         // We'll allow constant initializers even if it's a non-empty
11631         // constructor according to CUDA rules. This deviates from NVCC,
11632         // but allows us to handle things like constexpr constructors.
11633         if (!AllowedInit &&
11634             (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>()))
11635           AllowedInit = VD->getInit()->isConstantInitializer(
11636               Context, VD->getType()->isReferenceType());
11637 
11638         // Also make sure that destructor, if there is one, is empty.
11639         if (AllowedInit)
11640           if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl())
11641             AllowedInit =
11642                 isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor());
11643 
11644         if (!AllowedInit) {
11645           Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
11646                                       ? diag::err_shared_var_init
11647                                       : diag::err_dynamic_var_init)
11648               << Init->getSourceRange();
11649           VD->setInvalidDecl();
11650         }
11651       } else {
11652         // This is a host-side global variable.  Check that the initializer is
11653         // callable from the host side.
11654         const FunctionDecl *InitFn = nullptr;
11655         if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) {
11656           InitFn = CE->getConstructor();
11657         } else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) {
11658           InitFn = CE->getDirectCallee();
11659         }
11660         if (InitFn) {
11661           CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn);
11662           if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) {
11663             Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer)
11664                 << InitFnTarget << InitFn;
11665             Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn;
11666             VD->setInvalidDecl();
11667           }
11668         }
11669       }
11670     }
11671   }
11672 
11673   // Grab the dllimport or dllexport attribute off of the VarDecl.
11674   const InheritableAttr *DLLAttr = getDLLAttr(VD);
11675 
11676   // Imported static data members cannot be defined out-of-line.
11677   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
11678     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
11679         VD->isThisDeclarationADefinition()) {
11680       // We allow definitions of dllimport class template static data members
11681       // with a warning.
11682       CXXRecordDecl *Context =
11683         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
11684       bool IsClassTemplateMember =
11685           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
11686           Context->getDescribedClassTemplate();
11687 
11688       Diag(VD->getLocation(),
11689            IsClassTemplateMember
11690                ? diag::warn_attribute_dllimport_static_field_definition
11691                : diag::err_attribute_dllimport_static_field_definition);
11692       Diag(IA->getLocation(), diag::note_attribute);
11693       if (!IsClassTemplateMember)
11694         VD->setInvalidDecl();
11695     }
11696   }
11697 
11698   // dllimport/dllexport variables cannot be thread local, their TLS index
11699   // isn't exported with the variable.
11700   if (DLLAttr && VD->getTLSKind()) {
11701     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
11702     if (F && getDLLAttr(F)) {
11703       assert(VD->isStaticLocal());
11704       // But if this is a static local in a dlimport/dllexport function, the
11705       // function will never be inlined, which means the var would never be
11706       // imported, so having it marked import/export is safe.
11707     } else {
11708       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
11709                                                                     << DLLAttr;
11710       VD->setInvalidDecl();
11711     }
11712   }
11713 
11714   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
11715     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
11716       Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
11717       VD->dropAttr<UsedAttr>();
11718     }
11719   }
11720 
11721   const DeclContext *DC = VD->getDeclContext();
11722   // If there's a #pragma GCC visibility in scope, and this isn't a class
11723   // member, set the visibility of this variable.
11724   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
11725     AddPushedVisibilityAttribute(VD);
11726 
11727   // FIXME: Warn on unused var template partial specializations.
11728   if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD))
11729     MarkUnusedFileScopedDecl(VD);
11730 
11731   // Now we have parsed the initializer and can update the table of magic
11732   // tag values.
11733   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
11734       !VD->getType()->isIntegralOrEnumerationType())
11735     return;
11736 
11737   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
11738     const Expr *MagicValueExpr = VD->getInit();
11739     if (!MagicValueExpr) {
11740       continue;
11741     }
11742     llvm::APSInt MagicValueInt;
11743     if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
11744       Diag(I->getRange().getBegin(),
11745            diag::err_type_tag_for_datatype_not_ice)
11746         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11747       continue;
11748     }
11749     if (MagicValueInt.getActiveBits() > 64) {
11750       Diag(I->getRange().getBegin(),
11751            diag::err_type_tag_for_datatype_too_large)
11752         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
11753       continue;
11754     }
11755     uint64_t MagicValue = MagicValueInt.getZExtValue();
11756     RegisterTypeTagForDatatype(I->getArgumentKind(),
11757                                MagicValue,
11758                                I->getMatchingCType(),
11759                                I->getLayoutCompatible(),
11760                                I->getMustBeNull());
11761   }
11762 }
11763 
11764 static bool hasDeducedAuto(DeclaratorDecl *DD) {
11765   auto *VD = dyn_cast<VarDecl>(DD);
11766   return VD && !VD->getType()->hasAutoForTrailingReturnType();
11767 }
11768 
11769 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
11770                                                    ArrayRef<Decl *> Group) {
11771   SmallVector<Decl*, 8> Decls;
11772 
11773   if (DS.isTypeSpecOwned())
11774     Decls.push_back(DS.getRepAsDecl());
11775 
11776   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
11777   DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr;
11778   bool DiagnosedMultipleDecomps = false;
11779   DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr;
11780   bool DiagnosedNonDeducedAuto = false;
11781 
11782   for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11783     if (Decl *D = Group[i]) {
11784       // For declarators, there are some additional syntactic-ish checks we need
11785       // to perform.
11786       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
11787         if (!FirstDeclaratorInGroup)
11788           FirstDeclaratorInGroup = DD;
11789         if (!FirstDecompDeclaratorInGroup)
11790           FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D);
11791         if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() &&
11792             !hasDeducedAuto(DD))
11793           FirstNonDeducedAutoInGroup = DD;
11794 
11795         if (FirstDeclaratorInGroup != DD) {
11796           // A decomposition declaration cannot be combined with any other
11797           // declaration in the same group.
11798           if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) {
11799             Diag(FirstDecompDeclaratorInGroup->getLocation(),
11800                  diag::err_decomp_decl_not_alone)
11801                 << FirstDeclaratorInGroup->getSourceRange()
11802                 << DD->getSourceRange();
11803             DiagnosedMultipleDecomps = true;
11804           }
11805 
11806           // A declarator that uses 'auto' in any way other than to declare a
11807           // variable with a deduced type cannot be combined with any other
11808           // declarator in the same group.
11809           if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) {
11810             Diag(FirstNonDeducedAutoInGroup->getLocation(),
11811                  diag::err_auto_non_deduced_not_alone)
11812                 << FirstNonDeducedAutoInGroup->getType()
11813                        ->hasAutoForTrailingReturnType()
11814                 << FirstDeclaratorInGroup->getSourceRange()
11815                 << DD->getSourceRange();
11816             DiagnosedNonDeducedAuto = true;
11817           }
11818         }
11819       }
11820 
11821       Decls.push_back(D);
11822     }
11823   }
11824 
11825   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
11826     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
11827       handleTagNumbering(Tag, S);
11828       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
11829           getLangOpts().CPlusPlus)
11830         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
11831     }
11832   }
11833 
11834   return BuildDeclaratorGroup(Decls);
11835 }
11836 
11837 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
11838 /// group, performing any necessary semantic checking.
11839 Sema::DeclGroupPtrTy
11840 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) {
11841   // C++14 [dcl.spec.auto]p7: (DR1347)
11842   //   If the type that replaces the placeholder type is not the same in each
11843   //   deduction, the program is ill-formed.
11844   if (Group.size() > 1) {
11845     QualType Deduced;
11846     VarDecl *DeducedDecl = nullptr;
11847     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
11848       VarDecl *D = dyn_cast<VarDecl>(Group[i]);
11849       if (!D || D->isInvalidDecl())
11850         break;
11851       DeducedType *DT = D->getType()->getContainedDeducedType();
11852       if (!DT || DT->getDeducedType().isNull())
11853         continue;
11854       if (Deduced.isNull()) {
11855         Deduced = DT->getDeducedType();
11856         DeducedDecl = D;
11857       } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) {
11858         auto *AT = dyn_cast<AutoType>(DT);
11859         Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
11860              diag::err_auto_different_deductions)
11861           << (AT ? (unsigned)AT->getKeyword() : 3)
11862           << Deduced << DeducedDecl->getDeclName()
11863           << DT->getDeducedType() << D->getDeclName()
11864           << DeducedDecl->getInit()->getSourceRange()
11865           << D->getInit()->getSourceRange();
11866         D->setInvalidDecl();
11867         break;
11868       }
11869     }
11870   }
11871 
11872   ActOnDocumentableDecls(Group);
11873 
11874   return DeclGroupPtrTy::make(
11875       DeclGroupRef::Create(Context, Group.data(), Group.size()));
11876 }
11877 
11878 void Sema::ActOnDocumentableDecl(Decl *D) {
11879   ActOnDocumentableDecls(D);
11880 }
11881 
11882 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
11883   // Don't parse the comment if Doxygen diagnostics are ignored.
11884   if (Group.empty() || !Group[0])
11885     return;
11886 
11887   if (Diags.isIgnored(diag::warn_doc_param_not_found,
11888                       Group[0]->getLocation()) &&
11889       Diags.isIgnored(diag::warn_unknown_comment_command_name,
11890                       Group[0]->getLocation()))
11891     return;
11892 
11893   if (Group.size() >= 2) {
11894     // This is a decl group.  Normally it will contain only declarations
11895     // produced from declarator list.  But in case we have any definitions or
11896     // additional declaration references:
11897     //   'typedef struct S {} S;'
11898     //   'typedef struct S *S;'
11899     //   'struct S *pS;'
11900     // FinalizeDeclaratorGroup adds these as separate declarations.
11901     Decl *MaybeTagDecl = Group[0];
11902     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
11903       Group = Group.slice(1);
11904     }
11905   }
11906 
11907   // See if there are any new comments that are not attached to a decl.
11908   ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
11909   if (!Comments.empty() &&
11910       !Comments.back()->isAttached()) {
11911     // There is at least one comment that not attached to a decl.
11912     // Maybe it should be attached to one of these decls?
11913     //
11914     // Note that this way we pick up not only comments that precede the
11915     // declaration, but also comments that *follow* the declaration -- thanks to
11916     // the lookahead in the lexer: we've consumed the semicolon and looked
11917     // ahead through comments.
11918     for (unsigned i = 0, e = Group.size(); i != e; ++i)
11919       Context.getCommentForDecl(Group[i], &PP);
11920   }
11921 }
11922 
11923 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
11924 /// to introduce parameters into function prototype scope.
11925 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
11926   const DeclSpec &DS = D.getDeclSpec();
11927 
11928   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
11929 
11930   // C++03 [dcl.stc]p2 also permits 'auto'.
11931   StorageClass SC = SC_None;
11932   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
11933     SC = SC_Register;
11934     // In C++11, the 'register' storage class specifier is deprecated.
11935     // In C++17, it is not allowed, but we tolerate it as an extension.
11936     if (getLangOpts().CPlusPlus11) {
11937       Diag(DS.getStorageClassSpecLoc(),
11938            getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
11939                                      : diag::warn_deprecated_register)
11940         << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
11941     }
11942   } else if (getLangOpts().CPlusPlus &&
11943              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
11944     SC = SC_Auto;
11945   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
11946     Diag(DS.getStorageClassSpecLoc(),
11947          diag::err_invalid_storage_class_in_func_decl);
11948     D.getMutableDeclSpec().ClearStorageClassSpecs();
11949   }
11950 
11951   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
11952     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
11953       << DeclSpec::getSpecifierName(TSCS);
11954   if (DS.isInlineSpecified())
11955     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
11956         << getLangOpts().CPlusPlus17;
11957   if (DS.isConstexprSpecified())
11958     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
11959       << 0;
11960 
11961   DiagnoseFunctionSpecifiers(DS);
11962 
11963   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
11964   QualType parmDeclType = TInfo->getType();
11965 
11966   if (getLangOpts().CPlusPlus) {
11967     // Check that there are no default arguments inside the type of this
11968     // parameter.
11969     CheckExtraCXXDefaultArguments(D);
11970 
11971     // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
11972     if (D.getCXXScopeSpec().isSet()) {
11973       Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
11974         << D.getCXXScopeSpec().getRange();
11975       D.getCXXScopeSpec().clear();
11976     }
11977   }
11978 
11979   // Ensure we have a valid name
11980   IdentifierInfo *II = nullptr;
11981   if (D.hasName()) {
11982     II = D.getIdentifier();
11983     if (!II) {
11984       Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
11985         << GetNameForDeclarator(D).getName();
11986       D.setInvalidType(true);
11987     }
11988   }
11989 
11990   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
11991   if (II) {
11992     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
11993                    ForVisibleRedeclaration);
11994     LookupName(R, S);
11995     if (R.isSingleResult()) {
11996       NamedDecl *PrevDecl = R.getFoundDecl();
11997       if (PrevDecl->isTemplateParameter()) {
11998         // Maybe we will complain about the shadowed template parameter.
11999         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
12000         // Just pretend that we didn't see the previous declaration.
12001         PrevDecl = nullptr;
12002       } else if (S->isDeclScope(PrevDecl)) {
12003         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
12004         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
12005 
12006         // Recover by removing the name
12007         II = nullptr;
12008         D.SetIdentifier(nullptr, D.getIdentifierLoc());
12009         D.setInvalidType(true);
12010       }
12011     }
12012   }
12013 
12014   // Temporarily put parameter variables in the translation unit, not
12015   // the enclosing context.  This prevents them from accidentally
12016   // looking like class members in C++.
12017   ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
12018                                     D.getLocStart(),
12019                                     D.getIdentifierLoc(), II,
12020                                     parmDeclType, TInfo,
12021                                     SC);
12022 
12023   if (D.isInvalidType())
12024     New->setInvalidDecl();
12025 
12026   assert(S->isFunctionPrototypeScope());
12027   assert(S->getFunctionPrototypeDepth() >= 1);
12028   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
12029                     S->getNextFunctionPrototypeIndex());
12030 
12031   // Add the parameter declaration into this scope.
12032   S->AddDecl(New);
12033   if (II)
12034     IdResolver.AddDecl(New);
12035 
12036   ProcessDeclAttributes(S, New, D);
12037 
12038   if (D.getDeclSpec().isModulePrivateSpecified())
12039     Diag(New->getLocation(), diag::err_module_private_local)
12040       << 1 << New->getDeclName()
12041       << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
12042       << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
12043 
12044   if (New->hasAttr<BlocksAttr>()) {
12045     Diag(New->getLocation(), diag::err_block_on_nonlocal);
12046   }
12047   return New;
12048 }
12049 
12050 /// \brief Synthesizes a variable for a parameter arising from a
12051 /// typedef.
12052 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
12053                                               SourceLocation Loc,
12054                                               QualType T) {
12055   /* FIXME: setting StartLoc == Loc.
12056      Would it be worth to modify callers so as to provide proper source
12057      location for the unnamed parameters, embedding the parameter's type? */
12058   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
12059                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
12060                                            SC_None, nullptr);
12061   Param->setImplicit();
12062   return Param;
12063 }
12064 
12065 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) {
12066   // Don't diagnose unused-parameter errors in template instantiations; we
12067   // will already have done so in the template itself.
12068   if (inTemplateInstantiation())
12069     return;
12070 
12071   for (const ParmVarDecl *Parameter : Parameters) {
12072     if (!Parameter->isReferenced() && Parameter->getDeclName() &&
12073         !Parameter->hasAttr<UnusedAttr>()) {
12074       Diag(Parameter->getLocation(), diag::warn_unused_parameter)
12075         << Parameter->getDeclName();
12076     }
12077   }
12078 }
12079 
12080 void Sema::DiagnoseSizeOfParametersAndReturnValue(
12081     ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) {
12082   if (LangOpts.NumLargeByValueCopy == 0) // No check.
12083     return;
12084 
12085   // Warn if the return value is pass-by-value and larger than the specified
12086   // threshold.
12087   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
12088     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
12089     if (Size > LangOpts.NumLargeByValueCopy)
12090       Diag(D->getLocation(), diag::warn_return_value_size)
12091           << D->getDeclName() << Size;
12092   }
12093 
12094   // Warn if any parameter is pass-by-value and larger than the specified
12095   // threshold.
12096   for (const ParmVarDecl *Parameter : Parameters) {
12097     QualType T = Parameter->getType();
12098     if (T->isDependentType() || !T.isPODType(Context))
12099       continue;
12100     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
12101     if (Size > LangOpts.NumLargeByValueCopy)
12102       Diag(Parameter->getLocation(), diag::warn_parameter_size)
12103           << Parameter->getDeclName() << Size;
12104   }
12105 }
12106 
12107 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
12108                                   SourceLocation NameLoc, IdentifierInfo *Name,
12109                                   QualType T, TypeSourceInfo *TSInfo,
12110                                   StorageClass SC) {
12111   // In ARC, infer a lifetime qualifier for appropriate parameter types.
12112   if (getLangOpts().ObjCAutoRefCount &&
12113       T.getObjCLifetime() == Qualifiers::OCL_None &&
12114       T->isObjCLifetimeType()) {
12115 
12116     Qualifiers::ObjCLifetime lifetime;
12117 
12118     // Special cases for arrays:
12119     //   - if it's const, use __unsafe_unretained
12120     //   - otherwise, it's an error
12121     if (T->isArrayType()) {
12122       if (!T.isConstQualified()) {
12123         DelayedDiagnostics.add(
12124             sema::DelayedDiagnostic::makeForbiddenType(
12125             NameLoc, diag::err_arc_array_param_no_ownership, T, false));
12126       }
12127       lifetime = Qualifiers::OCL_ExplicitNone;
12128     } else {
12129       lifetime = T->getObjCARCImplicitLifetime();
12130     }
12131     T = Context.getLifetimeQualifiedType(T, lifetime);
12132   }
12133 
12134   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
12135                                          Context.getAdjustedParameterType(T),
12136                                          TSInfo, SC, nullptr);
12137 
12138   // Parameters can not be abstract class types.
12139   // For record types, this is done by the AbstractClassUsageDiagnoser once
12140   // the class has been completely parsed.
12141   if (!CurContext->isRecord() &&
12142       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
12143                              AbstractParamType))
12144     New->setInvalidDecl();
12145 
12146   // Parameter declarators cannot be interface types. All ObjC objects are
12147   // passed by reference.
12148   if (T->isObjCObjectType()) {
12149     SourceLocation TypeEndLoc =
12150         getLocForEndOfToken(TSInfo->getTypeLoc().getLocEnd());
12151     Diag(NameLoc,
12152          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
12153       << FixItHint::CreateInsertion(TypeEndLoc, "*");
12154     T = Context.getObjCObjectPointerType(T);
12155     New->setType(T);
12156   }
12157 
12158   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
12159   // duration shall not be qualified by an address-space qualifier."
12160   // Since all parameters have automatic store duration, they can not have
12161   // an address space.
12162   if (T.getAddressSpace() != LangAS::Default &&
12163       // OpenCL allows function arguments declared to be an array of a type
12164       // to be qualified with an address space.
12165       !(getLangOpts().OpenCL &&
12166         (T->isArrayType() || T.getAddressSpace() == LangAS::opencl_private))) {
12167     Diag(NameLoc, diag::err_arg_with_address_space);
12168     New->setInvalidDecl();
12169   }
12170 
12171   return New;
12172 }
12173 
12174 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
12175                                            SourceLocation LocAfterDecls) {
12176   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
12177 
12178   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
12179   // for a K&R function.
12180   if (!FTI.hasPrototype) {
12181     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
12182       --i;
12183       if (FTI.Params[i].Param == nullptr) {
12184         SmallString<256> Code;
12185         llvm::raw_svector_ostream(Code)
12186             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
12187         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
12188             << FTI.Params[i].Ident
12189             << FixItHint::CreateInsertion(LocAfterDecls, Code);
12190 
12191         // Implicitly declare the argument as type 'int' for lack of a better
12192         // type.
12193         AttributeFactory attrs;
12194         DeclSpec DS(attrs);
12195         const char* PrevSpec; // unused
12196         unsigned DiagID; // unused
12197         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
12198                            DiagID, Context.getPrintingPolicy());
12199         // Use the identifier location for the type source range.
12200         DS.SetRangeStart(FTI.Params[i].IdentLoc);
12201         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
12202         Declarator ParamD(DS, DeclaratorContext::KNRTypeListContext);
12203         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
12204         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
12205       }
12206     }
12207   }
12208 }
12209 
12210 Decl *
12211 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
12212                               MultiTemplateParamsArg TemplateParameterLists,
12213                               SkipBodyInfo *SkipBody) {
12214   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
12215   assert(D.isFunctionDeclarator() && "Not a function declarator!");
12216   Scope *ParentScope = FnBodyScope->getParent();
12217 
12218   D.setFunctionDefinitionKind(FDK_Definition);
12219   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
12220   return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
12221 }
12222 
12223 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) {
12224   Consumer.HandleInlineFunctionDefinition(D);
12225 }
12226 
12227 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
12228                              const FunctionDecl*& PossibleZeroParamPrototype) {
12229   // Don't warn about invalid declarations.
12230   if (FD->isInvalidDecl())
12231     return false;
12232 
12233   // Or declarations that aren't global.
12234   if (!FD->isGlobal())
12235     return false;
12236 
12237   // Don't warn about C++ member functions.
12238   if (isa<CXXMethodDecl>(FD))
12239     return false;
12240 
12241   // Don't warn about 'main'.
12242   if (FD->isMain())
12243     return false;
12244 
12245   // Don't warn about inline functions.
12246   if (FD->isInlined())
12247     return false;
12248 
12249   // Don't warn about function templates.
12250   if (FD->getDescribedFunctionTemplate())
12251     return false;
12252 
12253   // Don't warn about function template specializations.
12254   if (FD->isFunctionTemplateSpecialization())
12255     return false;
12256 
12257   // Don't warn for OpenCL kernels.
12258   if (FD->hasAttr<OpenCLKernelAttr>())
12259     return false;
12260 
12261   // Don't warn on explicitly deleted functions.
12262   if (FD->isDeleted())
12263     return false;
12264 
12265   bool MissingPrototype = true;
12266   for (const FunctionDecl *Prev = FD->getPreviousDecl();
12267        Prev; Prev = Prev->getPreviousDecl()) {
12268     // Ignore any declarations that occur in function or method
12269     // scope, because they aren't visible from the header.
12270     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
12271       continue;
12272 
12273     MissingPrototype = !Prev->getType()->isFunctionProtoType();
12274     if (FD->getNumParams() == 0)
12275       PossibleZeroParamPrototype = Prev;
12276     break;
12277   }
12278 
12279   return MissingPrototype;
12280 }
12281 
12282 void
12283 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
12284                                    const FunctionDecl *EffectiveDefinition,
12285                                    SkipBodyInfo *SkipBody) {
12286   const FunctionDecl *Definition = EffectiveDefinition;
12287   if (!Definition && !FD->isDefined(Definition) && !FD->isCXXClassMember()) {
12288     // If this is a friend function defined in a class template, it does not
12289     // have a body until it is used, nevertheless it is a definition, see
12290     // [temp.inst]p2:
12291     //
12292     // ... for the purpose of determining whether an instantiated redeclaration
12293     // is valid according to [basic.def.odr] and [class.mem], a declaration that
12294     // corresponds to a definition in the template is considered to be a
12295     // definition.
12296     //
12297     // The following code must produce redefinition error:
12298     //
12299     //     template<typename T> struct C20 { friend void func_20() {} };
12300     //     C20<int> c20i;
12301     //     void func_20() {}
12302     //
12303     for (auto I : FD->redecls()) {
12304       if (I != FD && !I->isInvalidDecl() &&
12305           I->getFriendObjectKind() != Decl::FOK_None) {
12306         if (FunctionDecl *Original = I->getInstantiatedFromMemberFunction()) {
12307           if (FunctionDecl *OrigFD = FD->getInstantiatedFromMemberFunction()) {
12308             // A merged copy of the same function, instantiated as a member of
12309             // the same class, is OK.
12310             if (declaresSameEntity(OrigFD, Original) &&
12311                 declaresSameEntity(cast<Decl>(I->getLexicalDeclContext()),
12312                                    cast<Decl>(FD->getLexicalDeclContext())))
12313               continue;
12314           }
12315 
12316           if (Original->isThisDeclarationADefinition()) {
12317             Definition = I;
12318             break;
12319           }
12320         }
12321       }
12322     }
12323   }
12324   if (!Definition)
12325     return;
12326 
12327   if (canRedefineFunction(Definition, getLangOpts()))
12328     return;
12329 
12330   // Don't emit an error when this is redefinition of a typo-corrected
12331   // definition.
12332   if (TypoCorrectedFunctionDefinitions.count(Definition))
12333     return;
12334 
12335   // If we don't have a visible definition of the function, and it's inline or
12336   // a template, skip the new definition.
12337   if (SkipBody && !hasVisibleDefinition(Definition) &&
12338       (Definition->getFormalLinkage() == InternalLinkage ||
12339        Definition->isInlined() ||
12340        Definition->getDescribedFunctionTemplate() ||
12341        Definition->getNumTemplateParameterLists())) {
12342     SkipBody->ShouldSkip = true;
12343     if (auto *TD = Definition->getDescribedFunctionTemplate())
12344       makeMergedDefinitionVisible(TD);
12345     makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition));
12346     return;
12347   }
12348 
12349   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
12350       Definition->getStorageClass() == SC_Extern)
12351     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
12352         << FD->getDeclName() << getLangOpts().CPlusPlus;
12353   else
12354     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
12355 
12356   Diag(Definition->getLocation(), diag::note_previous_definition);
12357   FD->setInvalidDecl();
12358 }
12359 
12360 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
12361                                    Sema &S) {
12362   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
12363 
12364   LambdaScopeInfo *LSI = S.PushLambdaScope();
12365   LSI->CallOperator = CallOperator;
12366   LSI->Lambda = LambdaClass;
12367   LSI->ReturnType = CallOperator->getReturnType();
12368   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
12369 
12370   if (LCD == LCD_None)
12371     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
12372   else if (LCD == LCD_ByCopy)
12373     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
12374   else if (LCD == LCD_ByRef)
12375     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
12376   DeclarationNameInfo DNI = CallOperator->getNameInfo();
12377 
12378   LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
12379   LSI->Mutable = !CallOperator->isConst();
12380 
12381   // Add the captures to the LSI so they can be noted as already
12382   // captured within tryCaptureVar.
12383   auto I = LambdaClass->field_begin();
12384   for (const auto &C : LambdaClass->captures()) {
12385     if (C.capturesVariable()) {
12386       VarDecl *VD = C.getCapturedVar();
12387       if (VD->isInitCapture())
12388         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
12389       QualType CaptureType = VD->getType();
12390       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
12391       LSI->addCapture(VD, /*IsBlock*/false, ByRef,
12392           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
12393           /*EllipsisLoc*/C.isPackExpansion()
12394                          ? C.getEllipsisLoc() : SourceLocation(),
12395           CaptureType, /*Expr*/ nullptr);
12396 
12397     } else if (C.capturesThis()) {
12398       LSI->addThisCapture(/*Nested*/ false, C.getLocation(),
12399                               /*Expr*/ nullptr,
12400                               C.getCaptureKind() == LCK_StarThis);
12401     } else {
12402       LSI->addVLATypeCapture(C.getLocation(), I->getType());
12403     }
12404     ++I;
12405   }
12406 }
12407 
12408 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
12409                                     SkipBodyInfo *SkipBody) {
12410   if (!D) {
12411     // Parsing the function declaration failed in some way. Push on a fake scope
12412     // anyway so we can try to parse the function body.
12413     PushFunctionScope();
12414     return D;
12415   }
12416 
12417   FunctionDecl *FD = nullptr;
12418 
12419   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
12420     FD = FunTmpl->getTemplatedDecl();
12421   else
12422     FD = cast<FunctionDecl>(D);
12423 
12424   // Check for defining attributes before the check for redefinition.
12425   if (const auto *Attr = FD->getAttr<AliasAttr>()) {
12426     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0;
12427     FD->dropAttr<AliasAttr>();
12428     FD->setInvalidDecl();
12429   }
12430   if (const auto *Attr = FD->getAttr<IFuncAttr>()) {
12431     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1;
12432     FD->dropAttr<IFuncAttr>();
12433     FD->setInvalidDecl();
12434   }
12435 
12436   // See if this is a redefinition. If 'will have body' is already set, then
12437   // these checks were already performed when it was set.
12438   if (!FD->willHaveBody() && !FD->isLateTemplateParsed()) {
12439     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
12440 
12441     // If we're skipping the body, we're done. Don't enter the scope.
12442     if (SkipBody && SkipBody->ShouldSkip)
12443       return D;
12444   }
12445 
12446   // Mark this function as "will have a body eventually".  This lets users to
12447   // call e.g. isInlineDefinitionExternallyVisible while we're still parsing
12448   // this function.
12449   FD->setWillHaveBody();
12450 
12451   // If we are instantiating a generic lambda call operator, push
12452   // a LambdaScopeInfo onto the function stack.  But use the information
12453   // that's already been calculated (ActOnLambdaExpr) to prime the current
12454   // LambdaScopeInfo.
12455   // When the template operator is being specialized, the LambdaScopeInfo,
12456   // has to be properly restored so that tryCaptureVariable doesn't try
12457   // and capture any new variables. In addition when calculating potential
12458   // captures during transformation of nested lambdas, it is necessary to
12459   // have the LSI properly restored.
12460   if (isGenericLambdaCallOperatorSpecialization(FD)) {
12461     assert(inTemplateInstantiation() &&
12462            "There should be an active template instantiation on the stack "
12463            "when instantiating a generic lambda!");
12464     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
12465   } else {
12466     // Enter a new function scope
12467     PushFunctionScope();
12468   }
12469 
12470   // Builtin functions cannot be defined.
12471   if (unsigned BuiltinID = FD->getBuiltinID()) {
12472     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
12473         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
12474       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
12475       FD->setInvalidDecl();
12476     }
12477   }
12478 
12479   // The return type of a function definition must be complete
12480   // (C99 6.9.1p3, C++ [dcl.fct]p6).
12481   QualType ResultType = FD->getReturnType();
12482   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
12483       !FD->isInvalidDecl() &&
12484       RequireCompleteType(FD->getLocation(), ResultType,
12485                           diag::err_func_def_incomplete_result))
12486     FD->setInvalidDecl();
12487 
12488   if (FnBodyScope)
12489     PushDeclContext(FnBodyScope, FD);
12490 
12491   // Check the validity of our function parameters
12492   CheckParmsForFunctionDef(FD->parameters(),
12493                            /*CheckParameterNames=*/true);
12494 
12495   // Add non-parameter declarations already in the function to the current
12496   // scope.
12497   if (FnBodyScope) {
12498     for (Decl *NPD : FD->decls()) {
12499       auto *NonParmDecl = dyn_cast<NamedDecl>(NPD);
12500       if (!NonParmDecl)
12501         continue;
12502       assert(!isa<ParmVarDecl>(NonParmDecl) &&
12503              "parameters should not be in newly created FD yet");
12504 
12505       // If the decl has a name, make it accessible in the current scope.
12506       if (NonParmDecl->getDeclName())
12507         PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false);
12508 
12509       // Similarly, dive into enums and fish their constants out, making them
12510       // accessible in this scope.
12511       if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) {
12512         for (auto *EI : ED->enumerators())
12513           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
12514       }
12515     }
12516   }
12517 
12518   // Introduce our parameters into the function scope
12519   for (auto Param : FD->parameters()) {
12520     Param->setOwningFunction(FD);
12521 
12522     // If this has an identifier, add it to the scope stack.
12523     if (Param->getIdentifier() && FnBodyScope) {
12524       CheckShadow(FnBodyScope, Param);
12525 
12526       PushOnScopeChains(Param, FnBodyScope);
12527     }
12528   }
12529 
12530   // Ensure that the function's exception specification is instantiated.
12531   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
12532     ResolveExceptionSpec(D->getLocation(), FPT);
12533 
12534   // dllimport cannot be applied to non-inline function definitions.
12535   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
12536       !FD->isTemplateInstantiation()) {
12537     assert(!FD->hasAttr<DLLExportAttr>());
12538     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
12539     FD->setInvalidDecl();
12540     return D;
12541   }
12542   // We want to attach documentation to original Decl (which might be
12543   // a function template).
12544   ActOnDocumentableDecl(D);
12545   if (getCurLexicalContext()->isObjCContainer() &&
12546       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
12547       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
12548     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
12549 
12550   return D;
12551 }
12552 
12553 /// \brief Given the set of return statements within a function body,
12554 /// compute the variables that are subject to the named return value
12555 /// optimization.
12556 ///
12557 /// Each of the variables that is subject to the named return value
12558 /// optimization will be marked as NRVO variables in the AST, and any
12559 /// return statement that has a marked NRVO variable as its NRVO candidate can
12560 /// use the named return value optimization.
12561 ///
12562 /// This function applies a very simplistic algorithm for NRVO: if every return
12563 /// statement in the scope of a variable has the same NRVO candidate, that
12564 /// candidate is an NRVO variable.
12565 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
12566   ReturnStmt **Returns = Scope->Returns.data();
12567 
12568   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
12569     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
12570       if (!NRVOCandidate->isNRVOVariable())
12571         Returns[I]->setNRVOCandidate(nullptr);
12572     }
12573   }
12574 }
12575 
12576 bool Sema::canDelayFunctionBody(const Declarator &D) {
12577   // We can't delay parsing the body of a constexpr function template (yet).
12578   if (D.getDeclSpec().isConstexprSpecified())
12579     return false;
12580 
12581   // We can't delay parsing the body of a function template with a deduced
12582   // return type (yet).
12583   if (D.getDeclSpec().hasAutoTypeSpec()) {
12584     // If the placeholder introduces a non-deduced trailing return type,
12585     // we can still delay parsing it.
12586     if (D.getNumTypeObjects()) {
12587       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
12588       if (Outer.Kind == DeclaratorChunk::Function &&
12589           Outer.Fun.hasTrailingReturnType()) {
12590         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
12591         return Ty.isNull() || !Ty->isUndeducedType();
12592       }
12593     }
12594     return false;
12595   }
12596 
12597   return true;
12598 }
12599 
12600 bool Sema::canSkipFunctionBody(Decl *D) {
12601   // We cannot skip the body of a function (or function template) which is
12602   // constexpr, since we may need to evaluate its body in order to parse the
12603   // rest of the file.
12604   // We cannot skip the body of a function with an undeduced return type,
12605   // because any callers of that function need to know the type.
12606   if (const FunctionDecl *FD = D->getAsFunction())
12607     if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
12608       return false;
12609   return Consumer.shouldSkipFunctionBody(D);
12610 }
12611 
12612 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
12613   if (!Decl)
12614     return nullptr;
12615   if (FunctionDecl *FD = Decl->getAsFunction())
12616     FD->setHasSkippedBody();
12617   else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(Decl))
12618     MD->setHasSkippedBody();
12619   return Decl;
12620 }
12621 
12622 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
12623   return ActOnFinishFunctionBody(D, BodyArg, false);
12624 }
12625 
12626 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
12627                                     bool IsInstantiation) {
12628   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
12629 
12630   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
12631   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
12632 
12633   if (getLangOpts().CoroutinesTS && getCurFunction()->isCoroutine())
12634     CheckCompletedCoroutineBody(FD, Body);
12635 
12636   if (FD) {
12637     FD->setBody(Body);
12638     FD->setWillHaveBody(false);
12639 
12640     if (getLangOpts().CPlusPlus14) {
12641       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
12642           FD->getReturnType()->isUndeducedType()) {
12643         // If the function has a deduced result type but contains no 'return'
12644         // statements, the result type as written must be exactly 'auto', and
12645         // the deduced result type is 'void'.
12646         if (!FD->getReturnType()->getAs<AutoType>()) {
12647           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
12648               << FD->getReturnType();
12649           FD->setInvalidDecl();
12650         } else {
12651           // Substitute 'void' for the 'auto' in the type.
12652           TypeLoc ResultType = getReturnTypeLoc(FD);
12653           Context.adjustDeducedFunctionResultType(
12654               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
12655         }
12656       }
12657     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
12658       // In C++11, we don't use 'auto' deduction rules for lambda call
12659       // operators because we don't support return type deduction.
12660       auto *LSI = getCurLambda();
12661       if (LSI->HasImplicitReturnType) {
12662         deduceClosureReturnType(*LSI);
12663 
12664         // C++11 [expr.prim.lambda]p4:
12665         //   [...] if there are no return statements in the compound-statement
12666         //   [the deduced type is] the type void
12667         QualType RetType =
12668             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
12669 
12670         // Update the return type to the deduced type.
12671         const FunctionProtoType *Proto =
12672             FD->getType()->getAs<FunctionProtoType>();
12673         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
12674                                             Proto->getExtProtoInfo()));
12675       }
12676     }
12677 
12678     // If the function implicitly returns zero (like 'main') or is naked,
12679     // don't complain about missing return statements.
12680     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
12681       WP.disableCheckFallThrough();
12682 
12683     // MSVC permits the use of pure specifier (=0) on function definition,
12684     // defined at class scope, warn about this non-standard construct.
12685     if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
12686       Diag(FD->getLocation(), diag::ext_pure_function_definition);
12687 
12688     if (!FD->isInvalidDecl()) {
12689       // Don't diagnose unused parameters of defaulted or deleted functions.
12690       if (!FD->isDeleted() && !FD->isDefaulted())
12691         DiagnoseUnusedParameters(FD->parameters());
12692       DiagnoseSizeOfParametersAndReturnValue(FD->parameters(),
12693                                              FD->getReturnType(), FD);
12694 
12695       // If this is a structor, we need a vtable.
12696       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
12697         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
12698       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
12699         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
12700 
12701       // Try to apply the named return value optimization. We have to check
12702       // if we can do this here because lambdas keep return statements around
12703       // to deduce an implicit return type.
12704       if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
12705           !FD->isDependentContext())
12706         computeNRVO(Body, getCurFunction());
12707     }
12708 
12709     // GNU warning -Wmissing-prototypes:
12710     //   Warn if a global function is defined without a previous
12711     //   prototype declaration. This warning is issued even if the
12712     //   definition itself provides a prototype. The aim is to detect
12713     //   global functions that fail to be declared in header files.
12714     const FunctionDecl *PossibleZeroParamPrototype = nullptr;
12715     if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
12716       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
12717 
12718       if (PossibleZeroParamPrototype) {
12719         // We found a declaration that is not a prototype,
12720         // but that could be a zero-parameter prototype
12721         if (TypeSourceInfo *TI =
12722                 PossibleZeroParamPrototype->getTypeSourceInfo()) {
12723           TypeLoc TL = TI->getTypeLoc();
12724           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
12725             Diag(PossibleZeroParamPrototype->getLocation(),
12726                  diag::note_declaration_not_a_prototype)
12727                 << PossibleZeroParamPrototype
12728                 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
12729         }
12730       }
12731 
12732       // GNU warning -Wstrict-prototypes
12733       //   Warn if K&R function is defined without a previous declaration.
12734       //   This warning is issued only if the definition itself does not provide
12735       //   a prototype. Only K&R definitions do not provide a prototype.
12736       //   An empty list in a function declarator that is part of a definition
12737       //   of that function specifies that the function has no parameters
12738       //   (C99 6.7.5.3p14)
12739       if (!FD->hasWrittenPrototype() && FD->getNumParams() > 0 &&
12740           !LangOpts.CPlusPlus) {
12741         TypeSourceInfo *TI = FD->getTypeSourceInfo();
12742         TypeLoc TL = TI->getTypeLoc();
12743         FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>();
12744         Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;
12745       }
12746     }
12747 
12748     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
12749       const CXXMethodDecl *KeyFunction;
12750       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
12751           MD->isVirtual() &&
12752           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
12753           MD == KeyFunction->getCanonicalDecl()) {
12754         // Update the key-function state if necessary for this ABI.
12755         if (FD->isInlined() &&
12756             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
12757           Context.setNonKeyFunction(MD);
12758 
12759           // If the newly-chosen key function is already defined, then we
12760           // need to mark the vtable as used retroactively.
12761           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
12762           const FunctionDecl *Definition;
12763           if (KeyFunction && KeyFunction->isDefined(Definition))
12764             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
12765         } else {
12766           // We just defined they key function; mark the vtable as used.
12767           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
12768         }
12769       }
12770     }
12771 
12772     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
12773            "Function parsing confused");
12774   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
12775     assert(MD == getCurMethodDecl() && "Method parsing confused");
12776     MD->setBody(Body);
12777     if (!MD->isInvalidDecl()) {
12778       DiagnoseUnusedParameters(MD->parameters());
12779       DiagnoseSizeOfParametersAndReturnValue(MD->parameters(),
12780                                              MD->getReturnType(), MD);
12781 
12782       if (Body)
12783         computeNRVO(Body, getCurFunction());
12784     }
12785     if (getCurFunction()->ObjCShouldCallSuper) {
12786       Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
12787         << MD->getSelector().getAsString();
12788       getCurFunction()->ObjCShouldCallSuper = false;
12789     }
12790     if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
12791       const ObjCMethodDecl *InitMethod = nullptr;
12792       bool isDesignated =
12793           MD->isDesignatedInitializerForTheInterface(&InitMethod);
12794       assert(isDesignated && InitMethod);
12795       (void)isDesignated;
12796 
12797       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
12798         auto IFace = MD->getClassInterface();
12799         if (!IFace)
12800           return false;
12801         auto SuperD = IFace->getSuperClass();
12802         if (!SuperD)
12803           return false;
12804         return SuperD->getIdentifier() ==
12805             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
12806       };
12807       // Don't issue this warning for unavailable inits or direct subclasses
12808       // of NSObject.
12809       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
12810         Diag(MD->getLocation(),
12811              diag::warn_objc_designated_init_missing_super_call);
12812         Diag(InitMethod->getLocation(),
12813              diag::note_objc_designated_init_marked_here);
12814       }
12815       getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
12816     }
12817     if (getCurFunction()->ObjCWarnForNoInitDelegation) {
12818       // Don't issue this warning for unavaialable inits.
12819       if (!MD->isUnavailable())
12820         Diag(MD->getLocation(),
12821              diag::warn_objc_secondary_init_missing_init_call);
12822       getCurFunction()->ObjCWarnForNoInitDelegation = false;
12823     }
12824   } else {
12825     // Parsing the function declaration failed in some way. Pop the fake scope
12826     // we pushed on.
12827     PopFunctionScopeInfo(ActivePolicy, dcl);
12828     return nullptr;
12829   }
12830 
12831   if (Body && getCurFunction()->HasPotentialAvailabilityViolations)
12832     DiagnoseUnguardedAvailabilityViolations(dcl);
12833 
12834   assert(!getCurFunction()->ObjCShouldCallSuper &&
12835          "This should only be set for ObjC methods, which should have been "
12836          "handled in the block above.");
12837 
12838   // Verify and clean out per-function state.
12839   if (Body && (!FD || !FD->isDefaulted())) {
12840     // C++ constructors that have function-try-blocks can't have return
12841     // statements in the handlers of that block. (C++ [except.handle]p14)
12842     // Verify this.
12843     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
12844       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
12845 
12846     // Verify that gotos and switch cases don't jump into scopes illegally.
12847     if (getCurFunction()->NeedsScopeChecking() &&
12848         !PP.isCodeCompletionEnabled())
12849       DiagnoseInvalidJumps(Body);
12850 
12851     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
12852       if (!Destructor->getParent()->isDependentType())
12853         CheckDestructor(Destructor);
12854 
12855       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
12856                                              Destructor->getParent());
12857     }
12858 
12859     // If any errors have occurred, clear out any temporaries that may have
12860     // been leftover. This ensures that these temporaries won't be picked up for
12861     // deletion in some later function.
12862     if (getDiagnostics().hasErrorOccurred() ||
12863         getDiagnostics().getSuppressAllDiagnostics()) {
12864       DiscardCleanupsInEvaluationContext();
12865     }
12866     if (!getDiagnostics().hasUncompilableErrorOccurred() &&
12867         !isa<FunctionTemplateDecl>(dcl)) {
12868       // Since the body is valid, issue any analysis-based warnings that are
12869       // enabled.
12870       ActivePolicy = &WP;
12871     }
12872 
12873     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
12874         (!CheckConstexprFunctionDecl(FD) ||
12875          !CheckConstexprFunctionBody(FD, Body)))
12876       FD->setInvalidDecl();
12877 
12878     if (FD && FD->hasAttr<NakedAttr>()) {
12879       for (const Stmt *S : Body->children()) {
12880         // Allow local register variables without initializer as they don't
12881         // require prologue.
12882         bool RegisterVariables = false;
12883         if (auto *DS = dyn_cast<DeclStmt>(S)) {
12884           for (const auto *Decl : DS->decls()) {
12885             if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
12886               RegisterVariables =
12887                   Var->hasAttr<AsmLabelAttr>() && !Var->hasInit();
12888               if (!RegisterVariables)
12889                 break;
12890             }
12891           }
12892         }
12893         if (RegisterVariables)
12894           continue;
12895         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
12896           Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function);
12897           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
12898           FD->setInvalidDecl();
12899           break;
12900         }
12901       }
12902     }
12903 
12904     assert(ExprCleanupObjects.size() ==
12905                ExprEvalContexts.back().NumCleanupObjects &&
12906            "Leftover temporaries in function");
12907     assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function");
12908     assert(MaybeODRUseExprs.empty() &&
12909            "Leftover expressions for odr-use checking");
12910   }
12911 
12912   if (!IsInstantiation)
12913     PopDeclContext();
12914 
12915   PopFunctionScopeInfo(ActivePolicy, dcl);
12916   // If any errors have occurred, clear out any temporaries that may have
12917   // been leftover. This ensures that these temporaries won't be picked up for
12918   // deletion in some later function.
12919   if (getDiagnostics().hasErrorOccurred()) {
12920     DiscardCleanupsInEvaluationContext();
12921   }
12922 
12923   return dcl;
12924 }
12925 
12926 /// When we finish delayed parsing of an attribute, we must attach it to the
12927 /// relevant Decl.
12928 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
12929                                        ParsedAttributes &Attrs) {
12930   // Always attach attributes to the underlying decl.
12931   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
12932     D = TD->getTemplatedDecl();
12933   ProcessDeclAttributeList(S, D, Attrs.getList());
12934 
12935   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
12936     if (Method->isStatic())
12937       checkThisInStaticMemberFunctionAttributes(Method);
12938 }
12939 
12940 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
12941 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
12942 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
12943                                           IdentifierInfo &II, Scope *S) {
12944   // Find the scope in which the identifier is injected and the corresponding
12945   // DeclContext.
12946   // FIXME: C89 does not say what happens if there is no enclosing block scope.
12947   // In that case, we inject the declaration into the translation unit scope
12948   // instead.
12949   Scope *BlockScope = S;
12950   while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent())
12951     BlockScope = BlockScope->getParent();
12952 
12953   Scope *ContextScope = BlockScope;
12954   while (!ContextScope->getEntity())
12955     ContextScope = ContextScope->getParent();
12956   ContextRAII SavedContext(*this, ContextScope->getEntity());
12957 
12958   // Before we produce a declaration for an implicitly defined
12959   // function, see whether there was a locally-scoped declaration of
12960   // this name as a function or variable. If so, use that
12961   // (non-visible) declaration, and complain about it.
12962   NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II);
12963   if (ExternCPrev) {
12964     // We still need to inject the function into the enclosing block scope so
12965     // that later (non-call) uses can see it.
12966     PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false);
12967 
12968     // C89 footnote 38:
12969     //   If in fact it is not defined as having type "function returning int",
12970     //   the behavior is undefined.
12971     if (!isa<FunctionDecl>(ExternCPrev) ||
12972         !Context.typesAreCompatible(
12973             cast<FunctionDecl>(ExternCPrev)->getType(),
12974             Context.getFunctionNoProtoType(Context.IntTy))) {
12975       Diag(Loc, diag::ext_use_out_of_scope_declaration)
12976           << ExternCPrev << !getLangOpts().C99;
12977       Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
12978       return ExternCPrev;
12979     }
12980   }
12981 
12982   // Extension in C99.  Legal in C90, but warn about it.
12983   // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported.
12984   unsigned diag_id;
12985   if (II.getName().startswith("__builtin_"))
12986     diag_id = diag::warn_builtin_unknown;
12987   else if (getLangOpts().C99 || getLangOpts().OpenCL)
12988     diag_id = diag::ext_implicit_function_decl;
12989   else
12990     diag_id = diag::warn_implicit_function_decl;
12991   Diag(Loc, diag_id) << &II << getLangOpts().OpenCL;
12992 
12993   // If we found a prior declaration of this function, don't bother building
12994   // another one. We've already pushed that one into scope, so there's nothing
12995   // more to do.
12996   if (ExternCPrev)
12997     return ExternCPrev;
12998 
12999   // Because typo correction is expensive, only do it if the implicit
13000   // function declaration is going to be treated as an error.
13001   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
13002     TypoCorrection Corrected;
13003     if (S &&
13004         (Corrected = CorrectTypo(
13005              DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr,
13006              llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError)))
13007       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
13008                    /*ErrorRecovery*/false);
13009   }
13010 
13011   // Set a Declarator for the implicit definition: int foo();
13012   const char *Dummy;
13013   AttributeFactory attrFactory;
13014   DeclSpec DS(attrFactory);
13015   unsigned DiagID;
13016   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
13017                                   Context.getPrintingPolicy());
13018   (void)Error; // Silence warning.
13019   assert(!Error && "Error setting up implicit decl!");
13020   SourceLocation NoLoc;
13021   Declarator D(DS, DeclaratorContext::BlockContext);
13022   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
13023                                              /*IsAmbiguous=*/false,
13024                                              /*LParenLoc=*/NoLoc,
13025                                              /*Params=*/nullptr,
13026                                              /*NumParams=*/0,
13027                                              /*EllipsisLoc=*/NoLoc,
13028                                              /*RParenLoc=*/NoLoc,
13029                                              /*TypeQuals=*/0,
13030                                              /*RefQualifierIsLvalueRef=*/true,
13031                                              /*RefQualifierLoc=*/NoLoc,
13032                                              /*ConstQualifierLoc=*/NoLoc,
13033                                              /*VolatileQualifierLoc=*/NoLoc,
13034                                              /*RestrictQualifierLoc=*/NoLoc,
13035                                              /*MutableLoc=*/NoLoc,
13036                                              EST_None,
13037                                              /*ESpecRange=*/SourceRange(),
13038                                              /*Exceptions=*/nullptr,
13039                                              /*ExceptionRanges=*/nullptr,
13040                                              /*NumExceptions=*/0,
13041                                              /*NoexceptExpr=*/nullptr,
13042                                              /*ExceptionSpecTokens=*/nullptr,
13043                                              /*DeclsInPrototype=*/None,
13044                                              Loc, Loc, D),
13045                 DS.getAttributes(),
13046                 SourceLocation());
13047   D.SetIdentifier(&II, Loc);
13048 
13049   // Insert this function into the enclosing block scope.
13050   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D));
13051   FD->setImplicit();
13052 
13053   AddKnownFunctionAttributes(FD);
13054 
13055   return FD;
13056 }
13057 
13058 /// \brief Adds any function attributes that we know a priori based on
13059 /// the declaration of this function.
13060 ///
13061 /// These attributes can apply both to implicitly-declared builtins
13062 /// (like __builtin___printf_chk) or to library-declared functions
13063 /// like NSLog or printf.
13064 ///
13065 /// We need to check for duplicate attributes both here and where user-written
13066 /// attributes are applied to declarations.
13067 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
13068   if (FD->isInvalidDecl())
13069     return;
13070 
13071   // If this is a built-in function, map its builtin attributes to
13072   // actual attributes.
13073   if (unsigned BuiltinID = FD->getBuiltinID()) {
13074     // Handle printf-formatting attributes.
13075     unsigned FormatIdx;
13076     bool HasVAListArg;
13077     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
13078       if (!FD->hasAttr<FormatAttr>()) {
13079         const char *fmt = "printf";
13080         unsigned int NumParams = FD->getNumParams();
13081         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
13082             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
13083           fmt = "NSString";
13084         FD->addAttr(FormatAttr::CreateImplicit(Context,
13085                                                &Context.Idents.get(fmt),
13086                                                FormatIdx+1,
13087                                                HasVAListArg ? 0 : FormatIdx+2,
13088                                                FD->getLocation()));
13089       }
13090     }
13091     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
13092                                              HasVAListArg)) {
13093      if (!FD->hasAttr<FormatAttr>())
13094        FD->addAttr(FormatAttr::CreateImplicit(Context,
13095                                               &Context.Idents.get("scanf"),
13096                                               FormatIdx+1,
13097                                               HasVAListArg ? 0 : FormatIdx+2,
13098                                               FD->getLocation()));
13099     }
13100 
13101     // Mark const if we don't care about errno and that is the only thing
13102     // preventing the function from being const. This allows IRgen to use LLVM
13103     // intrinsics for such functions.
13104     if (!getLangOpts().MathErrno && !FD->hasAttr<ConstAttr>() &&
13105         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID))
13106       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
13107 
13108     // We make "fma" on GNU or Windows const because we know it does not set
13109     // errno in those environments even though it could set errno based on the
13110     // C standard.
13111     const llvm::Triple &Trip = Context.getTargetInfo().getTriple();
13112     if ((Trip.isGNUEnvironment() || Trip.isOSMSVCRT()) &&
13113         !FD->hasAttr<ConstAttr>()) {
13114       switch (BuiltinID) {
13115       case Builtin::BI__builtin_fma:
13116       case Builtin::BI__builtin_fmaf:
13117       case Builtin::BI__builtin_fmal:
13118       case Builtin::BIfma:
13119       case Builtin::BIfmaf:
13120       case Builtin::BIfmal:
13121         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
13122         break;
13123       default:
13124         break;
13125       }
13126     }
13127 
13128     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
13129         !FD->hasAttr<ReturnsTwiceAttr>())
13130       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
13131                                          FD->getLocation()));
13132     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
13133       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
13134     if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>())
13135       FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation()));
13136     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
13137       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
13138     if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
13139         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
13140       // Add the appropriate attribute, depending on the CUDA compilation mode
13141       // and which target the builtin belongs to. For example, during host
13142       // compilation, aux builtins are __device__, while the rest are __host__.
13143       if (getLangOpts().CUDAIsDevice !=
13144           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
13145         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
13146       else
13147         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
13148     }
13149   }
13150 
13151   // If C++ exceptions are enabled but we are told extern "C" functions cannot
13152   // throw, add an implicit nothrow attribute to any extern "C" function we come
13153   // across.
13154   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
13155       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
13156     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
13157     if (!FPT || FPT->getExceptionSpecType() == EST_None)
13158       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
13159   }
13160 
13161   IdentifierInfo *Name = FD->getIdentifier();
13162   if (!Name)
13163     return;
13164   if ((!getLangOpts().CPlusPlus &&
13165        FD->getDeclContext()->isTranslationUnit()) ||
13166       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
13167        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
13168        LinkageSpecDecl::lang_c)) {
13169     // Okay: this could be a libc/libm/Objective-C function we know
13170     // about.
13171   } else
13172     return;
13173 
13174   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
13175     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
13176     // target-specific builtins, perhaps?
13177     if (!FD->hasAttr<FormatAttr>())
13178       FD->addAttr(FormatAttr::CreateImplicit(Context,
13179                                              &Context.Idents.get("printf"), 2,
13180                                              Name->isStr("vasprintf") ? 0 : 3,
13181                                              FD->getLocation()));
13182   }
13183 
13184   if (Name->isStr("__CFStringMakeConstantString")) {
13185     // We already have a __builtin___CFStringMakeConstantString,
13186     // but builds that use -fno-constant-cfstrings don't go through that.
13187     if (!FD->hasAttr<FormatArgAttr>())
13188       FD->addAttr(FormatArgAttr::CreateImplicit(Context, ParamIdx(1, FD),
13189                                                 FD->getLocation()));
13190   }
13191 }
13192 
13193 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
13194                                     TypeSourceInfo *TInfo) {
13195   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
13196   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
13197 
13198   if (!TInfo) {
13199     assert(D.isInvalidType() && "no declarator info for valid type");
13200     TInfo = Context.getTrivialTypeSourceInfo(T);
13201   }
13202 
13203   // Scope manipulation handled by caller.
13204   TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
13205                                            D.getLocStart(),
13206                                            D.getIdentifierLoc(),
13207                                            D.getIdentifier(),
13208                                            TInfo);
13209 
13210   // Bail out immediately if we have an invalid declaration.
13211   if (D.isInvalidType()) {
13212     NewTD->setInvalidDecl();
13213     return NewTD;
13214   }
13215 
13216   if (D.getDeclSpec().isModulePrivateSpecified()) {
13217     if (CurContext->isFunctionOrMethod())
13218       Diag(NewTD->getLocation(), diag::err_module_private_local)
13219         << 2 << NewTD->getDeclName()
13220         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
13221         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
13222     else
13223       NewTD->setModulePrivate();
13224   }
13225 
13226   // C++ [dcl.typedef]p8:
13227   //   If the typedef declaration defines an unnamed class (or
13228   //   enum), the first typedef-name declared by the declaration
13229   //   to be that class type (or enum type) is used to denote the
13230   //   class type (or enum type) for linkage purposes only.
13231   // We need to check whether the type was declared in the declaration.
13232   switch (D.getDeclSpec().getTypeSpecType()) {
13233   case TST_enum:
13234   case TST_struct:
13235   case TST_interface:
13236   case TST_union:
13237   case TST_class: {
13238     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
13239     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
13240     break;
13241   }
13242 
13243   default:
13244     break;
13245   }
13246 
13247   return NewTD;
13248 }
13249 
13250 /// \brief Check that this is a valid underlying type for an enum declaration.
13251 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
13252   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
13253   QualType T = TI->getType();
13254 
13255   if (T->isDependentType())
13256     return false;
13257 
13258   if (const BuiltinType *BT = T->getAs<BuiltinType>())
13259     if (BT->isInteger())
13260       return false;
13261 
13262   Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
13263   return true;
13264 }
13265 
13266 /// Check whether this is a valid redeclaration of a previous enumeration.
13267 /// \return true if the redeclaration was invalid.
13268 bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped,
13269                                   QualType EnumUnderlyingTy, bool IsFixed,
13270                                   const EnumDecl *Prev) {
13271   if (IsScoped != Prev->isScoped()) {
13272     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
13273       << Prev->isScoped();
13274     Diag(Prev->getLocation(), diag::note_previous_declaration);
13275     return true;
13276   }
13277 
13278   if (IsFixed && Prev->isFixed()) {
13279     if (!EnumUnderlyingTy->isDependentType() &&
13280         !Prev->getIntegerType()->isDependentType() &&
13281         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
13282                                         Prev->getIntegerType())) {
13283       // TODO: Highlight the underlying type of the redeclaration.
13284       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
13285         << EnumUnderlyingTy << Prev->getIntegerType();
13286       Diag(Prev->getLocation(), diag::note_previous_declaration)
13287           << Prev->getIntegerTypeRange();
13288       return true;
13289     }
13290   } else if (IsFixed != Prev->isFixed()) {
13291     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
13292       << Prev->isFixed();
13293     Diag(Prev->getLocation(), diag::note_previous_declaration);
13294     return true;
13295   }
13296 
13297   return false;
13298 }
13299 
13300 /// \brief Get diagnostic %select index for tag kind for
13301 /// redeclaration diagnostic message.
13302 /// WARNING: Indexes apply to particular diagnostics only!
13303 ///
13304 /// \returns diagnostic %select index.
13305 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
13306   switch (Tag) {
13307   case TTK_Struct: return 0;
13308   case TTK_Interface: return 1;
13309   case TTK_Class:  return 2;
13310   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
13311   }
13312 }
13313 
13314 /// \brief Determine if tag kind is a class-key compatible with
13315 /// class for redeclaration (class, struct, or __interface).
13316 ///
13317 /// \returns true iff the tag kind is compatible.
13318 static bool isClassCompatTagKind(TagTypeKind Tag)
13319 {
13320   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
13321 }
13322 
13323 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl,
13324                                              TagTypeKind TTK) {
13325   if (isa<TypedefDecl>(PrevDecl))
13326     return NTK_Typedef;
13327   else if (isa<TypeAliasDecl>(PrevDecl))
13328     return NTK_TypeAlias;
13329   else if (isa<ClassTemplateDecl>(PrevDecl))
13330     return NTK_Template;
13331   else if (isa<TypeAliasTemplateDecl>(PrevDecl))
13332     return NTK_TypeAliasTemplate;
13333   else if (isa<TemplateTemplateParmDecl>(PrevDecl))
13334     return NTK_TemplateTemplateArgument;
13335   switch (TTK) {
13336   case TTK_Struct:
13337   case TTK_Interface:
13338   case TTK_Class:
13339     return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct;
13340   case TTK_Union:
13341     return NTK_NonUnion;
13342   case TTK_Enum:
13343     return NTK_NonEnum;
13344   }
13345   llvm_unreachable("invalid TTK");
13346 }
13347 
13348 /// \brief Determine whether a tag with a given kind is acceptable
13349 /// as a redeclaration of the given tag declaration.
13350 ///
13351 /// \returns true if the new tag kind is acceptable, false otherwise.
13352 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
13353                                         TagTypeKind NewTag, bool isDefinition,
13354                                         SourceLocation NewTagLoc,
13355                                         const IdentifierInfo *Name) {
13356   // C++ [dcl.type.elab]p3:
13357   //   The class-key or enum keyword present in the
13358   //   elaborated-type-specifier shall agree in kind with the
13359   //   declaration to which the name in the elaborated-type-specifier
13360   //   refers. This rule also applies to the form of
13361   //   elaborated-type-specifier that declares a class-name or
13362   //   friend class since it can be construed as referring to the
13363   //   definition of the class. Thus, in any
13364   //   elaborated-type-specifier, the enum keyword shall be used to
13365   //   refer to an enumeration (7.2), the union class-key shall be
13366   //   used to refer to a union (clause 9), and either the class or
13367   //   struct class-key shall be used to refer to a class (clause 9)
13368   //   declared using the class or struct class-key.
13369   TagTypeKind OldTag = Previous->getTagKind();
13370   if (!isDefinition || !isClassCompatTagKind(NewTag))
13371     if (OldTag == NewTag)
13372       return true;
13373 
13374   if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
13375     // Warn about the struct/class tag mismatch.
13376     bool isTemplate = false;
13377     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
13378       isTemplate = Record->getDescribedClassTemplate();
13379 
13380     if (inTemplateInstantiation()) {
13381       // In a template instantiation, do not offer fix-its for tag mismatches
13382       // since they usually mess up the template instead of fixing the problem.
13383       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
13384         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13385         << getRedeclDiagFromTagKind(OldTag);
13386       return true;
13387     }
13388 
13389     if (isDefinition) {
13390       // On definitions, check previous tags and issue a fix-it for each
13391       // one that doesn't match the current tag.
13392       if (Previous->getDefinition()) {
13393         // Don't suggest fix-its for redefinitions.
13394         return true;
13395       }
13396 
13397       bool previousMismatch = false;
13398       for (auto I : Previous->redecls()) {
13399         if (I->getTagKind() != NewTag) {
13400           if (!previousMismatch) {
13401             previousMismatch = true;
13402             Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
13403               << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13404               << getRedeclDiagFromTagKind(I->getTagKind());
13405           }
13406           Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
13407             << getRedeclDiagFromTagKind(NewTag)
13408             << FixItHint::CreateReplacement(I->getInnerLocStart(),
13409                  TypeWithKeyword::getTagTypeKindName(NewTag));
13410         }
13411       }
13412       return true;
13413     }
13414 
13415     // Check for a previous definition.  If current tag and definition
13416     // are same type, do nothing.  If no definition, but disagree with
13417     // with previous tag type, give a warning, but no fix-it.
13418     const TagDecl *Redecl = Previous->getDefinition() ?
13419                             Previous->getDefinition() : Previous;
13420     if (Redecl->getTagKind() == NewTag) {
13421       return true;
13422     }
13423 
13424     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
13425       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
13426       << getRedeclDiagFromTagKind(OldTag);
13427     Diag(Redecl->getLocation(), diag::note_previous_use);
13428 
13429     // If there is a previous definition, suggest a fix-it.
13430     if (Previous->getDefinition()) {
13431         Diag(NewTagLoc, diag::note_struct_class_suggestion)
13432           << getRedeclDiagFromTagKind(Redecl->getTagKind())
13433           << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
13434                TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
13435     }
13436 
13437     return true;
13438   }
13439   return false;
13440 }
13441 
13442 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
13443 /// from an outer enclosing namespace or file scope inside a friend declaration.
13444 /// This should provide the commented out code in the following snippet:
13445 ///   namespace N {
13446 ///     struct X;
13447 ///     namespace M {
13448 ///       struct Y { friend struct /*N::*/ X; };
13449 ///     }
13450 ///   }
13451 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
13452                                          SourceLocation NameLoc) {
13453   // While the decl is in a namespace, do repeated lookup of that name and see
13454   // if we get the same namespace back.  If we do not, continue until
13455   // translation unit scope, at which point we have a fully qualified NNS.
13456   SmallVector<IdentifierInfo *, 4> Namespaces;
13457   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13458   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
13459     // This tag should be declared in a namespace, which can only be enclosed by
13460     // other namespaces.  Bail if there's an anonymous namespace in the chain.
13461     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
13462     if (!Namespace || Namespace->isAnonymousNamespace())
13463       return FixItHint();
13464     IdentifierInfo *II = Namespace->getIdentifier();
13465     Namespaces.push_back(II);
13466     NamedDecl *Lookup = SemaRef.LookupSingleName(
13467         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
13468     if (Lookup == Namespace)
13469       break;
13470   }
13471 
13472   // Once we have all the namespaces, reverse them to go outermost first, and
13473   // build an NNS.
13474   SmallString<64> Insertion;
13475   llvm::raw_svector_ostream OS(Insertion);
13476   if (DC->isTranslationUnit())
13477     OS << "::";
13478   std::reverse(Namespaces.begin(), Namespaces.end());
13479   for (auto *II : Namespaces)
13480     OS << II->getName() << "::";
13481   return FixItHint::CreateInsertion(NameLoc, Insertion);
13482 }
13483 
13484 /// \brief Determine whether a tag originally declared in context \p OldDC can
13485 /// be redeclared with an unqualified name in \p NewDC (assuming name lookup
13486 /// found a declaration in \p OldDC as a previous decl, perhaps through a
13487 /// using-declaration).
13488 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
13489                                          DeclContext *NewDC) {
13490   OldDC = OldDC->getRedeclContext();
13491   NewDC = NewDC->getRedeclContext();
13492 
13493   if (OldDC->Equals(NewDC))
13494     return true;
13495 
13496   // In MSVC mode, we allow a redeclaration if the contexts are related (either
13497   // encloses the other).
13498   if (S.getLangOpts().MSVCCompat &&
13499       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
13500     return true;
13501 
13502   return false;
13503 }
13504 
13505 /// \brief This is invoked when we see 'struct foo' or 'struct {'.  In the
13506 /// former case, Name will be non-null.  In the later case, Name will be null.
13507 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
13508 /// reference/declaration/definition of a tag.
13509 ///
13510 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
13511 /// trailing-type-specifier) other than one in an alias-declaration.
13512 ///
13513 /// \param SkipBody If non-null, will be set to indicate if the caller should
13514 /// skip the definition of this tag and treat it as if it were a declaration.
13515 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
13516                      SourceLocation KWLoc, CXXScopeSpec &SS,
13517                      IdentifierInfo *Name, SourceLocation NameLoc,
13518                      AttributeList *Attr, AccessSpecifier AS,
13519                      SourceLocation ModulePrivateLoc,
13520                      MultiTemplateParamsArg TemplateParameterLists,
13521                      bool &OwnedDecl, bool &IsDependent,
13522                      SourceLocation ScopedEnumKWLoc,
13523                      bool ScopedEnumUsesClassTag,
13524                      TypeResult UnderlyingType,
13525                      bool IsTypeSpecifier, bool IsTemplateParamOrArg,
13526                      SkipBodyInfo *SkipBody) {
13527   // If this is not a definition, it must have a name.
13528   IdentifierInfo *OrigName = Name;
13529   assert((Name != nullptr || TUK == TUK_Definition) &&
13530          "Nameless record must be a definition!");
13531   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
13532 
13533   OwnedDecl = false;
13534   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
13535   bool ScopedEnum = ScopedEnumKWLoc.isValid();
13536 
13537   // FIXME: Check member specializations more carefully.
13538   bool isMemberSpecialization = false;
13539   bool Invalid = false;
13540 
13541   // We only need to do this matching if we have template parameters
13542   // or a scope specifier, which also conveniently avoids this work
13543   // for non-C++ cases.
13544   if (TemplateParameterLists.size() > 0 ||
13545       (SS.isNotEmpty() && TUK != TUK_Reference)) {
13546     if (TemplateParameterList *TemplateParams =
13547             MatchTemplateParametersToScopeSpecifier(
13548                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
13549                 TUK == TUK_Friend, isMemberSpecialization, Invalid)) {
13550       if (Kind == TTK_Enum) {
13551         Diag(KWLoc, diag::err_enum_template);
13552         return nullptr;
13553       }
13554 
13555       if (TemplateParams->size() > 0) {
13556         // This is a declaration or definition of a class template (which may
13557         // be a member of another template).
13558 
13559         if (Invalid)
13560           return nullptr;
13561 
13562         OwnedDecl = false;
13563         DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
13564                                                SS, Name, NameLoc, Attr,
13565                                                TemplateParams, AS,
13566                                                ModulePrivateLoc,
13567                                                /*FriendLoc*/SourceLocation(),
13568                                                TemplateParameterLists.size()-1,
13569                                                TemplateParameterLists.data(),
13570                                                SkipBody);
13571         return Result.get();
13572       } else {
13573         // The "template<>" header is extraneous.
13574         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
13575           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
13576         isMemberSpecialization = true;
13577       }
13578     }
13579   }
13580 
13581   // Figure out the underlying type if this a enum declaration. We need to do
13582   // this early, because it's needed to detect if this is an incompatible
13583   // redeclaration.
13584   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
13585   bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum;
13586 
13587   if (Kind == TTK_Enum) {
13588     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) {
13589       // No underlying type explicitly specified, or we failed to parse the
13590       // type, default to int.
13591       EnumUnderlying = Context.IntTy.getTypePtr();
13592     } else if (UnderlyingType.get()) {
13593       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
13594       // integral type; any cv-qualification is ignored.
13595       TypeSourceInfo *TI = nullptr;
13596       GetTypeFromParser(UnderlyingType.get(), &TI);
13597       EnumUnderlying = TI;
13598 
13599       if (CheckEnumUnderlyingType(TI))
13600         // Recover by falling back to int.
13601         EnumUnderlying = Context.IntTy.getTypePtr();
13602 
13603       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
13604                                           UPPC_FixedUnderlyingType))
13605         EnumUnderlying = Context.IntTy.getTypePtr();
13606 
13607     } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
13608       // For MSVC ABI compatibility, unfixed enums must use an underlying type
13609       // of 'int'. However, if this is an unfixed forward declaration, don't set
13610       // the underlying type unless the user enables -fms-compatibility. This
13611       // makes unfixed forward declared enums incomplete and is more conforming.
13612       if (TUK == TUK_Definition || getLangOpts().MSVCCompat)
13613         EnumUnderlying = Context.IntTy.getTypePtr();
13614     }
13615   }
13616 
13617   DeclContext *SearchDC = CurContext;
13618   DeclContext *DC = CurContext;
13619   bool isStdBadAlloc = false;
13620   bool isStdAlignValT = false;
13621 
13622   RedeclarationKind Redecl = forRedeclarationInCurContext();
13623   if (TUK == TUK_Friend || TUK == TUK_Reference)
13624     Redecl = NotForRedeclaration;
13625 
13626   /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C
13627   /// implemented asks for structural equivalence checking, the returned decl
13628   /// here is passed back to the parser, allowing the tag body to be parsed.
13629   auto createTagFromNewDecl = [&]() -> TagDecl * {
13630     assert(!getLangOpts().CPlusPlus && "not meant for C++ usage");
13631     // If there is an identifier, use the location of the identifier as the
13632     // location of the decl, otherwise use the location of the struct/union
13633     // keyword.
13634     SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
13635     TagDecl *New = nullptr;
13636 
13637     if (Kind == TTK_Enum) {
13638       New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr,
13639                              ScopedEnum, ScopedEnumUsesClassTag, IsFixed);
13640       // If this is an undefined enum, bail.
13641       if (TUK != TUK_Definition && !Invalid)
13642         return nullptr;
13643       if (EnumUnderlying) {
13644         EnumDecl *ED = cast<EnumDecl>(New);
13645         if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>())
13646           ED->setIntegerTypeSourceInfo(TI);
13647         else
13648           ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0));
13649         ED->setPromotionType(ED->getIntegerType());
13650       }
13651     } else { // struct/union
13652       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
13653                                nullptr);
13654     }
13655 
13656     if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
13657       // Add alignment attributes if necessary; these attributes are checked
13658       // when the ASTContext lays out the structure.
13659       //
13660       // It is important for implementing the correct semantics that this
13661       // happen here (in ActOnTag). The #pragma pack stack is
13662       // maintained as a result of parser callbacks which can occur at
13663       // many points during the parsing of a struct declaration (because
13664       // the #pragma tokens are effectively skipped over during the
13665       // parsing of the struct).
13666       if (TUK == TUK_Definition) {
13667         AddAlignmentAttributesForRecord(RD);
13668         AddMsStructLayoutForRecord(RD);
13669       }
13670     }
13671     New->setLexicalDeclContext(CurContext);
13672     return New;
13673   };
13674 
13675   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
13676   if (Name && SS.isNotEmpty()) {
13677     // We have a nested-name tag ('struct foo::bar').
13678 
13679     // Check for invalid 'foo::'.
13680     if (SS.isInvalid()) {
13681       Name = nullptr;
13682       goto CreateNewDecl;
13683     }
13684 
13685     // If this is a friend or a reference to a class in a dependent
13686     // context, don't try to make a decl for it.
13687     if (TUK == TUK_Friend || TUK == TUK_Reference) {
13688       DC = computeDeclContext(SS, false);
13689       if (!DC) {
13690         IsDependent = true;
13691         return nullptr;
13692       }
13693     } else {
13694       DC = computeDeclContext(SS, true);
13695       if (!DC) {
13696         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
13697           << SS.getRange();
13698         return nullptr;
13699       }
13700     }
13701 
13702     if (RequireCompleteDeclContext(SS, DC))
13703       return nullptr;
13704 
13705     SearchDC = DC;
13706     // Look-up name inside 'foo::'.
13707     LookupQualifiedName(Previous, DC);
13708 
13709     if (Previous.isAmbiguous())
13710       return nullptr;
13711 
13712     if (Previous.empty()) {
13713       // Name lookup did not find anything. However, if the
13714       // nested-name-specifier refers to the current instantiation,
13715       // and that current instantiation has any dependent base
13716       // classes, we might find something at instantiation time: treat
13717       // this as a dependent elaborated-type-specifier.
13718       // But this only makes any sense for reference-like lookups.
13719       if (Previous.wasNotFoundInCurrentInstantiation() &&
13720           (TUK == TUK_Reference || TUK == TUK_Friend)) {
13721         IsDependent = true;
13722         return nullptr;
13723       }
13724 
13725       // A tag 'foo::bar' must already exist.
13726       Diag(NameLoc, diag::err_not_tag_in_scope)
13727         << Kind << Name << DC << SS.getRange();
13728       Name = nullptr;
13729       Invalid = true;
13730       goto CreateNewDecl;
13731     }
13732   } else if (Name) {
13733     // C++14 [class.mem]p14:
13734     //   If T is the name of a class, then each of the following shall have a
13735     //   name different from T:
13736     //    -- every member of class T that is itself a type
13737     if (TUK != TUK_Reference && TUK != TUK_Friend &&
13738         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
13739       return nullptr;
13740 
13741     // If this is a named struct, check to see if there was a previous forward
13742     // declaration or definition.
13743     // FIXME: We're looking into outer scopes here, even when we
13744     // shouldn't be. Doing so can result in ambiguities that we
13745     // shouldn't be diagnosing.
13746     LookupName(Previous, S);
13747 
13748     // When declaring or defining a tag, ignore ambiguities introduced
13749     // by types using'ed into this scope.
13750     if (Previous.isAmbiguous() &&
13751         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
13752       LookupResult::Filter F = Previous.makeFilter();
13753       while (F.hasNext()) {
13754         NamedDecl *ND = F.next();
13755         if (!ND->getDeclContext()->getRedeclContext()->Equals(
13756                 SearchDC->getRedeclContext()))
13757           F.erase();
13758       }
13759       F.done();
13760     }
13761 
13762     // C++11 [namespace.memdef]p3:
13763     //   If the name in a friend declaration is neither qualified nor
13764     //   a template-id and the declaration is a function or an
13765     //   elaborated-type-specifier, the lookup to determine whether
13766     //   the entity has been previously declared shall not consider
13767     //   any scopes outside the innermost enclosing namespace.
13768     //
13769     // MSVC doesn't implement the above rule for types, so a friend tag
13770     // declaration may be a redeclaration of a type declared in an enclosing
13771     // scope.  They do implement this rule for friend functions.
13772     //
13773     // Does it matter that this should be by scope instead of by
13774     // semantic context?
13775     if (!Previous.empty() && TUK == TUK_Friend) {
13776       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
13777       LookupResult::Filter F = Previous.makeFilter();
13778       bool FriendSawTagOutsideEnclosingNamespace = false;
13779       while (F.hasNext()) {
13780         NamedDecl *ND = F.next();
13781         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
13782         if (DC->isFileContext() &&
13783             !EnclosingNS->Encloses(ND->getDeclContext())) {
13784           if (getLangOpts().MSVCCompat)
13785             FriendSawTagOutsideEnclosingNamespace = true;
13786           else
13787             F.erase();
13788         }
13789       }
13790       F.done();
13791 
13792       // Diagnose this MSVC extension in the easy case where lookup would have
13793       // unambiguously found something outside the enclosing namespace.
13794       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
13795         NamedDecl *ND = Previous.getFoundDecl();
13796         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
13797             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
13798       }
13799     }
13800 
13801     // Note:  there used to be some attempt at recovery here.
13802     if (Previous.isAmbiguous())
13803       return nullptr;
13804 
13805     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
13806       // FIXME: This makes sure that we ignore the contexts associated
13807       // with C structs, unions, and enums when looking for a matching
13808       // tag declaration or definition. See the similar lookup tweak
13809       // in Sema::LookupName; is there a better way to deal with this?
13810       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
13811         SearchDC = SearchDC->getParent();
13812     }
13813   }
13814 
13815   if (Previous.isSingleResult() &&
13816       Previous.getFoundDecl()->isTemplateParameter()) {
13817     // Maybe we will complain about the shadowed template parameter.
13818     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
13819     // Just pretend that we didn't see the previous declaration.
13820     Previous.clear();
13821   }
13822 
13823   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
13824       DC->Equals(getStdNamespace())) {
13825     if (Name->isStr("bad_alloc")) {
13826       // This is a declaration of or a reference to "std::bad_alloc".
13827       isStdBadAlloc = true;
13828 
13829       // If std::bad_alloc has been implicitly declared (but made invisible to
13830       // name lookup), fill in this implicit declaration as the previous
13831       // declaration, so that the declarations get chained appropriately.
13832       if (Previous.empty() && StdBadAlloc)
13833         Previous.addDecl(getStdBadAlloc());
13834     } else if (Name->isStr("align_val_t")) {
13835       isStdAlignValT = true;
13836       if (Previous.empty() && StdAlignValT)
13837         Previous.addDecl(getStdAlignValT());
13838     }
13839   }
13840 
13841   // If we didn't find a previous declaration, and this is a reference
13842   // (or friend reference), move to the correct scope.  In C++, we
13843   // also need to do a redeclaration lookup there, just in case
13844   // there's a shadow friend decl.
13845   if (Name && Previous.empty() &&
13846       (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) {
13847     if (Invalid) goto CreateNewDecl;
13848     assert(SS.isEmpty());
13849 
13850     if (TUK == TUK_Reference || IsTemplateParamOrArg) {
13851       // C++ [basic.scope.pdecl]p5:
13852       //   -- for an elaborated-type-specifier of the form
13853       //
13854       //          class-key identifier
13855       //
13856       //      if the elaborated-type-specifier is used in the
13857       //      decl-specifier-seq or parameter-declaration-clause of a
13858       //      function defined in namespace scope, the identifier is
13859       //      declared as a class-name in the namespace that contains
13860       //      the declaration; otherwise, except as a friend
13861       //      declaration, the identifier is declared in the smallest
13862       //      non-class, non-function-prototype scope that contains the
13863       //      declaration.
13864       //
13865       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
13866       // C structs and unions.
13867       //
13868       // It is an error in C++ to declare (rather than define) an enum
13869       // type, including via an elaborated type specifier.  We'll
13870       // diagnose that later; for now, declare the enum in the same
13871       // scope as we would have picked for any other tag type.
13872       //
13873       // GNU C also supports this behavior as part of its incomplete
13874       // enum types extension, while GNU C++ does not.
13875       //
13876       // Find the context where we'll be declaring the tag.
13877       // FIXME: We would like to maintain the current DeclContext as the
13878       // lexical context,
13879       SearchDC = getTagInjectionContext(SearchDC);
13880 
13881       // Find the scope where we'll be declaring the tag.
13882       S = getTagInjectionScope(S, getLangOpts());
13883     } else {
13884       assert(TUK == TUK_Friend);
13885       // C++ [namespace.memdef]p3:
13886       //   If a friend declaration in a non-local class first declares a
13887       //   class or function, the friend class or function is a member of
13888       //   the innermost enclosing namespace.
13889       SearchDC = SearchDC->getEnclosingNamespaceContext();
13890     }
13891 
13892     // In C++, we need to do a redeclaration lookup to properly
13893     // diagnose some problems.
13894     // FIXME: redeclaration lookup is also used (with and without C++) to find a
13895     // hidden declaration so that we don't get ambiguity errors when using a
13896     // type declared by an elaborated-type-specifier.  In C that is not correct
13897     // and we should instead merge compatible types found by lookup.
13898     if (getLangOpts().CPlusPlus) {
13899       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13900       LookupQualifiedName(Previous, SearchDC);
13901     } else {
13902       Previous.setRedeclarationKind(forRedeclarationInCurContext());
13903       LookupName(Previous, S);
13904     }
13905   }
13906 
13907   // If we have a known previous declaration to use, then use it.
13908   if (Previous.empty() && SkipBody && SkipBody->Previous)
13909     Previous.addDecl(SkipBody->Previous);
13910 
13911   if (!Previous.empty()) {
13912     NamedDecl *PrevDecl = Previous.getFoundDecl();
13913     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
13914 
13915     // It's okay to have a tag decl in the same scope as a typedef
13916     // which hides a tag decl in the same scope.  Finding this
13917     // insanity with a redeclaration lookup can only actually happen
13918     // in C++.
13919     //
13920     // This is also okay for elaborated-type-specifiers, which is
13921     // technically forbidden by the current standard but which is
13922     // okay according to the likely resolution of an open issue;
13923     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
13924     if (getLangOpts().CPlusPlus) {
13925       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
13926         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
13927           TagDecl *Tag = TT->getDecl();
13928           if (Tag->getDeclName() == Name &&
13929               Tag->getDeclContext()->getRedeclContext()
13930                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
13931             PrevDecl = Tag;
13932             Previous.clear();
13933             Previous.addDecl(Tag);
13934             Previous.resolveKind();
13935           }
13936         }
13937       }
13938     }
13939 
13940     // If this is a redeclaration of a using shadow declaration, it must
13941     // declare a tag in the same context. In MSVC mode, we allow a
13942     // redefinition if either context is within the other.
13943     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
13944       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
13945       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
13946           isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) &&
13947           !(OldTag && isAcceptableTagRedeclContext(
13948                           *this, OldTag->getDeclContext(), SearchDC))) {
13949         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
13950         Diag(Shadow->getTargetDecl()->getLocation(),
13951              diag::note_using_decl_target);
13952         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
13953             << 0;
13954         // Recover by ignoring the old declaration.
13955         Previous.clear();
13956         goto CreateNewDecl;
13957       }
13958     }
13959 
13960     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
13961       // If this is a use of a previous tag, or if the tag is already declared
13962       // in the same scope (so that the definition/declaration completes or
13963       // rementions the tag), reuse the decl.
13964       if (TUK == TUK_Reference || TUK == TUK_Friend ||
13965           isDeclInScope(DirectPrevDecl, SearchDC, S,
13966                         SS.isNotEmpty() || isMemberSpecialization)) {
13967         // Make sure that this wasn't declared as an enum and now used as a
13968         // struct or something similar.
13969         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
13970                                           TUK == TUK_Definition, KWLoc,
13971                                           Name)) {
13972           bool SafeToContinue
13973             = (PrevTagDecl->getTagKind() != TTK_Enum &&
13974                Kind != TTK_Enum);
13975           if (SafeToContinue)
13976             Diag(KWLoc, diag::err_use_with_wrong_tag)
13977               << Name
13978               << FixItHint::CreateReplacement(SourceRange(KWLoc),
13979                                               PrevTagDecl->getKindName());
13980           else
13981             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
13982           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
13983 
13984           if (SafeToContinue)
13985             Kind = PrevTagDecl->getTagKind();
13986           else {
13987             // Recover by making this an anonymous redefinition.
13988             Name = nullptr;
13989             Previous.clear();
13990             Invalid = true;
13991           }
13992         }
13993 
13994         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
13995           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
13996 
13997           // If this is an elaborated-type-specifier for a scoped enumeration,
13998           // the 'class' keyword is not necessary and not permitted.
13999           if (TUK == TUK_Reference || TUK == TUK_Friend) {
14000             if (ScopedEnum)
14001               Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
14002                 << PrevEnum->isScoped()
14003                 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
14004             return PrevTagDecl;
14005           }
14006 
14007           QualType EnumUnderlyingTy;
14008           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
14009             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
14010           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
14011             EnumUnderlyingTy = QualType(T, 0);
14012 
14013           // All conflicts with previous declarations are recovered by
14014           // returning the previous declaration, unless this is a definition,
14015           // in which case we want the caller to bail out.
14016           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
14017                                      ScopedEnum, EnumUnderlyingTy,
14018                                      IsFixed, PrevEnum))
14019             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
14020         }
14021 
14022         // C++11 [class.mem]p1:
14023         //   A member shall not be declared twice in the member-specification,
14024         //   except that a nested class or member class template can be declared
14025         //   and then later defined.
14026         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
14027             S->isDeclScope(PrevDecl)) {
14028           Diag(NameLoc, diag::ext_member_redeclared);
14029           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
14030         }
14031 
14032         if (!Invalid) {
14033           // If this is a use, just return the declaration we found, unless
14034           // we have attributes.
14035           if (TUK == TUK_Reference || TUK == TUK_Friend) {
14036             if (Attr) {
14037               // FIXME: Diagnose these attributes. For now, we create a new
14038               // declaration to hold them.
14039             } else if (TUK == TUK_Reference &&
14040                        (PrevTagDecl->getFriendObjectKind() ==
14041                             Decl::FOK_Undeclared ||
14042                         PrevDecl->getOwningModule() != getCurrentModule()) &&
14043                        SS.isEmpty()) {
14044               // This declaration is a reference to an existing entity, but
14045               // has different visibility from that entity: it either makes
14046               // a friend visible or it makes a type visible in a new module.
14047               // In either case, create a new declaration. We only do this if
14048               // the declaration would have meant the same thing if no prior
14049               // declaration were found, that is, if it was found in the same
14050               // scope where we would have injected a declaration.
14051               if (!getTagInjectionContext(CurContext)->getRedeclContext()
14052                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
14053                 return PrevTagDecl;
14054               // This is in the injected scope, create a new declaration in
14055               // that scope.
14056               S = getTagInjectionScope(S, getLangOpts());
14057             } else {
14058               return PrevTagDecl;
14059             }
14060           }
14061 
14062           // Diagnose attempts to redefine a tag.
14063           if (TUK == TUK_Definition) {
14064             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
14065               // If we're defining a specialization and the previous definition
14066               // is from an implicit instantiation, don't emit an error
14067               // here; we'll catch this in the general case below.
14068               bool IsExplicitSpecializationAfterInstantiation = false;
14069               if (isMemberSpecialization) {
14070                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
14071                   IsExplicitSpecializationAfterInstantiation =
14072                     RD->getTemplateSpecializationKind() !=
14073                     TSK_ExplicitSpecialization;
14074                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
14075                   IsExplicitSpecializationAfterInstantiation =
14076                     ED->getTemplateSpecializationKind() !=
14077                     TSK_ExplicitSpecialization;
14078               }
14079 
14080               // Note that clang allows ODR-like semantics for ObjC/C, i.e., do
14081               // not keep more that one definition around (merge them). However,
14082               // ensure the decl passes the structural compatibility check in
14083               // C11 6.2.7/1 (or 6.1.2.6/1 in C89).
14084               NamedDecl *Hidden = nullptr;
14085               if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
14086                 // There is a definition of this tag, but it is not visible. We
14087                 // explicitly make use of C++'s one definition rule here, and
14088                 // assume that this definition is identical to the hidden one
14089                 // we already have. Make the existing definition visible and
14090                 // use it in place of this one.
14091                 if (!getLangOpts().CPlusPlus) {
14092                   // Postpone making the old definition visible until after we
14093                   // complete parsing the new one and do the structural
14094                   // comparison.
14095                   SkipBody->CheckSameAsPrevious = true;
14096                   SkipBody->New = createTagFromNewDecl();
14097                   SkipBody->Previous = Hidden;
14098                 } else {
14099                   SkipBody->ShouldSkip = true;
14100                   makeMergedDefinitionVisible(Hidden);
14101                 }
14102                 return Def;
14103               } else if (!IsExplicitSpecializationAfterInstantiation) {
14104                 // A redeclaration in function prototype scope in C isn't
14105                 // visible elsewhere, so merely issue a warning.
14106                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
14107                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
14108                 else
14109                   Diag(NameLoc, diag::err_redefinition) << Name;
14110                 notePreviousDefinition(Def,
14111                                        NameLoc.isValid() ? NameLoc : KWLoc);
14112                 // If this is a redefinition, recover by making this
14113                 // struct be anonymous, which will make any later
14114                 // references get the previous definition.
14115                 Name = nullptr;
14116                 Previous.clear();
14117                 Invalid = true;
14118               }
14119             } else {
14120               // If the type is currently being defined, complain
14121               // about a nested redefinition.
14122               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
14123               if (TD->isBeingDefined()) {
14124                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
14125                 Diag(PrevTagDecl->getLocation(),
14126                      diag::note_previous_definition);
14127                 Name = nullptr;
14128                 Previous.clear();
14129                 Invalid = true;
14130               }
14131             }
14132 
14133             // Okay, this is definition of a previously declared or referenced
14134             // tag. We're going to create a new Decl for it.
14135           }
14136 
14137           // Okay, we're going to make a redeclaration.  If this is some kind
14138           // of reference, make sure we build the redeclaration in the same DC
14139           // as the original, and ignore the current access specifier.
14140           if (TUK == TUK_Friend || TUK == TUK_Reference) {
14141             SearchDC = PrevTagDecl->getDeclContext();
14142             AS = AS_none;
14143           }
14144         }
14145         // If we get here we have (another) forward declaration or we
14146         // have a definition.  Just create a new decl.
14147 
14148       } else {
14149         // If we get here, this is a definition of a new tag type in a nested
14150         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
14151         // new decl/type.  We set PrevDecl to NULL so that the entities
14152         // have distinct types.
14153         Previous.clear();
14154       }
14155       // If we get here, we're going to create a new Decl. If PrevDecl
14156       // is non-NULL, it's a definition of the tag declared by
14157       // PrevDecl. If it's NULL, we have a new definition.
14158 
14159     // Otherwise, PrevDecl is not a tag, but was found with tag
14160     // lookup.  This is only actually possible in C++, where a few
14161     // things like templates still live in the tag namespace.
14162     } else {
14163       // Use a better diagnostic if an elaborated-type-specifier
14164       // found the wrong kind of type on the first
14165       // (non-redeclaration) lookup.
14166       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
14167           !Previous.isForRedeclaration()) {
14168         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
14169         Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK
14170                                                        << Kind;
14171         Diag(PrevDecl->getLocation(), diag::note_declared_at);
14172         Invalid = true;
14173 
14174       // Otherwise, only diagnose if the declaration is in scope.
14175       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
14176                                 SS.isNotEmpty() || isMemberSpecialization)) {
14177         // do nothing
14178 
14179       // Diagnose implicit declarations introduced by elaborated types.
14180       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
14181         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
14182         Diag(NameLoc, diag::err_tag_reference_conflict) << NTK;
14183         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
14184         Invalid = true;
14185 
14186       // Otherwise it's a declaration.  Call out a particularly common
14187       // case here.
14188       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
14189         unsigned Kind = 0;
14190         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
14191         Diag(NameLoc, diag::err_tag_definition_of_typedef)
14192           << Name << Kind << TND->getUnderlyingType();
14193         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
14194         Invalid = true;
14195 
14196       // Otherwise, diagnose.
14197       } else {
14198         // The tag name clashes with something else in the target scope,
14199         // issue an error and recover by making this tag be anonymous.
14200         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
14201         notePreviousDefinition(PrevDecl, NameLoc);
14202         Name = nullptr;
14203         Invalid = true;
14204       }
14205 
14206       // The existing declaration isn't relevant to us; we're in a
14207       // new scope, so clear out the previous declaration.
14208       Previous.clear();
14209     }
14210   }
14211 
14212 CreateNewDecl:
14213 
14214   TagDecl *PrevDecl = nullptr;
14215   if (Previous.isSingleResult())
14216     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
14217 
14218   // If there is an identifier, use the location of the identifier as the
14219   // location of the decl, otherwise use the location of the struct/union
14220   // keyword.
14221   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
14222 
14223   // Otherwise, create a new declaration. If there is a previous
14224   // declaration of the same entity, the two will be linked via
14225   // PrevDecl.
14226   TagDecl *New;
14227 
14228   bool IsForwardReference = false;
14229   if (Kind == TTK_Enum) {
14230     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
14231     // enum X { A, B, C } D;    D should chain to X.
14232     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
14233                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
14234                            ScopedEnumUsesClassTag, IsFixed);
14235 
14236     if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit()))
14237       StdAlignValT = cast<EnumDecl>(New);
14238 
14239     // If this is an undefined enum, warn.
14240     if (TUK != TUK_Definition && !Invalid) {
14241       TagDecl *Def;
14242       if (IsFixed && (getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
14243           cast<EnumDecl>(New)->isFixed()) {
14244         // C++0x: 7.2p2: opaque-enum-declaration.
14245         // Conflicts are diagnosed above. Do nothing.
14246       }
14247       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
14248         Diag(Loc, diag::ext_forward_ref_enum_def)
14249           << New;
14250         Diag(Def->getLocation(), diag::note_previous_definition);
14251       } else {
14252         unsigned DiagID = diag::ext_forward_ref_enum;
14253         if (getLangOpts().MSVCCompat)
14254           DiagID = diag::ext_ms_forward_ref_enum;
14255         else if (getLangOpts().CPlusPlus)
14256           DiagID = diag::err_forward_ref_enum;
14257         Diag(Loc, DiagID);
14258 
14259         // If this is a forward-declared reference to an enumeration, make a
14260         // note of it; we won't actually be introducing the declaration into
14261         // the declaration context.
14262         if (TUK == TUK_Reference)
14263           IsForwardReference = true;
14264       }
14265     }
14266 
14267     if (EnumUnderlying) {
14268       EnumDecl *ED = cast<EnumDecl>(New);
14269       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
14270         ED->setIntegerTypeSourceInfo(TI);
14271       else
14272         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
14273       ED->setPromotionType(ED->getIntegerType());
14274       assert(ED->isComplete() && "enum with type should be complete");
14275     }
14276   } else {
14277     // struct/union/class
14278 
14279     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
14280     // struct X { int A; } D;    D should chain to X.
14281     if (getLangOpts().CPlusPlus) {
14282       // FIXME: Look for a way to use RecordDecl for simple structs.
14283       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
14284                                   cast_or_null<CXXRecordDecl>(PrevDecl));
14285 
14286       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
14287         StdBadAlloc = cast<CXXRecordDecl>(New);
14288     } else
14289       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
14290                                cast_or_null<RecordDecl>(PrevDecl));
14291   }
14292 
14293   // C++11 [dcl.type]p3:
14294   //   A type-specifier-seq shall not define a class or enumeration [...].
14295   if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) &&
14296       TUK == TUK_Definition) {
14297     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
14298       << Context.getTagDeclType(New);
14299     Invalid = true;
14300   }
14301 
14302   if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition &&
14303       DC->getDeclKind() == Decl::Enum) {
14304     Diag(New->getLocation(), diag::err_type_defined_in_enum)
14305       << Context.getTagDeclType(New);
14306     Invalid = true;
14307   }
14308 
14309   // Maybe add qualifier info.
14310   if (SS.isNotEmpty()) {
14311     if (SS.isSet()) {
14312       // If this is either a declaration or a definition, check the
14313       // nested-name-specifier against the current context. We don't do this
14314       // for explicit specializations, because they have similar checking
14315       // (with more specific diagnostics) in the call to
14316       // CheckMemberSpecialization, below.
14317       if (!isMemberSpecialization &&
14318           (TUK == TUK_Definition || TUK == TUK_Declaration) &&
14319           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc))
14320         Invalid = true;
14321 
14322       New->setQualifierInfo(SS.getWithLocInContext(Context));
14323       if (TemplateParameterLists.size() > 0) {
14324         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
14325       }
14326     }
14327     else
14328       Invalid = true;
14329   }
14330 
14331   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
14332     // Add alignment attributes if necessary; these attributes are checked when
14333     // the ASTContext lays out the structure.
14334     //
14335     // It is important for implementing the correct semantics that this
14336     // happen here (in ActOnTag). The #pragma pack stack is
14337     // maintained as a result of parser callbacks which can occur at
14338     // many points during the parsing of a struct declaration (because
14339     // the #pragma tokens are effectively skipped over during the
14340     // parsing of the struct).
14341     if (TUK == TUK_Definition) {
14342       AddAlignmentAttributesForRecord(RD);
14343       AddMsStructLayoutForRecord(RD);
14344     }
14345   }
14346 
14347   if (ModulePrivateLoc.isValid()) {
14348     if (isMemberSpecialization)
14349       Diag(New->getLocation(), diag::err_module_private_specialization)
14350         << 2
14351         << FixItHint::CreateRemoval(ModulePrivateLoc);
14352     // __module_private__ does not apply to local classes. However, we only
14353     // diagnose this as an error when the declaration specifiers are
14354     // freestanding. Here, we just ignore the __module_private__.
14355     else if (!SearchDC->isFunctionOrMethod())
14356       New->setModulePrivate();
14357   }
14358 
14359   // If this is a specialization of a member class (of a class template),
14360   // check the specialization.
14361   if (isMemberSpecialization && CheckMemberSpecialization(New, Previous))
14362     Invalid = true;
14363 
14364   // If we're declaring or defining a tag in function prototype scope in C,
14365   // note that this type can only be used within the function and add it to
14366   // the list of decls to inject into the function definition scope.
14367   if ((Name || Kind == TTK_Enum) &&
14368       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
14369     if (getLangOpts().CPlusPlus) {
14370       // C++ [dcl.fct]p6:
14371       //   Types shall not be defined in return or parameter types.
14372       if (TUK == TUK_Definition && !IsTypeSpecifier) {
14373         Diag(Loc, diag::err_type_defined_in_param_type)
14374             << Name;
14375         Invalid = true;
14376       }
14377     } else if (!PrevDecl) {
14378       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
14379     }
14380   }
14381 
14382   if (Invalid)
14383     New->setInvalidDecl();
14384 
14385   // Set the lexical context. If the tag has a C++ scope specifier, the
14386   // lexical context will be different from the semantic context.
14387   New->setLexicalDeclContext(CurContext);
14388 
14389   // Mark this as a friend decl if applicable.
14390   // In Microsoft mode, a friend declaration also acts as a forward
14391   // declaration so we always pass true to setObjectOfFriendDecl to make
14392   // the tag name visible.
14393   if (TUK == TUK_Friend)
14394     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
14395 
14396   // Set the access specifier.
14397   if (!Invalid && SearchDC->isRecord())
14398     SetMemberAccessSpecifier(New, PrevDecl, AS);
14399 
14400   if (PrevDecl)
14401     CheckRedeclarationModuleOwnership(New, PrevDecl);
14402 
14403   if (TUK == TUK_Definition)
14404     New->startDefinition();
14405 
14406   if (Attr)
14407     ProcessDeclAttributeList(S, New, Attr);
14408   AddPragmaAttributes(S, New);
14409 
14410   // If this has an identifier, add it to the scope stack.
14411   if (TUK == TUK_Friend) {
14412     // We might be replacing an existing declaration in the lookup tables;
14413     // if so, borrow its access specifier.
14414     if (PrevDecl)
14415       New->setAccess(PrevDecl->getAccess());
14416 
14417     DeclContext *DC = New->getDeclContext()->getRedeclContext();
14418     DC->makeDeclVisibleInContext(New);
14419     if (Name) // can be null along some error paths
14420       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
14421         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
14422   } else if (Name) {
14423     S = getNonFieldDeclScope(S);
14424     PushOnScopeChains(New, S, !IsForwardReference);
14425     if (IsForwardReference)
14426       SearchDC->makeDeclVisibleInContext(New);
14427   } else {
14428     CurContext->addDecl(New);
14429   }
14430 
14431   // If this is the C FILE type, notify the AST context.
14432   if (IdentifierInfo *II = New->getIdentifier())
14433     if (!New->isInvalidDecl() &&
14434         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
14435         II->isStr("FILE"))
14436       Context.setFILEDecl(New);
14437 
14438   if (PrevDecl)
14439     mergeDeclAttributes(New, PrevDecl);
14440 
14441   // If there's a #pragma GCC visibility in scope, set the visibility of this
14442   // record.
14443   AddPushedVisibilityAttribute(New);
14444 
14445   if (isMemberSpecialization && !New->isInvalidDecl())
14446     CompleteMemberSpecialization(New, Previous);
14447 
14448   OwnedDecl = true;
14449   // In C++, don't return an invalid declaration. We can't recover well from
14450   // the cases where we make the type anonymous.
14451   if (Invalid && getLangOpts().CPlusPlus) {
14452     if (New->isBeingDefined())
14453       if (auto RD = dyn_cast<RecordDecl>(New))
14454         RD->completeDefinition();
14455     return nullptr;
14456   } else {
14457     return New;
14458   }
14459 }
14460 
14461 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
14462   AdjustDeclIfTemplate(TagD);
14463   TagDecl *Tag = cast<TagDecl>(TagD);
14464 
14465   // Enter the tag context.
14466   PushDeclContext(S, Tag);
14467 
14468   ActOnDocumentableDecl(TagD);
14469 
14470   // If there's a #pragma GCC visibility in scope, set the visibility of this
14471   // record.
14472   AddPushedVisibilityAttribute(Tag);
14473 }
14474 
14475 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev,
14476                                     SkipBodyInfo &SkipBody) {
14477   if (!hasStructuralCompatLayout(Prev, SkipBody.New))
14478     return false;
14479 
14480   // Make the previous decl visible.
14481   makeMergedDefinitionVisible(SkipBody.Previous);
14482   return true;
14483 }
14484 
14485 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
14486   assert(isa<ObjCContainerDecl>(IDecl) &&
14487          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
14488   DeclContext *OCD = cast<DeclContext>(IDecl);
14489   assert(getContainingDC(OCD) == CurContext &&
14490       "The next DeclContext should be lexically contained in the current one.");
14491   CurContext = OCD;
14492   return IDecl;
14493 }
14494 
14495 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
14496                                            SourceLocation FinalLoc,
14497                                            bool IsFinalSpelledSealed,
14498                                            SourceLocation LBraceLoc) {
14499   AdjustDeclIfTemplate(TagD);
14500   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
14501 
14502   FieldCollector->StartClass();
14503 
14504   if (!Record->getIdentifier())
14505     return;
14506 
14507   if (FinalLoc.isValid())
14508     Record->addAttr(new (Context)
14509                     FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
14510 
14511   // C++ [class]p2:
14512   //   [...] The class-name is also inserted into the scope of the
14513   //   class itself; this is known as the injected-class-name. For
14514   //   purposes of access checking, the injected-class-name is treated
14515   //   as if it were a public member name.
14516   CXXRecordDecl *InjectedClassName
14517     = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
14518                             Record->getLocStart(), Record->getLocation(),
14519                             Record->getIdentifier(),
14520                             /*PrevDecl=*/nullptr,
14521                             /*DelayTypeCreation=*/true);
14522   Context.getTypeDeclType(InjectedClassName, Record);
14523   InjectedClassName->setImplicit();
14524   InjectedClassName->setAccess(AS_public);
14525   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
14526       InjectedClassName->setDescribedClassTemplate(Template);
14527   PushOnScopeChains(InjectedClassName, S);
14528   assert(InjectedClassName->isInjectedClassName() &&
14529          "Broken injected-class-name");
14530 }
14531 
14532 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
14533                                     SourceRange BraceRange) {
14534   AdjustDeclIfTemplate(TagD);
14535   TagDecl *Tag = cast<TagDecl>(TagD);
14536   Tag->setBraceRange(BraceRange);
14537 
14538   // Make sure we "complete" the definition even it is invalid.
14539   if (Tag->isBeingDefined()) {
14540     assert(Tag->isInvalidDecl() && "We should already have completed it");
14541     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14542       RD->completeDefinition();
14543   }
14544 
14545   if (isa<CXXRecordDecl>(Tag)) {
14546     FieldCollector->FinishClass();
14547   }
14548 
14549   // Exit this scope of this tag's definition.
14550   PopDeclContext();
14551 
14552   if (getCurLexicalContext()->isObjCContainer() &&
14553       Tag->getDeclContext()->isFileContext())
14554     Tag->setTopLevelDeclInObjCContainer();
14555 
14556   // Notify the consumer that we've defined a tag.
14557   if (!Tag->isInvalidDecl())
14558     Consumer.HandleTagDeclDefinition(Tag);
14559 }
14560 
14561 void Sema::ActOnObjCContainerFinishDefinition() {
14562   // Exit this scope of this interface definition.
14563   PopDeclContext();
14564 }
14565 
14566 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
14567   assert(DC == CurContext && "Mismatch of container contexts");
14568   OriginalLexicalContext = DC;
14569   ActOnObjCContainerFinishDefinition();
14570 }
14571 
14572 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
14573   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
14574   OriginalLexicalContext = nullptr;
14575 }
14576 
14577 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
14578   AdjustDeclIfTemplate(TagD);
14579   TagDecl *Tag = cast<TagDecl>(TagD);
14580   Tag->setInvalidDecl();
14581 
14582   // Make sure we "complete" the definition even it is invalid.
14583   if (Tag->isBeingDefined()) {
14584     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
14585       RD->completeDefinition();
14586   }
14587 
14588   // We're undoing ActOnTagStartDefinition here, not
14589   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
14590   // the FieldCollector.
14591 
14592   PopDeclContext();
14593 }
14594 
14595 // Note that FieldName may be null for anonymous bitfields.
14596 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
14597                                 IdentifierInfo *FieldName,
14598                                 QualType FieldTy, bool IsMsStruct,
14599                                 Expr *BitWidth, bool *ZeroWidth) {
14600   // Default to true; that shouldn't confuse checks for emptiness
14601   if (ZeroWidth)
14602     *ZeroWidth = true;
14603 
14604   // C99 6.7.2.1p4 - verify the field type.
14605   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
14606   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
14607     // Handle incomplete types with specific error.
14608     if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
14609       return ExprError();
14610     if (FieldName)
14611       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
14612         << FieldName << FieldTy << BitWidth->getSourceRange();
14613     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
14614       << FieldTy << BitWidth->getSourceRange();
14615   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
14616                                              UPPC_BitFieldWidth))
14617     return ExprError();
14618 
14619   // If the bit-width is type- or value-dependent, don't try to check
14620   // it now.
14621   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
14622     return BitWidth;
14623 
14624   llvm::APSInt Value;
14625   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
14626   if (ICE.isInvalid())
14627     return ICE;
14628   BitWidth = ICE.get();
14629 
14630   if (Value != 0 && ZeroWidth)
14631     *ZeroWidth = false;
14632 
14633   // Zero-width bitfield is ok for anonymous field.
14634   if (Value == 0 && FieldName)
14635     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
14636 
14637   if (Value.isSigned() && Value.isNegative()) {
14638     if (FieldName)
14639       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
14640                << FieldName << Value.toString(10);
14641     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
14642       << Value.toString(10);
14643   }
14644 
14645   if (!FieldTy->isDependentType()) {
14646     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
14647     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
14648     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
14649 
14650     // Over-wide bitfields are an error in C or when using the MSVC bitfield
14651     // ABI.
14652     bool CStdConstraintViolation =
14653         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
14654     bool MSBitfieldViolation =
14655         Value.ugt(TypeStorageSize) &&
14656         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
14657     if (CStdConstraintViolation || MSBitfieldViolation) {
14658       unsigned DiagWidth =
14659           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
14660       if (FieldName)
14661         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
14662                << FieldName << (unsigned)Value.getZExtValue()
14663                << !CStdConstraintViolation << DiagWidth;
14664 
14665       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
14666              << (unsigned)Value.getZExtValue() << !CStdConstraintViolation
14667              << DiagWidth;
14668     }
14669 
14670     // Warn on types where the user might conceivably expect to get all
14671     // specified bits as value bits: that's all integral types other than
14672     // 'bool'.
14673     if (BitfieldIsOverwide && !FieldTy->isBooleanType()) {
14674       if (FieldName)
14675         Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
14676             << FieldName << (unsigned)Value.getZExtValue()
14677             << (unsigned)TypeWidth;
14678       else
14679         Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)
14680             << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;
14681     }
14682   }
14683 
14684   return BitWidth;
14685 }
14686 
14687 /// ActOnField - Each field of a C struct/union is passed into this in order
14688 /// to create a FieldDecl object for it.
14689 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
14690                        Declarator &D, Expr *BitfieldWidth) {
14691   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
14692                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
14693                                /*InitStyle=*/ICIS_NoInit, AS_public);
14694   return Res;
14695 }
14696 
14697 /// HandleField - Analyze a field of a C struct or a C++ data member.
14698 ///
14699 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
14700                              SourceLocation DeclStart,
14701                              Declarator &D, Expr *BitWidth,
14702                              InClassInitStyle InitStyle,
14703                              AccessSpecifier AS) {
14704   if (D.isDecompositionDeclarator()) {
14705     const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
14706     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
14707       << Decomp.getSourceRange();
14708     return nullptr;
14709   }
14710 
14711   IdentifierInfo *II = D.getIdentifier();
14712   SourceLocation Loc = DeclStart;
14713   if (II) Loc = D.getIdentifierLoc();
14714 
14715   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
14716   QualType T = TInfo->getType();
14717   if (getLangOpts().CPlusPlus) {
14718     CheckExtraCXXDefaultArguments(D);
14719 
14720     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
14721                                         UPPC_DataMemberType)) {
14722       D.setInvalidType();
14723       T = Context.IntTy;
14724       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
14725     }
14726   }
14727 
14728   // TR 18037 does not allow fields to be declared with address spaces.
14729   if (T.getQualifiers().hasAddressSpace() ||
14730       T->isDependentAddressSpaceType() ||
14731       T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) {
14732     Diag(Loc, diag::err_field_with_address_space);
14733     D.setInvalidType();
14734   }
14735 
14736   // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
14737   // used as structure or union field: image, sampler, event or block types.
14738   if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() ||
14739                           T->isSamplerT() || T->isBlockPointerType())) {
14740     Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
14741     D.setInvalidType();
14742   }
14743 
14744   DiagnoseFunctionSpecifiers(D.getDeclSpec());
14745 
14746   if (D.getDeclSpec().isInlineSpecified())
14747     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
14748         << getLangOpts().CPlusPlus17;
14749   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
14750     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
14751          diag::err_invalid_thread)
14752       << DeclSpec::getSpecifierName(TSCS);
14753 
14754   // Check to see if this name was declared as a member previously
14755   NamedDecl *PrevDecl = nullptr;
14756   LookupResult Previous(*this, II, Loc, LookupMemberName,
14757                         ForVisibleRedeclaration);
14758   LookupName(Previous, S);
14759   switch (Previous.getResultKind()) {
14760     case LookupResult::Found:
14761     case LookupResult::FoundUnresolvedValue:
14762       PrevDecl = Previous.getAsSingle<NamedDecl>();
14763       break;
14764 
14765     case LookupResult::FoundOverloaded:
14766       PrevDecl = Previous.getRepresentativeDecl();
14767       break;
14768 
14769     case LookupResult::NotFound:
14770     case LookupResult::NotFoundInCurrentInstantiation:
14771     case LookupResult::Ambiguous:
14772       break;
14773   }
14774   Previous.suppressDiagnostics();
14775 
14776   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14777     // Maybe we will complain about the shadowed template parameter.
14778     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
14779     // Just pretend that we didn't see the previous declaration.
14780     PrevDecl = nullptr;
14781   }
14782 
14783   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
14784     PrevDecl = nullptr;
14785 
14786   bool Mutable
14787     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
14788   SourceLocation TSSL = D.getLocStart();
14789   FieldDecl *NewFD
14790     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
14791                      TSSL, AS, PrevDecl, &D);
14792 
14793   if (NewFD->isInvalidDecl())
14794     Record->setInvalidDecl();
14795 
14796   if (D.getDeclSpec().isModulePrivateSpecified())
14797     NewFD->setModulePrivate();
14798 
14799   if (NewFD->isInvalidDecl() && PrevDecl) {
14800     // Don't introduce NewFD into scope; there's already something
14801     // with the same name in the same scope.
14802   } else if (II) {
14803     PushOnScopeChains(NewFD, S);
14804   } else
14805     Record->addDecl(NewFD);
14806 
14807   return NewFD;
14808 }
14809 
14810 /// \brief Build a new FieldDecl and check its well-formedness.
14811 ///
14812 /// This routine builds a new FieldDecl given the fields name, type,
14813 /// record, etc. \p PrevDecl should refer to any previous declaration
14814 /// with the same name and in the same scope as the field to be
14815 /// created.
14816 ///
14817 /// \returns a new FieldDecl.
14818 ///
14819 /// \todo The Declarator argument is a hack. It will be removed once
14820 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
14821                                 TypeSourceInfo *TInfo,
14822                                 RecordDecl *Record, SourceLocation Loc,
14823                                 bool Mutable, Expr *BitWidth,
14824                                 InClassInitStyle InitStyle,
14825                                 SourceLocation TSSL,
14826                                 AccessSpecifier AS, NamedDecl *PrevDecl,
14827                                 Declarator *D) {
14828   IdentifierInfo *II = Name.getAsIdentifierInfo();
14829   bool InvalidDecl = false;
14830   if (D) InvalidDecl = D->isInvalidType();
14831 
14832   // If we receive a broken type, recover by assuming 'int' and
14833   // marking this declaration as invalid.
14834   if (T.isNull()) {
14835     InvalidDecl = true;
14836     T = Context.IntTy;
14837   }
14838 
14839   QualType EltTy = Context.getBaseElementType(T);
14840   if (!EltTy->isDependentType()) {
14841     if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
14842       // Fields of incomplete type force their record to be invalid.
14843       Record->setInvalidDecl();
14844       InvalidDecl = true;
14845     } else {
14846       NamedDecl *Def;
14847       EltTy->isIncompleteType(&Def);
14848       if (Def && Def->isInvalidDecl()) {
14849         Record->setInvalidDecl();
14850         InvalidDecl = true;
14851       }
14852     }
14853   }
14854 
14855   // OpenCL v1.2 s6.9.c: bitfields are not supported.
14856   if (BitWidth && getLangOpts().OpenCL) {
14857     Diag(Loc, diag::err_opencl_bitfields);
14858     InvalidDecl = true;
14859   }
14860 
14861   // C99 6.7.2.1p8: A member of a structure or union may have any type other
14862   // than a variably modified type.
14863   if (!InvalidDecl && T->isVariablyModifiedType()) {
14864     bool SizeIsNegative;
14865     llvm::APSInt Oversized;
14866 
14867     TypeSourceInfo *FixedTInfo =
14868       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
14869                                                     SizeIsNegative,
14870                                                     Oversized);
14871     if (FixedTInfo) {
14872       Diag(Loc, diag::warn_illegal_constant_array_size);
14873       TInfo = FixedTInfo;
14874       T = FixedTInfo->getType();
14875     } else {
14876       if (SizeIsNegative)
14877         Diag(Loc, diag::err_typecheck_negative_array_size);
14878       else if (Oversized.getBoolValue())
14879         Diag(Loc, diag::err_array_too_large)
14880           << Oversized.toString(10);
14881       else
14882         Diag(Loc, diag::err_typecheck_field_variable_size);
14883       InvalidDecl = true;
14884     }
14885   }
14886 
14887   // Fields can not have abstract class types
14888   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
14889                                              diag::err_abstract_type_in_decl,
14890                                              AbstractFieldType))
14891     InvalidDecl = true;
14892 
14893   bool ZeroWidth = false;
14894   if (InvalidDecl)
14895     BitWidth = nullptr;
14896   // If this is declared as a bit-field, check the bit-field.
14897   if (BitWidth) {
14898     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
14899                               &ZeroWidth).get();
14900     if (!BitWidth) {
14901       InvalidDecl = true;
14902       BitWidth = nullptr;
14903       ZeroWidth = false;
14904     }
14905   }
14906 
14907   // Check that 'mutable' is consistent with the type of the declaration.
14908   if (!InvalidDecl && Mutable) {
14909     unsigned DiagID = 0;
14910     if (T->isReferenceType())
14911       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
14912                                         : diag::err_mutable_reference;
14913     else if (T.isConstQualified())
14914       DiagID = diag::err_mutable_const;
14915 
14916     if (DiagID) {
14917       SourceLocation ErrLoc = Loc;
14918       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
14919         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
14920       Diag(ErrLoc, DiagID);
14921       if (DiagID != diag::ext_mutable_reference) {
14922         Mutable = false;
14923         InvalidDecl = true;
14924       }
14925     }
14926   }
14927 
14928   // C++11 [class.union]p8 (DR1460):
14929   //   At most one variant member of a union may have a
14930   //   brace-or-equal-initializer.
14931   if (InitStyle != ICIS_NoInit)
14932     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
14933 
14934   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
14935                                        BitWidth, Mutable, InitStyle);
14936   if (InvalidDecl)
14937     NewFD->setInvalidDecl();
14938 
14939   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
14940     Diag(Loc, diag::err_duplicate_member) << II;
14941     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
14942     NewFD->setInvalidDecl();
14943   }
14944 
14945   if (!InvalidDecl && getLangOpts().CPlusPlus) {
14946     if (Record->isUnion()) {
14947       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
14948         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
14949         if (RDecl->getDefinition()) {
14950           // C++ [class.union]p1: An object of a class with a non-trivial
14951           // constructor, a non-trivial copy constructor, a non-trivial
14952           // destructor, or a non-trivial copy assignment operator
14953           // cannot be a member of a union, nor can an array of such
14954           // objects.
14955           if (CheckNontrivialField(NewFD))
14956             NewFD->setInvalidDecl();
14957         }
14958       }
14959 
14960       // C++ [class.union]p1: If a union contains a member of reference type,
14961       // the program is ill-formed, except when compiling with MSVC extensions
14962       // enabled.
14963       if (EltTy->isReferenceType()) {
14964         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
14965                                     diag::ext_union_member_of_reference_type :
14966                                     diag::err_union_member_of_reference_type)
14967           << NewFD->getDeclName() << EltTy;
14968         if (!getLangOpts().MicrosoftExt)
14969           NewFD->setInvalidDecl();
14970       }
14971     }
14972   }
14973 
14974   // FIXME: We need to pass in the attributes given an AST
14975   // representation, not a parser representation.
14976   if (D) {
14977     // FIXME: The current scope is almost... but not entirely... correct here.
14978     ProcessDeclAttributes(getCurScope(), NewFD, *D);
14979 
14980     if (NewFD->hasAttrs())
14981       CheckAlignasUnderalignment(NewFD);
14982   }
14983 
14984   // In auto-retain/release, infer strong retension for fields of
14985   // retainable type.
14986   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
14987     NewFD->setInvalidDecl();
14988 
14989   if (T.isObjCGCWeak())
14990     Diag(Loc, diag::warn_attribute_weak_on_field);
14991 
14992   NewFD->setAccess(AS);
14993   return NewFD;
14994 }
14995 
14996 bool Sema::CheckNontrivialField(FieldDecl *FD) {
14997   assert(FD);
14998   assert(getLangOpts().CPlusPlus && "valid check only for C++");
14999 
15000   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
15001     return false;
15002 
15003   QualType EltTy = Context.getBaseElementType(FD->getType());
15004   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
15005     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
15006     if (RDecl->getDefinition()) {
15007       // We check for copy constructors before constructors
15008       // because otherwise we'll never get complaints about
15009       // copy constructors.
15010 
15011       CXXSpecialMember member = CXXInvalid;
15012       // We're required to check for any non-trivial constructors. Since the
15013       // implicit default constructor is suppressed if there are any
15014       // user-declared constructors, we just need to check that there is a
15015       // trivial default constructor and a trivial copy constructor. (We don't
15016       // worry about move constructors here, since this is a C++98 check.)
15017       if (RDecl->hasNonTrivialCopyConstructor())
15018         member = CXXCopyConstructor;
15019       else if (!RDecl->hasTrivialDefaultConstructor())
15020         member = CXXDefaultConstructor;
15021       else if (RDecl->hasNonTrivialCopyAssignment())
15022         member = CXXCopyAssignment;
15023       else if (RDecl->hasNonTrivialDestructor())
15024         member = CXXDestructor;
15025 
15026       if (member != CXXInvalid) {
15027         if (!getLangOpts().CPlusPlus11 &&
15028             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
15029           // Objective-C++ ARC: it is an error to have a non-trivial field of
15030           // a union. However, system headers in Objective-C programs
15031           // occasionally have Objective-C lifetime objects within unions,
15032           // and rather than cause the program to fail, we make those
15033           // members unavailable.
15034           SourceLocation Loc = FD->getLocation();
15035           if (getSourceManager().isInSystemHeader(Loc)) {
15036             if (!FD->hasAttr<UnavailableAttr>())
15037               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
15038                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
15039             return false;
15040           }
15041         }
15042 
15043         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
15044                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
15045                diag::err_illegal_union_or_anon_struct_member)
15046           << FD->getParent()->isUnion() << FD->getDeclName() << member;
15047         DiagnoseNontrivial(RDecl, member);
15048         return !getLangOpts().CPlusPlus11;
15049       }
15050     }
15051   }
15052 
15053   return false;
15054 }
15055 
15056 /// TranslateIvarVisibility - Translate visibility from a token ID to an
15057 ///  AST enum value.
15058 static ObjCIvarDecl::AccessControl
15059 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
15060   switch (ivarVisibility) {
15061   default: llvm_unreachable("Unknown visitibility kind");
15062   case tok::objc_private: return ObjCIvarDecl::Private;
15063   case tok::objc_public: return ObjCIvarDecl::Public;
15064   case tok::objc_protected: return ObjCIvarDecl::Protected;
15065   case tok::objc_package: return ObjCIvarDecl::Package;
15066   }
15067 }
15068 
15069 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
15070 /// in order to create an IvarDecl object for it.
15071 Decl *Sema::ActOnIvar(Scope *S,
15072                                 SourceLocation DeclStart,
15073                                 Declarator &D, Expr *BitfieldWidth,
15074                                 tok::ObjCKeywordKind Visibility) {
15075 
15076   IdentifierInfo *II = D.getIdentifier();
15077   Expr *BitWidth = (Expr*)BitfieldWidth;
15078   SourceLocation Loc = DeclStart;
15079   if (II) Loc = D.getIdentifierLoc();
15080 
15081   // FIXME: Unnamed fields can be handled in various different ways, for
15082   // example, unnamed unions inject all members into the struct namespace!
15083 
15084   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
15085   QualType T = TInfo->getType();
15086 
15087   if (BitWidth) {
15088     // 6.7.2.1p3, 6.7.2.1p4
15089     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
15090     if (!BitWidth)
15091       D.setInvalidType();
15092   } else {
15093     // Not a bitfield.
15094 
15095     // validate II.
15096 
15097   }
15098   if (T->isReferenceType()) {
15099     Diag(Loc, diag::err_ivar_reference_type);
15100     D.setInvalidType();
15101   }
15102   // C99 6.7.2.1p8: A member of a structure or union may have any type other
15103   // than a variably modified type.
15104   else if (T->isVariablyModifiedType()) {
15105     Diag(Loc, diag::err_typecheck_ivar_variable_size);
15106     D.setInvalidType();
15107   }
15108 
15109   // Get the visibility (access control) for this ivar.
15110   ObjCIvarDecl::AccessControl ac =
15111     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
15112                                         : ObjCIvarDecl::None;
15113   // Must set ivar's DeclContext to its enclosing interface.
15114   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
15115   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
15116     return nullptr;
15117   ObjCContainerDecl *EnclosingContext;
15118   if (ObjCImplementationDecl *IMPDecl =
15119       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
15120     if (LangOpts.ObjCRuntime.isFragile()) {
15121     // Case of ivar declared in an implementation. Context is that of its class.
15122       EnclosingContext = IMPDecl->getClassInterface();
15123       assert(EnclosingContext && "Implementation has no class interface!");
15124     }
15125     else
15126       EnclosingContext = EnclosingDecl;
15127   } else {
15128     if (ObjCCategoryDecl *CDecl =
15129         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
15130       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
15131         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
15132         return nullptr;
15133       }
15134     }
15135     EnclosingContext = EnclosingDecl;
15136   }
15137 
15138   // Construct the decl.
15139   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
15140                                              DeclStart, Loc, II, T,
15141                                              TInfo, ac, (Expr *)BitfieldWidth);
15142 
15143   if (II) {
15144     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
15145                                            ForVisibleRedeclaration);
15146     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
15147         && !isa<TagDecl>(PrevDecl)) {
15148       Diag(Loc, diag::err_duplicate_member) << II;
15149       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
15150       NewID->setInvalidDecl();
15151     }
15152   }
15153 
15154   // Process attributes attached to the ivar.
15155   ProcessDeclAttributes(S, NewID, D);
15156 
15157   if (D.isInvalidType())
15158     NewID->setInvalidDecl();
15159 
15160   // In ARC, infer 'retaining' for ivars of retainable type.
15161   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
15162     NewID->setInvalidDecl();
15163 
15164   if (D.getDeclSpec().isModulePrivateSpecified())
15165     NewID->setModulePrivate();
15166 
15167   if (II) {
15168     // FIXME: When interfaces are DeclContexts, we'll need to add
15169     // these to the interface.
15170     S->AddDecl(NewID);
15171     IdResolver.AddDecl(NewID);
15172   }
15173 
15174   if (LangOpts.ObjCRuntime.isNonFragile() &&
15175       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
15176     Diag(Loc, diag::warn_ivars_in_interface);
15177 
15178   return NewID;
15179 }
15180 
15181 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for
15182 /// class and class extensions. For every class \@interface and class
15183 /// extension \@interface, if the last ivar is a bitfield of any type,
15184 /// then add an implicit `char :0` ivar to the end of that interface.
15185 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
15186                              SmallVectorImpl<Decl *> &AllIvarDecls) {
15187   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
15188     return;
15189 
15190   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
15191   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
15192 
15193   if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
15194     return;
15195   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
15196   if (!ID) {
15197     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
15198       if (!CD->IsClassExtension())
15199         return;
15200     }
15201     // No need to add this to end of @implementation.
15202     else
15203       return;
15204   }
15205   // All conditions are met. Add a new bitfield to the tail end of ivars.
15206   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
15207   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
15208 
15209   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
15210                               DeclLoc, DeclLoc, nullptr,
15211                               Context.CharTy,
15212                               Context.getTrivialTypeSourceInfo(Context.CharTy,
15213                                                                DeclLoc),
15214                               ObjCIvarDecl::Private, BW,
15215                               true);
15216   AllIvarDecls.push_back(Ivar);
15217 }
15218 
15219 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
15220                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
15221                        SourceLocation RBrac, AttributeList *Attr) {
15222   assert(EnclosingDecl && "missing record or interface decl");
15223 
15224   // If this is an Objective-C @implementation or category and we have
15225   // new fields here we should reset the layout of the interface since
15226   // it will now change.
15227   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
15228     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
15229     switch (DC->getKind()) {
15230     default: break;
15231     case Decl::ObjCCategory:
15232       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
15233       break;
15234     case Decl::ObjCImplementation:
15235       Context.
15236         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
15237       break;
15238     }
15239   }
15240 
15241   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
15242 
15243   // Start counting up the number of named members; make sure to include
15244   // members of anonymous structs and unions in the total.
15245   unsigned NumNamedMembers = 0;
15246   if (Record) {
15247     for (const auto *I : Record->decls()) {
15248       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
15249         if (IFD->getDeclName())
15250           ++NumNamedMembers;
15251     }
15252   }
15253 
15254   // Verify that all the fields are okay.
15255   SmallVector<FieldDecl*, 32> RecFields;
15256 
15257   bool ObjCFieldLifetimeErrReported = false;
15258   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
15259        i != end; ++i) {
15260     FieldDecl *FD = cast<FieldDecl>(*i);
15261 
15262     // Get the type for the field.
15263     const Type *FDTy = FD->getType().getTypePtr();
15264     Qualifiers QS = FD->getType().getQualifiers();
15265 
15266     if (!FD->isAnonymousStructOrUnion()) {
15267       // Remember all fields written by the user.
15268       RecFields.push_back(FD);
15269     }
15270 
15271     // If the field is already invalid for some reason, don't emit more
15272     // diagnostics about it.
15273     if (FD->isInvalidDecl()) {
15274       EnclosingDecl->setInvalidDecl();
15275       continue;
15276     }
15277 
15278     // C99 6.7.2.1p2:
15279     //   A structure or union shall not contain a member with
15280     //   incomplete or function type (hence, a structure shall not
15281     //   contain an instance of itself, but may contain a pointer to
15282     //   an instance of itself), except that the last member of a
15283     //   structure with more than one named member may have incomplete
15284     //   array type; such a structure (and any union containing,
15285     //   possibly recursively, a member that is such a structure)
15286     //   shall not be a member of a structure or an element of an
15287     //   array.
15288     bool IsLastField = (i + 1 == Fields.end());
15289     if (FDTy->isFunctionType()) {
15290       // Field declared as a function.
15291       Diag(FD->getLocation(), diag::err_field_declared_as_function)
15292         << FD->getDeclName();
15293       FD->setInvalidDecl();
15294       EnclosingDecl->setInvalidDecl();
15295       continue;
15296     } else if (FDTy->isIncompleteArrayType() &&
15297                (Record || isa<ObjCContainerDecl>(EnclosingDecl))) {
15298       if (Record) {
15299         // Flexible array member.
15300         // Microsoft and g++ is more permissive regarding flexible array.
15301         // It will accept flexible array in union and also
15302         // as the sole element of a struct/class.
15303         unsigned DiagID = 0;
15304         if (!Record->isUnion() && !IsLastField) {
15305           Diag(FD->getLocation(), diag::err_flexible_array_not_at_end)
15306             << FD->getDeclName() << FD->getType() << Record->getTagKind();
15307           Diag((*(i + 1))->getLocation(), diag::note_next_field_declaration);
15308           FD->setInvalidDecl();
15309           EnclosingDecl->setInvalidDecl();
15310           continue;
15311         } else if (Record->isUnion())
15312           DiagID = getLangOpts().MicrosoftExt
15313                        ? diag::ext_flexible_array_union_ms
15314                        : getLangOpts().CPlusPlus
15315                              ? diag::ext_flexible_array_union_gnu
15316                              : diag::err_flexible_array_union;
15317         else if (NumNamedMembers < 1)
15318           DiagID = getLangOpts().MicrosoftExt
15319                        ? diag::ext_flexible_array_empty_aggregate_ms
15320                        : getLangOpts().CPlusPlus
15321                              ? diag::ext_flexible_array_empty_aggregate_gnu
15322                              : diag::err_flexible_array_empty_aggregate;
15323 
15324         if (DiagID)
15325           Diag(FD->getLocation(), DiagID) << FD->getDeclName()
15326                                           << Record->getTagKind();
15327         // While the layout of types that contain virtual bases is not specified
15328         // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
15329         // virtual bases after the derived members.  This would make a flexible
15330         // array member declared at the end of an object not adjacent to the end
15331         // of the type.
15332         if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
15333           if (RD->getNumVBases() != 0)
15334             Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
15335               << FD->getDeclName() << Record->getTagKind();
15336         if (!getLangOpts().C99)
15337           Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
15338             << FD->getDeclName() << Record->getTagKind();
15339 
15340         // If the element type has a non-trivial destructor, we would not
15341         // implicitly destroy the elements, so disallow it for now.
15342         //
15343         // FIXME: GCC allows this. We should probably either implicitly delete
15344         // the destructor of the containing class, or just allow this.
15345         QualType BaseElem = Context.getBaseElementType(FD->getType());
15346         if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
15347           Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
15348             << FD->getDeclName() << FD->getType();
15349           FD->setInvalidDecl();
15350           EnclosingDecl->setInvalidDecl();
15351           continue;
15352         }
15353         // Okay, we have a legal flexible array member at the end of the struct.
15354         Record->setHasFlexibleArrayMember(true);
15355       } else {
15356         // In ObjCContainerDecl ivars with incomplete array type are accepted,
15357         // unless they are followed by another ivar. That check is done
15358         // elsewhere, after synthesized ivars are known.
15359       }
15360     } else if (!FDTy->isDependentType() &&
15361                RequireCompleteType(FD->getLocation(), FD->getType(),
15362                                    diag::err_field_incomplete)) {
15363       // Incomplete type
15364       FD->setInvalidDecl();
15365       EnclosingDecl->setInvalidDecl();
15366       continue;
15367     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
15368       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
15369         // A type which contains a flexible array member is considered to be a
15370         // flexible array member.
15371         Record->setHasFlexibleArrayMember(true);
15372         if (!Record->isUnion()) {
15373           // If this is a struct/class and this is not the last element, reject
15374           // it.  Note that GCC supports variable sized arrays in the middle of
15375           // structures.
15376           if (!IsLastField)
15377             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
15378               << FD->getDeclName() << FD->getType();
15379           else {
15380             // We support flexible arrays at the end of structs in
15381             // other structs as an extension.
15382             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
15383               << FD->getDeclName();
15384           }
15385         }
15386       }
15387       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
15388           RequireNonAbstractType(FD->getLocation(), FD->getType(),
15389                                  diag::err_abstract_type_in_decl,
15390                                  AbstractIvarType)) {
15391         // Ivars can not have abstract class types
15392         FD->setInvalidDecl();
15393       }
15394       if (Record && FDTTy->getDecl()->hasObjectMember())
15395         Record->setHasObjectMember(true);
15396       if (Record && FDTTy->getDecl()->hasVolatileMember())
15397         Record->setHasVolatileMember(true);
15398     } else if (FDTy->isObjCObjectType()) {
15399       /// A field cannot be an Objective-c object
15400       Diag(FD->getLocation(), diag::err_statically_allocated_object)
15401         << FixItHint::CreateInsertion(FD->getLocation(), "*");
15402       QualType T = Context.getObjCObjectPointerType(FD->getType());
15403       FD->setType(T);
15404     } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
15405                Record && !ObjCFieldLifetimeErrReported &&
15406                ((!getLangOpts().CPlusPlus &&
15407                  QS.getObjCLifetime() == Qualifiers::OCL_Weak) ||
15408                 Record->isUnion())) {
15409       // It's an error in ARC or Weak if a field has lifetime.
15410       // We don't want to report this in a system header, though,
15411       // so we just make the field unavailable.
15412       // FIXME: that's really not sufficient; we need to make the type
15413       // itself invalid to, say, initialize or copy.
15414       QualType T = FD->getType();
15415       if (T.hasNonTrivialObjCLifetime()) {
15416         SourceLocation loc = FD->getLocation();
15417         if (getSourceManager().isInSystemHeader(loc)) {
15418           if (!FD->hasAttr<UnavailableAttr>()) {
15419             FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
15420                           UnavailableAttr::IR_ARCFieldWithOwnership, loc));
15421           }
15422         } else {
15423           Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag)
15424             << T->isBlockPointerType() << Record->getTagKind();
15425         }
15426         ObjCFieldLifetimeErrReported = true;
15427       }
15428     } else if (getLangOpts().ObjC1 &&
15429                getLangOpts().getGC() != LangOptions::NonGC &&
15430                Record && !Record->hasObjectMember()) {
15431       if (FD->getType()->isObjCObjectPointerType() ||
15432           FD->getType().isObjCGCStrong())
15433         Record->setHasObjectMember(true);
15434       else if (Context.getAsArrayType(FD->getType())) {
15435         QualType BaseType = Context.getBaseElementType(FD->getType());
15436         if (BaseType->isRecordType() &&
15437             BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
15438           Record->setHasObjectMember(true);
15439         else if (BaseType->isObjCObjectPointerType() ||
15440                  BaseType.isObjCGCStrong())
15441                Record->setHasObjectMember(true);
15442       }
15443     }
15444 
15445     if (Record && !getLangOpts().CPlusPlus) {
15446       QualType FT = FD->getType();
15447       if (FT.isNonTrivialToPrimitiveDefaultInitialize())
15448         Record->setNonTrivialToPrimitiveDefaultInitialize();
15449       QualType::PrimitiveCopyKind PCK = FT.isNonTrivialToPrimitiveCopy();
15450       if (PCK != QualType::PCK_Trivial && PCK != QualType::PCK_VolatileTrivial)
15451         Record->setNonTrivialToPrimitiveCopy();
15452       if (FT.isDestructedType())
15453         Record->setNonTrivialToPrimitiveDestroy();
15454     }
15455 
15456     if (Record && FD->getType().isVolatileQualified())
15457       Record->setHasVolatileMember(true);
15458     // Keep track of the number of named members.
15459     if (FD->getIdentifier())
15460       ++NumNamedMembers;
15461   }
15462 
15463   // Okay, we successfully defined 'Record'.
15464   if (Record) {
15465     bool Completed = false;
15466     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15467       if (!CXXRecord->isInvalidDecl()) {
15468         // Set access bits correctly on the directly-declared conversions.
15469         for (CXXRecordDecl::conversion_iterator
15470                I = CXXRecord->conversion_begin(),
15471                E = CXXRecord->conversion_end(); I != E; ++I)
15472           I.setAccess((*I)->getAccess());
15473       }
15474 
15475       if (!CXXRecord->isDependentType()) {
15476         if (CXXRecord->hasUserDeclaredDestructor()) {
15477           // Adjust user-defined destructor exception spec.
15478           if (getLangOpts().CPlusPlus11)
15479             AdjustDestructorExceptionSpec(CXXRecord,
15480                                           CXXRecord->getDestructor());
15481         }
15482 
15483         // Add any implicitly-declared members to this class.
15484         AddImplicitlyDeclaredMembersToClass(CXXRecord);
15485 
15486         if (!CXXRecord->isInvalidDecl()) {
15487           // If we have virtual base classes, we may end up finding multiple
15488           // final overriders for a given virtual function. Check for this
15489           // problem now.
15490           if (CXXRecord->getNumVBases()) {
15491             CXXFinalOverriderMap FinalOverriders;
15492             CXXRecord->getFinalOverriders(FinalOverriders);
15493 
15494             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
15495                                              MEnd = FinalOverriders.end();
15496                  M != MEnd; ++M) {
15497               for (OverridingMethods::iterator SO = M->second.begin(),
15498                                             SOEnd = M->second.end();
15499                    SO != SOEnd; ++SO) {
15500                 assert(SO->second.size() > 0 &&
15501                        "Virtual function without overridding functions?");
15502                 if (SO->second.size() == 1)
15503                   continue;
15504 
15505                 // C++ [class.virtual]p2:
15506                 //   In a derived class, if a virtual member function of a base
15507                 //   class subobject has more than one final overrider the
15508                 //   program is ill-formed.
15509                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
15510                   << (const NamedDecl *)M->first << Record;
15511                 Diag(M->first->getLocation(),
15512                      diag::note_overridden_virtual_function);
15513                 for (OverridingMethods::overriding_iterator
15514                           OM = SO->second.begin(),
15515                        OMEnd = SO->second.end();
15516                      OM != OMEnd; ++OM)
15517                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
15518                     << (const NamedDecl *)M->first << OM->Method->getParent();
15519 
15520                 Record->setInvalidDecl();
15521               }
15522             }
15523             CXXRecord->completeDefinition(&FinalOverriders);
15524             Completed = true;
15525           }
15526         }
15527       }
15528     }
15529 
15530     if (!Completed)
15531       Record->completeDefinition();
15532 
15533     // We may have deferred checking for a deleted destructor. Check now.
15534     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
15535       auto *Dtor = CXXRecord->getDestructor();
15536       if (Dtor && Dtor->isImplicit() &&
15537           ShouldDeleteSpecialMember(Dtor, CXXDestructor)) {
15538         CXXRecord->setImplicitDestructorIsDeleted();
15539         SetDeclDeleted(Dtor, CXXRecord->getLocation());
15540       }
15541     }
15542 
15543     if (Record->hasAttrs()) {
15544       CheckAlignasUnderalignment(Record);
15545 
15546       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
15547         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
15548                                            IA->getRange(), IA->getBestCase(),
15549                                            IA->getSemanticSpelling());
15550     }
15551 
15552     // Check if the structure/union declaration is a type that can have zero
15553     // size in C. For C this is a language extension, for C++ it may cause
15554     // compatibility problems.
15555     bool CheckForZeroSize;
15556     if (!getLangOpts().CPlusPlus) {
15557       CheckForZeroSize = true;
15558     } else {
15559       // For C++ filter out types that cannot be referenced in C code.
15560       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
15561       CheckForZeroSize =
15562           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
15563           !CXXRecord->isDependentType() &&
15564           CXXRecord->isCLike();
15565     }
15566     if (CheckForZeroSize) {
15567       bool ZeroSize = true;
15568       bool IsEmpty = true;
15569       unsigned NonBitFields = 0;
15570       for (RecordDecl::field_iterator I = Record->field_begin(),
15571                                       E = Record->field_end();
15572            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
15573         IsEmpty = false;
15574         if (I->isUnnamedBitfield()) {
15575           if (I->getBitWidthValue(Context) > 0)
15576             ZeroSize = false;
15577         } else {
15578           ++NonBitFields;
15579           QualType FieldType = I->getType();
15580           if (FieldType->isIncompleteType() ||
15581               !Context.getTypeSizeInChars(FieldType).isZero())
15582             ZeroSize = false;
15583         }
15584       }
15585 
15586       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
15587       // allowed in C++, but warn if its declaration is inside
15588       // extern "C" block.
15589       if (ZeroSize) {
15590         Diag(RecLoc, getLangOpts().CPlusPlus ?
15591                          diag::warn_zero_size_struct_union_in_extern_c :
15592                          diag::warn_zero_size_struct_union_compat)
15593           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
15594       }
15595 
15596       // Structs without named members are extension in C (C99 6.7.2.1p7),
15597       // but are accepted by GCC.
15598       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
15599         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
15600                                diag::ext_no_named_members_in_struct_union)
15601           << Record->isUnion();
15602       }
15603     }
15604   } else {
15605     ObjCIvarDecl **ClsFields =
15606       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
15607     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
15608       ID->setEndOfDefinitionLoc(RBrac);
15609       // Add ivar's to class's DeclContext.
15610       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15611         ClsFields[i]->setLexicalDeclContext(ID);
15612         ID->addDecl(ClsFields[i]);
15613       }
15614       // Must enforce the rule that ivars in the base classes may not be
15615       // duplicates.
15616       if (ID->getSuperClass())
15617         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
15618     } else if (ObjCImplementationDecl *IMPDecl =
15619                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
15620       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
15621       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
15622         // Ivar declared in @implementation never belongs to the implementation.
15623         // Only it is in implementation's lexical context.
15624         ClsFields[I]->setLexicalDeclContext(IMPDecl);
15625       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
15626       IMPDecl->setIvarLBraceLoc(LBrac);
15627       IMPDecl->setIvarRBraceLoc(RBrac);
15628     } else if (ObjCCategoryDecl *CDecl =
15629                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
15630       // case of ivars in class extension; all other cases have been
15631       // reported as errors elsewhere.
15632       // FIXME. Class extension does not have a LocEnd field.
15633       // CDecl->setLocEnd(RBrac);
15634       // Add ivar's to class extension's DeclContext.
15635       // Diagnose redeclaration of private ivars.
15636       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
15637       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
15638         if (IDecl) {
15639           if (const ObjCIvarDecl *ClsIvar =
15640               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
15641             Diag(ClsFields[i]->getLocation(),
15642                  diag::err_duplicate_ivar_declaration);
15643             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
15644             continue;
15645           }
15646           for (const auto *Ext : IDecl->known_extensions()) {
15647             if (const ObjCIvarDecl *ClsExtIvar
15648                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
15649               Diag(ClsFields[i]->getLocation(),
15650                    diag::err_duplicate_ivar_declaration);
15651               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
15652               continue;
15653             }
15654           }
15655         }
15656         ClsFields[i]->setLexicalDeclContext(CDecl);
15657         CDecl->addDecl(ClsFields[i]);
15658       }
15659       CDecl->setIvarLBraceLoc(LBrac);
15660       CDecl->setIvarRBraceLoc(RBrac);
15661     }
15662   }
15663 
15664   if (Attr)
15665     ProcessDeclAttributeList(S, Record, Attr);
15666 }
15667 
15668 /// \brief Determine whether the given integral value is representable within
15669 /// the given type T.
15670 static bool isRepresentableIntegerValue(ASTContext &Context,
15671                                         llvm::APSInt &Value,
15672                                         QualType T) {
15673   assert((T->isIntegralType(Context) || T->isEnumeralType()) &&
15674          "Integral type required!");
15675   unsigned BitWidth = Context.getIntWidth(T);
15676 
15677   if (Value.isUnsigned() || Value.isNonNegative()) {
15678     if (T->isSignedIntegerOrEnumerationType())
15679       --BitWidth;
15680     return Value.getActiveBits() <= BitWidth;
15681   }
15682   return Value.getMinSignedBits() <= BitWidth;
15683 }
15684 
15685 // \brief Given an integral type, return the next larger integral type
15686 // (or a NULL type of no such type exists).
15687 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
15688   // FIXME: Int128/UInt128 support, which also needs to be introduced into
15689   // enum checking below.
15690   assert((T->isIntegralType(Context) ||
15691          T->isEnumeralType()) && "Integral type required!");
15692   const unsigned NumTypes = 4;
15693   QualType SignedIntegralTypes[NumTypes] = {
15694     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
15695   };
15696   QualType UnsignedIntegralTypes[NumTypes] = {
15697     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
15698     Context.UnsignedLongLongTy
15699   };
15700 
15701   unsigned BitWidth = Context.getTypeSize(T);
15702   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
15703                                                         : UnsignedIntegralTypes;
15704   for (unsigned I = 0; I != NumTypes; ++I)
15705     if (Context.getTypeSize(Types[I]) > BitWidth)
15706       return Types[I];
15707 
15708   return QualType();
15709 }
15710 
15711 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
15712                                           EnumConstantDecl *LastEnumConst,
15713                                           SourceLocation IdLoc,
15714                                           IdentifierInfo *Id,
15715                                           Expr *Val) {
15716   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
15717   llvm::APSInt EnumVal(IntWidth);
15718   QualType EltTy;
15719 
15720   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
15721     Val = nullptr;
15722 
15723   if (Val)
15724     Val = DefaultLvalueConversion(Val).get();
15725 
15726   if (Val) {
15727     if (Enum->isDependentType() || Val->isTypeDependent())
15728       EltTy = Context.DependentTy;
15729     else {
15730       if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
15731           !getLangOpts().MSVCCompat) {
15732         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
15733         // constant-expression in the enumerator-definition shall be a converted
15734         // constant expression of the underlying type.
15735         EltTy = Enum->getIntegerType();
15736         ExprResult Converted =
15737           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
15738                                            CCEK_Enumerator);
15739         if (Converted.isInvalid())
15740           Val = nullptr;
15741         else
15742           Val = Converted.get();
15743       } else if (!Val->isValueDependent() &&
15744                  !(Val = VerifyIntegerConstantExpression(Val,
15745                                                          &EnumVal).get())) {
15746         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
15747       } else {
15748         if (Enum->isComplete()) {
15749           EltTy = Enum->getIntegerType();
15750 
15751           // In Obj-C and Microsoft mode, require the enumeration value to be
15752           // representable in the underlying type of the enumeration. In C++11,
15753           // we perform a non-narrowing conversion as part of converted constant
15754           // expression checking.
15755           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15756             if (getLangOpts().MSVCCompat) {
15757               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
15758               Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
15759             } else
15760               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
15761           } else
15762             Val = ImpCastExprToType(Val, EltTy,
15763                                     EltTy->isBooleanType() ?
15764                                     CK_IntegralToBoolean : CK_IntegralCast)
15765                     .get();
15766         } else if (getLangOpts().CPlusPlus) {
15767           // C++11 [dcl.enum]p5:
15768           //   If the underlying type is not fixed, the type of each enumerator
15769           //   is the type of its initializing value:
15770           //     - If an initializer is specified for an enumerator, the
15771           //       initializing value has the same type as the expression.
15772           EltTy = Val->getType();
15773         } else {
15774           // C99 6.7.2.2p2:
15775           //   The expression that defines the value of an enumeration constant
15776           //   shall be an integer constant expression that has a value
15777           //   representable as an int.
15778 
15779           // Complain if the value is not representable in an int.
15780           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
15781             Diag(IdLoc, diag::ext_enum_value_not_int)
15782               << EnumVal.toString(10) << Val->getSourceRange()
15783               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
15784           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
15785             // Force the type of the expression to 'int'.
15786             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
15787           }
15788           EltTy = Val->getType();
15789         }
15790       }
15791     }
15792   }
15793 
15794   if (!Val) {
15795     if (Enum->isDependentType())
15796       EltTy = Context.DependentTy;
15797     else if (!LastEnumConst) {
15798       // C++0x [dcl.enum]p5:
15799       //   If the underlying type is not fixed, the type of each enumerator
15800       //   is the type of its initializing value:
15801       //     - If no initializer is specified for the first enumerator, the
15802       //       initializing value has an unspecified integral type.
15803       //
15804       // GCC uses 'int' for its unspecified integral type, as does
15805       // C99 6.7.2.2p3.
15806       if (Enum->isFixed()) {
15807         EltTy = Enum->getIntegerType();
15808       }
15809       else {
15810         EltTy = Context.IntTy;
15811       }
15812     } else {
15813       // Assign the last value + 1.
15814       EnumVal = LastEnumConst->getInitVal();
15815       ++EnumVal;
15816       EltTy = LastEnumConst->getType();
15817 
15818       // Check for overflow on increment.
15819       if (EnumVal < LastEnumConst->getInitVal()) {
15820         // C++0x [dcl.enum]p5:
15821         //   If the underlying type is not fixed, the type of each enumerator
15822         //   is the type of its initializing value:
15823         //
15824         //     - Otherwise the type of the initializing value is the same as
15825         //       the type of the initializing value of the preceding enumerator
15826         //       unless the incremented value is not representable in that type,
15827         //       in which case the type is an unspecified integral type
15828         //       sufficient to contain the incremented value. If no such type
15829         //       exists, the program is ill-formed.
15830         QualType T = getNextLargerIntegralType(Context, EltTy);
15831         if (T.isNull() || Enum->isFixed()) {
15832           // There is no integral type larger enough to represent this
15833           // value. Complain, then allow the value to wrap around.
15834           EnumVal = LastEnumConst->getInitVal();
15835           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
15836           ++EnumVal;
15837           if (Enum->isFixed())
15838             // When the underlying type is fixed, this is ill-formed.
15839             Diag(IdLoc, diag::err_enumerator_wrapped)
15840               << EnumVal.toString(10)
15841               << EltTy;
15842           else
15843             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
15844               << EnumVal.toString(10);
15845         } else {
15846           EltTy = T;
15847         }
15848 
15849         // Retrieve the last enumerator's value, extent that type to the
15850         // type that is supposed to be large enough to represent the incremented
15851         // value, then increment.
15852         EnumVal = LastEnumConst->getInitVal();
15853         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15854         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
15855         ++EnumVal;
15856 
15857         // If we're not in C++, diagnose the overflow of enumerator values,
15858         // which in C99 means that the enumerator value is not representable in
15859         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
15860         // permits enumerator values that are representable in some larger
15861         // integral type.
15862         if (!getLangOpts().CPlusPlus && !T.isNull())
15863           Diag(IdLoc, diag::warn_enum_value_overflow);
15864       } else if (!getLangOpts().CPlusPlus &&
15865                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
15866         // Enforce C99 6.7.2.2p2 even when we compute the next value.
15867         Diag(IdLoc, diag::ext_enum_value_not_int)
15868           << EnumVal.toString(10) << 1;
15869       }
15870     }
15871   }
15872 
15873   if (!EltTy->isDependentType()) {
15874     // Make the enumerator value match the signedness and size of the
15875     // enumerator's type.
15876     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
15877     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
15878   }
15879 
15880   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
15881                                   Val, EnumVal);
15882 }
15883 
15884 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
15885                                                 SourceLocation IILoc) {
15886   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
15887       !getLangOpts().CPlusPlus)
15888     return SkipBodyInfo();
15889 
15890   // We have an anonymous enum definition. Look up the first enumerator to
15891   // determine if we should merge the definition with an existing one and
15892   // skip the body.
15893   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
15894                                          forRedeclarationInCurContext());
15895   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
15896   if (!PrevECD)
15897     return SkipBodyInfo();
15898 
15899   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
15900   NamedDecl *Hidden;
15901   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
15902     SkipBodyInfo Skip;
15903     Skip.Previous = Hidden;
15904     return Skip;
15905   }
15906 
15907   return SkipBodyInfo();
15908 }
15909 
15910 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
15911                               SourceLocation IdLoc, IdentifierInfo *Id,
15912                               AttributeList *Attr,
15913                               SourceLocation EqualLoc, Expr *Val) {
15914   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
15915   EnumConstantDecl *LastEnumConst =
15916     cast_or_null<EnumConstantDecl>(lastEnumConst);
15917 
15918   // The scope passed in may not be a decl scope.  Zip up the scope tree until
15919   // we find one that is.
15920   S = getNonFieldDeclScope(S);
15921 
15922   // Verify that there isn't already something declared with this name in this
15923   // scope.
15924   NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
15925                                          ForVisibleRedeclaration);
15926   if (PrevDecl && PrevDecl->isTemplateParameter()) {
15927     // Maybe we will complain about the shadowed template parameter.
15928     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
15929     // Just pretend that we didn't see the previous declaration.
15930     PrevDecl = nullptr;
15931   }
15932 
15933   // C++ [class.mem]p15:
15934   // If T is the name of a class, then each of the following shall have a name
15935   // different from T:
15936   // - every enumerator of every member of class T that is an unscoped
15937   // enumerated type
15938   if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped())
15939     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
15940                             DeclarationNameInfo(Id, IdLoc));
15941 
15942   EnumConstantDecl *New =
15943     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
15944   if (!New)
15945     return nullptr;
15946 
15947   if (PrevDecl) {
15948     // When in C++, we may get a TagDecl with the same name; in this case the
15949     // enum constant will 'hide' the tag.
15950     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
15951            "Received TagDecl when not in C++!");
15952     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
15953       if (isa<EnumConstantDecl>(PrevDecl))
15954         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
15955       else
15956         Diag(IdLoc, diag::err_redefinition) << Id;
15957       notePreviousDefinition(PrevDecl, IdLoc);
15958       return nullptr;
15959     }
15960   }
15961 
15962   // Process attributes.
15963   if (Attr) ProcessDeclAttributeList(S, New, Attr);
15964   AddPragmaAttributes(S, New);
15965 
15966   // Register this decl in the current scope stack.
15967   New->setAccess(TheEnumDecl->getAccess());
15968   PushOnScopeChains(New, S);
15969 
15970   ActOnDocumentableDecl(New);
15971 
15972   return New;
15973 }
15974 
15975 // Returns true when the enum initial expression does not trigger the
15976 // duplicate enum warning.  A few common cases are exempted as follows:
15977 // Element2 = Element1
15978 // Element2 = Element1 + 1
15979 // Element2 = Element1 - 1
15980 // Where Element2 and Element1 are from the same enum.
15981 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
15982   Expr *InitExpr = ECD->getInitExpr();
15983   if (!InitExpr)
15984     return true;
15985   InitExpr = InitExpr->IgnoreImpCasts();
15986 
15987   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
15988     if (!BO->isAdditiveOp())
15989       return true;
15990     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
15991     if (!IL)
15992       return true;
15993     if (IL->getValue() != 1)
15994       return true;
15995 
15996     InitExpr = BO->getLHS();
15997   }
15998 
15999   // This checks if the elements are from the same enum.
16000   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
16001   if (!DRE)
16002     return true;
16003 
16004   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
16005   if (!EnumConstant)
16006     return true;
16007 
16008   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
16009       Enum)
16010     return true;
16011 
16012   return false;
16013 }
16014 
16015 namespace {
16016 struct DupKey {
16017   int64_t val;
16018   bool isTombstoneOrEmptyKey;
16019   DupKey(int64_t val, bool isTombstoneOrEmptyKey)
16020     : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
16021 };
16022 
16023 static DupKey GetDupKey(const llvm::APSInt& Val) {
16024   return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
16025                 false);
16026 }
16027 
16028 struct DenseMapInfoDupKey {
16029   static DupKey getEmptyKey() { return DupKey(0, true); }
16030   static DupKey getTombstoneKey() { return DupKey(1, true); }
16031   static unsigned getHashValue(const DupKey Key) {
16032     return (unsigned)(Key.val * 37);
16033   }
16034   static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
16035     return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
16036            LHS.val == RHS.val;
16037   }
16038 };
16039 } // end anonymous namespace
16040 
16041 // Emits a warning when an element is implicitly set a value that
16042 // a previous element has already been set to.
16043 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
16044                                         EnumDecl *Enum,
16045                                         QualType EnumType) {
16046   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
16047     return;
16048   // Avoid anonymous enums
16049   if (!Enum->getIdentifier())
16050     return;
16051 
16052   // Only check for small enums.
16053   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
16054     return;
16055 
16056   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
16057   typedef SmallVector<ECDVector *, 3> DuplicatesVector;
16058 
16059   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
16060   typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
16061           ValueToVectorMap;
16062 
16063   DuplicatesVector DupVector;
16064   ValueToVectorMap EnumMap;
16065 
16066   // Populate the EnumMap with all values represented by enum constants without
16067   // an initialier.
16068   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
16069     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
16070 
16071     // Null EnumConstantDecl means a previous diagnostic has been emitted for
16072     // this constant.  Skip this enum since it may be ill-formed.
16073     if (!ECD) {
16074       return;
16075     }
16076 
16077     if (ECD->getInitExpr())
16078       continue;
16079 
16080     DupKey Key = GetDupKey(ECD->getInitVal());
16081     DeclOrVector &Entry = EnumMap[Key];
16082 
16083     // First time encountering this value.
16084     if (Entry.isNull())
16085       Entry = ECD;
16086   }
16087 
16088   // Create vectors for any values that has duplicates.
16089   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
16090     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
16091     if (!ValidDuplicateEnum(ECD, Enum))
16092       continue;
16093 
16094     DupKey Key = GetDupKey(ECD->getInitVal());
16095 
16096     DeclOrVector& Entry = EnumMap[Key];
16097     if (Entry.isNull())
16098       continue;
16099 
16100     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
16101       // Ensure constants are different.
16102       if (D == ECD)
16103         continue;
16104 
16105       // Create new vector and push values onto it.
16106       ECDVector *Vec = new ECDVector();
16107       Vec->push_back(D);
16108       Vec->push_back(ECD);
16109 
16110       // Update entry to point to the duplicates vector.
16111       Entry = Vec;
16112 
16113       // Store the vector somewhere we can consult later for quick emission of
16114       // diagnostics.
16115       DupVector.push_back(Vec);
16116       continue;
16117     }
16118 
16119     ECDVector *Vec = Entry.get<ECDVector*>();
16120     // Make sure constants are not added more than once.
16121     if (*Vec->begin() == ECD)
16122       continue;
16123 
16124     Vec->push_back(ECD);
16125   }
16126 
16127   // Emit diagnostics.
16128   for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
16129                                   DupVectorEnd = DupVector.end();
16130        DupVectorIter != DupVectorEnd; ++DupVectorIter) {
16131     ECDVector *Vec = *DupVectorIter;
16132     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
16133 
16134     // Emit warning for one enum constant.
16135     ECDVector::iterator I = Vec->begin();
16136     S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
16137       << (*I)->getName() << (*I)->getInitVal().toString(10)
16138       << (*I)->getSourceRange();
16139     ++I;
16140 
16141     // Emit one note for each of the remaining enum constants with
16142     // the same value.
16143     for (ECDVector::iterator E = Vec->end(); I != E; ++I)
16144       S.Diag((*I)->getLocation(), diag::note_duplicate_element)
16145         << (*I)->getName() << (*I)->getInitVal().toString(10)
16146         << (*I)->getSourceRange();
16147     delete Vec;
16148   }
16149 }
16150 
16151 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
16152                              bool AllowMask) const {
16153   assert(ED->isClosedFlag() && "looking for value in non-flag or open enum");
16154   assert(ED->isCompleteDefinition() && "expected enum definition");
16155 
16156   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
16157   llvm::APInt &FlagBits = R.first->second;
16158 
16159   if (R.second) {
16160     for (auto *E : ED->enumerators()) {
16161       const auto &EVal = E->getInitVal();
16162       // Only single-bit enumerators introduce new flag values.
16163       if (EVal.isPowerOf2())
16164         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
16165     }
16166   }
16167 
16168   // A value is in a flag enum if either its bits are a subset of the enum's
16169   // flag bits (the first condition) or we are allowing masks and the same is
16170   // true of its complement (the second condition). When masks are allowed, we
16171   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
16172   //
16173   // While it's true that any value could be used as a mask, the assumption is
16174   // that a mask will have all of the insignificant bits set. Anything else is
16175   // likely a logic error.
16176   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
16177   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
16178 }
16179 
16180 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange,
16181                          Decl *EnumDeclX,
16182                          ArrayRef<Decl *> Elements,
16183                          Scope *S, AttributeList *Attr) {
16184   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
16185   QualType EnumType = Context.getTypeDeclType(Enum);
16186 
16187   if (Attr)
16188     ProcessDeclAttributeList(S, Enum, Attr);
16189 
16190   if (Enum->isDependentType()) {
16191     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
16192       EnumConstantDecl *ECD =
16193         cast_or_null<EnumConstantDecl>(Elements[i]);
16194       if (!ECD) continue;
16195 
16196       ECD->setType(EnumType);
16197     }
16198 
16199     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
16200     return;
16201   }
16202 
16203   // TODO: If the result value doesn't fit in an int, it must be a long or long
16204   // long value.  ISO C does not support this, but GCC does as an extension,
16205   // emit a warning.
16206   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
16207   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
16208   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
16209 
16210   // Verify that all the values are okay, compute the size of the values, and
16211   // reverse the list.
16212   unsigned NumNegativeBits = 0;
16213   unsigned NumPositiveBits = 0;
16214 
16215   // Keep track of whether all elements have type int.
16216   bool AllElementsInt = true;
16217 
16218   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
16219     EnumConstantDecl *ECD =
16220       cast_or_null<EnumConstantDecl>(Elements[i]);
16221     if (!ECD) continue;  // Already issued a diagnostic.
16222 
16223     const llvm::APSInt &InitVal = ECD->getInitVal();
16224 
16225     // Keep track of the size of positive and negative values.
16226     if (InitVal.isUnsigned() || InitVal.isNonNegative())
16227       NumPositiveBits = std::max(NumPositiveBits,
16228                                  (unsigned)InitVal.getActiveBits());
16229     else
16230       NumNegativeBits = std::max(NumNegativeBits,
16231                                  (unsigned)InitVal.getMinSignedBits());
16232 
16233     // Keep track of whether every enum element has type int (very commmon).
16234     if (AllElementsInt)
16235       AllElementsInt = ECD->getType() == Context.IntTy;
16236   }
16237 
16238   // Figure out the type that should be used for this enum.
16239   QualType BestType;
16240   unsigned BestWidth;
16241 
16242   // C++0x N3000 [conv.prom]p3:
16243   //   An rvalue of an unscoped enumeration type whose underlying
16244   //   type is not fixed can be converted to an rvalue of the first
16245   //   of the following types that can represent all the values of
16246   //   the enumeration: int, unsigned int, long int, unsigned long
16247   //   int, long long int, or unsigned long long int.
16248   // C99 6.4.4.3p2:
16249   //   An identifier declared as an enumeration constant has type int.
16250   // The C99 rule is modified by a gcc extension
16251   QualType BestPromotionType;
16252 
16253   bool Packed = Enum->hasAttr<PackedAttr>();
16254   // -fshort-enums is the equivalent to specifying the packed attribute on all
16255   // enum definitions.
16256   if (LangOpts.ShortEnums)
16257     Packed = true;
16258 
16259   // If the enum already has a type because it is fixed or dictated by the
16260   // target, promote that type instead of analyzing the enumerators.
16261   if (Enum->isComplete()) {
16262     BestType = Enum->getIntegerType();
16263     if (BestType->isPromotableIntegerType())
16264       BestPromotionType = Context.getPromotedIntegerType(BestType);
16265     else
16266       BestPromotionType = BestType;
16267 
16268     BestWidth = Context.getIntWidth(BestType);
16269   }
16270   else if (NumNegativeBits) {
16271     // If there is a negative value, figure out the smallest integer type (of
16272     // int/long/longlong) that fits.
16273     // If it's packed, check also if it fits a char or a short.
16274     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
16275       BestType = Context.SignedCharTy;
16276       BestWidth = CharWidth;
16277     } else if (Packed && NumNegativeBits <= ShortWidth &&
16278                NumPositiveBits < ShortWidth) {
16279       BestType = Context.ShortTy;
16280       BestWidth = ShortWidth;
16281     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
16282       BestType = Context.IntTy;
16283       BestWidth = IntWidth;
16284     } else {
16285       BestWidth = Context.getTargetInfo().getLongWidth();
16286 
16287       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
16288         BestType = Context.LongTy;
16289       } else {
16290         BestWidth = Context.getTargetInfo().getLongLongWidth();
16291 
16292         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
16293           Diag(Enum->getLocation(), diag::ext_enum_too_large);
16294         BestType = Context.LongLongTy;
16295       }
16296     }
16297     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
16298   } else {
16299     // If there is no negative value, figure out the smallest type that fits
16300     // all of the enumerator values.
16301     // If it's packed, check also if it fits a char or a short.
16302     if (Packed && NumPositiveBits <= CharWidth) {
16303       BestType = Context.UnsignedCharTy;
16304       BestPromotionType = Context.IntTy;
16305       BestWidth = CharWidth;
16306     } else if (Packed && NumPositiveBits <= ShortWidth) {
16307       BestType = Context.UnsignedShortTy;
16308       BestPromotionType = Context.IntTy;
16309       BestWidth = ShortWidth;
16310     } else if (NumPositiveBits <= IntWidth) {
16311       BestType = Context.UnsignedIntTy;
16312       BestWidth = IntWidth;
16313       BestPromotionType
16314         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
16315                            ? Context.UnsignedIntTy : Context.IntTy;
16316     } else if (NumPositiveBits <=
16317                (BestWidth = Context.getTargetInfo().getLongWidth())) {
16318       BestType = Context.UnsignedLongTy;
16319       BestPromotionType
16320         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
16321                            ? Context.UnsignedLongTy : Context.LongTy;
16322     } else {
16323       BestWidth = Context.getTargetInfo().getLongLongWidth();
16324       assert(NumPositiveBits <= BestWidth &&
16325              "How could an initializer get larger than ULL?");
16326       BestType = Context.UnsignedLongLongTy;
16327       BestPromotionType
16328         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
16329                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
16330     }
16331   }
16332 
16333   // Loop over all of the enumerator constants, changing their types to match
16334   // the type of the enum if needed.
16335   for (auto *D : Elements) {
16336     auto *ECD = cast_or_null<EnumConstantDecl>(D);
16337     if (!ECD) continue;  // Already issued a diagnostic.
16338 
16339     // Standard C says the enumerators have int type, but we allow, as an
16340     // extension, the enumerators to be larger than int size.  If each
16341     // enumerator value fits in an int, type it as an int, otherwise type it the
16342     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
16343     // that X has type 'int', not 'unsigned'.
16344 
16345     // Determine whether the value fits into an int.
16346     llvm::APSInt InitVal = ECD->getInitVal();
16347 
16348     // If it fits into an integer type, force it.  Otherwise force it to match
16349     // the enum decl type.
16350     QualType NewTy;
16351     unsigned NewWidth;
16352     bool NewSign;
16353     if (!getLangOpts().CPlusPlus &&
16354         !Enum->isFixed() &&
16355         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
16356       NewTy = Context.IntTy;
16357       NewWidth = IntWidth;
16358       NewSign = true;
16359     } else if (ECD->getType() == BestType) {
16360       // Already the right type!
16361       if (getLangOpts().CPlusPlus)
16362         // C++ [dcl.enum]p4: Following the closing brace of an
16363         // enum-specifier, each enumerator has the type of its
16364         // enumeration.
16365         ECD->setType(EnumType);
16366       continue;
16367     } else {
16368       NewTy = BestType;
16369       NewWidth = BestWidth;
16370       NewSign = BestType->isSignedIntegerOrEnumerationType();
16371     }
16372 
16373     // Adjust the APSInt value.
16374     InitVal = InitVal.extOrTrunc(NewWidth);
16375     InitVal.setIsSigned(NewSign);
16376     ECD->setInitVal(InitVal);
16377 
16378     // Adjust the Expr initializer and type.
16379     if (ECD->getInitExpr() &&
16380         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
16381       ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
16382                                                 CK_IntegralCast,
16383                                                 ECD->getInitExpr(),
16384                                                 /*base paths*/ nullptr,
16385                                                 VK_RValue));
16386     if (getLangOpts().CPlusPlus)
16387       // C++ [dcl.enum]p4: Following the closing brace of an
16388       // enum-specifier, each enumerator has the type of its
16389       // enumeration.
16390       ECD->setType(EnumType);
16391     else
16392       ECD->setType(NewTy);
16393   }
16394 
16395   Enum->completeDefinition(BestType, BestPromotionType,
16396                            NumPositiveBits, NumNegativeBits);
16397 
16398   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
16399 
16400   if (Enum->isClosedFlag()) {
16401     for (Decl *D : Elements) {
16402       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
16403       if (!ECD) continue;  // Already issued a diagnostic.
16404 
16405       llvm::APSInt InitVal = ECD->getInitVal();
16406       if (InitVal != 0 && !InitVal.isPowerOf2() &&
16407           !IsValueInFlagEnum(Enum, InitVal, true))
16408         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
16409           << ECD << Enum;
16410     }
16411   }
16412 
16413   // Now that the enum type is defined, ensure it's not been underaligned.
16414   if (Enum->hasAttrs())
16415     CheckAlignasUnderalignment(Enum);
16416 }
16417 
16418 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
16419                                   SourceLocation StartLoc,
16420                                   SourceLocation EndLoc) {
16421   StringLiteral *AsmString = cast<StringLiteral>(expr);
16422 
16423   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
16424                                                    AsmString, StartLoc,
16425                                                    EndLoc);
16426   CurContext->addDecl(New);
16427   return New;
16428 }
16429 
16430 static void checkModuleImportContext(Sema &S, Module *M,
16431                                      SourceLocation ImportLoc, DeclContext *DC,
16432                                      bool FromInclude = false) {
16433   SourceLocation ExternCLoc;
16434 
16435   if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
16436     switch (LSD->getLanguage()) {
16437     case LinkageSpecDecl::lang_c:
16438       if (ExternCLoc.isInvalid())
16439         ExternCLoc = LSD->getLocStart();
16440       break;
16441     case LinkageSpecDecl::lang_cxx:
16442       break;
16443     }
16444     DC = LSD->getParent();
16445   }
16446 
16447   while (isa<LinkageSpecDecl>(DC) || isa<ExportDecl>(DC))
16448     DC = DC->getParent();
16449 
16450   if (!isa<TranslationUnitDecl>(DC)) {
16451     S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M))
16452                           ? diag::ext_module_import_not_at_top_level_noop
16453                           : diag::err_module_import_not_at_top_level_fatal)
16454         << M->getFullModuleName() << DC;
16455     S.Diag(cast<Decl>(DC)->getLocStart(),
16456            diag::note_module_import_not_at_top_level) << DC;
16457   } else if (!M->IsExternC && ExternCLoc.isValid()) {
16458     S.Diag(ImportLoc, diag::ext_module_import_in_extern_c)
16459       << M->getFullModuleName();
16460     S.Diag(ExternCLoc, diag::note_extern_c_begins_here);
16461   }
16462 }
16463 
16464 Sema::DeclGroupPtrTy Sema::ActOnModuleDecl(SourceLocation StartLoc,
16465                                            SourceLocation ModuleLoc,
16466                                            ModuleDeclKind MDK,
16467                                            ModuleIdPath Path) {
16468   assert(getLangOpts().ModulesTS &&
16469          "should only have module decl in modules TS");
16470 
16471   // A module implementation unit requires that we are not compiling a module
16472   // of any kind. A module interface unit requires that we are not compiling a
16473   // module map.
16474   switch (getLangOpts().getCompilingModule()) {
16475   case LangOptions::CMK_None:
16476     // It's OK to compile a module interface as a normal translation unit.
16477     break;
16478 
16479   case LangOptions::CMK_ModuleInterface:
16480     if (MDK != ModuleDeclKind::Implementation)
16481       break;
16482 
16483     // We were asked to compile a module interface unit but this is a module
16484     // implementation unit. That indicates the 'export' is missing.
16485     Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch)
16486       << FixItHint::CreateInsertion(ModuleLoc, "export ");
16487     MDK = ModuleDeclKind::Interface;
16488     break;
16489 
16490   case LangOptions::CMK_ModuleMap:
16491     Diag(ModuleLoc, diag::err_module_decl_in_module_map_module);
16492     return nullptr;
16493   }
16494 
16495   assert(ModuleScopes.size() == 1 && "expected to be at global module scope");
16496 
16497   // FIXME: Most of this work should be done by the preprocessor rather than
16498   // here, in order to support macro import.
16499 
16500   // Only one module-declaration is permitted per source file.
16501   if (ModuleScopes.back().Module->Kind == Module::ModuleInterfaceUnit) {
16502     Diag(ModuleLoc, diag::err_module_redeclaration);
16503     Diag(VisibleModules.getImportLoc(ModuleScopes.back().Module),
16504          diag::note_prev_module_declaration);
16505     return nullptr;
16506   }
16507 
16508   // Flatten the dots in a module name. Unlike Clang's hierarchical module map
16509   // modules, the dots here are just another character that can appear in a
16510   // module name.
16511   std::string ModuleName;
16512   for (auto &Piece : Path) {
16513     if (!ModuleName.empty())
16514       ModuleName += ".";
16515     ModuleName += Piece.first->getName();
16516   }
16517 
16518   // If a module name was explicitly specified on the command line, it must be
16519   // correct.
16520   if (!getLangOpts().CurrentModule.empty() &&
16521       getLangOpts().CurrentModule != ModuleName) {
16522     Diag(Path.front().second, diag::err_current_module_name_mismatch)
16523         << SourceRange(Path.front().second, Path.back().second)
16524         << getLangOpts().CurrentModule;
16525     return nullptr;
16526   }
16527   const_cast<LangOptions&>(getLangOpts()).CurrentModule = ModuleName;
16528 
16529   auto &Map = PP.getHeaderSearchInfo().getModuleMap();
16530   Module *Mod;
16531 
16532   switch (MDK) {
16533   case ModuleDeclKind::Interface: {
16534     // We can't have parsed or imported a definition of this module or parsed a
16535     // module map defining it already.
16536     if (auto *M = Map.findModule(ModuleName)) {
16537       Diag(Path[0].second, diag::err_module_redefinition) << ModuleName;
16538       if (M->DefinitionLoc.isValid())
16539         Diag(M->DefinitionLoc, diag::note_prev_module_definition);
16540       else if (const auto *FE = M->getASTFile())
16541         Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file)
16542             << FE->getName();
16543       Mod = M;
16544       break;
16545     }
16546 
16547     // Create a Module for the module that we're defining.
16548     Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16549                                            ModuleScopes.front().Module);
16550     assert(Mod && "module creation should not fail");
16551     break;
16552   }
16553 
16554   case ModuleDeclKind::Partition:
16555     // FIXME: Check we are in a submodule of the named module.
16556     return nullptr;
16557 
16558   case ModuleDeclKind::Implementation:
16559     std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc(
16560         PP.getIdentifierInfo(ModuleName), Path[0].second);
16561     Mod = getModuleLoader().loadModule(ModuleLoc, Path, Module::AllVisible,
16562                                        /*IsIncludeDirective=*/false);
16563     if (!Mod) {
16564       Diag(ModuleLoc, diag::err_module_not_defined) << ModuleName;
16565       // Create an empty module interface unit for error recovery.
16566       Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName,
16567                                              ModuleScopes.front().Module);
16568     }
16569     break;
16570   }
16571 
16572   // Switch from the global module to the named module.
16573   ModuleScopes.back().Module = Mod;
16574   ModuleScopes.back().ModuleInterface = MDK != ModuleDeclKind::Implementation;
16575   VisibleModules.setVisible(Mod, ModuleLoc);
16576 
16577   // From now on, we have an owning module for all declarations we see.
16578   // However, those declarations are module-private unless explicitly
16579   // exported.
16580   auto *TU = Context.getTranslationUnitDecl();
16581   TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
16582   TU->setLocalOwningModule(Mod);
16583 
16584   // FIXME: Create a ModuleDecl.
16585   return nullptr;
16586 }
16587 
16588 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc,
16589                                    SourceLocation ImportLoc,
16590                                    ModuleIdPath Path) {
16591   Module *Mod =
16592       getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
16593                                    /*IsIncludeDirective=*/false);
16594   if (!Mod)
16595     return true;
16596 
16597   VisibleModules.setVisible(Mod, ImportLoc);
16598 
16599   checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
16600 
16601   // FIXME: we should support importing a submodule within a different submodule
16602   // of the same top-level module. Until we do, make it an error rather than
16603   // silently ignoring the import.
16604   // Import-from-implementation is valid in the Modules TS. FIXME: Should we
16605   // warn on a redundant import of the current module?
16606   if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule &&
16607       (getLangOpts().isCompilingModule() || !getLangOpts().ModulesTS))
16608     Diag(ImportLoc, getLangOpts().isCompilingModule()
16609                         ? diag::err_module_self_import
16610                         : diag::err_module_import_in_implementation)
16611         << Mod->getFullModuleName() << getLangOpts().CurrentModule;
16612 
16613   SmallVector<SourceLocation, 2> IdentifierLocs;
16614   Module *ModCheck = Mod;
16615   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
16616     // If we've run out of module parents, just drop the remaining identifiers.
16617     // We need the length to be consistent.
16618     if (!ModCheck)
16619       break;
16620     ModCheck = ModCheck->Parent;
16621 
16622     IdentifierLocs.push_back(Path[I].second);
16623   }
16624 
16625   ImportDecl *Import = ImportDecl::Create(Context, CurContext, StartLoc,
16626                                           Mod, IdentifierLocs);
16627   if (!ModuleScopes.empty())
16628     Context.addModuleInitializer(ModuleScopes.back().Module, Import);
16629   CurContext->addDecl(Import);
16630 
16631   // Re-export the module if needed.
16632   if (Import->isExported() &&
16633       !ModuleScopes.empty() && ModuleScopes.back().ModuleInterface)
16634     getCurrentModule()->Exports.emplace_back(Mod, false);
16635 
16636   return Import;
16637 }
16638 
16639 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16640   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16641   BuildModuleInclude(DirectiveLoc, Mod);
16642 }
16643 
16644 void Sema::BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
16645   // Determine whether we're in the #include buffer for a module. The #includes
16646   // in that buffer do not qualify as module imports; they're just an
16647   // implementation detail of us building the module.
16648   //
16649   // FIXME: Should we even get ActOnModuleInclude calls for those?
16650   bool IsInModuleIncludes =
16651       TUKind == TU_Module &&
16652       getSourceManager().isWrittenInMainFile(DirectiveLoc);
16653 
16654   bool ShouldAddImport = !IsInModuleIncludes;
16655 
16656   // If this module import was due to an inclusion directive, create an
16657   // implicit import declaration to capture it in the AST.
16658   if (ShouldAddImport) {
16659     TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16660     ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16661                                                      DirectiveLoc, Mod,
16662                                                      DirectiveLoc);
16663     if (!ModuleScopes.empty())
16664       Context.addModuleInitializer(ModuleScopes.back().Module, ImportD);
16665     TU->addDecl(ImportD);
16666     Consumer.HandleImplicitImportDecl(ImportD);
16667   }
16668 
16669   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc);
16670   VisibleModules.setVisible(Mod, DirectiveLoc);
16671 }
16672 
16673 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) {
16674   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
16675 
16676   ModuleScopes.push_back({});
16677   ModuleScopes.back().Module = Mod;
16678   if (getLangOpts().ModulesLocalVisibility)
16679     ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules);
16680 
16681   VisibleModules.setVisible(Mod, DirectiveLoc);
16682 
16683   // The enclosing context is now part of this module.
16684   // FIXME: Consider creating a child DeclContext to hold the entities
16685   // lexically within the module.
16686   if (getLangOpts().trackLocalOwningModule()) {
16687     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16688       cast<Decl>(DC)->setModuleOwnershipKind(
16689           getLangOpts().ModulesLocalVisibility
16690               ? Decl::ModuleOwnershipKind::VisibleWhenImported
16691               : Decl::ModuleOwnershipKind::Visible);
16692       cast<Decl>(DC)->setLocalOwningModule(Mod);
16693     }
16694   }
16695 }
16696 
16697 void Sema::ActOnModuleEnd(SourceLocation EomLoc, Module *Mod) {
16698   if (getLangOpts().ModulesLocalVisibility) {
16699     VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules);
16700     // Leaving a module hides namespace names, so our visible namespace cache
16701     // is now out of date.
16702     VisibleNamespaceCache.clear();
16703   }
16704 
16705   assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod &&
16706          "left the wrong module scope");
16707   ModuleScopes.pop_back();
16708 
16709   // We got to the end of processing a local module. Create an
16710   // ImportDecl as we would for an imported module.
16711   FileID File = getSourceManager().getFileID(EomLoc);
16712   SourceLocation DirectiveLoc;
16713   if (EomLoc == getSourceManager().getLocForEndOfFile(File)) {
16714     // We reached the end of a #included module header. Use the #include loc.
16715     assert(File != getSourceManager().getMainFileID() &&
16716            "end of submodule in main source file");
16717     DirectiveLoc = getSourceManager().getIncludeLoc(File);
16718   } else {
16719     // We reached an EOM pragma. Use the pragma location.
16720     DirectiveLoc = EomLoc;
16721   }
16722   BuildModuleInclude(DirectiveLoc, Mod);
16723 
16724   // Any further declarations are in whatever module we returned to.
16725   if (getLangOpts().trackLocalOwningModule()) {
16726     // The parser guarantees that this is the same context that we entered
16727     // the module within.
16728     for (auto *DC = CurContext; DC; DC = DC->getLexicalParent()) {
16729       cast<Decl>(DC)->setLocalOwningModule(getCurrentModule());
16730       if (!getCurrentModule())
16731         cast<Decl>(DC)->setModuleOwnershipKind(
16732             Decl::ModuleOwnershipKind::Unowned);
16733     }
16734   }
16735 }
16736 
16737 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
16738                                                       Module *Mod) {
16739   // Bail if we're not allowed to implicitly import a module here.
16740   if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery ||
16741       VisibleModules.isVisible(Mod))
16742     return;
16743 
16744   // Create the implicit import declaration.
16745   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
16746   ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
16747                                                    Loc, Mod, Loc);
16748   TU->addDecl(ImportD);
16749   Consumer.HandleImplicitImportDecl(ImportD);
16750 
16751   // Make the module visible.
16752   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc);
16753   VisibleModules.setVisible(Mod, Loc);
16754 }
16755 
16756 /// We have parsed the start of an export declaration, including the '{'
16757 /// (if present).
16758 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc,
16759                                  SourceLocation LBraceLoc) {
16760   ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc);
16761 
16762   // C++ Modules TS draft:
16763   //   An export-declaration shall appear in the purview of a module other than
16764   //   the global module.
16765   if (ModuleScopes.empty() || !ModuleScopes.back().ModuleInterface)
16766     Diag(ExportLoc, diag::err_export_not_in_module_interface);
16767 
16768   //   An export-declaration [...] shall not contain more than one
16769   //   export keyword.
16770   //
16771   // The intent here is that an export-declaration cannot appear within another
16772   // export-declaration.
16773   if (D->isExported())
16774     Diag(ExportLoc, diag::err_export_within_export);
16775 
16776   CurContext->addDecl(D);
16777   PushDeclContext(S, D);
16778   D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported);
16779   return D;
16780 }
16781 
16782 /// Complete the definition of an export declaration.
16783 Decl *Sema::ActOnFinishExportDecl(Scope *S, Decl *D, SourceLocation RBraceLoc) {
16784   auto *ED = cast<ExportDecl>(D);
16785   if (RBraceLoc.isValid())
16786     ED->setRBraceLoc(RBraceLoc);
16787 
16788   // FIXME: Diagnose export of internal-linkage declaration (including
16789   // anonymous namespace).
16790 
16791   PopDeclContext();
16792   return D;
16793 }
16794 
16795 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
16796                                       IdentifierInfo* AliasName,
16797                                       SourceLocation PragmaLoc,
16798                                       SourceLocation NameLoc,
16799                                       SourceLocation AliasNameLoc) {
16800   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
16801                                          LookupOrdinaryName);
16802   AsmLabelAttr *Attr =
16803       AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc);
16804 
16805   // If a declaration that:
16806   // 1) declares a function or a variable
16807   // 2) has external linkage
16808   // already exists, add a label attribute to it.
16809   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16810     if (isDeclExternC(PrevDecl))
16811       PrevDecl->addAttr(Attr);
16812     else
16813       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
16814           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
16815   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
16816   } else
16817     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
16818 }
16819 
16820 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
16821                              SourceLocation PragmaLoc,
16822                              SourceLocation NameLoc) {
16823   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
16824 
16825   if (PrevDecl) {
16826     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
16827   } else {
16828     (void)WeakUndeclaredIdentifiers.insert(
16829       std::pair<IdentifierInfo*,WeakInfo>
16830         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
16831   }
16832 }
16833 
16834 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
16835                                 IdentifierInfo* AliasName,
16836                                 SourceLocation PragmaLoc,
16837                                 SourceLocation NameLoc,
16838                                 SourceLocation AliasNameLoc) {
16839   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
16840                                     LookupOrdinaryName);
16841   WeakInfo W = WeakInfo(Name, NameLoc);
16842 
16843   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
16844     if (!PrevDecl->hasAttr<AliasAttr>())
16845       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
16846         DeclApplyPragmaWeak(TUScope, ND, W);
16847   } else {
16848     (void)WeakUndeclaredIdentifiers.insert(
16849       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
16850   }
16851 }
16852 
16853 Decl *Sema::getObjCDeclContext() const {
16854   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
16855 }
16856