1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements semantic analysis for declarations.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "TypeLocBuilder.h"
14 #include "clang/AST/ASTConsumer.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/ASTLambda.h"
17 #include "clang/AST/CXXInheritance.h"
18 #include "clang/AST/CharUnits.h"
19 #include "clang/AST/CommentDiagnostic.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclObjC.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/EvaluatedExprVisitor.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/NonTrivialTypeVisitor.h"
27 #include "clang/AST/StmtCXX.h"
28 #include "clang/Basic/Builtins.h"
29 #include "clang/Basic/PartialDiagnostic.h"
30 #include "clang/Basic/SourceManager.h"
31 #include "clang/Basic/TargetInfo.h"
32 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
33 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
34 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
35 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
36 #include "clang/Sema/CXXFieldCollector.h"
37 #include "clang/Sema/DeclSpec.h"
38 #include "clang/Sema/DelayedDiagnostic.h"
39 #include "clang/Sema/Initialization.h"
40 #include "clang/Sema/Lookup.h"
41 #include "clang/Sema/ParsedTemplate.h"
42 #include "clang/Sema/Scope.h"
43 #include "clang/Sema/ScopeInfo.h"
44 #include "clang/Sema/SemaInternal.h"
45 #include "clang/Sema/Template.h"
46 #include "llvm/ADT/SmallString.h"
47 #include "llvm/ADT/Triple.h"
48 #include <algorithm>
49 #include <cstring>
50 #include <functional>
51 #include <unordered_map>
52 
53 using namespace clang;
54 using namespace sema;
55 
56 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) {
57   if (OwnedType) {
58     Decl *Group[2] = { OwnedType, Ptr };
59     return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
60   }
61 
62   return DeclGroupPtrTy::make(DeclGroupRef(Ptr));
63 }
64 
65 namespace {
66 
67 class TypeNameValidatorCCC final : public CorrectionCandidateCallback {
68  public:
69    TypeNameValidatorCCC(bool AllowInvalid, bool WantClass = false,
70                         bool AllowTemplates = false,
71                         bool AllowNonTemplates = true)
72        : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
73          AllowTemplates(AllowTemplates), AllowNonTemplates(AllowNonTemplates) {
74      WantExpressionKeywords = false;
75      WantCXXNamedCasts = false;
76      WantRemainingKeywords = false;
77   }
78 
79   bool ValidateCandidate(const TypoCorrection &candidate) override {
80     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
81       if (!AllowInvalidDecl && ND->isInvalidDecl())
82         return false;
83 
84       if (getAsTypeTemplateDecl(ND))
85         return AllowTemplates;
86 
87       bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
88       if (!IsType)
89         return false;
90 
91       if (AllowNonTemplates)
92         return true;
93 
94       // An injected-class-name of a class template (specialization) is valid
95       // as a template or as a non-template.
96       if (AllowTemplates) {
97         auto *RD = dyn_cast<CXXRecordDecl>(ND);
98         if (!RD || !RD->isInjectedClassName())
99           return false;
100         RD = cast<CXXRecordDecl>(RD->getDeclContext());
101         return RD->getDescribedClassTemplate() ||
102                isa<ClassTemplateSpecializationDecl>(RD);
103       }
104 
105       return false;
106     }
107 
108     return !WantClassName && candidate.isKeyword();
109   }
110 
111   std::unique_ptr<CorrectionCandidateCallback> clone() override {
112     return std::make_unique<TypeNameValidatorCCC>(*this);
113   }
114 
115  private:
116   bool AllowInvalidDecl;
117   bool WantClassName;
118   bool AllowTemplates;
119   bool AllowNonTemplates;
120 };
121 
122 } // end anonymous namespace
123 
124 /// Determine whether the token kind starts a simple-type-specifier.
125 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
126   switch (Kind) {
127   // FIXME: Take into account the current language when deciding whether a
128   // token kind is a valid type specifier
129   case tok::kw_short:
130   case tok::kw_long:
131   case tok::kw___int64:
132   case tok::kw___int128:
133   case tok::kw_signed:
134   case tok::kw_unsigned:
135   case tok::kw_void:
136   case tok::kw_char:
137   case tok::kw_int:
138   case tok::kw_half:
139   case tok::kw_float:
140   case tok::kw_double:
141   case tok::kw___bf16:
142   case tok::kw__Float16:
143   case tok::kw___float128:
144   case tok::kw_wchar_t:
145   case tok::kw_bool:
146   case tok::kw___underlying_type:
147   case tok::kw___auto_type:
148     return true;
149 
150   case tok::annot_typename:
151   case tok::kw_char16_t:
152   case tok::kw_char32_t:
153   case tok::kw_typeof:
154   case tok::annot_decltype:
155   case tok::kw_decltype:
156     return getLangOpts().CPlusPlus;
157 
158   case tok::kw_char8_t:
159     return getLangOpts().Char8;
160 
161   default:
162     break;
163   }
164 
165   return false;
166 }
167 
168 namespace {
169 enum class UnqualifiedTypeNameLookupResult {
170   NotFound,
171   FoundNonType,
172   FoundType
173 };
174 } // end anonymous namespace
175 
176 /// Tries to perform unqualified lookup of the type decls in bases for
177 /// dependent class.
178 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
179 /// type decl, \a FoundType if only type decls are found.
180 static UnqualifiedTypeNameLookupResult
181 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II,
182                                 SourceLocation NameLoc,
183                                 const CXXRecordDecl *RD) {
184   if (!RD->hasDefinition())
185     return UnqualifiedTypeNameLookupResult::NotFound;
186   // Look for type decls in base classes.
187   UnqualifiedTypeNameLookupResult FoundTypeDecl =
188       UnqualifiedTypeNameLookupResult::NotFound;
189   for (const auto &Base : RD->bases()) {
190     const CXXRecordDecl *BaseRD = nullptr;
191     if (auto *BaseTT = Base.getType()->getAs<TagType>())
192       BaseRD = BaseTT->getAsCXXRecordDecl();
193     else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
194       // Look for type decls in dependent base classes that have known primary
195       // templates.
196       if (!TST || !TST->isDependentType())
197         continue;
198       auto *TD = TST->getTemplateName().getAsTemplateDecl();
199       if (!TD)
200         continue;
201       if (auto *BasePrimaryTemplate =
202           dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl())) {
203         if (BasePrimaryTemplate->getCanonicalDecl() != RD->getCanonicalDecl())
204           BaseRD = BasePrimaryTemplate;
205         else if (auto *CTD = dyn_cast<ClassTemplateDecl>(TD)) {
206           if (const ClassTemplatePartialSpecializationDecl *PS =
207                   CTD->findPartialSpecialization(Base.getType()))
208             if (PS->getCanonicalDecl() != RD->getCanonicalDecl())
209               BaseRD = PS;
210         }
211       }
212     }
213     if (BaseRD) {
214       for (NamedDecl *ND : BaseRD->lookup(&II)) {
215         if (!isa<TypeDecl>(ND))
216           return UnqualifiedTypeNameLookupResult::FoundNonType;
217         FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
218       }
219       if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) {
220         switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
221         case UnqualifiedTypeNameLookupResult::FoundNonType:
222           return UnqualifiedTypeNameLookupResult::FoundNonType;
223         case UnqualifiedTypeNameLookupResult::FoundType:
224           FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
225           break;
226         case UnqualifiedTypeNameLookupResult::NotFound:
227           break;
228         }
229       }
230     }
231   }
232 
233   return FoundTypeDecl;
234 }
235 
236 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S,
237                                                       const IdentifierInfo &II,
238                                                       SourceLocation NameLoc) {
239   // Lookup in the parent class template context, if any.
240   const CXXRecordDecl *RD = nullptr;
241   UnqualifiedTypeNameLookupResult FoundTypeDecl =
242       UnqualifiedTypeNameLookupResult::NotFound;
243   for (DeclContext *DC = S.CurContext;
244        DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound;
245        DC = DC->getParent()) {
246     // Look for type decls in dependent base classes that have known primary
247     // templates.
248     RD = dyn_cast<CXXRecordDecl>(DC);
249     if (RD && RD->getDescribedClassTemplate())
250       FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
251   }
252   if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType)
253     return nullptr;
254 
255   // We found some types in dependent base classes.  Recover as if the user
256   // wrote 'typename MyClass::II' instead of 'II'.  We'll fully resolve the
257   // lookup during template instantiation.
258   S.Diag(NameLoc, diag::ext_found_in_dependent_base) << &II;
259 
260   ASTContext &Context = S.Context;
261   auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false,
262                                           cast<Type>(Context.getRecordType(RD)));
263   QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
264 
265   CXXScopeSpec SS;
266   SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
267 
268   TypeLocBuilder Builder;
269   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
270   DepTL.setNameLoc(NameLoc);
271   DepTL.setElaboratedKeywordLoc(SourceLocation());
272   DepTL.setQualifierLoc(SS.getWithLocInContext(Context));
273   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
274 }
275 
276 /// If the identifier refers to a type name within this scope,
277 /// return the declaration of that type.
278 ///
279 /// This routine performs ordinary name lookup of the identifier II
280 /// within the given scope, with optional C++ scope specifier SS, to
281 /// determine whether the name refers to a type. If so, returns an
282 /// opaque pointer (actually a QualType) corresponding to that
283 /// type. Otherwise, returns NULL.
284 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
285                              Scope *S, CXXScopeSpec *SS,
286                              bool isClassName, bool HasTrailingDot,
287                              ParsedType ObjectTypePtr,
288                              bool IsCtorOrDtorName,
289                              bool WantNontrivialTypeSourceInfo,
290                              bool IsClassTemplateDeductionContext,
291                              IdentifierInfo **CorrectedII) {
292   // FIXME: Consider allowing this outside C++1z mode as an extension.
293   bool AllowDeducedTemplate = IsClassTemplateDeductionContext &&
294                               getLangOpts().CPlusPlus17 && !IsCtorOrDtorName &&
295                               !isClassName && !HasTrailingDot;
296 
297   // Determine where we will perform name lookup.
298   DeclContext *LookupCtx = nullptr;
299   if (ObjectTypePtr) {
300     QualType ObjectType = ObjectTypePtr.get();
301     if (ObjectType->isRecordType())
302       LookupCtx = computeDeclContext(ObjectType);
303   } else if (SS && SS->isNotEmpty()) {
304     LookupCtx = computeDeclContext(*SS, false);
305 
306     if (!LookupCtx) {
307       if (isDependentScopeSpecifier(*SS)) {
308         // C++ [temp.res]p3:
309         //   A qualified-id that refers to a type and in which the
310         //   nested-name-specifier depends on a template-parameter (14.6.2)
311         //   shall be prefixed by the keyword typename to indicate that the
312         //   qualified-id denotes a type, forming an
313         //   elaborated-type-specifier (7.1.5.3).
314         //
315         // We therefore do not perform any name lookup if the result would
316         // refer to a member of an unknown specialization.
317         if (!isClassName && !IsCtorOrDtorName)
318           return nullptr;
319 
320         // We know from the grammar that this name refers to a type,
321         // so build a dependent node to describe the type.
322         if (WantNontrivialTypeSourceInfo)
323           return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
324 
325         NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
326         QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
327                                        II, NameLoc);
328         return ParsedType::make(T);
329       }
330 
331       return nullptr;
332     }
333 
334     if (!LookupCtx->isDependentContext() &&
335         RequireCompleteDeclContext(*SS, LookupCtx))
336       return nullptr;
337   }
338 
339   // FIXME: LookupNestedNameSpecifierName isn't the right kind of
340   // lookup for class-names.
341   LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
342                                       LookupOrdinaryName;
343   LookupResult Result(*this, &II, NameLoc, Kind);
344   if (LookupCtx) {
345     // Perform "qualified" name lookup into the declaration context we
346     // computed, which is either the type of the base of a member access
347     // expression or the declaration context associated with a prior
348     // nested-name-specifier.
349     LookupQualifiedName(Result, LookupCtx);
350 
351     if (ObjectTypePtr && Result.empty()) {
352       // C++ [basic.lookup.classref]p3:
353       //   If the unqualified-id is ~type-name, the type-name is looked up
354       //   in the context of the entire postfix-expression. If the type T of
355       //   the object expression is of a class type C, the type-name is also
356       //   looked up in the scope of class C. At least one of the lookups shall
357       //   find a name that refers to (possibly cv-qualified) T.
358       LookupName(Result, S);
359     }
360   } else {
361     // Perform unqualified name lookup.
362     LookupName(Result, S);
363 
364     // For unqualified lookup in a class template in MSVC mode, look into
365     // dependent base classes where the primary class template is known.
366     if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) {
367       if (ParsedType TypeInBase =
368               recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
369         return TypeInBase;
370     }
371   }
372 
373   NamedDecl *IIDecl = nullptr;
374   switch (Result.getResultKind()) {
375   case LookupResult::NotFound:
376   case LookupResult::NotFoundInCurrentInstantiation:
377     if (CorrectedII) {
378       TypeNameValidatorCCC CCC(/*AllowInvalid=*/true, isClassName,
379                                AllowDeducedTemplate);
380       TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(), Kind,
381                                               S, SS, CCC, CTK_ErrorRecovery);
382       IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
383       TemplateTy Template;
384       bool MemberOfUnknownSpecialization;
385       UnqualifiedId TemplateName;
386       TemplateName.setIdentifier(NewII, NameLoc);
387       NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
388       CXXScopeSpec NewSS, *NewSSPtr = SS;
389       if (SS && NNS) {
390         NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
391         NewSSPtr = &NewSS;
392       }
393       if (Correction && (NNS || NewII != &II) &&
394           // Ignore a correction to a template type as the to-be-corrected
395           // identifier is not a template (typo correction for template names
396           // is handled elsewhere).
397           !(getLangOpts().CPlusPlus && NewSSPtr &&
398             isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false,
399                            Template, MemberOfUnknownSpecialization))) {
400         ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
401                                     isClassName, HasTrailingDot, ObjectTypePtr,
402                                     IsCtorOrDtorName,
403                                     WantNontrivialTypeSourceInfo,
404                                     IsClassTemplateDeductionContext);
405         if (Ty) {
406           diagnoseTypo(Correction,
407                        PDiag(diag::err_unknown_type_or_class_name_suggest)
408                          << Result.getLookupName() << isClassName);
409           if (SS && NNS)
410             SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
411           *CorrectedII = NewII;
412           return Ty;
413         }
414       }
415     }
416     // If typo correction failed or was not performed, fall through
417     LLVM_FALLTHROUGH;
418   case LookupResult::FoundOverloaded:
419   case LookupResult::FoundUnresolvedValue:
420     Result.suppressDiagnostics();
421     return nullptr;
422 
423   case LookupResult::Ambiguous:
424     // Recover from type-hiding ambiguities by hiding the type.  We'll
425     // do the lookup again when looking for an object, and we can
426     // diagnose the error then.  If we don't do this, then the error
427     // about hiding the type will be immediately followed by an error
428     // that only makes sense if the identifier was treated like a type.
429     if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
430       Result.suppressDiagnostics();
431       return nullptr;
432     }
433 
434     // Look to see if we have a type anywhere in the list of results.
435     for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
436          Res != ResEnd; ++Res) {
437       if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res) ||
438           (AllowDeducedTemplate && getAsTypeTemplateDecl(*Res))) {
439         if (!IIDecl || (*Res)->getLocation() < IIDecl->getLocation())
440           IIDecl = *Res;
441       }
442     }
443 
444     if (!IIDecl) {
445       // None of the entities we found is a type, so there is no way
446       // to even assume that the result is a type. In this case, don't
447       // complain about the ambiguity. The parser will either try to
448       // perform this lookup again (e.g., as an object name), which
449       // will produce the ambiguity, or will complain that it expected
450       // a type name.
451       Result.suppressDiagnostics();
452       return nullptr;
453     }
454 
455     // We found a type within the ambiguous lookup; diagnose the
456     // ambiguity and then return that type. This might be the right
457     // answer, or it might not be, but it suppresses any attempt to
458     // perform the name lookup again.
459     break;
460 
461   case LookupResult::Found:
462     IIDecl = Result.getFoundDecl();
463     break;
464   }
465 
466   assert(IIDecl && "Didn't find decl");
467 
468   QualType T;
469   if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
470     // C++ [class.qual]p2: A lookup that would find the injected-class-name
471     // instead names the constructors of the class, except when naming a class.
472     // This is ill-formed when we're not actually forming a ctor or dtor name.
473     auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);
474     auto *FoundRD = dyn_cast<CXXRecordDecl>(TD);
475     if (!isClassName && !IsCtorOrDtorName && LookupRD && FoundRD &&
476         FoundRD->isInjectedClassName() &&
477         declaresSameEntity(LookupRD, cast<Decl>(FoundRD->getParent())))
478       Diag(NameLoc, diag::err_out_of_line_qualified_id_type_names_constructor)
479           << &II << /*Type*/1;
480 
481     DiagnoseUseOfDecl(IIDecl, NameLoc);
482 
483     T = Context.getTypeDeclType(TD);
484     MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
485   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
486     (void)DiagnoseUseOfDecl(IDecl, NameLoc);
487     if (!HasTrailingDot)
488       T = Context.getObjCInterfaceType(IDecl);
489   } else if (AllowDeducedTemplate) {
490     if (auto *TD = getAsTypeTemplateDecl(IIDecl))
491       T = Context.getDeducedTemplateSpecializationType(TemplateName(TD),
492                                                        QualType(), false);
493   }
494 
495   if (T.isNull()) {
496     // If it's not plausibly a type, suppress diagnostics.
497     Result.suppressDiagnostics();
498     return nullptr;
499   }
500 
501   // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
502   // constructor or destructor name (in such a case, the scope specifier
503   // will be attached to the enclosing Expr or Decl node).
504   if (SS && SS->isNotEmpty() && !IsCtorOrDtorName &&
505       !isa<ObjCInterfaceDecl>(IIDecl)) {
506     if (WantNontrivialTypeSourceInfo) {
507       // Construct a type with type-source information.
508       TypeLocBuilder Builder;
509       Builder.pushTypeSpec(T).setNameLoc(NameLoc);
510 
511       T = getElaboratedType(ETK_None, *SS, T);
512       ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
513       ElabTL.setElaboratedKeywordLoc(SourceLocation());
514       ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
515       return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
516     } else {
517       T = getElaboratedType(ETK_None, *SS, T);
518     }
519   }
520 
521   return ParsedType::make(T);
522 }
523 
524 // Builds a fake NNS for the given decl context.
525 static NestedNameSpecifier *
526 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) {
527   for (;; DC = DC->getLookupParent()) {
528     DC = DC->getPrimaryContext();
529     auto *ND = dyn_cast<NamespaceDecl>(DC);
530     if (ND && !ND->isInline() && !ND->isAnonymousNamespace())
531       return NestedNameSpecifier::Create(Context, nullptr, ND);
532     else if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
533       return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
534                                          RD->getTypeForDecl());
535     else if (isa<TranslationUnitDecl>(DC))
536       return NestedNameSpecifier::GlobalSpecifier(Context);
537   }
538   llvm_unreachable("something isn't in TU scope?");
539 }
540 
541 /// Find the parent class with dependent bases of the innermost enclosing method
542 /// context. Do not look for enclosing CXXRecordDecls directly, or we will end
543 /// up allowing unqualified dependent type names at class-level, which MSVC
544 /// correctly rejects.
545 static const CXXRecordDecl *
546 findRecordWithDependentBasesOfEnclosingMethod(const DeclContext *DC) {
547   for (; DC && DC->isDependentContext(); DC = DC->getLookupParent()) {
548     DC = DC->getPrimaryContext();
549     if (const auto *MD = dyn_cast<CXXMethodDecl>(DC))
550       if (MD->getParent()->hasAnyDependentBases())
551         return MD->getParent();
552   }
553   return nullptr;
554 }
555 
556 ParsedType Sema::ActOnMSVCUnknownTypeName(const IdentifierInfo &II,
557                                           SourceLocation NameLoc,
558                                           bool IsTemplateTypeArg) {
559   assert(getLangOpts().MSVCCompat && "shouldn't be called in non-MSVC mode");
560 
561   NestedNameSpecifier *NNS = nullptr;
562   if (IsTemplateTypeArg && getCurScope()->isTemplateParamScope()) {
563     // If we weren't able to parse a default template argument, delay lookup
564     // until instantiation time by making a non-dependent DependentTypeName. We
565     // pretend we saw a NestedNameSpecifier referring to the current scope, and
566     // lookup is retried.
567     // FIXME: This hurts our diagnostic quality, since we get errors like "no
568     // type named 'Foo' in 'current_namespace'" when the user didn't write any
569     // name specifiers.
570     NNS = synthesizeCurrentNestedNameSpecifier(Context, CurContext);
571     Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
572   } else if (const CXXRecordDecl *RD =
573                  findRecordWithDependentBasesOfEnclosingMethod(CurContext)) {
574     // Build a DependentNameType that will perform lookup into RD at
575     // instantiation time.
576     NNS = NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
577                                       RD->getTypeForDecl());
578 
579     // Diagnose that this identifier was undeclared, and retry the lookup during
580     // template instantiation.
581     Diag(NameLoc, diag::ext_undeclared_unqual_id_with_dependent_base) << &II
582                                                                       << RD;
583   } else {
584     // This is not a situation that we should recover from.
585     return ParsedType();
586   }
587 
588   QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
589 
590   // Build type location information.  We synthesized the qualifier, so we have
591   // to build a fake NestedNameSpecifierLoc.
592   NestedNameSpecifierLocBuilder NNSLocBuilder;
593   NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc));
594   NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context);
595 
596   TypeLocBuilder Builder;
597   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
598   DepTL.setNameLoc(NameLoc);
599   DepTL.setElaboratedKeywordLoc(SourceLocation());
600   DepTL.setQualifierLoc(QualifierLoc);
601   return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
602 }
603 
604 /// isTagName() - This method is called *for error recovery purposes only*
605 /// to determine if the specified name is a valid tag name ("struct foo").  If
606 /// so, this returns the TST for the tag corresponding to it (TST_enum,
607 /// TST_union, TST_struct, TST_interface, TST_class).  This is used to diagnose
608 /// cases in C where the user forgot to specify the tag.
609 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
610   // Do a tag name lookup in this scope.
611   LookupResult R(*this, &II, SourceLocation(), LookupTagName);
612   LookupName(R, S, false);
613   R.suppressDiagnostics();
614   if (R.getResultKind() == LookupResult::Found)
615     if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
616       switch (TD->getTagKind()) {
617       case TTK_Struct: return DeclSpec::TST_struct;
618       case TTK_Interface: return DeclSpec::TST_interface;
619       case TTK_Union:  return DeclSpec::TST_union;
620       case TTK_Class:  return DeclSpec::TST_class;
621       case TTK_Enum:   return DeclSpec::TST_enum;
622       }
623     }
624 
625   return DeclSpec::TST_unspecified;
626 }
627 
628 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
629 /// if a CXXScopeSpec's type is equal to the type of one of the base classes
630 /// then downgrade the missing typename error to a warning.
631 /// This is needed for MSVC compatibility; Example:
632 /// @code
633 /// template<class T> class A {
634 /// public:
635 ///   typedef int TYPE;
636 /// };
637 /// template<class T> class B : public A<T> {
638 /// public:
639 ///   A<T>::TYPE a; // no typename required because A<T> is a base class.
640 /// };
641 /// @endcode
642 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
643   if (CurContext->isRecord()) {
644     if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
645       return true;
646 
647     const Type *Ty = SS->getScopeRep()->getAsType();
648 
649     CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
650     for (const auto &Base : RD->bases())
651       if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
652         return true;
653     return S->isFunctionPrototypeScope();
654   }
655   return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
656 }
657 
658 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
659                                    SourceLocation IILoc,
660                                    Scope *S,
661                                    CXXScopeSpec *SS,
662                                    ParsedType &SuggestedType,
663                                    bool IsTemplateName) {
664   // Don't report typename errors for editor placeholders.
665   if (II->isEditorPlaceholder())
666     return;
667   // We don't have anything to suggest (yet).
668   SuggestedType = nullptr;
669 
670   // There may have been a typo in the name of the type. Look up typo
671   // results, in case we have something that we can suggest.
672   TypeNameValidatorCCC CCC(/*AllowInvalid=*/false, /*WantClass=*/false,
673                            /*AllowTemplates=*/IsTemplateName,
674                            /*AllowNonTemplates=*/!IsTemplateName);
675   if (TypoCorrection Corrected =
676           CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS,
677                       CCC, CTK_ErrorRecovery)) {
678     // FIXME: Support error recovery for the template-name case.
679     bool CanRecover = !IsTemplateName;
680     if (Corrected.isKeyword()) {
681       // We corrected to a keyword.
682       diagnoseTypo(Corrected,
683                    PDiag(IsTemplateName ? diag::err_no_template_suggest
684                                         : diag::err_unknown_typename_suggest)
685                        << II);
686       II = Corrected.getCorrectionAsIdentifierInfo();
687     } else {
688       // We found a similarly-named type or interface; suggest that.
689       if (!SS || !SS->isSet()) {
690         diagnoseTypo(Corrected,
691                      PDiag(IsTemplateName ? diag::err_no_template_suggest
692                                           : diag::err_unknown_typename_suggest)
693                          << II, CanRecover);
694       } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
695         std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
696         bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
697                                 II->getName().equals(CorrectedStr);
698         diagnoseTypo(Corrected,
699                      PDiag(IsTemplateName
700                                ? diag::err_no_member_template_suggest
701                                : diag::err_unknown_nested_typename_suggest)
702                          << II << DC << DroppedSpecifier << SS->getRange(),
703                      CanRecover);
704       } else {
705         llvm_unreachable("could not have corrected a typo here");
706       }
707 
708       if (!CanRecover)
709         return;
710 
711       CXXScopeSpec tmpSS;
712       if (Corrected.getCorrectionSpecifier())
713         tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
714                           SourceRange(IILoc));
715       // FIXME: Support class template argument deduction here.
716       SuggestedType =
717           getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S,
718                       tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
719                       /*IsCtorOrDtorName=*/false,
720                       /*WantNontrivialTypeSourceInfo=*/true);
721     }
722     return;
723   }
724 
725   if (getLangOpts().CPlusPlus && !IsTemplateName) {
726     // See if II is a class template that the user forgot to pass arguments to.
727     UnqualifiedId Name;
728     Name.setIdentifier(II, IILoc);
729     CXXScopeSpec EmptySS;
730     TemplateTy TemplateResult;
731     bool MemberOfUnknownSpecialization;
732     if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
733                        Name, nullptr, true, TemplateResult,
734                        MemberOfUnknownSpecialization) == TNK_Type_template) {
735       diagnoseMissingTemplateArguments(TemplateResult.get(), IILoc);
736       return;
737     }
738   }
739 
740   // FIXME: Should we move the logic that tries to recover from a missing tag
741   // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
742 
743   if (!SS || (!SS->isSet() && !SS->isInvalid()))
744     Diag(IILoc, IsTemplateName ? diag::err_no_template
745                                : diag::err_unknown_typename)
746         << II;
747   else if (DeclContext *DC = computeDeclContext(*SS, false))
748     Diag(IILoc, IsTemplateName ? diag::err_no_member_template
749                                : diag::err_typename_nested_not_found)
750         << II << DC << SS->getRange();
751   else if (SS->isValid() && SS->getScopeRep()->containsErrors()) {
752     SuggestedType =
753         ActOnTypenameType(S, SourceLocation(), *SS, *II, IILoc).get();
754   } else if (isDependentScopeSpecifier(*SS)) {
755     unsigned DiagID = diag::err_typename_missing;
756     if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
757       DiagID = diag::ext_typename_missing;
758 
759     Diag(SS->getRange().getBegin(), DiagID)
760       << SS->getScopeRep() << II->getName()
761       << SourceRange(SS->getRange().getBegin(), IILoc)
762       << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
763     SuggestedType = ActOnTypenameType(S, SourceLocation(),
764                                       *SS, *II, IILoc).get();
765   } else {
766     assert(SS && SS->isInvalid() &&
767            "Invalid scope specifier has already been diagnosed");
768   }
769 }
770 
771 /// Determine whether the given result set contains either a type name
772 /// or
773 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
774   bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
775                        NextToken.is(tok::less);
776 
777   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
778     if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
779       return true;
780 
781     if (CheckTemplate && isa<TemplateDecl>(*I))
782       return true;
783   }
784 
785   return false;
786 }
787 
788 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
789                                     Scope *S, CXXScopeSpec &SS,
790                                     IdentifierInfo *&Name,
791                                     SourceLocation NameLoc) {
792   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
793   SemaRef.LookupParsedName(R, S, &SS);
794   if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
795     StringRef FixItTagName;
796     switch (Tag->getTagKind()) {
797       case TTK_Class:
798         FixItTagName = "class ";
799         break;
800 
801       case TTK_Enum:
802         FixItTagName = "enum ";
803         break;
804 
805       case TTK_Struct:
806         FixItTagName = "struct ";
807         break;
808 
809       case TTK_Interface:
810         FixItTagName = "__interface ";
811         break;
812 
813       case TTK_Union:
814         FixItTagName = "union ";
815         break;
816     }
817 
818     StringRef TagName = FixItTagName.drop_back();
819     SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
820       << Name << TagName << SemaRef.getLangOpts().CPlusPlus
821       << FixItHint::CreateInsertion(NameLoc, FixItTagName);
822 
823     for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
824          I != IEnd; ++I)
825       SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
826         << Name << TagName;
827 
828     // Replace lookup results with just the tag decl.
829     Result.clear(Sema::LookupTagName);
830     SemaRef.LookupParsedName(Result, S, &SS);
831     return true;
832   }
833 
834   return false;
835 }
836 
837 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
838 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
839                                   QualType T, SourceLocation NameLoc) {
840   ASTContext &Context = S.Context;
841 
842   TypeLocBuilder Builder;
843   Builder.pushTypeSpec(T).setNameLoc(NameLoc);
844 
845   T = S.getElaboratedType(ETK_None, SS, T);
846   ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
847   ElabTL.setElaboratedKeywordLoc(SourceLocation());
848   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
849   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
850 }
851 
852 Sema::NameClassification Sema::ClassifyName(Scope *S, CXXScopeSpec &SS,
853                                             IdentifierInfo *&Name,
854                                             SourceLocation NameLoc,
855                                             const Token &NextToken,
856                                             CorrectionCandidateCallback *CCC) {
857   DeclarationNameInfo NameInfo(Name, NameLoc);
858   ObjCMethodDecl *CurMethod = getCurMethodDecl();
859 
860   assert(NextToken.isNot(tok::coloncolon) &&
861          "parse nested name specifiers before calling ClassifyName");
862   if (getLangOpts().CPlusPlus && SS.isSet() &&
863       isCurrentClassName(*Name, S, &SS)) {
864     // Per [class.qual]p2, this names the constructors of SS, not the
865     // injected-class-name. We don't have a classification for that.
866     // There's not much point caching this result, since the parser
867     // will reject it later.
868     return NameClassification::Unknown();
869   }
870 
871   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
872   LookupParsedName(Result, S, &SS, !CurMethod);
873 
874   if (SS.isInvalid())
875     return NameClassification::Error();
876 
877   // For unqualified lookup in a class template in MSVC mode, look into
878   // dependent base classes where the primary class template is known.
879   if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) {
880     if (ParsedType TypeInBase =
881             recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc))
882       return TypeInBase;
883   }
884 
885   // Perform lookup for Objective-C instance variables (including automatically
886   // synthesized instance variables), if we're in an Objective-C method.
887   // FIXME: This lookup really, really needs to be folded in to the normal
888   // unqualified lookup mechanism.
889   if (SS.isEmpty() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
890     DeclResult Ivar = LookupIvarInObjCMethod(Result, S, Name);
891     if (Ivar.isInvalid())
892       return NameClassification::Error();
893     if (Ivar.isUsable())
894       return NameClassification::NonType(cast<NamedDecl>(Ivar.get()));
895 
896     // We defer builtin creation until after ivar lookup inside ObjC methods.
897     if (Result.empty())
898       LookupBuiltin(Result);
899   }
900 
901   bool SecondTry = false;
902   bool IsFilteredTemplateName = false;
903 
904 Corrected:
905   switch (Result.getResultKind()) {
906   case LookupResult::NotFound:
907     // If an unqualified-id is followed by a '(', then we have a function
908     // call.
909     if (SS.isEmpty() && NextToken.is(tok::l_paren)) {
910       // In C++, this is an ADL-only call.
911       // FIXME: Reference?
912       if (getLangOpts().CPlusPlus)
913         return NameClassification::UndeclaredNonType();
914 
915       // C90 6.3.2.2:
916       //   If the expression that precedes the parenthesized argument list in a
917       //   function call consists solely of an identifier, and if no
918       //   declaration is visible for this identifier, the identifier is
919       //   implicitly declared exactly as if, in the innermost block containing
920       //   the function call, the declaration
921       //
922       //     extern int identifier ();
923       //
924       //   appeared.
925       //
926       // We also allow this in C99 as an extension.
927       if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S))
928         return NameClassification::NonType(D);
929     }
930 
931     if (getLangOpts().CPlusPlus20 && SS.isEmpty() && NextToken.is(tok::less)) {
932       // In C++20 onwards, this could be an ADL-only call to a function
933       // template, and we're required to assume that this is a template name.
934       //
935       // FIXME: Find a way to still do typo correction in this case.
936       TemplateName Template =
937           Context.getAssumedTemplateName(NameInfo.getName());
938       return NameClassification::UndeclaredTemplate(Template);
939     }
940 
941     // In C, we first see whether there is a tag type by the same name, in
942     // which case it's likely that the user just forgot to write "enum",
943     // "struct", or "union".
944     if (!getLangOpts().CPlusPlus && !SecondTry &&
945         isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
946       break;
947     }
948 
949     // Perform typo correction to determine if there is another name that is
950     // close to this name.
951     if (!SecondTry && CCC) {
952       SecondTry = true;
953       if (TypoCorrection Corrected =
954               CorrectTypo(Result.getLookupNameInfo(), Result.getLookupKind(), S,
955                           &SS, *CCC, CTK_ErrorRecovery)) {
956         unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
957         unsigned QualifiedDiag = diag::err_no_member_suggest;
958 
959         NamedDecl *FirstDecl = Corrected.getFoundDecl();
960         NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl();
961         if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
962             UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
963           UnqualifiedDiag = diag::err_no_template_suggest;
964           QualifiedDiag = diag::err_no_member_template_suggest;
965         } else if (UnderlyingFirstDecl &&
966                    (isa<TypeDecl>(UnderlyingFirstDecl) ||
967                     isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
968                     isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
969           UnqualifiedDiag = diag::err_unknown_typename_suggest;
970           QualifiedDiag = diag::err_unknown_nested_typename_suggest;
971         }
972 
973         if (SS.isEmpty()) {
974           diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
975         } else {// FIXME: is this even reachable? Test it.
976           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
977           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
978                                   Name->getName().equals(CorrectedStr);
979           diagnoseTypo(Corrected, PDiag(QualifiedDiag)
980                                     << Name << computeDeclContext(SS, false)
981                                     << DroppedSpecifier << SS.getRange());
982         }
983 
984         // Update the name, so that the caller has the new name.
985         Name = Corrected.getCorrectionAsIdentifierInfo();
986 
987         // Typo correction corrected to a keyword.
988         if (Corrected.isKeyword())
989           return Name;
990 
991         // Also update the LookupResult...
992         // FIXME: This should probably go away at some point
993         Result.clear();
994         Result.setLookupName(Corrected.getCorrection());
995         if (FirstDecl)
996           Result.addDecl(FirstDecl);
997 
998         // If we found an Objective-C instance variable, let
999         // LookupInObjCMethod build the appropriate expression to
1000         // reference the ivar.
1001         // FIXME: This is a gross hack.
1002         if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
1003           DeclResult R =
1004               LookupIvarInObjCMethod(Result, S, Ivar->getIdentifier());
1005           if (R.isInvalid())
1006             return NameClassification::Error();
1007           if (R.isUsable())
1008             return NameClassification::NonType(Ivar);
1009         }
1010 
1011         goto Corrected;
1012       }
1013     }
1014 
1015     // We failed to correct; just fall through and let the parser deal with it.
1016     Result.suppressDiagnostics();
1017     return NameClassification::Unknown();
1018 
1019   case LookupResult::NotFoundInCurrentInstantiation: {
1020     // We performed name lookup into the current instantiation, and there were
1021     // dependent bases, so we treat this result the same way as any other
1022     // dependent nested-name-specifier.
1023 
1024     // C++ [temp.res]p2:
1025     //   A name used in a template declaration or definition and that is
1026     //   dependent on a template-parameter is assumed not to name a type
1027     //   unless the applicable name lookup finds a type name or the name is
1028     //   qualified by the keyword typename.
1029     //
1030     // FIXME: If the next token is '<', we might want to ask the parser to
1031     // perform some heroics to see if we actually have a
1032     // template-argument-list, which would indicate a missing 'template'
1033     // keyword here.
1034     return NameClassification::DependentNonType();
1035   }
1036 
1037   case LookupResult::Found:
1038   case LookupResult::FoundOverloaded:
1039   case LookupResult::FoundUnresolvedValue:
1040     break;
1041 
1042   case LookupResult::Ambiguous:
1043     if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1044         hasAnyAcceptableTemplateNames(Result, /*AllowFunctionTemplates=*/true,
1045                                       /*AllowDependent=*/false)) {
1046       // C++ [temp.local]p3:
1047       //   A lookup that finds an injected-class-name (10.2) can result in an
1048       //   ambiguity in certain cases (for example, if it is found in more than
1049       //   one base class). If all of the injected-class-names that are found
1050       //   refer to specializations of the same class template, and if the name
1051       //   is followed by a template-argument-list, the reference refers to the
1052       //   class template itself and not a specialization thereof, and is not
1053       //   ambiguous.
1054       //
1055       // This filtering can make an ambiguous result into an unambiguous one,
1056       // so try again after filtering out template names.
1057       FilterAcceptableTemplateNames(Result);
1058       if (!Result.isAmbiguous()) {
1059         IsFilteredTemplateName = true;
1060         break;
1061       }
1062     }
1063 
1064     // Diagnose the ambiguity and return an error.
1065     return NameClassification::Error();
1066   }
1067 
1068   if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
1069       (IsFilteredTemplateName ||
1070        hasAnyAcceptableTemplateNames(
1071            Result, /*AllowFunctionTemplates=*/true,
1072            /*AllowDependent=*/false,
1073            /*AllowNonTemplateFunctions*/ SS.isEmpty() &&
1074                getLangOpts().CPlusPlus20))) {
1075     // C++ [temp.names]p3:
1076     //   After name lookup (3.4) finds that a name is a template-name or that
1077     //   an operator-function-id or a literal- operator-id refers to a set of
1078     //   overloaded functions any member of which is a function template if
1079     //   this is followed by a <, the < is always taken as the delimiter of a
1080     //   template-argument-list and never as the less-than operator.
1081     // C++2a [temp.names]p2:
1082     //   A name is also considered to refer to a template if it is an
1083     //   unqualified-id followed by a < and name lookup finds either one
1084     //   or more functions or finds nothing.
1085     if (!IsFilteredTemplateName)
1086       FilterAcceptableTemplateNames(Result);
1087 
1088     bool IsFunctionTemplate;
1089     bool IsVarTemplate;
1090     TemplateName Template;
1091     if (Result.end() - Result.begin() > 1) {
1092       IsFunctionTemplate = true;
1093       Template = Context.getOverloadedTemplateName(Result.begin(),
1094                                                    Result.end());
1095     } else if (!Result.empty()) {
1096       auto *TD = cast<TemplateDecl>(getAsTemplateNameDecl(
1097           *Result.begin(), /*AllowFunctionTemplates=*/true,
1098           /*AllowDependent=*/false));
1099       IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
1100       IsVarTemplate = isa<VarTemplateDecl>(TD);
1101 
1102       if (SS.isNotEmpty())
1103         Template =
1104             Context.getQualifiedTemplateName(SS.getScopeRep(),
1105                                              /*TemplateKeyword=*/false, TD);
1106       else
1107         Template = TemplateName(TD);
1108     } else {
1109       // All results were non-template functions. This is a function template
1110       // name.
1111       IsFunctionTemplate = true;
1112       Template = Context.getAssumedTemplateName(NameInfo.getName());
1113     }
1114 
1115     if (IsFunctionTemplate) {
1116       // Function templates always go through overload resolution, at which
1117       // point we'll perform the various checks (e.g., accessibility) we need
1118       // to based on which function we selected.
1119       Result.suppressDiagnostics();
1120 
1121       return NameClassification::FunctionTemplate(Template);
1122     }
1123 
1124     return IsVarTemplate ? NameClassification::VarTemplate(Template)
1125                          : NameClassification::TypeTemplate(Template);
1126   }
1127 
1128   NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
1129   if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
1130     DiagnoseUseOfDecl(Type, NameLoc);
1131     MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
1132     QualType T = Context.getTypeDeclType(Type);
1133     if (SS.isNotEmpty())
1134       return buildNestedType(*this, SS, T, NameLoc);
1135     return ParsedType::make(T);
1136   }
1137 
1138   ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
1139   if (!Class) {
1140     // FIXME: It's unfortunate that we don't have a Type node for handling this.
1141     if (ObjCCompatibleAliasDecl *Alias =
1142             dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
1143       Class = Alias->getClassInterface();
1144   }
1145 
1146   if (Class) {
1147     DiagnoseUseOfDecl(Class, NameLoc);
1148 
1149     if (NextToken.is(tok::period)) {
1150       // Interface. <something> is parsed as a property reference expression.
1151       // Just return "unknown" as a fall-through for now.
1152       Result.suppressDiagnostics();
1153       return NameClassification::Unknown();
1154     }
1155 
1156     QualType T = Context.getObjCInterfaceType(Class);
1157     return ParsedType::make(T);
1158   }
1159 
1160   if (isa<ConceptDecl>(FirstDecl))
1161     return NameClassification::Concept(
1162         TemplateName(cast<TemplateDecl>(FirstDecl)));
1163 
1164   // We can have a type template here if we're classifying a template argument.
1165   if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) &&
1166       !isa<VarTemplateDecl>(FirstDecl))
1167     return NameClassification::TypeTemplate(
1168         TemplateName(cast<TemplateDecl>(FirstDecl)));
1169 
1170   // Check for a tag type hidden by a non-type decl in a few cases where it
1171   // seems likely a type is wanted instead of the non-type that was found.
1172   bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star);
1173   if ((NextToken.is(tok::identifier) ||
1174        (NextIsOp &&
1175         FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
1176       isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
1177     TypeDecl *Type = Result.getAsSingle<TypeDecl>();
1178     DiagnoseUseOfDecl(Type, NameLoc);
1179     QualType T = Context.getTypeDeclType(Type);
1180     if (SS.isNotEmpty())
1181       return buildNestedType(*this, SS, T, NameLoc);
1182     return ParsedType::make(T);
1183   }
1184 
1185   // If we already know which single declaration is referenced, just annotate
1186   // that declaration directly. Defer resolving even non-overloaded class
1187   // member accesses, as we need to defer certain access checks until we know
1188   // the context.
1189   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1190   if (Result.isSingleResult() && !ADL && !FirstDecl->isCXXClassMember())
1191     return NameClassification::NonType(Result.getRepresentativeDecl());
1192 
1193   // Otherwise, this is an overload set that we will need to resolve later.
1194   Result.suppressDiagnostics();
1195   return NameClassification::OverloadSet(UnresolvedLookupExpr::Create(
1196       Context, Result.getNamingClass(), SS.getWithLocInContext(Context),
1197       Result.getLookupNameInfo(), ADL, Result.isOverloadedResult(),
1198       Result.begin(), Result.end()));
1199 }
1200 
1201 ExprResult
1202 Sema::ActOnNameClassifiedAsUndeclaredNonType(IdentifierInfo *Name,
1203                                              SourceLocation NameLoc) {
1204   assert(getLangOpts().CPlusPlus && "ADL-only call in C?");
1205   CXXScopeSpec SS;
1206   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
1207   return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
1208 }
1209 
1210 ExprResult
1211 Sema::ActOnNameClassifiedAsDependentNonType(const CXXScopeSpec &SS,
1212                                             IdentifierInfo *Name,
1213                                             SourceLocation NameLoc,
1214                                             bool IsAddressOfOperand) {
1215   DeclarationNameInfo NameInfo(Name, NameLoc);
1216   return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
1217                                     NameInfo, IsAddressOfOperand,
1218                                     /*TemplateArgs=*/nullptr);
1219 }
1220 
1221 ExprResult Sema::ActOnNameClassifiedAsNonType(Scope *S, const CXXScopeSpec &SS,
1222                                               NamedDecl *Found,
1223                                               SourceLocation NameLoc,
1224                                               const Token &NextToken) {
1225   if (getCurMethodDecl() && SS.isEmpty())
1226     if (auto *Ivar = dyn_cast<ObjCIvarDecl>(Found->getUnderlyingDecl()))
1227       return BuildIvarRefExpr(S, NameLoc, Ivar);
1228 
1229   // Reconstruct the lookup result.
1230   LookupResult Result(*this, Found->getDeclName(), NameLoc, LookupOrdinaryName);
1231   Result.addDecl(Found);
1232   Result.resolveKind();
1233 
1234   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1235   return BuildDeclarationNameExpr(SS, Result, ADL);
1236 }
1237 
1238 ExprResult Sema::ActOnNameClassifiedAsOverloadSet(Scope *S, Expr *E) {
1239   // For an implicit class member access, transform the result into a member
1240   // access expression if necessary.
1241   auto *ULE = cast<UnresolvedLookupExpr>(E);
1242   if ((*ULE->decls_begin())->isCXXClassMember()) {
1243     CXXScopeSpec SS;
1244     SS.Adopt(ULE->getQualifierLoc());
1245 
1246     // Reconstruct the lookup result.
1247     LookupResult Result(*this, ULE->getName(), ULE->getNameLoc(),
1248                         LookupOrdinaryName);
1249     Result.setNamingClass(ULE->getNamingClass());
1250     for (auto I = ULE->decls_begin(), E = ULE->decls_end(); I != E; ++I)
1251       Result.addDecl(*I, I.getAccess());
1252     Result.resolveKind();
1253     return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
1254                                            nullptr, S);
1255   }
1256 
1257   // Otherwise, this is already in the form we needed, and no further checks
1258   // are necessary.
1259   return ULE;
1260 }
1261 
1262 Sema::TemplateNameKindForDiagnostics
1263 Sema::getTemplateNameKindForDiagnostics(TemplateName Name) {
1264   auto *TD = Name.getAsTemplateDecl();
1265   if (!TD)
1266     return TemplateNameKindForDiagnostics::DependentTemplate;
1267   if (isa<ClassTemplateDecl>(TD))
1268     return TemplateNameKindForDiagnostics::ClassTemplate;
1269   if (isa<FunctionTemplateDecl>(TD))
1270     return TemplateNameKindForDiagnostics::FunctionTemplate;
1271   if (isa<VarTemplateDecl>(TD))
1272     return TemplateNameKindForDiagnostics::VarTemplate;
1273   if (isa<TypeAliasTemplateDecl>(TD))
1274     return TemplateNameKindForDiagnostics::AliasTemplate;
1275   if (isa<TemplateTemplateParmDecl>(TD))
1276     return TemplateNameKindForDiagnostics::TemplateTemplateParam;
1277   if (isa<ConceptDecl>(TD))
1278     return TemplateNameKindForDiagnostics::Concept;
1279   return TemplateNameKindForDiagnostics::DependentTemplate;
1280 }
1281 
1282 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1283   assert(DC->getLexicalParent() == CurContext &&
1284       "The next DeclContext should be lexically contained in the current one.");
1285   CurContext = DC;
1286   S->setEntity(DC);
1287 }
1288 
1289 void Sema::PopDeclContext() {
1290   assert(CurContext && "DeclContext imbalance!");
1291 
1292   CurContext = CurContext->getLexicalParent();
1293   assert(CurContext && "Popped translation unit!");
1294 }
1295 
1296 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S,
1297                                                                     Decl *D) {
1298   // Unlike PushDeclContext, the context to which we return is not necessarily
1299   // the containing DC of TD, because the new context will be some pre-existing
1300   // TagDecl definition instead of a fresh one.
1301   auto Result = static_cast<SkippedDefinitionContext>(CurContext);
1302   CurContext = cast<TagDecl>(D)->getDefinition();
1303   assert(CurContext && "skipping definition of undefined tag");
1304   // Start lookups from the parent of the current context; we don't want to look
1305   // into the pre-existing complete definition.
1306   S->setEntity(CurContext->getLookupParent());
1307   return Result;
1308 }
1309 
1310 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) {
1311   CurContext = static_cast<decltype(CurContext)>(Context);
1312 }
1313 
1314 /// EnterDeclaratorContext - Used when we must lookup names in the context
1315 /// of a declarator's nested name specifier.
1316 ///
1317 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1318   // C++0x [basic.lookup.unqual]p13:
1319   //   A name used in the definition of a static data member of class
1320   //   X (after the qualified-id of the static member) is looked up as
1321   //   if the name was used in a member function of X.
1322   // C++0x [basic.lookup.unqual]p14:
1323   //   If a variable member of a namespace is defined outside of the
1324   //   scope of its namespace then any name used in the definition of
1325   //   the variable member (after the declarator-id) is looked up as
1326   //   if the definition of the variable member occurred in its
1327   //   namespace.
1328   // Both of these imply that we should push a scope whose context
1329   // is the semantic context of the declaration.  We can't use
1330   // PushDeclContext here because that context is not necessarily
1331   // lexically contained in the current context.  Fortunately,
1332   // the containing scope should have the appropriate information.
1333 
1334   assert(!S->getEntity() && "scope already has entity");
1335 
1336 #ifndef NDEBUG
1337   Scope *Ancestor = S->getParent();
1338   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1339   assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
1340 #endif
1341 
1342   CurContext = DC;
1343   S->setEntity(DC);
1344 
1345   if (S->getParent()->isTemplateParamScope()) {
1346     // Also set the corresponding entities for all immediately-enclosing
1347     // template parameter scopes.
1348     EnterTemplatedContext(S->getParent(), DC);
1349   }
1350 }
1351 
1352 void Sema::ExitDeclaratorContext(Scope *S) {
1353   assert(S->getEntity() == CurContext && "Context imbalance!");
1354 
1355   // Switch back to the lexical context.  The safety of this is
1356   // enforced by an assert in EnterDeclaratorContext.
1357   Scope *Ancestor = S->getParent();
1358   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1359   CurContext = Ancestor->getEntity();
1360 
1361   // We don't need to do anything with the scope, which is going to
1362   // disappear.
1363 }
1364 
1365 void Sema::EnterTemplatedContext(Scope *S, DeclContext *DC) {
1366   assert(S->isTemplateParamScope() &&
1367          "expected to be initializing a template parameter scope");
1368 
1369   // C++20 [temp.local]p7:
1370   //   In the definition of a member of a class template that appears outside
1371   //   of the class template definition, the name of a member of the class
1372   //   template hides the name of a template-parameter of any enclosing class
1373   //   templates (but not a template-parameter of the member if the member is a
1374   //   class or function template).
1375   // C++20 [temp.local]p9:
1376   //   In the definition of a class template or in the definition of a member
1377   //   of such a template that appears outside of the template definition, for
1378   //   each non-dependent base class (13.8.2.1), if the name of the base class
1379   //   or the name of a member of the base class is the same as the name of a
1380   //   template-parameter, the base class name or member name hides the
1381   //   template-parameter name (6.4.10).
1382   //
1383   // This means that a template parameter scope should be searched immediately
1384   // after searching the DeclContext for which it is a template parameter
1385   // scope. For example, for
1386   //   template<typename T> template<typename U> template<typename V>
1387   //     void N::A<T>::B<U>::f(...)
1388   // we search V then B<U> (and base classes) then U then A<T> (and base
1389   // classes) then T then N then ::.
1390   unsigned ScopeDepth = getTemplateDepth(S);
1391   for (; S && S->isTemplateParamScope(); S = S->getParent(), --ScopeDepth) {
1392     DeclContext *SearchDCAfterScope = DC;
1393     for (; DC; DC = DC->getLookupParent()) {
1394       if (const TemplateParameterList *TPL =
1395               cast<Decl>(DC)->getDescribedTemplateParams()) {
1396         unsigned DCDepth = TPL->getDepth() + 1;
1397         if (DCDepth > ScopeDepth)
1398           continue;
1399         if (ScopeDepth == DCDepth)
1400           SearchDCAfterScope = DC = DC->getLookupParent();
1401         break;
1402       }
1403     }
1404     S->setLookupEntity(SearchDCAfterScope);
1405   }
1406 }
1407 
1408 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
1409   // We assume that the caller has already called
1410   // ActOnReenterTemplateScope so getTemplatedDecl() works.
1411   FunctionDecl *FD = D->getAsFunction();
1412   if (!FD)
1413     return;
1414 
1415   // Same implementation as PushDeclContext, but enters the context
1416   // from the lexical parent, rather than the top-level class.
1417   assert(CurContext == FD->getLexicalParent() &&
1418     "The next DeclContext should be lexically contained in the current one.");
1419   CurContext = FD;
1420   S->setEntity(CurContext);
1421 
1422   for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
1423     ParmVarDecl *Param = FD->getParamDecl(P);
1424     // If the parameter has an identifier, then add it to the scope
1425     if (Param->getIdentifier()) {
1426       S->AddDecl(Param);
1427       IdResolver.AddDecl(Param);
1428     }
1429   }
1430 }
1431 
1432 void Sema::ActOnExitFunctionContext() {
1433   // Same implementation as PopDeclContext, but returns to the lexical parent,
1434   // rather than the top-level class.
1435   assert(CurContext && "DeclContext imbalance!");
1436   CurContext = CurContext->getLexicalParent();
1437   assert(CurContext && "Popped translation unit!");
1438 }
1439 
1440 /// Determine whether we allow overloading of the function
1441 /// PrevDecl with another declaration.
1442 ///
1443 /// This routine determines whether overloading is possible, not
1444 /// whether some new function is actually an overload. It will return
1445 /// true in C++ (where we can always provide overloads) or, as an
1446 /// extension, in C when the previous function is already an
1447 /// overloaded function declaration or has the "overloadable"
1448 /// attribute.
1449 static bool AllowOverloadingOfFunction(LookupResult &Previous,
1450                                        ASTContext &Context,
1451                                        const FunctionDecl *New) {
1452   if (Context.getLangOpts().CPlusPlus)
1453     return true;
1454 
1455   if (Previous.getResultKind() == LookupResult::FoundOverloaded)
1456     return true;
1457 
1458   return Previous.getResultKind() == LookupResult::Found &&
1459          (Previous.getFoundDecl()->hasAttr<OverloadableAttr>() ||
1460           New->hasAttr<OverloadableAttr>());
1461 }
1462 
1463 /// Add this decl to the scope shadowed decl chains.
1464 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
1465   // Move up the scope chain until we find the nearest enclosing
1466   // non-transparent context. The declaration will be introduced into this
1467   // scope.
1468   while (S->getEntity() && S->getEntity()->isTransparentContext())
1469     S = S->getParent();
1470 
1471   // Add scoped declarations into their context, so that they can be
1472   // found later. Declarations without a context won't be inserted
1473   // into any context.
1474   if (AddToContext)
1475     CurContext->addDecl(D);
1476 
1477   // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1478   // are function-local declarations.
1479   if (getLangOpts().CPlusPlus && D->isOutOfLine() && !S->getFnParent())
1480     return;
1481 
1482   // Template instantiations should also not be pushed into scope.
1483   if (isa<FunctionDecl>(D) &&
1484       cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
1485     return;
1486 
1487   // If this replaces anything in the current scope,
1488   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1489                                IEnd = IdResolver.end();
1490   for (; I != IEnd; ++I) {
1491     if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1492       S->RemoveDecl(*I);
1493       IdResolver.RemoveDecl(*I);
1494 
1495       // Should only need to replace one decl.
1496       break;
1497     }
1498   }
1499 
1500   S->AddDecl(D);
1501 
1502   if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1503     // Implicitly-generated labels may end up getting generated in an order that
1504     // isn't strictly lexical, which breaks name lookup. Be careful to insert
1505     // the label at the appropriate place in the identifier chain.
1506     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
1507       DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
1508       if (IDC == CurContext) {
1509         if (!S->isDeclScope(*I))
1510           continue;
1511       } else if (IDC->Encloses(CurContext))
1512         break;
1513     }
1514 
1515     IdResolver.InsertDeclAfter(I, D);
1516   } else {
1517     IdResolver.AddDecl(D);
1518   }
1519 }
1520 
1521 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
1522                          bool AllowInlineNamespace) {
1523   return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
1524 }
1525 
1526 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1527   DeclContext *TargetDC = DC->getPrimaryContext();
1528   do {
1529     if (DeclContext *ScopeDC = S->getEntity())
1530       if (ScopeDC->getPrimaryContext() == TargetDC)
1531         return S;
1532   } while ((S = S->getParent()));
1533 
1534   return nullptr;
1535 }
1536 
1537 static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1538                                             DeclContext*,
1539                                             ASTContext&);
1540 
1541 /// Filters out lookup results that don't fall within the given scope
1542 /// as determined by isDeclInScope.
1543 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1544                                 bool ConsiderLinkage,
1545                                 bool AllowInlineNamespace) {
1546   LookupResult::Filter F = R.makeFilter();
1547   while (F.hasNext()) {
1548     NamedDecl *D = F.next();
1549 
1550     if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
1551       continue;
1552 
1553     if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
1554       continue;
1555 
1556     F.erase();
1557   }
1558 
1559   F.done();
1560 }
1561 
1562 /// We've determined that \p New is a redeclaration of \p Old. Check that they
1563 /// have compatible owning modules.
1564 bool Sema::CheckRedeclarationModuleOwnership(NamedDecl *New, NamedDecl *Old) {
1565   // FIXME: The Modules TS is not clear about how friend declarations are
1566   // to be treated. It's not meaningful to have different owning modules for
1567   // linkage in redeclarations of the same entity, so for now allow the
1568   // redeclaration and change the owning modules to match.
1569   if (New->getFriendObjectKind() &&
1570       Old->getOwningModuleForLinkage() != New->getOwningModuleForLinkage()) {
1571     New->setLocalOwningModule(Old->getOwningModule());
1572     makeMergedDefinitionVisible(New);
1573     return false;
1574   }
1575 
1576   Module *NewM = New->getOwningModule();
1577   Module *OldM = Old->getOwningModule();
1578 
1579   if (NewM && NewM->Kind == Module::PrivateModuleFragment)
1580     NewM = NewM->Parent;
1581   if (OldM && OldM->Kind == Module::PrivateModuleFragment)
1582     OldM = OldM->Parent;
1583 
1584   if (NewM == OldM)
1585     return false;
1586 
1587   bool NewIsModuleInterface = NewM && NewM->isModulePurview();
1588   bool OldIsModuleInterface = OldM && OldM->isModulePurview();
1589   if (NewIsModuleInterface || OldIsModuleInterface) {
1590     // C++ Modules TS [basic.def.odr] 6.2/6.7 [sic]:
1591     //   if a declaration of D [...] appears in the purview of a module, all
1592     //   other such declarations shall appear in the purview of the same module
1593     Diag(New->getLocation(), diag::err_mismatched_owning_module)
1594       << New
1595       << NewIsModuleInterface
1596       << (NewIsModuleInterface ? NewM->getFullModuleName() : "")
1597       << OldIsModuleInterface
1598       << (OldIsModuleInterface ? OldM->getFullModuleName() : "");
1599     Diag(Old->getLocation(), diag::note_previous_declaration);
1600     New->setInvalidDecl();
1601     return true;
1602   }
1603 
1604   return false;
1605 }
1606 
1607 static bool isUsingDecl(NamedDecl *D) {
1608   return isa<UsingShadowDecl>(D) ||
1609          isa<UnresolvedUsingTypenameDecl>(D) ||
1610          isa<UnresolvedUsingValueDecl>(D);
1611 }
1612 
1613 /// Removes using shadow declarations from the lookup results.
1614 static void RemoveUsingDecls(LookupResult &R) {
1615   LookupResult::Filter F = R.makeFilter();
1616   while (F.hasNext())
1617     if (isUsingDecl(F.next()))
1618       F.erase();
1619 
1620   F.done();
1621 }
1622 
1623 /// Check for this common pattern:
1624 /// @code
1625 /// class S {
1626 ///   S(const S&); // DO NOT IMPLEMENT
1627 ///   void operator=(const S&); // DO NOT IMPLEMENT
1628 /// };
1629 /// @endcode
1630 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1631   // FIXME: Should check for private access too but access is set after we get
1632   // the decl here.
1633   if (D->doesThisDeclarationHaveABody())
1634     return false;
1635 
1636   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1637     return CD->isCopyConstructor();
1638   return D->isCopyAssignmentOperator();
1639 }
1640 
1641 // We need this to handle
1642 //
1643 // typedef struct {
1644 //   void *foo() { return 0; }
1645 // } A;
1646 //
1647 // When we see foo we don't know if after the typedef we will get 'A' or '*A'
1648 // for example. If 'A', foo will have external linkage. If we have '*A',
1649 // foo will have no linkage. Since we can't know until we get to the end
1650 // of the typedef, this function finds out if D might have non-external linkage.
1651 // Callers should verify at the end of the TU if it D has external linkage or
1652 // not.
1653 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1654   const DeclContext *DC = D->getDeclContext();
1655   while (!DC->isTranslationUnit()) {
1656     if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1657       if (!RD->hasNameForLinkage())
1658         return true;
1659     }
1660     DC = DC->getParent();
1661   }
1662 
1663   return !D->isExternallyVisible();
1664 }
1665 
1666 // FIXME: This needs to be refactored; some other isInMainFile users want
1667 // these semantics.
1668 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1669   if (S.TUKind != TU_Complete)
1670     return false;
1671   return S.SourceMgr.isInMainFile(Loc);
1672 }
1673 
1674 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1675   assert(D);
1676 
1677   if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1678     return false;
1679 
1680   // Ignore all entities declared within templates, and out-of-line definitions
1681   // of members of class templates.
1682   if (D->getDeclContext()->isDependentContext() ||
1683       D->getLexicalDeclContext()->isDependentContext())
1684     return false;
1685 
1686   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1687     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1688       return false;
1689     // A non-out-of-line declaration of a member specialization was implicitly
1690     // instantiated; it's the out-of-line declaration that we're interested in.
1691     if (FD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1692         FD->getMemberSpecializationInfo() && !FD->isOutOfLine())
1693       return false;
1694 
1695     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1696       if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1697         return false;
1698     } else {
1699       // 'static inline' functions are defined in headers; don't warn.
1700       if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
1701         return false;
1702     }
1703 
1704     if (FD->doesThisDeclarationHaveABody() &&
1705         Context.DeclMustBeEmitted(FD))
1706       return false;
1707   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1708     // Constants and utility variables are defined in headers with internal
1709     // linkage; don't warn.  (Unlike functions, there isn't a convenient marker
1710     // like "inline".)
1711     if (!isMainFileLoc(*this, VD->getLocation()))
1712       return false;
1713 
1714     if (Context.DeclMustBeEmitted(VD))
1715       return false;
1716 
1717     if (VD->isStaticDataMember() &&
1718         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1719       return false;
1720     if (VD->isStaticDataMember() &&
1721         VD->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
1722         VD->getMemberSpecializationInfo() && !VD->isOutOfLine())
1723       return false;
1724 
1725     if (VD->isInline() && !isMainFileLoc(*this, VD->getLocation()))
1726       return false;
1727   } else {
1728     return false;
1729   }
1730 
1731   // Only warn for unused decls internal to the translation unit.
1732   // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1733   // for inline functions defined in the main source file, for instance.
1734   return mightHaveNonExternalLinkage(D);
1735 }
1736 
1737 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
1738   if (!D)
1739     return;
1740 
1741   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1742     const FunctionDecl *First = FD->getFirstDecl();
1743     if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1744       return; // First should already be in the vector.
1745   }
1746 
1747   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1748     const VarDecl *First = VD->getFirstDecl();
1749     if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1750       return; // First should already be in the vector.
1751   }
1752 
1753   if (ShouldWarnIfUnusedFileScopedDecl(D))
1754     UnusedFileScopedDecls.push_back(D);
1755 }
1756 
1757 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
1758   if (D->isInvalidDecl())
1759     return false;
1760 
1761   if (auto *DD = dyn_cast<DecompositionDecl>(D)) {
1762     // For a decomposition declaration, warn if none of the bindings are
1763     // referenced, instead of if the variable itself is referenced (which
1764     // it is, by the bindings' expressions).
1765     for (auto *BD : DD->bindings())
1766       if (BD->isReferenced())
1767         return false;
1768   } else if (!D->getDeclName()) {
1769     return false;
1770   } else if (D->isReferenced() || D->isUsed()) {
1771     return false;
1772   }
1773 
1774   if (D->hasAttr<UnusedAttr>() || D->hasAttr<ObjCPreciseLifetimeAttr>())
1775     return false;
1776 
1777   if (isa<LabelDecl>(D))
1778     return true;
1779 
1780   // Except for labels, we only care about unused decls that are local to
1781   // functions.
1782   bool WithinFunction = D->getDeclContext()->isFunctionOrMethod();
1783   if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext()))
1784     // For dependent types, the diagnostic is deferred.
1785     WithinFunction =
1786         WithinFunction || (R->isLocalClass() && !R->isDependentType());
1787   if (!WithinFunction)
1788     return false;
1789 
1790   if (isa<TypedefNameDecl>(D))
1791     return true;
1792 
1793   // White-list anything that isn't a local variable.
1794   if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D))
1795     return false;
1796 
1797   // Types of valid local variables should be complete, so this should succeed.
1798   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1799 
1800     // White-list anything with an __attribute__((unused)) type.
1801     const auto *Ty = VD->getType().getTypePtr();
1802 
1803     // Only look at the outermost level of typedef.
1804     if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
1805       if (TT->getDecl()->hasAttr<UnusedAttr>())
1806         return false;
1807     }
1808 
1809     // If we failed to complete the type for some reason, or if the type is
1810     // dependent, don't diagnose the variable.
1811     if (Ty->isIncompleteType() || Ty->isDependentType())
1812       return false;
1813 
1814     // Look at the element type to ensure that the warning behaviour is
1815     // consistent for both scalars and arrays.
1816     Ty = Ty->getBaseElementTypeUnsafe();
1817 
1818     if (const TagType *TT = Ty->getAs<TagType>()) {
1819       const TagDecl *Tag = TT->getDecl();
1820       if (Tag->hasAttr<UnusedAttr>())
1821         return false;
1822 
1823       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
1824         if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
1825           return false;
1826 
1827         if (const Expr *Init = VD->getInit()) {
1828           if (const ExprWithCleanups *Cleanups =
1829                   dyn_cast<ExprWithCleanups>(Init))
1830             Init = Cleanups->getSubExpr();
1831           const CXXConstructExpr *Construct =
1832             dyn_cast<CXXConstructExpr>(Init);
1833           if (Construct && !Construct->isElidable()) {
1834             CXXConstructorDecl *CD = Construct->getConstructor();
1835             if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>() &&
1836                 (VD->getInit()->isValueDependent() || !VD->evaluateValue()))
1837               return false;
1838           }
1839 
1840           // Suppress the warning if we don't know how this is constructed, and
1841           // it could possibly be non-trivial constructor.
1842           if (Init->isTypeDependent())
1843             for (const CXXConstructorDecl *Ctor : RD->ctors())
1844               if (!Ctor->isTrivial())
1845                 return false;
1846         }
1847       }
1848     }
1849 
1850     // TODO: __attribute__((unused)) templates?
1851   }
1852 
1853   return true;
1854 }
1855 
1856 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1857                                      FixItHint &Hint) {
1858   if (isa<LabelDecl>(D)) {
1859     SourceLocation AfterColon = Lexer::findLocationAfterToken(
1860         D->getEndLoc(), tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(),
1861         true);
1862     if (AfterColon.isInvalid())
1863       return;
1864     Hint = FixItHint::CreateRemoval(
1865         CharSourceRange::getCharRange(D->getBeginLoc(), AfterColon));
1866   }
1867 }
1868 
1869 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1870   if (D->getTypeForDecl()->isDependentType())
1871     return;
1872 
1873   for (auto *TmpD : D->decls()) {
1874     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1875       DiagnoseUnusedDecl(T);
1876     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1877       DiagnoseUnusedNestedTypedefs(R);
1878   }
1879 }
1880 
1881 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1882 /// unless they are marked attr(unused).
1883 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1884   if (!ShouldDiagnoseUnusedDecl(D))
1885     return;
1886 
1887   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1888     // typedefs can be referenced later on, so the diagnostics are emitted
1889     // at end-of-translation-unit.
1890     UnusedLocalTypedefNameCandidates.insert(TD);
1891     return;
1892   }
1893 
1894   FixItHint Hint;
1895   GenerateFixForUnusedDecl(D, Context, Hint);
1896 
1897   unsigned DiagID;
1898   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1899     DiagID = diag::warn_unused_exception_param;
1900   else if (isa<LabelDecl>(D))
1901     DiagID = diag::warn_unused_label;
1902   else
1903     DiagID = diag::warn_unused_variable;
1904 
1905   Diag(D->getLocation(), DiagID) << D << Hint;
1906 }
1907 
1908 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1909   // Verify that we have no forward references left.  If so, there was a goto
1910   // or address of a label taken, but no definition of it.  Label fwd
1911   // definitions are indicated with a null substmt which is also not a resolved
1912   // MS inline assembly label name.
1913   bool Diagnose = false;
1914   if (L->isMSAsmLabel())
1915     Diagnose = !L->isResolvedMSAsmLabel();
1916   else
1917     Diagnose = L->getStmt() == nullptr;
1918   if (Diagnose)
1919     S.Diag(L->getLocation(), diag::err_undeclared_label_use) << L;
1920 }
1921 
1922 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1923   S->mergeNRVOIntoParent();
1924 
1925   if (S->decl_empty()) return;
1926   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1927          "Scope shouldn't contain decls!");
1928 
1929   for (auto *TmpD : S->decls()) {
1930     assert(TmpD && "This decl didn't get pushed??");
1931 
1932     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1933     NamedDecl *D = cast<NamedDecl>(TmpD);
1934 
1935     // Diagnose unused variables in this scope.
1936     if (!S->hasUnrecoverableErrorOccurred()) {
1937       DiagnoseUnusedDecl(D);
1938       if (const auto *RD = dyn_cast<RecordDecl>(D))
1939         DiagnoseUnusedNestedTypedefs(RD);
1940     }
1941 
1942     if (!D->getDeclName()) continue;
1943 
1944     // If this was a forward reference to a label, verify it was defined.
1945     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1946       CheckPoppedLabel(LD, *this);
1947 
1948     // Remove this name from our lexical scope, and warn on it if we haven't
1949     // already.
1950     IdResolver.RemoveDecl(D);
1951     auto ShadowI = ShadowingDecls.find(D);
1952     if (ShadowI != ShadowingDecls.end()) {
1953       if (const auto *FD = dyn_cast<FieldDecl>(ShadowI->second)) {
1954         Diag(D->getLocation(), diag::warn_ctor_parm_shadows_field)
1955             << D << FD << FD->getParent();
1956         Diag(FD->getLocation(), diag::note_previous_declaration);
1957       }
1958       ShadowingDecls.erase(ShadowI);
1959     }
1960   }
1961 }
1962 
1963 /// Look for an Objective-C class in the translation unit.
1964 ///
1965 /// \param Id The name of the Objective-C class we're looking for. If
1966 /// typo-correction fixes this name, the Id will be updated
1967 /// to the fixed name.
1968 ///
1969 /// \param IdLoc The location of the name in the translation unit.
1970 ///
1971 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1972 /// if there is no class with the given name.
1973 ///
1974 /// \returns The declaration of the named Objective-C class, or NULL if the
1975 /// class could not be found.
1976 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1977                                               SourceLocation IdLoc,
1978                                               bool DoTypoCorrection) {
1979   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1980   // creation from this context.
1981   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1982 
1983   if (!IDecl && DoTypoCorrection) {
1984     // Perform typo correction at the given location, but only if we
1985     // find an Objective-C class name.
1986     DeclFilterCCC<ObjCInterfaceDecl> CCC{};
1987     if (TypoCorrection C =
1988             CorrectTypo(DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName,
1989                         TUScope, nullptr, CCC, CTK_ErrorRecovery)) {
1990       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1991       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1992       Id = IDecl->getIdentifier();
1993     }
1994   }
1995   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1996   // This routine must always return a class definition, if any.
1997   if (Def && Def->getDefinition())
1998       Def = Def->getDefinition();
1999   return Def;
2000 }
2001 
2002 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
2003 /// from S, where a non-field would be declared. This routine copes
2004 /// with the difference between C and C++ scoping rules in structs and
2005 /// unions. For example, the following code is well-formed in C but
2006 /// ill-formed in C++:
2007 /// @code
2008 /// struct S6 {
2009 ///   enum { BAR } e;
2010 /// };
2011 ///
2012 /// void test_S6() {
2013 ///   struct S6 a;
2014 ///   a.e = BAR;
2015 /// }
2016 /// @endcode
2017 /// For the declaration of BAR, this routine will return a different
2018 /// scope. The scope S will be the scope of the unnamed enumeration
2019 /// within S6. In C++, this routine will return the scope associated
2020 /// with S6, because the enumeration's scope is a transparent
2021 /// context but structures can contain non-field names. In C, this
2022 /// routine will return the translation unit scope, since the
2023 /// enumeration's scope is a transparent context and structures cannot
2024 /// contain non-field names.
2025 Scope *Sema::getNonFieldDeclScope(Scope *S) {
2026   while (((S->getFlags() & Scope::DeclScope) == 0) ||
2027          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
2028          (S->isClassScope() && !getLangOpts().CPlusPlus))
2029     S = S->getParent();
2030   return S;
2031 }
2032 
2033 static StringRef getHeaderName(Builtin::Context &BuiltinInfo, unsigned ID,
2034                                ASTContext::GetBuiltinTypeError Error) {
2035   switch (Error) {
2036   case ASTContext::GE_None:
2037     return "";
2038   case ASTContext::GE_Missing_type:
2039     return BuiltinInfo.getHeaderName(ID);
2040   case ASTContext::GE_Missing_stdio:
2041     return "stdio.h";
2042   case ASTContext::GE_Missing_setjmp:
2043     return "setjmp.h";
2044   case ASTContext::GE_Missing_ucontext:
2045     return "ucontext.h";
2046   }
2047   llvm_unreachable("unhandled error kind");
2048 }
2049 
2050 FunctionDecl *Sema::CreateBuiltin(IdentifierInfo *II, QualType Type,
2051                                   unsigned ID, SourceLocation Loc) {
2052   DeclContext *Parent = Context.getTranslationUnitDecl();
2053 
2054   if (getLangOpts().CPlusPlus) {
2055     LinkageSpecDecl *CLinkageDecl = LinkageSpecDecl::Create(
2056         Context, Parent, Loc, Loc, LinkageSpecDecl::lang_c, false);
2057     CLinkageDecl->setImplicit();
2058     Parent->addDecl(CLinkageDecl);
2059     Parent = CLinkageDecl;
2060   }
2061 
2062   FunctionDecl *New = FunctionDecl::Create(Context, Parent, Loc, Loc, II, Type,
2063                                            /*TInfo=*/nullptr, SC_Extern, false,
2064                                            Type->isFunctionProtoType());
2065   New->setImplicit();
2066   New->addAttr(BuiltinAttr::CreateImplicit(Context, ID));
2067 
2068   // Create Decl objects for each parameter, adding them to the
2069   // FunctionDecl.
2070   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(Type)) {
2071     SmallVector<ParmVarDecl *, 16> Params;
2072     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
2073       ParmVarDecl *parm = ParmVarDecl::Create(
2074           Context, New, SourceLocation(), SourceLocation(), nullptr,
2075           FT->getParamType(i), /*TInfo=*/nullptr, SC_None, nullptr);
2076       parm->setScopeInfo(0, i);
2077       Params.push_back(parm);
2078     }
2079     New->setParams(Params);
2080   }
2081 
2082   AddKnownFunctionAttributes(New);
2083   return New;
2084 }
2085 
2086 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
2087 /// file scope.  lazily create a decl for it. ForRedeclaration is true
2088 /// if we're creating this built-in in anticipation of redeclaring the
2089 /// built-in.
2090 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
2091                                      Scope *S, bool ForRedeclaration,
2092                                      SourceLocation Loc) {
2093   LookupNecessaryTypesForBuiltin(S, ID);
2094 
2095   ASTContext::GetBuiltinTypeError Error;
2096   QualType R = Context.GetBuiltinType(ID, Error);
2097   if (Error) {
2098     if (!ForRedeclaration)
2099       return nullptr;
2100 
2101     // If we have a builtin without an associated type we should not emit a
2102     // warning when we were not able to find a type for it.
2103     if (Error == ASTContext::GE_Missing_type ||
2104         Context.BuiltinInfo.allowTypeMismatch(ID))
2105       return nullptr;
2106 
2107     // If we could not find a type for setjmp it is because the jmp_buf type was
2108     // not defined prior to the setjmp declaration.
2109     if (Error == ASTContext::GE_Missing_setjmp) {
2110       Diag(Loc, diag::warn_implicit_decl_no_jmp_buf)
2111           << Context.BuiltinInfo.getName(ID);
2112       return nullptr;
2113     }
2114 
2115     // Generally, we emit a warning that the declaration requires the
2116     // appropriate header.
2117     Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
2118         << getHeaderName(Context.BuiltinInfo, ID, Error)
2119         << Context.BuiltinInfo.getName(ID);
2120     return nullptr;
2121   }
2122 
2123   if (!ForRedeclaration &&
2124       (Context.BuiltinInfo.isPredefinedLibFunction(ID) ||
2125        Context.BuiltinInfo.isHeaderDependentFunction(ID))) {
2126     Diag(Loc, diag::ext_implicit_lib_function_decl)
2127         << Context.BuiltinInfo.getName(ID) << R;
2128     if (const char *Header = Context.BuiltinInfo.getHeaderName(ID))
2129       Diag(Loc, diag::note_include_header_or_declare)
2130           << Header << Context.BuiltinInfo.getName(ID);
2131   }
2132 
2133   if (R.isNull())
2134     return nullptr;
2135 
2136   FunctionDecl *New = CreateBuiltin(II, R, ID, Loc);
2137   RegisterLocallyScopedExternCDecl(New, S);
2138 
2139   // TUScope is the translation-unit scope to insert this function into.
2140   // FIXME: This is hideous. We need to teach PushOnScopeChains to
2141   // relate Scopes to DeclContexts, and probably eliminate CurContext
2142   // entirely, but we're not there yet.
2143   DeclContext *SavedContext = CurContext;
2144   CurContext = New->getDeclContext();
2145   PushOnScopeChains(New, TUScope);
2146   CurContext = SavedContext;
2147   return New;
2148 }
2149 
2150 /// Typedef declarations don't have linkage, but they still denote the same
2151 /// entity if their types are the same.
2152 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
2153 /// isSameEntity.
2154 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
2155                                                      TypedefNameDecl *Decl,
2156                                                      LookupResult &Previous) {
2157   // This is only interesting when modules are enabled.
2158   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
2159     return;
2160 
2161   // Empty sets are uninteresting.
2162   if (Previous.empty())
2163     return;
2164 
2165   LookupResult::Filter Filter = Previous.makeFilter();
2166   while (Filter.hasNext()) {
2167     NamedDecl *Old = Filter.next();
2168 
2169     // Non-hidden declarations are never ignored.
2170     if (S.isVisible(Old))
2171       continue;
2172 
2173     // Declarations of the same entity are not ignored, even if they have
2174     // different linkages.
2175     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2176       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
2177                                 Decl->getUnderlyingType()))
2178         continue;
2179 
2180       // If both declarations give a tag declaration a typedef name for linkage
2181       // purposes, then they declare the same entity.
2182       if (OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
2183           Decl->getAnonDeclWithTypedefName())
2184         continue;
2185     }
2186 
2187     Filter.erase();
2188   }
2189 
2190   Filter.done();
2191 }
2192 
2193 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
2194   QualType OldType;
2195   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
2196     OldType = OldTypedef->getUnderlyingType();
2197   else
2198     OldType = Context.getTypeDeclType(Old);
2199   QualType NewType = New->getUnderlyingType();
2200 
2201   if (NewType->isVariablyModifiedType()) {
2202     // Must not redefine a typedef with a variably-modified type.
2203     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2204     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
2205       << Kind << NewType;
2206     if (Old->getLocation().isValid())
2207       notePreviousDefinition(Old, New->getLocation());
2208     New->setInvalidDecl();
2209     return true;
2210   }
2211 
2212   if (OldType != NewType &&
2213       !OldType->isDependentType() &&
2214       !NewType->isDependentType() &&
2215       !Context.hasSameType(OldType, NewType)) {
2216     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
2217     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
2218       << Kind << NewType << OldType;
2219     if (Old->getLocation().isValid())
2220       notePreviousDefinition(Old, New->getLocation());
2221     New->setInvalidDecl();
2222     return true;
2223   }
2224   return false;
2225 }
2226 
2227 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
2228 /// same name and scope as a previous declaration 'Old'.  Figure out
2229 /// how to resolve this situation, merging decls or emitting
2230 /// diagnostics as appropriate. If there was an error, set New to be invalid.
2231 ///
2232 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
2233                                 LookupResult &OldDecls) {
2234   // If the new decl is known invalid already, don't bother doing any
2235   // merging checks.
2236   if (New->isInvalidDecl()) return;
2237 
2238   // Allow multiple definitions for ObjC built-in typedefs.
2239   // FIXME: Verify the underlying types are equivalent!
2240   if (getLangOpts().ObjC) {
2241     const IdentifierInfo *TypeID = New->getIdentifier();
2242     switch (TypeID->getLength()) {
2243     default: break;
2244     case 2:
2245       {
2246         if (!TypeID->isStr("id"))
2247           break;
2248         QualType T = New->getUnderlyingType();
2249         if (!T->isPointerType())
2250           break;
2251         if (!T->isVoidPointerType()) {
2252           QualType PT = T->castAs<PointerType>()->getPointeeType();
2253           if (!PT->isStructureType())
2254             break;
2255         }
2256         Context.setObjCIdRedefinitionType(T);
2257         // Install the built-in type for 'id', ignoring the current definition.
2258         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
2259         return;
2260       }
2261     case 5:
2262       if (!TypeID->isStr("Class"))
2263         break;
2264       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
2265       // Install the built-in type for 'Class', ignoring the current definition.
2266       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
2267       return;
2268     case 3:
2269       if (!TypeID->isStr("SEL"))
2270         break;
2271       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
2272       // Install the built-in type for 'SEL', ignoring the current definition.
2273       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
2274       return;
2275     }
2276     // Fall through - the typedef name was not a builtin type.
2277   }
2278 
2279   // Verify the old decl was also a type.
2280   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
2281   if (!Old) {
2282     Diag(New->getLocation(), diag::err_redefinition_different_kind)
2283       << New->getDeclName();
2284 
2285     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
2286     if (OldD->getLocation().isValid())
2287       notePreviousDefinition(OldD, New->getLocation());
2288 
2289     return New->setInvalidDecl();
2290   }
2291 
2292   // If the old declaration is invalid, just give up here.
2293   if (Old->isInvalidDecl())
2294     return New->setInvalidDecl();
2295 
2296   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
2297     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
2298     auto *NewTag = New->getAnonDeclWithTypedefName();
2299     NamedDecl *Hidden = nullptr;
2300     if (OldTag && NewTag &&
2301         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
2302         !hasVisibleDefinition(OldTag, &Hidden)) {
2303       // There is a definition of this tag, but it is not visible. Use it
2304       // instead of our tag.
2305       New->setTypeForDecl(OldTD->getTypeForDecl());
2306       if (OldTD->isModed())
2307         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
2308                                     OldTD->getUnderlyingType());
2309       else
2310         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
2311 
2312       // Make the old tag definition visible.
2313       makeMergedDefinitionVisible(Hidden);
2314 
2315       // If this was an unscoped enumeration, yank all of its enumerators
2316       // out of the scope.
2317       if (isa<EnumDecl>(NewTag)) {
2318         Scope *EnumScope = getNonFieldDeclScope(S);
2319         for (auto *D : NewTag->decls()) {
2320           auto *ED = cast<EnumConstantDecl>(D);
2321           assert(EnumScope->isDeclScope(ED));
2322           EnumScope->RemoveDecl(ED);
2323           IdResolver.RemoveDecl(ED);
2324           ED->getLexicalDeclContext()->removeDecl(ED);
2325         }
2326       }
2327     }
2328   }
2329 
2330   // If the typedef types are not identical, reject them in all languages and
2331   // with any extensions enabled.
2332   if (isIncompatibleTypedef(Old, New))
2333     return;
2334 
2335   // The types match.  Link up the redeclaration chain and merge attributes if
2336   // the old declaration was a typedef.
2337   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
2338     New->setPreviousDecl(Typedef);
2339     mergeDeclAttributes(New, Old);
2340   }
2341 
2342   if (getLangOpts().MicrosoftExt)
2343     return;
2344 
2345   if (getLangOpts().CPlusPlus) {
2346     // C++ [dcl.typedef]p2:
2347     //   In a given non-class scope, a typedef specifier can be used to
2348     //   redefine the name of any type declared in that scope to refer
2349     //   to the type to which it already refers.
2350     if (!isa<CXXRecordDecl>(CurContext))
2351       return;
2352 
2353     // C++0x [dcl.typedef]p4:
2354     //   In a given class scope, a typedef specifier can be used to redefine
2355     //   any class-name declared in that scope that is not also a typedef-name
2356     //   to refer to the type to which it already refers.
2357     //
2358     // This wording came in via DR424, which was a correction to the
2359     // wording in DR56, which accidentally banned code like:
2360     //
2361     //   struct S {
2362     //     typedef struct A { } A;
2363     //   };
2364     //
2365     // in the C++03 standard. We implement the C++0x semantics, which
2366     // allow the above but disallow
2367     //
2368     //   struct S {
2369     //     typedef int I;
2370     //     typedef int I;
2371     //   };
2372     //
2373     // since that was the intent of DR56.
2374     if (!isa<TypedefNameDecl>(Old))
2375       return;
2376 
2377     Diag(New->getLocation(), diag::err_redefinition)
2378       << New->getDeclName();
2379     notePreviousDefinition(Old, New->getLocation());
2380     return New->setInvalidDecl();
2381   }
2382 
2383   // Modules always permit redefinition of typedefs, as does C11.
2384   if (getLangOpts().Modules || getLangOpts().C11)
2385     return;
2386 
2387   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2388   // is normally mapped to an error, but can be controlled with
2389   // -Wtypedef-redefinition.  If either the original or the redefinition is
2390   // in a system header, don't emit this for compatibility with GCC.
2391   if (getDiagnostics().getSuppressSystemWarnings() &&
2392       // Some standard types are defined implicitly in Clang (e.g. OpenCL).
2393       (Old->isImplicit() ||
2394        Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2395        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2396     return;
2397 
2398   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2399     << New->getDeclName();
2400   notePreviousDefinition(Old, New->getLocation());
2401 }
2402 
2403 /// DeclhasAttr - returns true if decl Declaration already has the target
2404 /// attribute.
2405 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2406   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2407   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2408   for (const auto *i : D->attrs())
2409     if (i->getKind() == A->getKind()) {
2410       if (Ann) {
2411         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2412           return true;
2413         continue;
2414       }
2415       // FIXME: Don't hardcode this check
2416       if (OA && isa<OwnershipAttr>(i))
2417         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2418       return true;
2419     }
2420 
2421   return false;
2422 }
2423 
2424 static bool isAttributeTargetADefinition(Decl *D) {
2425   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2426     return VD->isThisDeclarationADefinition();
2427   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2428     return TD->isCompleteDefinition() || TD->isBeingDefined();
2429   return true;
2430 }
2431 
2432 /// Merge alignment attributes from \p Old to \p New, taking into account the
2433 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2434 ///
2435 /// \return \c true if any attributes were added to \p New.
2436 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2437   // Look for alignas attributes on Old, and pick out whichever attribute
2438   // specifies the strictest alignment requirement.
2439   AlignedAttr *OldAlignasAttr = nullptr;
2440   AlignedAttr *OldStrictestAlignAttr = nullptr;
2441   unsigned OldAlign = 0;
2442   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2443     // FIXME: We have no way of representing inherited dependent alignments
2444     // in a case like:
2445     //   template<int A, int B> struct alignas(A) X;
2446     //   template<int A, int B> struct alignas(B) X {};
2447     // For now, we just ignore any alignas attributes which are not on the
2448     // definition in such a case.
2449     if (I->isAlignmentDependent())
2450       return false;
2451 
2452     if (I->isAlignas())
2453       OldAlignasAttr = I;
2454 
2455     unsigned Align = I->getAlignment(S.Context);
2456     if (Align > OldAlign) {
2457       OldAlign = Align;
2458       OldStrictestAlignAttr = I;
2459     }
2460   }
2461 
2462   // Look for alignas attributes on New.
2463   AlignedAttr *NewAlignasAttr = nullptr;
2464   unsigned NewAlign = 0;
2465   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2466     if (I->isAlignmentDependent())
2467       return false;
2468 
2469     if (I->isAlignas())
2470       NewAlignasAttr = I;
2471 
2472     unsigned Align = I->getAlignment(S.Context);
2473     if (Align > NewAlign)
2474       NewAlign = Align;
2475   }
2476 
2477   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2478     // Both declarations have 'alignas' attributes. We require them to match.
2479     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2480     // fall short. (If two declarations both have alignas, they must both match
2481     // every definition, and so must match each other if there is a definition.)
2482 
2483     // If either declaration only contains 'alignas(0)' specifiers, then it
2484     // specifies the natural alignment for the type.
2485     if (OldAlign == 0 || NewAlign == 0) {
2486       QualType Ty;
2487       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2488         Ty = VD->getType();
2489       else
2490         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2491 
2492       if (OldAlign == 0)
2493         OldAlign = S.Context.getTypeAlign(Ty);
2494       if (NewAlign == 0)
2495         NewAlign = S.Context.getTypeAlign(Ty);
2496     }
2497 
2498     if (OldAlign != NewAlign) {
2499       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2500         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2501         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2502       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2503     }
2504   }
2505 
2506   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2507     // C++11 [dcl.align]p6:
2508     //   if any declaration of an entity has an alignment-specifier,
2509     //   every defining declaration of that entity shall specify an
2510     //   equivalent alignment.
2511     // C11 6.7.5/7:
2512     //   If the definition of an object does not have an alignment
2513     //   specifier, any other declaration of that object shall also
2514     //   have no alignment specifier.
2515     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2516       << OldAlignasAttr;
2517     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2518       << OldAlignasAttr;
2519   }
2520 
2521   bool AnyAdded = false;
2522 
2523   // Ensure we have an attribute representing the strictest alignment.
2524   if (OldAlign > NewAlign) {
2525     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2526     Clone->setInherited(true);
2527     New->addAttr(Clone);
2528     AnyAdded = true;
2529   }
2530 
2531   // Ensure we have an alignas attribute if the old declaration had one.
2532   if (OldAlignasAttr && !NewAlignasAttr &&
2533       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2534     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2535     Clone->setInherited(true);
2536     New->addAttr(Clone);
2537     AnyAdded = true;
2538   }
2539 
2540   return AnyAdded;
2541 }
2542 
2543 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2544                                const InheritableAttr *Attr,
2545                                Sema::AvailabilityMergeKind AMK) {
2546   // This function copies an attribute Attr from a previous declaration to the
2547   // new declaration D if the new declaration doesn't itself have that attribute
2548   // yet or if that attribute allows duplicates.
2549   // If you're adding a new attribute that requires logic different from
2550   // "use explicit attribute on decl if present, else use attribute from
2551   // previous decl", for example if the attribute needs to be consistent
2552   // between redeclarations, you need to call a custom merge function here.
2553   InheritableAttr *NewAttr = nullptr;
2554   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2555     NewAttr = S.mergeAvailabilityAttr(
2556         D, *AA, AA->getPlatform(), AA->isImplicit(), AA->getIntroduced(),
2557         AA->getDeprecated(), AA->getObsoleted(), AA->getUnavailable(),
2558         AA->getMessage(), AA->getStrict(), AA->getReplacement(), AMK,
2559         AA->getPriority());
2560   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2561     NewAttr = S.mergeVisibilityAttr(D, *VA, VA->getVisibility());
2562   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2563     NewAttr = S.mergeTypeVisibilityAttr(D, *VA, VA->getVisibility());
2564   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2565     NewAttr = S.mergeDLLImportAttr(D, *ImportA);
2566   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2567     NewAttr = S.mergeDLLExportAttr(D, *ExportA);
2568   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2569     NewAttr = S.mergeFormatAttr(D, *FA, FA->getType(), FA->getFormatIdx(),
2570                                 FA->getFirstArg());
2571   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2572     NewAttr = S.mergeSectionAttr(D, *SA, SA->getName());
2573   else if (const auto *CSA = dyn_cast<CodeSegAttr>(Attr))
2574     NewAttr = S.mergeCodeSegAttr(D, *CSA, CSA->getName());
2575   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2576     NewAttr = S.mergeMSInheritanceAttr(D, *IA, IA->getBestCase(),
2577                                        IA->getInheritanceModel());
2578   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2579     NewAttr = S.mergeAlwaysInlineAttr(D, *AA,
2580                                       &S.Context.Idents.get(AA->getSpelling()));
2581   else if (S.getLangOpts().CUDA && isa<FunctionDecl>(D) &&
2582            (isa<CUDAHostAttr>(Attr) || isa<CUDADeviceAttr>(Attr) ||
2583             isa<CUDAGlobalAttr>(Attr))) {
2584     // CUDA target attributes are part of function signature for
2585     // overloading purposes and must not be merged.
2586     return false;
2587   } else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2588     NewAttr = S.mergeMinSizeAttr(D, *MA);
2589   else if (const auto *SNA = dyn_cast<SwiftNameAttr>(Attr))
2590     NewAttr = S.mergeSwiftNameAttr(D, *SNA, SNA->getName());
2591   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2592     NewAttr = S.mergeOptimizeNoneAttr(D, *OA);
2593   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2594     NewAttr = S.mergeInternalLinkageAttr(D, *InternalLinkageA);
2595   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2596     NewAttr = S.mergeCommonAttr(D, *CommonA);
2597   else if (isa<AlignedAttr>(Attr))
2598     // AlignedAttrs are handled separately, because we need to handle all
2599     // such attributes on a declaration at the same time.
2600     NewAttr = nullptr;
2601   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2602            (AMK == Sema::AMK_Override ||
2603             AMK == Sema::AMK_ProtocolImplementation))
2604     NewAttr = nullptr;
2605   else if (const auto *UA = dyn_cast<UuidAttr>(Attr))
2606     NewAttr = S.mergeUuidAttr(D, *UA, UA->getGuid(), UA->getGuidDecl());
2607   else if (const auto *SLHA = dyn_cast<SpeculativeLoadHardeningAttr>(Attr))
2608     NewAttr = S.mergeSpeculativeLoadHardeningAttr(D, *SLHA);
2609   else if (const auto *SLHA = dyn_cast<NoSpeculativeLoadHardeningAttr>(Attr))
2610     NewAttr = S.mergeNoSpeculativeLoadHardeningAttr(D, *SLHA);
2611   else if (const auto *IMA = dyn_cast<WebAssemblyImportModuleAttr>(Attr))
2612     NewAttr = S.mergeImportModuleAttr(D, *IMA);
2613   else if (const auto *INA = dyn_cast<WebAssemblyImportNameAttr>(Attr))
2614     NewAttr = S.mergeImportNameAttr(D, *INA);
2615   else if (const auto *TCBA = dyn_cast<EnforceTCBAttr>(Attr))
2616     NewAttr = S.mergeEnforceTCBAttr(D, *TCBA);
2617   else if (const auto *TCBLA = dyn_cast<EnforceTCBLeafAttr>(Attr))
2618     NewAttr = S.mergeEnforceTCBLeafAttr(D, *TCBLA);
2619   else if (Attr->shouldInheritEvenIfAlreadyPresent() || !DeclHasAttr(D, Attr))
2620     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2621 
2622   if (NewAttr) {
2623     NewAttr->setInherited(true);
2624     D->addAttr(NewAttr);
2625     if (isa<MSInheritanceAttr>(NewAttr))
2626       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2627     return true;
2628   }
2629 
2630   return false;
2631 }
2632 
2633 static const NamedDecl *getDefinition(const Decl *D) {
2634   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2635     return TD->getDefinition();
2636   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2637     const VarDecl *Def = VD->getDefinition();
2638     if (Def)
2639       return Def;
2640     return VD->getActingDefinition();
2641   }
2642   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2643     const FunctionDecl *Def = nullptr;
2644     if (FD->isDefined(Def, true))
2645       return Def;
2646   }
2647   return nullptr;
2648 }
2649 
2650 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2651   for (const auto *Attribute : D->attrs())
2652     if (Attribute->getKind() == Kind)
2653       return true;
2654   return false;
2655 }
2656 
2657 /// checkNewAttributesAfterDef - If we already have a definition, check that
2658 /// there are no new attributes in this declaration.
2659 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2660   if (!New->hasAttrs())
2661     return;
2662 
2663   const NamedDecl *Def = getDefinition(Old);
2664   if (!Def || Def == New)
2665     return;
2666 
2667   AttrVec &NewAttributes = New->getAttrs();
2668   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2669     const Attr *NewAttribute = NewAttributes[I];
2670 
2671     if (isa<AliasAttr>(NewAttribute) || isa<IFuncAttr>(NewAttribute)) {
2672       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2673         Sema::SkipBodyInfo SkipBody;
2674         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2675 
2676         // If we're skipping this definition, drop the "alias" attribute.
2677         if (SkipBody.ShouldSkip) {
2678           NewAttributes.erase(NewAttributes.begin() + I);
2679           --E;
2680           continue;
2681         }
2682       } else {
2683         VarDecl *VD = cast<VarDecl>(New);
2684         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2685                                 VarDecl::TentativeDefinition
2686                             ? diag::err_alias_after_tentative
2687                             : diag::err_redefinition;
2688         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2689         if (Diag == diag::err_redefinition)
2690           S.notePreviousDefinition(Def, VD->getLocation());
2691         else
2692           S.Diag(Def->getLocation(), diag::note_previous_definition);
2693         VD->setInvalidDecl();
2694       }
2695       ++I;
2696       continue;
2697     }
2698 
2699     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2700       // Tentative definitions are only interesting for the alias check above.
2701       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2702         ++I;
2703         continue;
2704       }
2705     }
2706 
2707     if (hasAttribute(Def, NewAttribute->getKind())) {
2708       ++I;
2709       continue; // regular attr merging will take care of validating this.
2710     }
2711 
2712     if (isa<C11NoReturnAttr>(NewAttribute)) {
2713       // C's _Noreturn is allowed to be added to a function after it is defined.
2714       ++I;
2715       continue;
2716     } else if (isa<UuidAttr>(NewAttribute)) {
2717       // msvc will allow a subsequent definition to add an uuid to a class
2718       ++I;
2719       continue;
2720     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2721       if (AA->isAlignas()) {
2722         // C++11 [dcl.align]p6:
2723         //   if any declaration of an entity has an alignment-specifier,
2724         //   every defining declaration of that entity shall specify an
2725         //   equivalent alignment.
2726         // C11 6.7.5/7:
2727         //   If the definition of an object does not have an alignment
2728         //   specifier, any other declaration of that object shall also
2729         //   have no alignment specifier.
2730         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2731           << AA;
2732         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2733           << AA;
2734         NewAttributes.erase(NewAttributes.begin() + I);
2735         --E;
2736         continue;
2737       }
2738     } else if (isa<LoaderUninitializedAttr>(NewAttribute)) {
2739       // If there is a C definition followed by a redeclaration with this
2740       // attribute then there are two different definitions. In C++, prefer the
2741       // standard diagnostics.
2742       if (!S.getLangOpts().CPlusPlus) {
2743         S.Diag(NewAttribute->getLocation(),
2744                diag::err_loader_uninitialized_redeclaration);
2745         S.Diag(Def->getLocation(), diag::note_previous_definition);
2746         NewAttributes.erase(NewAttributes.begin() + I);
2747         --E;
2748         continue;
2749       }
2750     } else if (isa<SelectAnyAttr>(NewAttribute) &&
2751                cast<VarDecl>(New)->isInline() &&
2752                !cast<VarDecl>(New)->isInlineSpecified()) {
2753       // Don't warn about applying selectany to implicitly inline variables.
2754       // Older compilers and language modes would require the use of selectany
2755       // to make such variables inline, and it would have no effect if we
2756       // honored it.
2757       ++I;
2758       continue;
2759     } else if (isa<OMPDeclareVariantAttr>(NewAttribute)) {
2760       // We allow to add OMP[Begin]DeclareVariantAttr to be added to
2761       // declarations after defintions.
2762       ++I;
2763       continue;
2764     }
2765 
2766     S.Diag(NewAttribute->getLocation(),
2767            diag::warn_attribute_precede_definition);
2768     S.Diag(Def->getLocation(), diag::note_previous_definition);
2769     NewAttributes.erase(NewAttributes.begin() + I);
2770     --E;
2771   }
2772 }
2773 
2774 static void diagnoseMissingConstinit(Sema &S, const VarDecl *InitDecl,
2775                                      const ConstInitAttr *CIAttr,
2776                                      bool AttrBeforeInit) {
2777   SourceLocation InsertLoc = InitDecl->getInnerLocStart();
2778 
2779   // Figure out a good way to write this specifier on the old declaration.
2780   // FIXME: We should just use the spelling of CIAttr, but we don't preserve
2781   // enough of the attribute list spelling information to extract that without
2782   // heroics.
2783   std::string SuitableSpelling;
2784   if (S.getLangOpts().CPlusPlus20)
2785     SuitableSpelling = std::string(
2786         S.PP.getLastMacroWithSpelling(InsertLoc, {tok::kw_constinit}));
2787   if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus11)
2788     SuitableSpelling = std::string(S.PP.getLastMacroWithSpelling(
2789         InsertLoc, {tok::l_square, tok::l_square,
2790                     S.PP.getIdentifierInfo("clang"), tok::coloncolon,
2791                     S.PP.getIdentifierInfo("require_constant_initialization"),
2792                     tok::r_square, tok::r_square}));
2793   if (SuitableSpelling.empty())
2794     SuitableSpelling = std::string(S.PP.getLastMacroWithSpelling(
2795         InsertLoc, {tok::kw___attribute, tok::l_paren, tok::r_paren,
2796                     S.PP.getIdentifierInfo("require_constant_initialization"),
2797                     tok::r_paren, tok::r_paren}));
2798   if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus20)
2799     SuitableSpelling = "constinit";
2800   if (SuitableSpelling.empty() && S.getLangOpts().CPlusPlus11)
2801     SuitableSpelling = "[[clang::require_constant_initialization]]";
2802   if (SuitableSpelling.empty())
2803     SuitableSpelling = "__attribute__((require_constant_initialization))";
2804   SuitableSpelling += " ";
2805 
2806   if (AttrBeforeInit) {
2807     // extern constinit int a;
2808     // int a = 0; // error (missing 'constinit'), accepted as extension
2809     assert(CIAttr->isConstinit() && "should not diagnose this for attribute");
2810     S.Diag(InitDecl->getLocation(), diag::ext_constinit_missing)
2811         << InitDecl << FixItHint::CreateInsertion(InsertLoc, SuitableSpelling);
2812     S.Diag(CIAttr->getLocation(), diag::note_constinit_specified_here);
2813   } else {
2814     // int a = 0;
2815     // constinit extern int a; // error (missing 'constinit')
2816     S.Diag(CIAttr->getLocation(),
2817            CIAttr->isConstinit() ? diag::err_constinit_added_too_late
2818                                  : diag::warn_require_const_init_added_too_late)
2819         << FixItHint::CreateRemoval(SourceRange(CIAttr->getLocation()));
2820     S.Diag(InitDecl->getLocation(), diag::note_constinit_missing_here)
2821         << CIAttr->isConstinit()
2822         << FixItHint::CreateInsertion(InsertLoc, SuitableSpelling);
2823   }
2824 }
2825 
2826 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2827 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2828                                AvailabilityMergeKind AMK) {
2829   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2830     UsedAttr *NewAttr = OldAttr->clone(Context);
2831     NewAttr->setInherited(true);
2832     New->addAttr(NewAttr);
2833   }
2834 
2835   if (!Old->hasAttrs() && !New->hasAttrs())
2836     return;
2837 
2838   // [dcl.constinit]p1:
2839   //   If the [constinit] specifier is applied to any declaration of a
2840   //   variable, it shall be applied to the initializing declaration.
2841   const auto *OldConstInit = Old->getAttr<ConstInitAttr>();
2842   const auto *NewConstInit = New->getAttr<ConstInitAttr>();
2843   if (bool(OldConstInit) != bool(NewConstInit)) {
2844     const auto *OldVD = cast<VarDecl>(Old);
2845     auto *NewVD = cast<VarDecl>(New);
2846 
2847     // Find the initializing declaration. Note that we might not have linked
2848     // the new declaration into the redeclaration chain yet.
2849     const VarDecl *InitDecl = OldVD->getInitializingDeclaration();
2850     if (!InitDecl &&
2851         (NewVD->hasInit() || NewVD->isThisDeclarationADefinition()))
2852       InitDecl = NewVD;
2853 
2854     if (InitDecl == NewVD) {
2855       // This is the initializing declaration. If it would inherit 'constinit',
2856       // that's ill-formed. (Note that we do not apply this to the attribute
2857       // form).
2858       if (OldConstInit && OldConstInit->isConstinit())
2859         diagnoseMissingConstinit(*this, NewVD, OldConstInit,
2860                                  /*AttrBeforeInit=*/true);
2861     } else if (NewConstInit) {
2862       // This is the first time we've been told that this declaration should
2863       // have a constant initializer. If we already saw the initializing
2864       // declaration, this is too late.
2865       if (InitDecl && InitDecl != NewVD) {
2866         diagnoseMissingConstinit(*this, InitDecl, NewConstInit,
2867                                  /*AttrBeforeInit=*/false);
2868         NewVD->dropAttr<ConstInitAttr>();
2869       }
2870     }
2871   }
2872 
2873   // Attributes declared post-definition are currently ignored.
2874   checkNewAttributesAfterDef(*this, New, Old);
2875 
2876   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2877     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2878       if (!OldA->isEquivalent(NewA)) {
2879         // This redeclaration changes __asm__ label.
2880         Diag(New->getLocation(), diag::err_different_asm_label);
2881         Diag(OldA->getLocation(), diag::note_previous_declaration);
2882       }
2883     } else if (Old->isUsed()) {
2884       // This redeclaration adds an __asm__ label to a declaration that has
2885       // already been ODR-used.
2886       Diag(New->getLocation(), diag::err_late_asm_label_name)
2887         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2888     }
2889   }
2890 
2891   // Re-declaration cannot add abi_tag's.
2892   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2893     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2894       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2895         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2896                       NewTag) == OldAbiTagAttr->tags_end()) {
2897           Diag(NewAbiTagAttr->getLocation(),
2898                diag::err_new_abi_tag_on_redeclaration)
2899               << NewTag;
2900           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2901         }
2902       }
2903     } else {
2904       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2905       Diag(Old->getLocation(), diag::note_previous_declaration);
2906     }
2907   }
2908 
2909   // This redeclaration adds a section attribute.
2910   if (New->hasAttr<SectionAttr>() && !Old->hasAttr<SectionAttr>()) {
2911     if (auto *VD = dyn_cast<VarDecl>(New)) {
2912       if (VD->isThisDeclarationADefinition() == VarDecl::DeclarationOnly) {
2913         Diag(New->getLocation(), diag::warn_attribute_section_on_redeclaration);
2914         Diag(Old->getLocation(), diag::note_previous_declaration);
2915       }
2916     }
2917   }
2918 
2919   // Redeclaration adds code-seg attribute.
2920   const auto *NewCSA = New->getAttr<CodeSegAttr>();
2921   if (NewCSA && !Old->hasAttr<CodeSegAttr>() &&
2922       !NewCSA->isImplicit() && isa<CXXMethodDecl>(New)) {
2923     Diag(New->getLocation(), diag::warn_mismatched_section)
2924          << 0 /*codeseg*/;
2925     Diag(Old->getLocation(), diag::note_previous_declaration);
2926   }
2927 
2928   if (!Old->hasAttrs())
2929     return;
2930 
2931   bool foundAny = New->hasAttrs();
2932 
2933   // Ensure that any moving of objects within the allocated map is done before
2934   // we process them.
2935   if (!foundAny) New->setAttrs(AttrVec());
2936 
2937   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2938     // Ignore deprecated/unavailable/availability attributes if requested.
2939     AvailabilityMergeKind LocalAMK = AMK_None;
2940     if (isa<DeprecatedAttr>(I) ||
2941         isa<UnavailableAttr>(I) ||
2942         isa<AvailabilityAttr>(I)) {
2943       switch (AMK) {
2944       case AMK_None:
2945         continue;
2946 
2947       case AMK_Redeclaration:
2948       case AMK_Override:
2949       case AMK_ProtocolImplementation:
2950         LocalAMK = AMK;
2951         break;
2952       }
2953     }
2954 
2955     // Already handled.
2956     if (isa<UsedAttr>(I))
2957       continue;
2958 
2959     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2960       foundAny = true;
2961   }
2962 
2963   if (mergeAlignedAttrs(*this, New, Old))
2964     foundAny = true;
2965 
2966   if (!foundAny) New->dropAttrs();
2967 }
2968 
2969 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2970 /// to the new one.
2971 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2972                                      const ParmVarDecl *oldDecl,
2973                                      Sema &S) {
2974   // C++11 [dcl.attr.depend]p2:
2975   //   The first declaration of a function shall specify the
2976   //   carries_dependency attribute for its declarator-id if any declaration
2977   //   of the function specifies the carries_dependency attribute.
2978   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2979   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2980     S.Diag(CDA->getLocation(),
2981            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2982     // Find the first declaration of the parameter.
2983     // FIXME: Should we build redeclaration chains for function parameters?
2984     const FunctionDecl *FirstFD =
2985       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2986     const ParmVarDecl *FirstVD =
2987       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2988     S.Diag(FirstVD->getLocation(),
2989            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2990   }
2991 
2992   if (!oldDecl->hasAttrs())
2993     return;
2994 
2995   bool foundAny = newDecl->hasAttrs();
2996 
2997   // Ensure that any moving of objects within the allocated map is
2998   // done before we process them.
2999   if (!foundAny) newDecl->setAttrs(AttrVec());
3000 
3001   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
3002     if (!DeclHasAttr(newDecl, I)) {
3003       InheritableAttr *newAttr =
3004         cast<InheritableParamAttr>(I->clone(S.Context));
3005       newAttr->setInherited(true);
3006       newDecl->addAttr(newAttr);
3007       foundAny = true;
3008     }
3009   }
3010 
3011   if (!foundAny) newDecl->dropAttrs();
3012 }
3013 
3014 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
3015                                 const ParmVarDecl *OldParam,
3016                                 Sema &S) {
3017   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
3018     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
3019       if (*Oldnullability != *Newnullability) {
3020         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
3021           << DiagNullabilityKind(
3022                *Newnullability,
3023                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
3024                 != 0))
3025           << DiagNullabilityKind(
3026                *Oldnullability,
3027                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
3028                 != 0));
3029         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
3030       }
3031     } else {
3032       QualType NewT = NewParam->getType();
3033       NewT = S.Context.getAttributedType(
3034                          AttributedType::getNullabilityAttrKind(*Oldnullability),
3035                          NewT, NewT);
3036       NewParam->setType(NewT);
3037     }
3038   }
3039 }
3040 
3041 namespace {
3042 
3043 /// Used in MergeFunctionDecl to keep track of function parameters in
3044 /// C.
3045 struct GNUCompatibleParamWarning {
3046   ParmVarDecl *OldParm;
3047   ParmVarDecl *NewParm;
3048   QualType PromotedType;
3049 };
3050 
3051 } // end anonymous namespace
3052 
3053 // Determine whether the previous declaration was a definition, implicit
3054 // declaration, or a declaration.
3055 template <typename T>
3056 static std::pair<diag::kind, SourceLocation>
3057 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
3058   diag::kind PrevDiag;
3059   SourceLocation OldLocation = Old->getLocation();
3060   if (Old->isThisDeclarationADefinition())
3061     PrevDiag = diag::note_previous_definition;
3062   else if (Old->isImplicit()) {
3063     PrevDiag = diag::note_previous_implicit_declaration;
3064     if (OldLocation.isInvalid())
3065       OldLocation = New->getLocation();
3066   } else
3067     PrevDiag = diag::note_previous_declaration;
3068   return std::make_pair(PrevDiag, OldLocation);
3069 }
3070 
3071 /// canRedefineFunction - checks if a function can be redefined. Currently,
3072 /// only extern inline functions can be redefined, and even then only in
3073 /// GNU89 mode.
3074 static bool canRedefineFunction(const FunctionDecl *FD,
3075                                 const LangOptions& LangOpts) {
3076   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
3077           !LangOpts.CPlusPlus &&
3078           FD->isInlineSpecified() &&
3079           FD->getStorageClass() == SC_Extern);
3080 }
3081 
3082 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
3083   const AttributedType *AT = T->getAs<AttributedType>();
3084   while (AT && !AT->isCallingConv())
3085     AT = AT->getModifiedType()->getAs<AttributedType>();
3086   return AT;
3087 }
3088 
3089 template <typename T>
3090 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
3091   const DeclContext *DC = Old->getDeclContext();
3092   if (DC->isRecord())
3093     return false;
3094 
3095   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
3096   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
3097     return true;
3098   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
3099     return true;
3100   return false;
3101 }
3102 
3103 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
3104 static bool isExternC(VarTemplateDecl *) { return false; }
3105 
3106 /// Check whether a redeclaration of an entity introduced by a
3107 /// using-declaration is valid, given that we know it's not an overload
3108 /// (nor a hidden tag declaration).
3109 template<typename ExpectedDecl>
3110 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
3111                                    ExpectedDecl *New) {
3112   // C++11 [basic.scope.declarative]p4:
3113   //   Given a set of declarations in a single declarative region, each of
3114   //   which specifies the same unqualified name,
3115   //   -- they shall all refer to the same entity, or all refer to functions
3116   //      and function templates; or
3117   //   -- exactly one declaration shall declare a class name or enumeration
3118   //      name that is not a typedef name and the other declarations shall all
3119   //      refer to the same variable or enumerator, or all refer to functions
3120   //      and function templates; in this case the class name or enumeration
3121   //      name is hidden (3.3.10).
3122 
3123   // C++11 [namespace.udecl]p14:
3124   //   If a function declaration in namespace scope or block scope has the
3125   //   same name and the same parameter-type-list as a function introduced
3126   //   by a using-declaration, and the declarations do not declare the same
3127   //   function, the program is ill-formed.
3128 
3129   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
3130   if (Old &&
3131       !Old->getDeclContext()->getRedeclContext()->Equals(
3132           New->getDeclContext()->getRedeclContext()) &&
3133       !(isExternC(Old) && isExternC(New)))
3134     Old = nullptr;
3135 
3136   if (!Old) {
3137     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
3138     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
3139     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
3140     return true;
3141   }
3142   return false;
3143 }
3144 
3145 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
3146                                             const FunctionDecl *B) {
3147   assert(A->getNumParams() == B->getNumParams());
3148 
3149   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
3150     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
3151     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
3152     if (AttrA == AttrB)
3153       return true;
3154     return AttrA && AttrB && AttrA->getType() == AttrB->getType() &&
3155            AttrA->isDynamic() == AttrB->isDynamic();
3156   };
3157 
3158   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
3159 }
3160 
3161 /// If necessary, adjust the semantic declaration context for a qualified
3162 /// declaration to name the correct inline namespace within the qualifier.
3163 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD,
3164                                                DeclaratorDecl *OldD) {
3165   // The only case where we need to update the DeclContext is when
3166   // redeclaration lookup for a qualified name finds a declaration
3167   // in an inline namespace within the context named by the qualifier:
3168   //
3169   //   inline namespace N { int f(); }
3170   //   int ::f(); // Sema DC needs adjusting from :: to N::.
3171   //
3172   // For unqualified declarations, the semantic context *can* change
3173   // along the redeclaration chain (for local extern declarations,
3174   // extern "C" declarations, and friend declarations in particular).
3175   if (!NewD->getQualifier())
3176     return;
3177 
3178   // NewD is probably already in the right context.
3179   auto *NamedDC = NewD->getDeclContext()->getRedeclContext();
3180   auto *SemaDC = OldD->getDeclContext()->getRedeclContext();
3181   if (NamedDC->Equals(SemaDC))
3182     return;
3183 
3184   assert((NamedDC->InEnclosingNamespaceSetOf(SemaDC) ||
3185           NewD->isInvalidDecl() || OldD->isInvalidDecl()) &&
3186          "unexpected context for redeclaration");
3187 
3188   auto *LexDC = NewD->getLexicalDeclContext();
3189   auto FixSemaDC = [=](NamedDecl *D) {
3190     if (!D)
3191       return;
3192     D->setDeclContext(SemaDC);
3193     D->setLexicalDeclContext(LexDC);
3194   };
3195 
3196   FixSemaDC(NewD);
3197   if (auto *FD = dyn_cast<FunctionDecl>(NewD))
3198     FixSemaDC(FD->getDescribedFunctionTemplate());
3199   else if (auto *VD = dyn_cast<VarDecl>(NewD))
3200     FixSemaDC(VD->getDescribedVarTemplate());
3201 }
3202 
3203 /// MergeFunctionDecl - We just parsed a function 'New' from
3204 /// declarator D which has the same name and scope as a previous
3205 /// declaration 'Old'.  Figure out how to resolve this situation,
3206 /// merging decls or emitting diagnostics as appropriate.
3207 ///
3208 /// In C++, New and Old must be declarations that are not
3209 /// overloaded. Use IsOverload to determine whether New and Old are
3210 /// overloaded, and to select the Old declaration that New should be
3211 /// merged with.
3212 ///
3213 /// Returns true if there was an error, false otherwise.
3214 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
3215                              Scope *S, bool MergeTypeWithOld) {
3216   // Verify the old decl was also a function.
3217   FunctionDecl *Old = OldD->getAsFunction();
3218   if (!Old) {
3219     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
3220       if (New->getFriendObjectKind()) {
3221         Diag(New->getLocation(), diag::err_using_decl_friend);
3222         Diag(Shadow->getTargetDecl()->getLocation(),
3223              diag::note_using_decl_target);
3224         Diag(Shadow->getUsingDecl()->getLocation(),
3225              diag::note_using_decl) << 0;
3226         return true;
3227       }
3228 
3229       // Check whether the two declarations might declare the same function.
3230       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
3231         return true;
3232       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
3233     } else {
3234       Diag(New->getLocation(), diag::err_redefinition_different_kind)
3235         << New->getDeclName();
3236       notePreviousDefinition(OldD, New->getLocation());
3237       return true;
3238     }
3239   }
3240 
3241   // If the old declaration was found in an inline namespace and the new
3242   // declaration was qualified, update the DeclContext to match.
3243   adjustDeclContextForDeclaratorDecl(New, Old);
3244 
3245   // If the old declaration is invalid, just give up here.
3246   if (Old->isInvalidDecl())
3247     return true;
3248 
3249   // Disallow redeclaration of some builtins.
3250   if (!getASTContext().canBuiltinBeRedeclared(Old)) {
3251     Diag(New->getLocation(), diag::err_builtin_redeclare) << Old->getDeclName();
3252     Diag(Old->getLocation(), diag::note_previous_builtin_declaration)
3253         << Old << Old->getType();
3254     return true;
3255   }
3256 
3257   diag::kind PrevDiag;
3258   SourceLocation OldLocation;
3259   std::tie(PrevDiag, OldLocation) =
3260       getNoteDiagForInvalidRedeclaration(Old, New);
3261 
3262   // Don't complain about this if we're in GNU89 mode and the old function
3263   // is an extern inline function.
3264   // Don't complain about specializations. They are not supposed to have
3265   // storage classes.
3266   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
3267       New->getStorageClass() == SC_Static &&
3268       Old->hasExternalFormalLinkage() &&
3269       !New->getTemplateSpecializationInfo() &&
3270       !canRedefineFunction(Old, getLangOpts())) {
3271     if (getLangOpts().MicrosoftExt) {
3272       Diag(New->getLocation(), diag::ext_static_non_static) << New;
3273       Diag(OldLocation, PrevDiag);
3274     } else {
3275       Diag(New->getLocation(), diag::err_static_non_static) << New;
3276       Diag(OldLocation, PrevDiag);
3277       return true;
3278     }
3279   }
3280 
3281   if (New->hasAttr<InternalLinkageAttr>() &&
3282       !Old->hasAttr<InternalLinkageAttr>()) {
3283     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3284         << New->getDeclName();
3285     notePreviousDefinition(Old, New->getLocation());
3286     New->dropAttr<InternalLinkageAttr>();
3287   }
3288 
3289   if (CheckRedeclarationModuleOwnership(New, Old))
3290     return true;
3291 
3292   if (!getLangOpts().CPlusPlus) {
3293     bool OldOvl = Old->hasAttr<OverloadableAttr>();
3294     if (OldOvl != New->hasAttr<OverloadableAttr>() && !Old->isImplicit()) {
3295       Diag(New->getLocation(), diag::err_attribute_overloadable_mismatch)
3296         << New << OldOvl;
3297 
3298       // Try our best to find a decl that actually has the overloadable
3299       // attribute for the note. In most cases (e.g. programs with only one
3300       // broken declaration/definition), this won't matter.
3301       //
3302       // FIXME: We could do this if we juggled some extra state in
3303       // OverloadableAttr, rather than just removing it.
3304       const Decl *DiagOld = Old;
3305       if (OldOvl) {
3306         auto OldIter = llvm::find_if(Old->redecls(), [](const Decl *D) {
3307           const auto *A = D->getAttr<OverloadableAttr>();
3308           return A && !A->isImplicit();
3309         });
3310         // If we've implicitly added *all* of the overloadable attrs to this
3311         // chain, emitting a "previous redecl" note is pointless.
3312         DiagOld = OldIter == Old->redecls_end() ? nullptr : *OldIter;
3313       }
3314 
3315       if (DiagOld)
3316         Diag(DiagOld->getLocation(),
3317              diag::note_attribute_overloadable_prev_overload)
3318           << OldOvl;
3319 
3320       if (OldOvl)
3321         New->addAttr(OverloadableAttr::CreateImplicit(Context));
3322       else
3323         New->dropAttr<OverloadableAttr>();
3324     }
3325   }
3326 
3327   // If a function is first declared with a calling convention, but is later
3328   // declared or defined without one, all following decls assume the calling
3329   // convention of the first.
3330   //
3331   // It's OK if a function is first declared without a calling convention,
3332   // but is later declared or defined with the default calling convention.
3333   //
3334   // To test if either decl has an explicit calling convention, we look for
3335   // AttributedType sugar nodes on the type as written.  If they are missing or
3336   // were canonicalized away, we assume the calling convention was implicit.
3337   //
3338   // Note also that we DO NOT return at this point, because we still have
3339   // other tests to run.
3340   QualType OldQType = Context.getCanonicalType(Old->getType());
3341   QualType NewQType = Context.getCanonicalType(New->getType());
3342   const FunctionType *OldType = cast<FunctionType>(OldQType);
3343   const FunctionType *NewType = cast<FunctionType>(NewQType);
3344   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
3345   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
3346   bool RequiresAdjustment = false;
3347 
3348   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
3349     FunctionDecl *First = Old->getFirstDecl();
3350     const FunctionType *FT =
3351         First->getType().getCanonicalType()->castAs<FunctionType>();
3352     FunctionType::ExtInfo FI = FT->getExtInfo();
3353     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
3354     if (!NewCCExplicit) {
3355       // Inherit the CC from the previous declaration if it was specified
3356       // there but not here.
3357       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
3358       RequiresAdjustment = true;
3359     } else if (Old->getBuiltinID()) {
3360       // Builtin attribute isn't propagated to the new one yet at this point,
3361       // so we check if the old one is a builtin.
3362 
3363       // Calling Conventions on a Builtin aren't really useful and setting a
3364       // default calling convention and cdecl'ing some builtin redeclarations is
3365       // common, so warn and ignore the calling convention on the redeclaration.
3366       Diag(New->getLocation(), diag::warn_cconv_unsupported)
3367           << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
3368           << (int)CallingConventionIgnoredReason::BuiltinFunction;
3369       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
3370       RequiresAdjustment = true;
3371     } else {
3372       // Calling conventions aren't compatible, so complain.
3373       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
3374       Diag(New->getLocation(), diag::err_cconv_change)
3375         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
3376         << !FirstCCExplicit
3377         << (!FirstCCExplicit ? "" :
3378             FunctionType::getNameForCallConv(FI.getCC()));
3379 
3380       // Put the note on the first decl, since it is the one that matters.
3381       Diag(First->getLocation(), diag::note_previous_declaration);
3382       return true;
3383     }
3384   }
3385 
3386   // FIXME: diagnose the other way around?
3387   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
3388     NewTypeInfo = NewTypeInfo.withNoReturn(true);
3389     RequiresAdjustment = true;
3390   }
3391 
3392   // Merge regparm attribute.
3393   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
3394       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
3395     if (NewTypeInfo.getHasRegParm()) {
3396       Diag(New->getLocation(), diag::err_regparm_mismatch)
3397         << NewType->getRegParmType()
3398         << OldType->getRegParmType();
3399       Diag(OldLocation, diag::note_previous_declaration);
3400       return true;
3401     }
3402 
3403     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
3404     RequiresAdjustment = true;
3405   }
3406 
3407   // Merge ns_returns_retained attribute.
3408   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
3409     if (NewTypeInfo.getProducesResult()) {
3410       Diag(New->getLocation(), diag::err_function_attribute_mismatch)
3411           << "'ns_returns_retained'";
3412       Diag(OldLocation, diag::note_previous_declaration);
3413       return true;
3414     }
3415 
3416     NewTypeInfo = NewTypeInfo.withProducesResult(true);
3417     RequiresAdjustment = true;
3418   }
3419 
3420   if (OldTypeInfo.getNoCallerSavedRegs() !=
3421       NewTypeInfo.getNoCallerSavedRegs()) {
3422     if (NewTypeInfo.getNoCallerSavedRegs()) {
3423       AnyX86NoCallerSavedRegistersAttr *Attr =
3424         New->getAttr<AnyX86NoCallerSavedRegistersAttr>();
3425       Diag(New->getLocation(), diag::err_function_attribute_mismatch) << Attr;
3426       Diag(OldLocation, diag::note_previous_declaration);
3427       return true;
3428     }
3429 
3430     NewTypeInfo = NewTypeInfo.withNoCallerSavedRegs(true);
3431     RequiresAdjustment = true;
3432   }
3433 
3434   if (RequiresAdjustment) {
3435     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
3436     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
3437     New->setType(QualType(AdjustedType, 0));
3438     NewQType = Context.getCanonicalType(New->getType());
3439   }
3440 
3441   // If this redeclaration makes the function inline, we may need to add it to
3442   // UndefinedButUsed.
3443   if (!Old->isInlined() && New->isInlined() &&
3444       !New->hasAttr<GNUInlineAttr>() &&
3445       !getLangOpts().GNUInline &&
3446       Old->isUsed(false) &&
3447       !Old->isDefined() && !New->isThisDeclarationADefinition())
3448     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
3449                                            SourceLocation()));
3450 
3451   // If this redeclaration makes it newly gnu_inline, we don't want to warn
3452   // about it.
3453   if (New->hasAttr<GNUInlineAttr>() &&
3454       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
3455     UndefinedButUsed.erase(Old->getCanonicalDecl());
3456   }
3457 
3458   // If pass_object_size params don't match up perfectly, this isn't a valid
3459   // redeclaration.
3460   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
3461       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
3462     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
3463         << New->getDeclName();
3464     Diag(OldLocation, PrevDiag) << Old << Old->getType();
3465     return true;
3466   }
3467 
3468   if (getLangOpts().CPlusPlus) {
3469     // C++1z [over.load]p2
3470     //   Certain function declarations cannot be overloaded:
3471     //     -- Function declarations that differ only in the return type,
3472     //        the exception specification, or both cannot be overloaded.
3473 
3474     // Check the exception specifications match. This may recompute the type of
3475     // both Old and New if it resolved exception specifications, so grab the
3476     // types again after this. Because this updates the type, we do this before
3477     // any of the other checks below, which may update the "de facto" NewQType
3478     // but do not necessarily update the type of New.
3479     if (CheckEquivalentExceptionSpec(Old, New))
3480       return true;
3481     OldQType = Context.getCanonicalType(Old->getType());
3482     NewQType = Context.getCanonicalType(New->getType());
3483 
3484     // Go back to the type source info to compare the declared return types,
3485     // per C++1y [dcl.type.auto]p13:
3486     //   Redeclarations or specializations of a function or function template
3487     //   with a declared return type that uses a placeholder type shall also
3488     //   use that placeholder, not a deduced type.
3489     QualType OldDeclaredReturnType = Old->getDeclaredReturnType();
3490     QualType NewDeclaredReturnType = New->getDeclaredReturnType();
3491     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
3492         canFullyTypeCheckRedeclaration(New, Old, NewDeclaredReturnType,
3493                                        OldDeclaredReturnType)) {
3494       QualType ResQT;
3495       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
3496           OldDeclaredReturnType->isObjCObjectPointerType())
3497         // FIXME: This does the wrong thing for a deduced return type.
3498         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
3499       if (ResQT.isNull()) {
3500         if (New->isCXXClassMember() && New->isOutOfLine())
3501           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
3502               << New << New->getReturnTypeSourceRange();
3503         else
3504           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
3505               << New->getReturnTypeSourceRange();
3506         Diag(OldLocation, PrevDiag) << Old << Old->getType()
3507                                     << Old->getReturnTypeSourceRange();
3508         return true;
3509       }
3510       else
3511         NewQType = ResQT;
3512     }
3513 
3514     QualType OldReturnType = OldType->getReturnType();
3515     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
3516     if (OldReturnType != NewReturnType) {
3517       // If this function has a deduced return type and has already been
3518       // defined, copy the deduced value from the old declaration.
3519       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
3520       if (OldAT && OldAT->isDeduced()) {
3521         New->setType(
3522             SubstAutoType(New->getType(),
3523                           OldAT->isDependentType() ? Context.DependentTy
3524                                                    : OldAT->getDeducedType()));
3525         NewQType = Context.getCanonicalType(
3526             SubstAutoType(NewQType,
3527                           OldAT->isDependentType() ? Context.DependentTy
3528                                                    : OldAT->getDeducedType()));
3529       }
3530     }
3531 
3532     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
3533     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
3534     if (OldMethod && NewMethod) {
3535       // Preserve triviality.
3536       NewMethod->setTrivial(OldMethod->isTrivial());
3537 
3538       // MSVC allows explicit template specialization at class scope:
3539       // 2 CXXMethodDecls referring to the same function will be injected.
3540       // We don't want a redeclaration error.
3541       bool IsClassScopeExplicitSpecialization =
3542                               OldMethod->isFunctionTemplateSpecialization() &&
3543                               NewMethod->isFunctionTemplateSpecialization();
3544       bool isFriend = NewMethod->getFriendObjectKind();
3545 
3546       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
3547           !IsClassScopeExplicitSpecialization) {
3548         //    -- Member function declarations with the same name and the
3549         //       same parameter types cannot be overloaded if any of them
3550         //       is a static member function declaration.
3551         if (OldMethod->isStatic() != NewMethod->isStatic()) {
3552           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
3553           Diag(OldLocation, PrevDiag) << Old << Old->getType();
3554           return true;
3555         }
3556 
3557         // C++ [class.mem]p1:
3558         //   [...] A member shall not be declared twice in the
3559         //   member-specification, except that a nested class or member
3560         //   class template can be declared and then later defined.
3561         if (!inTemplateInstantiation()) {
3562           unsigned NewDiag;
3563           if (isa<CXXConstructorDecl>(OldMethod))
3564             NewDiag = diag::err_constructor_redeclared;
3565           else if (isa<CXXDestructorDecl>(NewMethod))
3566             NewDiag = diag::err_destructor_redeclared;
3567           else if (isa<CXXConversionDecl>(NewMethod))
3568             NewDiag = diag::err_conv_function_redeclared;
3569           else
3570             NewDiag = diag::err_member_redeclared;
3571 
3572           Diag(New->getLocation(), NewDiag);
3573         } else {
3574           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
3575             << New << New->getType();
3576         }
3577         Diag(OldLocation, PrevDiag) << Old << Old->getType();
3578         return true;
3579 
3580       // Complain if this is an explicit declaration of a special
3581       // member that was initially declared implicitly.
3582       //
3583       // As an exception, it's okay to befriend such methods in order
3584       // to permit the implicit constructor/destructor/operator calls.
3585       } else if (OldMethod->isImplicit()) {
3586         if (isFriend) {
3587           NewMethod->setImplicit();
3588         } else {
3589           Diag(NewMethod->getLocation(),
3590                diag::err_definition_of_implicitly_declared_member)
3591             << New << getSpecialMember(OldMethod);
3592           return true;
3593         }
3594       } else if (OldMethod->getFirstDecl()->isExplicitlyDefaulted() && !isFriend) {
3595         Diag(NewMethod->getLocation(),
3596              diag::err_definition_of_explicitly_defaulted_member)
3597           << getSpecialMember(OldMethod);
3598         return true;
3599       }
3600     }
3601 
3602     // C++11 [dcl.attr.noreturn]p1:
3603     //   The first declaration of a function shall specify the noreturn
3604     //   attribute if any declaration of that function specifies the noreturn
3605     //   attribute.
3606     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
3607     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
3608       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
3609       Diag(Old->getFirstDecl()->getLocation(),
3610            diag::note_noreturn_missing_first_decl);
3611     }
3612 
3613     // C++11 [dcl.attr.depend]p2:
3614     //   The first declaration of a function shall specify the
3615     //   carries_dependency attribute for its declarator-id if any declaration
3616     //   of the function specifies the carries_dependency attribute.
3617     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3618     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3619       Diag(CDA->getLocation(),
3620            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3621       Diag(Old->getFirstDecl()->getLocation(),
3622            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3623     }
3624 
3625     // (C++98 8.3.5p3):
3626     //   All declarations for a function shall agree exactly in both the
3627     //   return type and the parameter-type-list.
3628     // We also want to respect all the extended bits except noreturn.
3629 
3630     // noreturn should now match unless the old type info didn't have it.
3631     QualType OldQTypeForComparison = OldQType;
3632     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3633       auto *OldType = OldQType->castAs<FunctionProtoType>();
3634       const FunctionType *OldTypeForComparison
3635         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3636       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3637       assert(OldQTypeForComparison.isCanonical());
3638     }
3639 
3640     if (haveIncompatibleLanguageLinkages(Old, New)) {
3641       // As a special case, retain the language linkage from previous
3642       // declarations of a friend function as an extension.
3643       //
3644       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3645       // and is useful because there's otherwise no way to specify language
3646       // linkage within class scope.
3647       //
3648       // Check cautiously as the friend object kind isn't yet complete.
3649       if (New->getFriendObjectKind() != Decl::FOK_None) {
3650         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3651         Diag(OldLocation, PrevDiag);
3652       } else {
3653         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3654         Diag(OldLocation, PrevDiag);
3655         return true;
3656       }
3657     }
3658 
3659     // If the function types are compatible, merge the declarations. Ignore the
3660     // exception specifier because it was already checked above in
3661     // CheckEquivalentExceptionSpec, and we don't want follow-on diagnostics
3662     // about incompatible types under -fms-compatibility.
3663     if (Context.hasSameFunctionTypeIgnoringExceptionSpec(OldQTypeForComparison,
3664                                                          NewQType))
3665       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3666 
3667     // If the types are imprecise (due to dependent constructs in friends or
3668     // local extern declarations), it's OK if they differ. We'll check again
3669     // during instantiation.
3670     if (!canFullyTypeCheckRedeclaration(New, Old, NewQType, OldQType))
3671       return false;
3672 
3673     // Fall through for conflicting redeclarations and redefinitions.
3674   }
3675 
3676   // C: Function types need to be compatible, not identical. This handles
3677   // duplicate function decls like "void f(int); void f(enum X);" properly.
3678   if (!getLangOpts().CPlusPlus &&
3679       Context.typesAreCompatible(OldQType, NewQType)) {
3680     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3681     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3682     const FunctionProtoType *OldProto = nullptr;
3683     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3684         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3685       // The old declaration provided a function prototype, but the
3686       // new declaration does not. Merge in the prototype.
3687       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3688       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3689       NewQType =
3690           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3691                                   OldProto->getExtProtoInfo());
3692       New->setType(NewQType);
3693       New->setHasInheritedPrototype();
3694 
3695       // Synthesize parameters with the same types.
3696       SmallVector<ParmVarDecl*, 16> Params;
3697       for (const auto &ParamType : OldProto->param_types()) {
3698         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3699                                                  SourceLocation(), nullptr,
3700                                                  ParamType, /*TInfo=*/nullptr,
3701                                                  SC_None, nullptr);
3702         Param->setScopeInfo(0, Params.size());
3703         Param->setImplicit();
3704         Params.push_back(Param);
3705       }
3706 
3707       New->setParams(Params);
3708     }
3709 
3710     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3711   }
3712 
3713   // Check if the function types are compatible when pointer size address
3714   // spaces are ignored.
3715   if (Context.hasSameFunctionTypeIgnoringPtrSizes(OldQType, NewQType))
3716     return false;
3717 
3718   // GNU C permits a K&R definition to follow a prototype declaration
3719   // if the declared types of the parameters in the K&R definition
3720   // match the types in the prototype declaration, even when the
3721   // promoted types of the parameters from the K&R definition differ
3722   // from the types in the prototype. GCC then keeps the types from
3723   // the prototype.
3724   //
3725   // If a variadic prototype is followed by a non-variadic K&R definition,
3726   // the K&R definition becomes variadic.  This is sort of an edge case, but
3727   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3728   // C99 6.9.1p8.
3729   if (!getLangOpts().CPlusPlus &&
3730       Old->hasPrototype() && !New->hasPrototype() &&
3731       New->getType()->getAs<FunctionProtoType>() &&
3732       Old->getNumParams() == New->getNumParams()) {
3733     SmallVector<QualType, 16> ArgTypes;
3734     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3735     const FunctionProtoType *OldProto
3736       = Old->getType()->getAs<FunctionProtoType>();
3737     const FunctionProtoType *NewProto
3738       = New->getType()->getAs<FunctionProtoType>();
3739 
3740     // Determine whether this is the GNU C extension.
3741     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3742                                                NewProto->getReturnType());
3743     bool LooseCompatible = !MergedReturn.isNull();
3744     for (unsigned Idx = 0, End = Old->getNumParams();
3745          LooseCompatible && Idx != End; ++Idx) {
3746       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3747       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3748       if (Context.typesAreCompatible(OldParm->getType(),
3749                                      NewProto->getParamType(Idx))) {
3750         ArgTypes.push_back(NewParm->getType());
3751       } else if (Context.typesAreCompatible(OldParm->getType(),
3752                                             NewParm->getType(),
3753                                             /*CompareUnqualified=*/true)) {
3754         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3755                                            NewProto->getParamType(Idx) };
3756         Warnings.push_back(Warn);
3757         ArgTypes.push_back(NewParm->getType());
3758       } else
3759         LooseCompatible = false;
3760     }
3761 
3762     if (LooseCompatible) {
3763       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3764         Diag(Warnings[Warn].NewParm->getLocation(),
3765              diag::ext_param_promoted_not_compatible_with_prototype)
3766           << Warnings[Warn].PromotedType
3767           << Warnings[Warn].OldParm->getType();
3768         if (Warnings[Warn].OldParm->getLocation().isValid())
3769           Diag(Warnings[Warn].OldParm->getLocation(),
3770                diag::note_previous_declaration);
3771       }
3772 
3773       if (MergeTypeWithOld)
3774         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3775                                              OldProto->getExtProtoInfo()));
3776       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3777     }
3778 
3779     // Fall through to diagnose conflicting types.
3780   }
3781 
3782   // A function that has already been declared has been redeclared or
3783   // defined with a different type; show an appropriate diagnostic.
3784 
3785   // If the previous declaration was an implicitly-generated builtin
3786   // declaration, then at the very least we should use a specialized note.
3787   unsigned BuiltinID;
3788   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3789     // If it's actually a library-defined builtin function like 'malloc'
3790     // or 'printf', just warn about the incompatible redeclaration.
3791     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3792       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3793       Diag(OldLocation, diag::note_previous_builtin_declaration)
3794         << Old << Old->getType();
3795       return false;
3796     }
3797 
3798     PrevDiag = diag::note_previous_builtin_declaration;
3799   }
3800 
3801   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3802   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3803   return true;
3804 }
3805 
3806 /// Completes the merge of two function declarations that are
3807 /// known to be compatible.
3808 ///
3809 /// This routine handles the merging of attributes and other
3810 /// properties of function declarations from the old declaration to
3811 /// the new declaration, once we know that New is in fact a
3812 /// redeclaration of Old.
3813 ///
3814 /// \returns false
3815 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3816                                         Scope *S, bool MergeTypeWithOld) {
3817   // Merge the attributes
3818   mergeDeclAttributes(New, Old);
3819 
3820   // Merge "pure" flag.
3821   if (Old->isPure())
3822     New->setPure();
3823 
3824   // Merge "used" flag.
3825   if (Old->getMostRecentDecl()->isUsed(false))
3826     New->setIsUsed();
3827 
3828   // Merge attributes from the parameters.  These can mismatch with K&R
3829   // declarations.
3830   if (New->getNumParams() == Old->getNumParams())
3831       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3832         ParmVarDecl *NewParam = New->getParamDecl(i);
3833         ParmVarDecl *OldParam = Old->getParamDecl(i);
3834         mergeParamDeclAttributes(NewParam, OldParam, *this);
3835         mergeParamDeclTypes(NewParam, OldParam, *this);
3836       }
3837 
3838   if (getLangOpts().CPlusPlus)
3839     return MergeCXXFunctionDecl(New, Old, S);
3840 
3841   // Merge the function types so the we get the composite types for the return
3842   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3843   // was visible.
3844   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3845   if (!Merged.isNull() && MergeTypeWithOld)
3846     New->setType(Merged);
3847 
3848   return false;
3849 }
3850 
3851 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3852                                 ObjCMethodDecl *oldMethod) {
3853   // Merge the attributes, including deprecated/unavailable
3854   AvailabilityMergeKind MergeKind =
3855     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3856       ? AMK_ProtocolImplementation
3857       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3858                                                        : AMK_Override;
3859 
3860   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3861 
3862   // Merge attributes from the parameters.
3863   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3864                                        oe = oldMethod->param_end();
3865   for (ObjCMethodDecl::param_iterator
3866          ni = newMethod->param_begin(), ne = newMethod->param_end();
3867        ni != ne && oi != oe; ++ni, ++oi)
3868     mergeParamDeclAttributes(*ni, *oi, *this);
3869 
3870   CheckObjCMethodOverride(newMethod, oldMethod);
3871 }
3872 
3873 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3874   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3875 
3876   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3877          ? diag::err_redefinition_different_type
3878          : diag::err_redeclaration_different_type)
3879     << New->getDeclName() << New->getType() << Old->getType();
3880 
3881   diag::kind PrevDiag;
3882   SourceLocation OldLocation;
3883   std::tie(PrevDiag, OldLocation)
3884     = getNoteDiagForInvalidRedeclaration(Old, New);
3885   S.Diag(OldLocation, PrevDiag);
3886   New->setInvalidDecl();
3887 }
3888 
3889 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3890 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3891 /// emitting diagnostics as appropriate.
3892 ///
3893 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3894 /// to here in AddInitializerToDecl. We can't check them before the initializer
3895 /// is attached.
3896 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3897                              bool MergeTypeWithOld) {
3898   if (New->isInvalidDecl() || Old->isInvalidDecl())
3899     return;
3900 
3901   QualType MergedT;
3902   if (getLangOpts().CPlusPlus) {
3903     if (New->getType()->isUndeducedType()) {
3904       // We don't know what the new type is until the initializer is attached.
3905       return;
3906     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3907       // These could still be something that needs exception specs checked.
3908       return MergeVarDeclExceptionSpecs(New, Old);
3909     }
3910     // C++ [basic.link]p10:
3911     //   [...] the types specified by all declarations referring to a given
3912     //   object or function shall be identical, except that declarations for an
3913     //   array object can specify array types that differ by the presence or
3914     //   absence of a major array bound (8.3.4).
3915     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3916       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3917       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3918 
3919       // We are merging a variable declaration New into Old. If it has an array
3920       // bound, and that bound differs from Old's bound, we should diagnose the
3921       // mismatch.
3922       if (!NewArray->isIncompleteArrayType() && !NewArray->isDependentType()) {
3923         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3924              PrevVD = PrevVD->getPreviousDecl()) {
3925           QualType PrevVDTy = PrevVD->getType();
3926           if (PrevVDTy->isIncompleteArrayType() || PrevVDTy->isDependentType())
3927             continue;
3928 
3929           if (!Context.hasSameType(New->getType(), PrevVDTy))
3930             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3931         }
3932       }
3933 
3934       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3935         if (Context.hasSameType(OldArray->getElementType(),
3936                                 NewArray->getElementType()))
3937           MergedT = New->getType();
3938       }
3939       // FIXME: Check visibility. New is hidden but has a complete type. If New
3940       // has no array bound, it should not inherit one from Old, if Old is not
3941       // visible.
3942       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3943         if (Context.hasSameType(OldArray->getElementType(),
3944                                 NewArray->getElementType()))
3945           MergedT = Old->getType();
3946       }
3947     }
3948     else if (New->getType()->isObjCObjectPointerType() &&
3949                Old->getType()->isObjCObjectPointerType()) {
3950       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3951                                               Old->getType());
3952     }
3953   } else {
3954     // C 6.2.7p2:
3955     //   All declarations that refer to the same object or function shall have
3956     //   compatible type.
3957     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3958   }
3959   if (MergedT.isNull()) {
3960     // It's OK if we couldn't merge types if either type is dependent, for a
3961     // block-scope variable. In other cases (static data members of class
3962     // templates, variable templates, ...), we require the types to be
3963     // equivalent.
3964     // FIXME: The C++ standard doesn't say anything about this.
3965     if ((New->getType()->isDependentType() ||
3966          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3967       // If the old type was dependent, we can't merge with it, so the new type
3968       // becomes dependent for now. We'll reproduce the original type when we
3969       // instantiate the TypeSourceInfo for the variable.
3970       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3971         New->setType(Context.DependentTy);
3972       return;
3973     }
3974     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3975   }
3976 
3977   // Don't actually update the type on the new declaration if the old
3978   // declaration was an extern declaration in a different scope.
3979   if (MergeTypeWithOld)
3980     New->setType(MergedT);
3981 }
3982 
3983 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3984                                   LookupResult &Previous) {
3985   // C11 6.2.7p4:
3986   //   For an identifier with internal or external linkage declared
3987   //   in a scope in which a prior declaration of that identifier is
3988   //   visible, if the prior declaration specifies internal or
3989   //   external linkage, the type of the identifier at the later
3990   //   declaration becomes the composite type.
3991   //
3992   // If the variable isn't visible, we do not merge with its type.
3993   if (Previous.isShadowed())
3994     return false;
3995 
3996   if (S.getLangOpts().CPlusPlus) {
3997     // C++11 [dcl.array]p3:
3998     //   If there is a preceding declaration of the entity in the same
3999     //   scope in which the bound was specified, an omitted array bound
4000     //   is taken to be the same as in that earlier declaration.
4001     return NewVD->isPreviousDeclInSameBlockScope() ||
4002            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
4003             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
4004   } else {
4005     // If the old declaration was function-local, don't merge with its
4006     // type unless we're in the same function.
4007     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
4008            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
4009   }
4010 }
4011 
4012 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
4013 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
4014 /// situation, merging decls or emitting diagnostics as appropriate.
4015 ///
4016 /// Tentative definition rules (C99 6.9.2p2) are checked by
4017 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
4018 /// definitions here, since the initializer hasn't been attached.
4019 ///
4020 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
4021   // If the new decl is already invalid, don't do any other checking.
4022   if (New->isInvalidDecl())
4023     return;
4024 
4025   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
4026     return;
4027 
4028   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
4029 
4030   // Verify the old decl was also a variable or variable template.
4031   VarDecl *Old = nullptr;
4032   VarTemplateDecl *OldTemplate = nullptr;
4033   if (Previous.isSingleResult()) {
4034     if (NewTemplate) {
4035       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
4036       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
4037 
4038       if (auto *Shadow =
4039               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
4040         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
4041           return New->setInvalidDecl();
4042     } else {
4043       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
4044 
4045       if (auto *Shadow =
4046               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
4047         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
4048           return New->setInvalidDecl();
4049     }
4050   }
4051   if (!Old) {
4052     Diag(New->getLocation(), diag::err_redefinition_different_kind)
4053         << New->getDeclName();
4054     notePreviousDefinition(Previous.getRepresentativeDecl(),
4055                            New->getLocation());
4056     return New->setInvalidDecl();
4057   }
4058 
4059   // If the old declaration was found in an inline namespace and the new
4060   // declaration was qualified, update the DeclContext to match.
4061   adjustDeclContextForDeclaratorDecl(New, Old);
4062 
4063   // Ensure the template parameters are compatible.
4064   if (NewTemplate &&
4065       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
4066                                       OldTemplate->getTemplateParameters(),
4067                                       /*Complain=*/true, TPL_TemplateMatch))
4068     return New->setInvalidDecl();
4069 
4070   // C++ [class.mem]p1:
4071   //   A member shall not be declared twice in the member-specification [...]
4072   //
4073   // Here, we need only consider static data members.
4074   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
4075     Diag(New->getLocation(), diag::err_duplicate_member)
4076       << New->getIdentifier();
4077     Diag(Old->getLocation(), diag::note_previous_declaration);
4078     New->setInvalidDecl();
4079   }
4080 
4081   mergeDeclAttributes(New, Old);
4082   // Warn if an already-declared variable is made a weak_import in a subsequent
4083   // declaration
4084   if (New->hasAttr<WeakImportAttr>() &&
4085       Old->getStorageClass() == SC_None &&
4086       !Old->hasAttr<WeakImportAttr>()) {
4087     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
4088     notePreviousDefinition(Old, New->getLocation());
4089     // Remove weak_import attribute on new declaration.
4090     New->dropAttr<WeakImportAttr>();
4091   }
4092 
4093   if (New->hasAttr<InternalLinkageAttr>() &&
4094       !Old->hasAttr<InternalLinkageAttr>()) {
4095     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
4096         << New->getDeclName();
4097     notePreviousDefinition(Old, New->getLocation());
4098     New->dropAttr<InternalLinkageAttr>();
4099   }
4100 
4101   // Merge the types.
4102   VarDecl *MostRecent = Old->getMostRecentDecl();
4103   if (MostRecent != Old) {
4104     MergeVarDeclTypes(New, MostRecent,
4105                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
4106     if (New->isInvalidDecl())
4107       return;
4108   }
4109 
4110   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
4111   if (New->isInvalidDecl())
4112     return;
4113 
4114   diag::kind PrevDiag;
4115   SourceLocation OldLocation;
4116   std::tie(PrevDiag, OldLocation) =
4117       getNoteDiagForInvalidRedeclaration(Old, New);
4118 
4119   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
4120   if (New->getStorageClass() == SC_Static &&
4121       !New->isStaticDataMember() &&
4122       Old->hasExternalFormalLinkage()) {
4123     if (getLangOpts().MicrosoftExt) {
4124       Diag(New->getLocation(), diag::ext_static_non_static)
4125           << New->getDeclName();
4126       Diag(OldLocation, PrevDiag);
4127     } else {
4128       Diag(New->getLocation(), diag::err_static_non_static)
4129           << New->getDeclName();
4130       Diag(OldLocation, PrevDiag);
4131       return New->setInvalidDecl();
4132     }
4133   }
4134   // C99 6.2.2p4:
4135   //   For an identifier declared with the storage-class specifier
4136   //   extern in a scope in which a prior declaration of that
4137   //   identifier is visible,23) if the prior declaration specifies
4138   //   internal or external linkage, the linkage of the identifier at
4139   //   the later declaration is the same as the linkage specified at
4140   //   the prior declaration. If no prior declaration is visible, or
4141   //   if the prior declaration specifies no linkage, then the
4142   //   identifier has external linkage.
4143   if (New->hasExternalStorage() && Old->hasLinkage())
4144     /* Okay */;
4145   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
4146            !New->isStaticDataMember() &&
4147            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
4148     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
4149     Diag(OldLocation, PrevDiag);
4150     return New->setInvalidDecl();
4151   }
4152 
4153   // Check if extern is followed by non-extern and vice-versa.
4154   if (New->hasExternalStorage() &&
4155       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
4156     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
4157     Diag(OldLocation, PrevDiag);
4158     return New->setInvalidDecl();
4159   }
4160   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
4161       !New->hasExternalStorage()) {
4162     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
4163     Diag(OldLocation, PrevDiag);
4164     return New->setInvalidDecl();
4165   }
4166 
4167   if (CheckRedeclarationModuleOwnership(New, Old))
4168     return;
4169 
4170   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
4171 
4172   // FIXME: The test for external storage here seems wrong? We still
4173   // need to check for mismatches.
4174   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
4175       // Don't complain about out-of-line definitions of static members.
4176       !(Old->getLexicalDeclContext()->isRecord() &&
4177         !New->getLexicalDeclContext()->isRecord())) {
4178     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
4179     Diag(OldLocation, PrevDiag);
4180     return New->setInvalidDecl();
4181   }
4182 
4183   if (New->isInline() && !Old->getMostRecentDecl()->isInline()) {
4184     if (VarDecl *Def = Old->getDefinition()) {
4185       // C++1z [dcl.fcn.spec]p4:
4186       //   If the definition of a variable appears in a translation unit before
4187       //   its first declaration as inline, the program is ill-formed.
4188       Diag(New->getLocation(), diag::err_inline_decl_follows_def) << New;
4189       Diag(Def->getLocation(), diag::note_previous_definition);
4190     }
4191   }
4192 
4193   // If this redeclaration makes the variable inline, we may need to add it to
4194   // UndefinedButUsed.
4195   if (!Old->isInline() && New->isInline() && Old->isUsed(false) &&
4196       !Old->getDefinition() && !New->isThisDeclarationADefinition())
4197     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
4198                                            SourceLocation()));
4199 
4200   if (New->getTLSKind() != Old->getTLSKind()) {
4201     if (!Old->getTLSKind()) {
4202       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
4203       Diag(OldLocation, PrevDiag);
4204     } else if (!New->getTLSKind()) {
4205       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
4206       Diag(OldLocation, PrevDiag);
4207     } else {
4208       // Do not allow redeclaration to change the variable between requiring
4209       // static and dynamic initialization.
4210       // FIXME: GCC allows this, but uses the TLS keyword on the first
4211       // declaration to determine the kind. Do we need to be compatible here?
4212       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
4213         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
4214       Diag(OldLocation, PrevDiag);
4215     }
4216   }
4217 
4218   // C++ doesn't have tentative definitions, so go right ahead and check here.
4219   if (getLangOpts().CPlusPlus &&
4220       New->isThisDeclarationADefinition() == VarDecl::Definition) {
4221     if (Old->isStaticDataMember() && Old->getCanonicalDecl()->isInline() &&
4222         Old->getCanonicalDecl()->isConstexpr()) {
4223       // This definition won't be a definition any more once it's been merged.
4224       Diag(New->getLocation(),
4225            diag::warn_deprecated_redundant_constexpr_static_def);
4226     } else if (VarDecl *Def = Old->getDefinition()) {
4227       if (checkVarDeclRedefinition(Def, New))
4228         return;
4229     }
4230   }
4231 
4232   if (haveIncompatibleLanguageLinkages(Old, New)) {
4233     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
4234     Diag(OldLocation, PrevDiag);
4235     New->setInvalidDecl();
4236     return;
4237   }
4238 
4239   // Merge "used" flag.
4240   if (Old->getMostRecentDecl()->isUsed(false))
4241     New->setIsUsed();
4242 
4243   // Keep a chain of previous declarations.
4244   New->setPreviousDecl(Old);
4245   if (NewTemplate)
4246     NewTemplate->setPreviousDecl(OldTemplate);
4247 
4248   // Inherit access appropriately.
4249   New->setAccess(Old->getAccess());
4250   if (NewTemplate)
4251     NewTemplate->setAccess(New->getAccess());
4252 
4253   if (Old->isInline())
4254     New->setImplicitlyInline();
4255 }
4256 
4257 void Sema::notePreviousDefinition(const NamedDecl *Old, SourceLocation New) {
4258   SourceManager &SrcMgr = getSourceManager();
4259   auto FNewDecLoc = SrcMgr.getDecomposedLoc(New);
4260   auto FOldDecLoc = SrcMgr.getDecomposedLoc(Old->getLocation());
4261   auto *FNew = SrcMgr.getFileEntryForID(FNewDecLoc.first);
4262   auto *FOld = SrcMgr.getFileEntryForID(FOldDecLoc.first);
4263   auto &HSI = PP.getHeaderSearchInfo();
4264   StringRef HdrFilename =
4265       SrcMgr.getFilename(SrcMgr.getSpellingLoc(Old->getLocation()));
4266 
4267   auto noteFromModuleOrInclude = [&](Module *Mod,
4268                                      SourceLocation IncLoc) -> bool {
4269     // Redefinition errors with modules are common with non modular mapped
4270     // headers, example: a non-modular header H in module A that also gets
4271     // included directly in a TU. Pointing twice to the same header/definition
4272     // is confusing, try to get better diagnostics when modules is on.
4273     if (IncLoc.isValid()) {
4274       if (Mod) {
4275         Diag(IncLoc, diag::note_redefinition_modules_same_file)
4276             << HdrFilename.str() << Mod->getFullModuleName();
4277         if (!Mod->DefinitionLoc.isInvalid())
4278           Diag(Mod->DefinitionLoc, diag::note_defined_here)
4279               << Mod->getFullModuleName();
4280       } else {
4281         Diag(IncLoc, diag::note_redefinition_include_same_file)
4282             << HdrFilename.str();
4283       }
4284       return true;
4285     }
4286 
4287     return false;
4288   };
4289 
4290   // Is it the same file and same offset? Provide more information on why
4291   // this leads to a redefinition error.
4292   if (FNew == FOld && FNewDecLoc.second == FOldDecLoc.second) {
4293     SourceLocation OldIncLoc = SrcMgr.getIncludeLoc(FOldDecLoc.first);
4294     SourceLocation NewIncLoc = SrcMgr.getIncludeLoc(FNewDecLoc.first);
4295     bool EmittedDiag =
4296         noteFromModuleOrInclude(Old->getOwningModule(), OldIncLoc);
4297     EmittedDiag |= noteFromModuleOrInclude(getCurrentModule(), NewIncLoc);
4298 
4299     // If the header has no guards, emit a note suggesting one.
4300     if (FOld && !HSI.isFileMultipleIncludeGuarded(FOld))
4301       Diag(Old->getLocation(), diag::note_use_ifdef_guards);
4302 
4303     if (EmittedDiag)
4304       return;
4305   }
4306 
4307   // Redefinition coming from different files or couldn't do better above.
4308   if (Old->getLocation().isValid())
4309     Diag(Old->getLocation(), diag::note_previous_definition);
4310 }
4311 
4312 /// We've just determined that \p Old and \p New both appear to be definitions
4313 /// of the same variable. Either diagnose or fix the problem.
4314 bool Sema::checkVarDeclRedefinition(VarDecl *Old, VarDecl *New) {
4315   if (!hasVisibleDefinition(Old) &&
4316       (New->getFormalLinkage() == InternalLinkage ||
4317        New->isInline() ||
4318        New->getDescribedVarTemplate() ||
4319        New->getNumTemplateParameterLists() ||
4320        New->getDeclContext()->isDependentContext())) {
4321     // The previous definition is hidden, and multiple definitions are
4322     // permitted (in separate TUs). Demote this to a declaration.
4323     New->demoteThisDefinitionToDeclaration();
4324 
4325     // Make the canonical definition visible.
4326     if (auto *OldTD = Old->getDescribedVarTemplate())
4327       makeMergedDefinitionVisible(OldTD);
4328     makeMergedDefinitionVisible(Old);
4329     return false;
4330   } else {
4331     Diag(New->getLocation(), diag::err_redefinition) << New;
4332     notePreviousDefinition(Old, New->getLocation());
4333     New->setInvalidDecl();
4334     return true;
4335   }
4336 }
4337 
4338 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4339 /// no declarator (e.g. "struct foo;") is parsed.
4340 Decl *
4341 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4342                                  RecordDecl *&AnonRecord) {
4343   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
4344                                     AnonRecord);
4345 }
4346 
4347 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
4348 // disambiguate entities defined in different scopes.
4349 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
4350 // compatibility.
4351 // We will pick our mangling number depending on which version of MSVC is being
4352 // targeted.
4353 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
4354   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
4355              ? S->getMSCurManglingNumber()
4356              : S->getMSLastManglingNumber();
4357 }
4358 
4359 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
4360   if (!Context.getLangOpts().CPlusPlus)
4361     return;
4362 
4363   if (isa<CXXRecordDecl>(Tag->getParent())) {
4364     // If this tag is the direct child of a class, number it if
4365     // it is anonymous.
4366     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
4367       return;
4368     MangleNumberingContext &MCtx =
4369         Context.getManglingNumberContext(Tag->getParent());
4370     Context.setManglingNumber(
4371         Tag, MCtx.getManglingNumber(
4372                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4373     return;
4374   }
4375 
4376   // If this tag isn't a direct child of a class, number it if it is local.
4377   MangleNumberingContext *MCtx;
4378   Decl *ManglingContextDecl;
4379   std::tie(MCtx, ManglingContextDecl) =
4380       getCurrentMangleNumberContext(Tag->getDeclContext());
4381   if (MCtx) {
4382     Context.setManglingNumber(
4383         Tag, MCtx->getManglingNumber(
4384                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
4385   }
4386 }
4387 
4388 namespace {
4389 struct NonCLikeKind {
4390   enum {
4391     None,
4392     BaseClass,
4393     DefaultMemberInit,
4394     Lambda,
4395     Friend,
4396     OtherMember,
4397     Invalid,
4398   } Kind = None;
4399   SourceRange Range;
4400 
4401   explicit operator bool() { return Kind != None; }
4402 };
4403 }
4404 
4405 /// Determine whether a class is C-like, according to the rules of C++
4406 /// [dcl.typedef] for anonymous classes with typedef names for linkage.
4407 static NonCLikeKind getNonCLikeKindForAnonymousStruct(const CXXRecordDecl *RD) {
4408   if (RD->isInvalidDecl())
4409     return {NonCLikeKind::Invalid, {}};
4410 
4411   // C++ [dcl.typedef]p9: [P1766R1]
4412   //   An unnamed class with a typedef name for linkage purposes shall not
4413   //
4414   //    -- have any base classes
4415   if (RD->getNumBases())
4416     return {NonCLikeKind::BaseClass,
4417             SourceRange(RD->bases_begin()->getBeginLoc(),
4418                         RD->bases_end()[-1].getEndLoc())};
4419   bool Invalid = false;
4420   for (Decl *D : RD->decls()) {
4421     // Don't complain about things we already diagnosed.
4422     if (D->isInvalidDecl()) {
4423       Invalid = true;
4424       continue;
4425     }
4426 
4427     //  -- have any [...] default member initializers
4428     if (auto *FD = dyn_cast<FieldDecl>(D)) {
4429       if (FD->hasInClassInitializer()) {
4430         auto *Init = FD->getInClassInitializer();
4431         return {NonCLikeKind::DefaultMemberInit,
4432                 Init ? Init->getSourceRange() : D->getSourceRange()};
4433       }
4434       continue;
4435     }
4436 
4437     // FIXME: We don't allow friend declarations. This violates the wording of
4438     // P1766, but not the intent.
4439     if (isa<FriendDecl>(D))
4440       return {NonCLikeKind::Friend, D->getSourceRange()};
4441 
4442     //  -- declare any members other than non-static data members, member
4443     //     enumerations, or member classes,
4444     if (isa<StaticAssertDecl>(D) || isa<IndirectFieldDecl>(D) ||
4445         isa<EnumDecl>(D))
4446       continue;
4447     auto *MemberRD = dyn_cast<CXXRecordDecl>(D);
4448     if (!MemberRD) {
4449       if (D->isImplicit())
4450         continue;
4451       return {NonCLikeKind::OtherMember, D->getSourceRange()};
4452     }
4453 
4454     //  -- contain a lambda-expression,
4455     if (MemberRD->isLambda())
4456       return {NonCLikeKind::Lambda, MemberRD->getSourceRange()};
4457 
4458     //  and all member classes shall also satisfy these requirements
4459     //  (recursively).
4460     if (MemberRD->isThisDeclarationADefinition()) {
4461       if (auto Kind = getNonCLikeKindForAnonymousStruct(MemberRD))
4462         return Kind;
4463     }
4464   }
4465 
4466   return {Invalid ? NonCLikeKind::Invalid : NonCLikeKind::None, {}};
4467 }
4468 
4469 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
4470                                         TypedefNameDecl *NewTD) {
4471   if (TagFromDeclSpec->isInvalidDecl())
4472     return;
4473 
4474   // Do nothing if the tag already has a name for linkage purposes.
4475   if (TagFromDeclSpec->hasNameForLinkage())
4476     return;
4477 
4478   // A well-formed anonymous tag must always be a TUK_Definition.
4479   assert(TagFromDeclSpec->isThisDeclarationADefinition());
4480 
4481   // The type must match the tag exactly;  no qualifiers allowed.
4482   if (!Context.hasSameType(NewTD->getUnderlyingType(),
4483                            Context.getTagDeclType(TagFromDeclSpec))) {
4484     if (getLangOpts().CPlusPlus)
4485       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
4486     return;
4487   }
4488 
4489   // C++ [dcl.typedef]p9: [P1766R1, applied as DR]
4490   //   An unnamed class with a typedef name for linkage purposes shall [be
4491   //   C-like].
4492   //
4493   // FIXME: Also diagnose if we've already computed the linkage. That ideally
4494   // shouldn't happen, but there are constructs that the language rule doesn't
4495   // disallow for which we can't reasonably avoid computing linkage early.
4496   const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(TagFromDeclSpec);
4497   NonCLikeKind NonCLike = RD ? getNonCLikeKindForAnonymousStruct(RD)
4498                              : NonCLikeKind();
4499   bool ChangesLinkage = TagFromDeclSpec->hasLinkageBeenComputed();
4500   if (NonCLike || ChangesLinkage) {
4501     if (NonCLike.Kind == NonCLikeKind::Invalid)
4502       return;
4503 
4504     unsigned DiagID = diag::ext_non_c_like_anon_struct_in_typedef;
4505     if (ChangesLinkage) {
4506       // If the linkage changes, we can't accept this as an extension.
4507       if (NonCLike.Kind == NonCLikeKind::None)
4508         DiagID = diag::err_typedef_changes_linkage;
4509       else
4510         DiagID = diag::err_non_c_like_anon_struct_in_typedef;
4511     }
4512 
4513     SourceLocation FixitLoc =
4514         getLocForEndOfToken(TagFromDeclSpec->getInnerLocStart());
4515     llvm::SmallString<40> TextToInsert;
4516     TextToInsert += ' ';
4517     TextToInsert += NewTD->getIdentifier()->getName();
4518 
4519     Diag(FixitLoc, DiagID)
4520       << isa<TypeAliasDecl>(NewTD)
4521       << FixItHint::CreateInsertion(FixitLoc, TextToInsert);
4522     if (NonCLike.Kind != NonCLikeKind::None) {
4523       Diag(NonCLike.Range.getBegin(), diag::note_non_c_like_anon_struct)
4524         << NonCLike.Kind - 1 << NonCLike.Range;
4525     }
4526     Diag(NewTD->getLocation(), diag::note_typedef_for_linkage_here)
4527       << NewTD << isa<TypeAliasDecl>(NewTD);
4528 
4529     if (ChangesLinkage)
4530       return;
4531   }
4532 
4533   // Otherwise, set this as the anon-decl typedef for the tag.
4534   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
4535 }
4536 
4537 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
4538   switch (T) {
4539   case DeclSpec::TST_class:
4540     return 0;
4541   case DeclSpec::TST_struct:
4542     return 1;
4543   case DeclSpec::TST_interface:
4544     return 2;
4545   case DeclSpec::TST_union:
4546     return 3;
4547   case DeclSpec::TST_enum:
4548     return 4;
4549   default:
4550     llvm_unreachable("unexpected type specifier");
4551   }
4552 }
4553 
4554 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
4555 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
4556 /// parameters to cope with template friend declarations.
4557 Decl *
4558 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
4559                                  MultiTemplateParamsArg TemplateParams,
4560                                  bool IsExplicitInstantiation,
4561                                  RecordDecl *&AnonRecord) {
4562   Decl *TagD = nullptr;
4563   TagDecl *Tag = nullptr;
4564   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
4565       DS.getTypeSpecType() == DeclSpec::TST_struct ||
4566       DS.getTypeSpecType() == DeclSpec::TST_interface ||
4567       DS.getTypeSpecType() == DeclSpec::TST_union ||
4568       DS.getTypeSpecType() == DeclSpec::TST_enum) {
4569     TagD = DS.getRepAsDecl();
4570 
4571     if (!TagD) // We probably had an error
4572       return nullptr;
4573 
4574     // Note that the above type specs guarantee that the
4575     // type rep is a Decl, whereas in many of the others
4576     // it's a Type.
4577     if (isa<TagDecl>(TagD))
4578       Tag = cast<TagDecl>(TagD);
4579     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
4580       Tag = CTD->getTemplatedDecl();
4581   }
4582 
4583   if (Tag) {
4584     handleTagNumbering(Tag, S);
4585     Tag->setFreeStanding();
4586     if (Tag->isInvalidDecl())
4587       return Tag;
4588   }
4589 
4590   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
4591     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
4592     // or incomplete types shall not be restrict-qualified."
4593     if (TypeQuals & DeclSpec::TQ_restrict)
4594       Diag(DS.getRestrictSpecLoc(),
4595            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
4596            << DS.getSourceRange();
4597   }
4598 
4599   if (DS.isInlineSpecified())
4600     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
4601         << getLangOpts().CPlusPlus17;
4602 
4603   if (DS.hasConstexprSpecifier()) {
4604     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
4605     // and definitions of functions and variables.
4606     // C++2a [dcl.constexpr]p1: The consteval specifier shall be applied only to
4607     // the declaration of a function or function template
4608     if (Tag)
4609       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
4610           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType())
4611           << static_cast<int>(DS.getConstexprSpecifier());
4612     else
4613       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_wrong_decl_kind)
4614           << static_cast<int>(DS.getConstexprSpecifier());
4615     // Don't emit warnings after this error.
4616     return TagD;
4617   }
4618 
4619   DiagnoseFunctionSpecifiers(DS);
4620 
4621   if (DS.isFriendSpecified()) {
4622     // If we're dealing with a decl but not a TagDecl, assume that
4623     // whatever routines created it handled the friendship aspect.
4624     if (TagD && !Tag)
4625       return nullptr;
4626     return ActOnFriendTypeDecl(S, DS, TemplateParams);
4627   }
4628 
4629   const CXXScopeSpec &SS = DS.getTypeSpecScope();
4630   bool IsExplicitSpecialization =
4631     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
4632   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
4633       !IsExplicitInstantiation && !IsExplicitSpecialization &&
4634       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
4635     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
4636     // nested-name-specifier unless it is an explicit instantiation
4637     // or an explicit specialization.
4638     //
4639     // FIXME: We allow class template partial specializations here too, per the
4640     // obvious intent of DR1819.
4641     //
4642     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
4643     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
4644         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
4645     return nullptr;
4646   }
4647 
4648   // Track whether this decl-specifier declares anything.
4649   bool DeclaresAnything = true;
4650 
4651   // Handle anonymous struct definitions.
4652   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
4653     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
4654         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
4655       if (getLangOpts().CPlusPlus ||
4656           Record->getDeclContext()->isRecord()) {
4657         // If CurContext is a DeclContext that can contain statements,
4658         // RecursiveASTVisitor won't visit the decls that
4659         // BuildAnonymousStructOrUnion() will put into CurContext.
4660         // Also store them here so that they can be part of the
4661         // DeclStmt that gets created in this case.
4662         // FIXME: Also return the IndirectFieldDecls created by
4663         // BuildAnonymousStructOr union, for the same reason?
4664         if (CurContext->isFunctionOrMethod())
4665           AnonRecord = Record;
4666         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
4667                                            Context.getPrintingPolicy());
4668       }
4669 
4670       DeclaresAnything = false;
4671     }
4672   }
4673 
4674   // C11 6.7.2.1p2:
4675   //   A struct-declaration that does not declare an anonymous structure or
4676   //   anonymous union shall contain a struct-declarator-list.
4677   //
4678   // This rule also existed in C89 and C99; the grammar for struct-declaration
4679   // did not permit a struct-declaration without a struct-declarator-list.
4680   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
4681       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
4682     // Check for Microsoft C extension: anonymous struct/union member.
4683     // Handle 2 kinds of anonymous struct/union:
4684     //   struct STRUCT;
4685     //   union UNION;
4686     // and
4687     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
4688     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
4689     if ((Tag && Tag->getDeclName()) ||
4690         DS.getTypeSpecType() == DeclSpec::TST_typename) {
4691       RecordDecl *Record = nullptr;
4692       if (Tag)
4693         Record = dyn_cast<RecordDecl>(Tag);
4694       else if (const RecordType *RT =
4695                    DS.getRepAsType().get()->getAsStructureType())
4696         Record = RT->getDecl();
4697       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
4698         Record = UT->getDecl();
4699 
4700       if (Record && getLangOpts().MicrosoftExt) {
4701         Diag(DS.getBeginLoc(), diag::ext_ms_anonymous_record)
4702             << Record->isUnion() << DS.getSourceRange();
4703         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
4704       }
4705 
4706       DeclaresAnything = false;
4707     }
4708   }
4709 
4710   // Skip all the checks below if we have a type error.
4711   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
4712       (TagD && TagD->isInvalidDecl()))
4713     return TagD;
4714 
4715   if (getLangOpts().CPlusPlus &&
4716       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
4717     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
4718       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
4719           !Enum->getIdentifier() && !Enum->isInvalidDecl())
4720         DeclaresAnything = false;
4721 
4722   if (!DS.isMissingDeclaratorOk()) {
4723     // Customize diagnostic for a typedef missing a name.
4724     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
4725       Diag(DS.getBeginLoc(), diag::ext_typedef_without_a_name)
4726           << DS.getSourceRange();
4727     else
4728       DeclaresAnything = false;
4729   }
4730 
4731   if (DS.isModulePrivateSpecified() &&
4732       Tag && Tag->getDeclContext()->isFunctionOrMethod())
4733     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
4734       << Tag->getTagKind()
4735       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
4736 
4737   ActOnDocumentableDecl(TagD);
4738 
4739   // C 6.7/2:
4740   //   A declaration [...] shall declare at least a declarator [...], a tag,
4741   //   or the members of an enumeration.
4742   // C++ [dcl.dcl]p3:
4743   //   [If there are no declarators], and except for the declaration of an
4744   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
4745   //   names into the program, or shall redeclare a name introduced by a
4746   //   previous declaration.
4747   if (!DeclaresAnything) {
4748     // In C, we allow this as a (popular) extension / bug. Don't bother
4749     // producing further diagnostics for redundant qualifiers after this.
4750     Diag(DS.getBeginLoc(), (IsExplicitInstantiation || !TemplateParams.empty())
4751                                ? diag::err_no_declarators
4752                                : diag::ext_no_declarators)
4753         << DS.getSourceRange();
4754     return TagD;
4755   }
4756 
4757   // C++ [dcl.stc]p1:
4758   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
4759   //   init-declarator-list of the declaration shall not be empty.
4760   // C++ [dcl.fct.spec]p1:
4761   //   If a cv-qualifier appears in a decl-specifier-seq, the
4762   //   init-declarator-list of the declaration shall not be empty.
4763   //
4764   // Spurious qualifiers here appear to be valid in C.
4765   unsigned DiagID = diag::warn_standalone_specifier;
4766   if (getLangOpts().CPlusPlus)
4767     DiagID = diag::ext_standalone_specifier;
4768 
4769   // Note that a linkage-specification sets a storage class, but
4770   // 'extern "C" struct foo;' is actually valid and not theoretically
4771   // useless.
4772   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
4773     if (SCS == DeclSpec::SCS_mutable)
4774       // Since mutable is not a viable storage class specifier in C, there is
4775       // no reason to treat it as an extension. Instead, diagnose as an error.
4776       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
4777     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
4778       Diag(DS.getStorageClassSpecLoc(), DiagID)
4779         << DeclSpec::getSpecifierName(SCS);
4780   }
4781 
4782   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
4783     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
4784       << DeclSpec::getSpecifierName(TSCS);
4785   if (DS.getTypeQualifiers()) {
4786     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4787       Diag(DS.getConstSpecLoc(), DiagID) << "const";
4788     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4789       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
4790     // Restrict is covered above.
4791     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4792       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
4793     if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
4794       Diag(DS.getUnalignedSpecLoc(), DiagID) << "__unaligned";
4795   }
4796 
4797   // Warn about ignored type attributes, for example:
4798   // __attribute__((aligned)) struct A;
4799   // Attributes should be placed after tag to apply to type declaration.
4800   if (!DS.getAttributes().empty()) {
4801     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
4802     if (TypeSpecType == DeclSpec::TST_class ||
4803         TypeSpecType == DeclSpec::TST_struct ||
4804         TypeSpecType == DeclSpec::TST_interface ||
4805         TypeSpecType == DeclSpec::TST_union ||
4806         TypeSpecType == DeclSpec::TST_enum) {
4807       for (const ParsedAttr &AL : DS.getAttributes())
4808         Diag(AL.getLoc(), diag::warn_declspec_attribute_ignored)
4809             << AL << GetDiagnosticTypeSpecifierID(TypeSpecType);
4810     }
4811   }
4812 
4813   return TagD;
4814 }
4815 
4816 /// We are trying to inject an anonymous member into the given scope;
4817 /// check if there's an existing declaration that can't be overloaded.
4818 ///
4819 /// \return true if this is a forbidden redeclaration
4820 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4821                                          Scope *S,
4822                                          DeclContext *Owner,
4823                                          DeclarationName Name,
4824                                          SourceLocation NameLoc,
4825                                          bool IsUnion) {
4826   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4827                  Sema::ForVisibleRedeclaration);
4828   if (!SemaRef.LookupName(R, S)) return false;
4829 
4830   // Pick a representative declaration.
4831   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4832   assert(PrevDecl && "Expected a non-null Decl");
4833 
4834   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4835     return false;
4836 
4837   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4838     << IsUnion << Name;
4839   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4840 
4841   return true;
4842 }
4843 
4844 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4845 /// anonymous struct or union AnonRecord into the owning context Owner
4846 /// and scope S. This routine will be invoked just after we realize
4847 /// that an unnamed union or struct is actually an anonymous union or
4848 /// struct, e.g.,
4849 ///
4850 /// @code
4851 /// union {
4852 ///   int i;
4853 ///   float f;
4854 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4855 ///    // f into the surrounding scope.x
4856 /// @endcode
4857 ///
4858 /// This routine is recursive, injecting the names of nested anonymous
4859 /// structs/unions into the owning context and scope as well.
4860 static bool
4861 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4862                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4863                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4864   bool Invalid = false;
4865 
4866   // Look every FieldDecl and IndirectFieldDecl with a name.
4867   for (auto *D : AnonRecord->decls()) {
4868     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4869         cast<NamedDecl>(D)->getDeclName()) {
4870       ValueDecl *VD = cast<ValueDecl>(D);
4871       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4872                                        VD->getLocation(),
4873                                        AnonRecord->isUnion())) {
4874         // C++ [class.union]p2:
4875         //   The names of the members of an anonymous union shall be
4876         //   distinct from the names of any other entity in the
4877         //   scope in which the anonymous union is declared.
4878         Invalid = true;
4879       } else {
4880         // C++ [class.union]p2:
4881         //   For the purpose of name lookup, after the anonymous union
4882         //   definition, the members of the anonymous union are
4883         //   considered to have been defined in the scope in which the
4884         //   anonymous union is declared.
4885         unsigned OldChainingSize = Chaining.size();
4886         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4887           Chaining.append(IF->chain_begin(), IF->chain_end());
4888         else
4889           Chaining.push_back(VD);
4890 
4891         assert(Chaining.size() >= 2);
4892         NamedDecl **NamedChain =
4893           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4894         for (unsigned i = 0; i < Chaining.size(); i++)
4895           NamedChain[i] = Chaining[i];
4896 
4897         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4898             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4899             VD->getType(), {NamedChain, Chaining.size()});
4900 
4901         for (const auto *Attr : VD->attrs())
4902           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4903 
4904         IndirectField->setAccess(AS);
4905         IndirectField->setImplicit();
4906         SemaRef.PushOnScopeChains(IndirectField, S);
4907 
4908         // That includes picking up the appropriate access specifier.
4909         if (AS != AS_none) IndirectField->setAccess(AS);
4910 
4911         Chaining.resize(OldChainingSize);
4912       }
4913     }
4914   }
4915 
4916   return Invalid;
4917 }
4918 
4919 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4920 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4921 /// illegal input values are mapped to SC_None.
4922 static StorageClass
4923 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4924   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4925   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4926          "Parser allowed 'typedef' as storage class VarDecl.");
4927   switch (StorageClassSpec) {
4928   case DeclSpec::SCS_unspecified:    return SC_None;
4929   case DeclSpec::SCS_extern:
4930     if (DS.isExternInLinkageSpec())
4931       return SC_None;
4932     return SC_Extern;
4933   case DeclSpec::SCS_static:         return SC_Static;
4934   case DeclSpec::SCS_auto:           return SC_Auto;
4935   case DeclSpec::SCS_register:       return SC_Register;
4936   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4937     // Illegal SCSs map to None: error reporting is up to the caller.
4938   case DeclSpec::SCS_mutable:        // Fall through.
4939   case DeclSpec::SCS_typedef:        return SC_None;
4940   }
4941   llvm_unreachable("unknown storage class specifier");
4942 }
4943 
4944 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4945   assert(Record->hasInClassInitializer());
4946 
4947   for (const auto *I : Record->decls()) {
4948     const auto *FD = dyn_cast<FieldDecl>(I);
4949     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4950       FD = IFD->getAnonField();
4951     if (FD && FD->hasInClassInitializer())
4952       return FD->getLocation();
4953   }
4954 
4955   llvm_unreachable("couldn't find in-class initializer");
4956 }
4957 
4958 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4959                                       SourceLocation DefaultInitLoc) {
4960   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4961     return;
4962 
4963   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4964   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4965 }
4966 
4967 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4968                                       CXXRecordDecl *AnonUnion) {
4969   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4970     return;
4971 
4972   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4973 }
4974 
4975 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4976 /// anonymous structure or union. Anonymous unions are a C++ feature
4977 /// (C++ [class.union]) and a C11 feature; anonymous structures
4978 /// are a C11 feature and GNU C++ extension.
4979 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4980                                         AccessSpecifier AS,
4981                                         RecordDecl *Record,
4982                                         const PrintingPolicy &Policy) {
4983   DeclContext *Owner = Record->getDeclContext();
4984 
4985   // Diagnose whether this anonymous struct/union is an extension.
4986   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4987     Diag(Record->getLocation(), diag::ext_anonymous_union);
4988   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4989     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4990   else if (!Record->isUnion() && !getLangOpts().C11)
4991     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4992 
4993   // C and C++ require different kinds of checks for anonymous
4994   // structs/unions.
4995   bool Invalid = false;
4996   if (getLangOpts().CPlusPlus) {
4997     const char *PrevSpec = nullptr;
4998     if (Record->isUnion()) {
4999       // C++ [class.union]p6:
5000       // C++17 [class.union.anon]p2:
5001       //   Anonymous unions declared in a named namespace or in the
5002       //   global namespace shall be declared static.
5003       unsigned DiagID;
5004       DeclContext *OwnerScope = Owner->getRedeclContext();
5005       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
5006           (OwnerScope->isTranslationUnit() ||
5007            (OwnerScope->isNamespace() &&
5008             !cast<NamespaceDecl>(OwnerScope)->isAnonymousNamespace()))) {
5009         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
5010           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
5011 
5012         // Recover by adding 'static'.
5013         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
5014                                PrevSpec, DiagID, Policy);
5015       }
5016       // C++ [class.union]p6:
5017       //   A storage class is not allowed in a declaration of an
5018       //   anonymous union in a class scope.
5019       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
5020                isa<RecordDecl>(Owner)) {
5021         Diag(DS.getStorageClassSpecLoc(),
5022              diag::err_anonymous_union_with_storage_spec)
5023           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
5024 
5025         // Recover by removing the storage specifier.
5026         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
5027                                SourceLocation(),
5028                                PrevSpec, DiagID, Context.getPrintingPolicy());
5029       }
5030     }
5031 
5032     // Ignore const/volatile/restrict qualifiers.
5033     if (DS.getTypeQualifiers()) {
5034       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
5035         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
5036           << Record->isUnion() << "const"
5037           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
5038       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
5039         Diag(DS.getVolatileSpecLoc(),
5040              diag::ext_anonymous_struct_union_qualified)
5041           << Record->isUnion() << "volatile"
5042           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
5043       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
5044         Diag(DS.getRestrictSpecLoc(),
5045              diag::ext_anonymous_struct_union_qualified)
5046           << Record->isUnion() << "restrict"
5047           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
5048       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
5049         Diag(DS.getAtomicSpecLoc(),
5050              diag::ext_anonymous_struct_union_qualified)
5051           << Record->isUnion() << "_Atomic"
5052           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
5053       if (DS.getTypeQualifiers() & DeclSpec::TQ_unaligned)
5054         Diag(DS.getUnalignedSpecLoc(),
5055              diag::ext_anonymous_struct_union_qualified)
5056           << Record->isUnion() << "__unaligned"
5057           << FixItHint::CreateRemoval(DS.getUnalignedSpecLoc());
5058 
5059       DS.ClearTypeQualifiers();
5060     }
5061 
5062     // C++ [class.union]p2:
5063     //   The member-specification of an anonymous union shall only
5064     //   define non-static data members. [Note: nested types and
5065     //   functions cannot be declared within an anonymous union. ]
5066     for (auto *Mem : Record->decls()) {
5067       // Ignore invalid declarations; we already diagnosed them.
5068       if (Mem->isInvalidDecl())
5069         continue;
5070 
5071       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
5072         // C++ [class.union]p3:
5073         //   An anonymous union shall not have private or protected
5074         //   members (clause 11).
5075         assert(FD->getAccess() != AS_none);
5076         if (FD->getAccess() != AS_public) {
5077           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
5078             << Record->isUnion() << (FD->getAccess() == AS_protected);
5079           Invalid = true;
5080         }
5081 
5082         // C++ [class.union]p1
5083         //   An object of a class with a non-trivial constructor, a non-trivial
5084         //   copy constructor, a non-trivial destructor, or a non-trivial copy
5085         //   assignment operator cannot be a member of a union, nor can an
5086         //   array of such objects.
5087         if (CheckNontrivialField(FD))
5088           Invalid = true;
5089       } else if (Mem->isImplicit()) {
5090         // Any implicit members are fine.
5091       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
5092         // This is a type that showed up in an
5093         // elaborated-type-specifier inside the anonymous struct or
5094         // union, but which actually declares a type outside of the
5095         // anonymous struct or union. It's okay.
5096       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
5097         if (!MemRecord->isAnonymousStructOrUnion() &&
5098             MemRecord->getDeclName()) {
5099           // Visual C++ allows type definition in anonymous struct or union.
5100           if (getLangOpts().MicrosoftExt)
5101             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
5102               << Record->isUnion();
5103           else {
5104             // This is a nested type declaration.
5105             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
5106               << Record->isUnion();
5107             Invalid = true;
5108           }
5109         } else {
5110           // This is an anonymous type definition within another anonymous type.
5111           // This is a popular extension, provided by Plan9, MSVC and GCC, but
5112           // not part of standard C++.
5113           Diag(MemRecord->getLocation(),
5114                diag::ext_anonymous_record_with_anonymous_type)
5115             << Record->isUnion();
5116         }
5117       } else if (isa<AccessSpecDecl>(Mem)) {
5118         // Any access specifier is fine.
5119       } else if (isa<StaticAssertDecl>(Mem)) {
5120         // In C++1z, static_assert declarations are also fine.
5121       } else {
5122         // We have something that isn't a non-static data
5123         // member. Complain about it.
5124         unsigned DK = diag::err_anonymous_record_bad_member;
5125         if (isa<TypeDecl>(Mem))
5126           DK = diag::err_anonymous_record_with_type;
5127         else if (isa<FunctionDecl>(Mem))
5128           DK = diag::err_anonymous_record_with_function;
5129         else if (isa<VarDecl>(Mem))
5130           DK = diag::err_anonymous_record_with_static;
5131 
5132         // Visual C++ allows type definition in anonymous struct or union.
5133         if (getLangOpts().MicrosoftExt &&
5134             DK == diag::err_anonymous_record_with_type)
5135           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
5136             << Record->isUnion();
5137         else {
5138           Diag(Mem->getLocation(), DK) << Record->isUnion();
5139           Invalid = true;
5140         }
5141       }
5142     }
5143 
5144     // C++11 [class.union]p8 (DR1460):
5145     //   At most one variant member of a union may have a
5146     //   brace-or-equal-initializer.
5147     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
5148         Owner->isRecord())
5149       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
5150                                 cast<CXXRecordDecl>(Record));
5151   }
5152 
5153   if (!Record->isUnion() && !Owner->isRecord()) {
5154     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
5155       << getLangOpts().CPlusPlus;
5156     Invalid = true;
5157   }
5158 
5159   // C++ [dcl.dcl]p3:
5160   //   [If there are no declarators], and except for the declaration of an
5161   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
5162   //   names into the program
5163   // C++ [class.mem]p2:
5164   //   each such member-declaration shall either declare at least one member
5165   //   name of the class or declare at least one unnamed bit-field
5166   //
5167   // For C this is an error even for a named struct, and is diagnosed elsewhere.
5168   if (getLangOpts().CPlusPlus && Record->field_empty())
5169     Diag(DS.getBeginLoc(), diag::ext_no_declarators) << DS.getSourceRange();
5170 
5171   // Mock up a declarator.
5172   Declarator Dc(DS, DeclaratorContext::Member);
5173   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
5174   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
5175 
5176   // Create a declaration for this anonymous struct/union.
5177   NamedDecl *Anon = nullptr;
5178   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
5179     Anon = FieldDecl::Create(
5180         Context, OwningClass, DS.getBeginLoc(), Record->getLocation(),
5181         /*IdentifierInfo=*/nullptr, Context.getTypeDeclType(Record), TInfo,
5182         /*BitWidth=*/nullptr, /*Mutable=*/false,
5183         /*InitStyle=*/ICIS_NoInit);
5184     Anon->setAccess(AS);
5185     ProcessDeclAttributes(S, Anon, Dc);
5186 
5187     if (getLangOpts().CPlusPlus)
5188       FieldCollector->Add(cast<FieldDecl>(Anon));
5189   } else {
5190     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
5191     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
5192     if (SCSpec == DeclSpec::SCS_mutable) {
5193       // mutable can only appear on non-static class members, so it's always
5194       // an error here
5195       Diag(Record->getLocation(), diag::err_mutable_nonmember);
5196       Invalid = true;
5197       SC = SC_None;
5198     }
5199 
5200     assert(DS.getAttributes().empty() && "No attribute expected");
5201     Anon = VarDecl::Create(Context, Owner, DS.getBeginLoc(),
5202                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
5203                            Context.getTypeDeclType(Record), TInfo, SC);
5204 
5205     // Default-initialize the implicit variable. This initialization will be
5206     // trivial in almost all cases, except if a union member has an in-class
5207     // initializer:
5208     //   union { int n = 0; };
5209     ActOnUninitializedDecl(Anon);
5210   }
5211   Anon->setImplicit();
5212 
5213   // Mark this as an anonymous struct/union type.
5214   Record->setAnonymousStructOrUnion(true);
5215 
5216   // Add the anonymous struct/union object to the current
5217   // context. We'll be referencing this object when we refer to one of
5218   // its members.
5219   Owner->addDecl(Anon);
5220 
5221   // Inject the members of the anonymous struct/union into the owning
5222   // context and into the identifier resolver chain for name lookup
5223   // purposes.
5224   SmallVector<NamedDecl*, 2> Chain;
5225   Chain.push_back(Anon);
5226 
5227   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
5228     Invalid = true;
5229 
5230   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
5231     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
5232       MangleNumberingContext *MCtx;
5233       Decl *ManglingContextDecl;
5234       std::tie(MCtx, ManglingContextDecl) =
5235           getCurrentMangleNumberContext(NewVD->getDeclContext());
5236       if (MCtx) {
5237         Context.setManglingNumber(
5238             NewVD, MCtx->getManglingNumber(
5239                        NewVD, getMSManglingNumber(getLangOpts(), S)));
5240         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
5241       }
5242     }
5243   }
5244 
5245   if (Invalid)
5246     Anon->setInvalidDecl();
5247 
5248   return Anon;
5249 }
5250 
5251 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
5252 /// Microsoft C anonymous structure.
5253 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
5254 /// Example:
5255 ///
5256 /// struct A { int a; };
5257 /// struct B { struct A; int b; };
5258 ///
5259 /// void foo() {
5260 ///   B var;
5261 ///   var.a = 3;
5262 /// }
5263 ///
5264 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
5265                                            RecordDecl *Record) {
5266   assert(Record && "expected a record!");
5267 
5268   // Mock up a declarator.
5269   Declarator Dc(DS, DeclaratorContext::TypeName);
5270   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
5271   assert(TInfo && "couldn't build declarator info for anonymous struct");
5272 
5273   auto *ParentDecl = cast<RecordDecl>(CurContext);
5274   QualType RecTy = Context.getTypeDeclType(Record);
5275 
5276   // Create a declaration for this anonymous struct.
5277   NamedDecl *Anon =
5278       FieldDecl::Create(Context, ParentDecl, DS.getBeginLoc(), DS.getBeginLoc(),
5279                         /*IdentifierInfo=*/nullptr, RecTy, TInfo,
5280                         /*BitWidth=*/nullptr, /*Mutable=*/false,
5281                         /*InitStyle=*/ICIS_NoInit);
5282   Anon->setImplicit();
5283 
5284   // Add the anonymous struct object to the current context.
5285   CurContext->addDecl(Anon);
5286 
5287   // Inject the members of the anonymous struct into the current
5288   // context and into the identifier resolver chain for name lookup
5289   // purposes.
5290   SmallVector<NamedDecl*, 2> Chain;
5291   Chain.push_back(Anon);
5292 
5293   RecordDecl *RecordDef = Record->getDefinition();
5294   if (RequireCompleteSizedType(Anon->getLocation(), RecTy,
5295                                diag::err_field_incomplete_or_sizeless) ||
5296       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
5297                                           AS_none, Chain)) {
5298     Anon->setInvalidDecl();
5299     ParentDecl->setInvalidDecl();
5300   }
5301 
5302   return Anon;
5303 }
5304 
5305 /// GetNameForDeclarator - Determine the full declaration name for the
5306 /// given Declarator.
5307 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
5308   return GetNameFromUnqualifiedId(D.getName());
5309 }
5310 
5311 /// Retrieves the declaration name from a parsed unqualified-id.
5312 DeclarationNameInfo
5313 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
5314   DeclarationNameInfo NameInfo;
5315   NameInfo.setLoc(Name.StartLocation);
5316 
5317   switch (Name.getKind()) {
5318 
5319   case UnqualifiedIdKind::IK_ImplicitSelfParam:
5320   case UnqualifiedIdKind::IK_Identifier:
5321     NameInfo.setName(Name.Identifier);
5322     return NameInfo;
5323 
5324   case UnqualifiedIdKind::IK_DeductionGuideName: {
5325     // C++ [temp.deduct.guide]p3:
5326     //   The simple-template-id shall name a class template specialization.
5327     //   The template-name shall be the same identifier as the template-name
5328     //   of the simple-template-id.
5329     // These together intend to imply that the template-name shall name a
5330     // class template.
5331     // FIXME: template<typename T> struct X {};
5332     //        template<typename T> using Y = X<T>;
5333     //        Y(int) -> Y<int>;
5334     //   satisfies these rules but does not name a class template.
5335     TemplateName TN = Name.TemplateName.get().get();
5336     auto *Template = TN.getAsTemplateDecl();
5337     if (!Template || !isa<ClassTemplateDecl>(Template)) {
5338       Diag(Name.StartLocation,
5339            diag::err_deduction_guide_name_not_class_template)
5340         << (int)getTemplateNameKindForDiagnostics(TN) << TN;
5341       if (Template)
5342         Diag(Template->getLocation(), diag::note_template_decl_here);
5343       return DeclarationNameInfo();
5344     }
5345 
5346     NameInfo.setName(
5347         Context.DeclarationNames.getCXXDeductionGuideName(Template));
5348     return NameInfo;
5349   }
5350 
5351   case UnqualifiedIdKind::IK_OperatorFunctionId:
5352     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
5353                                            Name.OperatorFunctionId.Operator));
5354     NameInfo.setCXXOperatorNameRange(SourceRange(
5355         Name.OperatorFunctionId.SymbolLocations[0], Name.EndLocation));
5356     return NameInfo;
5357 
5358   case UnqualifiedIdKind::IK_LiteralOperatorId:
5359     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
5360                                                            Name.Identifier));
5361     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
5362     return NameInfo;
5363 
5364   case UnqualifiedIdKind::IK_ConversionFunctionId: {
5365     TypeSourceInfo *TInfo;
5366     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
5367     if (Ty.isNull())
5368       return DeclarationNameInfo();
5369     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
5370                                                Context.getCanonicalType(Ty)));
5371     NameInfo.setNamedTypeInfo(TInfo);
5372     return NameInfo;
5373   }
5374 
5375   case UnqualifiedIdKind::IK_ConstructorName: {
5376     TypeSourceInfo *TInfo;
5377     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
5378     if (Ty.isNull())
5379       return DeclarationNameInfo();
5380     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5381                                               Context.getCanonicalType(Ty)));
5382     NameInfo.setNamedTypeInfo(TInfo);
5383     return NameInfo;
5384   }
5385 
5386   case UnqualifiedIdKind::IK_ConstructorTemplateId: {
5387     // In well-formed code, we can only have a constructor
5388     // template-id that refers to the current context, so go there
5389     // to find the actual type being constructed.
5390     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
5391     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
5392       return DeclarationNameInfo();
5393 
5394     // Determine the type of the class being constructed.
5395     QualType CurClassType = Context.getTypeDeclType(CurClass);
5396 
5397     // FIXME: Check two things: that the template-id names the same type as
5398     // CurClassType, and that the template-id does not occur when the name
5399     // was qualified.
5400 
5401     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
5402                                     Context.getCanonicalType(CurClassType)));
5403     // FIXME: should we retrieve TypeSourceInfo?
5404     NameInfo.setNamedTypeInfo(nullptr);
5405     return NameInfo;
5406   }
5407 
5408   case UnqualifiedIdKind::IK_DestructorName: {
5409     TypeSourceInfo *TInfo;
5410     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
5411     if (Ty.isNull())
5412       return DeclarationNameInfo();
5413     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
5414                                               Context.getCanonicalType(Ty)));
5415     NameInfo.setNamedTypeInfo(TInfo);
5416     return NameInfo;
5417   }
5418 
5419   case UnqualifiedIdKind::IK_TemplateId: {
5420     TemplateName TName = Name.TemplateId->Template.get();
5421     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
5422     return Context.getNameForTemplate(TName, TNameLoc);
5423   }
5424 
5425   } // switch (Name.getKind())
5426 
5427   llvm_unreachable("Unknown name kind");
5428 }
5429 
5430 static QualType getCoreType(QualType Ty) {
5431   do {
5432     if (Ty->isPointerType() || Ty->isReferenceType())
5433       Ty = Ty->getPointeeType();
5434     else if (Ty->isArrayType())
5435       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
5436     else
5437       return Ty.withoutLocalFastQualifiers();
5438   } while (true);
5439 }
5440 
5441 /// hasSimilarParameters - Determine whether the C++ functions Declaration
5442 /// and Definition have "nearly" matching parameters. This heuristic is
5443 /// used to improve diagnostics in the case where an out-of-line function
5444 /// definition doesn't match any declaration within the class or namespace.
5445 /// Also sets Params to the list of indices to the parameters that differ
5446 /// between the declaration and the definition. If hasSimilarParameters
5447 /// returns true and Params is empty, then all of the parameters match.
5448 static bool hasSimilarParameters(ASTContext &Context,
5449                                      FunctionDecl *Declaration,
5450                                      FunctionDecl *Definition,
5451                                      SmallVectorImpl<unsigned> &Params) {
5452   Params.clear();
5453   if (Declaration->param_size() != Definition->param_size())
5454     return false;
5455   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
5456     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
5457     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
5458 
5459     // The parameter types are identical
5460     if (Context.hasSameUnqualifiedType(DefParamTy, DeclParamTy))
5461       continue;
5462 
5463     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
5464     QualType DefParamBaseTy = getCoreType(DefParamTy);
5465     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
5466     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
5467 
5468     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
5469         (DeclTyName && DeclTyName == DefTyName))
5470       Params.push_back(Idx);
5471     else  // The two parameters aren't even close
5472       return false;
5473   }
5474 
5475   return true;
5476 }
5477 
5478 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
5479 /// declarator needs to be rebuilt in the current instantiation.
5480 /// Any bits of declarator which appear before the name are valid for
5481 /// consideration here.  That's specifically the type in the decl spec
5482 /// and the base type in any member-pointer chunks.
5483 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
5484                                                     DeclarationName Name) {
5485   // The types we specifically need to rebuild are:
5486   //   - typenames, typeofs, and decltypes
5487   //   - types which will become injected class names
5488   // Of course, we also need to rebuild any type referencing such a
5489   // type.  It's safest to just say "dependent", but we call out a
5490   // few cases here.
5491 
5492   DeclSpec &DS = D.getMutableDeclSpec();
5493   switch (DS.getTypeSpecType()) {
5494   case DeclSpec::TST_typename:
5495   case DeclSpec::TST_typeofType:
5496   case DeclSpec::TST_underlyingType:
5497   case DeclSpec::TST_atomic: {
5498     // Grab the type from the parser.
5499     TypeSourceInfo *TSI = nullptr;
5500     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
5501     if (T.isNull() || !T->isInstantiationDependentType()) break;
5502 
5503     // Make sure there's a type source info.  This isn't really much
5504     // of a waste; most dependent types should have type source info
5505     // attached already.
5506     if (!TSI)
5507       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
5508 
5509     // Rebuild the type in the current instantiation.
5510     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
5511     if (!TSI) return true;
5512 
5513     // Store the new type back in the decl spec.
5514     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
5515     DS.UpdateTypeRep(LocType);
5516     break;
5517   }
5518 
5519   case DeclSpec::TST_decltype:
5520   case DeclSpec::TST_typeofExpr: {
5521     Expr *E = DS.getRepAsExpr();
5522     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
5523     if (Result.isInvalid()) return true;
5524     DS.UpdateExprRep(Result.get());
5525     break;
5526   }
5527 
5528   default:
5529     // Nothing to do for these decl specs.
5530     break;
5531   }
5532 
5533   // It doesn't matter what order we do this in.
5534   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
5535     DeclaratorChunk &Chunk = D.getTypeObject(I);
5536 
5537     // The only type information in the declarator which can come
5538     // before the declaration name is the base type of a member
5539     // pointer.
5540     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
5541       continue;
5542 
5543     // Rebuild the scope specifier in-place.
5544     CXXScopeSpec &SS = Chunk.Mem.Scope();
5545     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
5546       return true;
5547   }
5548 
5549   return false;
5550 }
5551 
5552 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
5553   D.setFunctionDefinitionKind(FunctionDefinitionKind::Declaration);
5554   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
5555 
5556   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
5557       Dcl && Dcl->getDeclContext()->isFileContext())
5558     Dcl->setTopLevelDeclInObjCContainer();
5559 
5560   if (getLangOpts().OpenCL)
5561     setCurrentOpenCLExtensionForDecl(Dcl);
5562 
5563   return Dcl;
5564 }
5565 
5566 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
5567 ///   If T is the name of a class, then each of the following shall have a
5568 ///   name different from T:
5569 ///     - every static data member of class T;
5570 ///     - every member function of class T
5571 ///     - every member of class T that is itself a type;
5572 /// \returns true if the declaration name violates these rules.
5573 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
5574                                    DeclarationNameInfo NameInfo) {
5575   DeclarationName Name = NameInfo.getName();
5576 
5577   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
5578   while (Record && Record->isAnonymousStructOrUnion())
5579     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
5580   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
5581     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
5582     return true;
5583   }
5584 
5585   return false;
5586 }
5587 
5588 /// Diagnose a declaration whose declarator-id has the given
5589 /// nested-name-specifier.
5590 ///
5591 /// \param SS The nested-name-specifier of the declarator-id.
5592 ///
5593 /// \param DC The declaration context to which the nested-name-specifier
5594 /// resolves.
5595 ///
5596 /// \param Name The name of the entity being declared.
5597 ///
5598 /// \param Loc The location of the name of the entity being declared.
5599 ///
5600 /// \param IsTemplateId Whether the name is a (simple-)template-id, and thus
5601 /// we're declaring an explicit / partial specialization / instantiation.
5602 ///
5603 /// \returns true if we cannot safely recover from this error, false otherwise.
5604 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
5605                                         DeclarationName Name,
5606                                         SourceLocation Loc, bool IsTemplateId) {
5607   DeclContext *Cur = CurContext;
5608   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
5609     Cur = Cur->getParent();
5610 
5611   // If the user provided a superfluous scope specifier that refers back to the
5612   // class in which the entity is already declared, diagnose and ignore it.
5613   //
5614   // class X {
5615   //   void X::f();
5616   // };
5617   //
5618   // Note, it was once ill-formed to give redundant qualification in all
5619   // contexts, but that rule was removed by DR482.
5620   if (Cur->Equals(DC)) {
5621     if (Cur->isRecord()) {
5622       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
5623                                       : diag::err_member_extra_qualification)
5624         << Name << FixItHint::CreateRemoval(SS.getRange());
5625       SS.clear();
5626     } else {
5627       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
5628     }
5629     return false;
5630   }
5631 
5632   // Check whether the qualifying scope encloses the scope of the original
5633   // declaration. For a template-id, we perform the checks in
5634   // CheckTemplateSpecializationScope.
5635   if (!Cur->Encloses(DC) && !IsTemplateId) {
5636     if (Cur->isRecord())
5637       Diag(Loc, diag::err_member_qualification)
5638         << Name << SS.getRange();
5639     else if (isa<TranslationUnitDecl>(DC))
5640       Diag(Loc, diag::err_invalid_declarator_global_scope)
5641         << Name << SS.getRange();
5642     else if (isa<FunctionDecl>(Cur))
5643       Diag(Loc, diag::err_invalid_declarator_in_function)
5644         << Name << SS.getRange();
5645     else if (isa<BlockDecl>(Cur))
5646       Diag(Loc, diag::err_invalid_declarator_in_block)
5647         << Name << SS.getRange();
5648     else
5649       Diag(Loc, diag::err_invalid_declarator_scope)
5650       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
5651 
5652     return true;
5653   }
5654 
5655   if (Cur->isRecord()) {
5656     // Cannot qualify members within a class.
5657     Diag(Loc, diag::err_member_qualification)
5658       << Name << SS.getRange();
5659     SS.clear();
5660 
5661     // C++ constructors and destructors with incorrect scopes can break
5662     // our AST invariants by having the wrong underlying types. If
5663     // that's the case, then drop this declaration entirely.
5664     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
5665          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
5666         !Context.hasSameType(Name.getCXXNameType(),
5667                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
5668       return true;
5669 
5670     return false;
5671   }
5672 
5673   // C++11 [dcl.meaning]p1:
5674   //   [...] "The nested-name-specifier of the qualified declarator-id shall
5675   //   not begin with a decltype-specifer"
5676   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
5677   while (SpecLoc.getPrefix())
5678     SpecLoc = SpecLoc.getPrefix();
5679   if (dyn_cast_or_null<DecltypeType>(
5680         SpecLoc.getNestedNameSpecifier()->getAsType()))
5681     Diag(Loc, diag::err_decltype_in_declarator)
5682       << SpecLoc.getTypeLoc().getSourceRange();
5683 
5684   return false;
5685 }
5686 
5687 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
5688                                   MultiTemplateParamsArg TemplateParamLists) {
5689   // TODO: consider using NameInfo for diagnostic.
5690   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
5691   DeclarationName Name = NameInfo.getName();
5692 
5693   // All of these full declarators require an identifier.  If it doesn't have
5694   // one, the ParsedFreeStandingDeclSpec action should be used.
5695   if (D.isDecompositionDeclarator()) {
5696     return ActOnDecompositionDeclarator(S, D, TemplateParamLists);
5697   } else if (!Name) {
5698     if (!D.isInvalidType())  // Reject this if we think it is valid.
5699       Diag(D.getDeclSpec().getBeginLoc(), diag::err_declarator_need_ident)
5700           << D.getDeclSpec().getSourceRange() << D.getSourceRange();
5701     return nullptr;
5702   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
5703     return nullptr;
5704 
5705   // The scope passed in may not be a decl scope.  Zip up the scope tree until
5706   // we find one that is.
5707   while ((S->getFlags() & Scope::DeclScope) == 0 ||
5708          (S->getFlags() & Scope::TemplateParamScope) != 0)
5709     S = S->getParent();
5710 
5711   DeclContext *DC = CurContext;
5712   if (D.getCXXScopeSpec().isInvalid())
5713     D.setInvalidType();
5714   else if (D.getCXXScopeSpec().isSet()) {
5715     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
5716                                         UPPC_DeclarationQualifier))
5717       return nullptr;
5718 
5719     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
5720     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
5721     if (!DC || isa<EnumDecl>(DC)) {
5722       // If we could not compute the declaration context, it's because the
5723       // declaration context is dependent but does not refer to a class,
5724       // class template, or class template partial specialization. Complain
5725       // and return early, to avoid the coming semantic disaster.
5726       Diag(D.getIdentifierLoc(),
5727            diag::err_template_qualified_declarator_no_match)
5728         << D.getCXXScopeSpec().getScopeRep()
5729         << D.getCXXScopeSpec().getRange();
5730       return nullptr;
5731     }
5732     bool IsDependentContext = DC->isDependentContext();
5733 
5734     if (!IsDependentContext &&
5735         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
5736       return nullptr;
5737 
5738     // If a class is incomplete, do not parse entities inside it.
5739     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
5740       Diag(D.getIdentifierLoc(),
5741            diag::err_member_def_undefined_record)
5742         << Name << DC << D.getCXXScopeSpec().getRange();
5743       return nullptr;
5744     }
5745     if (!D.getDeclSpec().isFriendSpecified()) {
5746       if (diagnoseQualifiedDeclaration(
5747               D.getCXXScopeSpec(), DC, Name, D.getIdentifierLoc(),
5748               D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId)) {
5749         if (DC->isRecord())
5750           return nullptr;
5751 
5752         D.setInvalidType();
5753       }
5754     }
5755 
5756     // Check whether we need to rebuild the type of the given
5757     // declaration in the current instantiation.
5758     if (EnteringContext && IsDependentContext &&
5759         TemplateParamLists.size() != 0) {
5760       ContextRAII SavedContext(*this, DC);
5761       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
5762         D.setInvalidType();
5763     }
5764   }
5765 
5766   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
5767   QualType R = TInfo->getType();
5768 
5769   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
5770                                       UPPC_DeclarationType))
5771     D.setInvalidType();
5772 
5773   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
5774                         forRedeclarationInCurContext());
5775 
5776   // See if this is a redefinition of a variable in the same scope.
5777   if (!D.getCXXScopeSpec().isSet()) {
5778     bool IsLinkageLookup = false;
5779     bool CreateBuiltins = false;
5780 
5781     // If the declaration we're planning to build will be a function
5782     // or object with linkage, then look for another declaration with
5783     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
5784     //
5785     // If the declaration we're planning to build will be declared with
5786     // external linkage in the translation unit, create any builtin with
5787     // the same name.
5788     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
5789       /* Do nothing*/;
5790     else if (CurContext->isFunctionOrMethod() &&
5791              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
5792               R->isFunctionType())) {
5793       IsLinkageLookup = true;
5794       CreateBuiltins =
5795           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
5796     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
5797                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
5798       CreateBuiltins = true;
5799 
5800     if (IsLinkageLookup) {
5801       Previous.clear(LookupRedeclarationWithLinkage);
5802       Previous.setRedeclarationKind(ForExternalRedeclaration);
5803     }
5804 
5805     LookupName(Previous, S, CreateBuiltins);
5806   } else { // Something like "int foo::x;"
5807     LookupQualifiedName(Previous, DC);
5808 
5809     // C++ [dcl.meaning]p1:
5810     //   When the declarator-id is qualified, the declaration shall refer to a
5811     //  previously declared member of the class or namespace to which the
5812     //  qualifier refers (or, in the case of a namespace, of an element of the
5813     //  inline namespace set of that namespace (7.3.1)) or to a specialization
5814     //  thereof; [...]
5815     //
5816     // Note that we already checked the context above, and that we do not have
5817     // enough information to make sure that Previous contains the declaration
5818     // we want to match. For example, given:
5819     //
5820     //   class X {
5821     //     void f();
5822     //     void f(float);
5823     //   };
5824     //
5825     //   void X::f(int) { } // ill-formed
5826     //
5827     // In this case, Previous will point to the overload set
5828     // containing the two f's declared in X, but neither of them
5829     // matches.
5830 
5831     // C++ [dcl.meaning]p1:
5832     //   [...] the member shall not merely have been introduced by a
5833     //   using-declaration in the scope of the class or namespace nominated by
5834     //   the nested-name-specifier of the declarator-id.
5835     RemoveUsingDecls(Previous);
5836   }
5837 
5838   if (Previous.isSingleResult() &&
5839       Previous.getFoundDecl()->isTemplateParameter()) {
5840     // Maybe we will complain about the shadowed template parameter.
5841     if (!D.isInvalidType())
5842       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
5843                                       Previous.getFoundDecl());
5844 
5845     // Just pretend that we didn't see the previous declaration.
5846     Previous.clear();
5847   }
5848 
5849   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
5850     // Forget that the previous declaration is the injected-class-name.
5851     Previous.clear();
5852 
5853   // In C++, the previous declaration we find might be a tag type
5854   // (class or enum). In this case, the new declaration will hide the
5855   // tag type. Note that this applies to functions, function templates, and
5856   // variables, but not to typedefs (C++ [dcl.typedef]p4) or variable templates.
5857   if (Previous.isSingleTagDecl() &&
5858       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
5859       (TemplateParamLists.size() == 0 || R->isFunctionType()))
5860     Previous.clear();
5861 
5862   // Check that there are no default arguments other than in the parameters
5863   // of a function declaration (C++ only).
5864   if (getLangOpts().CPlusPlus)
5865     CheckExtraCXXDefaultArguments(D);
5866 
5867   NamedDecl *New;
5868 
5869   bool AddToScope = true;
5870   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5871     if (TemplateParamLists.size()) {
5872       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5873       return nullptr;
5874     }
5875 
5876     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5877   } else if (R->isFunctionType()) {
5878     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5879                                   TemplateParamLists,
5880                                   AddToScope);
5881   } else {
5882     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5883                                   AddToScope);
5884   }
5885 
5886   if (!New)
5887     return nullptr;
5888 
5889   // If this has an identifier and is not a function template specialization,
5890   // add it to the scope stack.
5891   if (New->getDeclName() && AddToScope)
5892     PushOnScopeChains(New, S);
5893 
5894   if (isInOpenMPDeclareTargetContext())
5895     checkDeclIsAllowedInOpenMPTarget(nullptr, New);
5896 
5897   return New;
5898 }
5899 
5900 /// Helper method to turn variable array types into constant array
5901 /// types in certain situations which would otherwise be errors (for
5902 /// GCC compatibility).
5903 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5904                                                     ASTContext &Context,
5905                                                     bool &SizeIsNegative,
5906                                                     llvm::APSInt &Oversized) {
5907   // This method tries to turn a variable array into a constant
5908   // array even when the size isn't an ICE.  This is necessary
5909   // for compatibility with code that depends on gcc's buggy
5910   // constant expression folding, like struct {char x[(int)(char*)2];}
5911   SizeIsNegative = false;
5912   Oversized = 0;
5913 
5914   if (T->isDependentType())
5915     return QualType();
5916 
5917   QualifierCollector Qs;
5918   const Type *Ty = Qs.strip(T);
5919 
5920   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5921     QualType Pointee = PTy->getPointeeType();
5922     QualType FixedType =
5923         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5924                                             Oversized);
5925     if (FixedType.isNull()) return FixedType;
5926     FixedType = Context.getPointerType(FixedType);
5927     return Qs.apply(Context, FixedType);
5928   }
5929   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5930     QualType Inner = PTy->getInnerType();
5931     QualType FixedType =
5932         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5933                                             Oversized);
5934     if (FixedType.isNull()) return FixedType;
5935     FixedType = Context.getParenType(FixedType);
5936     return Qs.apply(Context, FixedType);
5937   }
5938 
5939   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5940   if (!VLATy)
5941     return QualType();
5942 
5943   QualType ElemTy = VLATy->getElementType();
5944   if (ElemTy->isVariablyModifiedType()) {
5945     ElemTy = TryToFixInvalidVariablyModifiedType(ElemTy, Context,
5946                                                  SizeIsNegative, Oversized);
5947     if (ElemTy.isNull())
5948       return QualType();
5949   }
5950 
5951   Expr::EvalResult Result;
5952   if (!VLATy->getSizeExpr() ||
5953       !VLATy->getSizeExpr()->EvaluateAsInt(Result, Context))
5954     return QualType();
5955 
5956   llvm::APSInt Res = Result.Val.getInt();
5957 
5958   // Check whether the array size is negative.
5959   if (Res.isSigned() && Res.isNegative()) {
5960     SizeIsNegative = true;
5961     return QualType();
5962   }
5963 
5964   // Check whether the array is too large to be addressed.
5965   unsigned ActiveSizeBits =
5966       (!ElemTy->isDependentType() && !ElemTy->isVariablyModifiedType() &&
5967        !ElemTy->isIncompleteType() && !ElemTy->isUndeducedType())
5968           ? ConstantArrayType::getNumAddressingBits(Context, ElemTy, Res)
5969           : Res.getActiveBits();
5970   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5971     Oversized = Res;
5972     return QualType();
5973   }
5974 
5975   QualType FoldedArrayType = Context.getConstantArrayType(
5976       ElemTy, Res, VLATy->getSizeExpr(), ArrayType::Normal, 0);
5977   return Qs.apply(Context, FoldedArrayType);
5978 }
5979 
5980 static void
5981 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5982   SrcTL = SrcTL.getUnqualifiedLoc();
5983   DstTL = DstTL.getUnqualifiedLoc();
5984   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5985     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5986     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5987                                       DstPTL.getPointeeLoc());
5988     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5989     return;
5990   }
5991   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5992     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5993     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5994                                       DstPTL.getInnerLoc());
5995     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5996     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5997     return;
5998   }
5999   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
6000   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
6001   TypeLoc SrcElemTL = SrcATL.getElementLoc();
6002   TypeLoc DstElemTL = DstATL.getElementLoc();
6003   if (VariableArrayTypeLoc SrcElemATL =
6004           SrcElemTL.getAs<VariableArrayTypeLoc>()) {
6005     ConstantArrayTypeLoc DstElemATL = DstElemTL.castAs<ConstantArrayTypeLoc>();
6006     FixInvalidVariablyModifiedTypeLoc(SrcElemATL, DstElemATL);
6007   } else {
6008     DstElemTL.initializeFullCopy(SrcElemTL);
6009   }
6010   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
6011   DstATL.setSizeExpr(SrcATL.getSizeExpr());
6012   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
6013 }
6014 
6015 /// Helper method to turn variable array types into constant array
6016 /// types in certain situations which would otherwise be errors (for
6017 /// GCC compatibility).
6018 static TypeSourceInfo*
6019 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
6020                                               ASTContext &Context,
6021                                               bool &SizeIsNegative,
6022                                               llvm::APSInt &Oversized) {
6023   QualType FixedTy
6024     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
6025                                           SizeIsNegative, Oversized);
6026   if (FixedTy.isNull())
6027     return nullptr;
6028   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
6029   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
6030                                     FixedTInfo->getTypeLoc());
6031   return FixedTInfo;
6032 }
6033 
6034 /// Attempt to fold a variable-sized type to a constant-sized type, returning
6035 /// true if we were successful.
6036 static bool tryToFixVariablyModifiedVarType(Sema &S, TypeSourceInfo *&TInfo,
6037                                             QualType &T, SourceLocation Loc,
6038                                             unsigned FailedFoldDiagID) {
6039   bool SizeIsNegative;
6040   llvm::APSInt Oversized;
6041   TypeSourceInfo *FixedTInfo = TryToFixInvalidVariablyModifiedTypeSourceInfo(
6042       TInfo, S.Context, SizeIsNegative, Oversized);
6043   if (FixedTInfo) {
6044     S.Diag(Loc, diag::ext_vla_folded_to_constant);
6045     TInfo = FixedTInfo;
6046     T = FixedTInfo->getType();
6047     return true;
6048   }
6049 
6050   if (SizeIsNegative)
6051     S.Diag(Loc, diag::err_typecheck_negative_array_size);
6052   else if (Oversized.getBoolValue())
6053     S.Diag(Loc, diag::err_array_too_large) << Oversized.toString(10);
6054   else if (FailedFoldDiagID)
6055     S.Diag(Loc, FailedFoldDiagID);
6056   return false;
6057 }
6058 
6059 /// Register the given locally-scoped extern "C" declaration so
6060 /// that it can be found later for redeclarations. We include any extern "C"
6061 /// declaration that is not visible in the translation unit here, not just
6062 /// function-scope declarations.
6063 void
6064 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
6065   if (!getLangOpts().CPlusPlus &&
6066       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
6067     // Don't need to track declarations in the TU in C.
6068     return;
6069 
6070   // Note that we have a locally-scoped external with this name.
6071   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
6072 }
6073 
6074 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
6075   // FIXME: We can have multiple results via __attribute__((overloadable)).
6076   auto Result = Context.getExternCContextDecl()->lookup(Name);
6077   return Result.empty() ? nullptr : *Result.begin();
6078 }
6079 
6080 /// Diagnose function specifiers on a declaration of an identifier that
6081 /// does not identify a function.
6082 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
6083   // FIXME: We should probably indicate the identifier in question to avoid
6084   // confusion for constructs like "virtual int a(), b;"
6085   if (DS.isVirtualSpecified())
6086     Diag(DS.getVirtualSpecLoc(),
6087          diag::err_virtual_non_function);
6088 
6089   if (DS.hasExplicitSpecifier())
6090     Diag(DS.getExplicitSpecLoc(),
6091          diag::err_explicit_non_function);
6092 
6093   if (DS.isNoreturnSpecified())
6094     Diag(DS.getNoreturnSpecLoc(),
6095          diag::err_noreturn_non_function);
6096 }
6097 
6098 NamedDecl*
6099 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
6100                              TypeSourceInfo *TInfo, LookupResult &Previous) {
6101   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
6102   if (D.getCXXScopeSpec().isSet()) {
6103     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
6104       << D.getCXXScopeSpec().getRange();
6105     D.setInvalidType();
6106     // Pretend we didn't see the scope specifier.
6107     DC = CurContext;
6108     Previous.clear();
6109   }
6110 
6111   DiagnoseFunctionSpecifiers(D.getDeclSpec());
6112 
6113   if (D.getDeclSpec().isInlineSpecified())
6114     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
6115         << getLangOpts().CPlusPlus17;
6116   if (D.getDeclSpec().hasConstexprSpecifier())
6117     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
6118         << 1 << static_cast<int>(D.getDeclSpec().getConstexprSpecifier());
6119 
6120   if (D.getName().Kind != UnqualifiedIdKind::IK_Identifier) {
6121     if (D.getName().Kind == UnqualifiedIdKind::IK_DeductionGuideName)
6122       Diag(D.getName().StartLocation,
6123            diag::err_deduction_guide_invalid_specifier)
6124           << "typedef";
6125     else
6126       Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
6127           << D.getName().getSourceRange();
6128     return nullptr;
6129   }
6130 
6131   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
6132   if (!NewTD) return nullptr;
6133 
6134   // Handle attributes prior to checking for duplicates in MergeVarDecl
6135   ProcessDeclAttributes(S, NewTD, D);
6136 
6137   CheckTypedefForVariablyModifiedType(S, NewTD);
6138 
6139   bool Redeclaration = D.isRedeclaration();
6140   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
6141   D.setRedeclaration(Redeclaration);
6142   return ND;
6143 }
6144 
6145 void
6146 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
6147   // C99 6.7.7p2: If a typedef name specifies a variably modified type
6148   // then it shall have block scope.
6149   // Note that variably modified types must be fixed before merging the decl so
6150   // that redeclarations will match.
6151   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
6152   QualType T = TInfo->getType();
6153   if (T->isVariablyModifiedType()) {
6154     setFunctionHasBranchProtectedScope();
6155 
6156     if (S->getFnParent() == nullptr) {
6157       bool SizeIsNegative;
6158       llvm::APSInt Oversized;
6159       TypeSourceInfo *FixedTInfo =
6160         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
6161                                                       SizeIsNegative,
6162                                                       Oversized);
6163       if (FixedTInfo) {
6164         Diag(NewTD->getLocation(), diag::ext_vla_folded_to_constant);
6165         NewTD->setTypeSourceInfo(FixedTInfo);
6166       } else {
6167         if (SizeIsNegative)
6168           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
6169         else if (T->isVariableArrayType())
6170           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
6171         else if (Oversized.getBoolValue())
6172           Diag(NewTD->getLocation(), diag::err_array_too_large)
6173             << Oversized.toString(10);
6174         else
6175           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
6176         NewTD->setInvalidDecl();
6177       }
6178     }
6179   }
6180 }
6181 
6182 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
6183 /// declares a typedef-name, either using the 'typedef' type specifier or via
6184 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
6185 NamedDecl*
6186 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
6187                            LookupResult &Previous, bool &Redeclaration) {
6188 
6189   // Find the shadowed declaration before filtering for scope.
6190   NamedDecl *ShadowedDecl = getShadowedDeclaration(NewTD, Previous);
6191 
6192   // Merge the decl with the existing one if appropriate. If the decl is
6193   // in an outer scope, it isn't the same thing.
6194   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
6195                        /*AllowInlineNamespace*/false);
6196   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
6197   if (!Previous.empty()) {
6198     Redeclaration = true;
6199     MergeTypedefNameDecl(S, NewTD, Previous);
6200   } else {
6201     inferGslPointerAttribute(NewTD);
6202   }
6203 
6204   if (ShadowedDecl && !Redeclaration)
6205     CheckShadow(NewTD, ShadowedDecl, Previous);
6206 
6207   // If this is the C FILE type, notify the AST context.
6208   if (IdentifierInfo *II = NewTD->getIdentifier())
6209     if (!NewTD->isInvalidDecl() &&
6210         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
6211       if (II->isStr("FILE"))
6212         Context.setFILEDecl(NewTD);
6213       else if (II->isStr("jmp_buf"))
6214         Context.setjmp_bufDecl(NewTD);
6215       else if (II->isStr("sigjmp_buf"))
6216         Context.setsigjmp_bufDecl(NewTD);
6217       else if (II->isStr("ucontext_t"))
6218         Context.setucontext_tDecl(NewTD);
6219     }
6220 
6221   return NewTD;
6222 }
6223 
6224 /// Determines whether the given declaration is an out-of-scope
6225 /// previous declaration.
6226 ///
6227 /// This routine should be invoked when name lookup has found a
6228 /// previous declaration (PrevDecl) that is not in the scope where a
6229 /// new declaration by the same name is being introduced. If the new
6230 /// declaration occurs in a local scope, previous declarations with
6231 /// linkage may still be considered previous declarations (C99
6232 /// 6.2.2p4-5, C++ [basic.link]p6).
6233 ///
6234 /// \param PrevDecl the previous declaration found by name
6235 /// lookup
6236 ///
6237 /// \param DC the context in which the new declaration is being
6238 /// declared.
6239 ///
6240 /// \returns true if PrevDecl is an out-of-scope previous declaration
6241 /// for a new delcaration with the same name.
6242 static bool
6243 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
6244                                 ASTContext &Context) {
6245   if (!PrevDecl)
6246     return false;
6247 
6248   if (!PrevDecl->hasLinkage())
6249     return false;
6250 
6251   if (Context.getLangOpts().CPlusPlus) {
6252     // C++ [basic.link]p6:
6253     //   If there is a visible declaration of an entity with linkage
6254     //   having the same name and type, ignoring entities declared
6255     //   outside the innermost enclosing namespace scope, the block
6256     //   scope declaration declares that same entity and receives the
6257     //   linkage of the previous declaration.
6258     DeclContext *OuterContext = DC->getRedeclContext();
6259     if (!OuterContext->isFunctionOrMethod())
6260       // This rule only applies to block-scope declarations.
6261       return false;
6262 
6263     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
6264     if (PrevOuterContext->isRecord())
6265       // We found a member function: ignore it.
6266       return false;
6267 
6268     // Find the innermost enclosing namespace for the new and
6269     // previous declarations.
6270     OuterContext = OuterContext->getEnclosingNamespaceContext();
6271     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
6272 
6273     // The previous declaration is in a different namespace, so it
6274     // isn't the same function.
6275     if (!OuterContext->Equals(PrevOuterContext))
6276       return false;
6277   }
6278 
6279   return true;
6280 }
6281 
6282 static void SetNestedNameSpecifier(Sema &S, DeclaratorDecl *DD, Declarator &D) {
6283   CXXScopeSpec &SS = D.getCXXScopeSpec();
6284   if (!SS.isSet()) return;
6285   DD->setQualifierInfo(SS.getWithLocInContext(S.Context));
6286 }
6287 
6288 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
6289   QualType type = decl->getType();
6290   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
6291   if (lifetime == Qualifiers::OCL_Autoreleasing) {
6292     // Various kinds of declaration aren't allowed to be __autoreleasing.
6293     unsigned kind = -1U;
6294     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
6295       if (var->hasAttr<BlocksAttr>())
6296         kind = 0; // __block
6297       else if (!var->hasLocalStorage())
6298         kind = 1; // global
6299     } else if (isa<ObjCIvarDecl>(decl)) {
6300       kind = 3; // ivar
6301     } else if (isa<FieldDecl>(decl)) {
6302       kind = 2; // field
6303     }
6304 
6305     if (kind != -1U) {
6306       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
6307         << kind;
6308     }
6309   } else if (lifetime == Qualifiers::OCL_None) {
6310     // Try to infer lifetime.
6311     if (!type->isObjCLifetimeType())
6312       return false;
6313 
6314     lifetime = type->getObjCARCImplicitLifetime();
6315     type = Context.getLifetimeQualifiedType(type, lifetime);
6316     decl->setType(type);
6317   }
6318 
6319   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
6320     // Thread-local variables cannot have lifetime.
6321     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
6322         var->getTLSKind()) {
6323       Diag(var->getLocation(), diag::err_arc_thread_ownership)
6324         << var->getType();
6325       return true;
6326     }
6327   }
6328 
6329   return false;
6330 }
6331 
6332 void Sema::deduceOpenCLAddressSpace(ValueDecl *Decl) {
6333   if (Decl->getType().hasAddressSpace())
6334     return;
6335   if (Decl->getType()->isDependentType())
6336     return;
6337   if (VarDecl *Var = dyn_cast<VarDecl>(Decl)) {
6338     QualType Type = Var->getType();
6339     if (Type->isSamplerT() || Type->isVoidType())
6340       return;
6341     LangAS ImplAS = LangAS::opencl_private;
6342     if ((getLangOpts().OpenCLCPlusPlus || getLangOpts().OpenCLVersion >= 200) &&
6343         Var->hasGlobalStorage())
6344       ImplAS = LangAS::opencl_global;
6345     // If the original type from a decayed type is an array type and that array
6346     // type has no address space yet, deduce it now.
6347     if (auto DT = dyn_cast<DecayedType>(Type)) {
6348       auto OrigTy = DT->getOriginalType();
6349       if (!OrigTy.hasAddressSpace() && OrigTy->isArrayType()) {
6350         // Add the address space to the original array type and then propagate
6351         // that to the element type through `getAsArrayType`.
6352         OrigTy = Context.getAddrSpaceQualType(OrigTy, ImplAS);
6353         OrigTy = QualType(Context.getAsArrayType(OrigTy), 0);
6354         // Re-generate the decayed type.
6355         Type = Context.getDecayedType(OrigTy);
6356       }
6357     }
6358     Type = Context.getAddrSpaceQualType(Type, ImplAS);
6359     // Apply any qualifiers (including address space) from the array type to
6360     // the element type. This implements C99 6.7.3p8: "If the specification of
6361     // an array type includes any type qualifiers, the element type is so
6362     // qualified, not the array type."
6363     if (Type->isArrayType())
6364       Type = QualType(Context.getAsArrayType(Type), 0);
6365     Decl->setType(Type);
6366   }
6367 }
6368 
6369 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
6370   // Ensure that an auto decl is deduced otherwise the checks below might cache
6371   // the wrong linkage.
6372   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
6373 
6374   // 'weak' only applies to declarations with external linkage.
6375   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
6376     if (!ND.isExternallyVisible()) {
6377       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
6378       ND.dropAttr<WeakAttr>();
6379     }
6380   }
6381   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
6382     if (ND.isExternallyVisible()) {
6383       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
6384       ND.dropAttr<WeakRefAttr>();
6385       ND.dropAttr<AliasAttr>();
6386     }
6387   }
6388 
6389   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
6390     if (VD->hasInit()) {
6391       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
6392         assert(VD->isThisDeclarationADefinition() &&
6393                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
6394         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD << 0;
6395         VD->dropAttr<AliasAttr>();
6396       }
6397     }
6398   }
6399 
6400   // 'selectany' only applies to externally visible variable declarations.
6401   // It does not apply to functions.
6402   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
6403     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
6404       S.Diag(Attr->getLocation(),
6405              diag::err_attribute_selectany_non_extern_data);
6406       ND.dropAttr<SelectAnyAttr>();
6407     }
6408   }
6409 
6410   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
6411     auto *VD = dyn_cast<VarDecl>(&ND);
6412     bool IsAnonymousNS = false;
6413     bool IsMicrosoft = S.Context.getTargetInfo().getCXXABI().isMicrosoft();
6414     if (VD) {
6415       const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(VD->getDeclContext());
6416       while (NS && !IsAnonymousNS) {
6417         IsAnonymousNS = NS->isAnonymousNamespace();
6418         NS = dyn_cast<NamespaceDecl>(NS->getParent());
6419       }
6420     }
6421     // dll attributes require external linkage. Static locals may have external
6422     // linkage but still cannot be explicitly imported or exported.
6423     // In Microsoft mode, a variable defined in anonymous namespace must have
6424     // external linkage in order to be exported.
6425     bool AnonNSInMicrosoftMode = IsAnonymousNS && IsMicrosoft;
6426     if ((ND.isExternallyVisible() && AnonNSInMicrosoftMode) ||
6427         (!AnonNSInMicrosoftMode &&
6428          (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())))) {
6429       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
6430         << &ND << Attr;
6431       ND.setInvalidDecl();
6432     }
6433   }
6434 
6435   // Virtual functions cannot be marked as 'notail'.
6436   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
6437     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
6438       if (MD->isVirtual()) {
6439         S.Diag(ND.getLocation(),
6440                diag::err_invalid_attribute_on_virtual_function)
6441             << Attr;
6442         ND.dropAttr<NotTailCalledAttr>();
6443       }
6444 
6445   // Check the attributes on the function type, if any.
6446   if (const auto *FD = dyn_cast<FunctionDecl>(&ND)) {
6447     // Don't declare this variable in the second operand of the for-statement;
6448     // GCC miscompiles that by ending its lifetime before evaluating the
6449     // third operand. See gcc.gnu.org/PR86769.
6450     AttributedTypeLoc ATL;
6451     for (TypeLoc TL = FD->getTypeSourceInfo()->getTypeLoc();
6452          (ATL = TL.getAsAdjusted<AttributedTypeLoc>());
6453          TL = ATL.getModifiedLoc()) {
6454       // The [[lifetimebound]] attribute can be applied to the implicit object
6455       // parameter of a non-static member function (other than a ctor or dtor)
6456       // by applying it to the function type.
6457       if (const auto *A = ATL.getAttrAs<LifetimeBoundAttr>()) {
6458         const auto *MD = dyn_cast<CXXMethodDecl>(FD);
6459         if (!MD || MD->isStatic()) {
6460           S.Diag(A->getLocation(), diag::err_lifetimebound_no_object_param)
6461               << !MD << A->getRange();
6462         } else if (isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD)) {
6463           S.Diag(A->getLocation(), diag::err_lifetimebound_ctor_dtor)
6464               << isa<CXXDestructorDecl>(MD) << A->getRange();
6465         }
6466       }
6467     }
6468   }
6469 }
6470 
6471 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
6472                                            NamedDecl *NewDecl,
6473                                            bool IsSpecialization,
6474                                            bool IsDefinition) {
6475   if (OldDecl->isInvalidDecl() || NewDecl->isInvalidDecl())
6476     return;
6477 
6478   bool IsTemplate = false;
6479   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl)) {
6480     OldDecl = OldTD->getTemplatedDecl();
6481     IsTemplate = true;
6482     if (!IsSpecialization)
6483       IsDefinition = false;
6484   }
6485   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl)) {
6486     NewDecl = NewTD->getTemplatedDecl();
6487     IsTemplate = true;
6488   }
6489 
6490   if (!OldDecl || !NewDecl)
6491     return;
6492 
6493   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
6494   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
6495   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
6496   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
6497 
6498   // dllimport and dllexport are inheritable attributes so we have to exclude
6499   // inherited attribute instances.
6500   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
6501                     (NewExportAttr && !NewExportAttr->isInherited());
6502 
6503   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
6504   // the only exception being explicit specializations.
6505   // Implicitly generated declarations are also excluded for now because there
6506   // is no other way to switch these to use dllimport or dllexport.
6507   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
6508 
6509   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
6510     // Allow with a warning for free functions and global variables.
6511     bool JustWarn = false;
6512     if (!OldDecl->isCXXClassMember()) {
6513       auto *VD = dyn_cast<VarDecl>(OldDecl);
6514       if (VD && !VD->getDescribedVarTemplate())
6515         JustWarn = true;
6516       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
6517       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
6518         JustWarn = true;
6519     }
6520 
6521     // We cannot change a declaration that's been used because IR has already
6522     // been emitted. Dllimported functions will still work though (modulo
6523     // address equality) as they can use the thunk.
6524     if (OldDecl->isUsed())
6525       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
6526         JustWarn = false;
6527 
6528     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
6529                                : diag::err_attribute_dll_redeclaration;
6530     S.Diag(NewDecl->getLocation(), DiagID)
6531         << NewDecl
6532         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
6533     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6534     if (!JustWarn) {
6535       NewDecl->setInvalidDecl();
6536       return;
6537     }
6538   }
6539 
6540   // A redeclaration is not allowed to drop a dllimport attribute, the only
6541   // exceptions being inline function definitions (except for function
6542   // templates), local extern declarations, qualified friend declarations or
6543   // special MSVC extension: in the last case, the declaration is treated as if
6544   // it were marked dllexport.
6545   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
6546   bool IsMicrosoftABI  = S.Context.getTargetInfo().shouldDLLImportComdatSymbols();
6547   if (const auto *VD = dyn_cast<VarDecl>(NewDecl)) {
6548     // Ignore static data because out-of-line definitions are diagnosed
6549     // separately.
6550     IsStaticDataMember = VD->isStaticDataMember();
6551     IsDefinition = VD->isThisDeclarationADefinition(S.Context) !=
6552                    VarDecl::DeclarationOnly;
6553   } else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
6554     IsInline = FD->isInlined();
6555     IsQualifiedFriend = FD->getQualifier() &&
6556                         FD->getFriendObjectKind() == Decl::FOK_Declared;
6557   }
6558 
6559   if (OldImportAttr && !HasNewAttr &&
6560       (!IsInline || (IsMicrosoftABI && IsTemplate)) && !IsStaticDataMember &&
6561       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
6562     if (IsMicrosoftABI && IsDefinition) {
6563       S.Diag(NewDecl->getLocation(),
6564              diag::warn_redeclaration_without_import_attribute)
6565           << NewDecl;
6566       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6567       NewDecl->dropAttr<DLLImportAttr>();
6568       NewDecl->addAttr(
6569           DLLExportAttr::CreateImplicit(S.Context, NewImportAttr->getRange()));
6570     } else {
6571       S.Diag(NewDecl->getLocation(),
6572              diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
6573           << NewDecl << OldImportAttr;
6574       S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
6575       S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
6576       OldDecl->dropAttr<DLLImportAttr>();
6577       NewDecl->dropAttr<DLLImportAttr>();
6578     }
6579   } else if (IsInline && OldImportAttr && !IsMicrosoftABI) {
6580     // In MinGW, seeing a function declared inline drops the dllimport
6581     // attribute.
6582     OldDecl->dropAttr<DLLImportAttr>();
6583     NewDecl->dropAttr<DLLImportAttr>();
6584     S.Diag(NewDecl->getLocation(),
6585            diag::warn_dllimport_dropped_from_inline_function)
6586         << NewDecl << OldImportAttr;
6587   }
6588 
6589   // A specialization of a class template member function is processed here
6590   // since it's a redeclaration. If the parent class is dllexport, the
6591   // specialization inherits that attribute. This doesn't happen automatically
6592   // since the parent class isn't instantiated until later.
6593   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDecl)) {
6594     if (MD->getTemplatedKind() == FunctionDecl::TK_MemberSpecialization &&
6595         !NewImportAttr && !NewExportAttr) {
6596       if (const DLLExportAttr *ParentExportAttr =
6597               MD->getParent()->getAttr<DLLExportAttr>()) {
6598         DLLExportAttr *NewAttr = ParentExportAttr->clone(S.Context);
6599         NewAttr->setInherited(true);
6600         NewDecl->addAttr(NewAttr);
6601       }
6602     }
6603   }
6604 }
6605 
6606 /// Given that we are within the definition of the given function,
6607 /// will that definition behave like C99's 'inline', where the
6608 /// definition is discarded except for optimization purposes?
6609 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
6610   // Try to avoid calling GetGVALinkageForFunction.
6611 
6612   // All cases of this require the 'inline' keyword.
6613   if (!FD->isInlined()) return false;
6614 
6615   // This is only possible in C++ with the gnu_inline attribute.
6616   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
6617     return false;
6618 
6619   // Okay, go ahead and call the relatively-more-expensive function.
6620   return S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
6621 }
6622 
6623 /// Determine whether a variable is extern "C" prior to attaching
6624 /// an initializer. We can't just call isExternC() here, because that
6625 /// will also compute and cache whether the declaration is externally
6626 /// visible, which might change when we attach the initializer.
6627 ///
6628 /// This can only be used if the declaration is known to not be a
6629 /// redeclaration of an internal linkage declaration.
6630 ///
6631 /// For instance:
6632 ///
6633 ///   auto x = []{};
6634 ///
6635 /// Attaching the initializer here makes this declaration not externally
6636 /// visible, because its type has internal linkage.
6637 ///
6638 /// FIXME: This is a hack.
6639 template<typename T>
6640 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
6641   if (S.getLangOpts().CPlusPlus) {
6642     // In C++, the overloadable attribute negates the effects of extern "C".
6643     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
6644       return false;
6645 
6646     // So do CUDA's host/device attributes.
6647     if (S.getLangOpts().CUDA && (D->template hasAttr<CUDADeviceAttr>() ||
6648                                  D->template hasAttr<CUDAHostAttr>()))
6649       return false;
6650   }
6651   return D->isExternC();
6652 }
6653 
6654 static bool shouldConsiderLinkage(const VarDecl *VD) {
6655   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
6656   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC) ||
6657       isa<OMPDeclareMapperDecl>(DC))
6658     return VD->hasExternalStorage();
6659   if (DC->isFileContext())
6660     return true;
6661   if (DC->isRecord())
6662     return false;
6663   if (isa<RequiresExprBodyDecl>(DC))
6664     return false;
6665   llvm_unreachable("Unexpected context");
6666 }
6667 
6668 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
6669   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
6670   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
6671       isa<OMPDeclareReductionDecl>(DC) || isa<OMPDeclareMapperDecl>(DC))
6672     return true;
6673   if (DC->isRecord())
6674     return false;
6675   llvm_unreachable("Unexpected context");
6676 }
6677 
6678 static bool hasParsedAttr(Scope *S, const Declarator &PD,
6679                           ParsedAttr::Kind Kind) {
6680   // Check decl attributes on the DeclSpec.
6681   if (PD.getDeclSpec().getAttributes().hasAttribute(Kind))
6682     return true;
6683 
6684   // Walk the declarator structure, checking decl attributes that were in a type
6685   // position to the decl itself.
6686   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
6687     if (PD.getTypeObject(I).getAttrs().hasAttribute(Kind))
6688       return true;
6689   }
6690 
6691   // Finally, check attributes on the decl itself.
6692   return PD.getAttributes().hasAttribute(Kind);
6693 }
6694 
6695 /// Adjust the \c DeclContext for a function or variable that might be a
6696 /// function-local external declaration.
6697 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
6698   if (!DC->isFunctionOrMethod())
6699     return false;
6700 
6701   // If this is a local extern function or variable declared within a function
6702   // template, don't add it into the enclosing namespace scope until it is
6703   // instantiated; it might have a dependent type right now.
6704   if (DC->isDependentContext())
6705     return true;
6706 
6707   // C++11 [basic.link]p7:
6708   //   When a block scope declaration of an entity with linkage is not found to
6709   //   refer to some other declaration, then that entity is a member of the
6710   //   innermost enclosing namespace.
6711   //
6712   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
6713   // semantically-enclosing namespace, not a lexically-enclosing one.
6714   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
6715     DC = DC->getParent();
6716   return true;
6717 }
6718 
6719 /// Returns true if given declaration has external C language linkage.
6720 static bool isDeclExternC(const Decl *D) {
6721   if (const auto *FD = dyn_cast<FunctionDecl>(D))
6722     return FD->isExternC();
6723   if (const auto *VD = dyn_cast<VarDecl>(D))
6724     return VD->isExternC();
6725 
6726   llvm_unreachable("Unknown type of decl!");
6727 }
6728 /// Returns true if there hasn't been any invalid type diagnosed.
6729 static bool diagnoseOpenCLTypes(Scope *S, Sema &Se, Declarator &D,
6730                                 DeclContext *DC, QualType R) {
6731   // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
6732   // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
6733   // argument.
6734   if (R->isImageType() || R->isPipeType()) {
6735     Se.Diag(D.getIdentifierLoc(),
6736             diag::err_opencl_type_can_only_be_used_as_function_parameter)
6737         << R;
6738     D.setInvalidType();
6739     return false;
6740   }
6741 
6742   // OpenCL v1.2 s6.9.r:
6743   // The event type cannot be used to declare a program scope variable.
6744   // OpenCL v2.0 s6.9.q:
6745   // The clk_event_t and reserve_id_t types cannot be declared in program
6746   // scope.
6747   if (NULL == S->getParent()) {
6748     if (R->isReserveIDT() || R->isClkEventT() || R->isEventT()) {
6749       Se.Diag(D.getIdentifierLoc(),
6750               diag::err_invalid_type_for_program_scope_var)
6751           << R;
6752       D.setInvalidType();
6753       return false;
6754     }
6755   }
6756 
6757   // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
6758   if (!Se.getOpenCLOptions().isEnabled("__cl_clang_function_pointers")) {
6759     QualType NR = R.getCanonicalType();
6760     while (NR->isPointerType() || NR->isMemberFunctionPointerType() ||
6761            NR->isReferenceType()) {
6762       if (NR->isFunctionPointerType() || NR->isMemberFunctionPointerType() ||
6763           NR->isFunctionReferenceType()) {
6764         Se.Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer)
6765             << NR->isReferenceType();
6766         D.setInvalidType();
6767         return false;
6768       }
6769       NR = NR->getPointeeType();
6770     }
6771   }
6772 
6773   if (!Se.getOpenCLOptions().isEnabled("cl_khr_fp16")) {
6774     // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
6775     // half array type (unless the cl_khr_fp16 extension is enabled).
6776     if (Se.Context.getBaseElementType(R)->isHalfType()) {
6777       Se.Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
6778       D.setInvalidType();
6779       return false;
6780     }
6781   }
6782 
6783   // OpenCL v1.2 s6.9.r:
6784   // The event type cannot be used with the __local, __constant and __global
6785   // address space qualifiers.
6786   if (R->isEventT()) {
6787     if (R.getAddressSpace() != LangAS::opencl_private) {
6788       Se.Diag(D.getBeginLoc(), diag::err_event_t_addr_space_qual);
6789       D.setInvalidType();
6790       return false;
6791     }
6792   }
6793 
6794   // C++ for OpenCL does not allow the thread_local storage qualifier.
6795   // OpenCL C does not support thread_local either, and
6796   // also reject all other thread storage class specifiers.
6797   DeclSpec::TSCS TSC = D.getDeclSpec().getThreadStorageClassSpec();
6798   if (TSC != TSCS_unspecified) {
6799     bool IsCXX = Se.getLangOpts().OpenCLCPlusPlus;
6800     Se.Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6801             diag::err_opencl_unknown_type_specifier)
6802         << IsCXX << Se.getLangOpts().getOpenCLVersionTuple().getAsString()
6803         << DeclSpec::getSpecifierName(TSC) << 1;
6804     D.setInvalidType();
6805     return false;
6806   }
6807 
6808   if (R->isSamplerT()) {
6809     // OpenCL v1.2 s6.9.b p4:
6810     // The sampler type cannot be used with the __local and __global address
6811     // space qualifiers.
6812     if (R.getAddressSpace() == LangAS::opencl_local ||
6813         R.getAddressSpace() == LangAS::opencl_global) {
6814       Se.Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
6815       D.setInvalidType();
6816     }
6817 
6818     // OpenCL v1.2 s6.12.14.1:
6819     // A global sampler must be declared with either the constant address
6820     // space qualifier or with the const qualifier.
6821     if (DC->isTranslationUnit() &&
6822         !(R.getAddressSpace() == LangAS::opencl_constant ||
6823           R.isConstQualified())) {
6824       Se.Diag(D.getIdentifierLoc(), diag::err_opencl_nonconst_global_sampler);
6825       D.setInvalidType();
6826     }
6827     if (D.isInvalidType())
6828       return false;
6829   }
6830   return true;
6831 }
6832 
6833 NamedDecl *Sema::ActOnVariableDeclarator(
6834     Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo,
6835     LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists,
6836     bool &AddToScope, ArrayRef<BindingDecl *> Bindings) {
6837   QualType R = TInfo->getType();
6838   DeclarationName Name = GetNameForDeclarator(D).getName();
6839 
6840   IdentifierInfo *II = Name.getAsIdentifierInfo();
6841 
6842   if (D.isDecompositionDeclarator()) {
6843     // Take the name of the first declarator as our name for diagnostic
6844     // purposes.
6845     auto &Decomp = D.getDecompositionDeclarator();
6846     if (!Decomp.bindings().empty()) {
6847       II = Decomp.bindings()[0].Name;
6848       Name = II;
6849     }
6850   } else if (!II) {
6851     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) << Name;
6852     return nullptr;
6853   }
6854 
6855 
6856   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
6857   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
6858 
6859   // dllimport globals without explicit storage class are treated as extern. We
6860   // have to change the storage class this early to get the right DeclContext.
6861   if (SC == SC_None && !DC->isRecord() &&
6862       hasParsedAttr(S, D, ParsedAttr::AT_DLLImport) &&
6863       !hasParsedAttr(S, D, ParsedAttr::AT_DLLExport))
6864     SC = SC_Extern;
6865 
6866   DeclContext *OriginalDC = DC;
6867   bool IsLocalExternDecl = SC == SC_Extern &&
6868                            adjustContextForLocalExternDecl(DC);
6869 
6870   if (SCSpec == DeclSpec::SCS_mutable) {
6871     // mutable can only appear on non-static class members, so it's always
6872     // an error here
6873     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
6874     D.setInvalidType();
6875     SC = SC_None;
6876   }
6877 
6878   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
6879       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
6880                               D.getDeclSpec().getStorageClassSpecLoc())) {
6881     // In C++11, the 'register' storage class specifier is deprecated.
6882     // Suppress the warning in system macros, it's used in macros in some
6883     // popular C system headers, such as in glibc's htonl() macro.
6884     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6885          getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
6886                                    : diag::warn_deprecated_register)
6887       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6888   }
6889 
6890   DiagnoseFunctionSpecifiers(D.getDeclSpec());
6891 
6892   if (!DC->isRecord() && S->getFnParent() == nullptr) {
6893     // C99 6.9p2: The storage-class specifiers auto and register shall not
6894     // appear in the declaration specifiers in an external declaration.
6895     // Global Register+Asm is a GNU extension we support.
6896     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
6897       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
6898       D.setInvalidType();
6899     }
6900   }
6901 
6902   // If this variable has a variable-modified type and an initializer, try to
6903   // fold to a constant-sized type. This is otherwise invalid.
6904   if (D.hasInitializer() && R->isVariablyModifiedType())
6905     tryToFixVariablyModifiedVarType(*this, TInfo, R, D.getIdentifierLoc(),
6906                                     /*DiagID=*/0);
6907 
6908   bool IsMemberSpecialization = false;
6909   bool IsVariableTemplateSpecialization = false;
6910   bool IsPartialSpecialization = false;
6911   bool IsVariableTemplate = false;
6912   VarDecl *NewVD = nullptr;
6913   VarTemplateDecl *NewTemplate = nullptr;
6914   TemplateParameterList *TemplateParams = nullptr;
6915   if (!getLangOpts().CPlusPlus) {
6916     NewVD = VarDecl::Create(Context, DC, D.getBeginLoc(), D.getIdentifierLoc(),
6917                             II, R, TInfo, SC);
6918 
6919     if (R->getContainedDeducedType())
6920       ParsingInitForAutoVars.insert(NewVD);
6921 
6922     if (D.isInvalidType())
6923       NewVD->setInvalidDecl();
6924 
6925     if (NewVD->getType().hasNonTrivialToPrimitiveDestructCUnion() &&
6926         NewVD->hasLocalStorage())
6927       checkNonTrivialCUnion(NewVD->getType(), NewVD->getLocation(),
6928                             NTCUC_AutoVar, NTCUK_Destruct);
6929   } else {
6930     bool Invalid = false;
6931 
6932     if (DC->isRecord() && !CurContext->isRecord()) {
6933       // This is an out-of-line definition of a static data member.
6934       switch (SC) {
6935       case SC_None:
6936         break;
6937       case SC_Static:
6938         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6939              diag::err_static_out_of_line)
6940           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6941         break;
6942       case SC_Auto:
6943       case SC_Register:
6944       case SC_Extern:
6945         // [dcl.stc] p2: The auto or register specifiers shall be applied only
6946         // to names of variables declared in a block or to function parameters.
6947         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
6948         // of class members
6949 
6950         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6951              diag::err_storage_class_for_static_member)
6952           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6953         break;
6954       case SC_PrivateExtern:
6955         llvm_unreachable("C storage class in c++!");
6956       }
6957     }
6958 
6959     if (SC == SC_Static && CurContext->isRecord()) {
6960       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
6961         // Walk up the enclosing DeclContexts to check for any that are
6962         // incompatible with static data members.
6963         const DeclContext *FunctionOrMethod = nullptr;
6964         const CXXRecordDecl *AnonStruct = nullptr;
6965         for (DeclContext *Ctxt = DC; Ctxt; Ctxt = Ctxt->getParent()) {
6966           if (Ctxt->isFunctionOrMethod()) {
6967             FunctionOrMethod = Ctxt;
6968             break;
6969           }
6970           const CXXRecordDecl *ParentDecl = dyn_cast<CXXRecordDecl>(Ctxt);
6971           if (ParentDecl && !ParentDecl->getDeclName()) {
6972             AnonStruct = ParentDecl;
6973             break;
6974           }
6975         }
6976         if (FunctionOrMethod) {
6977           // C++ [class.static.data]p5: A local class shall not have static data
6978           // members.
6979           Diag(D.getIdentifierLoc(),
6980                diag::err_static_data_member_not_allowed_in_local_class)
6981             << Name << RD->getDeclName() << RD->getTagKind();
6982         } else if (AnonStruct) {
6983           // C++ [class.static.data]p4: Unnamed classes and classes contained
6984           // directly or indirectly within unnamed classes shall not contain
6985           // static data members.
6986           Diag(D.getIdentifierLoc(),
6987                diag::err_static_data_member_not_allowed_in_anon_struct)
6988             << Name << AnonStruct->getTagKind();
6989           Invalid = true;
6990         } else if (RD->isUnion()) {
6991           // C++98 [class.union]p1: If a union contains a static data member,
6992           // the program is ill-formed. C++11 drops this restriction.
6993           Diag(D.getIdentifierLoc(),
6994                getLangOpts().CPlusPlus11
6995                  ? diag::warn_cxx98_compat_static_data_member_in_union
6996                  : diag::ext_static_data_member_in_union) << Name;
6997         }
6998       }
6999     }
7000 
7001     // Match up the template parameter lists with the scope specifier, then
7002     // determine whether we have a template or a template specialization.
7003     bool InvalidScope = false;
7004     TemplateParams = MatchTemplateParametersToScopeSpecifier(
7005         D.getDeclSpec().getBeginLoc(), D.getIdentifierLoc(),
7006         D.getCXXScopeSpec(),
7007         D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
7008             ? D.getName().TemplateId
7009             : nullptr,
7010         TemplateParamLists,
7011         /*never a friend*/ false, IsMemberSpecialization, InvalidScope);
7012     Invalid |= InvalidScope;
7013 
7014     if (TemplateParams) {
7015       if (!TemplateParams->size() &&
7016           D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
7017         // There is an extraneous 'template<>' for this variable. Complain
7018         // about it, but allow the declaration of the variable.
7019         Diag(TemplateParams->getTemplateLoc(),
7020              diag::err_template_variable_noparams)
7021           << II
7022           << SourceRange(TemplateParams->getTemplateLoc(),
7023                          TemplateParams->getRAngleLoc());
7024         TemplateParams = nullptr;
7025       } else {
7026         // Check that we can declare a template here.
7027         if (CheckTemplateDeclScope(S, TemplateParams))
7028           return nullptr;
7029 
7030         if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
7031           // This is an explicit specialization or a partial specialization.
7032           IsVariableTemplateSpecialization = true;
7033           IsPartialSpecialization = TemplateParams->size() > 0;
7034         } else { // if (TemplateParams->size() > 0)
7035           // This is a template declaration.
7036           IsVariableTemplate = true;
7037 
7038           // Only C++1y supports variable templates (N3651).
7039           Diag(D.getIdentifierLoc(),
7040                getLangOpts().CPlusPlus14
7041                    ? diag::warn_cxx11_compat_variable_template
7042                    : diag::ext_variable_template);
7043         }
7044       }
7045     } else {
7046       // Check that we can declare a member specialization here.
7047       if (!TemplateParamLists.empty() && IsMemberSpecialization &&
7048           CheckTemplateDeclScope(S, TemplateParamLists.back()))
7049         return nullptr;
7050       assert((Invalid ||
7051               D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) &&
7052              "should have a 'template<>' for this decl");
7053     }
7054 
7055     if (IsVariableTemplateSpecialization) {
7056       SourceLocation TemplateKWLoc =
7057           TemplateParamLists.size() > 0
7058               ? TemplateParamLists[0]->getTemplateLoc()
7059               : SourceLocation();
7060       DeclResult Res = ActOnVarTemplateSpecialization(
7061           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
7062           IsPartialSpecialization);
7063       if (Res.isInvalid())
7064         return nullptr;
7065       NewVD = cast<VarDecl>(Res.get());
7066       AddToScope = false;
7067     } else if (D.isDecompositionDeclarator()) {
7068       NewVD = DecompositionDecl::Create(Context, DC, D.getBeginLoc(),
7069                                         D.getIdentifierLoc(), R, TInfo, SC,
7070                                         Bindings);
7071     } else
7072       NewVD = VarDecl::Create(Context, DC, D.getBeginLoc(),
7073                               D.getIdentifierLoc(), II, R, TInfo, SC);
7074 
7075     // If this is supposed to be a variable template, create it as such.
7076     if (IsVariableTemplate) {
7077       NewTemplate =
7078           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
7079                                   TemplateParams, NewVD);
7080       NewVD->setDescribedVarTemplate(NewTemplate);
7081     }
7082 
7083     // If this decl has an auto type in need of deduction, make a note of the
7084     // Decl so we can diagnose uses of it in its own initializer.
7085     if (R->getContainedDeducedType())
7086       ParsingInitForAutoVars.insert(NewVD);
7087 
7088     if (D.isInvalidType() || Invalid) {
7089       NewVD->setInvalidDecl();
7090       if (NewTemplate)
7091         NewTemplate->setInvalidDecl();
7092     }
7093 
7094     SetNestedNameSpecifier(*this, NewVD, D);
7095 
7096     // If we have any template parameter lists that don't directly belong to
7097     // the variable (matching the scope specifier), store them.
7098     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
7099     if (TemplateParamLists.size() > VDTemplateParamLists)
7100       NewVD->setTemplateParameterListsInfo(
7101           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
7102   }
7103 
7104   if (D.getDeclSpec().isInlineSpecified()) {
7105     if (!getLangOpts().CPlusPlus) {
7106       Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
7107           << 0;
7108     } else if (CurContext->isFunctionOrMethod()) {
7109       // 'inline' is not allowed on block scope variable declaration.
7110       Diag(D.getDeclSpec().getInlineSpecLoc(),
7111            diag::err_inline_declaration_block_scope) << Name
7112         << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
7113     } else {
7114       Diag(D.getDeclSpec().getInlineSpecLoc(),
7115            getLangOpts().CPlusPlus17 ? diag::warn_cxx14_compat_inline_variable
7116                                      : diag::ext_inline_variable);
7117       NewVD->setInlineSpecified();
7118     }
7119   }
7120 
7121   // Set the lexical context. If the declarator has a C++ scope specifier, the
7122   // lexical context will be different from the semantic context.
7123   NewVD->setLexicalDeclContext(CurContext);
7124   if (NewTemplate)
7125     NewTemplate->setLexicalDeclContext(CurContext);
7126 
7127   if (IsLocalExternDecl) {
7128     if (D.isDecompositionDeclarator())
7129       for (auto *B : Bindings)
7130         B->setLocalExternDecl();
7131     else
7132       NewVD->setLocalExternDecl();
7133   }
7134 
7135   bool EmitTLSUnsupportedError = false;
7136   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
7137     // C++11 [dcl.stc]p4:
7138     //   When thread_local is applied to a variable of block scope the
7139     //   storage-class-specifier static is implied if it does not appear
7140     //   explicitly.
7141     // Core issue: 'static' is not implied if the variable is declared
7142     //   'extern'.
7143     if (NewVD->hasLocalStorage() &&
7144         (SCSpec != DeclSpec::SCS_unspecified ||
7145          TSCS != DeclSpec::TSCS_thread_local ||
7146          !DC->isFunctionOrMethod()))
7147       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
7148            diag::err_thread_non_global)
7149         << DeclSpec::getSpecifierName(TSCS);
7150     else if (!Context.getTargetInfo().isTLSSupported()) {
7151       if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice ||
7152           getLangOpts().SYCLIsDevice) {
7153         // Postpone error emission until we've collected attributes required to
7154         // figure out whether it's a host or device variable and whether the
7155         // error should be ignored.
7156         EmitTLSUnsupportedError = true;
7157         // We still need to mark the variable as TLS so it shows up in AST with
7158         // proper storage class for other tools to use even if we're not going
7159         // to emit any code for it.
7160         NewVD->setTSCSpec(TSCS);
7161       } else
7162         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
7163              diag::err_thread_unsupported);
7164     } else
7165       NewVD->setTSCSpec(TSCS);
7166   }
7167 
7168   switch (D.getDeclSpec().getConstexprSpecifier()) {
7169   case ConstexprSpecKind::Unspecified:
7170     break;
7171 
7172   case ConstexprSpecKind::Consteval:
7173     Diag(D.getDeclSpec().getConstexprSpecLoc(),
7174          diag::err_constexpr_wrong_decl_kind)
7175         << static_cast<int>(D.getDeclSpec().getConstexprSpecifier());
7176     LLVM_FALLTHROUGH;
7177 
7178   case ConstexprSpecKind::Constexpr:
7179     NewVD->setConstexpr(true);
7180     MaybeAddCUDAConstantAttr(NewVD);
7181     // C++1z [dcl.spec.constexpr]p1:
7182     //   A static data member declared with the constexpr specifier is
7183     //   implicitly an inline variable.
7184     if (NewVD->isStaticDataMember() &&
7185         (getLangOpts().CPlusPlus17 ||
7186          Context.getTargetInfo().getCXXABI().isMicrosoft()))
7187       NewVD->setImplicitlyInline();
7188     break;
7189 
7190   case ConstexprSpecKind::Constinit:
7191     if (!NewVD->hasGlobalStorage())
7192       Diag(D.getDeclSpec().getConstexprSpecLoc(),
7193            diag::err_constinit_local_variable);
7194     else
7195       NewVD->addAttr(ConstInitAttr::Create(
7196           Context, D.getDeclSpec().getConstexprSpecLoc(),
7197           AttributeCommonInfo::AS_Keyword, ConstInitAttr::Keyword_constinit));
7198     break;
7199   }
7200 
7201   // C99 6.7.4p3
7202   //   An inline definition of a function with external linkage shall
7203   //   not contain a definition of a modifiable object with static or
7204   //   thread storage duration...
7205   // We only apply this when the function is required to be defined
7206   // elsewhere, i.e. when the function is not 'extern inline'.  Note
7207   // that a local variable with thread storage duration still has to
7208   // be marked 'static'.  Also note that it's possible to get these
7209   // semantics in C++ using __attribute__((gnu_inline)).
7210   if (SC == SC_Static && S->getFnParent() != nullptr &&
7211       !NewVD->getType().isConstQualified()) {
7212     FunctionDecl *CurFD = getCurFunctionDecl();
7213     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
7214       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7215            diag::warn_static_local_in_extern_inline);
7216       MaybeSuggestAddingStaticToDecl(CurFD);
7217     }
7218   }
7219 
7220   if (D.getDeclSpec().isModulePrivateSpecified()) {
7221     if (IsVariableTemplateSpecialization)
7222       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
7223           << (IsPartialSpecialization ? 1 : 0)
7224           << FixItHint::CreateRemoval(
7225                  D.getDeclSpec().getModulePrivateSpecLoc());
7226     else if (IsMemberSpecialization)
7227       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
7228         << 2
7229         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
7230     else if (NewVD->hasLocalStorage())
7231       Diag(NewVD->getLocation(), diag::err_module_private_local)
7232           << 0 << NewVD
7233           << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
7234           << FixItHint::CreateRemoval(
7235                  D.getDeclSpec().getModulePrivateSpecLoc());
7236     else {
7237       NewVD->setModulePrivate();
7238       if (NewTemplate)
7239         NewTemplate->setModulePrivate();
7240       for (auto *B : Bindings)
7241         B->setModulePrivate();
7242     }
7243   }
7244 
7245   if (getLangOpts().OpenCL) {
7246 
7247     deduceOpenCLAddressSpace(NewVD);
7248 
7249     diagnoseOpenCLTypes(S, *this, D, DC, NewVD->getType());
7250   }
7251 
7252   // Handle attributes prior to checking for duplicates in MergeVarDecl
7253   ProcessDeclAttributes(S, NewVD, D);
7254 
7255   if (getLangOpts().CUDA || getLangOpts().OpenMPIsDevice ||
7256       getLangOpts().SYCLIsDevice) {
7257     if (EmitTLSUnsupportedError &&
7258         ((getLangOpts().CUDA && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) ||
7259          (getLangOpts().OpenMPIsDevice &&
7260           OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(NewVD))))
7261       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
7262            diag::err_thread_unsupported);
7263 
7264     if (EmitTLSUnsupportedError &&
7265         (LangOpts.SYCLIsDevice || (LangOpts.OpenMP && LangOpts.OpenMPIsDevice)))
7266       targetDiag(D.getIdentifierLoc(), diag::err_thread_unsupported);
7267     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
7268     // storage [duration]."
7269     if (SC == SC_None && S->getFnParent() != nullptr &&
7270         (NewVD->hasAttr<CUDASharedAttr>() ||
7271          NewVD->hasAttr<CUDAConstantAttr>())) {
7272       NewVD->setStorageClass(SC_Static);
7273     }
7274   }
7275 
7276   // Ensure that dllimport globals without explicit storage class are treated as
7277   // extern. The storage class is set above using parsed attributes. Now we can
7278   // check the VarDecl itself.
7279   assert(!NewVD->hasAttr<DLLImportAttr>() ||
7280          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
7281          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
7282 
7283   // In auto-retain/release, infer strong retension for variables of
7284   // retainable type.
7285   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
7286     NewVD->setInvalidDecl();
7287 
7288   // Handle GNU asm-label extension (encoded as an attribute).
7289   if (Expr *E = (Expr*)D.getAsmLabel()) {
7290     // The parser guarantees this is a string.
7291     StringLiteral *SE = cast<StringLiteral>(E);
7292     StringRef Label = SE->getString();
7293     if (S->getFnParent() != nullptr) {
7294       switch (SC) {
7295       case SC_None:
7296       case SC_Auto:
7297         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
7298         break;
7299       case SC_Register:
7300         // Local Named register
7301         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
7302             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
7303           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
7304         break;
7305       case SC_Static:
7306       case SC_Extern:
7307       case SC_PrivateExtern:
7308         break;
7309       }
7310     } else if (SC == SC_Register) {
7311       // Global Named register
7312       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
7313         const auto &TI = Context.getTargetInfo();
7314         bool HasSizeMismatch;
7315 
7316         if (!TI.isValidGCCRegisterName(Label))
7317           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
7318         else if (!TI.validateGlobalRegisterVariable(Label,
7319                                                     Context.getTypeSize(R),
7320                                                     HasSizeMismatch))
7321           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
7322         else if (HasSizeMismatch)
7323           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
7324       }
7325 
7326       if (!R->isIntegralType(Context) && !R->isPointerType()) {
7327         Diag(D.getBeginLoc(), diag::err_asm_bad_register_type);
7328         NewVD->setInvalidDecl(true);
7329       }
7330     }
7331 
7332     NewVD->addAttr(AsmLabelAttr::Create(Context, Label,
7333                                         /*IsLiteralLabel=*/true,
7334                                         SE->getStrTokenLoc(0)));
7335   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
7336     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
7337       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
7338     if (I != ExtnameUndeclaredIdentifiers.end()) {
7339       if (isDeclExternC(NewVD)) {
7340         NewVD->addAttr(I->second);
7341         ExtnameUndeclaredIdentifiers.erase(I);
7342       } else
7343         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
7344             << /*Variable*/1 << NewVD;
7345     }
7346   }
7347 
7348   // Find the shadowed declaration before filtering for scope.
7349   NamedDecl *ShadowedDecl = D.getCXXScopeSpec().isEmpty()
7350                                 ? getShadowedDeclaration(NewVD, Previous)
7351                                 : nullptr;
7352 
7353   // Don't consider existing declarations that are in a different
7354   // scope and are out-of-semantic-context declarations (if the new
7355   // declaration has linkage).
7356   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
7357                        D.getCXXScopeSpec().isNotEmpty() ||
7358                        IsMemberSpecialization ||
7359                        IsVariableTemplateSpecialization);
7360 
7361   // Check whether the previous declaration is in the same block scope. This
7362   // affects whether we merge types with it, per C++11 [dcl.array]p3.
7363   if (getLangOpts().CPlusPlus &&
7364       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
7365     NewVD->setPreviousDeclInSameBlockScope(
7366         Previous.isSingleResult() && !Previous.isShadowed() &&
7367         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
7368 
7369   if (!getLangOpts().CPlusPlus) {
7370     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
7371   } else {
7372     // If this is an explicit specialization of a static data member, check it.
7373     if (IsMemberSpecialization && !NewVD->isInvalidDecl() &&
7374         CheckMemberSpecialization(NewVD, Previous))
7375       NewVD->setInvalidDecl();
7376 
7377     // Merge the decl with the existing one if appropriate.
7378     if (!Previous.empty()) {
7379       if (Previous.isSingleResult() &&
7380           isa<FieldDecl>(Previous.getFoundDecl()) &&
7381           D.getCXXScopeSpec().isSet()) {
7382         // The user tried to define a non-static data member
7383         // out-of-line (C++ [dcl.meaning]p1).
7384         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
7385           << D.getCXXScopeSpec().getRange();
7386         Previous.clear();
7387         NewVD->setInvalidDecl();
7388       }
7389     } else if (D.getCXXScopeSpec().isSet()) {
7390       // No previous declaration in the qualifying scope.
7391       Diag(D.getIdentifierLoc(), diag::err_no_member)
7392         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
7393         << D.getCXXScopeSpec().getRange();
7394       NewVD->setInvalidDecl();
7395     }
7396 
7397     if (!IsVariableTemplateSpecialization)
7398       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
7399 
7400     if (NewTemplate) {
7401       VarTemplateDecl *PrevVarTemplate =
7402           NewVD->getPreviousDecl()
7403               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
7404               : nullptr;
7405 
7406       // Check the template parameter list of this declaration, possibly
7407       // merging in the template parameter list from the previous variable
7408       // template declaration.
7409       if (CheckTemplateParameterList(
7410               TemplateParams,
7411               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
7412                               : nullptr,
7413               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
7414                DC->isDependentContext())
7415                   ? TPC_ClassTemplateMember
7416                   : TPC_VarTemplate))
7417         NewVD->setInvalidDecl();
7418 
7419       // If we are providing an explicit specialization of a static variable
7420       // template, make a note of that.
7421       if (PrevVarTemplate &&
7422           PrevVarTemplate->getInstantiatedFromMemberTemplate())
7423         PrevVarTemplate->setMemberSpecialization();
7424     }
7425   }
7426 
7427   // Diagnose shadowed variables iff this isn't a redeclaration.
7428   if (ShadowedDecl && !D.isRedeclaration())
7429     CheckShadow(NewVD, ShadowedDecl, Previous);
7430 
7431   ProcessPragmaWeak(S, NewVD);
7432 
7433   // If this is the first declaration of an extern C variable, update
7434   // the map of such variables.
7435   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
7436       isIncompleteDeclExternC(*this, NewVD))
7437     RegisterLocallyScopedExternCDecl(NewVD, S);
7438 
7439   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
7440     MangleNumberingContext *MCtx;
7441     Decl *ManglingContextDecl;
7442     std::tie(MCtx, ManglingContextDecl) =
7443         getCurrentMangleNumberContext(NewVD->getDeclContext());
7444     if (MCtx) {
7445       Context.setManglingNumber(
7446           NewVD, MCtx->getManglingNumber(
7447                      NewVD, getMSManglingNumber(getLangOpts(), S)));
7448       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
7449     }
7450   }
7451 
7452   // Special handling of variable named 'main'.
7453   if (Name.getAsIdentifierInfo() && Name.getAsIdentifierInfo()->isStr("main") &&
7454       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
7455       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
7456 
7457     // C++ [basic.start.main]p3
7458     // A program that declares a variable main at global scope is ill-formed.
7459     if (getLangOpts().CPlusPlus)
7460       Diag(D.getBeginLoc(), diag::err_main_global_variable);
7461 
7462     // In C, and external-linkage variable named main results in undefined
7463     // behavior.
7464     else if (NewVD->hasExternalFormalLinkage())
7465       Diag(D.getBeginLoc(), diag::warn_main_redefined);
7466   }
7467 
7468   if (D.isRedeclaration() && !Previous.empty()) {
7469     NamedDecl *Prev = Previous.getRepresentativeDecl();
7470     checkDLLAttributeRedeclaration(*this, Prev, NewVD, IsMemberSpecialization,
7471                                    D.isFunctionDefinition());
7472   }
7473 
7474   if (NewTemplate) {
7475     if (NewVD->isInvalidDecl())
7476       NewTemplate->setInvalidDecl();
7477     ActOnDocumentableDecl(NewTemplate);
7478     return NewTemplate;
7479   }
7480 
7481   if (IsMemberSpecialization && !NewVD->isInvalidDecl())
7482     CompleteMemberSpecialization(NewVD, Previous);
7483 
7484   return NewVD;
7485 }
7486 
7487 /// Enum describing the %select options in diag::warn_decl_shadow.
7488 enum ShadowedDeclKind {
7489   SDK_Local,
7490   SDK_Global,
7491   SDK_StaticMember,
7492   SDK_Field,
7493   SDK_Typedef,
7494   SDK_Using,
7495   SDK_StructuredBinding
7496 };
7497 
7498 /// Determine what kind of declaration we're shadowing.
7499 static ShadowedDeclKind computeShadowedDeclKind(const NamedDecl *ShadowedDecl,
7500                                                 const DeclContext *OldDC) {
7501   if (isa<TypeAliasDecl>(ShadowedDecl))
7502     return SDK_Using;
7503   else if (isa<TypedefDecl>(ShadowedDecl))
7504     return SDK_Typedef;
7505   else if (isa<BindingDecl>(ShadowedDecl))
7506     return SDK_StructuredBinding;
7507   else if (isa<RecordDecl>(OldDC))
7508     return isa<FieldDecl>(ShadowedDecl) ? SDK_Field : SDK_StaticMember;
7509 
7510   return OldDC->isFileContext() ? SDK_Global : SDK_Local;
7511 }
7512 
7513 /// Return the location of the capture if the given lambda captures the given
7514 /// variable \p VD, or an invalid source location otherwise.
7515 static SourceLocation getCaptureLocation(const LambdaScopeInfo *LSI,
7516                                          const VarDecl *VD) {
7517   for (const Capture &Capture : LSI->Captures) {
7518     if (Capture.isVariableCapture() && Capture.getVariable() == VD)
7519       return Capture.getLocation();
7520   }
7521   return SourceLocation();
7522 }
7523 
7524 static bool shouldWarnIfShadowedDecl(const DiagnosticsEngine &Diags,
7525                                      const LookupResult &R) {
7526   // Only diagnose if we're shadowing an unambiguous field or variable.
7527   if (R.getResultKind() != LookupResult::Found)
7528     return false;
7529 
7530   // Return false if warning is ignored.
7531   return !Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc());
7532 }
7533 
7534 /// Return the declaration shadowed by the given variable \p D, or null
7535 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
7536 NamedDecl *Sema::getShadowedDeclaration(const VarDecl *D,
7537                                         const LookupResult &R) {
7538   if (!shouldWarnIfShadowedDecl(Diags, R))
7539     return nullptr;
7540 
7541   // Don't diagnose declarations at file scope.
7542   if (D->hasGlobalStorage())
7543     return nullptr;
7544 
7545   NamedDecl *ShadowedDecl = R.getFoundDecl();
7546   return isa<VarDecl, FieldDecl, BindingDecl>(ShadowedDecl) ? ShadowedDecl
7547                                                             : nullptr;
7548 }
7549 
7550 /// Return the declaration shadowed by the given typedef \p D, or null
7551 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
7552 NamedDecl *Sema::getShadowedDeclaration(const TypedefNameDecl *D,
7553                                         const LookupResult &R) {
7554   // Don't warn if typedef declaration is part of a class
7555   if (D->getDeclContext()->isRecord())
7556     return nullptr;
7557 
7558   if (!shouldWarnIfShadowedDecl(Diags, R))
7559     return nullptr;
7560 
7561   NamedDecl *ShadowedDecl = R.getFoundDecl();
7562   return isa<TypedefNameDecl>(ShadowedDecl) ? ShadowedDecl : nullptr;
7563 }
7564 
7565 /// Return the declaration shadowed by the given variable \p D, or null
7566 /// if it doesn't shadow any declaration or shadowing warnings are disabled.
7567 NamedDecl *Sema::getShadowedDeclaration(const BindingDecl *D,
7568                                         const LookupResult &R) {
7569   if (!shouldWarnIfShadowedDecl(Diags, R))
7570     return nullptr;
7571 
7572   NamedDecl *ShadowedDecl = R.getFoundDecl();
7573   return isa<VarDecl, FieldDecl, BindingDecl>(ShadowedDecl) ? ShadowedDecl
7574                                                             : nullptr;
7575 }
7576 
7577 /// Diagnose variable or built-in function shadowing.  Implements
7578 /// -Wshadow.
7579 ///
7580 /// This method is called whenever a VarDecl is added to a "useful"
7581 /// scope.
7582 ///
7583 /// \param ShadowedDecl the declaration that is shadowed by the given variable
7584 /// \param R the lookup of the name
7585 ///
7586 void Sema::CheckShadow(NamedDecl *D, NamedDecl *ShadowedDecl,
7587                        const LookupResult &R) {
7588   DeclContext *NewDC = D->getDeclContext();
7589 
7590   if (FieldDecl *FD = dyn_cast<FieldDecl>(ShadowedDecl)) {
7591     // Fields are not shadowed by variables in C++ static methods.
7592     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
7593       if (MD->isStatic())
7594         return;
7595 
7596     // Fields shadowed by constructor parameters are a special case. Usually
7597     // the constructor initializes the field with the parameter.
7598     if (isa<CXXConstructorDecl>(NewDC))
7599       if (const auto PVD = dyn_cast<ParmVarDecl>(D)) {
7600         // Remember that this was shadowed so we can either warn about its
7601         // modification or its existence depending on warning settings.
7602         ShadowingDecls.insert({PVD->getCanonicalDecl(), FD});
7603         return;
7604       }
7605   }
7606 
7607   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
7608     if (shadowedVar->isExternC()) {
7609       // For shadowing external vars, make sure that we point to the global
7610       // declaration, not a locally scoped extern declaration.
7611       for (auto I : shadowedVar->redecls())
7612         if (I->isFileVarDecl()) {
7613           ShadowedDecl = I;
7614           break;
7615         }
7616     }
7617 
7618   DeclContext *OldDC = ShadowedDecl->getDeclContext()->getRedeclContext();
7619 
7620   unsigned WarningDiag = diag::warn_decl_shadow;
7621   SourceLocation CaptureLoc;
7622   if (isa<VarDecl>(D) && isa<VarDecl>(ShadowedDecl) && NewDC &&
7623       isa<CXXMethodDecl>(NewDC)) {
7624     if (const auto *RD = dyn_cast<CXXRecordDecl>(NewDC->getParent())) {
7625       if (RD->isLambda() && OldDC->Encloses(NewDC->getLexicalParent())) {
7626         if (RD->getLambdaCaptureDefault() == LCD_None) {
7627           // Try to avoid warnings for lambdas with an explicit capture list.
7628           const auto *LSI = cast<LambdaScopeInfo>(getCurFunction());
7629           // Warn only when the lambda captures the shadowed decl explicitly.
7630           CaptureLoc = getCaptureLocation(LSI, cast<VarDecl>(ShadowedDecl));
7631           if (CaptureLoc.isInvalid())
7632             WarningDiag = diag::warn_decl_shadow_uncaptured_local;
7633         } else {
7634           // Remember that this was shadowed so we can avoid the warning if the
7635           // shadowed decl isn't captured and the warning settings allow it.
7636           cast<LambdaScopeInfo>(getCurFunction())
7637               ->ShadowingDecls.push_back(
7638                   {cast<VarDecl>(D), cast<VarDecl>(ShadowedDecl)});
7639           return;
7640         }
7641       }
7642 
7643       if (cast<VarDecl>(ShadowedDecl)->hasLocalStorage()) {
7644         // A variable can't shadow a local variable in an enclosing scope, if
7645         // they are separated by a non-capturing declaration context.
7646         for (DeclContext *ParentDC = NewDC;
7647              ParentDC && !ParentDC->Equals(OldDC);
7648              ParentDC = getLambdaAwareParentOfDeclContext(ParentDC)) {
7649           // Only block literals, captured statements, and lambda expressions
7650           // can capture; other scopes don't.
7651           if (!isa<BlockDecl>(ParentDC) && !isa<CapturedDecl>(ParentDC) &&
7652               !isLambdaCallOperator(ParentDC)) {
7653             return;
7654           }
7655         }
7656       }
7657     }
7658   }
7659 
7660   // Only warn about certain kinds of shadowing for class members.
7661   if (NewDC && NewDC->isRecord()) {
7662     // In particular, don't warn about shadowing non-class members.
7663     if (!OldDC->isRecord())
7664       return;
7665 
7666     // TODO: should we warn about static data members shadowing
7667     // static data members from base classes?
7668 
7669     // TODO: don't diagnose for inaccessible shadowed members.
7670     // This is hard to do perfectly because we might friend the
7671     // shadowing context, but that's just a false negative.
7672   }
7673 
7674 
7675   DeclarationName Name = R.getLookupName();
7676 
7677   // Emit warning and note.
7678   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
7679     return;
7680   ShadowedDeclKind Kind = computeShadowedDeclKind(ShadowedDecl, OldDC);
7681   Diag(R.getNameLoc(), WarningDiag) << Name << Kind << OldDC;
7682   if (!CaptureLoc.isInvalid())
7683     Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7684         << Name << /*explicitly*/ 1;
7685   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7686 }
7687 
7688 /// Diagnose shadowing for variables shadowed in the lambda record \p LambdaRD
7689 /// when these variables are captured by the lambda.
7690 void Sema::DiagnoseShadowingLambdaDecls(const LambdaScopeInfo *LSI) {
7691   for (const auto &Shadow : LSI->ShadowingDecls) {
7692     const VarDecl *ShadowedDecl = Shadow.ShadowedDecl;
7693     // Try to avoid the warning when the shadowed decl isn't captured.
7694     SourceLocation CaptureLoc = getCaptureLocation(LSI, ShadowedDecl);
7695     const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7696     Diag(Shadow.VD->getLocation(), CaptureLoc.isInvalid()
7697                                        ? diag::warn_decl_shadow_uncaptured_local
7698                                        : diag::warn_decl_shadow)
7699         << Shadow.VD->getDeclName()
7700         << computeShadowedDeclKind(ShadowedDecl, OldDC) << OldDC;
7701     if (!CaptureLoc.isInvalid())
7702       Diag(CaptureLoc, diag::note_var_explicitly_captured_here)
7703           << Shadow.VD->getDeclName() << /*explicitly*/ 0;
7704     Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7705   }
7706 }
7707 
7708 /// Check -Wshadow without the advantage of a previous lookup.
7709 void Sema::CheckShadow(Scope *S, VarDecl *D) {
7710   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
7711     return;
7712 
7713   LookupResult R(*this, D->getDeclName(), D->getLocation(),
7714                  Sema::LookupOrdinaryName, Sema::ForVisibleRedeclaration);
7715   LookupName(R, S);
7716   if (NamedDecl *ShadowedDecl = getShadowedDeclaration(D, R))
7717     CheckShadow(D, ShadowedDecl, R);
7718 }
7719 
7720 /// Check if 'E', which is an expression that is about to be modified, refers
7721 /// to a constructor parameter that shadows a field.
7722 void Sema::CheckShadowingDeclModification(Expr *E, SourceLocation Loc) {
7723   // Quickly ignore expressions that can't be shadowing ctor parameters.
7724   if (!getLangOpts().CPlusPlus || ShadowingDecls.empty())
7725     return;
7726   E = E->IgnoreParenImpCasts();
7727   auto *DRE = dyn_cast<DeclRefExpr>(E);
7728   if (!DRE)
7729     return;
7730   const NamedDecl *D = cast<NamedDecl>(DRE->getDecl()->getCanonicalDecl());
7731   auto I = ShadowingDecls.find(D);
7732   if (I == ShadowingDecls.end())
7733     return;
7734   const NamedDecl *ShadowedDecl = I->second;
7735   const DeclContext *OldDC = ShadowedDecl->getDeclContext();
7736   Diag(Loc, diag::warn_modifying_shadowing_decl) << D << OldDC;
7737   Diag(D->getLocation(), diag::note_var_declared_here) << D;
7738   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
7739 
7740   // Avoid issuing multiple warnings about the same decl.
7741   ShadowingDecls.erase(I);
7742 }
7743 
7744 /// Check for conflict between this global or extern "C" declaration and
7745 /// previous global or extern "C" declarations. This is only used in C++.
7746 template<typename T>
7747 static bool checkGlobalOrExternCConflict(
7748     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
7749   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
7750   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
7751 
7752   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
7753     // The common case: this global doesn't conflict with any extern "C"
7754     // declaration.
7755     return false;
7756   }
7757 
7758   if (Prev) {
7759     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
7760       // Both the old and new declarations have C language linkage. This is a
7761       // redeclaration.
7762       Previous.clear();
7763       Previous.addDecl(Prev);
7764       return true;
7765     }
7766 
7767     // This is a global, non-extern "C" declaration, and there is a previous
7768     // non-global extern "C" declaration. Diagnose if this is a variable
7769     // declaration.
7770     if (!isa<VarDecl>(ND))
7771       return false;
7772   } else {
7773     // The declaration is extern "C". Check for any declaration in the
7774     // translation unit which might conflict.
7775     if (IsGlobal) {
7776       // We have already performed the lookup into the translation unit.
7777       IsGlobal = false;
7778       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7779            I != E; ++I) {
7780         if (isa<VarDecl>(*I)) {
7781           Prev = *I;
7782           break;
7783         }
7784       }
7785     } else {
7786       DeclContext::lookup_result R =
7787           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
7788       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
7789            I != E; ++I) {
7790         if (isa<VarDecl>(*I)) {
7791           Prev = *I;
7792           break;
7793         }
7794         // FIXME: If we have any other entity with this name in global scope,
7795         // the declaration is ill-formed, but that is a defect: it breaks the
7796         // 'stat' hack, for instance. Only variables can have mangled name
7797         // clashes with extern "C" declarations, so only they deserve a
7798         // diagnostic.
7799       }
7800     }
7801 
7802     if (!Prev)
7803       return false;
7804   }
7805 
7806   // Use the first declaration's location to ensure we point at something which
7807   // is lexically inside an extern "C" linkage-spec.
7808   assert(Prev && "should have found a previous declaration to diagnose");
7809   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
7810     Prev = FD->getFirstDecl();
7811   else
7812     Prev = cast<VarDecl>(Prev)->getFirstDecl();
7813 
7814   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
7815     << IsGlobal << ND;
7816   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
7817     << IsGlobal;
7818   return false;
7819 }
7820 
7821 /// Apply special rules for handling extern "C" declarations. Returns \c true
7822 /// if we have found that this is a redeclaration of some prior entity.
7823 ///
7824 /// Per C++ [dcl.link]p6:
7825 ///   Two declarations [for a function or variable] with C language linkage
7826 ///   with the same name that appear in different scopes refer to the same
7827 ///   [entity]. An entity with C language linkage shall not be declared with
7828 ///   the same name as an entity in global scope.
7829 template<typename T>
7830 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
7831                                                   LookupResult &Previous) {
7832   if (!S.getLangOpts().CPlusPlus) {
7833     // In C, when declaring a global variable, look for a corresponding 'extern'
7834     // variable declared in function scope. We don't need this in C++, because
7835     // we find local extern decls in the surrounding file-scope DeclContext.
7836     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
7837       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
7838         Previous.clear();
7839         Previous.addDecl(Prev);
7840         return true;
7841       }
7842     }
7843     return false;
7844   }
7845 
7846   // A declaration in the translation unit can conflict with an extern "C"
7847   // declaration.
7848   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
7849     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
7850 
7851   // An extern "C" declaration can conflict with a declaration in the
7852   // translation unit or can be a redeclaration of an extern "C" declaration
7853   // in another scope.
7854   if (isIncompleteDeclExternC(S,ND))
7855     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
7856 
7857   // Neither global nor extern "C": nothing to do.
7858   return false;
7859 }
7860 
7861 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
7862   // If the decl is already known invalid, don't check it.
7863   if (NewVD->isInvalidDecl())
7864     return;
7865 
7866   QualType T = NewVD->getType();
7867 
7868   // Defer checking an 'auto' type until its initializer is attached.
7869   if (T->isUndeducedType())
7870     return;
7871 
7872   if (NewVD->hasAttrs())
7873     CheckAlignasUnderalignment(NewVD);
7874 
7875   if (T->isObjCObjectType()) {
7876     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
7877       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
7878     T = Context.getObjCObjectPointerType(T);
7879     NewVD->setType(T);
7880   }
7881 
7882   // Emit an error if an address space was applied to decl with local storage.
7883   // This includes arrays of objects with address space qualifiers, but not
7884   // automatic variables that point to other address spaces.
7885   // ISO/IEC TR 18037 S5.1.2
7886   if (!getLangOpts().OpenCL && NewVD->hasLocalStorage() &&
7887       T.getAddressSpace() != LangAS::Default) {
7888     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 0;
7889     NewVD->setInvalidDecl();
7890     return;
7891   }
7892 
7893   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
7894   // scope.
7895   if (getLangOpts().OpenCLVersion == 120 &&
7896       !getOpenCLOptions().isEnabled("cl_clang_storage_class_specifiers") &&
7897       NewVD->isStaticLocal()) {
7898     Diag(NewVD->getLocation(), diag::err_static_function_scope);
7899     NewVD->setInvalidDecl();
7900     return;
7901   }
7902 
7903   if (getLangOpts().OpenCL) {
7904     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
7905     if (NewVD->hasAttr<BlocksAttr>()) {
7906       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
7907       return;
7908     }
7909 
7910     if (T->isBlockPointerType()) {
7911       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
7912       // can't use 'extern' storage class.
7913       if (!T.isConstQualified()) {
7914         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
7915             << 0 /*const*/;
7916         NewVD->setInvalidDecl();
7917         return;
7918       }
7919       if (NewVD->hasExternalStorage()) {
7920         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
7921         NewVD->setInvalidDecl();
7922         return;
7923       }
7924     }
7925     // OpenCL C v1.2 s6.5 - All program scope variables must be declared in the
7926     // __constant address space.
7927     // OpenCL C v2.0 s6.5.1 - Variables defined at program scope and static
7928     // variables inside a function can also be declared in the global
7929     // address space.
7930     // C++ for OpenCL inherits rule from OpenCL C v2.0.
7931     // FIXME: Adding local AS in C++ for OpenCL might make sense.
7932     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
7933         NewVD->hasExternalStorage()) {
7934       if (!T->isSamplerT() &&
7935           !T->isDependentType() &&
7936           !(T.getAddressSpace() == LangAS::opencl_constant ||
7937             (T.getAddressSpace() == LangAS::opencl_global &&
7938              (getLangOpts().OpenCLVersion == 200 ||
7939               getLangOpts().OpenCLCPlusPlus)))) {
7940         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
7941         if (getLangOpts().OpenCLVersion == 200 || getLangOpts().OpenCLCPlusPlus)
7942           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7943               << Scope << "global or constant";
7944         else
7945           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
7946               << Scope << "constant";
7947         NewVD->setInvalidDecl();
7948         return;
7949       }
7950     } else {
7951       if (T.getAddressSpace() == LangAS::opencl_global) {
7952         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7953             << 1 /*is any function*/ << "global";
7954         NewVD->setInvalidDecl();
7955         return;
7956       }
7957       if (T.getAddressSpace() == LangAS::opencl_constant ||
7958           T.getAddressSpace() == LangAS::opencl_local) {
7959         FunctionDecl *FD = getCurFunctionDecl();
7960         // OpenCL v1.1 s6.5.2 and s6.5.3: no local or constant variables
7961         // in functions.
7962         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
7963           if (T.getAddressSpace() == LangAS::opencl_constant)
7964             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7965                 << 0 /*non-kernel only*/ << "constant";
7966           else
7967             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
7968                 << 0 /*non-kernel only*/ << "local";
7969           NewVD->setInvalidDecl();
7970           return;
7971         }
7972         // OpenCL v2.0 s6.5.2 and s6.5.3: local and constant variables must be
7973         // in the outermost scope of a kernel function.
7974         if (FD && FD->hasAttr<OpenCLKernelAttr>()) {
7975           if (!getCurScope()->isFunctionScope()) {
7976             if (T.getAddressSpace() == LangAS::opencl_constant)
7977               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7978                   << "constant";
7979             else
7980               Diag(NewVD->getLocation(), diag::err_opencl_addrspace_scope)
7981                   << "local";
7982             NewVD->setInvalidDecl();
7983             return;
7984           }
7985         }
7986       } else if (T.getAddressSpace() != LangAS::opencl_private &&
7987                  // If we are parsing a template we didn't deduce an addr
7988                  // space yet.
7989                  T.getAddressSpace() != LangAS::Default) {
7990         // Do not allow other address spaces on automatic variable.
7991         Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl) << 1;
7992         NewVD->setInvalidDecl();
7993         return;
7994       }
7995     }
7996   }
7997 
7998   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
7999       && !NewVD->hasAttr<BlocksAttr>()) {
8000     if (getLangOpts().getGC() != LangOptions::NonGC)
8001       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
8002     else {
8003       assert(!getLangOpts().ObjCAutoRefCount);
8004       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
8005     }
8006   }
8007 
8008   bool isVM = T->isVariablyModifiedType();
8009   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
8010       NewVD->hasAttr<BlocksAttr>())
8011     setFunctionHasBranchProtectedScope();
8012 
8013   if ((isVM && NewVD->hasLinkage()) ||
8014       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
8015     bool SizeIsNegative;
8016     llvm::APSInt Oversized;
8017     TypeSourceInfo *FixedTInfo = TryToFixInvalidVariablyModifiedTypeSourceInfo(
8018         NewVD->getTypeSourceInfo(), Context, SizeIsNegative, Oversized);
8019     QualType FixedT;
8020     if (FixedTInfo &&  T == NewVD->getTypeSourceInfo()->getType())
8021       FixedT = FixedTInfo->getType();
8022     else if (FixedTInfo) {
8023       // Type and type-as-written are canonically different. We need to fix up
8024       // both types separately.
8025       FixedT = TryToFixInvalidVariablyModifiedType(T, Context, SizeIsNegative,
8026                                                    Oversized);
8027     }
8028     if ((!FixedTInfo || FixedT.isNull()) && T->isVariableArrayType()) {
8029       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
8030       // FIXME: This won't give the correct result for
8031       // int a[10][n];
8032       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
8033 
8034       if (NewVD->isFileVarDecl())
8035         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
8036         << SizeRange;
8037       else if (NewVD->isStaticLocal())
8038         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
8039         << SizeRange;
8040       else
8041         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
8042         << SizeRange;
8043       NewVD->setInvalidDecl();
8044       return;
8045     }
8046 
8047     if (!FixedTInfo) {
8048       if (NewVD->isFileVarDecl())
8049         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
8050       else
8051         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
8052       NewVD->setInvalidDecl();
8053       return;
8054     }
8055 
8056     Diag(NewVD->getLocation(), diag::ext_vla_folded_to_constant);
8057     NewVD->setType(FixedT);
8058     NewVD->setTypeSourceInfo(FixedTInfo);
8059   }
8060 
8061   if (T->isVoidType()) {
8062     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
8063     //                    of objects and functions.
8064     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
8065       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
8066         << T;
8067       NewVD->setInvalidDecl();
8068       return;
8069     }
8070   }
8071 
8072   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
8073     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
8074     NewVD->setInvalidDecl();
8075     return;
8076   }
8077 
8078   if (!NewVD->hasLocalStorage() && T->isSizelessType()) {
8079     Diag(NewVD->getLocation(), diag::err_sizeless_nonlocal) << T;
8080     NewVD->setInvalidDecl();
8081     return;
8082   }
8083 
8084   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
8085     Diag(NewVD->getLocation(), diag::err_block_on_vm);
8086     NewVD->setInvalidDecl();
8087     return;
8088   }
8089 
8090   if (NewVD->isConstexpr() && !T->isDependentType() &&
8091       RequireLiteralType(NewVD->getLocation(), T,
8092                          diag::err_constexpr_var_non_literal)) {
8093     NewVD->setInvalidDecl();
8094     return;
8095   }
8096 
8097   // PPC MMA non-pointer types are not allowed as non-local variable types.
8098   if (Context.getTargetInfo().getTriple().isPPC64() &&
8099       !NewVD->isLocalVarDecl() &&
8100       CheckPPCMMAType(T, NewVD->getLocation())) {
8101     NewVD->setInvalidDecl();
8102     return;
8103   }
8104 }
8105 
8106 /// Perform semantic checking on a newly-created variable
8107 /// declaration.
8108 ///
8109 /// This routine performs all of the type-checking required for a
8110 /// variable declaration once it has been built. It is used both to
8111 /// check variables after they have been parsed and their declarators
8112 /// have been translated into a declaration, and to check variables
8113 /// that have been instantiated from a template.
8114 ///
8115 /// Sets NewVD->isInvalidDecl() if an error was encountered.
8116 ///
8117 /// Returns true if the variable declaration is a redeclaration.
8118 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
8119   CheckVariableDeclarationType(NewVD);
8120 
8121   // If the decl is already known invalid, don't check it.
8122   if (NewVD->isInvalidDecl())
8123     return false;
8124 
8125   // If we did not find anything by this name, look for a non-visible
8126   // extern "C" declaration with the same name.
8127   if (Previous.empty() &&
8128       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
8129     Previous.setShadowed();
8130 
8131   if (!Previous.empty()) {
8132     MergeVarDecl(NewVD, Previous);
8133     return true;
8134   }
8135   return false;
8136 }
8137 
8138 /// AddOverriddenMethods - See if a method overrides any in the base classes,
8139 /// and if so, check that it's a valid override and remember it.
8140 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
8141   llvm::SmallPtrSet<const CXXMethodDecl*, 4> Overridden;
8142 
8143   // Look for methods in base classes that this method might override.
8144   CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/false,
8145                      /*DetectVirtual=*/false);
8146   auto VisitBase = [&] (const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
8147     CXXRecordDecl *BaseRecord = Specifier->getType()->getAsCXXRecordDecl();
8148     DeclarationName Name = MD->getDeclName();
8149 
8150     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
8151       // We really want to find the base class destructor here.
8152       QualType T = Context.getTypeDeclType(BaseRecord);
8153       CanQualType CT = Context.getCanonicalType(T);
8154       Name = Context.DeclarationNames.getCXXDestructorName(CT);
8155     }
8156 
8157     for (NamedDecl *BaseND : BaseRecord->lookup(Name)) {
8158       CXXMethodDecl *BaseMD =
8159           dyn_cast<CXXMethodDecl>(BaseND->getCanonicalDecl());
8160       if (!BaseMD || !BaseMD->isVirtual() ||
8161           IsOverload(MD, BaseMD, /*UseMemberUsingDeclRules=*/false,
8162                      /*ConsiderCudaAttrs=*/true,
8163                      // C++2a [class.virtual]p2 does not consider requires
8164                      // clauses when overriding.
8165                      /*ConsiderRequiresClauses=*/false))
8166         continue;
8167 
8168       if (Overridden.insert(BaseMD).second) {
8169         MD->addOverriddenMethod(BaseMD);
8170         CheckOverridingFunctionReturnType(MD, BaseMD);
8171         CheckOverridingFunctionAttributes(MD, BaseMD);
8172         CheckOverridingFunctionExceptionSpec(MD, BaseMD);
8173         CheckIfOverriddenFunctionIsMarkedFinal(MD, BaseMD);
8174       }
8175 
8176       // A method can only override one function from each base class. We
8177       // don't track indirectly overridden methods from bases of bases.
8178       return true;
8179     }
8180 
8181     return false;
8182   };
8183 
8184   DC->lookupInBases(VisitBase, Paths);
8185   return !Overridden.empty();
8186 }
8187 
8188 namespace {
8189   // Struct for holding all of the extra arguments needed by
8190   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
8191   struct ActOnFDArgs {
8192     Scope *S;
8193     Declarator &D;
8194     MultiTemplateParamsArg TemplateParamLists;
8195     bool AddToScope;
8196   };
8197 } // end anonymous namespace
8198 
8199 namespace {
8200 
8201 // Callback to only accept typo corrections that have a non-zero edit distance.
8202 // Also only accept corrections that have the same parent decl.
8203 class DifferentNameValidatorCCC final : public CorrectionCandidateCallback {
8204  public:
8205   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
8206                             CXXRecordDecl *Parent)
8207       : Context(Context), OriginalFD(TypoFD),
8208         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
8209 
8210   bool ValidateCandidate(const TypoCorrection &candidate) override {
8211     if (candidate.getEditDistance() == 0)
8212       return false;
8213 
8214     SmallVector<unsigned, 1> MismatchedParams;
8215     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
8216                                           CDeclEnd = candidate.end();
8217          CDecl != CDeclEnd; ++CDecl) {
8218       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
8219 
8220       if (FD && !FD->hasBody() &&
8221           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
8222         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
8223           CXXRecordDecl *Parent = MD->getParent();
8224           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
8225             return true;
8226         } else if (!ExpectedParent) {
8227           return true;
8228         }
8229       }
8230     }
8231 
8232     return false;
8233   }
8234 
8235   std::unique_ptr<CorrectionCandidateCallback> clone() override {
8236     return std::make_unique<DifferentNameValidatorCCC>(*this);
8237   }
8238 
8239  private:
8240   ASTContext &Context;
8241   FunctionDecl *OriginalFD;
8242   CXXRecordDecl *ExpectedParent;
8243 };
8244 
8245 } // end anonymous namespace
8246 
8247 void Sema::MarkTypoCorrectedFunctionDefinition(const NamedDecl *F) {
8248   TypoCorrectedFunctionDefinitions.insert(F);
8249 }
8250 
8251 /// Generate diagnostics for an invalid function redeclaration.
8252 ///
8253 /// This routine handles generating the diagnostic messages for an invalid
8254 /// function redeclaration, including finding possible similar declarations
8255 /// or performing typo correction if there are no previous declarations with
8256 /// the same name.
8257 ///
8258 /// Returns a NamedDecl iff typo correction was performed and substituting in
8259 /// the new declaration name does not cause new errors.
8260 static NamedDecl *DiagnoseInvalidRedeclaration(
8261     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
8262     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
8263   DeclarationName Name = NewFD->getDeclName();
8264   DeclContext *NewDC = NewFD->getDeclContext();
8265   SmallVector<unsigned, 1> MismatchedParams;
8266   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
8267   TypoCorrection Correction;
8268   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
8269   unsigned DiagMsg =
8270     IsLocalFriend ? diag::err_no_matching_local_friend :
8271     NewFD->getFriendObjectKind() ? diag::err_qualified_friend_no_match :
8272     diag::err_member_decl_does_not_match;
8273   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
8274                     IsLocalFriend ? Sema::LookupLocalFriendName
8275                                   : Sema::LookupOrdinaryName,
8276                     Sema::ForVisibleRedeclaration);
8277 
8278   NewFD->setInvalidDecl();
8279   if (IsLocalFriend)
8280     SemaRef.LookupName(Prev, S);
8281   else
8282     SemaRef.LookupQualifiedName(Prev, NewDC);
8283   assert(!Prev.isAmbiguous() &&
8284          "Cannot have an ambiguity in previous-declaration lookup");
8285   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
8286   DifferentNameValidatorCCC CCC(SemaRef.Context, NewFD,
8287                                 MD ? MD->getParent() : nullptr);
8288   if (!Prev.empty()) {
8289     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
8290          Func != FuncEnd; ++Func) {
8291       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
8292       if (FD &&
8293           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
8294         // Add 1 to the index so that 0 can mean the mismatch didn't
8295         // involve a parameter
8296         unsigned ParamNum =
8297             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
8298         NearMatches.push_back(std::make_pair(FD, ParamNum));
8299       }
8300     }
8301   // If the qualified name lookup yielded nothing, try typo correction
8302   } else if ((Correction = SemaRef.CorrectTypo(
8303                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
8304                   &ExtraArgs.D.getCXXScopeSpec(), CCC, Sema::CTK_ErrorRecovery,
8305                   IsLocalFriend ? nullptr : NewDC))) {
8306     // Set up everything for the call to ActOnFunctionDeclarator
8307     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
8308                               ExtraArgs.D.getIdentifierLoc());
8309     Previous.clear();
8310     Previous.setLookupName(Correction.getCorrection());
8311     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
8312                                     CDeclEnd = Correction.end();
8313          CDecl != CDeclEnd; ++CDecl) {
8314       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
8315       if (FD && !FD->hasBody() &&
8316           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
8317         Previous.addDecl(FD);
8318       }
8319     }
8320     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
8321 
8322     NamedDecl *Result;
8323     // Retry building the function declaration with the new previous
8324     // declarations, and with errors suppressed.
8325     {
8326       // Trap errors.
8327       Sema::SFINAETrap Trap(SemaRef);
8328 
8329       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
8330       // pieces need to verify the typo-corrected C++ declaration and hopefully
8331       // eliminate the need for the parameter pack ExtraArgs.
8332       Result = SemaRef.ActOnFunctionDeclarator(
8333           ExtraArgs.S, ExtraArgs.D,
8334           Correction.getCorrectionDecl()->getDeclContext(),
8335           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
8336           ExtraArgs.AddToScope);
8337 
8338       if (Trap.hasErrorOccurred())
8339         Result = nullptr;
8340     }
8341 
8342     if (Result) {
8343       // Determine which correction we picked.
8344       Decl *Canonical = Result->getCanonicalDecl();
8345       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
8346            I != E; ++I)
8347         if ((*I)->getCanonicalDecl() == Canonical)
8348           Correction.setCorrectionDecl(*I);
8349 
8350       // Let Sema know about the correction.
8351       SemaRef.MarkTypoCorrectedFunctionDefinition(Result);
8352       SemaRef.diagnoseTypo(
8353           Correction,
8354           SemaRef.PDiag(IsLocalFriend
8355                           ? diag::err_no_matching_local_friend_suggest
8356                           : diag::err_member_decl_does_not_match_suggest)
8357             << Name << NewDC << IsDefinition);
8358       return Result;
8359     }
8360 
8361     // Pretend the typo correction never occurred
8362     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
8363                               ExtraArgs.D.getIdentifierLoc());
8364     ExtraArgs.D.setRedeclaration(wasRedeclaration);
8365     Previous.clear();
8366     Previous.setLookupName(Name);
8367   }
8368 
8369   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
8370       << Name << NewDC << IsDefinition << NewFD->getLocation();
8371 
8372   bool NewFDisConst = false;
8373   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
8374     NewFDisConst = NewMD->isConst();
8375 
8376   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
8377        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
8378        NearMatch != NearMatchEnd; ++NearMatch) {
8379     FunctionDecl *FD = NearMatch->first;
8380     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
8381     bool FDisConst = MD && MD->isConst();
8382     bool IsMember = MD || !IsLocalFriend;
8383 
8384     // FIXME: These notes are poorly worded for the local friend case.
8385     if (unsigned Idx = NearMatch->second) {
8386       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
8387       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
8388       if (Loc.isInvalid()) Loc = FD->getLocation();
8389       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
8390                                  : diag::note_local_decl_close_param_match)
8391         << Idx << FDParam->getType()
8392         << NewFD->getParamDecl(Idx - 1)->getType();
8393     } else if (FDisConst != NewFDisConst) {
8394       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
8395           << NewFDisConst << FD->getSourceRange().getEnd();
8396     } else
8397       SemaRef.Diag(FD->getLocation(),
8398                    IsMember ? diag::note_member_def_close_match
8399                             : diag::note_local_decl_close_match);
8400   }
8401   return nullptr;
8402 }
8403 
8404 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
8405   switch (D.getDeclSpec().getStorageClassSpec()) {
8406   default: llvm_unreachable("Unknown storage class!");
8407   case DeclSpec::SCS_auto:
8408   case DeclSpec::SCS_register:
8409   case DeclSpec::SCS_mutable:
8410     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
8411                  diag::err_typecheck_sclass_func);
8412     D.getMutableDeclSpec().ClearStorageClassSpecs();
8413     D.setInvalidType();
8414     break;
8415   case DeclSpec::SCS_unspecified: break;
8416   case DeclSpec::SCS_extern:
8417     if (D.getDeclSpec().isExternInLinkageSpec())
8418       return SC_None;
8419     return SC_Extern;
8420   case DeclSpec::SCS_static: {
8421     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
8422       // C99 6.7.1p5:
8423       //   The declaration of an identifier for a function that has
8424       //   block scope shall have no explicit storage-class specifier
8425       //   other than extern
8426       // See also (C++ [dcl.stc]p4).
8427       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
8428                    diag::err_static_block_func);
8429       break;
8430     } else
8431       return SC_Static;
8432   }
8433   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
8434   }
8435 
8436   // No explicit storage class has already been returned
8437   return SC_None;
8438 }
8439 
8440 static FunctionDecl *CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
8441                                            DeclContext *DC, QualType &R,
8442                                            TypeSourceInfo *TInfo,
8443                                            StorageClass SC,
8444                                            bool &IsVirtualOkay) {
8445   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
8446   DeclarationName Name = NameInfo.getName();
8447 
8448   FunctionDecl *NewFD = nullptr;
8449   bool isInline = D.getDeclSpec().isInlineSpecified();
8450 
8451   if (!SemaRef.getLangOpts().CPlusPlus) {
8452     // Determine whether the function was written with a
8453     // prototype. This true when:
8454     //   - there is a prototype in the declarator, or
8455     //   - the type R of the function is some kind of typedef or other non-
8456     //     attributed reference to a type name (which eventually refers to a
8457     //     function type).
8458     bool HasPrototype =
8459       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
8460       (!R->getAsAdjusted<FunctionType>() && R->isFunctionProtoType());
8461 
8462     NewFD = FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), NameInfo,
8463                                  R, TInfo, SC, isInline, HasPrototype,
8464                                  ConstexprSpecKind::Unspecified,
8465                                  /*TrailingRequiresClause=*/nullptr);
8466     if (D.isInvalidType())
8467       NewFD->setInvalidDecl();
8468 
8469     return NewFD;
8470   }
8471 
8472   ExplicitSpecifier ExplicitSpecifier = D.getDeclSpec().getExplicitSpecifier();
8473 
8474   ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier();
8475   if (ConstexprKind == ConstexprSpecKind::Constinit) {
8476     SemaRef.Diag(D.getDeclSpec().getConstexprSpecLoc(),
8477                  diag::err_constexpr_wrong_decl_kind)
8478         << static_cast<int>(ConstexprKind);
8479     ConstexprKind = ConstexprSpecKind::Unspecified;
8480     D.getMutableDeclSpec().ClearConstexprSpec();
8481   }
8482   Expr *TrailingRequiresClause = D.getTrailingRequiresClause();
8483 
8484   // Check that the return type is not an abstract class type.
8485   // For record types, this is done by the AbstractClassUsageDiagnoser once
8486   // the class has been completely parsed.
8487   if (!DC->isRecord() &&
8488       SemaRef.RequireNonAbstractType(
8489           D.getIdentifierLoc(), R->castAs<FunctionType>()->getReturnType(),
8490           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
8491     D.setInvalidType();
8492 
8493   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
8494     // This is a C++ constructor declaration.
8495     assert(DC->isRecord() &&
8496            "Constructors can only be declared in a member context");
8497 
8498     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
8499     return CXXConstructorDecl::Create(
8500         SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R,
8501         TInfo, ExplicitSpecifier, isInline,
8502         /*isImplicitlyDeclared=*/false, ConstexprKind, InheritedConstructor(),
8503         TrailingRequiresClause);
8504 
8505   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
8506     // This is a C++ destructor declaration.
8507     if (DC->isRecord()) {
8508       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
8509       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
8510       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
8511           SemaRef.Context, Record, D.getBeginLoc(), NameInfo, R, TInfo,
8512           isInline, /*isImplicitlyDeclared=*/false, ConstexprKind,
8513           TrailingRequiresClause);
8514 
8515       // If the destructor needs an implicit exception specification, set it
8516       // now. FIXME: It'd be nice to be able to create the right type to start
8517       // with, but the type needs to reference the destructor declaration.
8518       if (SemaRef.getLangOpts().CPlusPlus11)
8519         SemaRef.AdjustDestructorExceptionSpec(NewDD);
8520 
8521       IsVirtualOkay = true;
8522       return NewDD;
8523 
8524     } else {
8525       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
8526       D.setInvalidType();
8527 
8528       // Create a FunctionDecl to satisfy the function definition parsing
8529       // code path.
8530       return FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(),
8531                                   D.getIdentifierLoc(), Name, R, TInfo, SC,
8532                                   isInline,
8533                                   /*hasPrototype=*/true, ConstexprKind,
8534                                   TrailingRequiresClause);
8535     }
8536 
8537   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
8538     if (!DC->isRecord()) {
8539       SemaRef.Diag(D.getIdentifierLoc(),
8540            diag::err_conv_function_not_member);
8541       return nullptr;
8542     }
8543 
8544     SemaRef.CheckConversionDeclarator(D, R, SC);
8545     if (D.isInvalidType())
8546       return nullptr;
8547 
8548     IsVirtualOkay = true;
8549     return CXXConversionDecl::Create(
8550         SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R,
8551         TInfo, isInline, ExplicitSpecifier, ConstexprKind, SourceLocation(),
8552         TrailingRequiresClause);
8553 
8554   } else if (Name.getNameKind() == DeclarationName::CXXDeductionGuideName) {
8555     if (TrailingRequiresClause)
8556       SemaRef.Diag(TrailingRequiresClause->getBeginLoc(),
8557                    diag::err_trailing_requires_clause_on_deduction_guide)
8558           << TrailingRequiresClause->getSourceRange();
8559     SemaRef.CheckDeductionGuideDeclarator(D, R, SC);
8560 
8561     return CXXDeductionGuideDecl::Create(SemaRef.Context, DC, D.getBeginLoc(),
8562                                          ExplicitSpecifier, NameInfo, R, TInfo,
8563                                          D.getEndLoc());
8564   } else if (DC->isRecord()) {
8565     // If the name of the function is the same as the name of the record,
8566     // then this must be an invalid constructor that has a return type.
8567     // (The parser checks for a return type and makes the declarator a
8568     // constructor if it has no return type).
8569     if (Name.getAsIdentifierInfo() &&
8570         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
8571       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
8572         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
8573         << SourceRange(D.getIdentifierLoc());
8574       return nullptr;
8575     }
8576 
8577     // This is a C++ method declaration.
8578     CXXMethodDecl *Ret = CXXMethodDecl::Create(
8579         SemaRef.Context, cast<CXXRecordDecl>(DC), D.getBeginLoc(), NameInfo, R,
8580         TInfo, SC, isInline, ConstexprKind, SourceLocation(),
8581         TrailingRequiresClause);
8582     IsVirtualOkay = !Ret->isStatic();
8583     return Ret;
8584   } else {
8585     bool isFriend =
8586         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
8587     if (!isFriend && SemaRef.CurContext->isRecord())
8588       return nullptr;
8589 
8590     // Determine whether the function was written with a
8591     // prototype. This true when:
8592     //   - we're in C++ (where every function has a prototype),
8593     return FunctionDecl::Create(SemaRef.Context, DC, D.getBeginLoc(), NameInfo,
8594                                 R, TInfo, SC, isInline, true /*HasPrototype*/,
8595                                 ConstexprKind, TrailingRequiresClause);
8596   }
8597 }
8598 
8599 enum OpenCLParamType {
8600   ValidKernelParam,
8601   PtrPtrKernelParam,
8602   PtrKernelParam,
8603   InvalidAddrSpacePtrKernelParam,
8604   InvalidKernelParam,
8605   RecordKernelParam
8606 };
8607 
8608 static bool isOpenCLSizeDependentType(ASTContext &C, QualType Ty) {
8609   // Size dependent types are just typedefs to normal integer types
8610   // (e.g. unsigned long), so we cannot distinguish them from other typedefs to
8611   // integers other than by their names.
8612   StringRef SizeTypeNames[] = {"size_t", "intptr_t", "uintptr_t", "ptrdiff_t"};
8613 
8614   // Remove typedefs one by one until we reach a typedef
8615   // for a size dependent type.
8616   QualType DesugaredTy = Ty;
8617   do {
8618     ArrayRef<StringRef> Names(SizeTypeNames);
8619     auto Match = llvm::find(Names, DesugaredTy.getUnqualifiedType().getAsString());
8620     if (Names.end() != Match)
8621       return true;
8622 
8623     Ty = DesugaredTy;
8624     DesugaredTy = Ty.getSingleStepDesugaredType(C);
8625   } while (DesugaredTy != Ty);
8626 
8627   return false;
8628 }
8629 
8630 static OpenCLParamType getOpenCLKernelParameterType(Sema &S, QualType PT) {
8631   if (PT->isPointerType()) {
8632     QualType PointeeType = PT->getPointeeType();
8633     if (PointeeType.getAddressSpace() == LangAS::opencl_generic ||
8634         PointeeType.getAddressSpace() == LangAS::opencl_private ||
8635         PointeeType.getAddressSpace() == LangAS::Default)
8636       return InvalidAddrSpacePtrKernelParam;
8637 
8638     if (PointeeType->isPointerType()) {
8639       // This is a pointer to pointer parameter.
8640       // Recursively check inner type.
8641       OpenCLParamType ParamKind = getOpenCLKernelParameterType(S, PointeeType);
8642       if (ParamKind == InvalidAddrSpacePtrKernelParam ||
8643           ParamKind == InvalidKernelParam)
8644         return ParamKind;
8645 
8646       return PtrPtrKernelParam;
8647     }
8648     return PtrKernelParam;
8649   }
8650 
8651   // OpenCL v1.2 s6.9.k:
8652   // Arguments to kernel functions in a program cannot be declared with the
8653   // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
8654   // uintptr_t or a struct and/or union that contain fields declared to be one
8655   // of these built-in scalar types.
8656   if (isOpenCLSizeDependentType(S.getASTContext(), PT))
8657     return InvalidKernelParam;
8658 
8659   if (PT->isImageType())
8660     return PtrKernelParam;
8661 
8662   if (PT->isBooleanType() || PT->isEventT() || PT->isReserveIDT())
8663     return InvalidKernelParam;
8664 
8665   // OpenCL extension spec v1.2 s9.5:
8666   // This extension adds support for half scalar and vector types as built-in
8667   // types that can be used for arithmetic operations, conversions etc.
8668   if (!S.getOpenCLOptions().isEnabled("cl_khr_fp16") && PT->isHalfType())
8669     return InvalidKernelParam;
8670 
8671   if (PT->isRecordType())
8672     return RecordKernelParam;
8673 
8674   // Look into an array argument to check if it has a forbidden type.
8675   if (PT->isArrayType()) {
8676     const Type *UnderlyingTy = PT->getPointeeOrArrayElementType();
8677     // Call ourself to check an underlying type of an array. Since the
8678     // getPointeeOrArrayElementType returns an innermost type which is not an
8679     // array, this recursive call only happens once.
8680     return getOpenCLKernelParameterType(S, QualType(UnderlyingTy, 0));
8681   }
8682 
8683   return ValidKernelParam;
8684 }
8685 
8686 static void checkIsValidOpenCLKernelParameter(
8687   Sema &S,
8688   Declarator &D,
8689   ParmVarDecl *Param,
8690   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
8691   QualType PT = Param->getType();
8692 
8693   // Cache the valid types we encounter to avoid rechecking structs that are
8694   // used again
8695   if (ValidTypes.count(PT.getTypePtr()))
8696     return;
8697 
8698   switch (getOpenCLKernelParameterType(S, PT)) {
8699   case PtrPtrKernelParam:
8700     // OpenCL v3.0 s6.11.a:
8701     // A kernel function argument cannot be declared as a pointer to a pointer
8702     // type. [...] This restriction only applies to OpenCL C 1.2 or below.
8703     if (S.getLangOpts().OpenCLVersion < 120 &&
8704         !S.getLangOpts().OpenCLCPlusPlus) {
8705       S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
8706       D.setInvalidType();
8707       return;
8708     }
8709 
8710     ValidTypes.insert(PT.getTypePtr());
8711     return;
8712 
8713   case InvalidAddrSpacePtrKernelParam:
8714     // OpenCL v1.0 s6.5:
8715     // __kernel function arguments declared to be a pointer of a type can point
8716     // to one of the following address spaces only : __global, __local or
8717     // __constant.
8718     S.Diag(Param->getLocation(), diag::err_kernel_arg_address_space);
8719     D.setInvalidType();
8720     return;
8721 
8722     // OpenCL v1.2 s6.9.k:
8723     // Arguments to kernel functions in a program cannot be declared with the
8724     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
8725     // uintptr_t or a struct and/or union that contain fields declared to be
8726     // one of these built-in scalar types.
8727 
8728   case InvalidKernelParam:
8729     // OpenCL v1.2 s6.8 n:
8730     // A kernel function argument cannot be declared
8731     // of event_t type.
8732     // Do not diagnose half type since it is diagnosed as invalid argument
8733     // type for any function elsewhere.
8734     if (!PT->isHalfType()) {
8735       S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8736 
8737       // Explain what typedefs are involved.
8738       const TypedefType *Typedef = nullptr;
8739       while ((Typedef = PT->getAs<TypedefType>())) {
8740         SourceLocation Loc = Typedef->getDecl()->getLocation();
8741         // SourceLocation may be invalid for a built-in type.
8742         if (Loc.isValid())
8743           S.Diag(Loc, diag::note_entity_declared_at) << PT;
8744         PT = Typedef->desugar();
8745       }
8746     }
8747 
8748     D.setInvalidType();
8749     return;
8750 
8751   case PtrKernelParam:
8752   case ValidKernelParam:
8753     ValidTypes.insert(PT.getTypePtr());
8754     return;
8755 
8756   case RecordKernelParam:
8757     break;
8758   }
8759 
8760   // Track nested structs we will inspect
8761   SmallVector<const Decl *, 4> VisitStack;
8762 
8763   // Track where we are in the nested structs. Items will migrate from
8764   // VisitStack to HistoryStack as we do the DFS for bad field.
8765   SmallVector<const FieldDecl *, 4> HistoryStack;
8766   HistoryStack.push_back(nullptr);
8767 
8768   // At this point we already handled everything except of a RecordType or
8769   // an ArrayType of a RecordType.
8770   assert((PT->isArrayType() || PT->isRecordType()) && "Unexpected type.");
8771   const RecordType *RecTy =
8772       PT->getPointeeOrArrayElementType()->getAs<RecordType>();
8773   const RecordDecl *OrigRecDecl = RecTy->getDecl();
8774 
8775   VisitStack.push_back(RecTy->getDecl());
8776   assert(VisitStack.back() && "First decl null?");
8777 
8778   do {
8779     const Decl *Next = VisitStack.pop_back_val();
8780     if (!Next) {
8781       assert(!HistoryStack.empty());
8782       // Found a marker, we have gone up a level
8783       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
8784         ValidTypes.insert(Hist->getType().getTypePtr());
8785 
8786       continue;
8787     }
8788 
8789     // Adds everything except the original parameter declaration (which is not a
8790     // field itself) to the history stack.
8791     const RecordDecl *RD;
8792     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
8793       HistoryStack.push_back(Field);
8794 
8795       QualType FieldTy = Field->getType();
8796       // Other field types (known to be valid or invalid) are handled while we
8797       // walk around RecordDecl::fields().
8798       assert((FieldTy->isArrayType() || FieldTy->isRecordType()) &&
8799              "Unexpected type.");
8800       const Type *FieldRecTy = FieldTy->getPointeeOrArrayElementType();
8801 
8802       RD = FieldRecTy->castAs<RecordType>()->getDecl();
8803     } else {
8804       RD = cast<RecordDecl>(Next);
8805     }
8806 
8807     // Add a null marker so we know when we've gone back up a level
8808     VisitStack.push_back(nullptr);
8809 
8810     for (const auto *FD : RD->fields()) {
8811       QualType QT = FD->getType();
8812 
8813       if (ValidTypes.count(QT.getTypePtr()))
8814         continue;
8815 
8816       OpenCLParamType ParamType = getOpenCLKernelParameterType(S, QT);
8817       if (ParamType == ValidKernelParam)
8818         continue;
8819 
8820       if (ParamType == RecordKernelParam) {
8821         VisitStack.push_back(FD);
8822         continue;
8823       }
8824 
8825       // OpenCL v1.2 s6.9.p:
8826       // Arguments to kernel functions that are declared to be a struct or union
8827       // do not allow OpenCL objects to be passed as elements of the struct or
8828       // union.
8829       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
8830           ParamType == InvalidAddrSpacePtrKernelParam) {
8831         S.Diag(Param->getLocation(),
8832                diag::err_record_with_pointers_kernel_param)
8833           << PT->isUnionType()
8834           << PT;
8835       } else {
8836         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
8837       }
8838 
8839       S.Diag(OrigRecDecl->getLocation(), diag::note_within_field_of_type)
8840           << OrigRecDecl->getDeclName();
8841 
8842       // We have an error, now let's go back up through history and show where
8843       // the offending field came from
8844       for (ArrayRef<const FieldDecl *>::const_iterator
8845                I = HistoryStack.begin() + 1,
8846                E = HistoryStack.end();
8847            I != E; ++I) {
8848         const FieldDecl *OuterField = *I;
8849         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
8850           << OuterField->getType();
8851       }
8852 
8853       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
8854         << QT->isPointerType()
8855         << QT;
8856       D.setInvalidType();
8857       return;
8858     }
8859   } while (!VisitStack.empty());
8860 }
8861 
8862 /// Find the DeclContext in which a tag is implicitly declared if we see an
8863 /// elaborated type specifier in the specified context, and lookup finds
8864 /// nothing.
8865 static DeclContext *getTagInjectionContext(DeclContext *DC) {
8866   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
8867     DC = DC->getParent();
8868   return DC;
8869 }
8870 
8871 /// Find the Scope in which a tag is implicitly declared if we see an
8872 /// elaborated type specifier in the specified context, and lookup finds
8873 /// nothing.
8874 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
8875   while (S->isClassScope() ||
8876          (LangOpts.CPlusPlus &&
8877           S->isFunctionPrototypeScope()) ||
8878          ((S->getFlags() & Scope::DeclScope) == 0) ||
8879          (S->getEntity() && S->getEntity()->isTransparentContext()))
8880     S = S->getParent();
8881   return S;
8882 }
8883 
8884 NamedDecl*
8885 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
8886                               TypeSourceInfo *TInfo, LookupResult &Previous,
8887                               MultiTemplateParamsArg TemplateParamListsRef,
8888                               bool &AddToScope) {
8889   QualType R = TInfo->getType();
8890 
8891   assert(R->isFunctionType());
8892   if (R.getCanonicalType()->castAs<FunctionType>()->getCmseNSCallAttr())
8893     Diag(D.getIdentifierLoc(), diag::err_function_decl_cmse_ns_call);
8894 
8895   SmallVector<TemplateParameterList *, 4> TemplateParamLists;
8896   for (TemplateParameterList *TPL : TemplateParamListsRef)
8897     TemplateParamLists.push_back(TPL);
8898   if (TemplateParameterList *Invented = D.getInventedTemplateParameterList()) {
8899     if (!TemplateParamLists.empty() &&
8900         Invented->getDepth() == TemplateParamLists.back()->getDepth())
8901       TemplateParamLists.back() = Invented;
8902     else
8903       TemplateParamLists.push_back(Invented);
8904   }
8905 
8906   // TODO: consider using NameInfo for diagnostic.
8907   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
8908   DeclarationName Name = NameInfo.getName();
8909   StorageClass SC = getFunctionStorageClass(*this, D);
8910 
8911   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
8912     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
8913          diag::err_invalid_thread)
8914       << DeclSpec::getSpecifierName(TSCS);
8915 
8916   if (D.isFirstDeclarationOfMember())
8917     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
8918                            D.getIdentifierLoc());
8919 
8920   bool isFriend = false;
8921   FunctionTemplateDecl *FunctionTemplate = nullptr;
8922   bool isMemberSpecialization = false;
8923   bool isFunctionTemplateSpecialization = false;
8924 
8925   bool isDependentClassScopeExplicitSpecialization = false;
8926   bool HasExplicitTemplateArgs = false;
8927   TemplateArgumentListInfo TemplateArgs;
8928 
8929   bool isVirtualOkay = false;
8930 
8931   DeclContext *OriginalDC = DC;
8932   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
8933 
8934   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
8935                                               isVirtualOkay);
8936   if (!NewFD) return nullptr;
8937 
8938   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
8939     NewFD->setTopLevelDeclInObjCContainer();
8940 
8941   // Set the lexical context. If this is a function-scope declaration, or has a
8942   // C++ scope specifier, or is the object of a friend declaration, the lexical
8943   // context will be different from the semantic context.
8944   NewFD->setLexicalDeclContext(CurContext);
8945 
8946   if (IsLocalExternDecl)
8947     NewFD->setLocalExternDecl();
8948 
8949   if (getLangOpts().CPlusPlus) {
8950     bool isInline = D.getDeclSpec().isInlineSpecified();
8951     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
8952     bool hasExplicit = D.getDeclSpec().hasExplicitSpecifier();
8953     isFriend = D.getDeclSpec().isFriendSpecified();
8954     if (isFriend && !isInline && D.isFunctionDefinition()) {
8955       // C++ [class.friend]p5
8956       //   A function can be defined in a friend declaration of a
8957       //   class . . . . Such a function is implicitly inline.
8958       NewFD->setImplicitlyInline();
8959     }
8960 
8961     // If this is a method defined in an __interface, and is not a constructor
8962     // or an overloaded operator, then set the pure flag (isVirtual will already
8963     // return true).
8964     if (const CXXRecordDecl *Parent =
8965           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
8966       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
8967         NewFD->setPure(true);
8968 
8969       // C++ [class.union]p2
8970       //   A union can have member functions, but not virtual functions.
8971       if (isVirtual && Parent->isUnion())
8972         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
8973     }
8974 
8975     SetNestedNameSpecifier(*this, NewFD, D);
8976     isMemberSpecialization = false;
8977     isFunctionTemplateSpecialization = false;
8978     if (D.isInvalidType())
8979       NewFD->setInvalidDecl();
8980 
8981     // Match up the template parameter lists with the scope specifier, then
8982     // determine whether we have a template or a template specialization.
8983     bool Invalid = false;
8984     TemplateParameterList *TemplateParams =
8985         MatchTemplateParametersToScopeSpecifier(
8986             D.getDeclSpec().getBeginLoc(), D.getIdentifierLoc(),
8987             D.getCXXScopeSpec(),
8988             D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId
8989                 ? D.getName().TemplateId
8990                 : nullptr,
8991             TemplateParamLists, isFriend, isMemberSpecialization,
8992             Invalid);
8993     if (TemplateParams) {
8994       // Check that we can declare a template here.
8995       if (CheckTemplateDeclScope(S, TemplateParams))
8996         NewFD->setInvalidDecl();
8997 
8998       if (TemplateParams->size() > 0) {
8999         // This is a function template
9000 
9001         // A destructor cannot be a template.
9002         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
9003           Diag(NewFD->getLocation(), diag::err_destructor_template);
9004           NewFD->setInvalidDecl();
9005         }
9006 
9007         // If we're adding a template to a dependent context, we may need to
9008         // rebuilding some of the types used within the template parameter list,
9009         // now that we know what the current instantiation is.
9010         if (DC->isDependentContext()) {
9011           ContextRAII SavedContext(*this, DC);
9012           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
9013             Invalid = true;
9014         }
9015 
9016         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
9017                                                         NewFD->getLocation(),
9018                                                         Name, TemplateParams,
9019                                                         NewFD);
9020         FunctionTemplate->setLexicalDeclContext(CurContext);
9021         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
9022 
9023         // For source fidelity, store the other template param lists.
9024         if (TemplateParamLists.size() > 1) {
9025           NewFD->setTemplateParameterListsInfo(Context,
9026               ArrayRef<TemplateParameterList *>(TemplateParamLists)
9027                   .drop_back(1));
9028         }
9029       } else {
9030         // This is a function template specialization.
9031         isFunctionTemplateSpecialization = true;
9032         // For source fidelity, store all the template param lists.
9033         if (TemplateParamLists.size() > 0)
9034           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
9035 
9036         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
9037         if (isFriend) {
9038           // We want to remove the "template<>", found here.
9039           SourceRange RemoveRange = TemplateParams->getSourceRange();
9040 
9041           // If we remove the template<> and the name is not a
9042           // template-id, we're actually silently creating a problem:
9043           // the friend declaration will refer to an untemplated decl,
9044           // and clearly the user wants a template specialization.  So
9045           // we need to insert '<>' after the name.
9046           SourceLocation InsertLoc;
9047           if (D.getName().getKind() != UnqualifiedIdKind::IK_TemplateId) {
9048             InsertLoc = D.getName().getSourceRange().getEnd();
9049             InsertLoc = getLocForEndOfToken(InsertLoc);
9050           }
9051 
9052           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
9053             << Name << RemoveRange
9054             << FixItHint::CreateRemoval(RemoveRange)
9055             << FixItHint::CreateInsertion(InsertLoc, "<>");
9056         }
9057       }
9058     } else {
9059       // Check that we can declare a template here.
9060       if (!TemplateParamLists.empty() && isMemberSpecialization &&
9061           CheckTemplateDeclScope(S, TemplateParamLists.back()))
9062         NewFD->setInvalidDecl();
9063 
9064       // All template param lists were matched against the scope specifier:
9065       // this is NOT (an explicit specialization of) a template.
9066       if (TemplateParamLists.size() > 0)
9067         // For source fidelity, store all the template param lists.
9068         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
9069     }
9070 
9071     if (Invalid) {
9072       NewFD->setInvalidDecl();
9073       if (FunctionTemplate)
9074         FunctionTemplate->setInvalidDecl();
9075     }
9076 
9077     // C++ [dcl.fct.spec]p5:
9078     //   The virtual specifier shall only be used in declarations of
9079     //   nonstatic class member functions that appear within a
9080     //   member-specification of a class declaration; see 10.3.
9081     //
9082     if (isVirtual && !NewFD->isInvalidDecl()) {
9083       if (!isVirtualOkay) {
9084         Diag(D.getDeclSpec().getVirtualSpecLoc(),
9085              diag::err_virtual_non_function);
9086       } else if (!CurContext->isRecord()) {
9087         // 'virtual' was specified outside of the class.
9088         Diag(D.getDeclSpec().getVirtualSpecLoc(),
9089              diag::err_virtual_out_of_class)
9090           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
9091       } else if (NewFD->getDescribedFunctionTemplate()) {
9092         // C++ [temp.mem]p3:
9093         //  A member function template shall not be virtual.
9094         Diag(D.getDeclSpec().getVirtualSpecLoc(),
9095              diag::err_virtual_member_function_template)
9096           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
9097       } else {
9098         // Okay: Add virtual to the method.
9099         NewFD->setVirtualAsWritten(true);
9100       }
9101 
9102       if (getLangOpts().CPlusPlus14 &&
9103           NewFD->getReturnType()->isUndeducedType())
9104         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
9105     }
9106 
9107     if (getLangOpts().CPlusPlus14 &&
9108         (NewFD->isDependentContext() ||
9109          (isFriend && CurContext->isDependentContext())) &&
9110         NewFD->getReturnType()->isUndeducedType()) {
9111       // If the function template is referenced directly (for instance, as a
9112       // member of the current instantiation), pretend it has a dependent type.
9113       // This is not really justified by the standard, but is the only sane
9114       // thing to do.
9115       // FIXME: For a friend function, we have not marked the function as being
9116       // a friend yet, so 'isDependentContext' on the FD doesn't work.
9117       const FunctionProtoType *FPT =
9118           NewFD->getType()->castAs<FunctionProtoType>();
9119       QualType Result =
9120           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
9121       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
9122                                              FPT->getExtProtoInfo()));
9123     }
9124 
9125     // C++ [dcl.fct.spec]p3:
9126     //  The inline specifier shall not appear on a block scope function
9127     //  declaration.
9128     if (isInline && !NewFD->isInvalidDecl()) {
9129       if (CurContext->isFunctionOrMethod()) {
9130         // 'inline' is not allowed on block scope function declaration.
9131         Diag(D.getDeclSpec().getInlineSpecLoc(),
9132              diag::err_inline_declaration_block_scope) << Name
9133           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
9134       }
9135     }
9136 
9137     // C++ [dcl.fct.spec]p6:
9138     //  The explicit specifier shall be used only in the declaration of a
9139     //  constructor or conversion function within its class definition;
9140     //  see 12.3.1 and 12.3.2.
9141     if (hasExplicit && !NewFD->isInvalidDecl() &&
9142         !isa<CXXDeductionGuideDecl>(NewFD)) {
9143       if (!CurContext->isRecord()) {
9144         // 'explicit' was specified outside of the class.
9145         Diag(D.getDeclSpec().getExplicitSpecLoc(),
9146              diag::err_explicit_out_of_class)
9147             << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecRange());
9148       } else if (!isa<CXXConstructorDecl>(NewFD) &&
9149                  !isa<CXXConversionDecl>(NewFD)) {
9150         // 'explicit' was specified on a function that wasn't a constructor
9151         // or conversion function.
9152         Diag(D.getDeclSpec().getExplicitSpecLoc(),
9153              diag::err_explicit_non_ctor_or_conv_function)
9154             << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecRange());
9155       }
9156     }
9157 
9158     ConstexprSpecKind ConstexprKind = D.getDeclSpec().getConstexprSpecifier();
9159     if (ConstexprKind != ConstexprSpecKind::Unspecified) {
9160       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
9161       // are implicitly inline.
9162       NewFD->setImplicitlyInline();
9163 
9164       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
9165       // be either constructors or to return a literal type. Therefore,
9166       // destructors cannot be declared constexpr.
9167       if (isa<CXXDestructorDecl>(NewFD) &&
9168           (!getLangOpts().CPlusPlus20 ||
9169            ConstexprKind == ConstexprSpecKind::Consteval)) {
9170         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor)
9171             << static_cast<int>(ConstexprKind);
9172         NewFD->setConstexprKind(getLangOpts().CPlusPlus20
9173                                     ? ConstexprSpecKind::Unspecified
9174                                     : ConstexprSpecKind::Constexpr);
9175       }
9176       // C++20 [dcl.constexpr]p2: An allocation function, or a
9177       // deallocation function shall not be declared with the consteval
9178       // specifier.
9179       if (ConstexprKind == ConstexprSpecKind::Consteval &&
9180           (NewFD->getOverloadedOperator() == OO_New ||
9181            NewFD->getOverloadedOperator() == OO_Array_New ||
9182            NewFD->getOverloadedOperator() == OO_Delete ||
9183            NewFD->getOverloadedOperator() == OO_Array_Delete)) {
9184         Diag(D.getDeclSpec().getConstexprSpecLoc(),
9185              diag::err_invalid_consteval_decl_kind)
9186             << NewFD;
9187         NewFD->setConstexprKind(ConstexprSpecKind::Constexpr);
9188       }
9189     }
9190 
9191     // If __module_private__ was specified, mark the function accordingly.
9192     if (D.getDeclSpec().isModulePrivateSpecified()) {
9193       if (isFunctionTemplateSpecialization) {
9194         SourceLocation ModulePrivateLoc
9195           = D.getDeclSpec().getModulePrivateSpecLoc();
9196         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
9197           << 0
9198           << FixItHint::CreateRemoval(ModulePrivateLoc);
9199       } else {
9200         NewFD->setModulePrivate();
9201         if (FunctionTemplate)
9202           FunctionTemplate->setModulePrivate();
9203       }
9204     }
9205 
9206     if (isFriend) {
9207       if (FunctionTemplate) {
9208         FunctionTemplate->setObjectOfFriendDecl();
9209         FunctionTemplate->setAccess(AS_public);
9210       }
9211       NewFD->setObjectOfFriendDecl();
9212       NewFD->setAccess(AS_public);
9213     }
9214 
9215     // If a function is defined as defaulted or deleted, mark it as such now.
9216     // We'll do the relevant checks on defaulted / deleted functions later.
9217     switch (D.getFunctionDefinitionKind()) {
9218     case FunctionDefinitionKind::Declaration:
9219     case FunctionDefinitionKind::Definition:
9220       break;
9221 
9222     case FunctionDefinitionKind::Defaulted:
9223       NewFD->setDefaulted();
9224       break;
9225 
9226     case FunctionDefinitionKind::Deleted:
9227       NewFD->setDeletedAsWritten();
9228       break;
9229     }
9230 
9231     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
9232         D.isFunctionDefinition()) {
9233       // C++ [class.mfct]p2:
9234       //   A member function may be defined (8.4) in its class definition, in
9235       //   which case it is an inline member function (7.1.2)
9236       NewFD->setImplicitlyInline();
9237     }
9238 
9239     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
9240         !CurContext->isRecord()) {
9241       // C++ [class.static]p1:
9242       //   A data or function member of a class may be declared static
9243       //   in a class definition, in which case it is a static member of
9244       //   the class.
9245 
9246       // Complain about the 'static' specifier if it's on an out-of-line
9247       // member function definition.
9248 
9249       // MSVC permits the use of a 'static' storage specifier on an out-of-line
9250       // member function template declaration and class member template
9251       // declaration (MSVC versions before 2015), warn about this.
9252       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
9253            ((!getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015) &&
9254              cast<CXXRecordDecl>(DC)->getDescribedClassTemplate()) ||
9255            (getLangOpts().MSVCCompat && NewFD->getDescribedFunctionTemplate()))
9256            ? diag::ext_static_out_of_line : diag::err_static_out_of_line)
9257         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
9258     }
9259 
9260     // C++11 [except.spec]p15:
9261     //   A deallocation function with no exception-specification is treated
9262     //   as if it were specified with noexcept(true).
9263     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
9264     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
9265          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
9266         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
9267       NewFD->setType(Context.getFunctionType(
9268           FPT->getReturnType(), FPT->getParamTypes(),
9269           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
9270   }
9271 
9272   // Filter out previous declarations that don't match the scope.
9273   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
9274                        D.getCXXScopeSpec().isNotEmpty() ||
9275                        isMemberSpecialization ||
9276                        isFunctionTemplateSpecialization);
9277 
9278   // Handle GNU asm-label extension (encoded as an attribute).
9279   if (Expr *E = (Expr*) D.getAsmLabel()) {
9280     // The parser guarantees this is a string.
9281     StringLiteral *SE = cast<StringLiteral>(E);
9282     NewFD->addAttr(AsmLabelAttr::Create(Context, SE->getString(),
9283                                         /*IsLiteralLabel=*/true,
9284                                         SE->getStrTokenLoc(0)));
9285   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
9286     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
9287       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
9288     if (I != ExtnameUndeclaredIdentifiers.end()) {
9289       if (isDeclExternC(NewFD)) {
9290         NewFD->addAttr(I->second);
9291         ExtnameUndeclaredIdentifiers.erase(I);
9292       } else
9293         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
9294             << /*Variable*/0 << NewFD;
9295     }
9296   }
9297 
9298   // Copy the parameter declarations from the declarator D to the function
9299   // declaration NewFD, if they are available.  First scavenge them into Params.
9300   SmallVector<ParmVarDecl*, 16> Params;
9301   unsigned FTIIdx;
9302   if (D.isFunctionDeclarator(FTIIdx)) {
9303     DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun;
9304 
9305     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
9306     // function that takes no arguments, not a function that takes a
9307     // single void argument.
9308     // We let through "const void" here because Sema::GetTypeForDeclarator
9309     // already checks for that case.
9310     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
9311       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
9312         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
9313         assert(Param->getDeclContext() != NewFD && "Was set before ?");
9314         Param->setDeclContext(NewFD);
9315         Params.push_back(Param);
9316 
9317         if (Param->isInvalidDecl())
9318           NewFD->setInvalidDecl();
9319       }
9320     }
9321 
9322     if (!getLangOpts().CPlusPlus) {
9323       // In C, find all the tag declarations from the prototype and move them
9324       // into the function DeclContext. Remove them from the surrounding tag
9325       // injection context of the function, which is typically but not always
9326       // the TU.
9327       DeclContext *PrototypeTagContext =
9328           getTagInjectionContext(NewFD->getLexicalDeclContext());
9329       for (NamedDecl *NonParmDecl : FTI.getDeclsInPrototype()) {
9330         auto *TD = dyn_cast<TagDecl>(NonParmDecl);
9331 
9332         // We don't want to reparent enumerators. Look at their parent enum
9333         // instead.
9334         if (!TD) {
9335           if (auto *ECD = dyn_cast<EnumConstantDecl>(NonParmDecl))
9336             TD = cast<EnumDecl>(ECD->getDeclContext());
9337         }
9338         if (!TD)
9339           continue;
9340         DeclContext *TagDC = TD->getLexicalDeclContext();
9341         if (!TagDC->containsDecl(TD))
9342           continue;
9343         TagDC->removeDecl(TD);
9344         TD->setDeclContext(NewFD);
9345         NewFD->addDecl(TD);
9346 
9347         // Preserve the lexical DeclContext if it is not the surrounding tag
9348         // injection context of the FD. In this example, the semantic context of
9349         // E will be f and the lexical context will be S, while both the
9350         // semantic and lexical contexts of S will be f:
9351         //   void f(struct S { enum E { a } f; } s);
9352         if (TagDC != PrototypeTagContext)
9353           TD->setLexicalDeclContext(TagDC);
9354       }
9355     }
9356   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
9357     // When we're declaring a function with a typedef, typeof, etc as in the
9358     // following example, we'll need to synthesize (unnamed)
9359     // parameters for use in the declaration.
9360     //
9361     // @code
9362     // typedef void fn(int);
9363     // fn f;
9364     // @endcode
9365 
9366     // Synthesize a parameter for each argument type.
9367     for (const auto &AI : FT->param_types()) {
9368       ParmVarDecl *Param =
9369           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
9370       Param->setScopeInfo(0, Params.size());
9371       Params.push_back(Param);
9372     }
9373   } else {
9374     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
9375            "Should not need args for typedef of non-prototype fn");
9376   }
9377 
9378   // Finally, we know we have the right number of parameters, install them.
9379   NewFD->setParams(Params);
9380 
9381   if (D.getDeclSpec().isNoreturnSpecified())
9382     NewFD->addAttr(C11NoReturnAttr::Create(Context,
9383                                            D.getDeclSpec().getNoreturnSpecLoc(),
9384                                            AttributeCommonInfo::AS_Keyword));
9385 
9386   // Functions returning a variably modified type violate C99 6.7.5.2p2
9387   // because all functions have linkage.
9388   if (!NewFD->isInvalidDecl() &&
9389       NewFD->getReturnType()->isVariablyModifiedType()) {
9390     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
9391     NewFD->setInvalidDecl();
9392   }
9393 
9394   // Apply an implicit SectionAttr if '#pragma clang section text' is active
9395   if (PragmaClangTextSection.Valid && D.isFunctionDefinition() &&
9396       !NewFD->hasAttr<SectionAttr>())
9397     NewFD->addAttr(PragmaClangTextSectionAttr::CreateImplicit(
9398         Context, PragmaClangTextSection.SectionName,
9399         PragmaClangTextSection.PragmaLocation, AttributeCommonInfo::AS_Pragma));
9400 
9401   // Apply an implicit SectionAttr if #pragma code_seg is active.
9402   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
9403       !NewFD->hasAttr<SectionAttr>()) {
9404     NewFD->addAttr(SectionAttr::CreateImplicit(
9405         Context, CodeSegStack.CurrentValue->getString(),
9406         CodeSegStack.CurrentPragmaLocation, AttributeCommonInfo::AS_Pragma,
9407         SectionAttr::Declspec_allocate));
9408     if (UnifySection(CodeSegStack.CurrentValue->getString(),
9409                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
9410                          ASTContext::PSF_Read,
9411                      NewFD))
9412       NewFD->dropAttr<SectionAttr>();
9413   }
9414 
9415   // Apply an implicit CodeSegAttr from class declspec or
9416   // apply an implicit SectionAttr from #pragma code_seg if active.
9417   if (!NewFD->hasAttr<CodeSegAttr>()) {
9418     if (Attr *SAttr = getImplicitCodeSegOrSectionAttrForFunction(NewFD,
9419                                                                  D.isFunctionDefinition())) {
9420       NewFD->addAttr(SAttr);
9421     }
9422   }
9423 
9424   // Handle attributes.
9425   ProcessDeclAttributes(S, NewFD, D);
9426 
9427   if (getLangOpts().OpenCL) {
9428     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
9429     // type declaration will generate a compilation error.
9430     LangAS AddressSpace = NewFD->getReturnType().getAddressSpace();
9431     if (AddressSpace != LangAS::Default) {
9432       Diag(NewFD->getLocation(),
9433            diag::err_opencl_return_value_with_address_space);
9434       NewFD->setInvalidDecl();
9435     }
9436   }
9437 
9438   if (LangOpts.SYCLIsDevice || (LangOpts.OpenMP && LangOpts.OpenMPIsDevice))
9439     checkDeviceDecl(NewFD, D.getBeginLoc());
9440 
9441   if (!getLangOpts().CPlusPlus) {
9442     // Perform semantic checking on the function declaration.
9443     if (!NewFD->isInvalidDecl() && NewFD->isMain())
9444       CheckMain(NewFD, D.getDeclSpec());
9445 
9446     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
9447       CheckMSVCRTEntryPoint(NewFD);
9448 
9449     if (!NewFD->isInvalidDecl())
9450       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
9451                                                   isMemberSpecialization));
9452     else if (!Previous.empty())
9453       // Recover gracefully from an invalid redeclaration.
9454       D.setRedeclaration(true);
9455     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
9456             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
9457            "previous declaration set still overloaded");
9458 
9459     // Diagnose no-prototype function declarations with calling conventions that
9460     // don't support variadic calls. Only do this in C and do it after merging
9461     // possibly prototyped redeclarations.
9462     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
9463     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
9464       CallingConv CC = FT->getExtInfo().getCC();
9465       if (!supportsVariadicCall(CC)) {
9466         // Windows system headers sometimes accidentally use stdcall without
9467         // (void) parameters, so we relax this to a warning.
9468         int DiagID =
9469             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
9470         Diag(NewFD->getLocation(), DiagID)
9471             << FunctionType::getNameForCallConv(CC);
9472       }
9473     }
9474 
9475    if (NewFD->getReturnType().hasNonTrivialToPrimitiveDestructCUnion() ||
9476        NewFD->getReturnType().hasNonTrivialToPrimitiveCopyCUnion())
9477      checkNonTrivialCUnion(NewFD->getReturnType(),
9478                            NewFD->getReturnTypeSourceRange().getBegin(),
9479                            NTCUC_FunctionReturn, NTCUK_Destruct|NTCUK_Copy);
9480   } else {
9481     // C++11 [replacement.functions]p3:
9482     //  The program's definitions shall not be specified as inline.
9483     //
9484     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
9485     //
9486     // Suppress the diagnostic if the function is __attribute__((used)), since
9487     // that forces an external definition to be emitted.
9488     if (D.getDeclSpec().isInlineSpecified() &&
9489         NewFD->isReplaceableGlobalAllocationFunction() &&
9490         !NewFD->hasAttr<UsedAttr>())
9491       Diag(D.getDeclSpec().getInlineSpecLoc(),
9492            diag::ext_operator_new_delete_declared_inline)
9493         << NewFD->getDeclName();
9494 
9495     // If the declarator is a template-id, translate the parser's template
9496     // argument list into our AST format.
9497     if (D.getName().getKind() == UnqualifiedIdKind::IK_TemplateId) {
9498       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
9499       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
9500       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
9501       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
9502                                          TemplateId->NumArgs);
9503       translateTemplateArguments(TemplateArgsPtr,
9504                                  TemplateArgs);
9505 
9506       HasExplicitTemplateArgs = true;
9507 
9508       if (NewFD->isInvalidDecl()) {
9509         HasExplicitTemplateArgs = false;
9510       } else if (FunctionTemplate) {
9511         // Function template with explicit template arguments.
9512         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
9513           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
9514 
9515         HasExplicitTemplateArgs = false;
9516       } else {
9517         assert((isFunctionTemplateSpecialization ||
9518                 D.getDeclSpec().isFriendSpecified()) &&
9519                "should have a 'template<>' for this decl");
9520         // "friend void foo<>(int);" is an implicit specialization decl.
9521         isFunctionTemplateSpecialization = true;
9522       }
9523     } else if (isFriend && isFunctionTemplateSpecialization) {
9524       // This combination is only possible in a recovery case;  the user
9525       // wrote something like:
9526       //   template <> friend void foo(int);
9527       // which we're recovering from as if the user had written:
9528       //   friend void foo<>(int);
9529       // Go ahead and fake up a template id.
9530       HasExplicitTemplateArgs = true;
9531       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
9532       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
9533     }
9534 
9535     // We do not add HD attributes to specializations here because
9536     // they may have different constexpr-ness compared to their
9537     // templates and, after maybeAddCUDAHostDeviceAttrs() is applied,
9538     // may end up with different effective targets. Instead, a
9539     // specialization inherits its target attributes from its template
9540     // in the CheckFunctionTemplateSpecialization() call below.
9541     if (getLangOpts().CUDA && !isFunctionTemplateSpecialization)
9542       maybeAddCUDAHostDeviceAttrs(NewFD, Previous);
9543 
9544     // If it's a friend (and only if it's a friend), it's possible
9545     // that either the specialized function type or the specialized
9546     // template is dependent, and therefore matching will fail.  In
9547     // this case, don't check the specialization yet.
9548     if (isFunctionTemplateSpecialization && isFriend &&
9549         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
9550          TemplateSpecializationType::anyInstantiationDependentTemplateArguments(
9551              TemplateArgs.arguments()))) {
9552       assert(HasExplicitTemplateArgs &&
9553              "friend function specialization without template args");
9554       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
9555                                                        Previous))
9556         NewFD->setInvalidDecl();
9557     } else if (isFunctionTemplateSpecialization) {
9558       if (CurContext->isDependentContext() && CurContext->isRecord()
9559           && !isFriend) {
9560         isDependentClassScopeExplicitSpecialization = true;
9561       } else if (!NewFD->isInvalidDecl() &&
9562                  CheckFunctionTemplateSpecialization(
9563                      NewFD, (HasExplicitTemplateArgs ? &TemplateArgs : nullptr),
9564                      Previous))
9565         NewFD->setInvalidDecl();
9566 
9567       // C++ [dcl.stc]p1:
9568       //   A storage-class-specifier shall not be specified in an explicit
9569       //   specialization (14.7.3)
9570       FunctionTemplateSpecializationInfo *Info =
9571           NewFD->getTemplateSpecializationInfo();
9572       if (Info && SC != SC_None) {
9573         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
9574           Diag(NewFD->getLocation(),
9575                diag::err_explicit_specialization_inconsistent_storage_class)
9576             << SC
9577             << FixItHint::CreateRemoval(
9578                                       D.getDeclSpec().getStorageClassSpecLoc());
9579 
9580         else
9581           Diag(NewFD->getLocation(),
9582                diag::ext_explicit_specialization_storage_class)
9583             << FixItHint::CreateRemoval(
9584                                       D.getDeclSpec().getStorageClassSpecLoc());
9585       }
9586     } else if (isMemberSpecialization && isa<CXXMethodDecl>(NewFD)) {
9587       if (CheckMemberSpecialization(NewFD, Previous))
9588           NewFD->setInvalidDecl();
9589     }
9590 
9591     // Perform semantic checking on the function declaration.
9592     if (!isDependentClassScopeExplicitSpecialization) {
9593       if (!NewFD->isInvalidDecl() && NewFD->isMain())
9594         CheckMain(NewFD, D.getDeclSpec());
9595 
9596       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
9597         CheckMSVCRTEntryPoint(NewFD);
9598 
9599       if (!NewFD->isInvalidDecl())
9600         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
9601                                                     isMemberSpecialization));
9602       else if (!Previous.empty())
9603         // Recover gracefully from an invalid redeclaration.
9604         D.setRedeclaration(true);
9605     }
9606 
9607     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
9608             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
9609            "previous declaration set still overloaded");
9610 
9611     NamedDecl *PrincipalDecl = (FunctionTemplate
9612                                 ? cast<NamedDecl>(FunctionTemplate)
9613                                 : NewFD);
9614 
9615     if (isFriend && NewFD->getPreviousDecl()) {
9616       AccessSpecifier Access = AS_public;
9617       if (!NewFD->isInvalidDecl())
9618         Access = NewFD->getPreviousDecl()->getAccess();
9619 
9620       NewFD->setAccess(Access);
9621       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
9622     }
9623 
9624     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
9625         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
9626       PrincipalDecl->setNonMemberOperator();
9627 
9628     // If we have a function template, check the template parameter
9629     // list. This will check and merge default template arguments.
9630     if (FunctionTemplate) {
9631       FunctionTemplateDecl *PrevTemplate =
9632                                      FunctionTemplate->getPreviousDecl();
9633       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
9634                        PrevTemplate ? PrevTemplate->getTemplateParameters()
9635                                     : nullptr,
9636                             D.getDeclSpec().isFriendSpecified()
9637                               ? (D.isFunctionDefinition()
9638                                    ? TPC_FriendFunctionTemplateDefinition
9639                                    : TPC_FriendFunctionTemplate)
9640                               : (D.getCXXScopeSpec().isSet() &&
9641                                  DC && DC->isRecord() &&
9642                                  DC->isDependentContext())
9643                                   ? TPC_ClassTemplateMember
9644                                   : TPC_FunctionTemplate);
9645     }
9646 
9647     if (NewFD->isInvalidDecl()) {
9648       // Ignore all the rest of this.
9649     } else if (!D.isRedeclaration()) {
9650       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
9651                                        AddToScope };
9652       // Fake up an access specifier if it's supposed to be a class member.
9653       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
9654         NewFD->setAccess(AS_public);
9655 
9656       // Qualified decls generally require a previous declaration.
9657       if (D.getCXXScopeSpec().isSet()) {
9658         // ...with the major exception of templated-scope or
9659         // dependent-scope friend declarations.
9660 
9661         // TODO: we currently also suppress this check in dependent
9662         // contexts because (1) the parameter depth will be off when
9663         // matching friend templates and (2) we might actually be
9664         // selecting a friend based on a dependent factor.  But there
9665         // are situations where these conditions don't apply and we
9666         // can actually do this check immediately.
9667         //
9668         // Unless the scope is dependent, it's always an error if qualified
9669         // redeclaration lookup found nothing at all. Diagnose that now;
9670         // nothing will diagnose that error later.
9671         if (isFriend &&
9672             (D.getCXXScopeSpec().getScopeRep()->isDependent() ||
9673              (!Previous.empty() && CurContext->isDependentContext()))) {
9674           // ignore these
9675         } else {
9676           // The user tried to provide an out-of-line definition for a
9677           // function that is a member of a class or namespace, but there
9678           // was no such member function declared (C++ [class.mfct]p2,
9679           // C++ [namespace.memdef]p2). For example:
9680           //
9681           // class X {
9682           //   void f() const;
9683           // };
9684           //
9685           // void X::f() { } // ill-formed
9686           //
9687           // Complain about this problem, and attempt to suggest close
9688           // matches (e.g., those that differ only in cv-qualifiers and
9689           // whether the parameter types are references).
9690 
9691           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
9692                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
9693             AddToScope = ExtraArgs.AddToScope;
9694             return Result;
9695           }
9696         }
9697 
9698         // Unqualified local friend declarations are required to resolve
9699         // to something.
9700       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
9701         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
9702                 *this, Previous, NewFD, ExtraArgs, true, S)) {
9703           AddToScope = ExtraArgs.AddToScope;
9704           return Result;
9705         }
9706       }
9707     } else if (!D.isFunctionDefinition() &&
9708                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
9709                !isFriend && !isFunctionTemplateSpecialization &&
9710                !isMemberSpecialization) {
9711       // An out-of-line member function declaration must also be a
9712       // definition (C++ [class.mfct]p2).
9713       // Note that this is not the case for explicit specializations of
9714       // function templates or member functions of class templates, per
9715       // C++ [temp.expl.spec]p2. We also allow these declarations as an
9716       // extension for compatibility with old SWIG code which likes to
9717       // generate them.
9718       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
9719         << D.getCXXScopeSpec().getRange();
9720     }
9721   }
9722 
9723   // If this is the first declaration of a library builtin function, add
9724   // attributes as appropriate.
9725   if (!D.isRedeclaration() &&
9726       NewFD->getDeclContext()->getRedeclContext()->isFileContext()) {
9727     if (IdentifierInfo *II = Previous.getLookupName().getAsIdentifierInfo()) {
9728       if (unsigned BuiltinID = II->getBuiltinID()) {
9729         if (NewFD->getLanguageLinkage() == CLanguageLinkage) {
9730           // Validate the type matches unless this builtin is specified as
9731           // matching regardless of its declared type.
9732           if (Context.BuiltinInfo.allowTypeMismatch(BuiltinID)) {
9733             NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID));
9734           } else {
9735             ASTContext::GetBuiltinTypeError Error;
9736             LookupNecessaryTypesForBuiltin(S, BuiltinID);
9737             QualType BuiltinType = Context.GetBuiltinType(BuiltinID, Error);
9738 
9739             if (!Error && !BuiltinType.isNull() &&
9740                 Context.hasSameFunctionTypeIgnoringExceptionSpec(
9741                     NewFD->getType(), BuiltinType))
9742               NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID));
9743           }
9744         } else if (BuiltinID == Builtin::BI__GetExceptionInfo &&
9745                    Context.getTargetInfo().getCXXABI().isMicrosoft()) {
9746           // FIXME: We should consider this a builtin only in the std namespace.
9747           NewFD->addAttr(BuiltinAttr::CreateImplicit(Context, BuiltinID));
9748         }
9749       }
9750     }
9751   }
9752 
9753   ProcessPragmaWeak(S, NewFD);
9754   checkAttributesAfterMerging(*this, *NewFD);
9755 
9756   AddKnownFunctionAttributes(NewFD);
9757 
9758   if (NewFD->hasAttr<OverloadableAttr>() &&
9759       !NewFD->getType()->getAs<FunctionProtoType>()) {
9760     Diag(NewFD->getLocation(),
9761          diag::err_attribute_overloadable_no_prototype)
9762       << NewFD;
9763 
9764     // Turn this into a variadic function with no parameters.
9765     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
9766     FunctionProtoType::ExtProtoInfo EPI(
9767         Context.getDefaultCallingConvention(true, false));
9768     EPI.Variadic = true;
9769     EPI.ExtInfo = FT->getExtInfo();
9770 
9771     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
9772     NewFD->setType(R);
9773   }
9774 
9775   // If there's a #pragma GCC visibility in scope, and this isn't a class
9776   // member, set the visibility of this function.
9777   if (!DC->isRecord() && NewFD->isExternallyVisible())
9778     AddPushedVisibilityAttribute(NewFD);
9779 
9780   // If there's a #pragma clang arc_cf_code_audited in scope, consider
9781   // marking the function.
9782   AddCFAuditedAttribute(NewFD);
9783 
9784   // If this is a function definition, check if we have to apply optnone due to
9785   // a pragma.
9786   if(D.isFunctionDefinition())
9787     AddRangeBasedOptnone(NewFD);
9788 
9789   // If this is the first declaration of an extern C variable, update
9790   // the map of such variables.
9791   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
9792       isIncompleteDeclExternC(*this, NewFD))
9793     RegisterLocallyScopedExternCDecl(NewFD, S);
9794 
9795   // Set this FunctionDecl's range up to the right paren.
9796   NewFD->setRangeEnd(D.getSourceRange().getEnd());
9797 
9798   if (D.isRedeclaration() && !Previous.empty()) {
9799     NamedDecl *Prev = Previous.getRepresentativeDecl();
9800     checkDLLAttributeRedeclaration(*this, Prev, NewFD,
9801                                    isMemberSpecialization ||
9802                                        isFunctionTemplateSpecialization,
9803                                    D.isFunctionDefinition());
9804   }
9805 
9806   if (getLangOpts().CUDA) {
9807     IdentifierInfo *II = NewFD->getIdentifier();
9808     if (II && II->isStr(getCudaConfigureFuncName()) &&
9809         !NewFD->isInvalidDecl() &&
9810         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
9811       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
9812         Diag(NewFD->getLocation(), diag::err_config_scalar_return)
9813             << getCudaConfigureFuncName();
9814       Context.setcudaConfigureCallDecl(NewFD);
9815     }
9816 
9817     // Variadic functions, other than a *declaration* of printf, are not allowed
9818     // in device-side CUDA code, unless someone passed
9819     // -fcuda-allow-variadic-functions.
9820     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
9821         (NewFD->hasAttr<CUDADeviceAttr>() ||
9822          NewFD->hasAttr<CUDAGlobalAttr>()) &&
9823         !(II && II->isStr("printf") && NewFD->isExternC() &&
9824           !D.isFunctionDefinition())) {
9825       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
9826     }
9827   }
9828 
9829   MarkUnusedFileScopedDecl(NewFD);
9830 
9831 
9832 
9833   if (getLangOpts().OpenCL && NewFD->hasAttr<OpenCLKernelAttr>()) {
9834     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
9835     if ((getLangOpts().OpenCLVersion >= 120)
9836         && (SC == SC_Static)) {
9837       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
9838       D.setInvalidType();
9839     }
9840 
9841     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
9842     if (!NewFD->getReturnType()->isVoidType()) {
9843       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
9844       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
9845           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
9846                                 : FixItHint());
9847       D.setInvalidType();
9848     }
9849 
9850     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
9851     for (auto Param : NewFD->parameters())
9852       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
9853 
9854     if (getLangOpts().OpenCLCPlusPlus) {
9855       if (DC->isRecord()) {
9856         Diag(D.getIdentifierLoc(), diag::err_method_kernel);
9857         D.setInvalidType();
9858       }
9859       if (FunctionTemplate) {
9860         Diag(D.getIdentifierLoc(), diag::err_template_kernel);
9861         D.setInvalidType();
9862       }
9863     }
9864   }
9865 
9866   if (getLangOpts().CPlusPlus) {
9867     if (FunctionTemplate) {
9868       if (NewFD->isInvalidDecl())
9869         FunctionTemplate->setInvalidDecl();
9870       return FunctionTemplate;
9871     }
9872 
9873     if (isMemberSpecialization && !NewFD->isInvalidDecl())
9874       CompleteMemberSpecialization(NewFD, Previous);
9875   }
9876 
9877   for (const ParmVarDecl *Param : NewFD->parameters()) {
9878     QualType PT = Param->getType();
9879 
9880     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
9881     // types.
9882     if (getLangOpts().OpenCLVersion >= 200 || getLangOpts().OpenCLCPlusPlus) {
9883       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
9884         QualType ElemTy = PipeTy->getElementType();
9885           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
9886             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
9887             D.setInvalidType();
9888           }
9889       }
9890     }
9891   }
9892 
9893   // Here we have an function template explicit specialization at class scope.
9894   // The actual specialization will be postponed to template instatiation
9895   // time via the ClassScopeFunctionSpecializationDecl node.
9896   if (isDependentClassScopeExplicitSpecialization) {
9897     ClassScopeFunctionSpecializationDecl *NewSpec =
9898                          ClassScopeFunctionSpecializationDecl::Create(
9899                                 Context, CurContext, NewFD->getLocation(),
9900                                 cast<CXXMethodDecl>(NewFD),
9901                                 HasExplicitTemplateArgs, TemplateArgs);
9902     CurContext->addDecl(NewSpec);
9903     AddToScope = false;
9904   }
9905 
9906   // Diagnose availability attributes. Availability cannot be used on functions
9907   // that are run during load/unload.
9908   if (const auto *attr = NewFD->getAttr<AvailabilityAttr>()) {
9909     if (NewFD->hasAttr<ConstructorAttr>()) {
9910       Diag(attr->getLocation(), diag::warn_availability_on_static_initializer)
9911           << 1;
9912       NewFD->dropAttr<AvailabilityAttr>();
9913     }
9914     if (NewFD->hasAttr<DestructorAttr>()) {
9915       Diag(attr->getLocation(), diag::warn_availability_on_static_initializer)
9916           << 2;
9917       NewFD->dropAttr<AvailabilityAttr>();
9918     }
9919   }
9920 
9921   // Diagnose no_builtin attribute on function declaration that are not a
9922   // definition.
9923   // FIXME: We should really be doing this in
9924   // SemaDeclAttr.cpp::handleNoBuiltinAttr, unfortunately we only have access to
9925   // the FunctionDecl and at this point of the code
9926   // FunctionDecl::isThisDeclarationADefinition() which always returns `false`
9927   // because Sema::ActOnStartOfFunctionDef has not been called yet.
9928   if (const auto *NBA = NewFD->getAttr<NoBuiltinAttr>())
9929     switch (D.getFunctionDefinitionKind()) {
9930     case FunctionDefinitionKind::Defaulted:
9931     case FunctionDefinitionKind::Deleted:
9932       Diag(NBA->getLocation(),
9933            diag::err_attribute_no_builtin_on_defaulted_deleted_function)
9934           << NBA->getSpelling();
9935       break;
9936     case FunctionDefinitionKind::Declaration:
9937       Diag(NBA->getLocation(), diag::err_attribute_no_builtin_on_non_definition)
9938           << NBA->getSpelling();
9939       break;
9940     case FunctionDefinitionKind::Definition:
9941       break;
9942     }
9943 
9944   return NewFD;
9945 }
9946 
9947 /// Return a CodeSegAttr from a containing class.  The Microsoft docs say
9948 /// when __declspec(code_seg) "is applied to a class, all member functions of
9949 /// the class and nested classes -- this includes compiler-generated special
9950 /// member functions -- are put in the specified segment."
9951 /// The actual behavior is a little more complicated. The Microsoft compiler
9952 /// won't check outer classes if there is an active value from #pragma code_seg.
9953 /// The CodeSeg is always applied from the direct parent but only from outer
9954 /// classes when the #pragma code_seg stack is empty. See:
9955 /// https://reviews.llvm.org/D22931, the Microsoft feedback page is no longer
9956 /// available since MS has removed the page.
9957 static Attr *getImplicitCodeSegAttrFromClass(Sema &S, const FunctionDecl *FD) {
9958   const auto *Method = dyn_cast<CXXMethodDecl>(FD);
9959   if (!Method)
9960     return nullptr;
9961   const CXXRecordDecl *Parent = Method->getParent();
9962   if (const auto *SAttr = Parent->getAttr<CodeSegAttr>()) {
9963     Attr *NewAttr = SAttr->clone(S.getASTContext());
9964     NewAttr->setImplicit(true);
9965     return NewAttr;
9966   }
9967 
9968   // The Microsoft compiler won't check outer classes for the CodeSeg
9969   // when the #pragma code_seg stack is active.
9970   if (S.CodeSegStack.CurrentValue)
9971    return nullptr;
9972 
9973   while ((Parent = dyn_cast<CXXRecordDecl>(Parent->getParent()))) {
9974     if (const auto *SAttr = Parent->getAttr<CodeSegAttr>()) {
9975       Attr *NewAttr = SAttr->clone(S.getASTContext());
9976       NewAttr->setImplicit(true);
9977       return NewAttr;
9978     }
9979   }
9980   return nullptr;
9981 }
9982 
9983 /// Returns an implicit CodeSegAttr if a __declspec(code_seg) is found on a
9984 /// containing class. Otherwise it will return implicit SectionAttr if the
9985 /// function is a definition and there is an active value on CodeSegStack
9986 /// (from the current #pragma code-seg value).
9987 ///
9988 /// \param FD Function being declared.
9989 /// \param IsDefinition Whether it is a definition or just a declarartion.
9990 /// \returns A CodeSegAttr or SectionAttr to apply to the function or
9991 ///          nullptr if no attribute should be added.
9992 Attr *Sema::getImplicitCodeSegOrSectionAttrForFunction(const FunctionDecl *FD,
9993                                                        bool IsDefinition) {
9994   if (Attr *A = getImplicitCodeSegAttrFromClass(*this, FD))
9995     return A;
9996   if (!FD->hasAttr<SectionAttr>() && IsDefinition &&
9997       CodeSegStack.CurrentValue)
9998     return SectionAttr::CreateImplicit(
9999         getASTContext(), CodeSegStack.CurrentValue->getString(),
10000         CodeSegStack.CurrentPragmaLocation, AttributeCommonInfo::AS_Pragma,
10001         SectionAttr::Declspec_allocate);
10002   return nullptr;
10003 }
10004 
10005 /// Determines if we can perform a correct type check for \p D as a
10006 /// redeclaration of \p PrevDecl. If not, we can generally still perform a
10007 /// best-effort check.
10008 ///
10009 /// \param NewD The new declaration.
10010 /// \param OldD The old declaration.
10011 /// \param NewT The portion of the type of the new declaration to check.
10012 /// \param OldT The portion of the type of the old declaration to check.
10013 bool Sema::canFullyTypeCheckRedeclaration(ValueDecl *NewD, ValueDecl *OldD,
10014                                           QualType NewT, QualType OldT) {
10015   if (!NewD->getLexicalDeclContext()->isDependentContext())
10016     return true;
10017 
10018   // For dependently-typed local extern declarations and friends, we can't
10019   // perform a correct type check in general until instantiation:
10020   //
10021   //   int f();
10022   //   template<typename T> void g() { T f(); }
10023   //
10024   // (valid if g() is only instantiated with T = int).
10025   if (NewT->isDependentType() &&
10026       (NewD->isLocalExternDecl() || NewD->getFriendObjectKind()))
10027     return false;
10028 
10029   // Similarly, if the previous declaration was a dependent local extern
10030   // declaration, we don't really know its type yet.
10031   if (OldT->isDependentType() && OldD->isLocalExternDecl())
10032     return false;
10033 
10034   return true;
10035 }
10036 
10037 /// Checks if the new declaration declared in dependent context must be
10038 /// put in the same redeclaration chain as the specified declaration.
10039 ///
10040 /// \param D Declaration that is checked.
10041 /// \param PrevDecl Previous declaration found with proper lookup method for the
10042 ///                 same declaration name.
10043 /// \returns True if D must be added to the redeclaration chain which PrevDecl
10044 ///          belongs to.
10045 ///
10046 bool Sema::shouldLinkDependentDeclWithPrevious(Decl *D, Decl *PrevDecl) {
10047   if (!D->getLexicalDeclContext()->isDependentContext())
10048     return true;
10049 
10050   // Don't chain dependent friend function definitions until instantiation, to
10051   // permit cases like
10052   //
10053   //   void func();
10054   //   template<typename T> class C1 { friend void func() {} };
10055   //   template<typename T> class C2 { friend void func() {} };
10056   //
10057   // ... which is valid if only one of C1 and C2 is ever instantiated.
10058   //
10059   // FIXME: This need only apply to function definitions. For now, we proxy
10060   // this by checking for a file-scope function. We do not want this to apply
10061   // to friend declarations nominating member functions, because that gets in
10062   // the way of access checks.
10063   if (D->getFriendObjectKind() && D->getDeclContext()->isFileContext())
10064     return false;
10065 
10066   auto *VD = dyn_cast<ValueDecl>(D);
10067   auto *PrevVD = dyn_cast<ValueDecl>(PrevDecl);
10068   return !VD || !PrevVD ||
10069          canFullyTypeCheckRedeclaration(VD, PrevVD, VD->getType(),
10070                                         PrevVD->getType());
10071 }
10072 
10073 /// Check the target attribute of the function for MultiVersion
10074 /// validity.
10075 ///
10076 /// Returns true if there was an error, false otherwise.
10077 static bool CheckMultiVersionValue(Sema &S, const FunctionDecl *FD) {
10078   const auto *TA = FD->getAttr<TargetAttr>();
10079   assert(TA && "MultiVersion Candidate requires a target attribute");
10080   ParsedTargetAttr ParseInfo = TA->parse();
10081   const TargetInfo &TargetInfo = S.Context.getTargetInfo();
10082   enum ErrType { Feature = 0, Architecture = 1 };
10083 
10084   if (!ParseInfo.Architecture.empty() &&
10085       !TargetInfo.validateCpuIs(ParseInfo.Architecture)) {
10086     S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
10087         << Architecture << ParseInfo.Architecture;
10088     return true;
10089   }
10090 
10091   for (const auto &Feat : ParseInfo.Features) {
10092     auto BareFeat = StringRef{Feat}.substr(1);
10093     if (Feat[0] == '-') {
10094       S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
10095           << Feature << ("no-" + BareFeat).str();
10096       return true;
10097     }
10098 
10099     if (!TargetInfo.validateCpuSupports(BareFeat) ||
10100         !TargetInfo.isValidFeatureName(BareFeat)) {
10101       S.Diag(FD->getLocation(), diag::err_bad_multiversion_option)
10102           << Feature << BareFeat;
10103       return true;
10104     }
10105   }
10106   return false;
10107 }
10108 
10109 // Provide a white-list of attributes that are allowed to be combined with
10110 // multiversion functions.
10111 static bool AttrCompatibleWithMultiVersion(attr::Kind Kind,
10112                                            MultiVersionKind MVType) {
10113   // Note: this list/diagnosis must match the list in
10114   // checkMultiversionAttributesAllSame.
10115   switch (Kind) {
10116   default:
10117     return false;
10118   case attr::Used:
10119     return MVType == MultiVersionKind::Target;
10120   case attr::NonNull:
10121   case attr::NoThrow:
10122     return true;
10123   }
10124 }
10125 
10126 static bool checkNonMultiVersionCompatAttributes(Sema &S,
10127                                                  const FunctionDecl *FD,
10128                                                  const FunctionDecl *CausedFD,
10129                                                  MultiVersionKind MVType) {
10130   bool IsCPUSpecificCPUDispatchMVType =
10131       MVType == MultiVersionKind::CPUDispatch ||
10132       MVType == MultiVersionKind::CPUSpecific;
10133   const auto Diagnose = [FD, CausedFD, IsCPUSpecificCPUDispatchMVType](
10134                             Sema &S, const Attr *A) {
10135     S.Diag(FD->getLocation(), diag::err_multiversion_disallowed_other_attr)
10136         << IsCPUSpecificCPUDispatchMVType << A;
10137     if (CausedFD)
10138       S.Diag(CausedFD->getLocation(), diag::note_multiversioning_caused_here);
10139     return true;
10140   };
10141 
10142   for (const Attr *A : FD->attrs()) {
10143     switch (A->getKind()) {
10144     case attr::CPUDispatch:
10145     case attr::CPUSpecific:
10146       if (MVType != MultiVersionKind::CPUDispatch &&
10147           MVType != MultiVersionKind::CPUSpecific)
10148         return Diagnose(S, A);
10149       break;
10150     case attr::Target:
10151       if (MVType != MultiVersionKind::Target)
10152         return Diagnose(S, A);
10153       break;
10154     default:
10155       if (!AttrCompatibleWithMultiVersion(A->getKind(), MVType))
10156         return Diagnose(S, A);
10157       break;
10158     }
10159   }
10160   return false;
10161 }
10162 
10163 bool Sema::areMultiversionVariantFunctionsCompatible(
10164     const FunctionDecl *OldFD, const FunctionDecl *NewFD,
10165     const PartialDiagnostic &NoProtoDiagID,
10166     const PartialDiagnosticAt &NoteCausedDiagIDAt,
10167     const PartialDiagnosticAt &NoSupportDiagIDAt,
10168     const PartialDiagnosticAt &DiffDiagIDAt, bool TemplatesSupported,
10169     bool ConstexprSupported, bool CLinkageMayDiffer) {
10170   enum DoesntSupport {
10171     FuncTemplates = 0,
10172     VirtFuncs = 1,
10173     DeducedReturn = 2,
10174     Constructors = 3,
10175     Destructors = 4,
10176     DeletedFuncs = 5,
10177     DefaultedFuncs = 6,
10178     ConstexprFuncs = 7,
10179     ConstevalFuncs = 8,
10180   };
10181   enum Different {
10182     CallingConv = 0,
10183     ReturnType = 1,
10184     ConstexprSpec = 2,
10185     InlineSpec = 3,
10186     StorageClass = 4,
10187     Linkage = 5,
10188   };
10189 
10190   if (NoProtoDiagID.getDiagID() != 0 && OldFD &&
10191       !OldFD->getType()->getAs<FunctionProtoType>()) {
10192     Diag(OldFD->getLocation(), NoProtoDiagID);
10193     Diag(NoteCausedDiagIDAt.first, NoteCausedDiagIDAt.second);
10194     return true;
10195   }
10196 
10197   if (NoProtoDiagID.getDiagID() != 0 &&
10198       !NewFD->getType()->getAs<FunctionProtoType>())
10199     return Diag(NewFD->getLocation(), NoProtoDiagID);
10200 
10201   if (!TemplatesSupported &&
10202       NewFD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
10203     return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10204            << FuncTemplates;
10205 
10206   if (const auto *NewCXXFD = dyn_cast<CXXMethodDecl>(NewFD)) {
10207     if (NewCXXFD->isVirtual())
10208       return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10209              << VirtFuncs;
10210 
10211     if (isa<CXXConstructorDecl>(NewCXXFD))
10212       return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10213              << Constructors;
10214 
10215     if (isa<CXXDestructorDecl>(NewCXXFD))
10216       return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10217              << Destructors;
10218   }
10219 
10220   if (NewFD->isDeleted())
10221     return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10222            << DeletedFuncs;
10223 
10224   if (NewFD->isDefaulted())
10225     return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10226            << DefaultedFuncs;
10227 
10228   if (!ConstexprSupported && NewFD->isConstexpr())
10229     return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10230            << (NewFD->isConsteval() ? ConstevalFuncs : ConstexprFuncs);
10231 
10232   QualType NewQType = Context.getCanonicalType(NewFD->getType());
10233   const auto *NewType = cast<FunctionType>(NewQType);
10234   QualType NewReturnType = NewType->getReturnType();
10235 
10236   if (NewReturnType->isUndeducedType())
10237     return Diag(NoSupportDiagIDAt.first, NoSupportDiagIDAt.second)
10238            << DeducedReturn;
10239 
10240   // Ensure the return type is identical.
10241   if (OldFD) {
10242     QualType OldQType = Context.getCanonicalType(OldFD->getType());
10243     const auto *OldType = cast<FunctionType>(OldQType);
10244     FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
10245     FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
10246 
10247     if (OldTypeInfo.getCC() != NewTypeInfo.getCC())
10248       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << CallingConv;
10249 
10250     QualType OldReturnType = OldType->getReturnType();
10251 
10252     if (OldReturnType != NewReturnType)
10253       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << ReturnType;
10254 
10255     if (OldFD->getConstexprKind() != NewFD->getConstexprKind())
10256       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << ConstexprSpec;
10257 
10258     if (OldFD->isInlineSpecified() != NewFD->isInlineSpecified())
10259       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << InlineSpec;
10260 
10261     if (OldFD->getStorageClass() != NewFD->getStorageClass())
10262       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << StorageClass;
10263 
10264     if (!CLinkageMayDiffer && OldFD->isExternC() != NewFD->isExternC())
10265       return Diag(DiffDiagIDAt.first, DiffDiagIDAt.second) << Linkage;
10266 
10267     if (CheckEquivalentExceptionSpec(
10268             OldFD->getType()->getAs<FunctionProtoType>(), OldFD->getLocation(),
10269             NewFD->getType()->getAs<FunctionProtoType>(), NewFD->getLocation()))
10270       return true;
10271   }
10272   return false;
10273 }
10274 
10275 static bool CheckMultiVersionAdditionalRules(Sema &S, const FunctionDecl *OldFD,
10276                                              const FunctionDecl *NewFD,
10277                                              bool CausesMV,
10278                                              MultiVersionKind MVType) {
10279   if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) {
10280     S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported);
10281     if (OldFD)
10282       S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
10283     return true;
10284   }
10285 
10286   bool IsCPUSpecificCPUDispatchMVType =
10287       MVType == MultiVersionKind::CPUDispatch ||
10288       MVType == MultiVersionKind::CPUSpecific;
10289 
10290   if (CausesMV && OldFD &&
10291       checkNonMultiVersionCompatAttributes(S, OldFD, NewFD, MVType))
10292     return true;
10293 
10294   if (checkNonMultiVersionCompatAttributes(S, NewFD, nullptr, MVType))
10295     return true;
10296 
10297   // Only allow transition to MultiVersion if it hasn't been used.
10298   if (OldFD && CausesMV && OldFD->isUsed(false))
10299     return S.Diag(NewFD->getLocation(), diag::err_multiversion_after_used);
10300 
10301   return S.areMultiversionVariantFunctionsCompatible(
10302       OldFD, NewFD, S.PDiag(diag::err_multiversion_noproto),
10303       PartialDiagnosticAt(NewFD->getLocation(),
10304                           S.PDiag(diag::note_multiversioning_caused_here)),
10305       PartialDiagnosticAt(NewFD->getLocation(),
10306                           S.PDiag(diag::err_multiversion_doesnt_support)
10307                               << IsCPUSpecificCPUDispatchMVType),
10308       PartialDiagnosticAt(NewFD->getLocation(),
10309                           S.PDiag(diag::err_multiversion_diff)),
10310       /*TemplatesSupported=*/false,
10311       /*ConstexprSupported=*/!IsCPUSpecificCPUDispatchMVType,
10312       /*CLinkageMayDiffer=*/false);
10313 }
10314 
10315 /// Check the validity of a multiversion function declaration that is the
10316 /// first of its kind. Also sets the multiversion'ness' of the function itself.
10317 ///
10318 /// This sets NewFD->isInvalidDecl() to true if there was an error.
10319 ///
10320 /// Returns true if there was an error, false otherwise.
10321 static bool CheckMultiVersionFirstFunction(Sema &S, FunctionDecl *FD,
10322                                            MultiVersionKind MVType,
10323                                            const TargetAttr *TA) {
10324   assert(MVType != MultiVersionKind::None &&
10325          "Function lacks multiversion attribute");
10326 
10327   // Target only causes MV if it is default, otherwise this is a normal
10328   // function.
10329   if (MVType == MultiVersionKind::Target && !TA->isDefaultVersion())
10330     return false;
10331 
10332   if (MVType == MultiVersionKind::Target && CheckMultiVersionValue(S, FD)) {
10333     FD->setInvalidDecl();
10334     return true;
10335   }
10336 
10337   if (CheckMultiVersionAdditionalRules(S, nullptr, FD, true, MVType)) {
10338     FD->setInvalidDecl();
10339     return true;
10340   }
10341 
10342   FD->setIsMultiVersion();
10343   return false;
10344 }
10345 
10346 static bool PreviousDeclsHaveMultiVersionAttribute(const FunctionDecl *FD) {
10347   for (const Decl *D = FD->getPreviousDecl(); D; D = D->getPreviousDecl()) {
10348     if (D->getAsFunction()->getMultiVersionKind() != MultiVersionKind::None)
10349       return true;
10350   }
10351 
10352   return false;
10353 }
10354 
10355 static bool CheckTargetCausesMultiVersioning(
10356     Sema &S, FunctionDecl *OldFD, FunctionDecl *NewFD, const TargetAttr *NewTA,
10357     bool &Redeclaration, NamedDecl *&OldDecl, bool &MergeTypeWithPrevious,
10358     LookupResult &Previous) {
10359   const auto *OldTA = OldFD->getAttr<TargetAttr>();
10360   ParsedTargetAttr NewParsed = NewTA->parse();
10361   // Sort order doesn't matter, it just needs to be consistent.
10362   llvm::sort(NewParsed.Features);
10363 
10364   // If the old decl is NOT MultiVersioned yet, and we don't cause that
10365   // to change, this is a simple redeclaration.
10366   if (!NewTA->isDefaultVersion() &&
10367       (!OldTA || OldTA->getFeaturesStr() == NewTA->getFeaturesStr()))
10368     return false;
10369 
10370   // Otherwise, this decl causes MultiVersioning.
10371   if (!S.getASTContext().getTargetInfo().supportsMultiVersioning()) {
10372     S.Diag(NewFD->getLocation(), diag::err_multiversion_not_supported);
10373     S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
10374     NewFD->setInvalidDecl();
10375     return true;
10376   }
10377 
10378   if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD, true,
10379                                        MultiVersionKind::Target)) {
10380     NewFD->setInvalidDecl();
10381     return true;
10382   }
10383 
10384   if (CheckMultiVersionValue(S, NewFD)) {
10385     NewFD->setInvalidDecl();
10386     return true;
10387   }
10388 
10389   // If this is 'default', permit the forward declaration.
10390   if (!OldFD->isMultiVersion() && !OldTA && NewTA->isDefaultVersion()) {
10391     Redeclaration = true;
10392     OldDecl = OldFD;
10393     OldFD->setIsMultiVersion();
10394     NewFD->setIsMultiVersion();
10395     return false;
10396   }
10397 
10398   if (CheckMultiVersionValue(S, OldFD)) {
10399     S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
10400     NewFD->setInvalidDecl();
10401     return true;
10402   }
10403 
10404   ParsedTargetAttr OldParsed = OldTA->parse(std::less<std::string>());
10405 
10406   if (OldParsed == NewParsed) {
10407     S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate);
10408     S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
10409     NewFD->setInvalidDecl();
10410     return true;
10411   }
10412 
10413   for (const auto *FD : OldFD->redecls()) {
10414     const auto *CurTA = FD->getAttr<TargetAttr>();
10415     // We allow forward declarations before ANY multiversioning attributes, but
10416     // nothing after the fact.
10417     if (PreviousDeclsHaveMultiVersionAttribute(FD) &&
10418         (!CurTA || CurTA->isInherited())) {
10419       S.Diag(FD->getLocation(), diag::err_multiversion_required_in_redecl)
10420           << 0;
10421       S.Diag(NewFD->getLocation(), diag::note_multiversioning_caused_here);
10422       NewFD->setInvalidDecl();
10423       return true;
10424     }
10425   }
10426 
10427   OldFD->setIsMultiVersion();
10428   NewFD->setIsMultiVersion();
10429   Redeclaration = false;
10430   MergeTypeWithPrevious = false;
10431   OldDecl = nullptr;
10432   Previous.clear();
10433   return false;
10434 }
10435 
10436 /// Check the validity of a new function declaration being added to an existing
10437 /// multiversioned declaration collection.
10438 static bool CheckMultiVersionAdditionalDecl(
10439     Sema &S, FunctionDecl *OldFD, FunctionDecl *NewFD,
10440     MultiVersionKind NewMVType, const TargetAttr *NewTA,
10441     const CPUDispatchAttr *NewCPUDisp, const CPUSpecificAttr *NewCPUSpec,
10442     bool &Redeclaration, NamedDecl *&OldDecl, bool &MergeTypeWithPrevious,
10443     LookupResult &Previous) {
10444 
10445   MultiVersionKind OldMVType = OldFD->getMultiVersionKind();
10446   // Disallow mixing of multiversioning types.
10447   if ((OldMVType == MultiVersionKind::Target &&
10448        NewMVType != MultiVersionKind::Target) ||
10449       (NewMVType == MultiVersionKind::Target &&
10450        OldMVType != MultiVersionKind::Target)) {
10451     S.Diag(NewFD->getLocation(), diag::err_multiversion_types_mixed);
10452     S.Diag(OldFD->getLocation(), diag::note_previous_declaration);
10453     NewFD->setInvalidDecl();
10454     return true;
10455   }
10456 
10457   ParsedTargetAttr NewParsed;
10458   if (NewTA) {
10459     NewParsed = NewTA->parse();
10460     llvm::sort(NewParsed.Features);
10461   }
10462 
10463   bool UseMemberUsingDeclRules =
10464       S.CurContext->isRecord() && !NewFD->getFriendObjectKind();
10465 
10466   // Next, check ALL non-overloads to see if this is a redeclaration of a
10467   // previous member of the MultiVersion set.
10468   for (NamedDecl *ND : Previous) {
10469     FunctionDecl *CurFD = ND->getAsFunction();
10470     if (!CurFD)
10471       continue;
10472     if (S.IsOverload(NewFD, CurFD, UseMemberUsingDeclRules))
10473       continue;
10474 
10475     if (NewMVType == MultiVersionKind::Target) {
10476       const auto *CurTA = CurFD->getAttr<TargetAttr>();
10477       if (CurTA->getFeaturesStr() == NewTA->getFeaturesStr()) {
10478         NewFD->setIsMultiVersion();
10479         Redeclaration = true;
10480         OldDecl = ND;
10481         return false;
10482       }
10483 
10484       ParsedTargetAttr CurParsed = CurTA->parse(std::less<std::string>());
10485       if (CurParsed == NewParsed) {
10486         S.Diag(NewFD->getLocation(), diag::err_multiversion_duplicate);
10487         S.Diag(CurFD->getLocation(), diag::note_previous_declaration);
10488         NewFD->setInvalidDecl();
10489         return true;
10490       }
10491     } else {
10492       const auto *CurCPUSpec = CurFD->getAttr<CPUSpecificAttr>();
10493       const auto *CurCPUDisp = CurFD->getAttr<CPUDispatchAttr>();
10494       // Handle CPUDispatch/CPUSpecific versions.
10495       // Only 1 CPUDispatch function is allowed, this will make it go through
10496       // the redeclaration errors.
10497       if (NewMVType == MultiVersionKind::CPUDispatch &&
10498           CurFD->hasAttr<CPUDispatchAttr>()) {
10499         if (CurCPUDisp->cpus_size() == NewCPUDisp->cpus_size() &&
10500             std::equal(
10501                 CurCPUDisp->cpus_begin(), CurCPUDisp->cpus_end(),
10502                 NewCPUDisp->cpus_begin(),
10503                 [](const IdentifierInfo *Cur, const IdentifierInfo *New) {
10504                   return Cur->getName() == New->getName();
10505                 })) {
10506           NewFD->setIsMultiVersion();
10507           Redeclaration = true;
10508           OldDecl = ND;
10509           return false;
10510         }
10511 
10512         // If the declarations don't match, this is an error condition.
10513         S.Diag(NewFD->getLocation(), diag::err_cpu_dispatch_mismatch);
10514         S.Diag(CurFD->getLocation(), diag::note_previous_declaration);
10515         NewFD->setInvalidDecl();
10516         return true;
10517       }
10518       if (NewMVType == MultiVersionKind::CPUSpecific && CurCPUSpec) {
10519 
10520         if (CurCPUSpec->cpus_size() == NewCPUSpec->cpus_size() &&
10521             std::equal(
10522                 CurCPUSpec->cpus_begin(), CurCPUSpec->cpus_end(),
10523                 NewCPUSpec->cpus_begin(),
10524                 [](const IdentifierInfo *Cur, const IdentifierInfo *New) {
10525                   return Cur->getName() == New->getName();
10526                 })) {
10527           NewFD->setIsMultiVersion();
10528           Redeclaration = true;
10529           OldDecl = ND;
10530           return false;
10531         }
10532 
10533         // Only 1 version of CPUSpecific is allowed for each CPU.
10534         for (const IdentifierInfo *CurII : CurCPUSpec->cpus()) {
10535           for (const IdentifierInfo *NewII : NewCPUSpec->cpus()) {
10536             if (CurII == NewII) {
10537               S.Diag(NewFD->getLocation(), diag::err_cpu_specific_multiple_defs)
10538                   << NewII;
10539               S.Diag(CurFD->getLocation(), diag::note_previous_declaration);
10540               NewFD->setInvalidDecl();
10541               return true;
10542             }
10543           }
10544         }
10545       }
10546       // If the two decls aren't the same MVType, there is no possible error
10547       // condition.
10548     }
10549   }
10550 
10551   // Else, this is simply a non-redecl case.  Checking the 'value' is only
10552   // necessary in the Target case, since The CPUSpecific/Dispatch cases are
10553   // handled in the attribute adding step.
10554   if (NewMVType == MultiVersionKind::Target &&
10555       CheckMultiVersionValue(S, NewFD)) {
10556     NewFD->setInvalidDecl();
10557     return true;
10558   }
10559 
10560   if (CheckMultiVersionAdditionalRules(S, OldFD, NewFD,
10561                                        !OldFD->isMultiVersion(), NewMVType)) {
10562     NewFD->setInvalidDecl();
10563     return true;
10564   }
10565 
10566   // Permit forward declarations in the case where these two are compatible.
10567   if (!OldFD->isMultiVersion()) {
10568     OldFD->setIsMultiVersion();
10569     NewFD->setIsMultiVersion();
10570     Redeclaration = true;
10571     OldDecl = OldFD;
10572     return false;
10573   }
10574 
10575   NewFD->setIsMultiVersion();
10576   Redeclaration = false;
10577   MergeTypeWithPrevious = false;
10578   OldDecl = nullptr;
10579   Previous.clear();
10580   return false;
10581 }
10582 
10583 
10584 /// Check the validity of a mulitversion function declaration.
10585 /// Also sets the multiversion'ness' of the function itself.
10586 ///
10587 /// This sets NewFD->isInvalidDecl() to true if there was an error.
10588 ///
10589 /// Returns true if there was an error, false otherwise.
10590 static bool CheckMultiVersionFunction(Sema &S, FunctionDecl *NewFD,
10591                                       bool &Redeclaration, NamedDecl *&OldDecl,
10592                                       bool &MergeTypeWithPrevious,
10593                                       LookupResult &Previous) {
10594   const auto *NewTA = NewFD->getAttr<TargetAttr>();
10595   const auto *NewCPUDisp = NewFD->getAttr<CPUDispatchAttr>();
10596   const auto *NewCPUSpec = NewFD->getAttr<CPUSpecificAttr>();
10597 
10598   // Mixing Multiversioning types is prohibited.
10599   if ((NewTA && NewCPUDisp) || (NewTA && NewCPUSpec) ||
10600       (NewCPUDisp && NewCPUSpec)) {
10601     S.Diag(NewFD->getLocation(), diag::err_multiversion_types_mixed);
10602     NewFD->setInvalidDecl();
10603     return true;
10604   }
10605 
10606   MultiVersionKind  MVType = NewFD->getMultiVersionKind();
10607 
10608   // Main isn't allowed to become a multiversion function, however it IS
10609   // permitted to have 'main' be marked with the 'target' optimization hint.
10610   if (NewFD->isMain()) {
10611     if ((MVType == MultiVersionKind::Target && NewTA->isDefaultVersion()) ||
10612         MVType == MultiVersionKind::CPUDispatch ||
10613         MVType == MultiVersionKind::CPUSpecific) {
10614       S.Diag(NewFD->getLocation(), diag::err_multiversion_not_allowed_on_main);
10615       NewFD->setInvalidDecl();
10616       return true;
10617     }
10618     return false;
10619   }
10620 
10621   if (!OldDecl || !OldDecl->getAsFunction() ||
10622       OldDecl->getDeclContext()->getRedeclContext() !=
10623           NewFD->getDeclContext()->getRedeclContext()) {
10624     // If there's no previous declaration, AND this isn't attempting to cause
10625     // multiversioning, this isn't an error condition.
10626     if (MVType == MultiVersionKind::None)
10627       return false;
10628     return CheckMultiVersionFirstFunction(S, NewFD, MVType, NewTA);
10629   }
10630 
10631   FunctionDecl *OldFD = OldDecl->getAsFunction();
10632 
10633   if (!OldFD->isMultiVersion() && MVType == MultiVersionKind::None)
10634     return false;
10635 
10636   if (OldFD->isMultiVersion() && MVType == MultiVersionKind::None) {
10637     S.Diag(NewFD->getLocation(), diag::err_multiversion_required_in_redecl)
10638         << (OldFD->getMultiVersionKind() != MultiVersionKind::Target);
10639     NewFD->setInvalidDecl();
10640     return true;
10641   }
10642 
10643   // Handle the target potentially causes multiversioning case.
10644   if (!OldFD->isMultiVersion() && MVType == MultiVersionKind::Target)
10645     return CheckTargetCausesMultiVersioning(S, OldFD, NewFD, NewTA,
10646                                             Redeclaration, OldDecl,
10647                                             MergeTypeWithPrevious, Previous);
10648 
10649   // At this point, we have a multiversion function decl (in OldFD) AND an
10650   // appropriate attribute in the current function decl.  Resolve that these are
10651   // still compatible with previous declarations.
10652   return CheckMultiVersionAdditionalDecl(
10653       S, OldFD, NewFD, MVType, NewTA, NewCPUDisp, NewCPUSpec, Redeclaration,
10654       OldDecl, MergeTypeWithPrevious, Previous);
10655 }
10656 
10657 /// Perform semantic checking of a new function declaration.
10658 ///
10659 /// Performs semantic analysis of the new function declaration
10660 /// NewFD. This routine performs all semantic checking that does not
10661 /// require the actual declarator involved in the declaration, and is
10662 /// used both for the declaration of functions as they are parsed
10663 /// (called via ActOnDeclarator) and for the declaration of functions
10664 /// that have been instantiated via C++ template instantiation (called
10665 /// via InstantiateDecl).
10666 ///
10667 /// \param IsMemberSpecialization whether this new function declaration is
10668 /// a member specialization (that replaces any definition provided by the
10669 /// previous declaration).
10670 ///
10671 /// This sets NewFD->isInvalidDecl() to true if there was an error.
10672 ///
10673 /// \returns true if the function declaration is a redeclaration.
10674 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
10675                                     LookupResult &Previous,
10676                                     bool IsMemberSpecialization) {
10677   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
10678          "Variably modified return types are not handled here");
10679 
10680   // Determine whether the type of this function should be merged with
10681   // a previous visible declaration. This never happens for functions in C++,
10682   // and always happens in C if the previous declaration was visible.
10683   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
10684                                !Previous.isShadowed();
10685 
10686   bool Redeclaration = false;
10687   NamedDecl *OldDecl = nullptr;
10688   bool MayNeedOverloadableChecks = false;
10689 
10690   // Merge or overload the declaration with an existing declaration of
10691   // the same name, if appropriate.
10692   if (!Previous.empty()) {
10693     // Determine whether NewFD is an overload of PrevDecl or
10694     // a declaration that requires merging. If it's an overload,
10695     // there's no more work to do here; we'll just add the new
10696     // function to the scope.
10697     if (!AllowOverloadingOfFunction(Previous, Context, NewFD)) {
10698       NamedDecl *Candidate = Previous.getRepresentativeDecl();
10699       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
10700         Redeclaration = true;
10701         OldDecl = Candidate;
10702       }
10703     } else {
10704       MayNeedOverloadableChecks = true;
10705       switch (CheckOverload(S, NewFD, Previous, OldDecl,
10706                             /*NewIsUsingDecl*/ false)) {
10707       case Ovl_Match:
10708         Redeclaration = true;
10709         break;
10710 
10711       case Ovl_NonFunction:
10712         Redeclaration = true;
10713         break;
10714 
10715       case Ovl_Overload:
10716         Redeclaration = false;
10717         break;
10718       }
10719     }
10720   }
10721 
10722   // Check for a previous extern "C" declaration with this name.
10723   if (!Redeclaration &&
10724       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
10725     if (!Previous.empty()) {
10726       // This is an extern "C" declaration with the same name as a previous
10727       // declaration, and thus redeclares that entity...
10728       Redeclaration = true;
10729       OldDecl = Previous.getFoundDecl();
10730       MergeTypeWithPrevious = false;
10731 
10732       // ... except in the presence of __attribute__((overloadable)).
10733       if (OldDecl->hasAttr<OverloadableAttr>() ||
10734           NewFD->hasAttr<OverloadableAttr>()) {
10735         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
10736           MayNeedOverloadableChecks = true;
10737           Redeclaration = false;
10738           OldDecl = nullptr;
10739         }
10740       }
10741     }
10742   }
10743 
10744   if (CheckMultiVersionFunction(*this, NewFD, Redeclaration, OldDecl,
10745                                 MergeTypeWithPrevious, Previous))
10746     return Redeclaration;
10747 
10748   // PPC MMA non-pointer types are not allowed as function return types.
10749   if (Context.getTargetInfo().getTriple().isPPC64() &&
10750       CheckPPCMMAType(NewFD->getReturnType(), NewFD->getLocation())) {
10751     NewFD->setInvalidDecl();
10752   }
10753 
10754   // C++11 [dcl.constexpr]p8:
10755   //   A constexpr specifier for a non-static member function that is not
10756   //   a constructor declares that member function to be const.
10757   //
10758   // This needs to be delayed until we know whether this is an out-of-line
10759   // definition of a static member function.
10760   //
10761   // This rule is not present in C++1y, so we produce a backwards
10762   // compatibility warning whenever it happens in C++11.
10763   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
10764   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
10765       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
10766       !isa<CXXDestructorDecl>(MD) && !MD->getMethodQualifiers().hasConst()) {
10767     CXXMethodDecl *OldMD = nullptr;
10768     if (OldDecl)
10769       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
10770     if (!OldMD || !OldMD->isStatic()) {
10771       const FunctionProtoType *FPT =
10772         MD->getType()->castAs<FunctionProtoType>();
10773       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
10774       EPI.TypeQuals.addConst();
10775       MD->setType(Context.getFunctionType(FPT->getReturnType(),
10776                                           FPT->getParamTypes(), EPI));
10777 
10778       // Warn that we did this, if we're not performing template instantiation.
10779       // In that case, we'll have warned already when the template was defined.
10780       if (!inTemplateInstantiation()) {
10781         SourceLocation AddConstLoc;
10782         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
10783                 .IgnoreParens().getAs<FunctionTypeLoc>())
10784           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
10785 
10786         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
10787           << FixItHint::CreateInsertion(AddConstLoc, " const");
10788       }
10789     }
10790   }
10791 
10792   if (Redeclaration) {
10793     // NewFD and OldDecl represent declarations that need to be
10794     // merged.
10795     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
10796       NewFD->setInvalidDecl();
10797       return Redeclaration;
10798     }
10799 
10800     Previous.clear();
10801     Previous.addDecl(OldDecl);
10802 
10803     if (FunctionTemplateDecl *OldTemplateDecl =
10804             dyn_cast<FunctionTemplateDecl>(OldDecl)) {
10805       auto *OldFD = OldTemplateDecl->getTemplatedDecl();
10806       FunctionTemplateDecl *NewTemplateDecl
10807         = NewFD->getDescribedFunctionTemplate();
10808       assert(NewTemplateDecl && "Template/non-template mismatch");
10809 
10810       // The call to MergeFunctionDecl above may have created some state in
10811       // NewTemplateDecl that needs to be merged with OldTemplateDecl before we
10812       // can add it as a redeclaration.
10813       NewTemplateDecl->mergePrevDecl(OldTemplateDecl);
10814 
10815       NewFD->setPreviousDeclaration(OldFD);
10816       if (NewFD->isCXXClassMember()) {
10817         NewFD->setAccess(OldTemplateDecl->getAccess());
10818         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
10819       }
10820 
10821       // If this is an explicit specialization of a member that is a function
10822       // template, mark it as a member specialization.
10823       if (IsMemberSpecialization &&
10824           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
10825         NewTemplateDecl->setMemberSpecialization();
10826         assert(OldTemplateDecl->isMemberSpecialization());
10827         // Explicit specializations of a member template do not inherit deleted
10828         // status from the parent member template that they are specializing.
10829         if (OldFD->isDeleted()) {
10830           // FIXME: This assert will not hold in the presence of modules.
10831           assert(OldFD->getCanonicalDecl() == OldFD);
10832           // FIXME: We need an update record for this AST mutation.
10833           OldFD->setDeletedAsWritten(false);
10834         }
10835       }
10836 
10837     } else {
10838       if (shouldLinkDependentDeclWithPrevious(NewFD, OldDecl)) {
10839         auto *OldFD = cast<FunctionDecl>(OldDecl);
10840         // This needs to happen first so that 'inline' propagates.
10841         NewFD->setPreviousDeclaration(OldFD);
10842         if (NewFD->isCXXClassMember())
10843           NewFD->setAccess(OldFD->getAccess());
10844       }
10845     }
10846   } else if (!getLangOpts().CPlusPlus && MayNeedOverloadableChecks &&
10847              !NewFD->getAttr<OverloadableAttr>()) {
10848     assert((Previous.empty() ||
10849             llvm::any_of(Previous,
10850                          [](const NamedDecl *ND) {
10851                            return ND->hasAttr<OverloadableAttr>();
10852                          })) &&
10853            "Non-redecls shouldn't happen without overloadable present");
10854 
10855     auto OtherUnmarkedIter = llvm::find_if(Previous, [](const NamedDecl *ND) {
10856       const auto *FD = dyn_cast<FunctionDecl>(ND);
10857       return FD && !FD->hasAttr<OverloadableAttr>();
10858     });
10859 
10860     if (OtherUnmarkedIter != Previous.end()) {
10861       Diag(NewFD->getLocation(),
10862            diag::err_attribute_overloadable_multiple_unmarked_overloads);
10863       Diag((*OtherUnmarkedIter)->getLocation(),
10864            diag::note_attribute_overloadable_prev_overload)
10865           << false;
10866 
10867       NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
10868     }
10869   }
10870 
10871   if (LangOpts.OpenMP)
10872     ActOnFinishedFunctionDefinitionInOpenMPAssumeScope(NewFD);
10873 
10874   // Semantic checking for this function declaration (in isolation).
10875 
10876   if (getLangOpts().CPlusPlus) {
10877     // C++-specific checks.
10878     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
10879       CheckConstructor(Constructor);
10880     } else if (CXXDestructorDecl *Destructor =
10881                 dyn_cast<CXXDestructorDecl>(NewFD)) {
10882       CXXRecordDecl *Record = Destructor->getParent();
10883       QualType ClassType = Context.getTypeDeclType(Record);
10884 
10885       // FIXME: Shouldn't we be able to perform this check even when the class
10886       // type is dependent? Both gcc and edg can handle that.
10887       if (!ClassType->isDependentType()) {
10888         DeclarationName Name
10889           = Context.DeclarationNames.getCXXDestructorName(
10890                                         Context.getCanonicalType(ClassType));
10891         if (NewFD->getDeclName() != Name) {
10892           Diag(NewFD->getLocation(), diag::err_destructor_name);
10893           NewFD->setInvalidDecl();
10894           return Redeclaration;
10895         }
10896       }
10897     } else if (auto *Guide = dyn_cast<CXXDeductionGuideDecl>(NewFD)) {
10898       if (auto *TD = Guide->getDescribedFunctionTemplate())
10899         CheckDeductionGuideTemplate(TD);
10900 
10901       // A deduction guide is not on the list of entities that can be
10902       // explicitly specialized.
10903       if (Guide->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
10904         Diag(Guide->getBeginLoc(), diag::err_deduction_guide_specialized)
10905             << /*explicit specialization*/ 1;
10906     }
10907 
10908     // Find any virtual functions that this function overrides.
10909     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
10910       if (!Method->isFunctionTemplateSpecialization() &&
10911           !Method->getDescribedFunctionTemplate() &&
10912           Method->isCanonicalDecl()) {
10913         AddOverriddenMethods(Method->getParent(), Method);
10914       }
10915       if (Method->isVirtual() && NewFD->getTrailingRequiresClause())
10916         // C++2a [class.virtual]p6
10917         // A virtual method shall not have a requires-clause.
10918         Diag(NewFD->getTrailingRequiresClause()->getBeginLoc(),
10919              diag::err_constrained_virtual_method);
10920 
10921       if (Method->isStatic())
10922         checkThisInStaticMemberFunctionType(Method);
10923     }
10924 
10925     if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(NewFD))
10926       ActOnConversionDeclarator(Conversion);
10927 
10928     // Extra checking for C++ overloaded operators (C++ [over.oper]).
10929     if (NewFD->isOverloadedOperator() &&
10930         CheckOverloadedOperatorDeclaration(NewFD)) {
10931       NewFD->setInvalidDecl();
10932       return Redeclaration;
10933     }
10934 
10935     // Extra checking for C++0x literal operators (C++0x [over.literal]).
10936     if (NewFD->getLiteralIdentifier() &&
10937         CheckLiteralOperatorDeclaration(NewFD)) {
10938       NewFD->setInvalidDecl();
10939       return Redeclaration;
10940     }
10941 
10942     // In C++, check default arguments now that we have merged decls. Unless
10943     // the lexical context is the class, because in this case this is done
10944     // during delayed parsing anyway.
10945     if (!CurContext->isRecord())
10946       CheckCXXDefaultArguments(NewFD);
10947 
10948     // If this function declares a builtin function, check the type of this
10949     // declaration against the expected type for the builtin.
10950     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
10951       ASTContext::GetBuiltinTypeError Error;
10952       LookupNecessaryTypesForBuiltin(S, BuiltinID);
10953       QualType T = Context.GetBuiltinType(BuiltinID, Error);
10954       // If the type of the builtin differs only in its exception
10955       // specification, that's OK.
10956       // FIXME: If the types do differ in this way, it would be better to
10957       // retain the 'noexcept' form of the type.
10958       if (!T.isNull() &&
10959           !Context.hasSameFunctionTypeIgnoringExceptionSpec(T,
10960                                                             NewFD->getType()))
10961         // The type of this function differs from the type of the builtin,
10962         // so forget about the builtin entirely.
10963         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
10964     }
10965 
10966     // If this function is declared as being extern "C", then check to see if
10967     // the function returns a UDT (class, struct, or union type) that is not C
10968     // compatible, and if it does, warn the user.
10969     // But, issue any diagnostic on the first declaration only.
10970     if (Previous.empty() && NewFD->isExternC()) {
10971       QualType R = NewFD->getReturnType();
10972       if (R->isIncompleteType() && !R->isVoidType())
10973         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
10974             << NewFD << R;
10975       else if (!R.isPODType(Context) && !R->isVoidType() &&
10976                !R->isObjCObjectPointerType())
10977         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
10978     }
10979 
10980     // C++1z [dcl.fct]p6:
10981     //   [...] whether the function has a non-throwing exception-specification
10982     //   [is] part of the function type
10983     //
10984     // This results in an ABI break between C++14 and C++17 for functions whose
10985     // declared type includes an exception-specification in a parameter or
10986     // return type. (Exception specifications on the function itself are OK in
10987     // most cases, and exception specifications are not permitted in most other
10988     // contexts where they could make it into a mangling.)
10989     if (!getLangOpts().CPlusPlus17 && !NewFD->getPrimaryTemplate()) {
10990       auto HasNoexcept = [&](QualType T) -> bool {
10991         // Strip off declarator chunks that could be between us and a function
10992         // type. We don't need to look far, exception specifications are very
10993         // restricted prior to C++17.
10994         if (auto *RT = T->getAs<ReferenceType>())
10995           T = RT->getPointeeType();
10996         else if (T->isAnyPointerType())
10997           T = T->getPointeeType();
10998         else if (auto *MPT = T->getAs<MemberPointerType>())
10999           T = MPT->getPointeeType();
11000         if (auto *FPT = T->getAs<FunctionProtoType>())
11001           if (FPT->isNothrow())
11002             return true;
11003         return false;
11004       };
11005 
11006       auto *FPT = NewFD->getType()->castAs<FunctionProtoType>();
11007       bool AnyNoexcept = HasNoexcept(FPT->getReturnType());
11008       for (QualType T : FPT->param_types())
11009         AnyNoexcept |= HasNoexcept(T);
11010       if (AnyNoexcept)
11011         Diag(NewFD->getLocation(),
11012              diag::warn_cxx17_compat_exception_spec_in_signature)
11013             << NewFD;
11014     }
11015 
11016     if (!Redeclaration && LangOpts.CUDA)
11017       checkCUDATargetOverload(NewFD, Previous);
11018   }
11019   return Redeclaration;
11020 }
11021 
11022 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
11023   // C++11 [basic.start.main]p3:
11024   //   A program that [...] declares main to be inline, static or
11025   //   constexpr is ill-formed.
11026   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
11027   //   appear in a declaration of main.
11028   // static main is not an error under C99, but we should warn about it.
11029   // We accept _Noreturn main as an extension.
11030   if (FD->getStorageClass() == SC_Static)
11031     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
11032          ? diag::err_static_main : diag::warn_static_main)
11033       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
11034   if (FD->isInlineSpecified())
11035     Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
11036       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
11037   if (DS.isNoreturnSpecified()) {
11038     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
11039     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
11040     Diag(NoreturnLoc, diag::ext_noreturn_main);
11041     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
11042       << FixItHint::CreateRemoval(NoreturnRange);
11043   }
11044   if (FD->isConstexpr()) {
11045     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
11046         << FD->isConsteval()
11047         << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
11048     FD->setConstexprKind(ConstexprSpecKind::Unspecified);
11049   }
11050 
11051   if (getLangOpts().OpenCL) {
11052     Diag(FD->getLocation(), diag::err_opencl_no_main)
11053         << FD->hasAttr<OpenCLKernelAttr>();
11054     FD->setInvalidDecl();
11055     return;
11056   }
11057 
11058   QualType T = FD->getType();
11059   assert(T->isFunctionType() && "function decl is not of function type");
11060   const FunctionType* FT = T->castAs<FunctionType>();
11061 
11062   // Set default calling convention for main()
11063   if (FT->getCallConv() != CC_C) {
11064     FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C));
11065     FD->setType(QualType(FT, 0));
11066     T = Context.getCanonicalType(FD->getType());
11067   }
11068 
11069   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
11070     // In C with GNU extensions we allow main() to have non-integer return
11071     // type, but we should warn about the extension, and we disable the
11072     // implicit-return-zero rule.
11073 
11074     // GCC in C mode accepts qualified 'int'.
11075     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
11076       FD->setHasImplicitReturnZero(true);
11077     else {
11078       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
11079       SourceRange RTRange = FD->getReturnTypeSourceRange();
11080       if (RTRange.isValid())
11081         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
11082             << FixItHint::CreateReplacement(RTRange, "int");
11083     }
11084   } else {
11085     // In C and C++, main magically returns 0 if you fall off the end;
11086     // set the flag which tells us that.
11087     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
11088 
11089     // All the standards say that main() should return 'int'.
11090     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
11091       FD->setHasImplicitReturnZero(true);
11092     else {
11093       // Otherwise, this is just a flat-out error.
11094       SourceRange RTRange = FD->getReturnTypeSourceRange();
11095       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
11096           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
11097                                 : FixItHint());
11098       FD->setInvalidDecl(true);
11099     }
11100   }
11101 
11102   // Treat protoless main() as nullary.
11103   if (isa<FunctionNoProtoType>(FT)) return;
11104 
11105   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
11106   unsigned nparams = FTP->getNumParams();
11107   assert(FD->getNumParams() == nparams);
11108 
11109   bool HasExtraParameters = (nparams > 3);
11110 
11111   if (FTP->isVariadic()) {
11112     Diag(FD->getLocation(), diag::ext_variadic_main);
11113     // FIXME: if we had information about the location of the ellipsis, we
11114     // could add a FixIt hint to remove it as a parameter.
11115   }
11116 
11117   // Darwin passes an undocumented fourth argument of type char**.  If
11118   // other platforms start sprouting these, the logic below will start
11119   // getting shifty.
11120   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
11121     HasExtraParameters = false;
11122 
11123   if (HasExtraParameters) {
11124     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
11125     FD->setInvalidDecl(true);
11126     nparams = 3;
11127   }
11128 
11129   // FIXME: a lot of the following diagnostics would be improved
11130   // if we had some location information about types.
11131 
11132   QualType CharPP =
11133     Context.getPointerType(Context.getPointerType(Context.CharTy));
11134   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
11135 
11136   for (unsigned i = 0; i < nparams; ++i) {
11137     QualType AT = FTP->getParamType(i);
11138 
11139     bool mismatch = true;
11140 
11141     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
11142       mismatch = false;
11143     else if (Expected[i] == CharPP) {
11144       // As an extension, the following forms are okay:
11145       //   char const **
11146       //   char const * const *
11147       //   char * const *
11148 
11149       QualifierCollector qs;
11150       const PointerType* PT;
11151       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
11152           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
11153           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
11154                               Context.CharTy)) {
11155         qs.removeConst();
11156         mismatch = !qs.empty();
11157       }
11158     }
11159 
11160     if (mismatch) {
11161       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
11162       // TODO: suggest replacing given type with expected type
11163       FD->setInvalidDecl(true);
11164     }
11165   }
11166 
11167   if (nparams == 1 && !FD->isInvalidDecl()) {
11168     Diag(FD->getLocation(), diag::warn_main_one_arg);
11169   }
11170 
11171   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
11172     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
11173     FD->setInvalidDecl();
11174   }
11175 }
11176 
11177 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
11178   QualType T = FD->getType();
11179   assert(T->isFunctionType() && "function decl is not of function type");
11180   const FunctionType *FT = T->castAs<FunctionType>();
11181 
11182   // Set an implicit return of 'zero' if the function can return some integral,
11183   // enumeration, pointer or nullptr type.
11184   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
11185       FT->getReturnType()->isAnyPointerType() ||
11186       FT->getReturnType()->isNullPtrType())
11187     // DllMain is exempt because a return value of zero means it failed.
11188     if (FD->getName() != "DllMain")
11189       FD->setHasImplicitReturnZero(true);
11190 
11191   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
11192     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
11193     FD->setInvalidDecl();
11194   }
11195 }
11196 
11197 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
11198   // FIXME: Need strict checking.  In C89, we need to check for
11199   // any assignment, increment, decrement, function-calls, or
11200   // commas outside of a sizeof.  In C99, it's the same list,
11201   // except that the aforementioned are allowed in unevaluated
11202   // expressions.  Everything else falls under the
11203   // "may accept other forms of constant expressions" exception.
11204   //
11205   // Regular C++ code will not end up here (exceptions: language extensions,
11206   // OpenCL C++ etc), so the constant expression rules there don't matter.
11207   if (Init->isValueDependent()) {
11208     assert(Init->containsErrors() &&
11209            "Dependent code should only occur in error-recovery path.");
11210     return true;
11211   }
11212   const Expr *Culprit;
11213   if (Init->isConstantInitializer(Context, false, &Culprit))
11214     return false;
11215   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
11216     << Culprit->getSourceRange();
11217   return true;
11218 }
11219 
11220 namespace {
11221   // Visits an initialization expression to see if OrigDecl is evaluated in
11222   // its own initialization and throws a warning if it does.
11223   class SelfReferenceChecker
11224       : public EvaluatedExprVisitor<SelfReferenceChecker> {
11225     Sema &S;
11226     Decl *OrigDecl;
11227     bool isRecordType;
11228     bool isPODType;
11229     bool isReferenceType;
11230 
11231     bool isInitList;
11232     llvm::SmallVector<unsigned, 4> InitFieldIndex;
11233 
11234   public:
11235     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
11236 
11237     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
11238                                                     S(S), OrigDecl(OrigDecl) {
11239       isPODType = false;
11240       isRecordType = false;
11241       isReferenceType = false;
11242       isInitList = false;
11243       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
11244         isPODType = VD->getType().isPODType(S.Context);
11245         isRecordType = VD->getType()->isRecordType();
11246         isReferenceType = VD->getType()->isReferenceType();
11247       }
11248     }
11249 
11250     // For most expressions, just call the visitor.  For initializer lists,
11251     // track the index of the field being initialized since fields are
11252     // initialized in order allowing use of previously initialized fields.
11253     void CheckExpr(Expr *E) {
11254       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
11255       if (!InitList) {
11256         Visit(E);
11257         return;
11258       }
11259 
11260       // Track and increment the index here.
11261       isInitList = true;
11262       InitFieldIndex.push_back(0);
11263       for (auto Child : InitList->children()) {
11264         CheckExpr(cast<Expr>(Child));
11265         ++InitFieldIndex.back();
11266       }
11267       InitFieldIndex.pop_back();
11268     }
11269 
11270     // Returns true if MemberExpr is checked and no further checking is needed.
11271     // Returns false if additional checking is required.
11272     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
11273       llvm::SmallVector<FieldDecl*, 4> Fields;
11274       Expr *Base = E;
11275       bool ReferenceField = false;
11276 
11277       // Get the field members used.
11278       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
11279         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
11280         if (!FD)
11281           return false;
11282         Fields.push_back(FD);
11283         if (FD->getType()->isReferenceType())
11284           ReferenceField = true;
11285         Base = ME->getBase()->IgnoreParenImpCasts();
11286       }
11287 
11288       // Keep checking only if the base Decl is the same.
11289       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
11290       if (!DRE || DRE->getDecl() != OrigDecl)
11291         return false;
11292 
11293       // A reference field can be bound to an unininitialized field.
11294       if (CheckReference && !ReferenceField)
11295         return true;
11296 
11297       // Convert FieldDecls to their index number.
11298       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
11299       for (const FieldDecl *I : llvm::reverse(Fields))
11300         UsedFieldIndex.push_back(I->getFieldIndex());
11301 
11302       // See if a warning is needed by checking the first difference in index
11303       // numbers.  If field being used has index less than the field being
11304       // initialized, then the use is safe.
11305       for (auto UsedIter = UsedFieldIndex.begin(),
11306                 UsedEnd = UsedFieldIndex.end(),
11307                 OrigIter = InitFieldIndex.begin(),
11308                 OrigEnd = InitFieldIndex.end();
11309            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
11310         if (*UsedIter < *OrigIter)
11311           return true;
11312         if (*UsedIter > *OrigIter)
11313           break;
11314       }
11315 
11316       // TODO: Add a different warning which will print the field names.
11317       HandleDeclRefExpr(DRE);
11318       return true;
11319     }
11320 
11321     // For most expressions, the cast is directly above the DeclRefExpr.
11322     // For conditional operators, the cast can be outside the conditional
11323     // operator if both expressions are DeclRefExpr's.
11324     void HandleValue(Expr *E) {
11325       E = E->IgnoreParens();
11326       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
11327         HandleDeclRefExpr(DRE);
11328         return;
11329       }
11330 
11331       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
11332         Visit(CO->getCond());
11333         HandleValue(CO->getTrueExpr());
11334         HandleValue(CO->getFalseExpr());
11335         return;
11336       }
11337 
11338       if (BinaryConditionalOperator *BCO =
11339               dyn_cast<BinaryConditionalOperator>(E)) {
11340         Visit(BCO->getCond());
11341         HandleValue(BCO->getFalseExpr());
11342         return;
11343       }
11344 
11345       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
11346         HandleValue(OVE->getSourceExpr());
11347         return;
11348       }
11349 
11350       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
11351         if (BO->getOpcode() == BO_Comma) {
11352           Visit(BO->getLHS());
11353           HandleValue(BO->getRHS());
11354           return;
11355         }
11356       }
11357 
11358       if (isa<MemberExpr>(E)) {
11359         if (isInitList) {
11360           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
11361                                       false /*CheckReference*/))
11362             return;
11363         }
11364 
11365         Expr *Base = E->IgnoreParenImpCasts();
11366         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
11367           // Check for static member variables and don't warn on them.
11368           if (!isa<FieldDecl>(ME->getMemberDecl()))
11369             return;
11370           Base = ME->getBase()->IgnoreParenImpCasts();
11371         }
11372         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
11373           HandleDeclRefExpr(DRE);
11374         return;
11375       }
11376 
11377       Visit(E);
11378     }
11379 
11380     // Reference types not handled in HandleValue are handled here since all
11381     // uses of references are bad, not just r-value uses.
11382     void VisitDeclRefExpr(DeclRefExpr *E) {
11383       if (isReferenceType)
11384         HandleDeclRefExpr(E);
11385     }
11386 
11387     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
11388       if (E->getCastKind() == CK_LValueToRValue) {
11389         HandleValue(E->getSubExpr());
11390         return;
11391       }
11392 
11393       Inherited::VisitImplicitCastExpr(E);
11394     }
11395 
11396     void VisitMemberExpr(MemberExpr *E) {
11397       if (isInitList) {
11398         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
11399           return;
11400       }
11401 
11402       // Don't warn on arrays since they can be treated as pointers.
11403       if (E->getType()->canDecayToPointerType()) return;
11404 
11405       // Warn when a non-static method call is followed by non-static member
11406       // field accesses, which is followed by a DeclRefExpr.
11407       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
11408       bool Warn = (MD && !MD->isStatic());
11409       Expr *Base = E->getBase()->IgnoreParenImpCasts();
11410       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
11411         if (!isa<FieldDecl>(ME->getMemberDecl()))
11412           Warn = false;
11413         Base = ME->getBase()->IgnoreParenImpCasts();
11414       }
11415 
11416       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
11417         if (Warn)
11418           HandleDeclRefExpr(DRE);
11419         return;
11420       }
11421 
11422       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
11423       // Visit that expression.
11424       Visit(Base);
11425     }
11426 
11427     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
11428       Expr *Callee = E->getCallee();
11429 
11430       if (isa<UnresolvedLookupExpr>(Callee))
11431         return Inherited::VisitCXXOperatorCallExpr(E);
11432 
11433       Visit(Callee);
11434       for (auto Arg: E->arguments())
11435         HandleValue(Arg->IgnoreParenImpCasts());
11436     }
11437 
11438     void VisitUnaryOperator(UnaryOperator *E) {
11439       // For POD record types, addresses of its own members are well-defined.
11440       if (E->getOpcode() == UO_AddrOf && isRecordType &&
11441           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
11442         if (!isPODType)
11443           HandleValue(E->getSubExpr());
11444         return;
11445       }
11446 
11447       if (E->isIncrementDecrementOp()) {
11448         HandleValue(E->getSubExpr());
11449         return;
11450       }
11451 
11452       Inherited::VisitUnaryOperator(E);
11453     }
11454 
11455     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
11456 
11457     void VisitCXXConstructExpr(CXXConstructExpr *E) {
11458       if (E->getConstructor()->isCopyConstructor()) {
11459         Expr *ArgExpr = E->getArg(0);
11460         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
11461           if (ILE->getNumInits() == 1)
11462             ArgExpr = ILE->getInit(0);
11463         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
11464           if (ICE->getCastKind() == CK_NoOp)
11465             ArgExpr = ICE->getSubExpr();
11466         HandleValue(ArgExpr);
11467         return;
11468       }
11469       Inherited::VisitCXXConstructExpr(E);
11470     }
11471 
11472     void VisitCallExpr(CallExpr *E) {
11473       // Treat std::move as a use.
11474       if (E->isCallToStdMove()) {
11475         HandleValue(E->getArg(0));
11476         return;
11477       }
11478 
11479       Inherited::VisitCallExpr(E);
11480     }
11481 
11482     void VisitBinaryOperator(BinaryOperator *E) {
11483       if (E->isCompoundAssignmentOp()) {
11484         HandleValue(E->getLHS());
11485         Visit(E->getRHS());
11486         return;
11487       }
11488 
11489       Inherited::VisitBinaryOperator(E);
11490     }
11491 
11492     // A custom visitor for BinaryConditionalOperator is needed because the
11493     // regular visitor would check the condition and true expression separately
11494     // but both point to the same place giving duplicate diagnostics.
11495     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
11496       Visit(E->getCond());
11497       Visit(E->getFalseExpr());
11498     }
11499 
11500     void HandleDeclRefExpr(DeclRefExpr *DRE) {
11501       Decl* ReferenceDecl = DRE->getDecl();
11502       if (OrigDecl != ReferenceDecl) return;
11503       unsigned diag;
11504       if (isReferenceType) {
11505         diag = diag::warn_uninit_self_reference_in_reference_init;
11506       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
11507         diag = diag::warn_static_self_reference_in_init;
11508       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
11509                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
11510                  DRE->getDecl()->getType()->isRecordType()) {
11511         diag = diag::warn_uninit_self_reference_in_init;
11512       } else {
11513         // Local variables will be handled by the CFG analysis.
11514         return;
11515       }
11516 
11517       S.DiagRuntimeBehavior(DRE->getBeginLoc(), DRE,
11518                             S.PDiag(diag)
11519                                 << DRE->getDecl() << OrigDecl->getLocation()
11520                                 << DRE->getSourceRange());
11521     }
11522   };
11523 
11524   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
11525   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
11526                                  bool DirectInit) {
11527     // Parameters arguments are occassionially constructed with itself,
11528     // for instance, in recursive functions.  Skip them.
11529     if (isa<ParmVarDecl>(OrigDecl))
11530       return;
11531 
11532     E = E->IgnoreParens();
11533 
11534     // Skip checking T a = a where T is not a record or reference type.
11535     // Doing so is a way to silence uninitialized warnings.
11536     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
11537       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
11538         if (ICE->getCastKind() == CK_LValueToRValue)
11539           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
11540             if (DRE->getDecl() == OrigDecl)
11541               return;
11542 
11543     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
11544   }
11545 } // end anonymous namespace
11546 
11547 namespace {
11548   // Simple wrapper to add the name of a variable or (if no variable is
11549   // available) a DeclarationName into a diagnostic.
11550   struct VarDeclOrName {
11551     VarDecl *VDecl;
11552     DeclarationName Name;
11553 
11554     friend const Sema::SemaDiagnosticBuilder &
11555     operator<<(const Sema::SemaDiagnosticBuilder &Diag, VarDeclOrName VN) {
11556       return VN.VDecl ? Diag << VN.VDecl : Diag << VN.Name;
11557     }
11558   };
11559 } // end anonymous namespace
11560 
11561 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
11562                                             DeclarationName Name, QualType Type,
11563                                             TypeSourceInfo *TSI,
11564                                             SourceRange Range, bool DirectInit,
11565                                             Expr *Init) {
11566   bool IsInitCapture = !VDecl;
11567   assert((!VDecl || !VDecl->isInitCapture()) &&
11568          "init captures are expected to be deduced prior to initialization");
11569 
11570   VarDeclOrName VN{VDecl, Name};
11571 
11572   DeducedType *Deduced = Type->getContainedDeducedType();
11573   assert(Deduced && "deduceVarTypeFromInitializer for non-deduced type");
11574 
11575   // C++11 [dcl.spec.auto]p3
11576   if (!Init) {
11577     assert(VDecl && "no init for init capture deduction?");
11578 
11579     // Except for class argument deduction, and then for an initializing
11580     // declaration only, i.e. no static at class scope or extern.
11581     if (!isa<DeducedTemplateSpecializationType>(Deduced) ||
11582         VDecl->hasExternalStorage() ||
11583         VDecl->isStaticDataMember()) {
11584       Diag(VDecl->getLocation(), diag::err_auto_var_requires_init)
11585         << VDecl->getDeclName() << Type;
11586       return QualType();
11587     }
11588   }
11589 
11590   ArrayRef<Expr*> DeduceInits;
11591   if (Init)
11592     DeduceInits = Init;
11593 
11594   if (DirectInit) {
11595     if (auto *PL = dyn_cast_or_null<ParenListExpr>(Init))
11596       DeduceInits = PL->exprs();
11597   }
11598 
11599   if (isa<DeducedTemplateSpecializationType>(Deduced)) {
11600     assert(VDecl && "non-auto type for init capture deduction?");
11601     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
11602     InitializationKind Kind = InitializationKind::CreateForInit(
11603         VDecl->getLocation(), DirectInit, Init);
11604     // FIXME: Initialization should not be taking a mutable list of inits.
11605     SmallVector<Expr*, 8> InitsCopy(DeduceInits.begin(), DeduceInits.end());
11606     return DeduceTemplateSpecializationFromInitializer(TSI, Entity, Kind,
11607                                                        InitsCopy);
11608   }
11609 
11610   if (DirectInit) {
11611     if (auto *IL = dyn_cast<InitListExpr>(Init))
11612       DeduceInits = IL->inits();
11613   }
11614 
11615   // Deduction only works if we have exactly one source expression.
11616   if (DeduceInits.empty()) {
11617     // It isn't possible to write this directly, but it is possible to
11618     // end up in this situation with "auto x(some_pack...);"
11619     Diag(Init->getBeginLoc(), IsInitCapture
11620                                   ? diag::err_init_capture_no_expression
11621                                   : diag::err_auto_var_init_no_expression)
11622         << VN << Type << Range;
11623     return QualType();
11624   }
11625 
11626   if (DeduceInits.size() > 1) {
11627     Diag(DeduceInits[1]->getBeginLoc(),
11628          IsInitCapture ? diag::err_init_capture_multiple_expressions
11629                        : diag::err_auto_var_init_multiple_expressions)
11630         << VN << Type << Range;
11631     return QualType();
11632   }
11633 
11634   Expr *DeduceInit = DeduceInits[0];
11635   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
11636     Diag(Init->getBeginLoc(), IsInitCapture
11637                                   ? diag::err_init_capture_paren_braces
11638                                   : diag::err_auto_var_init_paren_braces)
11639         << isa<InitListExpr>(Init) << VN << Type << Range;
11640     return QualType();
11641   }
11642 
11643   // Expressions default to 'id' when we're in a debugger.
11644   bool DefaultedAnyToId = false;
11645   if (getLangOpts().DebuggerCastResultToId &&
11646       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
11647     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
11648     if (Result.isInvalid()) {
11649       return QualType();
11650     }
11651     Init = Result.get();
11652     DefaultedAnyToId = true;
11653   }
11654 
11655   // C++ [dcl.decomp]p1:
11656   //   If the assignment-expression [...] has array type A and no ref-qualifier
11657   //   is present, e has type cv A
11658   if (VDecl && isa<DecompositionDecl>(VDecl) &&
11659       Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) &&
11660       DeduceInit->getType()->isConstantArrayType())
11661     return Context.getQualifiedType(DeduceInit->getType(),
11662                                     Type.getQualifiers());
11663 
11664   QualType DeducedType;
11665   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
11666     if (!IsInitCapture)
11667       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
11668     else if (isa<InitListExpr>(Init))
11669       Diag(Range.getBegin(),
11670            diag::err_init_capture_deduction_failure_from_init_list)
11671           << VN
11672           << (DeduceInit->getType().isNull() ? TSI->getType()
11673                                              : DeduceInit->getType())
11674           << DeduceInit->getSourceRange();
11675     else
11676       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
11677           << VN << TSI->getType()
11678           << (DeduceInit->getType().isNull() ? TSI->getType()
11679                                              : DeduceInit->getType())
11680           << DeduceInit->getSourceRange();
11681   }
11682 
11683   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
11684   // 'id' instead of a specific object type prevents most of our usual
11685   // checks.
11686   // We only want to warn outside of template instantiations, though:
11687   // inside a template, the 'id' could have come from a parameter.
11688   if (!inTemplateInstantiation() && !DefaultedAnyToId && !IsInitCapture &&
11689       !DeducedType.isNull() && DeducedType->isObjCIdType()) {
11690     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
11691     Diag(Loc, diag::warn_auto_var_is_id) << VN << Range;
11692   }
11693 
11694   return DeducedType;
11695 }
11696 
11697 bool Sema::DeduceVariableDeclarationType(VarDecl *VDecl, bool DirectInit,
11698                                          Expr *Init) {
11699   assert(!Init || !Init->containsErrors());
11700   QualType DeducedType = deduceVarTypeFromInitializer(
11701       VDecl, VDecl->getDeclName(), VDecl->getType(), VDecl->getTypeSourceInfo(),
11702       VDecl->getSourceRange(), DirectInit, Init);
11703   if (DeducedType.isNull()) {
11704     VDecl->setInvalidDecl();
11705     return true;
11706   }
11707 
11708   VDecl->setType(DeducedType);
11709   assert(VDecl->isLinkageValid());
11710 
11711   // In ARC, infer lifetime.
11712   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
11713     VDecl->setInvalidDecl();
11714 
11715   if (getLangOpts().OpenCL)
11716     deduceOpenCLAddressSpace(VDecl);
11717 
11718   // If this is a redeclaration, check that the type we just deduced matches
11719   // the previously declared type.
11720   if (VarDecl *Old = VDecl->getPreviousDecl()) {
11721     // We never need to merge the type, because we cannot form an incomplete
11722     // array of auto, nor deduce such a type.
11723     MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
11724   }
11725 
11726   // Check the deduced type is valid for a variable declaration.
11727   CheckVariableDeclarationType(VDecl);
11728   return VDecl->isInvalidDecl();
11729 }
11730 
11731 void Sema::checkNonTrivialCUnionInInitializer(const Expr *Init,
11732                                               SourceLocation Loc) {
11733   if (auto *EWC = dyn_cast<ExprWithCleanups>(Init))
11734     Init = EWC->getSubExpr();
11735 
11736   if (auto *CE = dyn_cast<ConstantExpr>(Init))
11737     Init = CE->getSubExpr();
11738 
11739   QualType InitType = Init->getType();
11740   assert((InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
11741           InitType.hasNonTrivialToPrimitiveCopyCUnion()) &&
11742          "shouldn't be called if type doesn't have a non-trivial C struct");
11743   if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
11744     for (auto I : ILE->inits()) {
11745       if (!I->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion() &&
11746           !I->getType().hasNonTrivialToPrimitiveCopyCUnion())
11747         continue;
11748       SourceLocation SL = I->getExprLoc();
11749       checkNonTrivialCUnionInInitializer(I, SL.isValid() ? SL : Loc);
11750     }
11751     return;
11752   }
11753 
11754   if (isa<ImplicitValueInitExpr>(Init)) {
11755     if (InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion())
11756       checkNonTrivialCUnion(InitType, Loc, NTCUC_DefaultInitializedObject,
11757                             NTCUK_Init);
11758   } else {
11759     // Assume all other explicit initializers involving copying some existing
11760     // object.
11761     // TODO: ignore any explicit initializers where we can guarantee
11762     // copy-elision.
11763     if (InitType.hasNonTrivialToPrimitiveCopyCUnion())
11764       checkNonTrivialCUnion(InitType, Loc, NTCUC_CopyInit, NTCUK_Copy);
11765   }
11766 }
11767 
11768 namespace {
11769 
11770 bool shouldIgnoreForRecordTriviality(const FieldDecl *FD) {
11771   // Ignore unavailable fields. A field can be marked as unavailable explicitly
11772   // in the source code or implicitly by the compiler if it is in a union
11773   // defined in a system header and has non-trivial ObjC ownership
11774   // qualifications. We don't want those fields to participate in determining
11775   // whether the containing union is non-trivial.
11776   return FD->hasAttr<UnavailableAttr>();
11777 }
11778 
11779 struct DiagNonTrivalCUnionDefaultInitializeVisitor
11780     : DefaultInitializedTypeVisitor<DiagNonTrivalCUnionDefaultInitializeVisitor,
11781                                     void> {
11782   using Super =
11783       DefaultInitializedTypeVisitor<DiagNonTrivalCUnionDefaultInitializeVisitor,
11784                                     void>;
11785 
11786   DiagNonTrivalCUnionDefaultInitializeVisitor(
11787       QualType OrigTy, SourceLocation OrigLoc,
11788       Sema::NonTrivialCUnionContext UseContext, Sema &S)
11789       : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {}
11790 
11791   void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType QT,
11792                      const FieldDecl *FD, bool InNonTrivialUnion) {
11793     if (const auto *AT = S.Context.getAsArrayType(QT))
11794       return this->asDerived().visit(S.Context.getBaseElementType(AT), FD,
11795                                      InNonTrivialUnion);
11796     return Super::visitWithKind(PDIK, QT, FD, InNonTrivialUnion);
11797   }
11798 
11799   void visitARCStrong(QualType QT, const FieldDecl *FD,
11800                       bool InNonTrivialUnion) {
11801     if (InNonTrivialUnion)
11802       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11803           << 1 << 0 << QT << FD->getName();
11804   }
11805 
11806   void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11807     if (InNonTrivialUnion)
11808       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11809           << 1 << 0 << QT << FD->getName();
11810   }
11811 
11812   void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11813     const RecordDecl *RD = QT->castAs<RecordType>()->getDecl();
11814     if (RD->isUnion()) {
11815       if (OrigLoc.isValid()) {
11816         bool IsUnion = false;
11817         if (auto *OrigRD = OrigTy->getAsRecordDecl())
11818           IsUnion = OrigRD->isUnion();
11819         S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context)
11820             << 0 << OrigTy << IsUnion << UseContext;
11821         // Reset OrigLoc so that this diagnostic is emitted only once.
11822         OrigLoc = SourceLocation();
11823       }
11824       InNonTrivialUnion = true;
11825     }
11826 
11827     if (InNonTrivialUnion)
11828       S.Diag(RD->getLocation(), diag::note_non_trivial_c_union)
11829           << 0 << 0 << QT.getUnqualifiedType() << "";
11830 
11831     for (const FieldDecl *FD : RD->fields())
11832       if (!shouldIgnoreForRecordTriviality(FD))
11833         asDerived().visit(FD->getType(), FD, InNonTrivialUnion);
11834   }
11835 
11836   void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {}
11837 
11838   // The non-trivial C union type or the struct/union type that contains a
11839   // non-trivial C union.
11840   QualType OrigTy;
11841   SourceLocation OrigLoc;
11842   Sema::NonTrivialCUnionContext UseContext;
11843   Sema &S;
11844 };
11845 
11846 struct DiagNonTrivalCUnionDestructedTypeVisitor
11847     : DestructedTypeVisitor<DiagNonTrivalCUnionDestructedTypeVisitor, void> {
11848   using Super =
11849       DestructedTypeVisitor<DiagNonTrivalCUnionDestructedTypeVisitor, void>;
11850 
11851   DiagNonTrivalCUnionDestructedTypeVisitor(
11852       QualType OrigTy, SourceLocation OrigLoc,
11853       Sema::NonTrivialCUnionContext UseContext, Sema &S)
11854       : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {}
11855 
11856   void visitWithKind(QualType::DestructionKind DK, QualType QT,
11857                      const FieldDecl *FD, bool InNonTrivialUnion) {
11858     if (const auto *AT = S.Context.getAsArrayType(QT))
11859       return this->asDerived().visit(S.Context.getBaseElementType(AT), FD,
11860                                      InNonTrivialUnion);
11861     return Super::visitWithKind(DK, QT, FD, InNonTrivialUnion);
11862   }
11863 
11864   void visitARCStrong(QualType QT, const FieldDecl *FD,
11865                       bool InNonTrivialUnion) {
11866     if (InNonTrivialUnion)
11867       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11868           << 1 << 1 << QT << FD->getName();
11869   }
11870 
11871   void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11872     if (InNonTrivialUnion)
11873       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11874           << 1 << 1 << QT << FD->getName();
11875   }
11876 
11877   void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11878     const RecordDecl *RD = QT->castAs<RecordType>()->getDecl();
11879     if (RD->isUnion()) {
11880       if (OrigLoc.isValid()) {
11881         bool IsUnion = false;
11882         if (auto *OrigRD = OrigTy->getAsRecordDecl())
11883           IsUnion = OrigRD->isUnion();
11884         S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context)
11885             << 1 << OrigTy << IsUnion << UseContext;
11886         // Reset OrigLoc so that this diagnostic is emitted only once.
11887         OrigLoc = SourceLocation();
11888       }
11889       InNonTrivialUnion = true;
11890     }
11891 
11892     if (InNonTrivialUnion)
11893       S.Diag(RD->getLocation(), diag::note_non_trivial_c_union)
11894           << 0 << 1 << QT.getUnqualifiedType() << "";
11895 
11896     for (const FieldDecl *FD : RD->fields())
11897       if (!shouldIgnoreForRecordTriviality(FD))
11898         asDerived().visit(FD->getType(), FD, InNonTrivialUnion);
11899   }
11900 
11901   void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {}
11902   void visitCXXDestructor(QualType QT, const FieldDecl *FD,
11903                           bool InNonTrivialUnion) {}
11904 
11905   // The non-trivial C union type or the struct/union type that contains a
11906   // non-trivial C union.
11907   QualType OrigTy;
11908   SourceLocation OrigLoc;
11909   Sema::NonTrivialCUnionContext UseContext;
11910   Sema &S;
11911 };
11912 
11913 struct DiagNonTrivalCUnionCopyVisitor
11914     : CopiedTypeVisitor<DiagNonTrivalCUnionCopyVisitor, false, void> {
11915   using Super = CopiedTypeVisitor<DiagNonTrivalCUnionCopyVisitor, false, void>;
11916 
11917   DiagNonTrivalCUnionCopyVisitor(QualType OrigTy, SourceLocation OrigLoc,
11918                                  Sema::NonTrivialCUnionContext UseContext,
11919                                  Sema &S)
11920       : OrigTy(OrigTy), OrigLoc(OrigLoc), UseContext(UseContext), S(S) {}
11921 
11922   void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType QT,
11923                      const FieldDecl *FD, bool InNonTrivialUnion) {
11924     if (const auto *AT = S.Context.getAsArrayType(QT))
11925       return this->asDerived().visit(S.Context.getBaseElementType(AT), FD,
11926                                      InNonTrivialUnion);
11927     return Super::visitWithKind(PCK, QT, FD, InNonTrivialUnion);
11928   }
11929 
11930   void visitARCStrong(QualType QT, const FieldDecl *FD,
11931                       bool InNonTrivialUnion) {
11932     if (InNonTrivialUnion)
11933       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11934           << 1 << 2 << QT << FD->getName();
11935   }
11936 
11937   void visitARCWeak(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11938     if (InNonTrivialUnion)
11939       S.Diag(FD->getLocation(), diag::note_non_trivial_c_union)
11940           << 1 << 2 << QT << FD->getName();
11941   }
11942 
11943   void visitStruct(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {
11944     const RecordDecl *RD = QT->castAs<RecordType>()->getDecl();
11945     if (RD->isUnion()) {
11946       if (OrigLoc.isValid()) {
11947         bool IsUnion = false;
11948         if (auto *OrigRD = OrigTy->getAsRecordDecl())
11949           IsUnion = OrigRD->isUnion();
11950         S.Diag(OrigLoc, diag::err_non_trivial_c_union_in_invalid_context)
11951             << 2 << OrigTy << IsUnion << UseContext;
11952         // Reset OrigLoc so that this diagnostic is emitted only once.
11953         OrigLoc = SourceLocation();
11954       }
11955       InNonTrivialUnion = true;
11956     }
11957 
11958     if (InNonTrivialUnion)
11959       S.Diag(RD->getLocation(), diag::note_non_trivial_c_union)
11960           << 0 << 2 << QT.getUnqualifiedType() << "";
11961 
11962     for (const FieldDecl *FD : RD->fields())
11963       if (!shouldIgnoreForRecordTriviality(FD))
11964         asDerived().visit(FD->getType(), FD, InNonTrivialUnion);
11965   }
11966 
11967   void preVisit(QualType::PrimitiveCopyKind PCK, QualType QT,
11968                 const FieldDecl *FD, bool InNonTrivialUnion) {}
11969   void visitTrivial(QualType QT, const FieldDecl *FD, bool InNonTrivialUnion) {}
11970   void visitVolatileTrivial(QualType QT, const FieldDecl *FD,
11971                             bool InNonTrivialUnion) {}
11972 
11973   // The non-trivial C union type or the struct/union type that contains a
11974   // non-trivial C union.
11975   QualType OrigTy;
11976   SourceLocation OrigLoc;
11977   Sema::NonTrivialCUnionContext UseContext;
11978   Sema &S;
11979 };
11980 
11981 } // namespace
11982 
11983 void Sema::checkNonTrivialCUnion(QualType QT, SourceLocation Loc,
11984                                  NonTrivialCUnionContext UseContext,
11985                                  unsigned NonTrivialKind) {
11986   assert((QT.hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
11987           QT.hasNonTrivialToPrimitiveDestructCUnion() ||
11988           QT.hasNonTrivialToPrimitiveCopyCUnion()) &&
11989          "shouldn't be called if type doesn't have a non-trivial C union");
11990 
11991   if ((NonTrivialKind & NTCUK_Init) &&
11992       QT.hasNonTrivialToPrimitiveDefaultInitializeCUnion())
11993     DiagNonTrivalCUnionDefaultInitializeVisitor(QT, Loc, UseContext, *this)
11994         .visit(QT, nullptr, false);
11995   if ((NonTrivialKind & NTCUK_Destruct) &&
11996       QT.hasNonTrivialToPrimitiveDestructCUnion())
11997     DiagNonTrivalCUnionDestructedTypeVisitor(QT, Loc, UseContext, *this)
11998         .visit(QT, nullptr, false);
11999   if ((NonTrivialKind & NTCUK_Copy) && QT.hasNonTrivialToPrimitiveCopyCUnion())
12000     DiagNonTrivalCUnionCopyVisitor(QT, Loc, UseContext, *this)
12001         .visit(QT, nullptr, false);
12002 }
12003 
12004 /// AddInitializerToDecl - Adds the initializer Init to the
12005 /// declaration dcl. If DirectInit is true, this is C++ direct
12006 /// initialization rather than copy initialization.
12007 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init, bool DirectInit) {
12008   // If there is no declaration, there was an error parsing it.  Just ignore
12009   // the initializer.
12010   if (!RealDecl || RealDecl->isInvalidDecl()) {
12011     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
12012     return;
12013   }
12014 
12015   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
12016     // Pure-specifiers are handled in ActOnPureSpecifier.
12017     Diag(Method->getLocation(), diag::err_member_function_initialization)
12018       << Method->getDeclName() << Init->getSourceRange();
12019     Method->setInvalidDecl();
12020     return;
12021   }
12022 
12023   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
12024   if (!VDecl) {
12025     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
12026     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
12027     RealDecl->setInvalidDecl();
12028     return;
12029   }
12030 
12031   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
12032   if (VDecl->getType()->isUndeducedType()) {
12033     // Attempt typo correction early so that the type of the init expression can
12034     // be deduced based on the chosen correction if the original init contains a
12035     // TypoExpr.
12036     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
12037     if (!Res.isUsable()) {
12038       // There are unresolved typos in Init, just drop them.
12039       // FIXME: improve the recovery strategy to preserve the Init.
12040       RealDecl->setInvalidDecl();
12041       return;
12042     }
12043     if (Res.get()->containsErrors()) {
12044       // Invalidate the decl as we don't know the type for recovery-expr yet.
12045       RealDecl->setInvalidDecl();
12046       VDecl->setInit(Res.get());
12047       return;
12048     }
12049     Init = Res.get();
12050 
12051     if (DeduceVariableDeclarationType(VDecl, DirectInit, Init))
12052       return;
12053   }
12054 
12055   // dllimport cannot be used on variable definitions.
12056   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
12057     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
12058     VDecl->setInvalidDecl();
12059     return;
12060   }
12061 
12062   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
12063     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
12064     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
12065     VDecl->setInvalidDecl();
12066     return;
12067   }
12068 
12069   if (!VDecl->getType()->isDependentType()) {
12070     // A definition must end up with a complete type, which means it must be
12071     // complete with the restriction that an array type might be completed by
12072     // the initializer; note that later code assumes this restriction.
12073     QualType BaseDeclType = VDecl->getType();
12074     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
12075       BaseDeclType = Array->getElementType();
12076     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
12077                             diag::err_typecheck_decl_incomplete_type)) {
12078       RealDecl->setInvalidDecl();
12079       return;
12080     }
12081 
12082     // The variable can not have an abstract class type.
12083     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
12084                                diag::err_abstract_type_in_decl,
12085                                AbstractVariableType))
12086       VDecl->setInvalidDecl();
12087   }
12088 
12089   // If adding the initializer will turn this declaration into a definition,
12090   // and we already have a definition for this variable, diagnose or otherwise
12091   // handle the situation.
12092   VarDecl *Def;
12093   if ((Def = VDecl->getDefinition()) && Def != VDecl &&
12094       (!VDecl->isStaticDataMember() || VDecl->isOutOfLine()) &&
12095       !VDecl->isThisDeclarationADemotedDefinition() &&
12096       checkVarDeclRedefinition(Def, VDecl))
12097     return;
12098 
12099   if (getLangOpts().CPlusPlus) {
12100     // C++ [class.static.data]p4
12101     //   If a static data member is of const integral or const
12102     //   enumeration type, its declaration in the class definition can
12103     //   specify a constant-initializer which shall be an integral
12104     //   constant expression (5.19). In that case, the member can appear
12105     //   in integral constant expressions. The member shall still be
12106     //   defined in a namespace scope if it is used in the program and the
12107     //   namespace scope definition shall not contain an initializer.
12108     //
12109     // We already performed a redefinition check above, but for static
12110     // data members we also need to check whether there was an in-class
12111     // declaration with an initializer.
12112     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
12113       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
12114           << VDecl->getDeclName();
12115       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
12116            diag::note_previous_initializer)
12117           << 0;
12118       return;
12119     }
12120 
12121     if (VDecl->hasLocalStorage())
12122       setFunctionHasBranchProtectedScope();
12123 
12124     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
12125       VDecl->setInvalidDecl();
12126       return;
12127     }
12128   }
12129 
12130   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
12131   // a kernel function cannot be initialized."
12132   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
12133     Diag(VDecl->getLocation(), diag::err_local_cant_init);
12134     VDecl->setInvalidDecl();
12135     return;
12136   }
12137 
12138   // The LoaderUninitialized attribute acts as a definition (of undef).
12139   if (VDecl->hasAttr<LoaderUninitializedAttr>()) {
12140     Diag(VDecl->getLocation(), diag::err_loader_uninitialized_cant_init);
12141     VDecl->setInvalidDecl();
12142     return;
12143   }
12144 
12145   // Get the decls type and save a reference for later, since
12146   // CheckInitializerTypes may change it.
12147   QualType DclT = VDecl->getType(), SavT = DclT;
12148 
12149   // Expressions default to 'id' when we're in a debugger
12150   // and we are assigning it to a variable of Objective-C pointer type.
12151   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
12152       Init->getType() == Context.UnknownAnyTy) {
12153     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
12154     if (Result.isInvalid()) {
12155       VDecl->setInvalidDecl();
12156       return;
12157     }
12158     Init = Result.get();
12159   }
12160 
12161   // Perform the initialization.
12162   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
12163   if (!VDecl->isInvalidDecl()) {
12164     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
12165     InitializationKind Kind = InitializationKind::CreateForInit(
12166         VDecl->getLocation(), DirectInit, Init);
12167 
12168     MultiExprArg Args = Init;
12169     if (CXXDirectInit)
12170       Args = MultiExprArg(CXXDirectInit->getExprs(),
12171                           CXXDirectInit->getNumExprs());
12172 
12173     // Try to correct any TypoExprs in the initialization arguments.
12174     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
12175       ExprResult Res = CorrectDelayedTyposInExpr(
12176           Args[Idx], VDecl, /*RecoverUncorrectedTypos=*/true,
12177           [this, Entity, Kind](Expr *E) {
12178             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
12179             return Init.Failed() ? ExprError() : E;
12180           });
12181       if (Res.isInvalid()) {
12182         VDecl->setInvalidDecl();
12183       } else if (Res.get() != Args[Idx]) {
12184         Args[Idx] = Res.get();
12185       }
12186     }
12187     if (VDecl->isInvalidDecl())
12188       return;
12189 
12190     InitializationSequence InitSeq(*this, Entity, Kind, Args,
12191                                    /*TopLevelOfInitList=*/false,
12192                                    /*TreatUnavailableAsInvalid=*/false);
12193     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
12194     if (Result.isInvalid()) {
12195       // If the provied initializer fails to initialize the var decl,
12196       // we attach a recovery expr for better recovery.
12197       auto RecoveryExpr =
12198           CreateRecoveryExpr(Init->getBeginLoc(), Init->getEndLoc(), Args);
12199       if (RecoveryExpr.get())
12200         VDecl->setInit(RecoveryExpr.get());
12201       return;
12202     }
12203 
12204     Init = Result.getAs<Expr>();
12205   }
12206 
12207   // Check for self-references within variable initializers.
12208   // Variables declared within a function/method body (except for references)
12209   // are handled by a dataflow analysis.
12210   // This is undefined behavior in C++, but valid in C.
12211   if (getLangOpts().CPlusPlus) {
12212     if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
12213         VDecl->getType()->isReferenceType()) {
12214       CheckSelfReference(*this, RealDecl, Init, DirectInit);
12215     }
12216   }
12217 
12218   // If the type changed, it means we had an incomplete type that was
12219   // completed by the initializer. For example:
12220   //   int ary[] = { 1, 3, 5 };
12221   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
12222   if (!VDecl->isInvalidDecl() && (DclT != SavT))
12223     VDecl->setType(DclT);
12224 
12225   if (!VDecl->isInvalidDecl()) {
12226     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
12227 
12228     if (VDecl->hasAttr<BlocksAttr>())
12229       checkRetainCycles(VDecl, Init);
12230 
12231     // It is safe to assign a weak reference into a strong variable.
12232     // Although this code can still have problems:
12233     //   id x = self.weakProp;
12234     //   id y = self.weakProp;
12235     // we do not warn to warn spuriously when 'x' and 'y' are on separate
12236     // paths through the function. This should be revisited if
12237     // -Wrepeated-use-of-weak is made flow-sensitive.
12238     if (FunctionScopeInfo *FSI = getCurFunction())
12239       if ((VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong ||
12240            VDecl->getType().isNonWeakInMRRWithObjCWeak(Context)) &&
12241           !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
12242                            Init->getBeginLoc()))
12243         FSI->markSafeWeakUse(Init);
12244   }
12245 
12246   // The initialization is usually a full-expression.
12247   //
12248   // FIXME: If this is a braced initialization of an aggregate, it is not
12249   // an expression, and each individual field initializer is a separate
12250   // full-expression. For instance, in:
12251   //
12252   //   struct Temp { ~Temp(); };
12253   //   struct S { S(Temp); };
12254   //   struct T { S a, b; } t = { Temp(), Temp() }
12255   //
12256   // we should destroy the first Temp before constructing the second.
12257   ExprResult Result =
12258       ActOnFinishFullExpr(Init, VDecl->getLocation(),
12259                           /*DiscardedValue*/ false, VDecl->isConstexpr());
12260   if (Result.isInvalid()) {
12261     VDecl->setInvalidDecl();
12262     return;
12263   }
12264   Init = Result.get();
12265 
12266   // Attach the initializer to the decl.
12267   VDecl->setInit(Init);
12268 
12269   if (VDecl->isLocalVarDecl()) {
12270     // Don't check the initializer if the declaration is malformed.
12271     if (VDecl->isInvalidDecl()) {
12272       // do nothing
12273 
12274     // OpenCL v1.2 s6.5.3: __constant locals must be constant-initialized.
12275     // This is true even in C++ for OpenCL.
12276     } else if (VDecl->getType().getAddressSpace() == LangAS::opencl_constant) {
12277       CheckForConstantInitializer(Init, DclT);
12278 
12279     // Otherwise, C++ does not restrict the initializer.
12280     } else if (getLangOpts().CPlusPlus) {
12281       // do nothing
12282 
12283     // C99 6.7.8p4: All the expressions in an initializer for an object that has
12284     // static storage duration shall be constant expressions or string literals.
12285     } else if (VDecl->getStorageClass() == SC_Static) {
12286       CheckForConstantInitializer(Init, DclT);
12287 
12288     // C89 is stricter than C99 for aggregate initializers.
12289     // C89 6.5.7p3: All the expressions [...] in an initializer list
12290     // for an object that has aggregate or union type shall be
12291     // constant expressions.
12292     } else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
12293                isa<InitListExpr>(Init)) {
12294       const Expr *Culprit;
12295       if (!Init->isConstantInitializer(Context, false, &Culprit)) {
12296         Diag(Culprit->getExprLoc(),
12297              diag::ext_aggregate_init_not_constant)
12298           << Culprit->getSourceRange();
12299       }
12300     }
12301 
12302     if (auto *E = dyn_cast<ExprWithCleanups>(Init))
12303       if (auto *BE = dyn_cast<BlockExpr>(E->getSubExpr()->IgnoreParens()))
12304         if (VDecl->hasLocalStorage())
12305           BE->getBlockDecl()->setCanAvoidCopyToHeap();
12306   } else if (VDecl->isStaticDataMember() && !VDecl->isInline() &&
12307              VDecl->getLexicalDeclContext()->isRecord()) {
12308     // This is an in-class initialization for a static data member, e.g.,
12309     //
12310     // struct S {
12311     //   static const int value = 17;
12312     // };
12313 
12314     // C++ [class.mem]p4:
12315     //   A member-declarator can contain a constant-initializer only
12316     //   if it declares a static member (9.4) of const integral or
12317     //   const enumeration type, see 9.4.2.
12318     //
12319     // C++11 [class.static.data]p3:
12320     //   If a non-volatile non-inline const static data member is of integral
12321     //   or enumeration type, its declaration in the class definition can
12322     //   specify a brace-or-equal-initializer in which every initializer-clause
12323     //   that is an assignment-expression is a constant expression. A static
12324     //   data member of literal type can be declared in the class definition
12325     //   with the constexpr specifier; if so, its declaration shall specify a
12326     //   brace-or-equal-initializer in which every initializer-clause that is
12327     //   an assignment-expression is a constant expression.
12328 
12329     // Do nothing on dependent types.
12330     if (DclT->isDependentType()) {
12331 
12332     // Allow any 'static constexpr' members, whether or not they are of literal
12333     // type. We separately check that every constexpr variable is of literal
12334     // type.
12335     } else if (VDecl->isConstexpr()) {
12336 
12337     // Require constness.
12338     } else if (!DclT.isConstQualified()) {
12339       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
12340         << Init->getSourceRange();
12341       VDecl->setInvalidDecl();
12342 
12343     // We allow integer constant expressions in all cases.
12344     } else if (DclT->isIntegralOrEnumerationType()) {
12345       // Check whether the expression is a constant expression.
12346       SourceLocation Loc;
12347       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
12348         // In C++11, a non-constexpr const static data member with an
12349         // in-class initializer cannot be volatile.
12350         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
12351       else if (Init->isValueDependent())
12352         ; // Nothing to check.
12353       else if (Init->isIntegerConstantExpr(Context, &Loc))
12354         ; // Ok, it's an ICE!
12355       else if (Init->getType()->isScopedEnumeralType() &&
12356                Init->isCXX11ConstantExpr(Context))
12357         ; // Ok, it is a scoped-enum constant expression.
12358       else if (Init->isEvaluatable(Context)) {
12359         // If we can constant fold the initializer through heroics, accept it,
12360         // but report this as a use of an extension for -pedantic.
12361         Diag(Loc, diag::ext_in_class_initializer_non_constant)
12362           << Init->getSourceRange();
12363       } else {
12364         // Otherwise, this is some crazy unknown case.  Report the issue at the
12365         // location provided by the isIntegerConstantExpr failed check.
12366         Diag(Loc, diag::err_in_class_initializer_non_constant)
12367           << Init->getSourceRange();
12368         VDecl->setInvalidDecl();
12369       }
12370 
12371     // We allow foldable floating-point constants as an extension.
12372     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
12373       // In C++98, this is a GNU extension. In C++11, it is not, but we support
12374       // it anyway and provide a fixit to add the 'constexpr'.
12375       if (getLangOpts().CPlusPlus11) {
12376         Diag(VDecl->getLocation(),
12377              diag::ext_in_class_initializer_float_type_cxx11)
12378             << DclT << Init->getSourceRange();
12379         Diag(VDecl->getBeginLoc(),
12380              diag::note_in_class_initializer_float_type_cxx11)
12381             << FixItHint::CreateInsertion(VDecl->getBeginLoc(), "constexpr ");
12382       } else {
12383         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
12384           << DclT << Init->getSourceRange();
12385 
12386         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
12387           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
12388             << Init->getSourceRange();
12389           VDecl->setInvalidDecl();
12390         }
12391       }
12392 
12393     // Suggest adding 'constexpr' in C++11 for literal types.
12394     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
12395       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
12396           << DclT << Init->getSourceRange()
12397           << FixItHint::CreateInsertion(VDecl->getBeginLoc(), "constexpr ");
12398       VDecl->setConstexpr(true);
12399 
12400     } else {
12401       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
12402         << DclT << Init->getSourceRange();
12403       VDecl->setInvalidDecl();
12404     }
12405   } else if (VDecl->isFileVarDecl()) {
12406     // In C, extern is typically used to avoid tentative definitions when
12407     // declaring variables in headers, but adding an intializer makes it a
12408     // definition. This is somewhat confusing, so GCC and Clang both warn on it.
12409     // In C++, extern is often used to give implictly static const variables
12410     // external linkage, so don't warn in that case. If selectany is present,
12411     // this might be header code intended for C and C++ inclusion, so apply the
12412     // C++ rules.
12413     if (VDecl->getStorageClass() == SC_Extern &&
12414         ((!getLangOpts().CPlusPlus && !VDecl->hasAttr<SelectAnyAttr>()) ||
12415          !Context.getBaseElementType(VDecl->getType()).isConstQualified()) &&
12416         !(getLangOpts().CPlusPlus && VDecl->isExternC()) &&
12417         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
12418       Diag(VDecl->getLocation(), diag::warn_extern_init);
12419 
12420     // In Microsoft C++ mode, a const variable defined in namespace scope has
12421     // external linkage by default if the variable is declared with
12422     // __declspec(dllexport).
12423     if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
12424         getLangOpts().CPlusPlus && VDecl->getType().isConstQualified() &&
12425         VDecl->hasAttr<DLLExportAttr>() && VDecl->getDefinition())
12426       VDecl->setStorageClass(SC_Extern);
12427 
12428     // C99 6.7.8p4. All file scoped initializers need to be constant.
12429     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
12430       CheckForConstantInitializer(Init, DclT);
12431   }
12432 
12433   QualType InitType = Init->getType();
12434   if (!InitType.isNull() &&
12435       (InitType.hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
12436        InitType.hasNonTrivialToPrimitiveCopyCUnion()))
12437     checkNonTrivialCUnionInInitializer(Init, Init->getExprLoc());
12438 
12439   // We will represent direct-initialization similarly to copy-initialization:
12440   //    int x(1);  -as-> int x = 1;
12441   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
12442   //
12443   // Clients that want to distinguish between the two forms, can check for
12444   // direct initializer using VarDecl::getInitStyle().
12445   // A major benefit is that clients that don't particularly care about which
12446   // exactly form was it (like the CodeGen) can handle both cases without
12447   // special case code.
12448 
12449   // C++ 8.5p11:
12450   // The form of initialization (using parentheses or '=') is generally
12451   // insignificant, but does matter when the entity being initialized has a
12452   // class type.
12453   if (CXXDirectInit) {
12454     assert(DirectInit && "Call-style initializer must be direct init.");
12455     VDecl->setInitStyle(VarDecl::CallInit);
12456   } else if (DirectInit) {
12457     // This must be list-initialization. No other way is direct-initialization.
12458     VDecl->setInitStyle(VarDecl::ListInit);
12459   }
12460 
12461   if (LangOpts.OpenMP && VDecl->isFileVarDecl())
12462     DeclsToCheckForDeferredDiags.push_back(VDecl);
12463   CheckCompleteVariableDeclaration(VDecl);
12464 }
12465 
12466 /// ActOnInitializerError - Given that there was an error parsing an
12467 /// initializer for the given declaration, try to return to some form
12468 /// of sanity.
12469 void Sema::ActOnInitializerError(Decl *D) {
12470   // Our main concern here is re-establishing invariants like "a
12471   // variable's type is either dependent or complete".
12472   if (!D || D->isInvalidDecl()) return;
12473 
12474   VarDecl *VD = dyn_cast<VarDecl>(D);
12475   if (!VD) return;
12476 
12477   // Bindings are not usable if we can't make sense of the initializer.
12478   if (auto *DD = dyn_cast<DecompositionDecl>(D))
12479     for (auto *BD : DD->bindings())
12480       BD->setInvalidDecl();
12481 
12482   // Auto types are meaningless if we can't make sense of the initializer.
12483   if (VD->getType()->isUndeducedType()) {
12484     D->setInvalidDecl();
12485     return;
12486   }
12487 
12488   QualType Ty = VD->getType();
12489   if (Ty->isDependentType()) return;
12490 
12491   // Require a complete type.
12492   if (RequireCompleteType(VD->getLocation(),
12493                           Context.getBaseElementType(Ty),
12494                           diag::err_typecheck_decl_incomplete_type)) {
12495     VD->setInvalidDecl();
12496     return;
12497   }
12498 
12499   // Require a non-abstract type.
12500   if (RequireNonAbstractType(VD->getLocation(), Ty,
12501                              diag::err_abstract_type_in_decl,
12502                              AbstractVariableType)) {
12503     VD->setInvalidDecl();
12504     return;
12505   }
12506 
12507   // Don't bother complaining about constructors or destructors,
12508   // though.
12509 }
12510 
12511 void Sema::ActOnUninitializedDecl(Decl *RealDecl) {
12512   // If there is no declaration, there was an error parsing it. Just ignore it.
12513   if (!RealDecl)
12514     return;
12515 
12516   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
12517     QualType Type = Var->getType();
12518 
12519     // C++1z [dcl.dcl]p1 grammar implies that an initializer is mandatory.
12520     if (isa<DecompositionDecl>(RealDecl)) {
12521       Diag(Var->getLocation(), diag::err_decomp_decl_requires_init) << Var;
12522       Var->setInvalidDecl();
12523       return;
12524     }
12525 
12526     if (Type->isUndeducedType() &&
12527         DeduceVariableDeclarationType(Var, false, nullptr))
12528       return;
12529 
12530     // C++11 [class.static.data]p3: A static data member can be declared with
12531     // the constexpr specifier; if so, its declaration shall specify
12532     // a brace-or-equal-initializer.
12533     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
12534     // the definition of a variable [...] or the declaration of a static data
12535     // member.
12536     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition() &&
12537         !Var->isThisDeclarationADemotedDefinition()) {
12538       if (Var->isStaticDataMember()) {
12539         // C++1z removes the relevant rule; the in-class declaration is always
12540         // a definition there.
12541         if (!getLangOpts().CPlusPlus17 &&
12542             !Context.getTargetInfo().getCXXABI().isMicrosoft()) {
12543           Diag(Var->getLocation(),
12544                diag::err_constexpr_static_mem_var_requires_init)
12545               << Var;
12546           Var->setInvalidDecl();
12547           return;
12548         }
12549       } else {
12550         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
12551         Var->setInvalidDecl();
12552         return;
12553       }
12554     }
12555 
12556     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
12557     // be initialized.
12558     if (!Var->isInvalidDecl() &&
12559         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
12560         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
12561       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
12562       Var->setInvalidDecl();
12563       return;
12564     }
12565 
12566     if (!Var->isInvalidDecl() && RealDecl->hasAttr<LoaderUninitializedAttr>()) {
12567       if (Var->getStorageClass() == SC_Extern) {
12568         Diag(Var->getLocation(), diag::err_loader_uninitialized_extern_decl)
12569             << Var;
12570         Var->setInvalidDecl();
12571         return;
12572       }
12573       if (RequireCompleteType(Var->getLocation(), Var->getType(),
12574                               diag::err_typecheck_decl_incomplete_type)) {
12575         Var->setInvalidDecl();
12576         return;
12577       }
12578       if (CXXRecordDecl *RD = Var->getType()->getAsCXXRecordDecl()) {
12579         if (!RD->hasTrivialDefaultConstructor()) {
12580           Diag(Var->getLocation(), diag::err_loader_uninitialized_trivial_ctor);
12581           Var->setInvalidDecl();
12582           return;
12583         }
12584       }
12585     }
12586 
12587     VarDecl::DefinitionKind DefKind = Var->isThisDeclarationADefinition();
12588     if (!Var->isInvalidDecl() && DefKind != VarDecl::DeclarationOnly &&
12589         Var->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion())
12590       checkNonTrivialCUnion(Var->getType(), Var->getLocation(),
12591                             NTCUC_DefaultInitializedObject, NTCUK_Init);
12592 
12593 
12594     switch (DefKind) {
12595     case VarDecl::Definition:
12596       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
12597         break;
12598 
12599       // We have an out-of-line definition of a static data member
12600       // that has an in-class initializer, so we type-check this like
12601       // a declaration.
12602       //
12603       LLVM_FALLTHROUGH;
12604 
12605     case VarDecl::DeclarationOnly:
12606       // It's only a declaration.
12607 
12608       // Block scope. C99 6.7p7: If an identifier for an object is
12609       // declared with no linkage (C99 6.2.2p6), the type for the
12610       // object shall be complete.
12611       if (!Type->isDependentType() && Var->isLocalVarDecl() &&
12612           !Var->hasLinkage() && !Var->isInvalidDecl() &&
12613           RequireCompleteType(Var->getLocation(), Type,
12614                               diag::err_typecheck_decl_incomplete_type))
12615         Var->setInvalidDecl();
12616 
12617       // Make sure that the type is not abstract.
12618       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
12619           RequireNonAbstractType(Var->getLocation(), Type,
12620                                  diag::err_abstract_type_in_decl,
12621                                  AbstractVariableType))
12622         Var->setInvalidDecl();
12623       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
12624           Var->getStorageClass() == SC_PrivateExtern) {
12625         Diag(Var->getLocation(), diag::warn_private_extern);
12626         Diag(Var->getLocation(), diag::note_private_extern);
12627       }
12628 
12629       if (Context.getTargetInfo().allowDebugInfoForExternalVar() &&
12630           !Var->isInvalidDecl() && !getLangOpts().CPlusPlus)
12631         ExternalDeclarations.push_back(Var);
12632 
12633       return;
12634 
12635     case VarDecl::TentativeDefinition:
12636       // File scope. C99 6.9.2p2: A declaration of an identifier for an
12637       // object that has file scope without an initializer, and without a
12638       // storage-class specifier or with the storage-class specifier "static",
12639       // constitutes a tentative definition. Note: A tentative definition with
12640       // external linkage is valid (C99 6.2.2p5).
12641       if (!Var->isInvalidDecl()) {
12642         if (const IncompleteArrayType *ArrayT
12643                                     = Context.getAsIncompleteArrayType(Type)) {
12644           if (RequireCompleteSizedType(
12645                   Var->getLocation(), ArrayT->getElementType(),
12646                   diag::err_array_incomplete_or_sizeless_type))
12647             Var->setInvalidDecl();
12648         } else if (Var->getStorageClass() == SC_Static) {
12649           // C99 6.9.2p3: If the declaration of an identifier for an object is
12650           // a tentative definition and has internal linkage (C99 6.2.2p3), the
12651           // declared type shall not be an incomplete type.
12652           // NOTE: code such as the following
12653           //     static struct s;
12654           //     struct s { int a; };
12655           // is accepted by gcc. Hence here we issue a warning instead of
12656           // an error and we do not invalidate the static declaration.
12657           // NOTE: to avoid multiple warnings, only check the first declaration.
12658           if (Var->isFirstDecl())
12659             RequireCompleteType(Var->getLocation(), Type,
12660                                 diag::ext_typecheck_decl_incomplete_type);
12661         }
12662       }
12663 
12664       // Record the tentative definition; we're done.
12665       if (!Var->isInvalidDecl())
12666         TentativeDefinitions.push_back(Var);
12667       return;
12668     }
12669 
12670     // Provide a specific diagnostic for uninitialized variable
12671     // definitions with incomplete array type.
12672     if (Type->isIncompleteArrayType()) {
12673       Diag(Var->getLocation(),
12674            diag::err_typecheck_incomplete_array_needs_initializer);
12675       Var->setInvalidDecl();
12676       return;
12677     }
12678 
12679     // Provide a specific diagnostic for uninitialized variable
12680     // definitions with reference type.
12681     if (Type->isReferenceType()) {
12682       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
12683           << Var << SourceRange(Var->getLocation(), Var->getLocation());
12684       Var->setInvalidDecl();
12685       return;
12686     }
12687 
12688     // Do not attempt to type-check the default initializer for a
12689     // variable with dependent type.
12690     if (Type->isDependentType())
12691       return;
12692 
12693     if (Var->isInvalidDecl())
12694       return;
12695 
12696     if (!Var->hasAttr<AliasAttr>()) {
12697       if (RequireCompleteType(Var->getLocation(),
12698                               Context.getBaseElementType(Type),
12699                               diag::err_typecheck_decl_incomplete_type)) {
12700         Var->setInvalidDecl();
12701         return;
12702       }
12703     } else {
12704       return;
12705     }
12706 
12707     // The variable can not have an abstract class type.
12708     if (RequireNonAbstractType(Var->getLocation(), Type,
12709                                diag::err_abstract_type_in_decl,
12710                                AbstractVariableType)) {
12711       Var->setInvalidDecl();
12712       return;
12713     }
12714 
12715     // Check for jumps past the implicit initializer.  C++0x
12716     // clarifies that this applies to a "variable with automatic
12717     // storage duration", not a "local variable".
12718     // C++11 [stmt.dcl]p3
12719     //   A program that jumps from a point where a variable with automatic
12720     //   storage duration is not in scope to a point where it is in scope is
12721     //   ill-formed unless the variable has scalar type, class type with a
12722     //   trivial default constructor and a trivial destructor, a cv-qualified
12723     //   version of one of these types, or an array of one of the preceding
12724     //   types and is declared without an initializer.
12725     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
12726       if (const RecordType *Record
12727             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
12728         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
12729         // Mark the function (if we're in one) for further checking even if the
12730         // looser rules of C++11 do not require such checks, so that we can
12731         // diagnose incompatibilities with C++98.
12732         if (!CXXRecord->isPOD())
12733           setFunctionHasBranchProtectedScope();
12734       }
12735     }
12736     // In OpenCL, we can't initialize objects in the __local address space,
12737     // even implicitly, so don't synthesize an implicit initializer.
12738     if (getLangOpts().OpenCL &&
12739         Var->getType().getAddressSpace() == LangAS::opencl_local)
12740       return;
12741     // C++03 [dcl.init]p9:
12742     //   If no initializer is specified for an object, and the
12743     //   object is of (possibly cv-qualified) non-POD class type (or
12744     //   array thereof), the object shall be default-initialized; if
12745     //   the object is of const-qualified type, the underlying class
12746     //   type shall have a user-declared default
12747     //   constructor. Otherwise, if no initializer is specified for
12748     //   a non- static object, the object and its subobjects, if
12749     //   any, have an indeterminate initial value); if the object
12750     //   or any of its subobjects are of const-qualified type, the
12751     //   program is ill-formed.
12752     // C++0x [dcl.init]p11:
12753     //   If no initializer is specified for an object, the object is
12754     //   default-initialized; [...].
12755     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
12756     InitializationKind Kind
12757       = InitializationKind::CreateDefault(Var->getLocation());
12758 
12759     InitializationSequence InitSeq(*this, Entity, Kind, None);
12760     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
12761 
12762     if (Init.get()) {
12763       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
12764       // This is important for template substitution.
12765       Var->setInitStyle(VarDecl::CallInit);
12766     } else if (Init.isInvalid()) {
12767       // If default-init fails, attach a recovery-expr initializer to track
12768       // that initialization was attempted and failed.
12769       auto RecoveryExpr =
12770           CreateRecoveryExpr(Var->getLocation(), Var->getLocation(), {});
12771       if (RecoveryExpr.get())
12772         Var->setInit(RecoveryExpr.get());
12773     }
12774 
12775     CheckCompleteVariableDeclaration(Var);
12776   }
12777 }
12778 
12779 void Sema::ActOnCXXForRangeDecl(Decl *D) {
12780   // If there is no declaration, there was an error parsing it. Ignore it.
12781   if (!D)
12782     return;
12783 
12784   VarDecl *VD = dyn_cast<VarDecl>(D);
12785   if (!VD) {
12786     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
12787     D->setInvalidDecl();
12788     return;
12789   }
12790 
12791   VD->setCXXForRangeDecl(true);
12792 
12793   // for-range-declaration cannot be given a storage class specifier.
12794   int Error = -1;
12795   switch (VD->getStorageClass()) {
12796   case SC_None:
12797     break;
12798   case SC_Extern:
12799     Error = 0;
12800     break;
12801   case SC_Static:
12802     Error = 1;
12803     break;
12804   case SC_PrivateExtern:
12805     Error = 2;
12806     break;
12807   case SC_Auto:
12808     Error = 3;
12809     break;
12810   case SC_Register:
12811     Error = 4;
12812     break;
12813   }
12814 
12815   // for-range-declaration cannot be given a storage class specifier con't.
12816   switch (VD->getTSCSpec()) {
12817   case TSCS_thread_local:
12818     Error = 6;
12819     break;
12820   case TSCS___thread:
12821   case TSCS__Thread_local:
12822   case TSCS_unspecified:
12823     break;
12824   }
12825 
12826   if (Error != -1) {
12827     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
12828         << VD << Error;
12829     D->setInvalidDecl();
12830   }
12831 }
12832 
12833 StmtResult
12834 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
12835                                  IdentifierInfo *Ident,
12836                                  ParsedAttributes &Attrs,
12837                                  SourceLocation AttrEnd) {
12838   // C++1y [stmt.iter]p1:
12839   //   A range-based for statement of the form
12840   //      for ( for-range-identifier : for-range-initializer ) statement
12841   //   is equivalent to
12842   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
12843   DeclSpec DS(Attrs.getPool().getFactory());
12844 
12845   const char *PrevSpec;
12846   unsigned DiagID;
12847   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
12848                      getPrintingPolicy());
12849 
12850   Declarator D(DS, DeclaratorContext::ForInit);
12851   D.SetIdentifier(Ident, IdentLoc);
12852   D.takeAttributes(Attrs, AttrEnd);
12853 
12854   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/ false),
12855                 IdentLoc);
12856   Decl *Var = ActOnDeclarator(S, D);
12857   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
12858   FinalizeDeclaration(Var);
12859   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
12860                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
12861 }
12862 
12863 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
12864   if (var->isInvalidDecl()) return;
12865 
12866   if (getLangOpts().OpenCL) {
12867     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
12868     // initialiser
12869     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
12870         !var->hasInit()) {
12871       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
12872           << 1 /*Init*/;
12873       var->setInvalidDecl();
12874       return;
12875     }
12876   }
12877 
12878   // In Objective-C, don't allow jumps past the implicit initialization of a
12879   // local retaining variable.
12880   if (getLangOpts().ObjC &&
12881       var->hasLocalStorage()) {
12882     switch (var->getType().getObjCLifetime()) {
12883     case Qualifiers::OCL_None:
12884     case Qualifiers::OCL_ExplicitNone:
12885     case Qualifiers::OCL_Autoreleasing:
12886       break;
12887 
12888     case Qualifiers::OCL_Weak:
12889     case Qualifiers::OCL_Strong:
12890       setFunctionHasBranchProtectedScope();
12891       break;
12892     }
12893   }
12894 
12895   if (var->hasLocalStorage() &&
12896       var->getType().isDestructedType() == QualType::DK_nontrivial_c_struct)
12897     setFunctionHasBranchProtectedScope();
12898 
12899   // Warn about externally-visible variables being defined without a
12900   // prior declaration.  We only want to do this for global
12901   // declarations, but we also specifically need to avoid doing it for
12902   // class members because the linkage of an anonymous class can
12903   // change if it's later given a typedef name.
12904   if (var->isThisDeclarationADefinition() &&
12905       var->getDeclContext()->getRedeclContext()->isFileContext() &&
12906       var->isExternallyVisible() && var->hasLinkage() &&
12907       !var->isInline() && !var->getDescribedVarTemplate() &&
12908       !isa<VarTemplatePartialSpecializationDecl>(var) &&
12909       !isTemplateInstantiation(var->getTemplateSpecializationKind()) &&
12910       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
12911                                   var->getLocation())) {
12912     // Find a previous declaration that's not a definition.
12913     VarDecl *prev = var->getPreviousDecl();
12914     while (prev && prev->isThisDeclarationADefinition())
12915       prev = prev->getPreviousDecl();
12916 
12917     if (!prev) {
12918       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
12919       Diag(var->getTypeSpecStartLoc(), diag::note_static_for_internal_linkage)
12920           << /* variable */ 0;
12921     }
12922   }
12923 
12924   // Cache the result of checking for constant initialization.
12925   Optional<bool> CacheHasConstInit;
12926   const Expr *CacheCulprit = nullptr;
12927   auto checkConstInit = [&]() mutable {
12928     if (!CacheHasConstInit)
12929       CacheHasConstInit = var->getInit()->isConstantInitializer(
12930             Context, var->getType()->isReferenceType(), &CacheCulprit);
12931     return *CacheHasConstInit;
12932   };
12933 
12934   if (var->getTLSKind() == VarDecl::TLS_Static) {
12935     if (var->getType().isDestructedType()) {
12936       // GNU C++98 edits for __thread, [basic.start.term]p3:
12937       //   The type of an object with thread storage duration shall not
12938       //   have a non-trivial destructor.
12939       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
12940       if (getLangOpts().CPlusPlus11)
12941         Diag(var->getLocation(), diag::note_use_thread_local);
12942     } else if (getLangOpts().CPlusPlus && var->hasInit()) {
12943       if (!checkConstInit()) {
12944         // GNU C++98 edits for __thread, [basic.start.init]p4:
12945         //   An object of thread storage duration shall not require dynamic
12946         //   initialization.
12947         // FIXME: Need strict checking here.
12948         Diag(CacheCulprit->getExprLoc(), diag::err_thread_dynamic_init)
12949           << CacheCulprit->getSourceRange();
12950         if (getLangOpts().CPlusPlus11)
12951           Diag(var->getLocation(), diag::note_use_thread_local);
12952       }
12953     }
12954   }
12955 
12956   // Apply section attributes and pragmas to global variables.
12957   bool GlobalStorage = var->hasGlobalStorage();
12958   if (GlobalStorage && var->isThisDeclarationADefinition() &&
12959       !inTemplateInstantiation()) {
12960     PragmaStack<StringLiteral *> *Stack = nullptr;
12961     int SectionFlags = ASTContext::PSF_Read;
12962     if (var->getType().isConstQualified())
12963       Stack = &ConstSegStack;
12964     else if (!var->getInit()) {
12965       Stack = &BSSSegStack;
12966       SectionFlags |= ASTContext::PSF_Write;
12967     } else {
12968       Stack = &DataSegStack;
12969       SectionFlags |= ASTContext::PSF_Write;
12970     }
12971     if (const SectionAttr *SA = var->getAttr<SectionAttr>()) {
12972       if (SA->getSyntax() == AttributeCommonInfo::AS_Declspec)
12973         SectionFlags |= ASTContext::PSF_Implicit;
12974       UnifySection(SA->getName(), SectionFlags, var);
12975     } else if (Stack->CurrentValue) {
12976       SectionFlags |= ASTContext::PSF_Implicit;
12977       auto SectionName = Stack->CurrentValue->getString();
12978       var->addAttr(SectionAttr::CreateImplicit(
12979           Context, SectionName, Stack->CurrentPragmaLocation,
12980           AttributeCommonInfo::AS_Pragma, SectionAttr::Declspec_allocate));
12981       if (UnifySection(SectionName, SectionFlags, var))
12982         var->dropAttr<SectionAttr>();
12983     }
12984 
12985     // Apply the init_seg attribute if this has an initializer.  If the
12986     // initializer turns out to not be dynamic, we'll end up ignoring this
12987     // attribute.
12988     if (CurInitSeg && var->getInit())
12989       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
12990                                                CurInitSegLoc,
12991                                                AttributeCommonInfo::AS_Pragma));
12992   }
12993 
12994   if (!var->getType()->isStructureType() && var->hasInit() &&
12995       isa<InitListExpr>(var->getInit())) {
12996     const auto *ILE = cast<InitListExpr>(var->getInit());
12997     unsigned NumInits = ILE->getNumInits();
12998     if (NumInits > 2)
12999       for (unsigned I = 0; I < NumInits; ++I) {
13000         const auto *Init = ILE->getInit(I);
13001         if (!Init)
13002           break;
13003         const auto *SL = dyn_cast<StringLiteral>(Init->IgnoreImpCasts());
13004         if (!SL)
13005           break;
13006 
13007         unsigned NumConcat = SL->getNumConcatenated();
13008         // Diagnose missing comma in string array initialization.
13009         // Do not warn when all the elements in the initializer are concatenated
13010         // together. Do not warn for macros too.
13011         if (NumConcat == 2 && !SL->getBeginLoc().isMacroID()) {
13012           bool OnlyOneMissingComma = true;
13013           for (unsigned J = I + 1; J < NumInits; ++J) {
13014             const auto *Init = ILE->getInit(J);
13015             if (!Init)
13016               break;
13017             const auto *SLJ = dyn_cast<StringLiteral>(Init->IgnoreImpCasts());
13018             if (!SLJ || SLJ->getNumConcatenated() > 1) {
13019               OnlyOneMissingComma = false;
13020               break;
13021             }
13022           }
13023 
13024           if (OnlyOneMissingComma) {
13025             SmallVector<FixItHint, 1> Hints;
13026             for (unsigned i = 0; i < NumConcat - 1; ++i)
13027               Hints.push_back(FixItHint::CreateInsertion(
13028                   PP.getLocForEndOfToken(SL->getStrTokenLoc(i)), ","));
13029 
13030             Diag(SL->getStrTokenLoc(1),
13031                  diag::warn_concatenated_literal_array_init)
13032                 << Hints;
13033             Diag(SL->getBeginLoc(),
13034                  diag::note_concatenated_string_literal_silence);
13035           }
13036           // In any case, stop now.
13037           break;
13038         }
13039       }
13040   }
13041 
13042   // All the following checks are C++ only.
13043   if (!getLangOpts().CPlusPlus) {
13044     // If this variable must be emitted, add it as an initializer for the
13045     // current module.
13046     if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
13047       Context.addModuleInitializer(ModuleScopes.back().Module, var);
13048     return;
13049   }
13050 
13051   QualType type = var->getType();
13052 
13053   if (var->hasAttr<BlocksAttr>())
13054     getCurFunction()->addByrefBlockVar(var);
13055 
13056   Expr *Init = var->getInit();
13057   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
13058   QualType baseType = Context.getBaseElementType(type);
13059 
13060   // Check whether the initializer is sufficiently constant.
13061   if (!type->isDependentType() && Init && !Init->isValueDependent() &&
13062       (GlobalStorage || var->isConstexpr() ||
13063        var->mightBeUsableInConstantExpressions(Context))) {
13064     // If this variable might have a constant initializer or might be usable in
13065     // constant expressions, check whether or not it actually is now.  We can't
13066     // do this lazily, because the result might depend on things that change
13067     // later, such as which constexpr functions happen to be defined.
13068     SmallVector<PartialDiagnosticAt, 8> Notes;
13069     bool HasConstInit;
13070     if (!getLangOpts().CPlusPlus11) {
13071       // Prior to C++11, in contexts where a constant initializer is required,
13072       // the set of valid constant initializers is described by syntactic rules
13073       // in [expr.const]p2-6.
13074       // FIXME: Stricter checking for these rules would be useful for constinit /
13075       // -Wglobal-constructors.
13076       HasConstInit = checkConstInit();
13077 
13078       // Compute and cache the constant value, and remember that we have a
13079       // constant initializer.
13080       if (HasConstInit) {
13081         (void)var->checkForConstantInitialization(Notes);
13082         Notes.clear();
13083       } else if (CacheCulprit) {
13084         Notes.emplace_back(CacheCulprit->getExprLoc(),
13085                            PDiag(diag::note_invalid_subexpr_in_const_expr));
13086         Notes.back().second << CacheCulprit->getSourceRange();
13087       }
13088     } else {
13089       // Evaluate the initializer to see if it's a constant initializer.
13090       HasConstInit = var->checkForConstantInitialization(Notes);
13091     }
13092 
13093     if (HasConstInit) {
13094       // FIXME: Consider replacing the initializer with a ConstantExpr.
13095     } else if (var->isConstexpr()) {
13096       SourceLocation DiagLoc = var->getLocation();
13097       // If the note doesn't add any useful information other than a source
13098       // location, fold it into the primary diagnostic.
13099       if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
13100                                    diag::note_invalid_subexpr_in_const_expr) {
13101         DiagLoc = Notes[0].first;
13102         Notes.clear();
13103       }
13104       Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
13105           << var << Init->getSourceRange();
13106       for (unsigned I = 0, N = Notes.size(); I != N; ++I)
13107         Diag(Notes[I].first, Notes[I].second);
13108     } else if (GlobalStorage && var->hasAttr<ConstInitAttr>()) {
13109       auto *Attr = var->getAttr<ConstInitAttr>();
13110       Diag(var->getLocation(), diag::err_require_constant_init_failed)
13111           << Init->getSourceRange();
13112       Diag(Attr->getLocation(), diag::note_declared_required_constant_init_here)
13113           << Attr->getRange() << Attr->isConstinit();
13114       for (auto &it : Notes)
13115         Diag(it.first, it.second);
13116     } else if (IsGlobal &&
13117                !getDiagnostics().isIgnored(diag::warn_global_constructor,
13118                                            var->getLocation())) {
13119       // Warn about globals which don't have a constant initializer.  Don't
13120       // warn about globals with a non-trivial destructor because we already
13121       // warned about them.
13122       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
13123       if (!(RD && !RD->hasTrivialDestructor())) {
13124         // checkConstInit() here permits trivial default initialization even in
13125         // C++11 onwards, where such an initializer is not a constant initializer
13126         // but nonetheless doesn't require a global constructor.
13127         if (!checkConstInit())
13128           Diag(var->getLocation(), diag::warn_global_constructor)
13129               << Init->getSourceRange();
13130       }
13131     }
13132   }
13133 
13134   // Require the destructor.
13135   if (!type->isDependentType())
13136     if (const RecordType *recordType = baseType->getAs<RecordType>())
13137       FinalizeVarWithDestructor(var, recordType);
13138 
13139   // If this variable must be emitted, add it as an initializer for the current
13140   // module.
13141   if (Context.DeclMustBeEmitted(var) && !ModuleScopes.empty())
13142     Context.addModuleInitializer(ModuleScopes.back().Module, var);
13143 
13144   // Build the bindings if this is a structured binding declaration.
13145   if (auto *DD = dyn_cast<DecompositionDecl>(var))
13146     CheckCompleteDecompositionDeclaration(DD);
13147 }
13148 
13149 /// Determines if a variable's alignment is dependent.
13150 static bool hasDependentAlignment(VarDecl *VD) {
13151   if (VD->getType()->isDependentType())
13152     return true;
13153   for (auto *I : VD->specific_attrs<AlignedAttr>())
13154     if (I->isAlignmentDependent())
13155       return true;
13156   return false;
13157 }
13158 
13159 /// Check if VD needs to be dllexport/dllimport due to being in a
13160 /// dllexport/import function.
13161 void Sema::CheckStaticLocalForDllExport(VarDecl *VD) {
13162   assert(VD->isStaticLocal());
13163 
13164   auto *FD = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
13165 
13166   // Find outermost function when VD is in lambda function.
13167   while (FD && !getDLLAttr(FD) &&
13168          !FD->hasAttr<DLLExportStaticLocalAttr>() &&
13169          !FD->hasAttr<DLLImportStaticLocalAttr>()) {
13170     FD = dyn_cast_or_null<FunctionDecl>(FD->getParentFunctionOrMethod());
13171   }
13172 
13173   if (!FD)
13174     return;
13175 
13176   // Static locals inherit dll attributes from their function.
13177   if (Attr *A = getDLLAttr(FD)) {
13178     auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
13179     NewAttr->setInherited(true);
13180     VD->addAttr(NewAttr);
13181   } else if (Attr *A = FD->getAttr<DLLExportStaticLocalAttr>()) {
13182     auto *NewAttr = DLLExportAttr::CreateImplicit(getASTContext(), *A);
13183     NewAttr->setInherited(true);
13184     VD->addAttr(NewAttr);
13185 
13186     // Export this function to enforce exporting this static variable even
13187     // if it is not used in this compilation unit.
13188     if (!FD->hasAttr<DLLExportAttr>())
13189       FD->addAttr(NewAttr);
13190 
13191   } else if (Attr *A = FD->getAttr<DLLImportStaticLocalAttr>()) {
13192     auto *NewAttr = DLLImportAttr::CreateImplicit(getASTContext(), *A);
13193     NewAttr->setInherited(true);
13194     VD->addAttr(NewAttr);
13195   }
13196 }
13197 
13198 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
13199 /// any semantic actions necessary after any initializer has been attached.
13200 void Sema::FinalizeDeclaration(Decl *ThisDecl) {
13201   // Note that we are no longer parsing the initializer for this declaration.
13202   ParsingInitForAutoVars.erase(ThisDecl);
13203 
13204   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
13205   if (!VD)
13206     return;
13207 
13208   // Apply an implicit SectionAttr if '#pragma clang section bss|data|rodata' is active
13209   if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() &&
13210       !inTemplateInstantiation() && !VD->hasAttr<SectionAttr>()) {
13211     if (PragmaClangBSSSection.Valid)
13212       VD->addAttr(PragmaClangBSSSectionAttr::CreateImplicit(
13213           Context, PragmaClangBSSSection.SectionName,
13214           PragmaClangBSSSection.PragmaLocation,
13215           AttributeCommonInfo::AS_Pragma));
13216     if (PragmaClangDataSection.Valid)
13217       VD->addAttr(PragmaClangDataSectionAttr::CreateImplicit(
13218           Context, PragmaClangDataSection.SectionName,
13219           PragmaClangDataSection.PragmaLocation,
13220           AttributeCommonInfo::AS_Pragma));
13221     if (PragmaClangRodataSection.Valid)
13222       VD->addAttr(PragmaClangRodataSectionAttr::CreateImplicit(
13223           Context, PragmaClangRodataSection.SectionName,
13224           PragmaClangRodataSection.PragmaLocation,
13225           AttributeCommonInfo::AS_Pragma));
13226     if (PragmaClangRelroSection.Valid)
13227       VD->addAttr(PragmaClangRelroSectionAttr::CreateImplicit(
13228           Context, PragmaClangRelroSection.SectionName,
13229           PragmaClangRelroSection.PragmaLocation,
13230           AttributeCommonInfo::AS_Pragma));
13231   }
13232 
13233   if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) {
13234     for (auto *BD : DD->bindings()) {
13235       FinalizeDeclaration(BD);
13236     }
13237   }
13238 
13239   checkAttributesAfterMerging(*this, *VD);
13240 
13241   // Perform TLS alignment check here after attributes attached to the variable
13242   // which may affect the alignment have been processed. Only perform the check
13243   // if the target has a maximum TLS alignment (zero means no constraints).
13244   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
13245     // Protect the check so that it's not performed on dependent types and
13246     // dependent alignments (we can't determine the alignment in that case).
13247     if (VD->getTLSKind() && !hasDependentAlignment(VD) &&
13248         !VD->isInvalidDecl()) {
13249       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
13250       if (Context.getDeclAlign(VD) > MaxAlignChars) {
13251         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
13252           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
13253           << (unsigned)MaxAlignChars.getQuantity();
13254       }
13255     }
13256   }
13257 
13258   if (VD->isStaticLocal())
13259     CheckStaticLocalForDllExport(VD);
13260 
13261   // Perform check for initializers of device-side global variables.
13262   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
13263   // 7.5). We must also apply the same checks to all __shared__
13264   // variables whether they are local or not. CUDA also allows
13265   // constant initializers for __constant__ and __device__ variables.
13266   if (getLangOpts().CUDA)
13267     checkAllowedCUDAInitializer(VD);
13268 
13269   // Grab the dllimport or dllexport attribute off of the VarDecl.
13270   const InheritableAttr *DLLAttr = getDLLAttr(VD);
13271 
13272   // Imported static data members cannot be defined out-of-line.
13273   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
13274     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
13275         VD->isThisDeclarationADefinition()) {
13276       // We allow definitions of dllimport class template static data members
13277       // with a warning.
13278       CXXRecordDecl *Context =
13279         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
13280       bool IsClassTemplateMember =
13281           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
13282           Context->getDescribedClassTemplate();
13283 
13284       Diag(VD->getLocation(),
13285            IsClassTemplateMember
13286                ? diag::warn_attribute_dllimport_static_field_definition
13287                : diag::err_attribute_dllimport_static_field_definition);
13288       Diag(IA->getLocation(), diag::note_attribute);
13289       if (!IsClassTemplateMember)
13290         VD->setInvalidDecl();
13291     }
13292   }
13293 
13294   // dllimport/dllexport variables cannot be thread local, their TLS index
13295   // isn't exported with the variable.
13296   if (DLLAttr && VD->getTLSKind()) {
13297     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
13298     if (F && getDLLAttr(F)) {
13299       assert(VD->isStaticLocal());
13300       // But if this is a static local in a dlimport/dllexport function, the
13301       // function will never be inlined, which means the var would never be
13302       // imported, so having it marked import/export is safe.
13303     } else {
13304       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
13305                                                                     << DLLAttr;
13306       VD->setInvalidDecl();
13307     }
13308   }
13309 
13310   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
13311     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
13312       Diag(Attr->getLocation(), diag::warn_attribute_ignored_on_non_definition)
13313           << Attr;
13314       VD->dropAttr<UsedAttr>();
13315     }
13316   }
13317 
13318   const DeclContext *DC = VD->getDeclContext();
13319   // If there's a #pragma GCC visibility in scope, and this isn't a class
13320   // member, set the visibility of this variable.
13321   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
13322     AddPushedVisibilityAttribute(VD);
13323 
13324   // FIXME: Warn on unused var template partial specializations.
13325   if (VD->isFileVarDecl() && !isa<VarTemplatePartialSpecializationDecl>(VD))
13326     MarkUnusedFileScopedDecl(VD);
13327 
13328   // Now we have parsed the initializer and can update the table of magic
13329   // tag values.
13330   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
13331       !VD->getType()->isIntegralOrEnumerationType())
13332     return;
13333 
13334   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
13335     const Expr *MagicValueExpr = VD->getInit();
13336     if (!MagicValueExpr) {
13337       continue;
13338     }
13339     Optional<llvm::APSInt> MagicValueInt;
13340     if (!(MagicValueInt = MagicValueExpr->getIntegerConstantExpr(Context))) {
13341       Diag(I->getRange().getBegin(),
13342            diag::err_type_tag_for_datatype_not_ice)
13343         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
13344       continue;
13345     }
13346     if (MagicValueInt->getActiveBits() > 64) {
13347       Diag(I->getRange().getBegin(),
13348            diag::err_type_tag_for_datatype_too_large)
13349         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
13350       continue;
13351     }
13352     uint64_t MagicValue = MagicValueInt->getZExtValue();
13353     RegisterTypeTagForDatatype(I->getArgumentKind(),
13354                                MagicValue,
13355                                I->getMatchingCType(),
13356                                I->getLayoutCompatible(),
13357                                I->getMustBeNull());
13358   }
13359 }
13360 
13361 static bool hasDeducedAuto(DeclaratorDecl *DD) {
13362   auto *VD = dyn_cast<VarDecl>(DD);
13363   return VD && !VD->getType()->hasAutoForTrailingReturnType();
13364 }
13365 
13366 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
13367                                                    ArrayRef<Decl *> Group) {
13368   SmallVector<Decl*, 8> Decls;
13369 
13370   if (DS.isTypeSpecOwned())
13371     Decls.push_back(DS.getRepAsDecl());
13372 
13373   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
13374   DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr;
13375   bool DiagnosedMultipleDecomps = false;
13376   DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr;
13377   bool DiagnosedNonDeducedAuto = false;
13378 
13379   for (unsigned i = 0, e = Group.size(); i != e; ++i) {
13380     if (Decl *D = Group[i]) {
13381       // For declarators, there are some additional syntactic-ish checks we need
13382       // to perform.
13383       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
13384         if (!FirstDeclaratorInGroup)
13385           FirstDeclaratorInGroup = DD;
13386         if (!FirstDecompDeclaratorInGroup)
13387           FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D);
13388         if (!FirstNonDeducedAutoInGroup && DS.hasAutoTypeSpec() &&
13389             !hasDeducedAuto(DD))
13390           FirstNonDeducedAutoInGroup = DD;
13391 
13392         if (FirstDeclaratorInGroup != DD) {
13393           // A decomposition declaration cannot be combined with any other
13394           // declaration in the same group.
13395           if (FirstDecompDeclaratorInGroup && !DiagnosedMultipleDecomps) {
13396             Diag(FirstDecompDeclaratorInGroup->getLocation(),
13397                  diag::err_decomp_decl_not_alone)
13398                 << FirstDeclaratorInGroup->getSourceRange()
13399                 << DD->getSourceRange();
13400             DiagnosedMultipleDecomps = true;
13401           }
13402 
13403           // A declarator that uses 'auto' in any way other than to declare a
13404           // variable with a deduced type cannot be combined with any other
13405           // declarator in the same group.
13406           if (FirstNonDeducedAutoInGroup && !DiagnosedNonDeducedAuto) {
13407             Diag(FirstNonDeducedAutoInGroup->getLocation(),
13408                  diag::err_auto_non_deduced_not_alone)
13409                 << FirstNonDeducedAutoInGroup->getType()
13410                        ->hasAutoForTrailingReturnType()
13411                 << FirstDeclaratorInGroup->getSourceRange()
13412                 << DD->getSourceRange();
13413             DiagnosedNonDeducedAuto = true;
13414           }
13415         }
13416       }
13417 
13418       Decls.push_back(D);
13419     }
13420   }
13421 
13422   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
13423     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
13424       handleTagNumbering(Tag, S);
13425       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
13426           getLangOpts().CPlusPlus)
13427         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
13428     }
13429   }
13430 
13431   return BuildDeclaratorGroup(Decls);
13432 }
13433 
13434 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
13435 /// group, performing any necessary semantic checking.
13436 Sema::DeclGroupPtrTy
13437 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group) {
13438   // C++14 [dcl.spec.auto]p7: (DR1347)
13439   //   If the type that replaces the placeholder type is not the same in each
13440   //   deduction, the program is ill-formed.
13441   if (Group.size() > 1) {
13442     QualType Deduced;
13443     VarDecl *DeducedDecl = nullptr;
13444     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
13445       VarDecl *D = dyn_cast<VarDecl>(Group[i]);
13446       if (!D || D->isInvalidDecl())
13447         break;
13448       DeducedType *DT = D->getType()->getContainedDeducedType();
13449       if (!DT || DT->getDeducedType().isNull())
13450         continue;
13451       if (Deduced.isNull()) {
13452         Deduced = DT->getDeducedType();
13453         DeducedDecl = D;
13454       } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) {
13455         auto *AT = dyn_cast<AutoType>(DT);
13456         auto Dia = Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
13457                         diag::err_auto_different_deductions)
13458                    << (AT ? (unsigned)AT->getKeyword() : 3) << Deduced
13459                    << DeducedDecl->getDeclName() << DT->getDeducedType()
13460                    << D->getDeclName();
13461         if (DeducedDecl->hasInit())
13462           Dia << DeducedDecl->getInit()->getSourceRange();
13463         if (D->getInit())
13464           Dia << D->getInit()->getSourceRange();
13465         D->setInvalidDecl();
13466         break;
13467       }
13468     }
13469   }
13470 
13471   ActOnDocumentableDecls(Group);
13472 
13473   return DeclGroupPtrTy::make(
13474       DeclGroupRef::Create(Context, Group.data(), Group.size()));
13475 }
13476 
13477 void Sema::ActOnDocumentableDecl(Decl *D) {
13478   ActOnDocumentableDecls(D);
13479 }
13480 
13481 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
13482   // Don't parse the comment if Doxygen diagnostics are ignored.
13483   if (Group.empty() || !Group[0])
13484     return;
13485 
13486   if (Diags.isIgnored(diag::warn_doc_param_not_found,
13487                       Group[0]->getLocation()) &&
13488       Diags.isIgnored(diag::warn_unknown_comment_command_name,
13489                       Group[0]->getLocation()))
13490     return;
13491 
13492   if (Group.size() >= 2) {
13493     // This is a decl group.  Normally it will contain only declarations
13494     // produced from declarator list.  But in case we have any definitions or
13495     // additional declaration references:
13496     //   'typedef struct S {} S;'
13497     //   'typedef struct S *S;'
13498     //   'struct S *pS;'
13499     // FinalizeDeclaratorGroup adds these as separate declarations.
13500     Decl *MaybeTagDecl = Group[0];
13501     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
13502       Group = Group.slice(1);
13503     }
13504   }
13505 
13506   // FIMXE: We assume every Decl in the group is in the same file.
13507   // This is false when preprocessor constructs the group from decls in
13508   // different files (e. g. macros or #include).
13509   Context.attachCommentsToJustParsedDecls(Group, &getPreprocessor());
13510 }
13511 
13512 /// Common checks for a parameter-declaration that should apply to both function
13513 /// parameters and non-type template parameters.
13514 void Sema::CheckFunctionOrTemplateParamDeclarator(Scope *S, Declarator &D) {
13515   // Check that there are no default arguments inside the type of this
13516   // parameter.
13517   if (getLangOpts().CPlusPlus)
13518     CheckExtraCXXDefaultArguments(D);
13519 
13520   // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
13521   if (D.getCXXScopeSpec().isSet()) {
13522     Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
13523       << D.getCXXScopeSpec().getRange();
13524   }
13525 
13526   // [dcl.meaning]p1: An unqualified-id occurring in a declarator-id shall be a
13527   // simple identifier except [...irrelevant cases...].
13528   switch (D.getName().getKind()) {
13529   case UnqualifiedIdKind::IK_Identifier:
13530     break;
13531 
13532   case UnqualifiedIdKind::IK_OperatorFunctionId:
13533   case UnqualifiedIdKind::IK_ConversionFunctionId:
13534   case UnqualifiedIdKind::IK_LiteralOperatorId:
13535   case UnqualifiedIdKind::IK_ConstructorName:
13536   case UnqualifiedIdKind::IK_DestructorName:
13537   case UnqualifiedIdKind::IK_ImplicitSelfParam:
13538   case UnqualifiedIdKind::IK_DeductionGuideName:
13539     Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
13540       << GetNameForDeclarator(D).getName();
13541     break;
13542 
13543   case UnqualifiedIdKind::IK_TemplateId:
13544   case UnqualifiedIdKind::IK_ConstructorTemplateId:
13545     // GetNameForDeclarator would not produce a useful name in this case.
13546     Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name_template_id);
13547     break;
13548   }
13549 }
13550 
13551 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
13552 /// to introduce parameters into function prototype scope.
13553 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
13554   const DeclSpec &DS = D.getDeclSpec();
13555 
13556   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
13557 
13558   // C++03 [dcl.stc]p2 also permits 'auto'.
13559   StorageClass SC = SC_None;
13560   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
13561     SC = SC_Register;
13562     // In C++11, the 'register' storage class specifier is deprecated.
13563     // In C++17, it is not allowed, but we tolerate it as an extension.
13564     if (getLangOpts().CPlusPlus11) {
13565       Diag(DS.getStorageClassSpecLoc(),
13566            getLangOpts().CPlusPlus17 ? diag::ext_register_storage_class
13567                                      : diag::warn_deprecated_register)
13568         << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
13569     }
13570   } else if (getLangOpts().CPlusPlus &&
13571              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
13572     SC = SC_Auto;
13573   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
13574     Diag(DS.getStorageClassSpecLoc(),
13575          diag::err_invalid_storage_class_in_func_decl);
13576     D.getMutableDeclSpec().ClearStorageClassSpecs();
13577   }
13578 
13579   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
13580     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
13581       << DeclSpec::getSpecifierName(TSCS);
13582   if (DS.isInlineSpecified())
13583     Diag(DS.getInlineSpecLoc(), diag::err_inline_non_function)
13584         << getLangOpts().CPlusPlus17;
13585   if (DS.hasConstexprSpecifier())
13586     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
13587         << 0 << static_cast<int>(D.getDeclSpec().getConstexprSpecifier());
13588 
13589   DiagnoseFunctionSpecifiers(DS);
13590 
13591   CheckFunctionOrTemplateParamDeclarator(S, D);
13592 
13593   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13594   QualType parmDeclType = TInfo->getType();
13595 
13596   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
13597   IdentifierInfo *II = D.getIdentifier();
13598   if (II) {
13599     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
13600                    ForVisibleRedeclaration);
13601     LookupName(R, S);
13602     if (R.isSingleResult()) {
13603       NamedDecl *PrevDecl = R.getFoundDecl();
13604       if (PrevDecl->isTemplateParameter()) {
13605         // Maybe we will complain about the shadowed template parameter.
13606         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13607         // Just pretend that we didn't see the previous declaration.
13608         PrevDecl = nullptr;
13609       } else if (S->isDeclScope(PrevDecl)) {
13610         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
13611         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
13612 
13613         // Recover by removing the name
13614         II = nullptr;
13615         D.SetIdentifier(nullptr, D.getIdentifierLoc());
13616         D.setInvalidType(true);
13617       }
13618     }
13619   }
13620 
13621   // Temporarily put parameter variables in the translation unit, not
13622   // the enclosing context.  This prevents them from accidentally
13623   // looking like class members in C++.
13624   ParmVarDecl *New =
13625       CheckParameter(Context.getTranslationUnitDecl(), D.getBeginLoc(),
13626                      D.getIdentifierLoc(), II, parmDeclType, TInfo, SC);
13627 
13628   if (D.isInvalidType())
13629     New->setInvalidDecl();
13630 
13631   assert(S->isFunctionPrototypeScope());
13632   assert(S->getFunctionPrototypeDepth() >= 1);
13633   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
13634                     S->getNextFunctionPrototypeIndex());
13635 
13636   // Add the parameter declaration into this scope.
13637   S->AddDecl(New);
13638   if (II)
13639     IdResolver.AddDecl(New);
13640 
13641   ProcessDeclAttributes(S, New, D);
13642 
13643   if (D.getDeclSpec().isModulePrivateSpecified())
13644     Diag(New->getLocation(), diag::err_module_private_local)
13645         << 1 << New << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
13646         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
13647 
13648   if (New->hasAttr<BlocksAttr>()) {
13649     Diag(New->getLocation(), diag::err_block_on_nonlocal);
13650   }
13651 
13652   if (getLangOpts().OpenCL)
13653     deduceOpenCLAddressSpace(New);
13654 
13655   return New;
13656 }
13657 
13658 /// Synthesizes a variable for a parameter arising from a
13659 /// typedef.
13660 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
13661                                               SourceLocation Loc,
13662                                               QualType T) {
13663   /* FIXME: setting StartLoc == Loc.
13664      Would it be worth to modify callers so as to provide proper source
13665      location for the unnamed parameters, embedding the parameter's type? */
13666   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
13667                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
13668                                            SC_None, nullptr);
13669   Param->setImplicit();
13670   return Param;
13671 }
13672 
13673 void Sema::DiagnoseUnusedParameters(ArrayRef<ParmVarDecl *> Parameters) {
13674   // Don't diagnose unused-parameter errors in template instantiations; we
13675   // will already have done so in the template itself.
13676   if (inTemplateInstantiation())
13677     return;
13678 
13679   for (const ParmVarDecl *Parameter : Parameters) {
13680     if (!Parameter->isReferenced() && Parameter->getDeclName() &&
13681         !Parameter->hasAttr<UnusedAttr>()) {
13682       Diag(Parameter->getLocation(), diag::warn_unused_parameter)
13683         << Parameter->getDeclName();
13684     }
13685   }
13686 }
13687 
13688 void Sema::DiagnoseSizeOfParametersAndReturnValue(
13689     ArrayRef<ParmVarDecl *> Parameters, QualType ReturnTy, NamedDecl *D) {
13690   if (LangOpts.NumLargeByValueCopy == 0) // No check.
13691     return;
13692 
13693   // Warn if the return value is pass-by-value and larger than the specified
13694   // threshold.
13695   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
13696     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
13697     if (Size > LangOpts.NumLargeByValueCopy)
13698       Diag(D->getLocation(), diag::warn_return_value_size) << D << Size;
13699   }
13700 
13701   // Warn if any parameter is pass-by-value and larger than the specified
13702   // threshold.
13703   for (const ParmVarDecl *Parameter : Parameters) {
13704     QualType T = Parameter->getType();
13705     if (T->isDependentType() || !T.isPODType(Context))
13706       continue;
13707     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
13708     if (Size > LangOpts.NumLargeByValueCopy)
13709       Diag(Parameter->getLocation(), diag::warn_parameter_size)
13710           << Parameter << Size;
13711   }
13712 }
13713 
13714 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
13715                                   SourceLocation NameLoc, IdentifierInfo *Name,
13716                                   QualType T, TypeSourceInfo *TSInfo,
13717                                   StorageClass SC) {
13718   // In ARC, infer a lifetime qualifier for appropriate parameter types.
13719   if (getLangOpts().ObjCAutoRefCount &&
13720       T.getObjCLifetime() == Qualifiers::OCL_None &&
13721       T->isObjCLifetimeType()) {
13722 
13723     Qualifiers::ObjCLifetime lifetime;
13724 
13725     // Special cases for arrays:
13726     //   - if it's const, use __unsafe_unretained
13727     //   - otherwise, it's an error
13728     if (T->isArrayType()) {
13729       if (!T.isConstQualified()) {
13730         if (DelayedDiagnostics.shouldDelayDiagnostics())
13731           DelayedDiagnostics.add(
13732               sema::DelayedDiagnostic::makeForbiddenType(
13733               NameLoc, diag::err_arc_array_param_no_ownership, T, false));
13734         else
13735           Diag(NameLoc, diag::err_arc_array_param_no_ownership)
13736               << TSInfo->getTypeLoc().getSourceRange();
13737       }
13738       lifetime = Qualifiers::OCL_ExplicitNone;
13739     } else {
13740       lifetime = T->getObjCARCImplicitLifetime();
13741     }
13742     T = Context.getLifetimeQualifiedType(T, lifetime);
13743   }
13744 
13745   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
13746                                          Context.getAdjustedParameterType(T),
13747                                          TSInfo, SC, nullptr);
13748 
13749   // Make a note if we created a new pack in the scope of a lambda, so that
13750   // we know that references to that pack must also be expanded within the
13751   // lambda scope.
13752   if (New->isParameterPack())
13753     if (auto *LSI = getEnclosingLambda())
13754       LSI->LocalPacks.push_back(New);
13755 
13756   if (New->getType().hasNonTrivialToPrimitiveDestructCUnion() ||
13757       New->getType().hasNonTrivialToPrimitiveCopyCUnion())
13758     checkNonTrivialCUnion(New->getType(), New->getLocation(),
13759                           NTCUC_FunctionParam, NTCUK_Destruct|NTCUK_Copy);
13760 
13761   // Parameters can not be abstract class types.
13762   // For record types, this is done by the AbstractClassUsageDiagnoser once
13763   // the class has been completely parsed.
13764   if (!CurContext->isRecord() &&
13765       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
13766                              AbstractParamType))
13767     New->setInvalidDecl();
13768 
13769   // Parameter declarators cannot be interface types. All ObjC objects are
13770   // passed by reference.
13771   if (T->isObjCObjectType()) {
13772     SourceLocation TypeEndLoc =
13773         getLocForEndOfToken(TSInfo->getTypeLoc().getEndLoc());
13774     Diag(NameLoc,
13775          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
13776       << FixItHint::CreateInsertion(TypeEndLoc, "*");
13777     T = Context.getObjCObjectPointerType(T);
13778     New->setType(T);
13779   }
13780 
13781   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
13782   // duration shall not be qualified by an address-space qualifier."
13783   // Since all parameters have automatic store duration, they can not have
13784   // an address space.
13785   if (T.getAddressSpace() != LangAS::Default &&
13786       // OpenCL allows function arguments declared to be an array of a type
13787       // to be qualified with an address space.
13788       !(getLangOpts().OpenCL &&
13789         (T->isArrayType() || T.getAddressSpace() == LangAS::opencl_private))) {
13790     Diag(NameLoc, diag::err_arg_with_address_space);
13791     New->setInvalidDecl();
13792   }
13793 
13794   // PPC MMA non-pointer types are not allowed as function argument types.
13795   if (Context.getTargetInfo().getTriple().isPPC64() &&
13796       CheckPPCMMAType(New->getOriginalType(), New->getLocation())) {
13797     New->setInvalidDecl();
13798   }
13799 
13800   return New;
13801 }
13802 
13803 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
13804                                            SourceLocation LocAfterDecls) {
13805   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
13806 
13807   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
13808   // for a K&R function.
13809   if (!FTI.hasPrototype) {
13810     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
13811       --i;
13812       if (FTI.Params[i].Param == nullptr) {
13813         SmallString<256> Code;
13814         llvm::raw_svector_ostream(Code)
13815             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
13816         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
13817             << FTI.Params[i].Ident
13818             << FixItHint::CreateInsertion(LocAfterDecls, Code);
13819 
13820         // Implicitly declare the argument as type 'int' for lack of a better
13821         // type.
13822         AttributeFactory attrs;
13823         DeclSpec DS(attrs);
13824         const char* PrevSpec; // unused
13825         unsigned DiagID; // unused
13826         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
13827                            DiagID, Context.getPrintingPolicy());
13828         // Use the identifier location for the type source range.
13829         DS.SetRangeStart(FTI.Params[i].IdentLoc);
13830         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
13831         Declarator ParamD(DS, DeclaratorContext::KNRTypeList);
13832         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
13833         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
13834       }
13835     }
13836   }
13837 }
13838 
13839 Decl *
13840 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
13841                               MultiTemplateParamsArg TemplateParameterLists,
13842                               SkipBodyInfo *SkipBody) {
13843   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
13844   assert(D.isFunctionDeclarator() && "Not a function declarator!");
13845   Scope *ParentScope = FnBodyScope->getParent();
13846 
13847   // Check if we are in an `omp begin/end declare variant` scope. If we are, and
13848   // we define a non-templated function definition, we will create a declaration
13849   // instead (=BaseFD), and emit the definition with a mangled name afterwards.
13850   // The base function declaration will have the equivalent of an `omp declare
13851   // variant` annotation which specifies the mangled definition as a
13852   // specialization function under the OpenMP context defined as part of the
13853   // `omp begin declare variant`.
13854   SmallVector<FunctionDecl *, 4> Bases;
13855   if (LangOpts.OpenMP && isInOpenMPDeclareVariantScope())
13856     ActOnStartOfFunctionDefinitionInOpenMPDeclareVariantScope(
13857         ParentScope, D, TemplateParameterLists, Bases);
13858 
13859   D.setFunctionDefinitionKind(FunctionDefinitionKind::Definition);
13860   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
13861   Decl *Dcl = ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
13862 
13863   if (!Bases.empty())
13864     ActOnFinishedFunctionDefinitionInOpenMPDeclareVariantScope(Dcl, Bases);
13865 
13866   return Dcl;
13867 }
13868 
13869 void Sema::ActOnFinishInlineFunctionDef(FunctionDecl *D) {
13870   Consumer.HandleInlineFunctionDefinition(D);
13871 }
13872 
13873 static bool
13874 ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
13875                                 const FunctionDecl *&PossiblePrototype) {
13876   // Don't warn about invalid declarations.
13877   if (FD->isInvalidDecl())
13878     return false;
13879 
13880   // Or declarations that aren't global.
13881   if (!FD->isGlobal())
13882     return false;
13883 
13884   // Don't warn about C++ member functions.
13885   if (isa<CXXMethodDecl>(FD))
13886     return false;
13887 
13888   // Don't warn about 'main'.
13889   if (isa<TranslationUnitDecl>(FD->getDeclContext()->getRedeclContext()))
13890     if (IdentifierInfo *II = FD->getIdentifier())
13891       if (II->isStr("main") || II->isStr("efi_main"))
13892         return false;
13893 
13894   // Don't warn about inline functions.
13895   if (FD->isInlined())
13896     return false;
13897 
13898   // Don't warn about function templates.
13899   if (FD->getDescribedFunctionTemplate())
13900     return false;
13901 
13902   // Don't warn about function template specializations.
13903   if (FD->isFunctionTemplateSpecialization())
13904     return false;
13905 
13906   // Don't warn for OpenCL kernels.
13907   if (FD->hasAttr<OpenCLKernelAttr>())
13908     return false;
13909 
13910   // Don't warn on explicitly deleted functions.
13911   if (FD->isDeleted())
13912     return false;
13913 
13914   for (const FunctionDecl *Prev = FD->getPreviousDecl();
13915        Prev; Prev = Prev->getPreviousDecl()) {
13916     // Ignore any declarations that occur in function or method
13917     // scope, because they aren't visible from the header.
13918     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
13919       continue;
13920 
13921     PossiblePrototype = Prev;
13922     return Prev->getType()->isFunctionNoProtoType();
13923   }
13924 
13925   return true;
13926 }
13927 
13928 void
13929 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
13930                                    const FunctionDecl *EffectiveDefinition,
13931                                    SkipBodyInfo *SkipBody) {
13932   const FunctionDecl *Definition = EffectiveDefinition;
13933   if (!Definition &&
13934       !FD->isDefined(Definition, /*CheckForPendingFriendDefinition*/ true))
13935     return;
13936 
13937   if (Definition->getFriendObjectKind() != Decl::FOK_None) {
13938     if (FunctionDecl *OrigDef = Definition->getInstantiatedFromMemberFunction()) {
13939       if (FunctionDecl *OrigFD = FD->getInstantiatedFromMemberFunction()) {
13940         // A merged copy of the same function, instantiated as a member of
13941         // the same class, is OK.
13942         if (declaresSameEntity(OrigFD, OrigDef) &&
13943             declaresSameEntity(cast<Decl>(Definition->getLexicalDeclContext()),
13944                                cast<Decl>(FD->getLexicalDeclContext())))
13945           return;
13946       }
13947     }
13948   }
13949 
13950   if (canRedefineFunction(Definition, getLangOpts()))
13951     return;
13952 
13953   // Don't emit an error when this is redefinition of a typo-corrected
13954   // definition.
13955   if (TypoCorrectedFunctionDefinitions.count(Definition))
13956     return;
13957 
13958   // If we don't have a visible definition of the function, and it's inline or
13959   // a template, skip the new definition.
13960   if (SkipBody && !hasVisibleDefinition(Definition) &&
13961       (Definition->getFormalLinkage() == InternalLinkage ||
13962        Definition->isInlined() ||
13963        Definition->getDescribedFunctionTemplate() ||
13964        Definition->getNumTemplateParameterLists())) {
13965     SkipBody->ShouldSkip = true;
13966     SkipBody->Previous = const_cast<FunctionDecl*>(Definition);
13967     if (auto *TD = Definition->getDescribedFunctionTemplate())
13968       makeMergedDefinitionVisible(TD);
13969     makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition));
13970     return;
13971   }
13972 
13973   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
13974       Definition->getStorageClass() == SC_Extern)
13975     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
13976         << FD << getLangOpts().CPlusPlus;
13977   else
13978     Diag(FD->getLocation(), diag::err_redefinition) << FD;
13979 
13980   Diag(Definition->getLocation(), diag::note_previous_definition);
13981   FD->setInvalidDecl();
13982 }
13983 
13984 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
13985                                    Sema &S) {
13986   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
13987 
13988   LambdaScopeInfo *LSI = S.PushLambdaScope();
13989   LSI->CallOperator = CallOperator;
13990   LSI->Lambda = LambdaClass;
13991   LSI->ReturnType = CallOperator->getReturnType();
13992   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
13993 
13994   if (LCD == LCD_None)
13995     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
13996   else if (LCD == LCD_ByCopy)
13997     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
13998   else if (LCD == LCD_ByRef)
13999     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
14000   DeclarationNameInfo DNI = CallOperator->getNameInfo();
14001 
14002   LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
14003   LSI->Mutable = !CallOperator->isConst();
14004 
14005   // Add the captures to the LSI so they can be noted as already
14006   // captured within tryCaptureVar.
14007   auto I = LambdaClass->field_begin();
14008   for (const auto &C : LambdaClass->captures()) {
14009     if (C.capturesVariable()) {
14010       VarDecl *VD = C.getCapturedVar();
14011       if (VD->isInitCapture())
14012         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
14013       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
14014       LSI->addCapture(VD, /*IsBlock*/false, ByRef,
14015           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
14016           /*EllipsisLoc*/C.isPackExpansion()
14017                          ? C.getEllipsisLoc() : SourceLocation(),
14018           I->getType(), /*Invalid*/false);
14019 
14020     } else if (C.capturesThis()) {
14021       LSI->addThisCapture(/*Nested*/ false, C.getLocation(), I->getType(),
14022                           C.getCaptureKind() == LCK_StarThis);
14023     } else {
14024       LSI->addVLATypeCapture(C.getLocation(), I->getCapturedVLAType(),
14025                              I->getType());
14026     }
14027     ++I;
14028   }
14029 }
14030 
14031 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
14032                                     SkipBodyInfo *SkipBody) {
14033   if (!D) {
14034     // Parsing the function declaration failed in some way. Push on a fake scope
14035     // anyway so we can try to parse the function body.
14036     PushFunctionScope();
14037     PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
14038     return D;
14039   }
14040 
14041   FunctionDecl *FD = nullptr;
14042 
14043   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
14044     FD = FunTmpl->getTemplatedDecl();
14045   else
14046     FD = cast<FunctionDecl>(D);
14047 
14048   // Do not push if it is a lambda because one is already pushed when building
14049   // the lambda in ActOnStartOfLambdaDefinition().
14050   if (!isLambdaCallOperator(FD))
14051     PushExpressionEvaluationContext(
14052         FD->isConsteval() ? ExpressionEvaluationContext::ConstantEvaluated
14053                           : ExprEvalContexts.back().Context);
14054 
14055   // Check for defining attributes before the check for redefinition.
14056   if (const auto *Attr = FD->getAttr<AliasAttr>()) {
14057     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 0;
14058     FD->dropAttr<AliasAttr>();
14059     FD->setInvalidDecl();
14060   }
14061   if (const auto *Attr = FD->getAttr<IFuncAttr>()) {
14062     Diag(Attr->getLocation(), diag::err_alias_is_definition) << FD << 1;
14063     FD->dropAttr<IFuncAttr>();
14064     FD->setInvalidDecl();
14065   }
14066 
14067   if (auto *Ctor = dyn_cast<CXXConstructorDecl>(FD)) {
14068     if (Ctor->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
14069         Ctor->isDefaultConstructor() &&
14070         Context.getTargetInfo().getCXXABI().isMicrosoft()) {
14071       // If this is an MS ABI dllexport default constructor, instantiate any
14072       // default arguments.
14073       InstantiateDefaultCtorDefaultArgs(Ctor);
14074     }
14075   }
14076 
14077   // See if this is a redefinition. If 'will have body' (or similar) is already
14078   // set, then these checks were already performed when it was set.
14079   if (!FD->willHaveBody() && !FD->isLateTemplateParsed() &&
14080       !FD->isThisDeclarationInstantiatedFromAFriendDefinition()) {
14081     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
14082 
14083     // If we're skipping the body, we're done. Don't enter the scope.
14084     if (SkipBody && SkipBody->ShouldSkip)
14085       return D;
14086   }
14087 
14088   // Mark this function as "will have a body eventually".  This lets users to
14089   // call e.g. isInlineDefinitionExternallyVisible while we're still parsing
14090   // this function.
14091   FD->setWillHaveBody();
14092 
14093   // If we are instantiating a generic lambda call operator, push
14094   // a LambdaScopeInfo onto the function stack.  But use the information
14095   // that's already been calculated (ActOnLambdaExpr) to prime the current
14096   // LambdaScopeInfo.
14097   // When the template operator is being specialized, the LambdaScopeInfo,
14098   // has to be properly restored so that tryCaptureVariable doesn't try
14099   // and capture any new variables. In addition when calculating potential
14100   // captures during transformation of nested lambdas, it is necessary to
14101   // have the LSI properly restored.
14102   if (isGenericLambdaCallOperatorSpecialization(FD)) {
14103     assert(inTemplateInstantiation() &&
14104            "There should be an active template instantiation on the stack "
14105            "when instantiating a generic lambda!");
14106     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
14107   } else {
14108     // Enter a new function scope
14109     PushFunctionScope();
14110   }
14111 
14112   // Builtin functions cannot be defined.
14113   if (unsigned BuiltinID = FD->getBuiltinID()) {
14114     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
14115         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
14116       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
14117       FD->setInvalidDecl();
14118     }
14119   }
14120 
14121   // The return type of a function definition must be complete
14122   // (C99 6.9.1p3, C++ [dcl.fct]p6).
14123   QualType ResultType = FD->getReturnType();
14124   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
14125       !FD->isInvalidDecl() &&
14126       RequireCompleteType(FD->getLocation(), ResultType,
14127                           diag::err_func_def_incomplete_result))
14128     FD->setInvalidDecl();
14129 
14130   if (FnBodyScope)
14131     PushDeclContext(FnBodyScope, FD);
14132 
14133   // Check the validity of our function parameters
14134   CheckParmsForFunctionDef(FD->parameters(),
14135                            /*CheckParameterNames=*/true);
14136 
14137   // Add non-parameter declarations already in the function to the current
14138   // scope.
14139   if (FnBodyScope) {
14140     for (Decl *NPD : FD->decls()) {
14141       auto *NonParmDecl = dyn_cast<NamedDecl>(NPD);
14142       if (!NonParmDecl)
14143         continue;
14144       assert(!isa<ParmVarDecl>(NonParmDecl) &&
14145              "parameters should not be in newly created FD yet");
14146 
14147       // If the decl has a name, make it accessible in the current scope.
14148       if (NonParmDecl->getDeclName())
14149         PushOnScopeChains(NonParmDecl, FnBodyScope, /*AddToContext=*/false);
14150 
14151       // Similarly, dive into enums and fish their constants out, making them
14152       // accessible in this scope.
14153       if (auto *ED = dyn_cast<EnumDecl>(NonParmDecl)) {
14154         for (auto *EI : ED->enumerators())
14155           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
14156       }
14157     }
14158   }
14159 
14160   // Introduce our parameters into the function scope
14161   for (auto Param : FD->parameters()) {
14162     Param->setOwningFunction(FD);
14163 
14164     // If this has an identifier, add it to the scope stack.
14165     if (Param->getIdentifier() && FnBodyScope) {
14166       CheckShadow(FnBodyScope, Param);
14167 
14168       PushOnScopeChains(Param, FnBodyScope);
14169     }
14170   }
14171 
14172   // Ensure that the function's exception specification is instantiated.
14173   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
14174     ResolveExceptionSpec(D->getLocation(), FPT);
14175 
14176   // dllimport cannot be applied to non-inline function definitions.
14177   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
14178       !FD->isTemplateInstantiation()) {
14179     assert(!FD->hasAttr<DLLExportAttr>());
14180     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
14181     FD->setInvalidDecl();
14182     return D;
14183   }
14184   // We want to attach documentation to original Decl (which might be
14185   // a function template).
14186   ActOnDocumentableDecl(D);
14187   if (getCurLexicalContext()->isObjCContainer() &&
14188       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
14189       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
14190     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
14191 
14192   return D;
14193 }
14194 
14195 /// Given the set of return statements within a function body,
14196 /// compute the variables that are subject to the named return value
14197 /// optimization.
14198 ///
14199 /// Each of the variables that is subject to the named return value
14200 /// optimization will be marked as NRVO variables in the AST, and any
14201 /// return statement that has a marked NRVO variable as its NRVO candidate can
14202 /// use the named return value optimization.
14203 ///
14204 /// This function applies a very simplistic algorithm for NRVO: if every return
14205 /// statement in the scope of a variable has the same NRVO candidate, that
14206 /// candidate is an NRVO variable.
14207 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
14208   ReturnStmt **Returns = Scope->Returns.data();
14209 
14210   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
14211     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
14212       if (!NRVOCandidate->isNRVOVariable())
14213         Returns[I]->setNRVOCandidate(nullptr);
14214     }
14215   }
14216 }
14217 
14218 bool Sema::canDelayFunctionBody(const Declarator &D) {
14219   // We can't delay parsing the body of a constexpr function template (yet).
14220   if (D.getDeclSpec().hasConstexprSpecifier())
14221     return false;
14222 
14223   // We can't delay parsing the body of a function template with a deduced
14224   // return type (yet).
14225   if (D.getDeclSpec().hasAutoTypeSpec()) {
14226     // If the placeholder introduces a non-deduced trailing return type,
14227     // we can still delay parsing it.
14228     if (D.getNumTypeObjects()) {
14229       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
14230       if (Outer.Kind == DeclaratorChunk::Function &&
14231           Outer.Fun.hasTrailingReturnType()) {
14232         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
14233         return Ty.isNull() || !Ty->isUndeducedType();
14234       }
14235     }
14236     return false;
14237   }
14238 
14239   return true;
14240 }
14241 
14242 bool Sema::canSkipFunctionBody(Decl *D) {
14243   // We cannot skip the body of a function (or function template) which is
14244   // constexpr, since we may need to evaluate its body in order to parse the
14245   // rest of the file.
14246   // We cannot skip the body of a function with an undeduced return type,
14247   // because any callers of that function need to know the type.
14248   if (const FunctionDecl *FD = D->getAsFunction()) {
14249     if (FD->isConstexpr())
14250       return false;
14251     // We can't simply call Type::isUndeducedType here, because inside template
14252     // auto can be deduced to a dependent type, which is not considered
14253     // "undeduced".
14254     if (FD->getReturnType()->getContainedDeducedType())
14255       return false;
14256   }
14257   return Consumer.shouldSkipFunctionBody(D);
14258 }
14259 
14260 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
14261   if (!Decl)
14262     return nullptr;
14263   if (FunctionDecl *FD = Decl->getAsFunction())
14264     FD->setHasSkippedBody();
14265   else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(Decl))
14266     MD->setHasSkippedBody();
14267   return Decl;
14268 }
14269 
14270 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
14271   return ActOnFinishFunctionBody(D, BodyArg, false);
14272 }
14273 
14274 /// RAII object that pops an ExpressionEvaluationContext when exiting a function
14275 /// body.
14276 class ExitFunctionBodyRAII {
14277 public:
14278   ExitFunctionBodyRAII(Sema &S, bool IsLambda) : S(S), IsLambda(IsLambda) {}
14279   ~ExitFunctionBodyRAII() {
14280     if (!IsLambda)
14281       S.PopExpressionEvaluationContext();
14282   }
14283 
14284 private:
14285   Sema &S;
14286   bool IsLambda = false;
14287 };
14288 
14289 static void diagnoseImplicitlyRetainedSelf(Sema &S) {
14290   llvm::DenseMap<const BlockDecl *, bool> EscapeInfo;
14291 
14292   auto IsOrNestedInEscapingBlock = [&](const BlockDecl *BD) {
14293     if (EscapeInfo.count(BD))
14294       return EscapeInfo[BD];
14295 
14296     bool R = false;
14297     const BlockDecl *CurBD = BD;
14298 
14299     do {
14300       R = !CurBD->doesNotEscape();
14301       if (R)
14302         break;
14303       CurBD = CurBD->getParent()->getInnermostBlockDecl();
14304     } while (CurBD);
14305 
14306     return EscapeInfo[BD] = R;
14307   };
14308 
14309   // If the location where 'self' is implicitly retained is inside a escaping
14310   // block, emit a diagnostic.
14311   for (const std::pair<SourceLocation, const BlockDecl *> &P :
14312        S.ImplicitlyRetainedSelfLocs)
14313     if (IsOrNestedInEscapingBlock(P.second))
14314       S.Diag(P.first, diag::warn_implicitly_retains_self)
14315           << FixItHint::CreateInsertion(P.first, "self->");
14316 }
14317 
14318 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
14319                                     bool IsInstantiation) {
14320   FunctionScopeInfo *FSI = getCurFunction();
14321   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
14322 
14323   if (FSI->UsesFPIntrin && !FD->hasAttr<StrictFPAttr>())
14324     FD->addAttr(StrictFPAttr::CreateImplicit(Context));
14325 
14326   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
14327   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
14328 
14329   if (getLangOpts().Coroutines && FSI->isCoroutine())
14330     CheckCompletedCoroutineBody(FD, Body);
14331 
14332   // Do not call PopExpressionEvaluationContext() if it is a lambda because one
14333   // is already popped when finishing the lambda in BuildLambdaExpr(). This is
14334   // meant to pop the context added in ActOnStartOfFunctionDef().
14335   ExitFunctionBodyRAII ExitRAII(*this, isLambdaCallOperator(FD));
14336 
14337   if (FD) {
14338     FD->setBody(Body);
14339     FD->setWillHaveBody(false);
14340 
14341     if (getLangOpts().CPlusPlus14) {
14342       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
14343           FD->getReturnType()->isUndeducedType()) {
14344         // If the function has a deduced result type but contains no 'return'
14345         // statements, the result type as written must be exactly 'auto', and
14346         // the deduced result type is 'void'.
14347         if (!FD->getReturnType()->getAs<AutoType>()) {
14348           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
14349               << FD->getReturnType();
14350           FD->setInvalidDecl();
14351         } else {
14352           // Substitute 'void' for the 'auto' in the type.
14353           TypeLoc ResultType = getReturnTypeLoc(FD);
14354           Context.adjustDeducedFunctionResultType(
14355               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
14356         }
14357       }
14358     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
14359       // In C++11, we don't use 'auto' deduction rules for lambda call
14360       // operators because we don't support return type deduction.
14361       auto *LSI = getCurLambda();
14362       if (LSI->HasImplicitReturnType) {
14363         deduceClosureReturnType(*LSI);
14364 
14365         // C++11 [expr.prim.lambda]p4:
14366         //   [...] if there are no return statements in the compound-statement
14367         //   [the deduced type is] the type void
14368         QualType RetType =
14369             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
14370 
14371         // Update the return type to the deduced type.
14372         const auto *Proto = FD->getType()->castAs<FunctionProtoType>();
14373         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
14374                                             Proto->getExtProtoInfo()));
14375       }
14376     }
14377 
14378     // If the function implicitly returns zero (like 'main') or is naked,
14379     // don't complain about missing return statements.
14380     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
14381       WP.disableCheckFallThrough();
14382 
14383     // MSVC permits the use of pure specifier (=0) on function definition,
14384     // defined at class scope, warn about this non-standard construct.
14385     if (getLangOpts().MicrosoftExt && FD->isPure() && !FD->isOutOfLine())
14386       Diag(FD->getLocation(), diag::ext_pure_function_definition);
14387 
14388     if (!FD->isInvalidDecl()) {
14389       // Don't diagnose unused parameters of defaulted or deleted functions.
14390       if (!FD->isDeleted() && !FD->isDefaulted() && !FD->hasSkippedBody())
14391         DiagnoseUnusedParameters(FD->parameters());
14392       DiagnoseSizeOfParametersAndReturnValue(FD->parameters(),
14393                                              FD->getReturnType(), FD);
14394 
14395       // If this is a structor, we need a vtable.
14396       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
14397         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
14398       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
14399         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
14400 
14401       // Try to apply the named return value optimization. We have to check
14402       // if we can do this here because lambdas keep return statements around
14403       // to deduce an implicit return type.
14404       if (FD->getReturnType()->isRecordType() &&
14405           (!getLangOpts().CPlusPlus || !FD->isDependentContext()))
14406         computeNRVO(Body, FSI);
14407     }
14408 
14409     // GNU warning -Wmissing-prototypes:
14410     //   Warn if a global function is defined without a previous
14411     //   prototype declaration. This warning is issued even if the
14412     //   definition itself provides a prototype. The aim is to detect
14413     //   global functions that fail to be declared in header files.
14414     const FunctionDecl *PossiblePrototype = nullptr;
14415     if (ShouldWarnAboutMissingPrototype(FD, PossiblePrototype)) {
14416       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
14417 
14418       if (PossiblePrototype) {
14419         // We found a declaration that is not a prototype,
14420         // but that could be a zero-parameter prototype
14421         if (TypeSourceInfo *TI = PossiblePrototype->getTypeSourceInfo()) {
14422           TypeLoc TL = TI->getTypeLoc();
14423           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
14424             Diag(PossiblePrototype->getLocation(),
14425                  diag::note_declaration_not_a_prototype)
14426                 << (FD->getNumParams() != 0)
14427                 << (FD->getNumParams() == 0
14428                         ? FixItHint::CreateInsertion(FTL.getRParenLoc(), "void")
14429                         : FixItHint{});
14430         }
14431       } else {
14432         // Returns true if the token beginning at this Loc is `const`.
14433         auto isLocAtConst = [&](SourceLocation Loc, const SourceManager &SM,
14434                                 const LangOptions &LangOpts) {
14435           std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
14436           if (LocInfo.first.isInvalid())
14437             return false;
14438 
14439           bool Invalid = false;
14440           StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
14441           if (Invalid)
14442             return false;
14443 
14444           if (LocInfo.second > Buffer.size())
14445             return false;
14446 
14447           const char *LexStart = Buffer.data() + LocInfo.second;
14448           StringRef StartTok(LexStart, Buffer.size() - LocInfo.second);
14449 
14450           return StartTok.consume_front("const") &&
14451                  (StartTok.empty() || isWhitespace(StartTok[0]) ||
14452                   StartTok.startswith("/*") || StartTok.startswith("//"));
14453         };
14454 
14455         auto findBeginLoc = [&]() {
14456           // If the return type has `const` qualifier, we want to insert
14457           // `static` before `const` (and not before the typename).
14458           if ((FD->getReturnType()->isAnyPointerType() &&
14459                FD->getReturnType()->getPointeeType().isConstQualified()) ||
14460               FD->getReturnType().isConstQualified()) {
14461             // But only do this if we can determine where the `const` is.
14462 
14463             if (isLocAtConst(FD->getBeginLoc(), getSourceManager(),
14464                              getLangOpts()))
14465 
14466               return FD->getBeginLoc();
14467           }
14468           return FD->getTypeSpecStartLoc();
14469         };
14470         Diag(FD->getTypeSpecStartLoc(), diag::note_static_for_internal_linkage)
14471             << /* function */ 1
14472             << (FD->getStorageClass() == SC_None
14473                     ? FixItHint::CreateInsertion(findBeginLoc(), "static ")
14474                     : FixItHint{});
14475       }
14476 
14477       // GNU warning -Wstrict-prototypes
14478       //   Warn if K&R function is defined without a previous declaration.
14479       //   This warning is issued only if the definition itself does not provide
14480       //   a prototype. Only K&R definitions do not provide a prototype.
14481       if (!FD->hasWrittenPrototype()) {
14482         TypeSourceInfo *TI = FD->getTypeSourceInfo();
14483         TypeLoc TL = TI->getTypeLoc();
14484         FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>();
14485         Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;
14486       }
14487     }
14488 
14489     // Warn on CPUDispatch with an actual body.
14490     if (FD->isMultiVersion() && FD->hasAttr<CPUDispatchAttr>() && Body)
14491       if (const auto *CmpndBody = dyn_cast<CompoundStmt>(Body))
14492         if (!CmpndBody->body_empty())
14493           Diag(CmpndBody->body_front()->getBeginLoc(),
14494                diag::warn_dispatch_body_ignored);
14495 
14496     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
14497       const CXXMethodDecl *KeyFunction;
14498       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
14499           MD->isVirtual() &&
14500           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
14501           MD == KeyFunction->getCanonicalDecl()) {
14502         // Update the key-function state if necessary for this ABI.
14503         if (FD->isInlined() &&
14504             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
14505           Context.setNonKeyFunction(MD);
14506 
14507           // If the newly-chosen key function is already defined, then we
14508           // need to mark the vtable as used retroactively.
14509           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
14510           const FunctionDecl *Definition;
14511           if (KeyFunction && KeyFunction->isDefined(Definition))
14512             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
14513         } else {
14514           // We just defined they key function; mark the vtable as used.
14515           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
14516         }
14517       }
14518     }
14519 
14520     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
14521            "Function parsing confused");
14522   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
14523     assert(MD == getCurMethodDecl() && "Method parsing confused");
14524     MD->setBody(Body);
14525     if (!MD->isInvalidDecl()) {
14526       DiagnoseSizeOfParametersAndReturnValue(MD->parameters(),
14527                                              MD->getReturnType(), MD);
14528 
14529       if (Body)
14530         computeNRVO(Body, FSI);
14531     }
14532     if (FSI->ObjCShouldCallSuper) {
14533       Diag(MD->getEndLoc(), diag::warn_objc_missing_super_call)
14534           << MD->getSelector().getAsString();
14535       FSI->ObjCShouldCallSuper = false;
14536     }
14537     if (FSI->ObjCWarnForNoDesignatedInitChain) {
14538       const ObjCMethodDecl *InitMethod = nullptr;
14539       bool isDesignated =
14540           MD->isDesignatedInitializerForTheInterface(&InitMethod);
14541       assert(isDesignated && InitMethod);
14542       (void)isDesignated;
14543 
14544       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
14545         auto IFace = MD->getClassInterface();
14546         if (!IFace)
14547           return false;
14548         auto SuperD = IFace->getSuperClass();
14549         if (!SuperD)
14550           return false;
14551         return SuperD->getIdentifier() ==
14552             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
14553       };
14554       // Don't issue this warning for unavailable inits or direct subclasses
14555       // of NSObject.
14556       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
14557         Diag(MD->getLocation(),
14558              diag::warn_objc_designated_init_missing_super_call);
14559         Diag(InitMethod->getLocation(),
14560              diag::note_objc_designated_init_marked_here);
14561       }
14562       FSI->ObjCWarnForNoDesignatedInitChain = false;
14563     }
14564     if (FSI->ObjCWarnForNoInitDelegation) {
14565       // Don't issue this warning for unavaialable inits.
14566       if (!MD->isUnavailable())
14567         Diag(MD->getLocation(),
14568              diag::warn_objc_secondary_init_missing_init_call);
14569       FSI->ObjCWarnForNoInitDelegation = false;
14570     }
14571 
14572     diagnoseImplicitlyRetainedSelf(*this);
14573   } else {
14574     // Parsing the function declaration failed in some way. Pop the fake scope
14575     // we pushed on.
14576     PopFunctionScopeInfo(ActivePolicy, dcl);
14577     return nullptr;
14578   }
14579 
14580   if (Body && FSI->HasPotentialAvailabilityViolations)
14581     DiagnoseUnguardedAvailabilityViolations(dcl);
14582 
14583   assert(!FSI->ObjCShouldCallSuper &&
14584          "This should only be set for ObjC methods, which should have been "
14585          "handled in the block above.");
14586 
14587   // Verify and clean out per-function state.
14588   if (Body && (!FD || !FD->isDefaulted())) {
14589     // C++ constructors that have function-try-blocks can't have return
14590     // statements in the handlers of that block. (C++ [except.handle]p14)
14591     // Verify this.
14592     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
14593       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
14594 
14595     // Verify that gotos and switch cases don't jump into scopes illegally.
14596     if (FSI->NeedsScopeChecking() &&
14597         !PP.isCodeCompletionEnabled())
14598       DiagnoseInvalidJumps(Body);
14599 
14600     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
14601       if (!Destructor->getParent()->isDependentType())
14602         CheckDestructor(Destructor);
14603 
14604       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
14605                                              Destructor->getParent());
14606     }
14607 
14608     // If any errors have occurred, clear out any temporaries that may have
14609     // been leftover. This ensures that these temporaries won't be picked up for
14610     // deletion in some later function.
14611     if (hasUncompilableErrorOccurred() ||
14612         getDiagnostics().getSuppressAllDiagnostics()) {
14613       DiscardCleanupsInEvaluationContext();
14614     }
14615     if (!hasUncompilableErrorOccurred() &&
14616         !isa<FunctionTemplateDecl>(dcl)) {
14617       // Since the body is valid, issue any analysis-based warnings that are
14618       // enabled.
14619       ActivePolicy = &WP;
14620     }
14621 
14622     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
14623         !CheckConstexprFunctionDefinition(FD, CheckConstexprKind::Diagnose))
14624       FD->setInvalidDecl();
14625 
14626     if (FD && FD->hasAttr<NakedAttr>()) {
14627       for (const Stmt *S : Body->children()) {
14628         // Allow local register variables without initializer as they don't
14629         // require prologue.
14630         bool RegisterVariables = false;
14631         if (auto *DS = dyn_cast<DeclStmt>(S)) {
14632           for (const auto *Decl : DS->decls()) {
14633             if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
14634               RegisterVariables =
14635                   Var->hasAttr<AsmLabelAttr>() && !Var->hasInit();
14636               if (!RegisterVariables)
14637                 break;
14638             }
14639           }
14640         }
14641         if (RegisterVariables)
14642           continue;
14643         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
14644           Diag(S->getBeginLoc(), diag::err_non_asm_stmt_in_naked_function);
14645           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
14646           FD->setInvalidDecl();
14647           break;
14648         }
14649       }
14650     }
14651 
14652     assert(ExprCleanupObjects.size() ==
14653                ExprEvalContexts.back().NumCleanupObjects &&
14654            "Leftover temporaries in function");
14655     assert(!Cleanup.exprNeedsCleanups() && "Unaccounted cleanups in function");
14656     assert(MaybeODRUseExprs.empty() &&
14657            "Leftover expressions for odr-use checking");
14658   }
14659 
14660   if (!IsInstantiation)
14661     PopDeclContext();
14662 
14663   PopFunctionScopeInfo(ActivePolicy, dcl);
14664   // If any errors have occurred, clear out any temporaries that may have
14665   // been leftover. This ensures that these temporaries won't be picked up for
14666   // deletion in some later function.
14667   if (hasUncompilableErrorOccurred()) {
14668     DiscardCleanupsInEvaluationContext();
14669   }
14670 
14671   if (FD && (LangOpts.OpenMP || LangOpts.CUDA || LangOpts.SYCLIsDevice)) {
14672     auto ES = getEmissionStatus(FD);
14673     if (ES == Sema::FunctionEmissionStatus::Emitted ||
14674         ES == Sema::FunctionEmissionStatus::Unknown)
14675       DeclsToCheckForDeferredDiags.push_back(FD);
14676   }
14677 
14678   return dcl;
14679 }
14680 
14681 /// When we finish delayed parsing of an attribute, we must attach it to the
14682 /// relevant Decl.
14683 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
14684                                        ParsedAttributes &Attrs) {
14685   // Always attach attributes to the underlying decl.
14686   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
14687     D = TD->getTemplatedDecl();
14688   ProcessDeclAttributeList(S, D, Attrs);
14689 
14690   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
14691     if (Method->isStatic())
14692       checkThisInStaticMemberFunctionAttributes(Method);
14693 }
14694 
14695 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
14696 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
14697 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
14698                                           IdentifierInfo &II, Scope *S) {
14699   // Find the scope in which the identifier is injected and the corresponding
14700   // DeclContext.
14701   // FIXME: C89 does not say what happens if there is no enclosing block scope.
14702   // In that case, we inject the declaration into the translation unit scope
14703   // instead.
14704   Scope *BlockScope = S;
14705   while (!BlockScope->isCompoundStmtScope() && BlockScope->getParent())
14706     BlockScope = BlockScope->getParent();
14707 
14708   Scope *ContextScope = BlockScope;
14709   while (!ContextScope->getEntity())
14710     ContextScope = ContextScope->getParent();
14711   ContextRAII SavedContext(*this, ContextScope->getEntity());
14712 
14713   // Before we produce a declaration for an implicitly defined
14714   // function, see whether there was a locally-scoped declaration of
14715   // this name as a function or variable. If so, use that
14716   // (non-visible) declaration, and complain about it.
14717   NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II);
14718   if (ExternCPrev) {
14719     // We still need to inject the function into the enclosing block scope so
14720     // that later (non-call) uses can see it.
14721     PushOnScopeChains(ExternCPrev, BlockScope, /*AddToContext*/false);
14722 
14723     // C89 footnote 38:
14724     //   If in fact it is not defined as having type "function returning int",
14725     //   the behavior is undefined.
14726     if (!isa<FunctionDecl>(ExternCPrev) ||
14727         !Context.typesAreCompatible(
14728             cast<FunctionDecl>(ExternCPrev)->getType(),
14729             Context.getFunctionNoProtoType(Context.IntTy))) {
14730       Diag(Loc, diag::ext_use_out_of_scope_declaration)
14731           << ExternCPrev << !getLangOpts().C99;
14732       Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
14733       return ExternCPrev;
14734     }
14735   }
14736 
14737   // Extension in C99.  Legal in C90, but warn about it.
14738   unsigned diag_id;
14739   if (II.getName().startswith("__builtin_"))
14740     diag_id = diag::warn_builtin_unknown;
14741   // OpenCL v2.0 s6.9.u - Implicit function declaration is not supported.
14742   else if (getLangOpts().OpenCL)
14743     diag_id = diag::err_opencl_implicit_function_decl;
14744   else if (getLangOpts().C99)
14745     diag_id = diag::ext_implicit_function_decl;
14746   else
14747     diag_id = diag::warn_implicit_function_decl;
14748   Diag(Loc, diag_id) << &II;
14749 
14750   // If we found a prior declaration of this function, don't bother building
14751   // another one. We've already pushed that one into scope, so there's nothing
14752   // more to do.
14753   if (ExternCPrev)
14754     return ExternCPrev;
14755 
14756   // Because typo correction is expensive, only do it if the implicit
14757   // function declaration is going to be treated as an error.
14758   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
14759     TypoCorrection Corrected;
14760     DeclFilterCCC<FunctionDecl> CCC{};
14761     if (S && (Corrected =
14762                   CorrectTypo(DeclarationNameInfo(&II, Loc), LookupOrdinaryName,
14763                               S, nullptr, CCC, CTK_NonError)))
14764       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
14765                    /*ErrorRecovery*/false);
14766   }
14767 
14768   // Set a Declarator for the implicit definition: int foo();
14769   const char *Dummy;
14770   AttributeFactory attrFactory;
14771   DeclSpec DS(attrFactory);
14772   unsigned DiagID;
14773   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
14774                                   Context.getPrintingPolicy());
14775   (void)Error; // Silence warning.
14776   assert(!Error && "Error setting up implicit decl!");
14777   SourceLocation NoLoc;
14778   Declarator D(DS, DeclaratorContext::Block);
14779   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
14780                                              /*IsAmbiguous=*/false,
14781                                              /*LParenLoc=*/NoLoc,
14782                                              /*Params=*/nullptr,
14783                                              /*NumParams=*/0,
14784                                              /*EllipsisLoc=*/NoLoc,
14785                                              /*RParenLoc=*/NoLoc,
14786                                              /*RefQualifierIsLvalueRef=*/true,
14787                                              /*RefQualifierLoc=*/NoLoc,
14788                                              /*MutableLoc=*/NoLoc, EST_None,
14789                                              /*ESpecRange=*/SourceRange(),
14790                                              /*Exceptions=*/nullptr,
14791                                              /*ExceptionRanges=*/nullptr,
14792                                              /*NumExceptions=*/0,
14793                                              /*NoexceptExpr=*/nullptr,
14794                                              /*ExceptionSpecTokens=*/nullptr,
14795                                              /*DeclsInPrototype=*/None, Loc,
14796                                              Loc, D),
14797                 std::move(DS.getAttributes()), SourceLocation());
14798   D.SetIdentifier(&II, Loc);
14799 
14800   // Insert this function into the enclosing block scope.
14801   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(BlockScope, D));
14802   FD->setImplicit();
14803 
14804   AddKnownFunctionAttributes(FD);
14805 
14806   return FD;
14807 }
14808 
14809 /// If this function is a C++ replaceable global allocation function
14810 /// (C++2a [basic.stc.dynamic.allocation], C++2a [new.delete]),
14811 /// adds any function attributes that we know a priori based on the standard.
14812 ///
14813 /// We need to check for duplicate attributes both here and where user-written
14814 /// attributes are applied to declarations.
14815 void Sema::AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(
14816     FunctionDecl *FD) {
14817   if (FD->isInvalidDecl())
14818     return;
14819 
14820   if (FD->getDeclName().getCXXOverloadedOperator() != OO_New &&
14821       FD->getDeclName().getCXXOverloadedOperator() != OO_Array_New)
14822     return;
14823 
14824   Optional<unsigned> AlignmentParam;
14825   bool IsNothrow = false;
14826   if (!FD->isReplaceableGlobalAllocationFunction(&AlignmentParam, &IsNothrow))
14827     return;
14828 
14829   // C++2a [basic.stc.dynamic.allocation]p4:
14830   //   An allocation function that has a non-throwing exception specification
14831   //   indicates failure by returning a null pointer value. Any other allocation
14832   //   function never returns a null pointer value and indicates failure only by
14833   //   throwing an exception [...]
14834   if (!IsNothrow && !FD->hasAttr<ReturnsNonNullAttr>())
14835     FD->addAttr(ReturnsNonNullAttr::CreateImplicit(Context, FD->getLocation()));
14836 
14837   // C++2a [basic.stc.dynamic.allocation]p2:
14838   //   An allocation function attempts to allocate the requested amount of
14839   //   storage. [...] If the request succeeds, the value returned by a
14840   //   replaceable allocation function is a [...] pointer value p0 different
14841   //   from any previously returned value p1 [...]
14842   //
14843   // However, this particular information is being added in codegen,
14844   // because there is an opt-out switch for it (-fno-assume-sane-operator-new)
14845 
14846   // C++2a [basic.stc.dynamic.allocation]p2:
14847   //   An allocation function attempts to allocate the requested amount of
14848   //   storage. If it is successful, it returns the address of the start of a
14849   //   block of storage whose length in bytes is at least as large as the
14850   //   requested size.
14851   if (!FD->hasAttr<AllocSizeAttr>()) {
14852     FD->addAttr(AllocSizeAttr::CreateImplicit(
14853         Context, /*ElemSizeParam=*/ParamIdx(1, FD),
14854         /*NumElemsParam=*/ParamIdx(), FD->getLocation()));
14855   }
14856 
14857   // C++2a [basic.stc.dynamic.allocation]p3:
14858   //   For an allocation function [...], the pointer returned on a successful
14859   //   call shall represent the address of storage that is aligned as follows:
14860   //   (3.1) If the allocation function takes an argument of type
14861   //         std​::​align_­val_­t, the storage will have the alignment
14862   //         specified by the value of this argument.
14863   if (AlignmentParam.hasValue() && !FD->hasAttr<AllocAlignAttr>()) {
14864     FD->addAttr(AllocAlignAttr::CreateImplicit(
14865         Context, ParamIdx(AlignmentParam.getValue(), FD), FD->getLocation()));
14866   }
14867 
14868   // FIXME:
14869   // C++2a [basic.stc.dynamic.allocation]p3:
14870   //   For an allocation function [...], the pointer returned on a successful
14871   //   call shall represent the address of storage that is aligned as follows:
14872   //   (3.2) Otherwise, if the allocation function is named operator new[],
14873   //         the storage is aligned for any object that does not have
14874   //         new-extended alignment ([basic.align]) and is no larger than the
14875   //         requested size.
14876   //   (3.3) Otherwise, the storage is aligned for any object that does not
14877   //         have new-extended alignment and is of the requested size.
14878 }
14879 
14880 /// Adds any function attributes that we know a priori based on
14881 /// the declaration of this function.
14882 ///
14883 /// These attributes can apply both to implicitly-declared builtins
14884 /// (like __builtin___printf_chk) or to library-declared functions
14885 /// like NSLog or printf.
14886 ///
14887 /// We need to check for duplicate attributes both here and where user-written
14888 /// attributes are applied to declarations.
14889 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
14890   if (FD->isInvalidDecl())
14891     return;
14892 
14893   // If this is a built-in function, map its builtin attributes to
14894   // actual attributes.
14895   if (unsigned BuiltinID = FD->getBuiltinID()) {
14896     // Handle printf-formatting attributes.
14897     unsigned FormatIdx;
14898     bool HasVAListArg;
14899     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
14900       if (!FD->hasAttr<FormatAttr>()) {
14901         const char *fmt = "printf";
14902         unsigned int NumParams = FD->getNumParams();
14903         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
14904             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
14905           fmt = "NSString";
14906         FD->addAttr(FormatAttr::CreateImplicit(Context,
14907                                                &Context.Idents.get(fmt),
14908                                                FormatIdx+1,
14909                                                HasVAListArg ? 0 : FormatIdx+2,
14910                                                FD->getLocation()));
14911       }
14912     }
14913     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
14914                                              HasVAListArg)) {
14915      if (!FD->hasAttr<FormatAttr>())
14916        FD->addAttr(FormatAttr::CreateImplicit(Context,
14917                                               &Context.Idents.get("scanf"),
14918                                               FormatIdx+1,
14919                                               HasVAListArg ? 0 : FormatIdx+2,
14920                                               FD->getLocation()));
14921     }
14922 
14923     // Handle automatically recognized callbacks.
14924     SmallVector<int, 4> Encoding;
14925     if (!FD->hasAttr<CallbackAttr>() &&
14926         Context.BuiltinInfo.performsCallback(BuiltinID, Encoding))
14927       FD->addAttr(CallbackAttr::CreateImplicit(
14928           Context, Encoding.data(), Encoding.size(), FD->getLocation()));
14929 
14930     // Mark const if we don't care about errno and that is the only thing
14931     // preventing the function from being const. This allows IRgen to use LLVM
14932     // intrinsics for such functions.
14933     if (!getLangOpts().MathErrno && !FD->hasAttr<ConstAttr>() &&
14934         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID))
14935       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
14936 
14937     // We make "fma" on some platforms const because we know it does not set
14938     // errno in those environments even though it could set errno based on the
14939     // C standard.
14940     const llvm::Triple &Trip = Context.getTargetInfo().getTriple();
14941     if ((Trip.isGNUEnvironment() || Trip.isAndroid() || Trip.isOSMSVCRT()) &&
14942         !FD->hasAttr<ConstAttr>()) {
14943       switch (BuiltinID) {
14944       case Builtin::BI__builtin_fma:
14945       case Builtin::BI__builtin_fmaf:
14946       case Builtin::BI__builtin_fmal:
14947       case Builtin::BIfma:
14948       case Builtin::BIfmaf:
14949       case Builtin::BIfmal:
14950         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
14951         break;
14952       default:
14953         break;
14954       }
14955     }
14956 
14957     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
14958         !FD->hasAttr<ReturnsTwiceAttr>())
14959       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
14960                                          FD->getLocation()));
14961     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
14962       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
14963     if (Context.BuiltinInfo.isPure(BuiltinID) && !FD->hasAttr<PureAttr>())
14964       FD->addAttr(PureAttr::CreateImplicit(Context, FD->getLocation()));
14965     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
14966       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
14967     if (getLangOpts().CUDA && Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
14968         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
14969       // Add the appropriate attribute, depending on the CUDA compilation mode
14970       // and which target the builtin belongs to. For example, during host
14971       // compilation, aux builtins are __device__, while the rest are __host__.
14972       if (getLangOpts().CUDAIsDevice !=
14973           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
14974         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
14975       else
14976         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
14977     }
14978   }
14979 
14980   AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(FD);
14981 
14982   // If C++ exceptions are enabled but we are told extern "C" functions cannot
14983   // throw, add an implicit nothrow attribute to any extern "C" function we come
14984   // across.
14985   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
14986       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
14987     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
14988     if (!FPT || FPT->getExceptionSpecType() == EST_None)
14989       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
14990   }
14991 
14992   IdentifierInfo *Name = FD->getIdentifier();
14993   if (!Name)
14994     return;
14995   if ((!getLangOpts().CPlusPlus &&
14996        FD->getDeclContext()->isTranslationUnit()) ||
14997       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
14998        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
14999        LinkageSpecDecl::lang_c)) {
15000     // Okay: this could be a libc/libm/Objective-C function we know
15001     // about.
15002   } else
15003     return;
15004 
15005   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
15006     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
15007     // target-specific builtins, perhaps?
15008     if (!FD->hasAttr<FormatAttr>())
15009       FD->addAttr(FormatAttr::CreateImplicit(Context,
15010                                              &Context.Idents.get("printf"), 2,
15011                                              Name->isStr("vasprintf") ? 0 : 3,
15012                                              FD->getLocation()));
15013   }
15014 
15015   if (Name->isStr("__CFStringMakeConstantString")) {
15016     // We already have a __builtin___CFStringMakeConstantString,
15017     // but builds that use -fno-constant-cfstrings don't go through that.
15018     if (!FD->hasAttr<FormatArgAttr>())
15019       FD->addAttr(FormatArgAttr::CreateImplicit(Context, ParamIdx(1, FD),
15020                                                 FD->getLocation()));
15021   }
15022 }
15023 
15024 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
15025                                     TypeSourceInfo *TInfo) {
15026   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
15027   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
15028 
15029   if (!TInfo) {
15030     assert(D.isInvalidType() && "no declarator info for valid type");
15031     TInfo = Context.getTrivialTypeSourceInfo(T);
15032   }
15033 
15034   // Scope manipulation handled by caller.
15035   TypedefDecl *NewTD =
15036       TypedefDecl::Create(Context, CurContext, D.getBeginLoc(),
15037                           D.getIdentifierLoc(), D.getIdentifier(), TInfo);
15038 
15039   // Bail out immediately if we have an invalid declaration.
15040   if (D.isInvalidType()) {
15041     NewTD->setInvalidDecl();
15042     return NewTD;
15043   }
15044 
15045   if (D.getDeclSpec().isModulePrivateSpecified()) {
15046     if (CurContext->isFunctionOrMethod())
15047       Diag(NewTD->getLocation(), diag::err_module_private_local)
15048           << 2 << NewTD
15049           << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
15050           << FixItHint::CreateRemoval(
15051                  D.getDeclSpec().getModulePrivateSpecLoc());
15052     else
15053       NewTD->setModulePrivate();
15054   }
15055 
15056   // C++ [dcl.typedef]p8:
15057   //   If the typedef declaration defines an unnamed class (or
15058   //   enum), the first typedef-name declared by the declaration
15059   //   to be that class type (or enum type) is used to denote the
15060   //   class type (or enum type) for linkage purposes only.
15061   // We need to check whether the type was declared in the declaration.
15062   switch (D.getDeclSpec().getTypeSpecType()) {
15063   case TST_enum:
15064   case TST_struct:
15065   case TST_interface:
15066   case TST_union:
15067   case TST_class: {
15068     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
15069     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
15070     break;
15071   }
15072 
15073   default:
15074     break;
15075   }
15076 
15077   return NewTD;
15078 }
15079 
15080 /// Check that this is a valid underlying type for an enum declaration.
15081 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
15082   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
15083   QualType T = TI->getType();
15084 
15085   if (T->isDependentType())
15086     return false;
15087 
15088   // This doesn't use 'isIntegralType' despite the error message mentioning
15089   // integral type because isIntegralType would also allow enum types in C.
15090   if (const BuiltinType *BT = T->getAs<BuiltinType>())
15091     if (BT->isInteger())
15092       return false;
15093 
15094   if (T->isExtIntType())
15095     return false;
15096 
15097   return Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
15098 }
15099 
15100 /// Check whether this is a valid redeclaration of a previous enumeration.
15101 /// \return true if the redeclaration was invalid.
15102 bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped,
15103                                   QualType EnumUnderlyingTy, bool IsFixed,
15104                                   const EnumDecl *Prev) {
15105   if (IsScoped != Prev->isScoped()) {
15106     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
15107       << Prev->isScoped();
15108     Diag(Prev->getLocation(), diag::note_previous_declaration);
15109     return true;
15110   }
15111 
15112   if (IsFixed && Prev->isFixed()) {
15113     if (!EnumUnderlyingTy->isDependentType() &&
15114         !Prev->getIntegerType()->isDependentType() &&
15115         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
15116                                         Prev->getIntegerType())) {
15117       // TODO: Highlight the underlying type of the redeclaration.
15118       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
15119         << EnumUnderlyingTy << Prev->getIntegerType();
15120       Diag(Prev->getLocation(), diag::note_previous_declaration)
15121           << Prev->getIntegerTypeRange();
15122       return true;
15123     }
15124   } else if (IsFixed != Prev->isFixed()) {
15125     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
15126       << Prev->isFixed();
15127     Diag(Prev->getLocation(), diag::note_previous_declaration);
15128     return true;
15129   }
15130 
15131   return false;
15132 }
15133 
15134 /// Get diagnostic %select index for tag kind for
15135 /// redeclaration diagnostic message.
15136 /// WARNING: Indexes apply to particular diagnostics only!
15137 ///
15138 /// \returns diagnostic %select index.
15139 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
15140   switch (Tag) {
15141   case TTK_Struct: return 0;
15142   case TTK_Interface: return 1;
15143   case TTK_Class:  return 2;
15144   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
15145   }
15146 }
15147 
15148 /// Determine if tag kind is a class-key compatible with
15149 /// class for redeclaration (class, struct, or __interface).
15150 ///
15151 /// \returns true iff the tag kind is compatible.
15152 static bool isClassCompatTagKind(TagTypeKind Tag)
15153 {
15154   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
15155 }
15156 
15157 Sema::NonTagKind Sema::getNonTagTypeDeclKind(const Decl *PrevDecl,
15158                                              TagTypeKind TTK) {
15159   if (isa<TypedefDecl>(PrevDecl))
15160     return NTK_Typedef;
15161   else if (isa<TypeAliasDecl>(PrevDecl))
15162     return NTK_TypeAlias;
15163   else if (isa<ClassTemplateDecl>(PrevDecl))
15164     return NTK_Template;
15165   else if (isa<TypeAliasTemplateDecl>(PrevDecl))
15166     return NTK_TypeAliasTemplate;
15167   else if (isa<TemplateTemplateParmDecl>(PrevDecl))
15168     return NTK_TemplateTemplateArgument;
15169   switch (TTK) {
15170   case TTK_Struct:
15171   case TTK_Interface:
15172   case TTK_Class:
15173     return getLangOpts().CPlusPlus ? NTK_NonClass : NTK_NonStruct;
15174   case TTK_Union:
15175     return NTK_NonUnion;
15176   case TTK_Enum:
15177     return NTK_NonEnum;
15178   }
15179   llvm_unreachable("invalid TTK");
15180 }
15181 
15182 /// Determine whether a tag with a given kind is acceptable
15183 /// as a redeclaration of the given tag declaration.
15184 ///
15185 /// \returns true if the new tag kind is acceptable, false otherwise.
15186 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
15187                                         TagTypeKind NewTag, bool isDefinition,
15188                                         SourceLocation NewTagLoc,
15189                                         const IdentifierInfo *Name) {
15190   // C++ [dcl.type.elab]p3:
15191   //   The class-key or enum keyword present in the
15192   //   elaborated-type-specifier shall agree in kind with the
15193   //   declaration to which the name in the elaborated-type-specifier
15194   //   refers. This rule also applies to the form of
15195   //   elaborated-type-specifier that declares a class-name or
15196   //   friend class since it can be construed as referring to the
15197   //   definition of the class. Thus, in any
15198   //   elaborated-type-specifier, the enum keyword shall be used to
15199   //   refer to an enumeration (7.2), the union class-key shall be
15200   //   used to refer to a union (clause 9), and either the class or
15201   //   struct class-key shall be used to refer to a class (clause 9)
15202   //   declared using the class or struct class-key.
15203   TagTypeKind OldTag = Previous->getTagKind();
15204   if (OldTag != NewTag &&
15205       !(isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)))
15206     return false;
15207 
15208   // Tags are compatible, but we might still want to warn on mismatched tags.
15209   // Non-class tags can't be mismatched at this point.
15210   if (!isClassCompatTagKind(NewTag))
15211     return true;
15212 
15213   // Declarations for which -Wmismatched-tags is disabled are entirely ignored
15214   // by our warning analysis. We don't want to warn about mismatches with (eg)
15215   // declarations in system headers that are designed to be specialized, but if
15216   // a user asks us to warn, we should warn if their code contains mismatched
15217   // declarations.
15218   auto IsIgnoredLoc = [&](SourceLocation Loc) {
15219     return getDiagnostics().isIgnored(diag::warn_struct_class_tag_mismatch,
15220                                       Loc);
15221   };
15222   if (IsIgnoredLoc(NewTagLoc))
15223     return true;
15224 
15225   auto IsIgnored = [&](const TagDecl *Tag) {
15226     return IsIgnoredLoc(Tag->getLocation());
15227   };
15228   while (IsIgnored(Previous)) {
15229     Previous = Previous->getPreviousDecl();
15230     if (!Previous)
15231       return true;
15232     OldTag = Previous->getTagKind();
15233   }
15234 
15235   bool isTemplate = false;
15236   if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
15237     isTemplate = Record->getDescribedClassTemplate();
15238 
15239   if (inTemplateInstantiation()) {
15240     if (OldTag != NewTag) {
15241       // In a template instantiation, do not offer fix-its for tag mismatches
15242       // since they usually mess up the template instead of fixing the problem.
15243       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
15244         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
15245         << getRedeclDiagFromTagKind(OldTag);
15246       // FIXME: Note previous location?
15247     }
15248     return true;
15249   }
15250 
15251   if (isDefinition) {
15252     // On definitions, check all previous tags and issue a fix-it for each
15253     // one that doesn't match the current tag.
15254     if (Previous->getDefinition()) {
15255       // Don't suggest fix-its for redefinitions.
15256       return true;
15257     }
15258 
15259     bool previousMismatch = false;
15260     for (const TagDecl *I : Previous->redecls()) {
15261       if (I->getTagKind() != NewTag) {
15262         // Ignore previous declarations for which the warning was disabled.
15263         if (IsIgnored(I))
15264           continue;
15265 
15266         if (!previousMismatch) {
15267           previousMismatch = true;
15268           Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
15269             << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
15270             << getRedeclDiagFromTagKind(I->getTagKind());
15271         }
15272         Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
15273           << getRedeclDiagFromTagKind(NewTag)
15274           << FixItHint::CreateReplacement(I->getInnerLocStart(),
15275                TypeWithKeyword::getTagTypeKindName(NewTag));
15276       }
15277     }
15278     return true;
15279   }
15280 
15281   // Identify the prevailing tag kind: this is the kind of the definition (if
15282   // there is a non-ignored definition), or otherwise the kind of the prior
15283   // (non-ignored) declaration.
15284   const TagDecl *PrevDef = Previous->getDefinition();
15285   if (PrevDef && IsIgnored(PrevDef))
15286     PrevDef = nullptr;
15287   const TagDecl *Redecl = PrevDef ? PrevDef : Previous;
15288   if (Redecl->getTagKind() != NewTag) {
15289     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
15290       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
15291       << getRedeclDiagFromTagKind(OldTag);
15292     Diag(Redecl->getLocation(), diag::note_previous_use);
15293 
15294     // If there is a previous definition, suggest a fix-it.
15295     if (PrevDef) {
15296       Diag(NewTagLoc, diag::note_struct_class_suggestion)
15297         << getRedeclDiagFromTagKind(Redecl->getTagKind())
15298         << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
15299              TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
15300     }
15301   }
15302 
15303   return true;
15304 }
15305 
15306 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
15307 /// from an outer enclosing namespace or file scope inside a friend declaration.
15308 /// This should provide the commented out code in the following snippet:
15309 ///   namespace N {
15310 ///     struct X;
15311 ///     namespace M {
15312 ///       struct Y { friend struct /*N::*/ X; };
15313 ///     }
15314 ///   }
15315 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
15316                                          SourceLocation NameLoc) {
15317   // While the decl is in a namespace, do repeated lookup of that name and see
15318   // if we get the same namespace back.  If we do not, continue until
15319   // translation unit scope, at which point we have a fully qualified NNS.
15320   SmallVector<IdentifierInfo *, 4> Namespaces;
15321   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
15322   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
15323     // This tag should be declared in a namespace, which can only be enclosed by
15324     // other namespaces.  Bail if there's an anonymous namespace in the chain.
15325     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
15326     if (!Namespace || Namespace->isAnonymousNamespace())
15327       return FixItHint();
15328     IdentifierInfo *II = Namespace->getIdentifier();
15329     Namespaces.push_back(II);
15330     NamedDecl *Lookup = SemaRef.LookupSingleName(
15331         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
15332     if (Lookup == Namespace)
15333       break;
15334   }
15335 
15336   // Once we have all the namespaces, reverse them to go outermost first, and
15337   // build an NNS.
15338   SmallString<64> Insertion;
15339   llvm::raw_svector_ostream OS(Insertion);
15340   if (DC->isTranslationUnit())
15341     OS << "::";
15342   std::reverse(Namespaces.begin(), Namespaces.end());
15343   for (auto *II : Namespaces)
15344     OS << II->getName() << "::";
15345   return FixItHint::CreateInsertion(NameLoc, Insertion);
15346 }
15347 
15348 /// Determine whether a tag originally declared in context \p OldDC can
15349 /// be redeclared with an unqualified name in \p NewDC (assuming name lookup
15350 /// found a declaration in \p OldDC as a previous decl, perhaps through a
15351 /// using-declaration).
15352 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
15353                                          DeclContext *NewDC) {
15354   OldDC = OldDC->getRedeclContext();
15355   NewDC = NewDC->getRedeclContext();
15356 
15357   if (OldDC->Equals(NewDC))
15358     return true;
15359 
15360   // In MSVC mode, we allow a redeclaration if the contexts are related (either
15361   // encloses the other).
15362   if (S.getLangOpts().MSVCCompat &&
15363       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
15364     return true;
15365 
15366   return false;
15367 }
15368 
15369 /// This is invoked when we see 'struct foo' or 'struct {'.  In the
15370 /// former case, Name will be non-null.  In the later case, Name will be null.
15371 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
15372 /// reference/declaration/definition of a tag.
15373 ///
15374 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
15375 /// trailing-type-specifier) other than one in an alias-declaration.
15376 ///
15377 /// \param SkipBody If non-null, will be set to indicate if the caller should
15378 /// skip the definition of this tag and treat it as if it were a declaration.
15379 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
15380                      SourceLocation KWLoc, CXXScopeSpec &SS,
15381                      IdentifierInfo *Name, SourceLocation NameLoc,
15382                      const ParsedAttributesView &Attrs, AccessSpecifier AS,
15383                      SourceLocation ModulePrivateLoc,
15384                      MultiTemplateParamsArg TemplateParameterLists,
15385                      bool &OwnedDecl, bool &IsDependent,
15386                      SourceLocation ScopedEnumKWLoc,
15387                      bool ScopedEnumUsesClassTag, TypeResult UnderlyingType,
15388                      bool IsTypeSpecifier, bool IsTemplateParamOrArg,
15389                      SkipBodyInfo *SkipBody) {
15390   // If this is not a definition, it must have a name.
15391   IdentifierInfo *OrigName = Name;
15392   assert((Name != nullptr || TUK == TUK_Definition) &&
15393          "Nameless record must be a definition!");
15394   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
15395 
15396   OwnedDecl = false;
15397   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
15398   bool ScopedEnum = ScopedEnumKWLoc.isValid();
15399 
15400   // FIXME: Check member specializations more carefully.
15401   bool isMemberSpecialization = false;
15402   bool Invalid = false;
15403 
15404   // We only need to do this matching if we have template parameters
15405   // or a scope specifier, which also conveniently avoids this work
15406   // for non-C++ cases.
15407   if (TemplateParameterLists.size() > 0 ||
15408       (SS.isNotEmpty() && TUK != TUK_Reference)) {
15409     if (TemplateParameterList *TemplateParams =
15410             MatchTemplateParametersToScopeSpecifier(
15411                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
15412                 TUK == TUK_Friend, isMemberSpecialization, Invalid)) {
15413       if (Kind == TTK_Enum) {
15414         Diag(KWLoc, diag::err_enum_template);
15415         return nullptr;
15416       }
15417 
15418       if (TemplateParams->size() > 0) {
15419         // This is a declaration or definition of a class template (which may
15420         // be a member of another template).
15421 
15422         if (Invalid)
15423           return nullptr;
15424 
15425         OwnedDecl = false;
15426         DeclResult Result = CheckClassTemplate(
15427             S, TagSpec, TUK, KWLoc, SS, Name, NameLoc, Attrs, TemplateParams,
15428             AS, ModulePrivateLoc,
15429             /*FriendLoc*/ SourceLocation(), TemplateParameterLists.size() - 1,
15430             TemplateParameterLists.data(), SkipBody);
15431         return Result.get();
15432       } else {
15433         // The "template<>" header is extraneous.
15434         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
15435           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
15436         isMemberSpecialization = true;
15437       }
15438     }
15439 
15440     if (!TemplateParameterLists.empty() && isMemberSpecialization &&
15441         CheckTemplateDeclScope(S, TemplateParameterLists.back()))
15442       return nullptr;
15443   }
15444 
15445   // Figure out the underlying type if this a enum declaration. We need to do
15446   // this early, because it's needed to detect if this is an incompatible
15447   // redeclaration.
15448   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
15449   bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum;
15450 
15451   if (Kind == TTK_Enum) {
15452     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum)) {
15453       // No underlying type explicitly specified, or we failed to parse the
15454       // type, default to int.
15455       EnumUnderlying = Context.IntTy.getTypePtr();
15456     } else if (UnderlyingType.get()) {
15457       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
15458       // integral type; any cv-qualification is ignored.
15459       TypeSourceInfo *TI = nullptr;
15460       GetTypeFromParser(UnderlyingType.get(), &TI);
15461       EnumUnderlying = TI;
15462 
15463       if (CheckEnumUnderlyingType(TI))
15464         // Recover by falling back to int.
15465         EnumUnderlying = Context.IntTy.getTypePtr();
15466 
15467       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
15468                                           UPPC_FixedUnderlyingType))
15469         EnumUnderlying = Context.IntTy.getTypePtr();
15470 
15471     } else if (Context.getTargetInfo().getTriple().isWindowsMSVCEnvironment()) {
15472       // For MSVC ABI compatibility, unfixed enums must use an underlying type
15473       // of 'int'. However, if this is an unfixed forward declaration, don't set
15474       // the underlying type unless the user enables -fms-compatibility. This
15475       // makes unfixed forward declared enums incomplete and is more conforming.
15476       if (TUK == TUK_Definition || getLangOpts().MSVCCompat)
15477         EnumUnderlying = Context.IntTy.getTypePtr();
15478     }
15479   }
15480 
15481   DeclContext *SearchDC = CurContext;
15482   DeclContext *DC = CurContext;
15483   bool isStdBadAlloc = false;
15484   bool isStdAlignValT = false;
15485 
15486   RedeclarationKind Redecl = forRedeclarationInCurContext();
15487   if (TUK == TUK_Friend || TUK == TUK_Reference)
15488     Redecl = NotForRedeclaration;
15489 
15490   /// Create a new tag decl in C/ObjC. Since the ODR-like semantics for ObjC/C
15491   /// implemented asks for structural equivalence checking, the returned decl
15492   /// here is passed back to the parser, allowing the tag body to be parsed.
15493   auto createTagFromNewDecl = [&]() -> TagDecl * {
15494     assert(!getLangOpts().CPlusPlus && "not meant for C++ usage");
15495     // If there is an identifier, use the location of the identifier as the
15496     // location of the decl, otherwise use the location of the struct/union
15497     // keyword.
15498     SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
15499     TagDecl *New = nullptr;
15500 
15501     if (Kind == TTK_Enum) {
15502       New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name, nullptr,
15503                              ScopedEnum, ScopedEnumUsesClassTag, IsFixed);
15504       // If this is an undefined enum, bail.
15505       if (TUK != TUK_Definition && !Invalid)
15506         return nullptr;
15507       if (EnumUnderlying) {
15508         EnumDecl *ED = cast<EnumDecl>(New);
15509         if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo *>())
15510           ED->setIntegerTypeSourceInfo(TI);
15511         else
15512           ED->setIntegerType(QualType(EnumUnderlying.get<const Type *>(), 0));
15513         ED->setPromotionType(ED->getIntegerType());
15514       }
15515     } else { // struct/union
15516       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
15517                                nullptr);
15518     }
15519 
15520     if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
15521       // Add alignment attributes if necessary; these attributes are checked
15522       // when the ASTContext lays out the structure.
15523       //
15524       // It is important for implementing the correct semantics that this
15525       // happen here (in ActOnTag). The #pragma pack stack is
15526       // maintained as a result of parser callbacks which can occur at
15527       // many points during the parsing of a struct declaration (because
15528       // the #pragma tokens are effectively skipped over during the
15529       // parsing of the struct).
15530       if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) {
15531         AddAlignmentAttributesForRecord(RD);
15532         AddMsStructLayoutForRecord(RD);
15533       }
15534     }
15535     New->setLexicalDeclContext(CurContext);
15536     return New;
15537   };
15538 
15539   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
15540   if (Name && SS.isNotEmpty()) {
15541     // We have a nested-name tag ('struct foo::bar').
15542 
15543     // Check for invalid 'foo::'.
15544     if (SS.isInvalid()) {
15545       Name = nullptr;
15546       goto CreateNewDecl;
15547     }
15548 
15549     // If this is a friend or a reference to a class in a dependent
15550     // context, don't try to make a decl for it.
15551     if (TUK == TUK_Friend || TUK == TUK_Reference) {
15552       DC = computeDeclContext(SS, false);
15553       if (!DC) {
15554         IsDependent = true;
15555         return nullptr;
15556       }
15557     } else {
15558       DC = computeDeclContext(SS, true);
15559       if (!DC) {
15560         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
15561           << SS.getRange();
15562         return nullptr;
15563       }
15564     }
15565 
15566     if (RequireCompleteDeclContext(SS, DC))
15567       return nullptr;
15568 
15569     SearchDC = DC;
15570     // Look-up name inside 'foo::'.
15571     LookupQualifiedName(Previous, DC);
15572 
15573     if (Previous.isAmbiguous())
15574       return nullptr;
15575 
15576     if (Previous.empty()) {
15577       // Name lookup did not find anything. However, if the
15578       // nested-name-specifier refers to the current instantiation,
15579       // and that current instantiation has any dependent base
15580       // classes, we might find something at instantiation time: treat
15581       // this as a dependent elaborated-type-specifier.
15582       // But this only makes any sense for reference-like lookups.
15583       if (Previous.wasNotFoundInCurrentInstantiation() &&
15584           (TUK == TUK_Reference || TUK == TUK_Friend)) {
15585         IsDependent = true;
15586         return nullptr;
15587       }
15588 
15589       // A tag 'foo::bar' must already exist.
15590       Diag(NameLoc, diag::err_not_tag_in_scope)
15591         << Kind << Name << DC << SS.getRange();
15592       Name = nullptr;
15593       Invalid = true;
15594       goto CreateNewDecl;
15595     }
15596   } else if (Name) {
15597     // C++14 [class.mem]p14:
15598     //   If T is the name of a class, then each of the following shall have a
15599     //   name different from T:
15600     //    -- every member of class T that is itself a type
15601     if (TUK != TUK_Reference && TUK != TUK_Friend &&
15602         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
15603       return nullptr;
15604 
15605     // If this is a named struct, check to see if there was a previous forward
15606     // declaration or definition.
15607     // FIXME: We're looking into outer scopes here, even when we
15608     // shouldn't be. Doing so can result in ambiguities that we
15609     // shouldn't be diagnosing.
15610     LookupName(Previous, S);
15611 
15612     // When declaring or defining a tag, ignore ambiguities introduced
15613     // by types using'ed into this scope.
15614     if (Previous.isAmbiguous() &&
15615         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
15616       LookupResult::Filter F = Previous.makeFilter();
15617       while (F.hasNext()) {
15618         NamedDecl *ND = F.next();
15619         if (!ND->getDeclContext()->getRedeclContext()->Equals(
15620                 SearchDC->getRedeclContext()))
15621           F.erase();
15622       }
15623       F.done();
15624     }
15625 
15626     // C++11 [namespace.memdef]p3:
15627     //   If the name in a friend declaration is neither qualified nor
15628     //   a template-id and the declaration is a function or an
15629     //   elaborated-type-specifier, the lookup to determine whether
15630     //   the entity has been previously declared shall not consider
15631     //   any scopes outside the innermost enclosing namespace.
15632     //
15633     // MSVC doesn't implement the above rule for types, so a friend tag
15634     // declaration may be a redeclaration of a type declared in an enclosing
15635     // scope.  They do implement this rule for friend functions.
15636     //
15637     // Does it matter that this should be by scope instead of by
15638     // semantic context?
15639     if (!Previous.empty() && TUK == TUK_Friend) {
15640       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
15641       LookupResult::Filter F = Previous.makeFilter();
15642       bool FriendSawTagOutsideEnclosingNamespace = false;
15643       while (F.hasNext()) {
15644         NamedDecl *ND = F.next();
15645         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
15646         if (DC->isFileContext() &&
15647             !EnclosingNS->Encloses(ND->getDeclContext())) {
15648           if (getLangOpts().MSVCCompat)
15649             FriendSawTagOutsideEnclosingNamespace = true;
15650           else
15651             F.erase();
15652         }
15653       }
15654       F.done();
15655 
15656       // Diagnose this MSVC extension in the easy case where lookup would have
15657       // unambiguously found something outside the enclosing namespace.
15658       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
15659         NamedDecl *ND = Previous.getFoundDecl();
15660         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
15661             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
15662       }
15663     }
15664 
15665     // Note:  there used to be some attempt at recovery here.
15666     if (Previous.isAmbiguous())
15667       return nullptr;
15668 
15669     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
15670       // FIXME: This makes sure that we ignore the contexts associated
15671       // with C structs, unions, and enums when looking for a matching
15672       // tag declaration or definition. See the similar lookup tweak
15673       // in Sema::LookupName; is there a better way to deal with this?
15674       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
15675         SearchDC = SearchDC->getParent();
15676     }
15677   }
15678 
15679   if (Previous.isSingleResult() &&
15680       Previous.getFoundDecl()->isTemplateParameter()) {
15681     // Maybe we will complain about the shadowed template parameter.
15682     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
15683     // Just pretend that we didn't see the previous declaration.
15684     Previous.clear();
15685   }
15686 
15687   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
15688       DC->Equals(getStdNamespace())) {
15689     if (Name->isStr("bad_alloc")) {
15690       // This is a declaration of or a reference to "std::bad_alloc".
15691       isStdBadAlloc = true;
15692 
15693       // If std::bad_alloc has been implicitly declared (but made invisible to
15694       // name lookup), fill in this implicit declaration as the previous
15695       // declaration, so that the declarations get chained appropriately.
15696       if (Previous.empty() && StdBadAlloc)
15697         Previous.addDecl(getStdBadAlloc());
15698     } else if (Name->isStr("align_val_t")) {
15699       isStdAlignValT = true;
15700       if (Previous.empty() && StdAlignValT)
15701         Previous.addDecl(getStdAlignValT());
15702     }
15703   }
15704 
15705   // If we didn't find a previous declaration, and this is a reference
15706   // (or friend reference), move to the correct scope.  In C++, we
15707   // also need to do a redeclaration lookup there, just in case
15708   // there's a shadow friend decl.
15709   if (Name && Previous.empty() &&
15710       (TUK == TUK_Reference || TUK == TUK_Friend || IsTemplateParamOrArg)) {
15711     if (Invalid) goto CreateNewDecl;
15712     assert(SS.isEmpty());
15713 
15714     if (TUK == TUK_Reference || IsTemplateParamOrArg) {
15715       // C++ [basic.scope.pdecl]p5:
15716       //   -- for an elaborated-type-specifier of the form
15717       //
15718       //          class-key identifier
15719       //
15720       //      if the elaborated-type-specifier is used in the
15721       //      decl-specifier-seq or parameter-declaration-clause of a
15722       //      function defined in namespace scope, the identifier is
15723       //      declared as a class-name in the namespace that contains
15724       //      the declaration; otherwise, except as a friend
15725       //      declaration, the identifier is declared in the smallest
15726       //      non-class, non-function-prototype scope that contains the
15727       //      declaration.
15728       //
15729       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
15730       // C structs and unions.
15731       //
15732       // It is an error in C++ to declare (rather than define) an enum
15733       // type, including via an elaborated type specifier.  We'll
15734       // diagnose that later; for now, declare the enum in the same
15735       // scope as we would have picked for any other tag type.
15736       //
15737       // GNU C also supports this behavior as part of its incomplete
15738       // enum types extension, while GNU C++ does not.
15739       //
15740       // Find the context where we'll be declaring the tag.
15741       // FIXME: We would like to maintain the current DeclContext as the
15742       // lexical context,
15743       SearchDC = getTagInjectionContext(SearchDC);
15744 
15745       // Find the scope where we'll be declaring the tag.
15746       S = getTagInjectionScope(S, getLangOpts());
15747     } else {
15748       assert(TUK == TUK_Friend);
15749       // C++ [namespace.memdef]p3:
15750       //   If a friend declaration in a non-local class first declares a
15751       //   class or function, the friend class or function is a member of
15752       //   the innermost enclosing namespace.
15753       SearchDC = SearchDC->getEnclosingNamespaceContext();
15754     }
15755 
15756     // In C++, we need to do a redeclaration lookup to properly
15757     // diagnose some problems.
15758     // FIXME: redeclaration lookup is also used (with and without C++) to find a
15759     // hidden declaration so that we don't get ambiguity errors when using a
15760     // type declared by an elaborated-type-specifier.  In C that is not correct
15761     // and we should instead merge compatible types found by lookup.
15762     if (getLangOpts().CPlusPlus) {
15763       // FIXME: This can perform qualified lookups into function contexts,
15764       // which are meaningless.
15765       Previous.setRedeclarationKind(forRedeclarationInCurContext());
15766       LookupQualifiedName(Previous, SearchDC);
15767     } else {
15768       Previous.setRedeclarationKind(forRedeclarationInCurContext());
15769       LookupName(Previous, S);
15770     }
15771   }
15772 
15773   // If we have a known previous declaration to use, then use it.
15774   if (Previous.empty() && SkipBody && SkipBody->Previous)
15775     Previous.addDecl(SkipBody->Previous);
15776 
15777   if (!Previous.empty()) {
15778     NamedDecl *PrevDecl = Previous.getFoundDecl();
15779     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
15780 
15781     // It's okay to have a tag decl in the same scope as a typedef
15782     // which hides a tag decl in the same scope.  Finding this
15783     // insanity with a redeclaration lookup can only actually happen
15784     // in C++.
15785     //
15786     // This is also okay for elaborated-type-specifiers, which is
15787     // technically forbidden by the current standard but which is
15788     // okay according to the likely resolution of an open issue;
15789     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
15790     if (getLangOpts().CPlusPlus) {
15791       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
15792         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
15793           TagDecl *Tag = TT->getDecl();
15794           if (Tag->getDeclName() == Name &&
15795               Tag->getDeclContext()->getRedeclContext()
15796                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
15797             PrevDecl = Tag;
15798             Previous.clear();
15799             Previous.addDecl(Tag);
15800             Previous.resolveKind();
15801           }
15802         }
15803       }
15804     }
15805 
15806     // If this is a redeclaration of a using shadow declaration, it must
15807     // declare a tag in the same context. In MSVC mode, we allow a
15808     // redefinition if either context is within the other.
15809     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
15810       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
15811       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
15812           isDeclInScope(Shadow, SearchDC, S, isMemberSpecialization) &&
15813           !(OldTag && isAcceptableTagRedeclContext(
15814                           *this, OldTag->getDeclContext(), SearchDC))) {
15815         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
15816         Diag(Shadow->getTargetDecl()->getLocation(),
15817              diag::note_using_decl_target);
15818         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
15819             << 0;
15820         // Recover by ignoring the old declaration.
15821         Previous.clear();
15822         goto CreateNewDecl;
15823       }
15824     }
15825 
15826     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
15827       // If this is a use of a previous tag, or if the tag is already declared
15828       // in the same scope (so that the definition/declaration completes or
15829       // rementions the tag), reuse the decl.
15830       if (TUK == TUK_Reference || TUK == TUK_Friend ||
15831           isDeclInScope(DirectPrevDecl, SearchDC, S,
15832                         SS.isNotEmpty() || isMemberSpecialization)) {
15833         // Make sure that this wasn't declared as an enum and now used as a
15834         // struct or something similar.
15835         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
15836                                           TUK == TUK_Definition, KWLoc,
15837                                           Name)) {
15838           bool SafeToContinue
15839             = (PrevTagDecl->getTagKind() != TTK_Enum &&
15840                Kind != TTK_Enum);
15841           if (SafeToContinue)
15842             Diag(KWLoc, diag::err_use_with_wrong_tag)
15843               << Name
15844               << FixItHint::CreateReplacement(SourceRange(KWLoc),
15845                                               PrevTagDecl->getKindName());
15846           else
15847             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
15848           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
15849 
15850           if (SafeToContinue)
15851             Kind = PrevTagDecl->getTagKind();
15852           else {
15853             // Recover by making this an anonymous redefinition.
15854             Name = nullptr;
15855             Previous.clear();
15856             Invalid = true;
15857           }
15858         }
15859 
15860         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
15861           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
15862           if (TUK == TUK_Reference || TUK == TUK_Friend)
15863             return PrevTagDecl;
15864 
15865           QualType EnumUnderlyingTy;
15866           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
15867             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
15868           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
15869             EnumUnderlyingTy = QualType(T, 0);
15870 
15871           // All conflicts with previous declarations are recovered by
15872           // returning the previous declaration, unless this is a definition,
15873           // in which case we want the caller to bail out.
15874           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
15875                                      ScopedEnum, EnumUnderlyingTy,
15876                                      IsFixed, PrevEnum))
15877             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
15878         }
15879 
15880         // C++11 [class.mem]p1:
15881         //   A member shall not be declared twice in the member-specification,
15882         //   except that a nested class or member class template can be declared
15883         //   and then later defined.
15884         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
15885             S->isDeclScope(PrevDecl)) {
15886           Diag(NameLoc, diag::ext_member_redeclared);
15887           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
15888         }
15889 
15890         if (!Invalid) {
15891           // If this is a use, just return the declaration we found, unless
15892           // we have attributes.
15893           if (TUK == TUK_Reference || TUK == TUK_Friend) {
15894             if (!Attrs.empty()) {
15895               // FIXME: Diagnose these attributes. For now, we create a new
15896               // declaration to hold them.
15897             } else if (TUK == TUK_Reference &&
15898                        (PrevTagDecl->getFriendObjectKind() ==
15899                             Decl::FOK_Undeclared ||
15900                         PrevDecl->getOwningModule() != getCurrentModule()) &&
15901                        SS.isEmpty()) {
15902               // This declaration is a reference to an existing entity, but
15903               // has different visibility from that entity: it either makes
15904               // a friend visible or it makes a type visible in a new module.
15905               // In either case, create a new declaration. We only do this if
15906               // the declaration would have meant the same thing if no prior
15907               // declaration were found, that is, if it was found in the same
15908               // scope where we would have injected a declaration.
15909               if (!getTagInjectionContext(CurContext)->getRedeclContext()
15910                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
15911                 return PrevTagDecl;
15912               // This is in the injected scope, create a new declaration in
15913               // that scope.
15914               S = getTagInjectionScope(S, getLangOpts());
15915             } else {
15916               return PrevTagDecl;
15917             }
15918           }
15919 
15920           // Diagnose attempts to redefine a tag.
15921           if (TUK == TUK_Definition) {
15922             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
15923               // If we're defining a specialization and the previous definition
15924               // is from an implicit instantiation, don't emit an error
15925               // here; we'll catch this in the general case below.
15926               bool IsExplicitSpecializationAfterInstantiation = false;
15927               if (isMemberSpecialization) {
15928                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
15929                   IsExplicitSpecializationAfterInstantiation =
15930                     RD->getTemplateSpecializationKind() !=
15931                     TSK_ExplicitSpecialization;
15932                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
15933                   IsExplicitSpecializationAfterInstantiation =
15934                     ED->getTemplateSpecializationKind() !=
15935                     TSK_ExplicitSpecialization;
15936               }
15937 
15938               // Note that clang allows ODR-like semantics for ObjC/C, i.e., do
15939               // not keep more that one definition around (merge them). However,
15940               // ensure the decl passes the structural compatibility check in
15941               // C11 6.2.7/1 (or 6.1.2.6/1 in C89).
15942               NamedDecl *Hidden = nullptr;
15943               if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
15944                 // There is a definition of this tag, but it is not visible. We
15945                 // explicitly make use of C++'s one definition rule here, and
15946                 // assume that this definition is identical to the hidden one
15947                 // we already have. Make the existing definition visible and
15948                 // use it in place of this one.
15949                 if (!getLangOpts().CPlusPlus) {
15950                   // Postpone making the old definition visible until after we
15951                   // complete parsing the new one and do the structural
15952                   // comparison.
15953                   SkipBody->CheckSameAsPrevious = true;
15954                   SkipBody->New = createTagFromNewDecl();
15955                   SkipBody->Previous = Def;
15956                   return Def;
15957                 } else {
15958                   SkipBody->ShouldSkip = true;
15959                   SkipBody->Previous = Def;
15960                   makeMergedDefinitionVisible(Hidden);
15961                   // Carry on and handle it like a normal definition. We'll
15962                   // skip starting the definitiion later.
15963                 }
15964               } else if (!IsExplicitSpecializationAfterInstantiation) {
15965                 // A redeclaration in function prototype scope in C isn't
15966                 // visible elsewhere, so merely issue a warning.
15967                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
15968                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
15969                 else
15970                   Diag(NameLoc, diag::err_redefinition) << Name;
15971                 notePreviousDefinition(Def,
15972                                        NameLoc.isValid() ? NameLoc : KWLoc);
15973                 // If this is a redefinition, recover by making this
15974                 // struct be anonymous, which will make any later
15975                 // references get the previous definition.
15976                 Name = nullptr;
15977                 Previous.clear();
15978                 Invalid = true;
15979               }
15980             } else {
15981               // If the type is currently being defined, complain
15982               // about a nested redefinition.
15983               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
15984               if (TD->isBeingDefined()) {
15985                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
15986                 Diag(PrevTagDecl->getLocation(),
15987                      diag::note_previous_definition);
15988                 Name = nullptr;
15989                 Previous.clear();
15990                 Invalid = true;
15991               }
15992             }
15993 
15994             // Okay, this is definition of a previously declared or referenced
15995             // tag. We're going to create a new Decl for it.
15996           }
15997 
15998           // Okay, we're going to make a redeclaration.  If this is some kind
15999           // of reference, make sure we build the redeclaration in the same DC
16000           // as the original, and ignore the current access specifier.
16001           if (TUK == TUK_Friend || TUK == TUK_Reference) {
16002             SearchDC = PrevTagDecl->getDeclContext();
16003             AS = AS_none;
16004           }
16005         }
16006         // If we get here we have (another) forward declaration or we
16007         // have a definition.  Just create a new decl.
16008 
16009       } else {
16010         // If we get here, this is a definition of a new tag type in a nested
16011         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
16012         // new decl/type.  We set PrevDecl to NULL so that the entities
16013         // have distinct types.
16014         Previous.clear();
16015       }
16016       // If we get here, we're going to create a new Decl. If PrevDecl
16017       // is non-NULL, it's a definition of the tag declared by
16018       // PrevDecl. If it's NULL, we have a new definition.
16019 
16020     // Otherwise, PrevDecl is not a tag, but was found with tag
16021     // lookup.  This is only actually possible in C++, where a few
16022     // things like templates still live in the tag namespace.
16023     } else {
16024       // Use a better diagnostic if an elaborated-type-specifier
16025       // found the wrong kind of type on the first
16026       // (non-redeclaration) lookup.
16027       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
16028           !Previous.isForRedeclaration()) {
16029         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
16030         Diag(NameLoc, diag::err_tag_reference_non_tag) << PrevDecl << NTK
16031                                                        << Kind;
16032         Diag(PrevDecl->getLocation(), diag::note_declared_at);
16033         Invalid = true;
16034 
16035       // Otherwise, only diagnose if the declaration is in scope.
16036       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
16037                                 SS.isNotEmpty() || isMemberSpecialization)) {
16038         // do nothing
16039 
16040       // Diagnose implicit declarations introduced by elaborated types.
16041       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
16042         NonTagKind NTK = getNonTagTypeDeclKind(PrevDecl, Kind);
16043         Diag(NameLoc, diag::err_tag_reference_conflict) << NTK;
16044         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
16045         Invalid = true;
16046 
16047       // Otherwise it's a declaration.  Call out a particularly common
16048       // case here.
16049       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
16050         unsigned Kind = 0;
16051         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
16052         Diag(NameLoc, diag::err_tag_definition_of_typedef)
16053           << Name << Kind << TND->getUnderlyingType();
16054         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
16055         Invalid = true;
16056 
16057       // Otherwise, diagnose.
16058       } else {
16059         // The tag name clashes with something else in the target scope,
16060         // issue an error and recover by making this tag be anonymous.
16061         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
16062         notePreviousDefinition(PrevDecl, NameLoc);
16063         Name = nullptr;
16064         Invalid = true;
16065       }
16066 
16067       // The existing declaration isn't relevant to us; we're in a
16068       // new scope, so clear out the previous declaration.
16069       Previous.clear();
16070     }
16071   }
16072 
16073 CreateNewDecl:
16074 
16075   TagDecl *PrevDecl = nullptr;
16076   if (Previous.isSingleResult())
16077     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
16078 
16079   // If there is an identifier, use the location of the identifier as the
16080   // location of the decl, otherwise use the location of the struct/union
16081   // keyword.
16082   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
16083 
16084   // Otherwise, create a new declaration. If there is a previous
16085   // declaration of the same entity, the two will be linked via
16086   // PrevDecl.
16087   TagDecl *New;
16088 
16089   if (Kind == TTK_Enum) {
16090     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
16091     // enum X { A, B, C } D;    D should chain to X.
16092     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
16093                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
16094                            ScopedEnumUsesClassTag, IsFixed);
16095 
16096     if (isStdAlignValT && (!StdAlignValT || getStdAlignValT()->isImplicit()))
16097       StdAlignValT = cast<EnumDecl>(New);
16098 
16099     // If this is an undefined enum, warn.
16100     if (TUK != TUK_Definition && !Invalid) {
16101       TagDecl *Def;
16102       if (IsFixed && cast<EnumDecl>(New)->isFixed()) {
16103         // C++0x: 7.2p2: opaque-enum-declaration.
16104         // Conflicts are diagnosed above. Do nothing.
16105       }
16106       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
16107         Diag(Loc, diag::ext_forward_ref_enum_def)
16108           << New;
16109         Diag(Def->getLocation(), diag::note_previous_definition);
16110       } else {
16111         unsigned DiagID = diag::ext_forward_ref_enum;
16112         if (getLangOpts().MSVCCompat)
16113           DiagID = diag::ext_ms_forward_ref_enum;
16114         else if (getLangOpts().CPlusPlus)
16115           DiagID = diag::err_forward_ref_enum;
16116         Diag(Loc, DiagID);
16117       }
16118     }
16119 
16120     if (EnumUnderlying) {
16121       EnumDecl *ED = cast<EnumDecl>(New);
16122       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
16123         ED->setIntegerTypeSourceInfo(TI);
16124       else
16125         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
16126       ED->setPromotionType(ED->getIntegerType());
16127       assert(ED->isComplete() && "enum with type should be complete");
16128     }
16129   } else {
16130     // struct/union/class
16131 
16132     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
16133     // struct X { int A; } D;    D should chain to X.
16134     if (getLangOpts().CPlusPlus) {
16135       // FIXME: Look for a way to use RecordDecl for simple structs.
16136       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
16137                                   cast_or_null<CXXRecordDecl>(PrevDecl));
16138 
16139       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
16140         StdBadAlloc = cast<CXXRecordDecl>(New);
16141     } else
16142       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
16143                                cast_or_null<RecordDecl>(PrevDecl));
16144   }
16145 
16146   // C++11 [dcl.type]p3:
16147   //   A type-specifier-seq shall not define a class or enumeration [...].
16148   if (getLangOpts().CPlusPlus && (IsTypeSpecifier || IsTemplateParamOrArg) &&
16149       TUK == TUK_Definition) {
16150     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
16151       << Context.getTagDeclType(New);
16152     Invalid = true;
16153   }
16154 
16155   if (!Invalid && getLangOpts().CPlusPlus && TUK == TUK_Definition &&
16156       DC->getDeclKind() == Decl::Enum) {
16157     Diag(New->getLocation(), diag::err_type_defined_in_enum)
16158       << Context.getTagDeclType(New);
16159     Invalid = true;
16160   }
16161 
16162   // Maybe add qualifier info.
16163   if (SS.isNotEmpty()) {
16164     if (SS.isSet()) {
16165       // If this is either a declaration or a definition, check the
16166       // nested-name-specifier against the current context.
16167       if ((TUK == TUK_Definition || TUK == TUK_Declaration) &&
16168           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc,
16169                                        isMemberSpecialization))
16170         Invalid = true;
16171 
16172       New->setQualifierInfo(SS.getWithLocInContext(Context));
16173       if (TemplateParameterLists.size() > 0) {
16174         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
16175       }
16176     }
16177     else
16178       Invalid = true;
16179   }
16180 
16181   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
16182     // Add alignment attributes if necessary; these attributes are checked when
16183     // the ASTContext lays out the structure.
16184     //
16185     // It is important for implementing the correct semantics that this
16186     // happen here (in ActOnTag). The #pragma pack stack is
16187     // maintained as a result of parser callbacks which can occur at
16188     // many points during the parsing of a struct declaration (because
16189     // the #pragma tokens are effectively skipped over during the
16190     // parsing of the struct).
16191     if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip)) {
16192       AddAlignmentAttributesForRecord(RD);
16193       AddMsStructLayoutForRecord(RD);
16194     }
16195   }
16196 
16197   if (ModulePrivateLoc.isValid()) {
16198     if (isMemberSpecialization)
16199       Diag(New->getLocation(), diag::err_module_private_specialization)
16200         << 2
16201         << FixItHint::CreateRemoval(ModulePrivateLoc);
16202     // __module_private__ does not apply to local classes. However, we only
16203     // diagnose this as an error when the declaration specifiers are
16204     // freestanding. Here, we just ignore the __module_private__.
16205     else if (!SearchDC->isFunctionOrMethod())
16206       New->setModulePrivate();
16207   }
16208 
16209   // If this is a specialization of a member class (of a class template),
16210   // check the specialization.
16211   if (isMemberSpecialization && CheckMemberSpecialization(New, Previous))
16212     Invalid = true;
16213 
16214   // If we're declaring or defining a tag in function prototype scope in C,
16215   // note that this type can only be used within the function and add it to
16216   // the list of decls to inject into the function definition scope.
16217   if ((Name || Kind == TTK_Enum) &&
16218       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
16219     if (getLangOpts().CPlusPlus) {
16220       // C++ [dcl.fct]p6:
16221       //   Types shall not be defined in return or parameter types.
16222       if (TUK == TUK_Definition && !IsTypeSpecifier) {
16223         Diag(Loc, diag::err_type_defined_in_param_type)
16224             << Name;
16225         Invalid = true;
16226       }
16227     } else if (!PrevDecl) {
16228       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
16229     }
16230   }
16231 
16232   if (Invalid)
16233     New->setInvalidDecl();
16234 
16235   // Set the lexical context. If the tag has a C++ scope specifier, the
16236   // lexical context will be different from the semantic context.
16237   New->setLexicalDeclContext(CurContext);
16238 
16239   // Mark this as a friend decl if applicable.
16240   // In Microsoft mode, a friend declaration also acts as a forward
16241   // declaration so we always pass true to setObjectOfFriendDecl to make
16242   // the tag name visible.
16243   if (TUK == TUK_Friend)
16244     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
16245 
16246   // Set the access specifier.
16247   if (!Invalid && SearchDC->isRecord())
16248     SetMemberAccessSpecifier(New, PrevDecl, AS);
16249 
16250   if (PrevDecl)
16251     CheckRedeclarationModuleOwnership(New, PrevDecl);
16252 
16253   if (TUK == TUK_Definition && (!SkipBody || !SkipBody->ShouldSkip))
16254     New->startDefinition();
16255 
16256   ProcessDeclAttributeList(S, New, Attrs);
16257   AddPragmaAttributes(S, New);
16258 
16259   // If this has an identifier, add it to the scope stack.
16260   if (TUK == TUK_Friend) {
16261     // We might be replacing an existing declaration in the lookup tables;
16262     // if so, borrow its access specifier.
16263     if (PrevDecl)
16264       New->setAccess(PrevDecl->getAccess());
16265 
16266     DeclContext *DC = New->getDeclContext()->getRedeclContext();
16267     DC->makeDeclVisibleInContext(New);
16268     if (Name) // can be null along some error paths
16269       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
16270         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
16271   } else if (Name) {
16272     S = getNonFieldDeclScope(S);
16273     PushOnScopeChains(New, S, true);
16274   } else {
16275     CurContext->addDecl(New);
16276   }
16277 
16278   // If this is the C FILE type, notify the AST context.
16279   if (IdentifierInfo *II = New->getIdentifier())
16280     if (!New->isInvalidDecl() &&
16281         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
16282         II->isStr("FILE"))
16283       Context.setFILEDecl(New);
16284 
16285   if (PrevDecl)
16286     mergeDeclAttributes(New, PrevDecl);
16287 
16288   if (auto *CXXRD = dyn_cast<CXXRecordDecl>(New))
16289     inferGslOwnerPointerAttribute(CXXRD);
16290 
16291   // If there's a #pragma GCC visibility in scope, set the visibility of this
16292   // record.
16293   AddPushedVisibilityAttribute(New);
16294 
16295   if (isMemberSpecialization && !New->isInvalidDecl())
16296     CompleteMemberSpecialization(New, Previous);
16297 
16298   OwnedDecl = true;
16299   // In C++, don't return an invalid declaration. We can't recover well from
16300   // the cases where we make the type anonymous.
16301   if (Invalid && getLangOpts().CPlusPlus) {
16302     if (New->isBeingDefined())
16303       if (auto RD = dyn_cast<RecordDecl>(New))
16304         RD->completeDefinition();
16305     return nullptr;
16306   } else if (SkipBody && SkipBody->ShouldSkip) {
16307     return SkipBody->Previous;
16308   } else {
16309     return New;
16310   }
16311 }
16312 
16313 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
16314   AdjustDeclIfTemplate(TagD);
16315   TagDecl *Tag = cast<TagDecl>(TagD);
16316 
16317   // Enter the tag context.
16318   PushDeclContext(S, Tag);
16319 
16320   ActOnDocumentableDecl(TagD);
16321 
16322   // If there's a #pragma GCC visibility in scope, set the visibility of this
16323   // record.
16324   AddPushedVisibilityAttribute(Tag);
16325 }
16326 
16327 bool Sema::ActOnDuplicateDefinition(DeclSpec &DS, Decl *Prev,
16328                                     SkipBodyInfo &SkipBody) {
16329   if (!hasStructuralCompatLayout(Prev, SkipBody.New))
16330     return false;
16331 
16332   // Make the previous decl visible.
16333   makeMergedDefinitionVisible(SkipBody.Previous);
16334   return true;
16335 }
16336 
16337 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
16338   assert(isa<ObjCContainerDecl>(IDecl) &&
16339          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
16340   DeclContext *OCD = cast<DeclContext>(IDecl);
16341   assert(OCD->getLexicalParent() == CurContext &&
16342       "The next DeclContext should be lexically contained in the current one.");
16343   CurContext = OCD;
16344   return IDecl;
16345 }
16346 
16347 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
16348                                            SourceLocation FinalLoc,
16349                                            bool IsFinalSpelledSealed,
16350                                            SourceLocation LBraceLoc) {
16351   AdjustDeclIfTemplate(TagD);
16352   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
16353 
16354   FieldCollector->StartClass();
16355 
16356   if (!Record->getIdentifier())
16357     return;
16358 
16359   if (FinalLoc.isValid())
16360     Record->addAttr(FinalAttr::Create(
16361         Context, FinalLoc, AttributeCommonInfo::AS_Keyword,
16362         static_cast<FinalAttr::Spelling>(IsFinalSpelledSealed)));
16363 
16364   // C++ [class]p2:
16365   //   [...] The class-name is also inserted into the scope of the
16366   //   class itself; this is known as the injected-class-name. For
16367   //   purposes of access checking, the injected-class-name is treated
16368   //   as if it were a public member name.
16369   CXXRecordDecl *InjectedClassName = CXXRecordDecl::Create(
16370       Context, Record->getTagKind(), CurContext, Record->getBeginLoc(),
16371       Record->getLocation(), Record->getIdentifier(),
16372       /*PrevDecl=*/nullptr,
16373       /*DelayTypeCreation=*/true);
16374   Context.getTypeDeclType(InjectedClassName, Record);
16375   InjectedClassName->setImplicit();
16376   InjectedClassName->setAccess(AS_public);
16377   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
16378       InjectedClassName->setDescribedClassTemplate(Template);
16379   PushOnScopeChains(InjectedClassName, S);
16380   assert(InjectedClassName->isInjectedClassName() &&
16381          "Broken injected-class-name");
16382 }
16383 
16384 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
16385                                     SourceRange BraceRange) {
16386   AdjustDeclIfTemplate(TagD);
16387   TagDecl *Tag = cast<TagDecl>(TagD);
16388   Tag->setBraceRange(BraceRange);
16389 
16390   // Make sure we "complete" the definition even it is invalid.
16391   if (Tag->isBeingDefined()) {
16392     assert(Tag->isInvalidDecl() && "We should already have completed it");
16393     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
16394       RD->completeDefinition();
16395   }
16396 
16397   if (isa<CXXRecordDecl>(Tag)) {
16398     FieldCollector->FinishClass();
16399   }
16400 
16401   // Exit this scope of this tag's definition.
16402   PopDeclContext();
16403 
16404   if (getCurLexicalContext()->isObjCContainer() &&
16405       Tag->getDeclContext()->isFileContext())
16406     Tag->setTopLevelDeclInObjCContainer();
16407 
16408   // Notify the consumer that we've defined a tag.
16409   if (!Tag->isInvalidDecl())
16410     Consumer.HandleTagDeclDefinition(Tag);
16411 }
16412 
16413 void Sema::ActOnObjCContainerFinishDefinition() {
16414   // Exit this scope of this interface definition.
16415   PopDeclContext();
16416 }
16417 
16418 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
16419   assert(DC == CurContext && "Mismatch of container contexts");
16420   OriginalLexicalContext = DC;
16421   ActOnObjCContainerFinishDefinition();
16422 }
16423 
16424 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
16425   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
16426   OriginalLexicalContext = nullptr;
16427 }
16428 
16429 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
16430   AdjustDeclIfTemplate(TagD);
16431   TagDecl *Tag = cast<TagDecl>(TagD);
16432   Tag->setInvalidDecl();
16433 
16434   // Make sure we "complete" the definition even it is invalid.
16435   if (Tag->isBeingDefined()) {
16436     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
16437       RD->completeDefinition();
16438   }
16439 
16440   // We're undoing ActOnTagStartDefinition here, not
16441   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
16442   // the FieldCollector.
16443 
16444   PopDeclContext();
16445 }
16446 
16447 // Note that FieldName may be null for anonymous bitfields.
16448 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
16449                                 IdentifierInfo *FieldName,
16450                                 QualType FieldTy, bool IsMsStruct,
16451                                 Expr *BitWidth, bool *ZeroWidth) {
16452   assert(BitWidth);
16453   if (BitWidth->containsErrors())
16454     return ExprError();
16455 
16456   // Default to true; that shouldn't confuse checks for emptiness
16457   if (ZeroWidth)
16458     *ZeroWidth = true;
16459 
16460   // C99 6.7.2.1p4 - verify the field type.
16461   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
16462   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
16463     // Handle incomplete and sizeless types with a specific error.
16464     if (RequireCompleteSizedType(FieldLoc, FieldTy,
16465                                  diag::err_field_incomplete_or_sizeless))
16466       return ExprError();
16467     if (FieldName)
16468       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
16469         << FieldName << FieldTy << BitWidth->getSourceRange();
16470     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
16471       << FieldTy << BitWidth->getSourceRange();
16472   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
16473                                              UPPC_BitFieldWidth))
16474     return ExprError();
16475 
16476   // If the bit-width is type- or value-dependent, don't try to check
16477   // it now.
16478   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
16479     return BitWidth;
16480 
16481   llvm::APSInt Value;
16482   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value, AllowFold);
16483   if (ICE.isInvalid())
16484     return ICE;
16485   BitWidth = ICE.get();
16486 
16487   if (Value != 0 && ZeroWidth)
16488     *ZeroWidth = false;
16489 
16490   // Zero-width bitfield is ok for anonymous field.
16491   if (Value == 0 && FieldName)
16492     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
16493 
16494   if (Value.isSigned() && Value.isNegative()) {
16495     if (FieldName)
16496       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
16497                << FieldName << Value.toString(10);
16498     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
16499       << Value.toString(10);
16500   }
16501 
16502   // The size of the bit-field must not exceed our maximum permitted object
16503   // size.
16504   if (Value.getActiveBits() > ConstantArrayType::getMaxSizeBits(Context)) {
16505     return Diag(FieldLoc, diag::err_bitfield_too_wide)
16506            << !FieldName << FieldName << Value.toString(10);
16507   }
16508 
16509   if (!FieldTy->isDependentType()) {
16510     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
16511     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
16512     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
16513 
16514     // Over-wide bitfields are an error in C or when using the MSVC bitfield
16515     // ABI.
16516     bool CStdConstraintViolation =
16517         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
16518     bool MSBitfieldViolation =
16519         Value.ugt(TypeStorageSize) &&
16520         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
16521     if (CStdConstraintViolation || MSBitfieldViolation) {
16522       unsigned DiagWidth =
16523           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
16524       if (FieldName)
16525         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
16526                << FieldName << Value.toString(10)
16527                << !CStdConstraintViolation << DiagWidth;
16528 
16529       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
16530              << Value.toString(10) << !CStdConstraintViolation
16531              << DiagWidth;
16532     }
16533 
16534     // Warn on types where the user might conceivably expect to get all
16535     // specified bits as value bits: that's all integral types other than
16536     // 'bool'.
16537     if (BitfieldIsOverwide && !FieldTy->isBooleanType() && FieldName) {
16538       Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
16539           << FieldName << Value.toString(10)
16540           << (unsigned)TypeWidth;
16541     }
16542   }
16543 
16544   return BitWidth;
16545 }
16546 
16547 /// ActOnField - Each field of a C struct/union is passed into this in order
16548 /// to create a FieldDecl object for it.
16549 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
16550                        Declarator &D, Expr *BitfieldWidth) {
16551   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
16552                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
16553                                /*InitStyle=*/ICIS_NoInit, AS_public);
16554   return Res;
16555 }
16556 
16557 /// HandleField - Analyze a field of a C struct or a C++ data member.
16558 ///
16559 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
16560                              SourceLocation DeclStart,
16561                              Declarator &D, Expr *BitWidth,
16562                              InClassInitStyle InitStyle,
16563                              AccessSpecifier AS) {
16564   if (D.isDecompositionDeclarator()) {
16565     const DecompositionDeclarator &Decomp = D.getDecompositionDeclarator();
16566     Diag(Decomp.getLSquareLoc(), diag::err_decomp_decl_context)
16567       << Decomp.getSourceRange();
16568     return nullptr;
16569   }
16570 
16571   IdentifierInfo *II = D.getIdentifier();
16572   SourceLocation Loc = DeclStart;
16573   if (II) Loc = D.getIdentifierLoc();
16574 
16575   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
16576   QualType T = TInfo->getType();
16577   if (getLangOpts().CPlusPlus) {
16578     CheckExtraCXXDefaultArguments(D);
16579 
16580     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
16581                                         UPPC_DataMemberType)) {
16582       D.setInvalidType();
16583       T = Context.IntTy;
16584       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
16585     }
16586   }
16587 
16588   DiagnoseFunctionSpecifiers(D.getDeclSpec());
16589 
16590   if (D.getDeclSpec().isInlineSpecified())
16591     Diag(D.getDeclSpec().getInlineSpecLoc(), diag::err_inline_non_function)
16592         << getLangOpts().CPlusPlus17;
16593   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
16594     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
16595          diag::err_invalid_thread)
16596       << DeclSpec::getSpecifierName(TSCS);
16597 
16598   // Check to see if this name was declared as a member previously
16599   NamedDecl *PrevDecl = nullptr;
16600   LookupResult Previous(*this, II, Loc, LookupMemberName,
16601                         ForVisibleRedeclaration);
16602   LookupName(Previous, S);
16603   switch (Previous.getResultKind()) {
16604     case LookupResult::Found:
16605     case LookupResult::FoundUnresolvedValue:
16606       PrevDecl = Previous.getAsSingle<NamedDecl>();
16607       break;
16608 
16609     case LookupResult::FoundOverloaded:
16610       PrevDecl = Previous.getRepresentativeDecl();
16611       break;
16612 
16613     case LookupResult::NotFound:
16614     case LookupResult::NotFoundInCurrentInstantiation:
16615     case LookupResult::Ambiguous:
16616       break;
16617   }
16618   Previous.suppressDiagnostics();
16619 
16620   if (PrevDecl && PrevDecl->isTemplateParameter()) {
16621     // Maybe we will complain about the shadowed template parameter.
16622     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
16623     // Just pretend that we didn't see the previous declaration.
16624     PrevDecl = nullptr;
16625   }
16626 
16627   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
16628     PrevDecl = nullptr;
16629 
16630   bool Mutable
16631     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
16632   SourceLocation TSSL = D.getBeginLoc();
16633   FieldDecl *NewFD
16634     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
16635                      TSSL, AS, PrevDecl, &D);
16636 
16637   if (NewFD->isInvalidDecl())
16638     Record->setInvalidDecl();
16639 
16640   if (D.getDeclSpec().isModulePrivateSpecified())
16641     NewFD->setModulePrivate();
16642 
16643   if (NewFD->isInvalidDecl() && PrevDecl) {
16644     // Don't introduce NewFD into scope; there's already something
16645     // with the same name in the same scope.
16646   } else if (II) {
16647     PushOnScopeChains(NewFD, S);
16648   } else
16649     Record->addDecl(NewFD);
16650 
16651   return NewFD;
16652 }
16653 
16654 /// Build a new FieldDecl and check its well-formedness.
16655 ///
16656 /// This routine builds a new FieldDecl given the fields name, type,
16657 /// record, etc. \p PrevDecl should refer to any previous declaration
16658 /// with the same name and in the same scope as the field to be
16659 /// created.
16660 ///
16661 /// \returns a new FieldDecl.
16662 ///
16663 /// \todo The Declarator argument is a hack. It will be removed once
16664 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
16665                                 TypeSourceInfo *TInfo,
16666                                 RecordDecl *Record, SourceLocation Loc,
16667                                 bool Mutable, Expr *BitWidth,
16668                                 InClassInitStyle InitStyle,
16669                                 SourceLocation TSSL,
16670                                 AccessSpecifier AS, NamedDecl *PrevDecl,
16671                                 Declarator *D) {
16672   IdentifierInfo *II = Name.getAsIdentifierInfo();
16673   bool InvalidDecl = false;
16674   if (D) InvalidDecl = D->isInvalidType();
16675 
16676   // If we receive a broken type, recover by assuming 'int' and
16677   // marking this declaration as invalid.
16678   if (T.isNull() || T->containsErrors()) {
16679     InvalidDecl = true;
16680     T = Context.IntTy;
16681   }
16682 
16683   QualType EltTy = Context.getBaseElementType(T);
16684   if (!EltTy->isDependentType() && !EltTy->containsErrors()) {
16685     if (RequireCompleteSizedType(Loc, EltTy,
16686                                  diag::err_field_incomplete_or_sizeless)) {
16687       // Fields of incomplete type force their record to be invalid.
16688       Record->setInvalidDecl();
16689       InvalidDecl = true;
16690     } else {
16691       NamedDecl *Def;
16692       EltTy->isIncompleteType(&Def);
16693       if (Def && Def->isInvalidDecl()) {
16694         Record->setInvalidDecl();
16695         InvalidDecl = true;
16696       }
16697     }
16698   }
16699 
16700   // TR 18037 does not allow fields to be declared with address space
16701   if (T.hasAddressSpace() || T->isDependentAddressSpaceType() ||
16702       T->getBaseElementTypeUnsafe()->isDependentAddressSpaceType()) {
16703     Diag(Loc, diag::err_field_with_address_space);
16704     Record->setInvalidDecl();
16705     InvalidDecl = true;
16706   }
16707 
16708   if (LangOpts.OpenCL) {
16709     // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
16710     // used as structure or union field: image, sampler, event or block types.
16711     if (T->isEventT() || T->isImageType() || T->isSamplerT() ||
16712         T->isBlockPointerType()) {
16713       Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
16714       Record->setInvalidDecl();
16715       InvalidDecl = true;
16716     }
16717     // OpenCL v1.2 s6.9.c: bitfields are not supported.
16718     if (BitWidth) {
16719       Diag(Loc, diag::err_opencl_bitfields);
16720       InvalidDecl = true;
16721     }
16722   }
16723 
16724   // Anonymous bit-fields cannot be cv-qualified (CWG 2229).
16725   if (!InvalidDecl && getLangOpts().CPlusPlus && !II && BitWidth &&
16726       T.hasQualifiers()) {
16727     InvalidDecl = true;
16728     Diag(Loc, diag::err_anon_bitfield_qualifiers);
16729   }
16730 
16731   // C99 6.7.2.1p8: A member of a structure or union may have any type other
16732   // than a variably modified type.
16733   if (!InvalidDecl && T->isVariablyModifiedType()) {
16734     if (!tryToFixVariablyModifiedVarType(
16735             *this, TInfo, T, Loc, diag::err_typecheck_field_variable_size))
16736       InvalidDecl = true;
16737   }
16738 
16739   // Fields can not have abstract class types
16740   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
16741                                              diag::err_abstract_type_in_decl,
16742                                              AbstractFieldType))
16743     InvalidDecl = true;
16744 
16745   bool ZeroWidth = false;
16746   if (InvalidDecl)
16747     BitWidth = nullptr;
16748   // If this is declared as a bit-field, check the bit-field.
16749   if (BitWidth) {
16750     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
16751                               &ZeroWidth).get();
16752     if (!BitWidth) {
16753       InvalidDecl = true;
16754       BitWidth = nullptr;
16755       ZeroWidth = false;
16756     }
16757   }
16758 
16759   // Check that 'mutable' is consistent with the type of the declaration.
16760   if (!InvalidDecl && Mutable) {
16761     unsigned DiagID = 0;
16762     if (T->isReferenceType())
16763       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
16764                                         : diag::err_mutable_reference;
16765     else if (T.isConstQualified())
16766       DiagID = diag::err_mutable_const;
16767 
16768     if (DiagID) {
16769       SourceLocation ErrLoc = Loc;
16770       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
16771         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
16772       Diag(ErrLoc, DiagID);
16773       if (DiagID != diag::ext_mutable_reference) {
16774         Mutable = false;
16775         InvalidDecl = true;
16776       }
16777     }
16778   }
16779 
16780   // C++11 [class.union]p8 (DR1460):
16781   //   At most one variant member of a union may have a
16782   //   brace-or-equal-initializer.
16783   if (InitStyle != ICIS_NoInit)
16784     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
16785 
16786   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
16787                                        BitWidth, Mutable, InitStyle);
16788   if (InvalidDecl)
16789     NewFD->setInvalidDecl();
16790 
16791   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
16792     Diag(Loc, diag::err_duplicate_member) << II;
16793     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
16794     NewFD->setInvalidDecl();
16795   }
16796 
16797   if (!InvalidDecl && getLangOpts().CPlusPlus) {
16798     if (Record->isUnion()) {
16799       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
16800         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
16801         if (RDecl->getDefinition()) {
16802           // C++ [class.union]p1: An object of a class with a non-trivial
16803           // constructor, a non-trivial copy constructor, a non-trivial
16804           // destructor, or a non-trivial copy assignment operator
16805           // cannot be a member of a union, nor can an array of such
16806           // objects.
16807           if (CheckNontrivialField(NewFD))
16808             NewFD->setInvalidDecl();
16809         }
16810       }
16811 
16812       // C++ [class.union]p1: If a union contains a member of reference type,
16813       // the program is ill-formed, except when compiling with MSVC extensions
16814       // enabled.
16815       if (EltTy->isReferenceType()) {
16816         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
16817                                     diag::ext_union_member_of_reference_type :
16818                                     diag::err_union_member_of_reference_type)
16819           << NewFD->getDeclName() << EltTy;
16820         if (!getLangOpts().MicrosoftExt)
16821           NewFD->setInvalidDecl();
16822       }
16823     }
16824   }
16825 
16826   // FIXME: We need to pass in the attributes given an AST
16827   // representation, not a parser representation.
16828   if (D) {
16829     // FIXME: The current scope is almost... but not entirely... correct here.
16830     ProcessDeclAttributes(getCurScope(), NewFD, *D);
16831 
16832     if (NewFD->hasAttrs())
16833       CheckAlignasUnderalignment(NewFD);
16834   }
16835 
16836   // In auto-retain/release, infer strong retension for fields of
16837   // retainable type.
16838   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
16839     NewFD->setInvalidDecl();
16840 
16841   if (T.isObjCGCWeak())
16842     Diag(Loc, diag::warn_attribute_weak_on_field);
16843 
16844   // PPC MMA non-pointer types are not allowed as field types.
16845   if (Context.getTargetInfo().getTriple().isPPC64() &&
16846       CheckPPCMMAType(T, NewFD->getLocation()))
16847     NewFD->setInvalidDecl();
16848 
16849   NewFD->setAccess(AS);
16850   return NewFD;
16851 }
16852 
16853 bool Sema::CheckNontrivialField(FieldDecl *FD) {
16854   assert(FD);
16855   assert(getLangOpts().CPlusPlus && "valid check only for C++");
16856 
16857   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
16858     return false;
16859 
16860   QualType EltTy = Context.getBaseElementType(FD->getType());
16861   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
16862     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
16863     if (RDecl->getDefinition()) {
16864       // We check for copy constructors before constructors
16865       // because otherwise we'll never get complaints about
16866       // copy constructors.
16867 
16868       CXXSpecialMember member = CXXInvalid;
16869       // We're required to check for any non-trivial constructors. Since the
16870       // implicit default constructor is suppressed if there are any
16871       // user-declared constructors, we just need to check that there is a
16872       // trivial default constructor and a trivial copy constructor. (We don't
16873       // worry about move constructors here, since this is a C++98 check.)
16874       if (RDecl->hasNonTrivialCopyConstructor())
16875         member = CXXCopyConstructor;
16876       else if (!RDecl->hasTrivialDefaultConstructor())
16877         member = CXXDefaultConstructor;
16878       else if (RDecl->hasNonTrivialCopyAssignment())
16879         member = CXXCopyAssignment;
16880       else if (RDecl->hasNonTrivialDestructor())
16881         member = CXXDestructor;
16882 
16883       if (member != CXXInvalid) {
16884         if (!getLangOpts().CPlusPlus11 &&
16885             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
16886           // Objective-C++ ARC: it is an error to have a non-trivial field of
16887           // a union. However, system headers in Objective-C programs
16888           // occasionally have Objective-C lifetime objects within unions,
16889           // and rather than cause the program to fail, we make those
16890           // members unavailable.
16891           SourceLocation Loc = FD->getLocation();
16892           if (getSourceManager().isInSystemHeader(Loc)) {
16893             if (!FD->hasAttr<UnavailableAttr>())
16894               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
16895                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
16896             return false;
16897           }
16898         }
16899 
16900         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
16901                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
16902                diag::err_illegal_union_or_anon_struct_member)
16903           << FD->getParent()->isUnion() << FD->getDeclName() << member;
16904         DiagnoseNontrivial(RDecl, member);
16905         return !getLangOpts().CPlusPlus11;
16906       }
16907     }
16908   }
16909 
16910   return false;
16911 }
16912 
16913 /// TranslateIvarVisibility - Translate visibility from a token ID to an
16914 ///  AST enum value.
16915 static ObjCIvarDecl::AccessControl
16916 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
16917   switch (ivarVisibility) {
16918   default: llvm_unreachable("Unknown visitibility kind");
16919   case tok::objc_private: return ObjCIvarDecl::Private;
16920   case tok::objc_public: return ObjCIvarDecl::Public;
16921   case tok::objc_protected: return ObjCIvarDecl::Protected;
16922   case tok::objc_package: return ObjCIvarDecl::Package;
16923   }
16924 }
16925 
16926 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
16927 /// in order to create an IvarDecl object for it.
16928 Decl *Sema::ActOnIvar(Scope *S,
16929                                 SourceLocation DeclStart,
16930                                 Declarator &D, Expr *BitfieldWidth,
16931                                 tok::ObjCKeywordKind Visibility) {
16932 
16933   IdentifierInfo *II = D.getIdentifier();
16934   Expr *BitWidth = (Expr*)BitfieldWidth;
16935   SourceLocation Loc = DeclStart;
16936   if (II) Loc = D.getIdentifierLoc();
16937 
16938   // FIXME: Unnamed fields can be handled in various different ways, for
16939   // example, unnamed unions inject all members into the struct namespace!
16940 
16941   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
16942   QualType T = TInfo->getType();
16943 
16944   if (BitWidth) {
16945     // 6.7.2.1p3, 6.7.2.1p4
16946     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
16947     if (!BitWidth)
16948       D.setInvalidType();
16949   } else {
16950     // Not a bitfield.
16951 
16952     // validate II.
16953 
16954   }
16955   if (T->isReferenceType()) {
16956     Diag(Loc, diag::err_ivar_reference_type);
16957     D.setInvalidType();
16958   }
16959   // C99 6.7.2.1p8: A member of a structure or union may have any type other
16960   // than a variably modified type.
16961   else if (T->isVariablyModifiedType()) {
16962     if (!tryToFixVariablyModifiedVarType(
16963             *this, TInfo, T, Loc, diag::err_typecheck_ivar_variable_size))
16964       D.setInvalidType();
16965   }
16966 
16967   // Get the visibility (access control) for this ivar.
16968   ObjCIvarDecl::AccessControl ac =
16969     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
16970                                         : ObjCIvarDecl::None;
16971   // Must set ivar's DeclContext to its enclosing interface.
16972   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
16973   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
16974     return nullptr;
16975   ObjCContainerDecl *EnclosingContext;
16976   if (ObjCImplementationDecl *IMPDecl =
16977       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
16978     if (LangOpts.ObjCRuntime.isFragile()) {
16979     // Case of ivar declared in an implementation. Context is that of its class.
16980       EnclosingContext = IMPDecl->getClassInterface();
16981       assert(EnclosingContext && "Implementation has no class interface!");
16982     }
16983     else
16984       EnclosingContext = EnclosingDecl;
16985   } else {
16986     if (ObjCCategoryDecl *CDecl =
16987         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
16988       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
16989         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
16990         return nullptr;
16991       }
16992     }
16993     EnclosingContext = EnclosingDecl;
16994   }
16995 
16996   // Construct the decl.
16997   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
16998                                              DeclStart, Loc, II, T,
16999                                              TInfo, ac, (Expr *)BitfieldWidth);
17000 
17001   if (II) {
17002     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
17003                                            ForVisibleRedeclaration);
17004     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
17005         && !isa<TagDecl>(PrevDecl)) {
17006       Diag(Loc, diag::err_duplicate_member) << II;
17007       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
17008       NewID->setInvalidDecl();
17009     }
17010   }
17011 
17012   // Process attributes attached to the ivar.
17013   ProcessDeclAttributes(S, NewID, D);
17014 
17015   if (D.isInvalidType())
17016     NewID->setInvalidDecl();
17017 
17018   // In ARC, infer 'retaining' for ivars of retainable type.
17019   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
17020     NewID->setInvalidDecl();
17021 
17022   if (D.getDeclSpec().isModulePrivateSpecified())
17023     NewID->setModulePrivate();
17024 
17025   if (II) {
17026     // FIXME: When interfaces are DeclContexts, we'll need to add
17027     // these to the interface.
17028     S->AddDecl(NewID);
17029     IdResolver.AddDecl(NewID);
17030   }
17031 
17032   if (LangOpts.ObjCRuntime.isNonFragile() &&
17033       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
17034     Diag(Loc, diag::warn_ivars_in_interface);
17035 
17036   return NewID;
17037 }
17038 
17039 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for
17040 /// class and class extensions. For every class \@interface and class
17041 /// extension \@interface, if the last ivar is a bitfield of any type,
17042 /// then add an implicit `char :0` ivar to the end of that interface.
17043 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
17044                              SmallVectorImpl<Decl *> &AllIvarDecls) {
17045   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
17046     return;
17047 
17048   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
17049   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
17050 
17051   if (!Ivar->isBitField() || Ivar->isZeroLengthBitField(Context))
17052     return;
17053   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
17054   if (!ID) {
17055     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
17056       if (!CD->IsClassExtension())
17057         return;
17058     }
17059     // No need to add this to end of @implementation.
17060     else
17061       return;
17062   }
17063   // All conditions are met. Add a new bitfield to the tail end of ivars.
17064   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
17065   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
17066 
17067   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
17068                               DeclLoc, DeclLoc, nullptr,
17069                               Context.CharTy,
17070                               Context.getTrivialTypeSourceInfo(Context.CharTy,
17071                                                                DeclLoc),
17072                               ObjCIvarDecl::Private, BW,
17073                               true);
17074   AllIvarDecls.push_back(Ivar);
17075 }
17076 
17077 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
17078                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
17079                        SourceLocation RBrac,
17080                        const ParsedAttributesView &Attrs) {
17081   assert(EnclosingDecl && "missing record or interface decl");
17082 
17083   // If this is an Objective-C @implementation or category and we have
17084   // new fields here we should reset the layout of the interface since
17085   // it will now change.
17086   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
17087     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
17088     switch (DC->getKind()) {
17089     default: break;
17090     case Decl::ObjCCategory:
17091       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
17092       break;
17093     case Decl::ObjCImplementation:
17094       Context.
17095         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
17096       break;
17097     }
17098   }
17099 
17100   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
17101   CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(EnclosingDecl);
17102 
17103   // Start counting up the number of named members; make sure to include
17104   // members of anonymous structs and unions in the total.
17105   unsigned NumNamedMembers = 0;
17106   if (Record) {
17107     for (const auto *I : Record->decls()) {
17108       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
17109         if (IFD->getDeclName())
17110           ++NumNamedMembers;
17111     }
17112   }
17113 
17114   // Verify that all the fields are okay.
17115   SmallVector<FieldDecl*, 32> RecFields;
17116 
17117   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
17118        i != end; ++i) {
17119     FieldDecl *FD = cast<FieldDecl>(*i);
17120 
17121     // Get the type for the field.
17122     const Type *FDTy = FD->getType().getTypePtr();
17123 
17124     if (!FD->isAnonymousStructOrUnion()) {
17125       // Remember all fields written by the user.
17126       RecFields.push_back(FD);
17127     }
17128 
17129     // If the field is already invalid for some reason, don't emit more
17130     // diagnostics about it.
17131     if (FD->isInvalidDecl()) {
17132       EnclosingDecl->setInvalidDecl();
17133       continue;
17134     }
17135 
17136     // C99 6.7.2.1p2:
17137     //   A structure or union shall not contain a member with
17138     //   incomplete or function type (hence, a structure shall not
17139     //   contain an instance of itself, but may contain a pointer to
17140     //   an instance of itself), except that the last member of a
17141     //   structure with more than one named member may have incomplete
17142     //   array type; such a structure (and any union containing,
17143     //   possibly recursively, a member that is such a structure)
17144     //   shall not be a member of a structure or an element of an
17145     //   array.
17146     bool IsLastField = (i + 1 == Fields.end());
17147     if (FDTy->isFunctionType()) {
17148       // Field declared as a function.
17149       Diag(FD->getLocation(), diag::err_field_declared_as_function)
17150         << FD->getDeclName();
17151       FD->setInvalidDecl();
17152       EnclosingDecl->setInvalidDecl();
17153       continue;
17154     } else if (FDTy->isIncompleteArrayType() &&
17155                (Record || isa<ObjCContainerDecl>(EnclosingDecl))) {
17156       if (Record) {
17157         // Flexible array member.
17158         // Microsoft and g++ is more permissive regarding flexible array.
17159         // It will accept flexible array in union and also
17160         // as the sole element of a struct/class.
17161         unsigned DiagID = 0;
17162         if (!Record->isUnion() && !IsLastField) {
17163           Diag(FD->getLocation(), diag::err_flexible_array_not_at_end)
17164             << FD->getDeclName() << FD->getType() << Record->getTagKind();
17165           Diag((*(i + 1))->getLocation(), diag::note_next_field_declaration);
17166           FD->setInvalidDecl();
17167           EnclosingDecl->setInvalidDecl();
17168           continue;
17169         } else if (Record->isUnion())
17170           DiagID = getLangOpts().MicrosoftExt
17171                        ? diag::ext_flexible_array_union_ms
17172                        : getLangOpts().CPlusPlus
17173                              ? diag::ext_flexible_array_union_gnu
17174                              : diag::err_flexible_array_union;
17175         else if (NumNamedMembers < 1)
17176           DiagID = getLangOpts().MicrosoftExt
17177                        ? diag::ext_flexible_array_empty_aggregate_ms
17178                        : getLangOpts().CPlusPlus
17179                              ? diag::ext_flexible_array_empty_aggregate_gnu
17180                              : diag::err_flexible_array_empty_aggregate;
17181 
17182         if (DiagID)
17183           Diag(FD->getLocation(), DiagID) << FD->getDeclName()
17184                                           << Record->getTagKind();
17185         // While the layout of types that contain virtual bases is not specified
17186         // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
17187         // virtual bases after the derived members.  This would make a flexible
17188         // array member declared at the end of an object not adjacent to the end
17189         // of the type.
17190         if (CXXRecord && CXXRecord->getNumVBases() != 0)
17191           Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
17192               << FD->getDeclName() << Record->getTagKind();
17193         if (!getLangOpts().C99)
17194           Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
17195             << FD->getDeclName() << Record->getTagKind();
17196 
17197         // If the element type has a non-trivial destructor, we would not
17198         // implicitly destroy the elements, so disallow it for now.
17199         //
17200         // FIXME: GCC allows this. We should probably either implicitly delete
17201         // the destructor of the containing class, or just allow this.
17202         QualType BaseElem = Context.getBaseElementType(FD->getType());
17203         if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
17204           Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
17205             << FD->getDeclName() << FD->getType();
17206           FD->setInvalidDecl();
17207           EnclosingDecl->setInvalidDecl();
17208           continue;
17209         }
17210         // Okay, we have a legal flexible array member at the end of the struct.
17211         Record->setHasFlexibleArrayMember(true);
17212       } else {
17213         // In ObjCContainerDecl ivars with incomplete array type are accepted,
17214         // unless they are followed by another ivar. That check is done
17215         // elsewhere, after synthesized ivars are known.
17216       }
17217     } else if (!FDTy->isDependentType() &&
17218                RequireCompleteSizedType(
17219                    FD->getLocation(), FD->getType(),
17220                    diag::err_field_incomplete_or_sizeless)) {
17221       // Incomplete type
17222       FD->setInvalidDecl();
17223       EnclosingDecl->setInvalidDecl();
17224       continue;
17225     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
17226       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
17227         // A type which contains a flexible array member is considered to be a
17228         // flexible array member.
17229         Record->setHasFlexibleArrayMember(true);
17230         if (!Record->isUnion()) {
17231           // If this is a struct/class and this is not the last element, reject
17232           // it.  Note that GCC supports variable sized arrays in the middle of
17233           // structures.
17234           if (!IsLastField)
17235             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
17236               << FD->getDeclName() << FD->getType();
17237           else {
17238             // We support flexible arrays at the end of structs in
17239             // other structs as an extension.
17240             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
17241               << FD->getDeclName();
17242           }
17243         }
17244       }
17245       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
17246           RequireNonAbstractType(FD->getLocation(), FD->getType(),
17247                                  diag::err_abstract_type_in_decl,
17248                                  AbstractIvarType)) {
17249         // Ivars can not have abstract class types
17250         FD->setInvalidDecl();
17251       }
17252       if (Record && FDTTy->getDecl()->hasObjectMember())
17253         Record->setHasObjectMember(true);
17254       if (Record && FDTTy->getDecl()->hasVolatileMember())
17255         Record->setHasVolatileMember(true);
17256     } else if (FDTy->isObjCObjectType()) {
17257       /// A field cannot be an Objective-c object
17258       Diag(FD->getLocation(), diag::err_statically_allocated_object)
17259         << FixItHint::CreateInsertion(FD->getLocation(), "*");
17260       QualType T = Context.getObjCObjectPointerType(FD->getType());
17261       FD->setType(T);
17262     } else if (Record && Record->isUnion() &&
17263                FD->getType().hasNonTrivialObjCLifetime() &&
17264                getSourceManager().isInSystemHeader(FD->getLocation()) &&
17265                !getLangOpts().CPlusPlus && !FD->hasAttr<UnavailableAttr>() &&
17266                (FD->getType().getObjCLifetime() != Qualifiers::OCL_Strong ||
17267                 !Context.hasDirectOwnershipQualifier(FD->getType()))) {
17268       // For backward compatibility, fields of C unions declared in system
17269       // headers that have non-trivial ObjC ownership qualifications are marked
17270       // as unavailable unless the qualifier is explicit and __strong. This can
17271       // break ABI compatibility between programs compiled with ARC and MRR, but
17272       // is a better option than rejecting programs using those unions under
17273       // ARC.
17274       FD->addAttr(UnavailableAttr::CreateImplicit(
17275           Context, "", UnavailableAttr::IR_ARCFieldWithOwnership,
17276           FD->getLocation()));
17277     } else if (getLangOpts().ObjC &&
17278                getLangOpts().getGC() != LangOptions::NonGC && Record &&
17279                !Record->hasObjectMember()) {
17280       if (FD->getType()->isObjCObjectPointerType() ||
17281           FD->getType().isObjCGCStrong())
17282         Record->setHasObjectMember(true);
17283       else if (Context.getAsArrayType(FD->getType())) {
17284         QualType BaseType = Context.getBaseElementType(FD->getType());
17285         if (BaseType->isRecordType() &&
17286             BaseType->castAs<RecordType>()->getDecl()->hasObjectMember())
17287           Record->setHasObjectMember(true);
17288         else if (BaseType->isObjCObjectPointerType() ||
17289                  BaseType.isObjCGCStrong())
17290                Record->setHasObjectMember(true);
17291       }
17292     }
17293 
17294     if (Record && !getLangOpts().CPlusPlus &&
17295         !shouldIgnoreForRecordTriviality(FD)) {
17296       QualType FT = FD->getType();
17297       if (FT.isNonTrivialToPrimitiveDefaultInitialize()) {
17298         Record->setNonTrivialToPrimitiveDefaultInitialize(true);
17299         if (FT.hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
17300             Record->isUnion())
17301           Record->setHasNonTrivialToPrimitiveDefaultInitializeCUnion(true);
17302       }
17303       QualType::PrimitiveCopyKind PCK = FT.isNonTrivialToPrimitiveCopy();
17304       if (PCK != QualType::PCK_Trivial && PCK != QualType::PCK_VolatileTrivial) {
17305         Record->setNonTrivialToPrimitiveCopy(true);
17306         if (FT.hasNonTrivialToPrimitiveCopyCUnion() || Record->isUnion())
17307           Record->setHasNonTrivialToPrimitiveCopyCUnion(true);
17308       }
17309       if (FT.isDestructedType()) {
17310         Record->setNonTrivialToPrimitiveDestroy(true);
17311         Record->setParamDestroyedInCallee(true);
17312         if (FT.hasNonTrivialToPrimitiveDestructCUnion() || Record->isUnion())
17313           Record->setHasNonTrivialToPrimitiveDestructCUnion(true);
17314       }
17315 
17316       if (const auto *RT = FT->getAs<RecordType>()) {
17317         if (RT->getDecl()->getArgPassingRestrictions() ==
17318             RecordDecl::APK_CanNeverPassInRegs)
17319           Record->setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs);
17320       } else if (FT.getQualifiers().getObjCLifetime() == Qualifiers::OCL_Weak)
17321         Record->setArgPassingRestrictions(RecordDecl::APK_CanNeverPassInRegs);
17322     }
17323 
17324     if (Record && FD->getType().isVolatileQualified())
17325       Record->setHasVolatileMember(true);
17326     // Keep track of the number of named members.
17327     if (FD->getIdentifier())
17328       ++NumNamedMembers;
17329   }
17330 
17331   // Okay, we successfully defined 'Record'.
17332   if (Record) {
17333     bool Completed = false;
17334     if (CXXRecord) {
17335       if (!CXXRecord->isInvalidDecl()) {
17336         // Set access bits correctly on the directly-declared conversions.
17337         for (CXXRecordDecl::conversion_iterator
17338                I = CXXRecord->conversion_begin(),
17339                E = CXXRecord->conversion_end(); I != E; ++I)
17340           I.setAccess((*I)->getAccess());
17341       }
17342 
17343       // Add any implicitly-declared members to this class.
17344       AddImplicitlyDeclaredMembersToClass(CXXRecord);
17345 
17346       if (!CXXRecord->isDependentType()) {
17347         if (!CXXRecord->isInvalidDecl()) {
17348           // If we have virtual base classes, we may end up finding multiple
17349           // final overriders for a given virtual function. Check for this
17350           // problem now.
17351           if (CXXRecord->getNumVBases()) {
17352             CXXFinalOverriderMap FinalOverriders;
17353             CXXRecord->getFinalOverriders(FinalOverriders);
17354 
17355             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
17356                                              MEnd = FinalOverriders.end();
17357                  M != MEnd; ++M) {
17358               for (OverridingMethods::iterator SO = M->second.begin(),
17359                                             SOEnd = M->second.end();
17360                    SO != SOEnd; ++SO) {
17361                 assert(SO->second.size() > 0 &&
17362                        "Virtual function without overriding functions?");
17363                 if (SO->second.size() == 1)
17364                   continue;
17365 
17366                 // C++ [class.virtual]p2:
17367                 //   In a derived class, if a virtual member function of a base
17368                 //   class subobject has more than one final overrider the
17369                 //   program is ill-formed.
17370                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
17371                   << (const NamedDecl *)M->first << Record;
17372                 Diag(M->first->getLocation(),
17373                      diag::note_overridden_virtual_function);
17374                 for (OverridingMethods::overriding_iterator
17375                           OM = SO->second.begin(),
17376                        OMEnd = SO->second.end();
17377                      OM != OMEnd; ++OM)
17378                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
17379                     << (const NamedDecl *)M->first << OM->Method->getParent();
17380 
17381                 Record->setInvalidDecl();
17382               }
17383             }
17384             CXXRecord->completeDefinition(&FinalOverriders);
17385             Completed = true;
17386           }
17387         }
17388       }
17389     }
17390 
17391     if (!Completed)
17392       Record->completeDefinition();
17393 
17394     // Handle attributes before checking the layout.
17395     ProcessDeclAttributeList(S, Record, Attrs);
17396 
17397     // We may have deferred checking for a deleted destructor. Check now.
17398     if (CXXRecord) {
17399       auto *Dtor = CXXRecord->getDestructor();
17400       if (Dtor && Dtor->isImplicit() &&
17401           ShouldDeleteSpecialMember(Dtor, CXXDestructor)) {
17402         CXXRecord->setImplicitDestructorIsDeleted();
17403         SetDeclDeleted(Dtor, CXXRecord->getLocation());
17404       }
17405     }
17406 
17407     if (Record->hasAttrs()) {
17408       CheckAlignasUnderalignment(Record);
17409 
17410       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
17411         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
17412                                            IA->getRange(), IA->getBestCase(),
17413                                            IA->getInheritanceModel());
17414     }
17415 
17416     // Check if the structure/union declaration is a type that can have zero
17417     // size in C. For C this is a language extension, for C++ it may cause
17418     // compatibility problems.
17419     bool CheckForZeroSize;
17420     if (!getLangOpts().CPlusPlus) {
17421       CheckForZeroSize = true;
17422     } else {
17423       // For C++ filter out types that cannot be referenced in C code.
17424       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
17425       CheckForZeroSize =
17426           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
17427           !CXXRecord->isDependentType() && !inTemplateInstantiation() &&
17428           CXXRecord->isCLike();
17429     }
17430     if (CheckForZeroSize) {
17431       bool ZeroSize = true;
17432       bool IsEmpty = true;
17433       unsigned NonBitFields = 0;
17434       for (RecordDecl::field_iterator I = Record->field_begin(),
17435                                       E = Record->field_end();
17436            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
17437         IsEmpty = false;
17438         if (I->isUnnamedBitfield()) {
17439           if (!I->isZeroLengthBitField(Context))
17440             ZeroSize = false;
17441         } else {
17442           ++NonBitFields;
17443           QualType FieldType = I->getType();
17444           if (FieldType->isIncompleteType() ||
17445               !Context.getTypeSizeInChars(FieldType).isZero())
17446             ZeroSize = false;
17447         }
17448       }
17449 
17450       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
17451       // allowed in C++, but warn if its declaration is inside
17452       // extern "C" block.
17453       if (ZeroSize) {
17454         Diag(RecLoc, getLangOpts().CPlusPlus ?
17455                          diag::warn_zero_size_struct_union_in_extern_c :
17456                          diag::warn_zero_size_struct_union_compat)
17457           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
17458       }
17459 
17460       // Structs without named members are extension in C (C99 6.7.2.1p7),
17461       // but are accepted by GCC.
17462       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
17463         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
17464                                diag::ext_no_named_members_in_struct_union)
17465           << Record->isUnion();
17466       }
17467     }
17468   } else {
17469     ObjCIvarDecl **ClsFields =
17470       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
17471     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
17472       ID->setEndOfDefinitionLoc(RBrac);
17473       // Add ivar's to class's DeclContext.
17474       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
17475         ClsFields[i]->setLexicalDeclContext(ID);
17476         ID->addDecl(ClsFields[i]);
17477       }
17478       // Must enforce the rule that ivars in the base classes may not be
17479       // duplicates.
17480       if (ID->getSuperClass())
17481         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
17482     } else if (ObjCImplementationDecl *IMPDecl =
17483                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
17484       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
17485       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
17486         // Ivar declared in @implementation never belongs to the implementation.
17487         // Only it is in implementation's lexical context.
17488         ClsFields[I]->setLexicalDeclContext(IMPDecl);
17489       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
17490       IMPDecl->setIvarLBraceLoc(LBrac);
17491       IMPDecl->setIvarRBraceLoc(RBrac);
17492     } else if (ObjCCategoryDecl *CDecl =
17493                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
17494       // case of ivars in class extension; all other cases have been
17495       // reported as errors elsewhere.
17496       // FIXME. Class extension does not have a LocEnd field.
17497       // CDecl->setLocEnd(RBrac);
17498       // Add ivar's to class extension's DeclContext.
17499       // Diagnose redeclaration of private ivars.
17500       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
17501       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
17502         if (IDecl) {
17503           if (const ObjCIvarDecl *ClsIvar =
17504               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
17505             Diag(ClsFields[i]->getLocation(),
17506                  diag::err_duplicate_ivar_declaration);
17507             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
17508             continue;
17509           }
17510           for (const auto *Ext : IDecl->known_extensions()) {
17511             if (const ObjCIvarDecl *ClsExtIvar
17512                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
17513               Diag(ClsFields[i]->getLocation(),
17514                    diag::err_duplicate_ivar_declaration);
17515               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
17516               continue;
17517             }
17518           }
17519         }
17520         ClsFields[i]->setLexicalDeclContext(CDecl);
17521         CDecl->addDecl(ClsFields[i]);
17522       }
17523       CDecl->setIvarLBraceLoc(LBrac);
17524       CDecl->setIvarRBraceLoc(RBrac);
17525     }
17526   }
17527 }
17528 
17529 /// Determine whether the given integral value is representable within
17530 /// the given type T.
17531 static bool isRepresentableIntegerValue(ASTContext &Context,
17532                                         llvm::APSInt &Value,
17533                                         QualType T) {
17534   assert((T->isIntegralType(Context) || T->isEnumeralType()) &&
17535          "Integral type required!");
17536   unsigned BitWidth = Context.getIntWidth(T);
17537 
17538   if (Value.isUnsigned() || Value.isNonNegative()) {
17539     if (T->isSignedIntegerOrEnumerationType())
17540       --BitWidth;
17541     return Value.getActiveBits() <= BitWidth;
17542   }
17543   return Value.getMinSignedBits() <= BitWidth;
17544 }
17545 
17546 // Given an integral type, return the next larger integral type
17547 // (or a NULL type of no such type exists).
17548 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
17549   // FIXME: Int128/UInt128 support, which also needs to be introduced into
17550   // enum checking below.
17551   assert((T->isIntegralType(Context) ||
17552          T->isEnumeralType()) && "Integral type required!");
17553   const unsigned NumTypes = 4;
17554   QualType SignedIntegralTypes[NumTypes] = {
17555     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
17556   };
17557   QualType UnsignedIntegralTypes[NumTypes] = {
17558     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
17559     Context.UnsignedLongLongTy
17560   };
17561 
17562   unsigned BitWidth = Context.getTypeSize(T);
17563   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
17564                                                         : UnsignedIntegralTypes;
17565   for (unsigned I = 0; I != NumTypes; ++I)
17566     if (Context.getTypeSize(Types[I]) > BitWidth)
17567       return Types[I];
17568 
17569   return QualType();
17570 }
17571 
17572 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
17573                                           EnumConstantDecl *LastEnumConst,
17574                                           SourceLocation IdLoc,
17575                                           IdentifierInfo *Id,
17576                                           Expr *Val) {
17577   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
17578   llvm::APSInt EnumVal(IntWidth);
17579   QualType EltTy;
17580 
17581   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
17582     Val = nullptr;
17583 
17584   if (Val)
17585     Val = DefaultLvalueConversion(Val).get();
17586 
17587   if (Val) {
17588     if (Enum->isDependentType() || Val->isTypeDependent())
17589       EltTy = Context.DependentTy;
17590     else {
17591       // FIXME: We don't allow folding in C++11 mode for an enum with a fixed
17592       // underlying type, but do allow it in all other contexts.
17593       if (getLangOpts().CPlusPlus11 && Enum->isFixed()) {
17594         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
17595         // constant-expression in the enumerator-definition shall be a converted
17596         // constant expression of the underlying type.
17597         EltTy = Enum->getIntegerType();
17598         ExprResult Converted =
17599           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
17600                                            CCEK_Enumerator);
17601         if (Converted.isInvalid())
17602           Val = nullptr;
17603         else
17604           Val = Converted.get();
17605       } else if (!Val->isValueDependent() &&
17606                  !(Val =
17607                        VerifyIntegerConstantExpression(Val, &EnumVal, AllowFold)
17608                            .get())) {
17609         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
17610       } else {
17611         if (Enum->isComplete()) {
17612           EltTy = Enum->getIntegerType();
17613 
17614           // In Obj-C and Microsoft mode, require the enumeration value to be
17615           // representable in the underlying type of the enumeration. In C++11,
17616           // we perform a non-narrowing conversion as part of converted constant
17617           // expression checking.
17618           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
17619             if (Context.getTargetInfo()
17620                     .getTriple()
17621                     .isWindowsMSVCEnvironment()) {
17622               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
17623             } else {
17624               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
17625             }
17626           }
17627 
17628           // Cast to the underlying type.
17629           Val = ImpCastExprToType(Val, EltTy,
17630                                   EltTy->isBooleanType() ? CK_IntegralToBoolean
17631                                                          : CK_IntegralCast)
17632                     .get();
17633         } else if (getLangOpts().CPlusPlus) {
17634           // C++11 [dcl.enum]p5:
17635           //   If the underlying type is not fixed, the type of each enumerator
17636           //   is the type of its initializing value:
17637           //     - If an initializer is specified for an enumerator, the
17638           //       initializing value has the same type as the expression.
17639           EltTy = Val->getType();
17640         } else {
17641           // C99 6.7.2.2p2:
17642           //   The expression that defines the value of an enumeration constant
17643           //   shall be an integer constant expression that has a value
17644           //   representable as an int.
17645 
17646           // Complain if the value is not representable in an int.
17647           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
17648             Diag(IdLoc, diag::ext_enum_value_not_int)
17649               << EnumVal.toString(10) << Val->getSourceRange()
17650               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
17651           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
17652             // Force the type of the expression to 'int'.
17653             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
17654           }
17655           EltTy = Val->getType();
17656         }
17657       }
17658     }
17659   }
17660 
17661   if (!Val) {
17662     if (Enum->isDependentType())
17663       EltTy = Context.DependentTy;
17664     else if (!LastEnumConst) {
17665       // C++0x [dcl.enum]p5:
17666       //   If the underlying type is not fixed, the type of each enumerator
17667       //   is the type of its initializing value:
17668       //     - If no initializer is specified for the first enumerator, the
17669       //       initializing value has an unspecified integral type.
17670       //
17671       // GCC uses 'int' for its unspecified integral type, as does
17672       // C99 6.7.2.2p3.
17673       if (Enum->isFixed()) {
17674         EltTy = Enum->getIntegerType();
17675       }
17676       else {
17677         EltTy = Context.IntTy;
17678       }
17679     } else {
17680       // Assign the last value + 1.
17681       EnumVal = LastEnumConst->getInitVal();
17682       ++EnumVal;
17683       EltTy = LastEnumConst->getType();
17684 
17685       // Check for overflow on increment.
17686       if (EnumVal < LastEnumConst->getInitVal()) {
17687         // C++0x [dcl.enum]p5:
17688         //   If the underlying type is not fixed, the type of each enumerator
17689         //   is the type of its initializing value:
17690         //
17691         //     - Otherwise the type of the initializing value is the same as
17692         //       the type of the initializing value of the preceding enumerator
17693         //       unless the incremented value is not representable in that type,
17694         //       in which case the type is an unspecified integral type
17695         //       sufficient to contain the incremented value. If no such type
17696         //       exists, the program is ill-formed.
17697         QualType T = getNextLargerIntegralType(Context, EltTy);
17698         if (T.isNull() || Enum->isFixed()) {
17699           // There is no integral type larger enough to represent this
17700           // value. Complain, then allow the value to wrap around.
17701           EnumVal = LastEnumConst->getInitVal();
17702           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
17703           ++EnumVal;
17704           if (Enum->isFixed())
17705             // When the underlying type is fixed, this is ill-formed.
17706             Diag(IdLoc, diag::err_enumerator_wrapped)
17707               << EnumVal.toString(10)
17708               << EltTy;
17709           else
17710             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
17711               << EnumVal.toString(10);
17712         } else {
17713           EltTy = T;
17714         }
17715 
17716         // Retrieve the last enumerator's value, extent that type to the
17717         // type that is supposed to be large enough to represent the incremented
17718         // value, then increment.
17719         EnumVal = LastEnumConst->getInitVal();
17720         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
17721         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
17722         ++EnumVal;
17723 
17724         // If we're not in C++, diagnose the overflow of enumerator values,
17725         // which in C99 means that the enumerator value is not representable in
17726         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
17727         // permits enumerator values that are representable in some larger
17728         // integral type.
17729         if (!getLangOpts().CPlusPlus && !T.isNull())
17730           Diag(IdLoc, diag::warn_enum_value_overflow);
17731       } else if (!getLangOpts().CPlusPlus &&
17732                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
17733         // Enforce C99 6.7.2.2p2 even when we compute the next value.
17734         Diag(IdLoc, diag::ext_enum_value_not_int)
17735           << EnumVal.toString(10) << 1;
17736       }
17737     }
17738   }
17739 
17740   if (!EltTy->isDependentType()) {
17741     // Make the enumerator value match the signedness and size of the
17742     // enumerator's type.
17743     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
17744     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
17745   }
17746 
17747   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
17748                                   Val, EnumVal);
17749 }
17750 
17751 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
17752                                                 SourceLocation IILoc) {
17753   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
17754       !getLangOpts().CPlusPlus)
17755     return SkipBodyInfo();
17756 
17757   // We have an anonymous enum definition. Look up the first enumerator to
17758   // determine if we should merge the definition with an existing one and
17759   // skip the body.
17760   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
17761                                          forRedeclarationInCurContext());
17762   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
17763   if (!PrevECD)
17764     return SkipBodyInfo();
17765 
17766   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
17767   NamedDecl *Hidden;
17768   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
17769     SkipBodyInfo Skip;
17770     Skip.Previous = Hidden;
17771     return Skip;
17772   }
17773 
17774   return SkipBodyInfo();
17775 }
17776 
17777 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
17778                               SourceLocation IdLoc, IdentifierInfo *Id,
17779                               const ParsedAttributesView &Attrs,
17780                               SourceLocation EqualLoc, Expr *Val) {
17781   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
17782   EnumConstantDecl *LastEnumConst =
17783     cast_or_null<EnumConstantDecl>(lastEnumConst);
17784 
17785   // The scope passed in may not be a decl scope.  Zip up the scope tree until
17786   // we find one that is.
17787   S = getNonFieldDeclScope(S);
17788 
17789   // Verify that there isn't already something declared with this name in this
17790   // scope.
17791   LookupResult R(*this, Id, IdLoc, LookupOrdinaryName, ForVisibleRedeclaration);
17792   LookupName(R, S);
17793   NamedDecl *PrevDecl = R.getAsSingle<NamedDecl>();
17794 
17795   if (PrevDecl && PrevDecl->isTemplateParameter()) {
17796     // Maybe we will complain about the shadowed template parameter.
17797     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
17798     // Just pretend that we didn't see the previous declaration.
17799     PrevDecl = nullptr;
17800   }
17801 
17802   // C++ [class.mem]p15:
17803   // If T is the name of a class, then each of the following shall have a name
17804   // different from T:
17805   // - every enumerator of every member of class T that is an unscoped
17806   // enumerated type
17807   if (getLangOpts().CPlusPlus && !TheEnumDecl->isScoped())
17808     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
17809                             DeclarationNameInfo(Id, IdLoc));
17810 
17811   EnumConstantDecl *New =
17812     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
17813   if (!New)
17814     return nullptr;
17815 
17816   if (PrevDecl) {
17817     if (!TheEnumDecl->isScoped() && isa<ValueDecl>(PrevDecl)) {
17818       // Check for other kinds of shadowing not already handled.
17819       CheckShadow(New, PrevDecl, R);
17820     }
17821 
17822     // When in C++, we may get a TagDecl with the same name; in this case the
17823     // enum constant will 'hide' the tag.
17824     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
17825            "Received TagDecl when not in C++!");
17826     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
17827       if (isa<EnumConstantDecl>(PrevDecl))
17828         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
17829       else
17830         Diag(IdLoc, diag::err_redefinition) << Id;
17831       notePreviousDefinition(PrevDecl, IdLoc);
17832       return nullptr;
17833     }
17834   }
17835 
17836   // Process attributes.
17837   ProcessDeclAttributeList(S, New, Attrs);
17838   AddPragmaAttributes(S, New);
17839 
17840   // Register this decl in the current scope stack.
17841   New->setAccess(TheEnumDecl->getAccess());
17842   PushOnScopeChains(New, S);
17843 
17844   ActOnDocumentableDecl(New);
17845 
17846   return New;
17847 }
17848 
17849 // Returns true when the enum initial expression does not trigger the
17850 // duplicate enum warning.  A few common cases are exempted as follows:
17851 // Element2 = Element1
17852 // Element2 = Element1 + 1
17853 // Element2 = Element1 - 1
17854 // Where Element2 and Element1 are from the same enum.
17855 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
17856   Expr *InitExpr = ECD->getInitExpr();
17857   if (!InitExpr)
17858     return true;
17859   InitExpr = InitExpr->IgnoreImpCasts();
17860 
17861   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
17862     if (!BO->isAdditiveOp())
17863       return true;
17864     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
17865     if (!IL)
17866       return true;
17867     if (IL->getValue() != 1)
17868       return true;
17869 
17870     InitExpr = BO->getLHS();
17871   }
17872 
17873   // This checks if the elements are from the same enum.
17874   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
17875   if (!DRE)
17876     return true;
17877 
17878   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
17879   if (!EnumConstant)
17880     return true;
17881 
17882   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
17883       Enum)
17884     return true;
17885 
17886   return false;
17887 }
17888 
17889 // Emits a warning when an element is implicitly set a value that
17890 // a previous element has already been set to.
17891 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
17892                                         EnumDecl *Enum, QualType EnumType) {
17893   // Avoid anonymous enums
17894   if (!Enum->getIdentifier())
17895     return;
17896 
17897   // Only check for small enums.
17898   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
17899     return;
17900 
17901   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
17902     return;
17903 
17904   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
17905   typedef SmallVector<std::unique_ptr<ECDVector>, 3> DuplicatesVector;
17906 
17907   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
17908 
17909   // DenseMaps cannot contain the all ones int64_t value, so use unordered_map.
17910   typedef std::unordered_map<int64_t, DeclOrVector> ValueToVectorMap;
17911 
17912   // Use int64_t as a key to avoid needing special handling for map keys.
17913   auto EnumConstantToKey = [](const EnumConstantDecl *D) {
17914     llvm::APSInt Val = D->getInitVal();
17915     return Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue();
17916   };
17917 
17918   DuplicatesVector DupVector;
17919   ValueToVectorMap EnumMap;
17920 
17921   // Populate the EnumMap with all values represented by enum constants without
17922   // an initializer.
17923   for (auto *Element : Elements) {
17924     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Element);
17925 
17926     // Null EnumConstantDecl means a previous diagnostic has been emitted for
17927     // this constant.  Skip this enum since it may be ill-formed.
17928     if (!ECD) {
17929       return;
17930     }
17931 
17932     // Constants with initalizers are handled in the next loop.
17933     if (ECD->getInitExpr())
17934       continue;
17935 
17936     // Duplicate values are handled in the next loop.
17937     EnumMap.insert({EnumConstantToKey(ECD), ECD});
17938   }
17939 
17940   if (EnumMap.size() == 0)
17941     return;
17942 
17943   // Create vectors for any values that has duplicates.
17944   for (auto *Element : Elements) {
17945     // The last loop returned if any constant was null.
17946     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Element);
17947     if (!ValidDuplicateEnum(ECD, Enum))
17948       continue;
17949 
17950     auto Iter = EnumMap.find(EnumConstantToKey(ECD));
17951     if (Iter == EnumMap.end())
17952       continue;
17953 
17954     DeclOrVector& Entry = Iter->second;
17955     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
17956       // Ensure constants are different.
17957       if (D == ECD)
17958         continue;
17959 
17960       // Create new vector and push values onto it.
17961       auto Vec = std::make_unique<ECDVector>();
17962       Vec->push_back(D);
17963       Vec->push_back(ECD);
17964 
17965       // Update entry to point to the duplicates vector.
17966       Entry = Vec.get();
17967 
17968       // Store the vector somewhere we can consult later for quick emission of
17969       // diagnostics.
17970       DupVector.emplace_back(std::move(Vec));
17971       continue;
17972     }
17973 
17974     ECDVector *Vec = Entry.get<ECDVector*>();
17975     // Make sure constants are not added more than once.
17976     if (*Vec->begin() == ECD)
17977       continue;
17978 
17979     Vec->push_back(ECD);
17980   }
17981 
17982   // Emit diagnostics.
17983   for (const auto &Vec : DupVector) {
17984     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
17985 
17986     // Emit warning for one enum constant.
17987     auto *FirstECD = Vec->front();
17988     S.Diag(FirstECD->getLocation(), diag::warn_duplicate_enum_values)
17989       << FirstECD << FirstECD->getInitVal().toString(10)
17990       << FirstECD->getSourceRange();
17991 
17992     // Emit one note for each of the remaining enum constants with
17993     // the same value.
17994     for (auto *ECD : llvm::make_range(Vec->begin() + 1, Vec->end()))
17995       S.Diag(ECD->getLocation(), diag::note_duplicate_element)
17996         << ECD << ECD->getInitVal().toString(10)
17997         << ECD->getSourceRange();
17998   }
17999 }
18000 
18001 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
18002                              bool AllowMask) const {
18003   assert(ED->isClosedFlag() && "looking for value in non-flag or open enum");
18004   assert(ED->isCompleteDefinition() && "expected enum definition");
18005 
18006   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
18007   llvm::APInt &FlagBits = R.first->second;
18008 
18009   if (R.second) {
18010     for (auto *E : ED->enumerators()) {
18011       const auto &EVal = E->getInitVal();
18012       // Only single-bit enumerators introduce new flag values.
18013       if (EVal.isPowerOf2())
18014         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
18015     }
18016   }
18017 
18018   // A value is in a flag enum if either its bits are a subset of the enum's
18019   // flag bits (the first condition) or we are allowing masks and the same is
18020   // true of its complement (the second condition). When masks are allowed, we
18021   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
18022   //
18023   // While it's true that any value could be used as a mask, the assumption is
18024   // that a mask will have all of the insignificant bits set. Anything else is
18025   // likely a logic error.
18026   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
18027   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
18028 }
18029 
18030 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceRange BraceRange,
18031                          Decl *EnumDeclX, ArrayRef<Decl *> Elements, Scope *S,
18032                          const ParsedAttributesView &Attrs) {
18033   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
18034   QualType EnumType = Context.getTypeDeclType(Enum);
18035 
18036   ProcessDeclAttributeList(S, Enum, Attrs);
18037 
18038   if (Enum->isDependentType()) {
18039     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
18040       EnumConstantDecl *ECD =
18041         cast_or_null<EnumConstantDecl>(Elements[i]);
18042       if (!ECD) continue;
18043 
18044       ECD->setType(EnumType);
18045     }
18046 
18047     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
18048     return;
18049   }
18050 
18051   // TODO: If the result value doesn't fit in an int, it must be a long or long
18052   // long value.  ISO C does not support this, but GCC does as an extension,
18053   // emit a warning.
18054   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
18055   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
18056   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
18057 
18058   // Verify that all the values are okay, compute the size of the values, and
18059   // reverse the list.
18060   unsigned NumNegativeBits = 0;
18061   unsigned NumPositiveBits = 0;
18062 
18063   // Keep track of whether all elements have type int.
18064   bool AllElementsInt = true;
18065 
18066   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
18067     EnumConstantDecl *ECD =
18068       cast_or_null<EnumConstantDecl>(Elements[i]);
18069     if (!ECD) continue;  // Already issued a diagnostic.
18070 
18071     const llvm::APSInt &InitVal = ECD->getInitVal();
18072 
18073     // Keep track of the size of positive and negative values.
18074     if (InitVal.isUnsigned() || InitVal.isNonNegative())
18075       NumPositiveBits = std::max(NumPositiveBits,
18076                                  (unsigned)InitVal.getActiveBits());
18077     else
18078       NumNegativeBits = std::max(NumNegativeBits,
18079                                  (unsigned)InitVal.getMinSignedBits());
18080 
18081     // Keep track of whether every enum element has type int (very common).
18082     if (AllElementsInt)
18083       AllElementsInt = ECD->getType() == Context.IntTy;
18084   }
18085 
18086   // Figure out the type that should be used for this enum.
18087   QualType BestType;
18088   unsigned BestWidth;
18089 
18090   // C++0x N3000 [conv.prom]p3:
18091   //   An rvalue of an unscoped enumeration type whose underlying
18092   //   type is not fixed can be converted to an rvalue of the first
18093   //   of the following types that can represent all the values of
18094   //   the enumeration: int, unsigned int, long int, unsigned long
18095   //   int, long long int, or unsigned long long int.
18096   // C99 6.4.4.3p2:
18097   //   An identifier declared as an enumeration constant has type int.
18098   // The C99 rule is modified by a gcc extension
18099   QualType BestPromotionType;
18100 
18101   bool Packed = Enum->hasAttr<PackedAttr>();
18102   // -fshort-enums is the equivalent to specifying the packed attribute on all
18103   // enum definitions.
18104   if (LangOpts.ShortEnums)
18105     Packed = true;
18106 
18107   // If the enum already has a type because it is fixed or dictated by the
18108   // target, promote that type instead of analyzing the enumerators.
18109   if (Enum->isComplete()) {
18110     BestType = Enum->getIntegerType();
18111     if (BestType->isPromotableIntegerType())
18112       BestPromotionType = Context.getPromotedIntegerType(BestType);
18113     else
18114       BestPromotionType = BestType;
18115 
18116     BestWidth = Context.getIntWidth(BestType);
18117   }
18118   else if (NumNegativeBits) {
18119     // If there is a negative value, figure out the smallest integer type (of
18120     // int/long/longlong) that fits.
18121     // If it's packed, check also if it fits a char or a short.
18122     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
18123       BestType = Context.SignedCharTy;
18124       BestWidth = CharWidth;
18125     } else if (Packed && NumNegativeBits <= ShortWidth &&
18126                NumPositiveBits < ShortWidth) {
18127       BestType = Context.ShortTy;
18128       BestWidth = ShortWidth;
18129     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
18130       BestType = Context.IntTy;
18131       BestWidth = IntWidth;
18132     } else {
18133       BestWidth = Context.getTargetInfo().getLongWidth();
18134 
18135       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
18136         BestType = Context.LongTy;
18137       } else {
18138         BestWidth = Context.getTargetInfo().getLongLongWidth();
18139 
18140         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
18141           Diag(Enum->getLocation(), diag::ext_enum_too_large);
18142         BestType = Context.LongLongTy;
18143       }
18144     }
18145     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
18146   } else {
18147     // If there is no negative value, figure out the smallest type that fits
18148     // all of the enumerator values.
18149     // If it's packed, check also if it fits a char or a short.
18150     if (Packed && NumPositiveBits <= CharWidth) {
18151       BestType = Context.UnsignedCharTy;
18152       BestPromotionType = Context.IntTy;
18153       BestWidth = CharWidth;
18154     } else if (Packed && NumPositiveBits <= ShortWidth) {
18155       BestType = Context.UnsignedShortTy;
18156       BestPromotionType = Context.IntTy;
18157       BestWidth = ShortWidth;
18158     } else if (NumPositiveBits <= IntWidth) {
18159       BestType = Context.UnsignedIntTy;
18160       BestWidth = IntWidth;
18161       BestPromotionType
18162         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
18163                            ? Context.UnsignedIntTy : Context.IntTy;
18164     } else if (NumPositiveBits <=
18165                (BestWidth = Context.getTargetInfo().getLongWidth())) {
18166       BestType = Context.UnsignedLongTy;
18167       BestPromotionType
18168         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
18169                            ? Context.UnsignedLongTy : Context.LongTy;
18170     } else {
18171       BestWidth = Context.getTargetInfo().getLongLongWidth();
18172       assert(NumPositiveBits <= BestWidth &&
18173              "How could an initializer get larger than ULL?");
18174       BestType = Context.UnsignedLongLongTy;
18175       BestPromotionType
18176         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
18177                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
18178     }
18179   }
18180 
18181   // Loop over all of the enumerator constants, changing their types to match
18182   // the type of the enum if needed.
18183   for (auto *D : Elements) {
18184     auto *ECD = cast_or_null<EnumConstantDecl>(D);
18185     if (!ECD) continue;  // Already issued a diagnostic.
18186 
18187     // Standard C says the enumerators have int type, but we allow, as an
18188     // extension, the enumerators to be larger than int size.  If each
18189     // enumerator value fits in an int, type it as an int, otherwise type it the
18190     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
18191     // that X has type 'int', not 'unsigned'.
18192 
18193     // Determine whether the value fits into an int.
18194     llvm::APSInt InitVal = ECD->getInitVal();
18195 
18196     // If it fits into an integer type, force it.  Otherwise force it to match
18197     // the enum decl type.
18198     QualType NewTy;
18199     unsigned NewWidth;
18200     bool NewSign;
18201     if (!getLangOpts().CPlusPlus &&
18202         !Enum->isFixed() &&
18203         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
18204       NewTy = Context.IntTy;
18205       NewWidth = IntWidth;
18206       NewSign = true;
18207     } else if (ECD->getType() == BestType) {
18208       // Already the right type!
18209       if (getLangOpts().CPlusPlus)
18210         // C++ [dcl.enum]p4: Following the closing brace of an
18211         // enum-specifier, each enumerator has the type of its
18212         // enumeration.
18213         ECD->setType(EnumType);
18214       continue;
18215     } else {
18216       NewTy = BestType;
18217       NewWidth = BestWidth;
18218       NewSign = BestType->isSignedIntegerOrEnumerationType();
18219     }
18220 
18221     // Adjust the APSInt value.
18222     InitVal = InitVal.extOrTrunc(NewWidth);
18223     InitVal.setIsSigned(NewSign);
18224     ECD->setInitVal(InitVal);
18225 
18226     // Adjust the Expr initializer and type.
18227     if (ECD->getInitExpr() &&
18228         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
18229       ECD->setInitExpr(ImplicitCastExpr::Create(
18230           Context, NewTy, CK_IntegralCast, ECD->getInitExpr(),
18231           /*base paths*/ nullptr, VK_RValue, FPOptionsOverride()));
18232     if (getLangOpts().CPlusPlus)
18233       // C++ [dcl.enum]p4: Following the closing brace of an
18234       // enum-specifier, each enumerator has the type of its
18235       // enumeration.
18236       ECD->setType(EnumType);
18237     else
18238       ECD->setType(NewTy);
18239   }
18240 
18241   Enum->completeDefinition(BestType, BestPromotionType,
18242                            NumPositiveBits, NumNegativeBits);
18243 
18244   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
18245 
18246   if (Enum->isClosedFlag()) {
18247     for (Decl *D : Elements) {
18248       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
18249       if (!ECD) continue;  // Already issued a diagnostic.
18250 
18251       llvm::APSInt InitVal = ECD->getInitVal();
18252       if (InitVal != 0 && !InitVal.isPowerOf2() &&
18253           !IsValueInFlagEnum(Enum, InitVal, true))
18254         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
18255           << ECD << Enum;
18256     }
18257   }
18258 
18259   // Now that the enum type is defined, ensure it's not been underaligned.
18260   if (Enum->hasAttrs())
18261     CheckAlignasUnderalignment(Enum);
18262 }
18263 
18264 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
18265                                   SourceLocation StartLoc,
18266                                   SourceLocation EndLoc) {
18267   StringLiteral *AsmString = cast<StringLiteral>(expr);
18268 
18269   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
18270                                                    AsmString, StartLoc,
18271                                                    EndLoc);
18272   CurContext->addDecl(New);
18273   return New;
18274 }
18275 
18276 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
18277                                       IdentifierInfo* AliasName,
18278                                       SourceLocation PragmaLoc,
18279                                       SourceLocation NameLoc,
18280                                       SourceLocation AliasNameLoc) {
18281   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
18282                                          LookupOrdinaryName);
18283   AttributeCommonInfo Info(AliasName, SourceRange(AliasNameLoc),
18284                            AttributeCommonInfo::AS_Pragma);
18285   AsmLabelAttr *Attr = AsmLabelAttr::CreateImplicit(
18286       Context, AliasName->getName(), /*LiteralLabel=*/true, Info);
18287 
18288   // If a declaration that:
18289   // 1) declares a function or a variable
18290   // 2) has external linkage
18291   // already exists, add a label attribute to it.
18292   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
18293     if (isDeclExternC(PrevDecl))
18294       PrevDecl->addAttr(Attr);
18295     else
18296       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
18297           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
18298   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
18299   } else
18300     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
18301 }
18302 
18303 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
18304                              SourceLocation PragmaLoc,
18305                              SourceLocation NameLoc) {
18306   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
18307 
18308   if (PrevDecl) {
18309     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc, AttributeCommonInfo::AS_Pragma));
18310   } else {
18311     (void)WeakUndeclaredIdentifiers.insert(
18312       std::pair<IdentifierInfo*,WeakInfo>
18313         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
18314   }
18315 }
18316 
18317 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
18318                                 IdentifierInfo* AliasName,
18319                                 SourceLocation PragmaLoc,
18320                                 SourceLocation NameLoc,
18321                                 SourceLocation AliasNameLoc) {
18322   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
18323                                     LookupOrdinaryName);
18324   WeakInfo W = WeakInfo(Name, NameLoc);
18325 
18326   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
18327     if (!PrevDecl->hasAttr<AliasAttr>())
18328       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
18329         DeclApplyPragmaWeak(TUScope, ND, W);
18330   } else {
18331     (void)WeakUndeclaredIdentifiers.insert(
18332       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
18333   }
18334 }
18335 
18336 Decl *Sema::getObjCDeclContext() const {
18337   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
18338 }
18339 
18340 Sema::FunctionEmissionStatus Sema::getEmissionStatus(FunctionDecl *FD,
18341                                                      bool Final) {
18342   // SYCL functions can be template, so we check if they have appropriate
18343   // attribute prior to checking if it is a template.
18344   if (LangOpts.SYCLIsDevice && FD->hasAttr<SYCLKernelAttr>())
18345     return FunctionEmissionStatus::Emitted;
18346 
18347   // Templates are emitted when they're instantiated.
18348   if (FD->isDependentContext())
18349     return FunctionEmissionStatus::TemplateDiscarded;
18350 
18351   // Check whether this function is an externally visible definition.
18352   auto IsEmittedForExternalSymbol = [this, FD]() {
18353     // We have to check the GVA linkage of the function's *definition* -- if we
18354     // only have a declaration, we don't know whether or not the function will
18355     // be emitted, because (say) the definition could include "inline".
18356     FunctionDecl *Def = FD->getDefinition();
18357 
18358     return Def && !isDiscardableGVALinkage(
18359                       getASTContext().GetGVALinkageForFunction(Def));
18360   };
18361 
18362   if (LangOpts.OpenMPIsDevice) {
18363     // In OpenMP device mode we will not emit host only functions, or functions
18364     // we don't need due to their linkage.
18365     Optional<OMPDeclareTargetDeclAttr::DevTypeTy> DevTy =
18366         OMPDeclareTargetDeclAttr::getDeviceType(FD->getCanonicalDecl());
18367     // DevTy may be changed later by
18368     //  #pragma omp declare target to(*) device_type(*).
18369     // Therefore DevTyhaving no value does not imply host. The emission status
18370     // will be checked again at the end of compilation unit with Final = true.
18371     if (DevTy.hasValue())
18372       if (*DevTy == OMPDeclareTargetDeclAttr::DT_Host)
18373         return FunctionEmissionStatus::OMPDiscarded;
18374     // If we have an explicit value for the device type, or we are in a target
18375     // declare context, we need to emit all extern and used symbols.
18376     if (isInOpenMPDeclareTargetContext() || DevTy.hasValue())
18377       if (IsEmittedForExternalSymbol())
18378         return FunctionEmissionStatus::Emitted;
18379     // Device mode only emits what it must, if it wasn't tagged yet and needed,
18380     // we'll omit it.
18381     if (Final)
18382       return FunctionEmissionStatus::OMPDiscarded;
18383   } else if (LangOpts.OpenMP > 45) {
18384     // In OpenMP host compilation prior to 5.0 everything was an emitted host
18385     // function. In 5.0, no_host was introduced which might cause a function to
18386     // be ommitted.
18387     Optional<OMPDeclareTargetDeclAttr::DevTypeTy> DevTy =
18388         OMPDeclareTargetDeclAttr::getDeviceType(FD->getCanonicalDecl());
18389     if (DevTy.hasValue())
18390       if (*DevTy == OMPDeclareTargetDeclAttr::DT_NoHost)
18391         return FunctionEmissionStatus::OMPDiscarded;
18392   }
18393 
18394   if (Final && LangOpts.OpenMP && !LangOpts.CUDA)
18395     return FunctionEmissionStatus::Emitted;
18396 
18397   if (LangOpts.CUDA) {
18398     // When compiling for device, host functions are never emitted.  Similarly,
18399     // when compiling for host, device and global functions are never emitted.
18400     // (Technically, we do emit a host-side stub for global functions, but this
18401     // doesn't count for our purposes here.)
18402     Sema::CUDAFunctionTarget T = IdentifyCUDATarget(FD);
18403     if (LangOpts.CUDAIsDevice && T == Sema::CFT_Host)
18404       return FunctionEmissionStatus::CUDADiscarded;
18405     if (!LangOpts.CUDAIsDevice &&
18406         (T == Sema::CFT_Device || T == Sema::CFT_Global))
18407       return FunctionEmissionStatus::CUDADiscarded;
18408 
18409     if (IsEmittedForExternalSymbol())
18410       return FunctionEmissionStatus::Emitted;
18411   }
18412 
18413   // Otherwise, the function is known-emitted if it's in our set of
18414   // known-emitted functions.
18415   return FunctionEmissionStatus::Unknown;
18416 }
18417 
18418 bool Sema::shouldIgnoreInHostDeviceCheck(FunctionDecl *Callee) {
18419   // Host-side references to a __global__ function refer to the stub, so the
18420   // function itself is never emitted and therefore should not be marked.
18421   // If we have host fn calls kernel fn calls host+device, the HD function
18422   // does not get instantiated on the host. We model this by omitting at the
18423   // call to the kernel from the callgraph. This ensures that, when compiling
18424   // for host, only HD functions actually called from the host get marked as
18425   // known-emitted.
18426   return LangOpts.CUDA && !LangOpts.CUDAIsDevice &&
18427          IdentifyCUDATarget(Callee) == CFT_Global;
18428 }
18429