]> granicus.if.org Git - clang/blob - lib/Sema/SemaDecl.cpp
65ca8dd44d7c6cf3c316b214a0f931c621be5bbe
[clang] / lib / Sema / SemaDecl.cpp
1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements semantic analysis for declarations.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "clang/Sema/SemaInternal.h"
15 #include "TypeLocBuilder.h"
16 #include "clang/AST/ASTConsumer.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/ASTLambda.h"
19 #include "clang/AST/CXXInheritance.h"
20 #include "clang/AST/CharUnits.h"
21 #include "clang/AST/CommentDiagnostic.h"
22 #include "clang/AST/DeclCXX.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/AST/DeclTemplate.h"
25 #include "clang/AST/EvaluatedExprVisitor.h"
26 #include "clang/AST/ExprCXX.h"
27 #include "clang/AST/StmtCXX.h"
28 #include "clang/Basic/Builtins.h"
29 #include "clang/Basic/PartialDiagnostic.h"
30 #include "clang/Basic/SourceManager.h"
31 #include "clang/Basic/TargetInfo.h"
32 #include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
33 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
34 #include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
35 #include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
36 #include "clang/Sema/CXXFieldCollector.h"
37 #include "clang/Sema/DeclSpec.h"
38 #include "clang/Sema/DelayedDiagnostic.h"
39 #include "clang/Sema/Initialization.h"
40 #include "clang/Sema/Lookup.h"
41 #include "clang/Sema/ParsedTemplate.h"
42 #include "clang/Sema/Scope.h"
43 #include "clang/Sema/ScopeInfo.h"
44 #include "clang/Sema/Template.h"
45 #include "llvm/ADT/SmallString.h"
46 #include "llvm/ADT/Triple.h"
47 #include <algorithm>
48 #include <cstring>
49 #include <functional>
50
51 using namespace clang;
52 using namespace sema;
53
54 Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) {
55   if (OwnedType) {
56     Decl *Group[2] = { OwnedType, Ptr };
57     return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
58   }
59
60   return DeclGroupPtrTy::make(DeclGroupRef(Ptr));
61 }
62
63 namespace {
64
65 class TypeNameValidatorCCC : public CorrectionCandidateCallback {
66  public:
67   TypeNameValidatorCCC(bool AllowInvalid, bool WantClass=false,
68                        bool AllowTemplates=false)
69       : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
70         AllowClassTemplates(AllowTemplates) {
71     WantExpressionKeywords = false;
72     WantCXXNamedCasts = false;
73     WantRemainingKeywords = false;
74   }
75
76   bool ValidateCandidate(const TypoCorrection &candidate) override {
77     if (NamedDecl *ND = candidate.getCorrectionDecl()) {
78       bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
79       bool AllowedTemplate = AllowClassTemplates && isa<ClassTemplateDecl>(ND);
80       return (IsType || AllowedTemplate) &&
81              (AllowInvalidDecl || !ND->isInvalidDecl());
82     }
83     return !WantClassName && candidate.isKeyword();
84   }
85
86  private:
87   bool AllowInvalidDecl;
88   bool WantClassName;
89   bool AllowClassTemplates;
90 };
91
92 } // end anonymous namespace
93
94 /// \brief Determine whether the token kind starts a simple-type-specifier.
95 bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
96   switch (Kind) {
97   // FIXME: Take into account the current language when deciding whether a
98   // token kind is a valid type specifier
99   case tok::kw_short:
100   case tok::kw_long:
101   case tok::kw___int64:
102   case tok::kw___int128:
103   case tok::kw_signed:
104   case tok::kw_unsigned:
105   case tok::kw_void:
106   case tok::kw_char:
107   case tok::kw_int:
108   case tok::kw_half:
109   case tok::kw_float:
110   case tok::kw_double:
111   case tok::kw_wchar_t:
112   case tok::kw_bool:
113   case tok::kw___underlying_type:
114   case tok::kw___auto_type:
115     return true;
116
117   case tok::annot_typename:
118   case tok::kw_char16_t:
119   case tok::kw_char32_t:
120   case tok::kw_typeof:
121   case tok::annot_decltype:
122   case tok::kw_decltype:
123     return getLangOpts().CPlusPlus;
124
125   default:
126     break;
127   }
128
129   return false;
130 }
131
132 namespace {
133 enum class UnqualifiedTypeNameLookupResult {
134   NotFound,
135   FoundNonType,
136   FoundType
137 };
138 } // end anonymous namespace
139
140 /// \brief Tries to perform unqualified lookup of the type decls in bases for
141 /// dependent class.
142 /// \return \a NotFound if no any decls is found, \a FoundNotType if found not a
143 /// type decl, \a FoundType if only type decls are found.
144 static UnqualifiedTypeNameLookupResult
145 lookupUnqualifiedTypeNameInBase(Sema &S, const IdentifierInfo &II,
146                                 SourceLocation NameLoc,
147                                 const CXXRecordDecl *RD) {
148   if (!RD->hasDefinition())
149     return UnqualifiedTypeNameLookupResult::NotFound;
150   // Look for type decls in base classes.
151   UnqualifiedTypeNameLookupResult FoundTypeDecl =
152       UnqualifiedTypeNameLookupResult::NotFound;
153   for (const auto &Base : RD->bases()) {
154     const CXXRecordDecl *BaseRD = nullptr;
155     if (auto *BaseTT = Base.getType()->getAs<TagType>())
156       BaseRD = BaseTT->getAsCXXRecordDecl();
157     else if (auto *TST = Base.getType()->getAs<TemplateSpecializationType>()) {
158       // Look for type decls in dependent base classes that have known primary
159       // templates.
160       if (!TST || !TST->isDependentType())
161         continue;
162       auto *TD = TST->getTemplateName().getAsTemplateDecl();
163       if (!TD)
164         continue;
165       auto *BasePrimaryTemplate =
166           dyn_cast_or_null<CXXRecordDecl>(TD->getTemplatedDecl());
167       if (!BasePrimaryTemplate)
168         continue;
169       BaseRD = BasePrimaryTemplate;
170     }
171     if (BaseRD) {
172       for (NamedDecl *ND : BaseRD->lookup(&II)) {
173         if (!isa<TypeDecl>(ND))
174           return UnqualifiedTypeNameLookupResult::FoundNonType;
175         FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
176       }
177       if (FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound) {
178         switch (lookupUnqualifiedTypeNameInBase(S, II, NameLoc, BaseRD)) {
179         case UnqualifiedTypeNameLookupResult::FoundNonType:
180           return UnqualifiedTypeNameLookupResult::FoundNonType;
181         case UnqualifiedTypeNameLookupResult::FoundType:
182           FoundTypeDecl = UnqualifiedTypeNameLookupResult::FoundType;
183           break;
184         case UnqualifiedTypeNameLookupResult::NotFound:
185           break;
186         }
187       }
188     }
189   }
190
191   return FoundTypeDecl;
192 }
193
194 static ParsedType recoverFromTypeInKnownDependentBase(Sema &S,
195                                                       const IdentifierInfo &II,
196                                                       SourceLocation NameLoc) {
197   // Lookup in the parent class template context, if any.
198   const CXXRecordDecl *RD = nullptr;
199   UnqualifiedTypeNameLookupResult FoundTypeDecl =
200       UnqualifiedTypeNameLookupResult::NotFound;
201   for (DeclContext *DC = S.CurContext;
202        DC && FoundTypeDecl == UnqualifiedTypeNameLookupResult::NotFound;
203        DC = DC->getParent()) {
204     // Look for type decls in dependent base classes that have known primary
205     // templates.
206     RD = dyn_cast<CXXRecordDecl>(DC);
207     if (RD && RD->getDescribedClassTemplate())
208       FoundTypeDecl = lookupUnqualifiedTypeNameInBase(S, II, NameLoc, RD);
209   }
210   if (FoundTypeDecl != UnqualifiedTypeNameLookupResult::FoundType)
211     return nullptr;
212
213   // We found some types in dependent base classes.  Recover as if the user
214   // wrote 'typename MyClass::II' instead of 'II'.  We'll fully resolve the
215   // lookup during template instantiation.
216   S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
217
218   ASTContext &Context = S.Context;
219   auto *NNS = NestedNameSpecifier::Create(Context, nullptr, false,
220                                           cast<Type>(Context.getRecordType(RD)));
221   QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
222
223   CXXScopeSpec SS;
224   SS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
225
226   TypeLocBuilder Builder;
227   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
228   DepTL.setNameLoc(NameLoc);
229   DepTL.setElaboratedKeywordLoc(SourceLocation());
230   DepTL.setQualifierLoc(SS.getWithLocInContext(Context));
231   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
232 }
233
234 /// \brief If the identifier refers to a type name within this scope,
235 /// return the declaration of that type.
236 ///
237 /// This routine performs ordinary name lookup of the identifier II
238 /// within the given scope, with optional C++ scope specifier SS, to
239 /// determine whether the name refers to a type. If so, returns an
240 /// opaque pointer (actually a QualType) corresponding to that
241 /// type. Otherwise, returns NULL.
242 ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
243                              Scope *S, CXXScopeSpec *SS,
244                              bool isClassName, bool HasTrailingDot,
245                              ParsedType ObjectTypePtr,
246                              bool IsCtorOrDtorName,
247                              bool WantNontrivialTypeSourceInfo,
248                              IdentifierInfo **CorrectedII) {
249   // Determine where we will perform name lookup.
250   DeclContext *LookupCtx = nullptr;
251   if (ObjectTypePtr) {
252     QualType ObjectType = ObjectTypePtr.get();
253     if (ObjectType->isRecordType())
254       LookupCtx = computeDeclContext(ObjectType);
255   } else if (SS && SS->isNotEmpty()) {
256     LookupCtx = computeDeclContext(*SS, false);
257
258     if (!LookupCtx) {
259       if (isDependentScopeSpecifier(*SS)) {
260         // C++ [temp.res]p3:
261         //   A qualified-id that refers to a type and in which the
262         //   nested-name-specifier depends on a template-parameter (14.6.2)
263         //   shall be prefixed by the keyword typename to indicate that the
264         //   qualified-id denotes a type, forming an
265         //   elaborated-type-specifier (7.1.5.3).
266         //
267         // We therefore do not perform any name lookup if the result would
268         // refer to a member of an unknown specialization.
269         if (!isClassName && !IsCtorOrDtorName)
270           return nullptr;
271
272         // We know from the grammar that this name refers to a type,
273         // so build a dependent node to describe the type.
274         if (WantNontrivialTypeSourceInfo)
275           return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
276         
277         NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
278         QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
279                                        II, NameLoc);
280         return ParsedType::make(T);
281       }
282
283       return nullptr;
284     }
285     
286     if (!LookupCtx->isDependentContext() &&
287         RequireCompleteDeclContext(*SS, LookupCtx))
288       return nullptr;
289   }
290
291   // FIXME: LookupNestedNameSpecifierName isn't the right kind of
292   // lookup for class-names.
293   LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
294                                       LookupOrdinaryName;
295   LookupResult Result(*this, &II, NameLoc, Kind);
296   if (LookupCtx) {
297     // Perform "qualified" name lookup into the declaration context we
298     // computed, which is either the type of the base of a member access
299     // expression or the declaration context associated with a prior
300     // nested-name-specifier.
301     LookupQualifiedName(Result, LookupCtx);
302
303     if (ObjectTypePtr && Result.empty()) {
304       // C++ [basic.lookup.classref]p3:
305       //   If the unqualified-id is ~type-name, the type-name is looked up
306       //   in the context of the entire postfix-expression. If the type T of 
307       //   the object expression is of a class type C, the type-name is also
308       //   looked up in the scope of class C. At least one of the lookups shall
309       //   find a name that refers to (possibly cv-qualified) T.
310       LookupName(Result, S);
311     }
312   } else {
313     // Perform unqualified name lookup.
314     LookupName(Result, S);
315
316     // For unqualified lookup in a class template in MSVC mode, look into
317     // dependent base classes where the primary class template is known.
318     if (Result.empty() && getLangOpts().MSVCCompat && (!SS || SS->isEmpty())) {
319       if (ParsedType TypeInBase =
320               recoverFromTypeInKnownDependentBase(*this, II, NameLoc))
321         return TypeInBase;
322     }
323   }
324
325   NamedDecl *IIDecl = nullptr;
326   switch (Result.getResultKind()) {
327   case LookupResult::NotFound:
328   case LookupResult::NotFoundInCurrentInstantiation:
329     if (CorrectedII) {
330       TypoCorrection Correction = CorrectTypo(
331           Result.getLookupNameInfo(), Kind, S, SS,
332           llvm::make_unique<TypeNameValidatorCCC>(true, isClassName),
333           CTK_ErrorRecovery);
334       IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
335       TemplateTy Template;
336       bool MemberOfUnknownSpecialization;
337       UnqualifiedId TemplateName;
338       TemplateName.setIdentifier(NewII, NameLoc);
339       NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
340       CXXScopeSpec NewSS, *NewSSPtr = SS;
341       if (SS && NNS) {
342         NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
343         NewSSPtr = &NewSS;
344       }
345       if (Correction && (NNS || NewII != &II) &&
346           // Ignore a correction to a template type as the to-be-corrected
347           // identifier is not a template (typo correction for template names
348           // is handled elsewhere).
349           !(getLangOpts().CPlusPlus && NewSSPtr &&
350             isTemplateName(S, *NewSSPtr, false, TemplateName, nullptr, false,
351                            Template, MemberOfUnknownSpecialization))) {
352         ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
353                                     isClassName, HasTrailingDot, ObjectTypePtr,
354                                     IsCtorOrDtorName,
355                                     WantNontrivialTypeSourceInfo);
356         if (Ty) {
357           diagnoseTypo(Correction,
358                        PDiag(diag::err_unknown_type_or_class_name_suggest)
359                          << Result.getLookupName() << isClassName);
360           if (SS && NNS)
361             SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
362           *CorrectedII = NewII;
363           return Ty;
364         }
365       }
366     }
367     // If typo correction failed or was not performed, fall through
368   case LookupResult::FoundOverloaded:
369   case LookupResult::FoundUnresolvedValue:
370     Result.suppressDiagnostics();
371     return nullptr;
372
373   case LookupResult::Ambiguous:
374     // Recover from type-hiding ambiguities by hiding the type.  We'll
375     // do the lookup again when looking for an object, and we can
376     // diagnose the error then.  If we don't do this, then the error
377     // about hiding the type will be immediately followed by an error
378     // that only makes sense if the identifier was treated like a type.
379     if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
380       Result.suppressDiagnostics();
381       return nullptr;
382     }
383
384     // Look to see if we have a type anywhere in the list of results.
385     for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
386          Res != ResEnd; ++Res) {
387       if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
388         if (!IIDecl ||
389             (*Res)->getLocation().getRawEncoding() <
390               IIDecl->getLocation().getRawEncoding())
391           IIDecl = *Res;
392       }
393     }
394
395     if (!IIDecl) {
396       // None of the entities we found is a type, so there is no way
397       // to even assume that the result is a type. In this case, don't
398       // complain about the ambiguity. The parser will either try to
399       // perform this lookup again (e.g., as an object name), which
400       // will produce the ambiguity, or will complain that it expected
401       // a type name.
402       Result.suppressDiagnostics();
403       return nullptr;
404     }
405
406     // We found a type within the ambiguous lookup; diagnose the
407     // ambiguity and then return that type. This might be the right
408     // answer, or it might not be, but it suppresses any attempt to
409     // perform the name lookup again.
410     break;
411
412   case LookupResult::Found:
413     IIDecl = Result.getFoundDecl();
414     break;
415   }
416
417   assert(IIDecl && "Didn't find decl");
418
419   QualType T;
420   if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
421     DiagnoseUseOfDecl(IIDecl, NameLoc);
422
423     T = Context.getTypeDeclType(TD);
424     MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
425
426     // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
427     // constructor or destructor name (in such a case, the scope specifier
428     // will be attached to the enclosing Expr or Decl node).
429     if (SS && SS->isNotEmpty() && !IsCtorOrDtorName) {
430       if (WantNontrivialTypeSourceInfo) {
431         // Construct a type with type-source information.
432         TypeLocBuilder Builder;
433         Builder.pushTypeSpec(T).setNameLoc(NameLoc);
434         
435         T = getElaboratedType(ETK_None, *SS, T);
436         ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
437         ElabTL.setElaboratedKeywordLoc(SourceLocation());
438         ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
439         return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
440       } else {
441         T = getElaboratedType(ETK_None, *SS, T);
442       }
443     }
444   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
445     (void)DiagnoseUseOfDecl(IDecl, NameLoc);
446     if (!HasTrailingDot)
447       T = Context.getObjCInterfaceType(IDecl);
448   }
449
450   if (T.isNull()) {
451     // If it's not plausibly a type, suppress diagnostics.
452     Result.suppressDiagnostics();
453     return nullptr;
454   }
455   return ParsedType::make(T);
456 }
457
458 // Builds a fake NNS for the given decl context.
459 static NestedNameSpecifier *
460 synthesizeCurrentNestedNameSpecifier(ASTContext &Context, DeclContext *DC) {
461   for (;; DC = DC->getLookupParent()) {
462     DC = DC->getPrimaryContext();
463     auto *ND = dyn_cast<NamespaceDecl>(DC);
464     if (ND && !ND->isInline() && !ND->isAnonymousNamespace())
465       return NestedNameSpecifier::Create(Context, nullptr, ND);
466     else if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
467       return NestedNameSpecifier::Create(Context, nullptr, RD->isTemplateDecl(),
468                                          RD->getTypeForDecl());
469     else if (isa<TranslationUnitDecl>(DC))
470       return NestedNameSpecifier::GlobalSpecifier(Context);
471   }
472   llvm_unreachable("something isn't in TU scope?");
473 }
474
475 ParsedType Sema::ActOnDelayedDefaultTemplateArg(const IdentifierInfo &II,
476                                                 SourceLocation NameLoc) {
477   // Accepting an undeclared identifier as a default argument for a template
478   // type parameter is a Microsoft extension.
479   Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
480
481   // Build a fake DependentNameType that will perform lookup into CurContext at
482   // instantiation time.  The name specifier isn't dependent, so template
483   // instantiation won't transform it.  It will retry the lookup, however.
484   NestedNameSpecifier *NNS =
485       synthesizeCurrentNestedNameSpecifier(Context, CurContext);
486   QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
487
488   // Build type location information.  We synthesized the qualifier, so we have
489   // to build a fake NestedNameSpecifierLoc.
490   NestedNameSpecifierLocBuilder NNSLocBuilder;
491   NNSLocBuilder.MakeTrivial(Context, NNS, SourceRange(NameLoc));
492   NestedNameSpecifierLoc QualifierLoc = NNSLocBuilder.getWithLocInContext(Context);
493
494   TypeLocBuilder Builder;
495   DependentNameTypeLoc DepTL = Builder.push<DependentNameTypeLoc>(T);
496   DepTL.setNameLoc(NameLoc);
497   DepTL.setElaboratedKeywordLoc(SourceLocation());
498   DepTL.setQualifierLoc(QualifierLoc);
499   return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
500 }
501
502 /// isTagName() - This method is called *for error recovery purposes only*
503 /// to determine if the specified name is a valid tag name ("struct foo").  If
504 /// so, this returns the TST for the tag corresponding to it (TST_enum,
505 /// TST_union, TST_struct, TST_interface, TST_class).  This is used to diagnose
506 /// cases in C where the user forgot to specify the tag.
507 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
508   // Do a tag name lookup in this scope.
509   LookupResult R(*this, &II, SourceLocation(), LookupTagName);
510   LookupName(R, S, false);
511   R.suppressDiagnostics();
512   if (R.getResultKind() == LookupResult::Found)
513     if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
514       switch (TD->getTagKind()) {
515       case TTK_Struct: return DeclSpec::TST_struct;
516       case TTK_Interface: return DeclSpec::TST_interface;
517       case TTK_Union:  return DeclSpec::TST_union;
518       case TTK_Class:  return DeclSpec::TST_class;
519       case TTK_Enum:   return DeclSpec::TST_enum;
520       }
521     }
522
523   return DeclSpec::TST_unspecified;
524 }
525
526 /// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
527 /// if a CXXScopeSpec's type is equal to the type of one of the base classes
528 /// then downgrade the missing typename error to a warning.
529 /// This is needed for MSVC compatibility; Example:
530 /// @code
531 /// template<class T> class A {
532 /// public:
533 ///   typedef int TYPE;
534 /// };
535 /// template<class T> class B : public A<T> {
536 /// public:
537 ///   A<T>::TYPE a; // no typename required because A<T> is a base class.
538 /// };
539 /// @endcode
540 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
541   if (CurContext->isRecord()) {
542     if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
543       return true;
544
545     const Type *Ty = SS->getScopeRep()->getAsType();
546
547     CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
548     for (const auto &Base : RD->bases())
549       if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
550         return true;
551     return S->isFunctionPrototypeScope();
552   } 
553   return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
554 }
555
556 void Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
557                                    SourceLocation IILoc,
558                                    Scope *S,
559                                    CXXScopeSpec *SS,
560                                    ParsedType &SuggestedType,
561                                    bool AllowClassTemplates) {
562   // We don't have anything to suggest (yet).
563   SuggestedType = nullptr;
564
565   // There may have been a typo in the name of the type. Look up typo
566   // results, in case we have something that we can suggest.
567   if (TypoCorrection Corrected =
568           CorrectTypo(DeclarationNameInfo(II, IILoc), LookupOrdinaryName, S, SS,
569                       llvm::make_unique<TypeNameValidatorCCC>(
570                           false, false, AllowClassTemplates),
571                       CTK_ErrorRecovery)) {
572     if (Corrected.isKeyword()) {
573       // We corrected to a keyword.
574       diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II);
575       II = Corrected.getCorrectionAsIdentifierInfo();
576     } else {
577       // We found a similarly-named type or interface; suggest that.
578       if (!SS || !SS->isSet()) {
579         diagnoseTypo(Corrected,
580                      PDiag(diag::err_unknown_typename_suggest) << II);
581       } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
582         std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
583         bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
584                                 II->getName().equals(CorrectedStr);
585         diagnoseTypo(Corrected,
586                      PDiag(diag::err_unknown_nested_typename_suggest)
587                        << II << DC << DroppedSpecifier << SS->getRange());
588       } else {
589         llvm_unreachable("could not have corrected a typo here");
590       }
591
592       CXXScopeSpec tmpSS;
593       if (Corrected.getCorrectionSpecifier())
594         tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
595                           SourceRange(IILoc));
596       SuggestedType =
597           getTypeName(*Corrected.getCorrectionAsIdentifierInfo(), IILoc, S,
598                       tmpSS.isSet() ? &tmpSS : SS, false, false, nullptr,
599                       /*IsCtorOrDtorName=*/false,
600                       /*NonTrivialTypeSourceInfo=*/true);
601     }
602     return;
603   }
604
605   if (getLangOpts().CPlusPlus) {
606     // See if II is a class template that the user forgot to pass arguments to.
607     UnqualifiedId Name;
608     Name.setIdentifier(II, IILoc);
609     CXXScopeSpec EmptySS;
610     TemplateTy TemplateResult;
611     bool MemberOfUnknownSpecialization;
612     if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
613                        Name, nullptr, true, TemplateResult,
614                        MemberOfUnknownSpecialization) == TNK_Type_template) {
615       TemplateName TplName = TemplateResult.get();
616       Diag(IILoc, diag::err_template_missing_args) << TplName;
617       if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) {
618         Diag(TplDecl->getLocation(), diag::note_template_decl_here)
619           << TplDecl->getTemplateParameters()->getSourceRange();
620       }
621       return;
622     }
623   }
624
625   // FIXME: Should we move the logic that tries to recover from a missing tag
626   // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
627   
628   if (!SS || (!SS->isSet() && !SS->isInvalid()))
629     Diag(IILoc, diag::err_unknown_typename) << II;
630   else if (DeclContext *DC = computeDeclContext(*SS, false))
631     Diag(IILoc, diag::err_typename_nested_not_found) 
632       << II << DC << SS->getRange();
633   else if (isDependentScopeSpecifier(*SS)) {
634     unsigned DiagID = diag::err_typename_missing;
635     if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
636       DiagID = diag::ext_typename_missing;
637
638     Diag(SS->getRange().getBegin(), DiagID)
639       << SS->getScopeRep() << II->getName()
640       << SourceRange(SS->getRange().getBegin(), IILoc)
641       << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
642     SuggestedType = ActOnTypenameType(S, SourceLocation(),
643                                       *SS, *II, IILoc).get();
644   } else {
645     assert(SS && SS->isInvalid() && 
646            "Invalid scope specifier has already been diagnosed");
647   }
648 }
649
650 /// \brief Determine whether the given result set contains either a type name
651 /// or 
652 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
653   bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
654                        NextToken.is(tok::less);
655   
656   for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
657     if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
658       return true;
659     
660     if (CheckTemplate && isa<TemplateDecl>(*I))
661       return true;
662   }
663   
664   return false;
665 }
666
667 static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
668                                     Scope *S, CXXScopeSpec &SS,
669                                     IdentifierInfo *&Name,
670                                     SourceLocation NameLoc) {
671   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
672   SemaRef.LookupParsedName(R, S, &SS);
673   if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
674     StringRef FixItTagName;
675     switch (Tag->getTagKind()) {
676       case TTK_Class:
677         FixItTagName = "class ";
678         break;
679
680       case TTK_Enum:
681         FixItTagName = "enum ";
682         break;
683
684       case TTK_Struct:
685         FixItTagName = "struct ";
686         break;
687
688       case TTK_Interface:
689         FixItTagName = "__interface ";
690         break;
691
692       case TTK_Union:
693         FixItTagName = "union ";
694         break;
695     }
696
697     StringRef TagName = FixItTagName.drop_back();
698     SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
699       << Name << TagName << SemaRef.getLangOpts().CPlusPlus
700       << FixItHint::CreateInsertion(NameLoc, FixItTagName);
701
702     for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
703          I != IEnd; ++I)
704       SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
705         << Name << TagName;
706
707     // Replace lookup results with just the tag decl.
708     Result.clear(Sema::LookupTagName);
709     SemaRef.LookupParsedName(Result, S, &SS);
710     return true;
711   }
712
713   return false;
714 }
715
716 /// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
717 static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
718                                   QualType T, SourceLocation NameLoc) {
719   ASTContext &Context = S.Context;
720
721   TypeLocBuilder Builder;
722   Builder.pushTypeSpec(T).setNameLoc(NameLoc);
723
724   T = S.getElaboratedType(ETK_None, SS, T);
725   ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
726   ElabTL.setElaboratedKeywordLoc(SourceLocation());
727   ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
728   return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
729 }
730
731 Sema::NameClassification
732 Sema::ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name,
733                    SourceLocation NameLoc, const Token &NextToken,
734                    bool IsAddressOfOperand,
735                    std::unique_ptr<CorrectionCandidateCallback> CCC) {
736   DeclarationNameInfo NameInfo(Name, NameLoc);
737   ObjCMethodDecl *CurMethod = getCurMethodDecl();
738
739   if (NextToken.is(tok::coloncolon)) {
740     BuildCXXNestedNameSpecifier(S, *Name, NameLoc, NextToken.getLocation(),
741                                 QualType(), false, SS, nullptr, false);
742   }
743
744   LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
745   LookupParsedName(Result, S, &SS, !CurMethod);
746
747   // For unqualified lookup in a class template in MSVC mode, look into
748   // dependent base classes where the primary class template is known.
749   if (Result.empty() && SS.isEmpty() && getLangOpts().MSVCCompat) {
750     if (ParsedType TypeInBase =
751             recoverFromTypeInKnownDependentBase(*this, *Name, NameLoc))
752       return TypeInBase;
753   }
754
755   // Perform lookup for Objective-C instance variables (including automatically 
756   // synthesized instance variables), if we're in an Objective-C method.
757   // FIXME: This lookup really, really needs to be folded in to the normal
758   // unqualified lookup mechanism.
759   if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
760     ExprResult E = LookupInObjCMethod(Result, S, Name, true);
761     if (E.get() || E.isInvalid())
762       return E;
763   }
764   
765   bool SecondTry = false;
766   bool IsFilteredTemplateName = false;
767   
768 Corrected:
769   switch (Result.getResultKind()) {
770   case LookupResult::NotFound:
771     // If an unqualified-id is followed by a '(', then we have a function
772     // call.
773     if (!SS.isSet() && NextToken.is(tok::l_paren)) {
774       // In C++, this is an ADL-only call.
775       // FIXME: Reference?
776       if (getLangOpts().CPlusPlus)
777         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
778       
779       // C90 6.3.2.2:
780       //   If the expression that precedes the parenthesized argument list in a 
781       //   function call consists solely of an identifier, and if no 
782       //   declaration is visible for this identifier, the identifier is 
783       //   implicitly declared exactly as if, in the innermost block containing
784       //   the function call, the declaration
785       //
786       //     extern int identifier (); 
787       //
788       //   appeared. 
789       // 
790       // We also allow this in C99 as an extension.
791       if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
792         Result.addDecl(D);
793         Result.resolveKind();
794         return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false);
795       }
796     }
797     
798     // In C, we first see whether there is a tag type by the same name, in 
799     // which case it's likely that the user just forgot to write "enum", 
800     // "struct", or "union".
801     if (!getLangOpts().CPlusPlus && !SecondTry &&
802         isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
803       break;
804     }
805
806     // Perform typo correction to determine if there is another name that is
807     // close to this name.
808     if (!SecondTry && CCC) {
809       SecondTry = true;
810       if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(),
811                                                  Result.getLookupKind(), S, 
812                                                  &SS, std::move(CCC),
813                                                  CTK_ErrorRecovery)) {
814         unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
815         unsigned QualifiedDiag = diag::err_no_member_suggest;
816
817         NamedDecl *FirstDecl = Corrected.getFoundDecl();
818         NamedDecl *UnderlyingFirstDecl = Corrected.getCorrectionDecl();
819         if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
820             UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
821           UnqualifiedDiag = diag::err_no_template_suggest;
822           QualifiedDiag = diag::err_no_member_template_suggest;
823         } else if (UnderlyingFirstDecl && 
824                    (isa<TypeDecl>(UnderlyingFirstDecl) || 
825                     isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
826                     isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
827           UnqualifiedDiag = diag::err_unknown_typename_suggest;
828           QualifiedDiag = diag::err_unknown_nested_typename_suggest;
829         }
830
831         if (SS.isEmpty()) {
832           diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
833         } else {// FIXME: is this even reachable? Test it.
834           std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
835           bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
836                                   Name->getName().equals(CorrectedStr);
837           diagnoseTypo(Corrected, PDiag(QualifiedDiag)
838                                     << Name << computeDeclContext(SS, false)
839                                     << DroppedSpecifier << SS.getRange());
840         }
841
842         // Update the name, so that the caller has the new name.
843         Name = Corrected.getCorrectionAsIdentifierInfo();
844
845         // Typo correction corrected to a keyword.
846         if (Corrected.isKeyword())
847           return Name;
848
849         // Also update the LookupResult...
850         // FIXME: This should probably go away at some point
851         Result.clear();
852         Result.setLookupName(Corrected.getCorrection());
853         if (FirstDecl)
854           Result.addDecl(FirstDecl);
855
856         // If we found an Objective-C instance variable, let
857         // LookupInObjCMethod build the appropriate expression to
858         // reference the ivar.
859         // FIXME: This is a gross hack.
860         if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
861           Result.clear();
862           ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
863           return E;
864         }
865         
866         goto Corrected;
867       }
868     }
869       
870     // We failed to correct; just fall through and let the parser deal with it.
871     Result.suppressDiagnostics();
872     return NameClassification::Unknown();
873       
874   case LookupResult::NotFoundInCurrentInstantiation: {
875     // We performed name lookup into the current instantiation, and there were 
876     // dependent bases, so we treat this result the same way as any other
877     // dependent nested-name-specifier.
878       
879     // C++ [temp.res]p2:
880     //   A name used in a template declaration or definition and that is 
881     //   dependent on a template-parameter is assumed not to name a type 
882     //   unless the applicable name lookup finds a type name or the name is 
883     //   qualified by the keyword typename.
884     //
885     // FIXME: If the next token is '<', we might want to ask the parser to
886     // perform some heroics to see if we actually have a 
887     // template-argument-list, which would indicate a missing 'template'
888     // keyword here.
889     return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
890                                       NameInfo, IsAddressOfOperand,
891                                       /*TemplateArgs=*/nullptr);
892   }
893
894   case LookupResult::Found:
895   case LookupResult::FoundOverloaded:
896   case LookupResult::FoundUnresolvedValue:
897     break;
898       
899   case LookupResult::Ambiguous:
900     if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
901         hasAnyAcceptableTemplateNames(Result)) {
902       // C++ [temp.local]p3:
903       //   A lookup that finds an injected-class-name (10.2) can result in an
904       //   ambiguity in certain cases (for example, if it is found in more than
905       //   one base class). If all of the injected-class-names that are found
906       //   refer to specializations of the same class template, and if the name
907       //   is followed by a template-argument-list, the reference refers to the
908       //   class template itself and not a specialization thereof, and is not
909       //   ambiguous.
910       //
911       // This filtering can make an ambiguous result into an unambiguous one,
912       // so try again after filtering out template names.
913       FilterAcceptableTemplateNames(Result);
914       if (!Result.isAmbiguous()) {
915         IsFilteredTemplateName = true;
916         break;
917       }
918     }
919       
920     // Diagnose the ambiguity and return an error.
921     return NameClassification::Error();
922   }
923   
924   if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
925       (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) {
926     // C++ [temp.names]p3:
927     //   After name lookup (3.4) finds that a name is a template-name or that
928     //   an operator-function-id or a literal- operator-id refers to a set of
929     //   overloaded functions any member of which is a function template if 
930     //   this is followed by a <, the < is always taken as the delimiter of a
931     //   template-argument-list and never as the less-than operator.
932     if (!IsFilteredTemplateName)
933       FilterAcceptableTemplateNames(Result);
934     
935     if (!Result.empty()) {
936       bool IsFunctionTemplate;
937       bool IsVarTemplate;
938       TemplateName Template;
939       if (Result.end() - Result.begin() > 1) {
940         IsFunctionTemplate = true;
941         Template = Context.getOverloadedTemplateName(Result.begin(), 
942                                                      Result.end());
943       } else {
944         TemplateDecl *TD
945           = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl());
946         IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
947         IsVarTemplate = isa<VarTemplateDecl>(TD);
948
949         if (SS.isSet() && !SS.isInvalid())
950           Template = Context.getQualifiedTemplateName(SS.getScopeRep(), 
951                                                     /*TemplateKeyword=*/false,
952                                                       TD);
953         else
954           Template = TemplateName(TD);
955       }
956       
957       if (IsFunctionTemplate) {
958         // Function templates always go through overload resolution, at which
959         // point we'll perform the various checks (e.g., accessibility) we need
960         // to based on which function we selected.
961         Result.suppressDiagnostics();
962         
963         return NameClassification::FunctionTemplate(Template);
964       }
965
966       return IsVarTemplate ? NameClassification::VarTemplate(Template)
967                            : NameClassification::TypeTemplate(Template);
968     }
969   }
970
971   NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
972   if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
973     DiagnoseUseOfDecl(Type, NameLoc);
974     MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false);
975     QualType T = Context.getTypeDeclType(Type);
976     if (SS.isNotEmpty())
977       return buildNestedType(*this, SS, T, NameLoc);
978     return ParsedType::make(T);
979   }
980
981   ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
982   if (!Class) {
983     // FIXME: It's unfortunate that we don't have a Type node for handling this.
984     if (ObjCCompatibleAliasDecl *Alias =
985             dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
986       Class = Alias->getClassInterface();
987   }
988   
989   if (Class) {
990     DiagnoseUseOfDecl(Class, NameLoc);
991     
992     if (NextToken.is(tok::period)) {
993       // Interface. <something> is parsed as a property reference expression.
994       // Just return "unknown" as a fall-through for now.
995       Result.suppressDiagnostics();
996       return NameClassification::Unknown();
997     }
998     
999     QualType T = Context.getObjCInterfaceType(Class);
1000     return ParsedType::make(T);
1001   }
1002
1003   // We can have a type template here if we're classifying a template argument.
1004   if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl))
1005     return NameClassification::TypeTemplate(
1006         TemplateName(cast<TemplateDecl>(FirstDecl)));
1007
1008   // Check for a tag type hidden by a non-type decl in a few cases where it
1009   // seems likely a type is wanted instead of the non-type that was found.
1010   bool NextIsOp = NextToken.isOneOf(tok::amp, tok::star);
1011   if ((NextToken.is(tok::identifier) ||
1012        (NextIsOp &&
1013         FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
1014       isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
1015     TypeDecl *Type = Result.getAsSingle<TypeDecl>();
1016     DiagnoseUseOfDecl(Type, NameLoc);
1017     QualType T = Context.getTypeDeclType(Type);
1018     if (SS.isNotEmpty())
1019       return buildNestedType(*this, SS, T, NameLoc);
1020     return ParsedType::make(T);
1021   }
1022   
1023   if (FirstDecl->isCXXClassMember())
1024     return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
1025                                            nullptr, S);
1026
1027   bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
1028   return BuildDeclarationNameExpr(SS, Result, ADL);
1029 }
1030
1031 // Determines the context to return to after temporarily entering a
1032 // context.  This depends in an unnecessarily complicated way on the
1033 // exact ordering of callbacks from the parser.
1034 DeclContext *Sema::getContainingDC(DeclContext *DC) {
1035
1036   // Functions defined inline within classes aren't parsed until we've
1037   // finished parsing the top-level class, so the top-level class is
1038   // the context we'll need to return to.
1039   // A Lambda call operator whose parent is a class must not be treated 
1040   // as an inline member function.  A Lambda can be used legally
1041   // either as an in-class member initializer or a default argument.  These
1042   // are parsed once the class has been marked complete and so the containing
1043   // context would be the nested class (when the lambda is defined in one);
1044   // If the class is not complete, then the lambda is being used in an 
1045   // ill-formed fashion (such as to specify the width of a bit-field, or
1046   // in an array-bound) - in which case we still want to return the 
1047   // lexically containing DC (which could be a nested class). 
1048   if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) {
1049     DC = DC->getLexicalParent();
1050
1051     // A function not defined within a class will always return to its
1052     // lexical context.
1053     if (!isa<CXXRecordDecl>(DC))
1054       return DC;
1055
1056     // A C++ inline method/friend is parsed *after* the topmost class
1057     // it was declared in is fully parsed ("complete");  the topmost
1058     // class is the context we need to return to.
1059     while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
1060       DC = RD;
1061
1062     // Return the declaration context of the topmost class the inline method is
1063     // declared in.
1064     return DC;
1065   }
1066
1067   return DC->getLexicalParent();
1068 }
1069
1070 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1071   assert(getContainingDC(DC) == CurContext &&
1072       "The next DeclContext should be lexically contained in the current one.");
1073   CurContext = DC;
1074   S->setEntity(DC);
1075 }
1076
1077 void Sema::PopDeclContext() {
1078   assert(CurContext && "DeclContext imbalance!");
1079
1080   CurContext = getContainingDC(CurContext);
1081   assert(CurContext && "Popped translation unit!");
1082 }
1083
1084 Sema::SkippedDefinitionContext Sema::ActOnTagStartSkippedDefinition(Scope *S,
1085                                                                     Decl *D) {
1086   // Unlike PushDeclContext, the context to which we return is not necessarily
1087   // the containing DC of TD, because the new context will be some pre-existing
1088   // TagDecl definition instead of a fresh one.
1089   auto Result = static_cast<SkippedDefinitionContext>(CurContext);
1090   CurContext = cast<TagDecl>(D)->getDefinition();
1091   assert(CurContext && "skipping definition of undefined tag");
1092   // Start lookups from the parent of the current context; we don't want to look
1093   // into the pre-existing complete definition.
1094   S->setEntity(CurContext->getLookupParent());
1095   return Result;
1096 }
1097
1098 void Sema::ActOnTagFinishSkippedDefinition(SkippedDefinitionContext Context) {
1099   CurContext = static_cast<decltype(CurContext)>(Context);
1100 }
1101
1102 /// EnterDeclaratorContext - Used when we must lookup names in the context
1103 /// of a declarator's nested name specifier.
1104 ///
1105 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1106   // C++0x [basic.lookup.unqual]p13:
1107   //   A name used in the definition of a static data member of class
1108   //   X (after the qualified-id of the static member) is looked up as
1109   //   if the name was used in a member function of X.
1110   // C++0x [basic.lookup.unqual]p14:
1111   //   If a variable member of a namespace is defined outside of the
1112   //   scope of its namespace then any name used in the definition of
1113   //   the variable member (after the declarator-id) is looked up as
1114   //   if the definition of the variable member occurred in its
1115   //   namespace.
1116   // Both of these imply that we should push a scope whose context
1117   // is the semantic context of the declaration.  We can't use
1118   // PushDeclContext here because that context is not necessarily
1119   // lexically contained in the current context.  Fortunately,
1120   // the containing scope should have the appropriate information.
1121
1122   assert(!S->getEntity() && "scope already has entity");
1123
1124 #ifndef NDEBUG
1125   Scope *Ancestor = S->getParent();
1126   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1127   assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
1128 #endif
1129
1130   CurContext = DC;
1131   S->setEntity(DC);
1132 }
1133
1134 void Sema::ExitDeclaratorContext(Scope *S) {
1135   assert(S->getEntity() == CurContext && "Context imbalance!");
1136
1137   // Switch back to the lexical context.  The safety of this is
1138   // enforced by an assert in EnterDeclaratorContext.
1139   Scope *Ancestor = S->getParent();
1140   while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
1141   CurContext = Ancestor->getEntity();
1142
1143   // We don't need to do anything with the scope, which is going to
1144   // disappear.
1145 }
1146
1147 void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
1148   // We assume that the caller has already called
1149   // ActOnReenterTemplateScope so getTemplatedDecl() works.
1150   FunctionDecl *FD = D->getAsFunction();
1151   if (!FD)
1152     return;
1153
1154   // Same implementation as PushDeclContext, but enters the context
1155   // from the lexical parent, rather than the top-level class.
1156   assert(CurContext == FD->getLexicalParent() &&
1157     "The next DeclContext should be lexically contained in the current one.");
1158   CurContext = FD;
1159   S->setEntity(CurContext);
1160
1161   for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
1162     ParmVarDecl *Param = FD->getParamDecl(P);
1163     // If the parameter has an identifier, then add it to the scope
1164     if (Param->getIdentifier()) {
1165       S->AddDecl(Param);
1166       IdResolver.AddDecl(Param);
1167     }
1168   }
1169 }
1170
1171 void Sema::ActOnExitFunctionContext() {
1172   // Same implementation as PopDeclContext, but returns to the lexical parent,
1173   // rather than the top-level class.
1174   assert(CurContext && "DeclContext imbalance!");
1175   CurContext = CurContext->getLexicalParent();
1176   assert(CurContext && "Popped translation unit!");
1177 }
1178
1179 /// \brief Determine whether we allow overloading of the function
1180 /// PrevDecl with another declaration.
1181 ///
1182 /// This routine determines whether overloading is possible, not
1183 /// whether some new function is actually an overload. It will return
1184 /// true in C++ (where we can always provide overloads) or, as an
1185 /// extension, in C when the previous function is already an
1186 /// overloaded function declaration or has the "overloadable"
1187 /// attribute.
1188 static bool AllowOverloadingOfFunction(LookupResult &Previous,
1189                                        ASTContext &Context) {
1190   if (Context.getLangOpts().CPlusPlus)
1191     return true;
1192
1193   if (Previous.getResultKind() == LookupResult::FoundOverloaded)
1194     return true;
1195
1196   return (Previous.getResultKind() == LookupResult::Found
1197           && Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
1198 }
1199
1200 /// Add this decl to the scope shadowed decl chains.
1201 void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
1202   // Move up the scope chain until we find the nearest enclosing
1203   // non-transparent context. The declaration will be introduced into this
1204   // scope.
1205   while (S->getEntity() && S->getEntity()->isTransparentContext())
1206     S = S->getParent();
1207
1208   // Add scoped declarations into their context, so that they can be
1209   // found later. Declarations without a context won't be inserted
1210   // into any context.
1211   if (AddToContext)
1212     CurContext->addDecl(D);
1213
1214   // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1215   // are function-local declarations.
1216   if (getLangOpts().CPlusPlus && D->isOutOfLine() &&
1217       !D->getDeclContext()->getRedeclContext()->Equals(
1218         D->getLexicalDeclContext()->getRedeclContext()) &&
1219       !D->getLexicalDeclContext()->isFunctionOrMethod())
1220     return;
1221
1222   // Template instantiations should also not be pushed into scope.
1223   if (isa<FunctionDecl>(D) &&
1224       cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
1225     return;
1226
1227   // If this replaces anything in the current scope, 
1228   IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1229                                IEnd = IdResolver.end();
1230   for (; I != IEnd; ++I) {
1231     if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1232       S->RemoveDecl(*I);
1233       IdResolver.RemoveDecl(*I);
1234
1235       // Should only need to replace one decl.
1236       break;
1237     }
1238   }
1239
1240   S->AddDecl(D);
1241   
1242   if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1243     // Implicitly-generated labels may end up getting generated in an order that
1244     // isn't strictly lexical, which breaks name lookup. Be careful to insert
1245     // the label at the appropriate place in the identifier chain.
1246     for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
1247       DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
1248       if (IDC == CurContext) {
1249         if (!S->isDeclScope(*I))
1250           continue;
1251       } else if (IDC->Encloses(CurContext))
1252         break;
1253     }
1254     
1255     IdResolver.InsertDeclAfter(I, D);
1256   } else {
1257     IdResolver.AddDecl(D);
1258   }
1259 }
1260
1261 void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
1262   if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope)
1263     TUScope->AddDecl(D);
1264 }
1265
1266 bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
1267                          bool AllowInlineNamespace) {
1268   return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
1269 }
1270
1271 Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1272   DeclContext *TargetDC = DC->getPrimaryContext();
1273   do {
1274     if (DeclContext *ScopeDC = S->getEntity())
1275       if (ScopeDC->getPrimaryContext() == TargetDC)
1276         return S;
1277   } while ((S = S->getParent()));
1278
1279   return nullptr;
1280 }
1281
1282 static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1283                                             DeclContext*,
1284                                             ASTContext&);
1285
1286 /// Filters out lookup results that don't fall within the given scope
1287 /// as determined by isDeclInScope.
1288 void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
1289                                 bool ConsiderLinkage,
1290                                 bool AllowInlineNamespace) {
1291   LookupResult::Filter F = R.makeFilter();
1292   while (F.hasNext()) {
1293     NamedDecl *D = F.next();
1294
1295     if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
1296       continue;
1297
1298     if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
1299       continue;
1300
1301     F.erase();
1302   }
1303
1304   F.done();
1305 }
1306
1307 static bool isUsingDecl(NamedDecl *D) {
1308   return isa<UsingShadowDecl>(D) ||
1309          isa<UnresolvedUsingTypenameDecl>(D) ||
1310          isa<UnresolvedUsingValueDecl>(D);
1311 }
1312
1313 /// Removes using shadow declarations from the lookup results.
1314 static void RemoveUsingDecls(LookupResult &R) {
1315   LookupResult::Filter F = R.makeFilter();
1316   while (F.hasNext())
1317     if (isUsingDecl(F.next()))
1318       F.erase();
1319
1320   F.done();
1321 }
1322
1323 /// \brief Check for this common pattern:
1324 /// @code
1325 /// class S {
1326 ///   S(const S&); // DO NOT IMPLEMENT
1327 ///   void operator=(const S&); // DO NOT IMPLEMENT
1328 /// };
1329 /// @endcode
1330 static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1331   // FIXME: Should check for private access too but access is set after we get
1332   // the decl here.
1333   if (D->doesThisDeclarationHaveABody())
1334     return false;
1335
1336   if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1337     return CD->isCopyConstructor();
1338   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1339     return Method->isCopyAssignmentOperator();
1340   return false;
1341 }
1342
1343 // We need this to handle
1344 //
1345 // typedef struct {
1346 //   void *foo() { return 0; }
1347 // } A;
1348 //
1349 // When we see foo we don't know if after the typedef we will get 'A' or '*A'
1350 // for example. If 'A', foo will have external linkage. If we have '*A',
1351 // foo will have no linkage. Since we can't know until we get to the end
1352 // of the typedef, this function finds out if D might have non-external linkage.
1353 // Callers should verify at the end of the TU if it D has external linkage or
1354 // not.
1355 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1356   const DeclContext *DC = D->getDeclContext();
1357   while (!DC->isTranslationUnit()) {
1358     if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1359       if (!RD->hasNameForLinkage())
1360         return true;
1361     }
1362     DC = DC->getParent();
1363   }
1364
1365   return !D->isExternallyVisible();
1366 }
1367
1368 // FIXME: This needs to be refactored; some other isInMainFile users want
1369 // these semantics.
1370 static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1371   if (S.TUKind != TU_Complete)
1372     return false;
1373   return S.SourceMgr.isInMainFile(Loc);
1374 }
1375
1376 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1377   assert(D);
1378
1379   if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1380     return false;
1381
1382   // Ignore all entities declared within templates, and out-of-line definitions
1383   // of members of class templates.
1384   if (D->getDeclContext()->isDependentContext() ||
1385       D->getLexicalDeclContext()->isDependentContext())
1386     return false;
1387
1388   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1389     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1390       return false;
1391
1392     if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1393       if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1394         return false;
1395     } else {
1396       // 'static inline' functions are defined in headers; don't warn.
1397       if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
1398         return false;
1399     }
1400
1401     if (FD->doesThisDeclarationHaveABody() &&
1402         Context.DeclMustBeEmitted(FD))
1403       return false;
1404   } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1405     // Constants and utility variables are defined in headers with internal
1406     // linkage; don't warn.  (Unlike functions, there isn't a convenient marker
1407     // like "inline".)
1408     if (!isMainFileLoc(*this, VD->getLocation()))
1409       return false;
1410
1411     if (Context.DeclMustBeEmitted(VD))
1412       return false;
1413
1414     if (VD->isStaticDataMember() &&
1415         VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1416       return false;
1417   } else {
1418     return false;
1419   }
1420
1421   // Only warn for unused decls internal to the translation unit.
1422   // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1423   // for inline functions defined in the main source file, for instance.
1424   return mightHaveNonExternalLinkage(D);
1425 }
1426
1427 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
1428   if (!D)
1429     return;
1430
1431   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1432     const FunctionDecl *First = FD->getFirstDecl();
1433     if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1434       return; // First should already be in the vector.
1435   }
1436
1437   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1438     const VarDecl *First = VD->getFirstDecl();
1439     if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1440       return; // First should already be in the vector.
1441   }
1442
1443   if (ShouldWarnIfUnusedFileScopedDecl(D))
1444     UnusedFileScopedDecls.push_back(D);
1445 }
1446
1447 static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
1448   if (D->isInvalidDecl())
1449     return false;
1450
1451   if (D->isReferenced() || D->isUsed() || D->hasAttr<UnusedAttr>() ||
1452       D->hasAttr<ObjCPreciseLifetimeAttr>())
1453     return false;
1454
1455   if (isa<LabelDecl>(D))
1456     return true;
1457
1458   // Except for labels, we only care about unused decls that are local to
1459   // functions.
1460   bool WithinFunction = D->getDeclContext()->isFunctionOrMethod();
1461   if (const auto *R = dyn_cast<CXXRecordDecl>(D->getDeclContext()))
1462     // For dependent types, the diagnostic is deferred.
1463     WithinFunction =
1464         WithinFunction || (R->isLocalClass() && !R->isDependentType());
1465   if (!WithinFunction)
1466     return false;
1467
1468   if (isa<TypedefNameDecl>(D))
1469     return true;
1470   
1471   // White-list anything that isn't a local variable.
1472   if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D))
1473     return false;
1474
1475   // Types of valid local variables should be complete, so this should succeed.
1476   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1477
1478     // White-list anything with an __attribute__((unused)) type.
1479     QualType Ty = VD->getType();
1480
1481     // Only look at the outermost level of typedef.
1482     if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
1483       if (TT->getDecl()->hasAttr<UnusedAttr>())
1484         return false;
1485     }
1486
1487     // If we failed to complete the type for some reason, or if the type is
1488     // dependent, don't diagnose the variable. 
1489     if (Ty->isIncompleteType() || Ty->isDependentType())
1490       return false;
1491
1492     if (const TagType *TT = Ty->getAs<TagType>()) {
1493       const TagDecl *Tag = TT->getDecl();
1494       if (Tag->hasAttr<UnusedAttr>())
1495         return false;
1496
1497       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
1498         if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
1499           return false;
1500
1501         if (const Expr *Init = VD->getInit()) {
1502           if (const ExprWithCleanups *Cleanups =
1503                   dyn_cast<ExprWithCleanups>(Init))
1504             Init = Cleanups->getSubExpr();
1505           const CXXConstructExpr *Construct =
1506             dyn_cast<CXXConstructExpr>(Init);
1507           if (Construct && !Construct->isElidable()) {
1508             CXXConstructorDecl *CD = Construct->getConstructor();
1509             if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>())
1510               return false;
1511           }
1512         }
1513       }
1514     }
1515
1516     // TODO: __attribute__((unused)) templates?
1517   }
1518   
1519   return true;
1520 }
1521
1522 static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1523                                      FixItHint &Hint) {
1524   if (isa<LabelDecl>(D)) {
1525     SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
1526                 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
1527     if (AfterColon.isInvalid())
1528       return;
1529     Hint = FixItHint::CreateRemoval(CharSourceRange::
1530                                     getCharRange(D->getLocStart(), AfterColon));
1531   }
1532 }
1533
1534 void Sema::DiagnoseUnusedNestedTypedefs(const RecordDecl *D) {
1535   if (D->getTypeForDecl()->isDependentType())
1536     return;
1537
1538   for (auto *TmpD : D->decls()) {
1539     if (const auto *T = dyn_cast<TypedefNameDecl>(TmpD))
1540       DiagnoseUnusedDecl(T);
1541     else if(const auto *R = dyn_cast<RecordDecl>(TmpD))
1542       DiagnoseUnusedNestedTypedefs(R);
1543   }
1544 }
1545
1546 /// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1547 /// unless they are marked attr(unused).
1548 void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1549   if (!ShouldDiagnoseUnusedDecl(D))
1550     return;
1551
1552   if (auto *TD = dyn_cast<TypedefNameDecl>(D)) {
1553     // typedefs can be referenced later on, so the diagnostics are emitted
1554     // at end-of-translation-unit.
1555     UnusedLocalTypedefNameCandidates.insert(TD);
1556     return;
1557   }
1558   
1559   FixItHint Hint;
1560   GenerateFixForUnusedDecl(D, Context, Hint);
1561
1562   unsigned DiagID;
1563   if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
1564     DiagID = diag::warn_unused_exception_param;
1565   else if (isa<LabelDecl>(D))
1566     DiagID = diag::warn_unused_label;
1567   else
1568     DiagID = diag::warn_unused_variable;
1569
1570   Diag(D->getLocation(), DiagID) << D->getDeclName() << Hint;
1571 }
1572
1573 static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1574   // Verify that we have no forward references left.  If so, there was a goto
1575   // or address of a label taken, but no definition of it.  Label fwd
1576   // definitions are indicated with a null substmt which is also not a resolved
1577   // MS inline assembly label name.
1578   bool Diagnose = false;
1579   if (L->isMSAsmLabel())
1580     Diagnose = !L->isResolvedMSAsmLabel();
1581   else
1582     Diagnose = L->getStmt() == nullptr;
1583   if (Diagnose)
1584     S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1585 }
1586
1587 void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
1588   S->mergeNRVOIntoParent();
1589
1590   if (S->decl_empty()) return;
1591   assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
1592          "Scope shouldn't contain decls!");
1593
1594   for (auto *TmpD : S->decls()) {
1595     assert(TmpD && "This decl didn't get pushed??");
1596
1597     assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1598     NamedDecl *D = cast<NamedDecl>(TmpD);
1599
1600     if (!D->getDeclName()) continue;
1601
1602     // Diagnose unused variables in this scope.
1603     if (!S->hasUnrecoverableErrorOccurred()) {
1604       DiagnoseUnusedDecl(D);
1605       if (const auto *RD = dyn_cast<RecordDecl>(D))
1606         DiagnoseUnusedNestedTypedefs(RD);
1607     }
1608     
1609     // If this was a forward reference to a label, verify it was defined.
1610     if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1611       CheckPoppedLabel(LD, *this);
1612     
1613     // Remove this name from our lexical scope.
1614     IdResolver.RemoveDecl(D);
1615   }
1616 }
1617
1618 /// \brief Look for an Objective-C class in the translation unit.
1619 ///
1620 /// \param Id The name of the Objective-C class we're looking for. If
1621 /// typo-correction fixes this name, the Id will be updated
1622 /// to the fixed name.
1623 ///
1624 /// \param IdLoc The location of the name in the translation unit.
1625 ///
1626 /// \param DoTypoCorrection If true, this routine will attempt typo correction
1627 /// if there is no class with the given name.
1628 ///
1629 /// \returns The declaration of the named Objective-C class, or NULL if the
1630 /// class could not be found.
1631 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1632                                               SourceLocation IdLoc,
1633                                               bool DoTypoCorrection) {
1634   // The third "scope" argument is 0 since we aren't enabling lazy built-in
1635   // creation from this context.
1636   NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1637
1638   if (!IDecl && DoTypoCorrection) {
1639     // Perform typo correction at the given location, but only if we
1640     // find an Objective-C class name.
1641     if (TypoCorrection C = CorrectTypo(
1642             DeclarationNameInfo(Id, IdLoc), LookupOrdinaryName, TUScope, nullptr,
1643             llvm::make_unique<DeclFilterCCC<ObjCInterfaceDecl>>(),
1644             CTK_ErrorRecovery)) {
1645       diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1646       IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
1647       Id = IDecl->getIdentifier();
1648     }
1649   }
1650   ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1651   // This routine must always return a class definition, if any.
1652   if (Def && Def->getDefinition())
1653       Def = Def->getDefinition();
1654   return Def;
1655 }
1656
1657 /// getNonFieldDeclScope - Retrieves the innermost scope, starting
1658 /// from S, where a non-field would be declared. This routine copes
1659 /// with the difference between C and C++ scoping rules in structs and
1660 /// unions. For example, the following code is well-formed in C but
1661 /// ill-formed in C++:
1662 /// @code
1663 /// struct S6 {
1664 ///   enum { BAR } e;
1665 /// };
1666 ///
1667 /// void test_S6() {
1668 ///   struct S6 a;
1669 ///   a.e = BAR;
1670 /// }
1671 /// @endcode
1672 /// For the declaration of BAR, this routine will return a different
1673 /// scope. The scope S will be the scope of the unnamed enumeration
1674 /// within S6. In C++, this routine will return the scope associated
1675 /// with S6, because the enumeration's scope is a transparent
1676 /// context but structures can contain non-field names. In C, this
1677 /// routine will return the translation unit scope, since the
1678 /// enumeration's scope is a transparent context and structures cannot
1679 /// contain non-field names.
1680 Scope *Sema::getNonFieldDeclScope(Scope *S) {
1681   while (((S->getFlags() & Scope::DeclScope) == 0) ||
1682          (S->getEntity() && S->getEntity()->isTransparentContext()) ||
1683          (S->isClassScope() && !getLangOpts().CPlusPlus))
1684     S = S->getParent();
1685   return S;
1686 }
1687
1688 /// \brief Looks up the declaration of "struct objc_super" and
1689 /// saves it for later use in building builtin declaration of
1690 /// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1691 /// pre-existing declaration exists no action takes place.
1692 static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1693                                         IdentifierInfo *II) {
1694   if (!II->isStr("objc_msgSendSuper"))
1695     return;
1696   ASTContext &Context = ThisSema.Context;
1697     
1698   LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1699                       SourceLocation(), Sema::LookupTagName);
1700   ThisSema.LookupName(Result, S);
1701   if (Result.getResultKind() == LookupResult::Found)
1702     if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1703       Context.setObjCSuperType(Context.getTagDeclType(TD));
1704 }
1705
1706 static StringRef getHeaderName(ASTContext::GetBuiltinTypeError Error) {
1707   switch (Error) {
1708   case ASTContext::GE_None:
1709     return "";
1710   case ASTContext::GE_Missing_stdio:
1711     return "stdio.h";
1712   case ASTContext::GE_Missing_setjmp:
1713     return "setjmp.h";
1714   case ASTContext::GE_Missing_ucontext:
1715     return "ucontext.h";
1716   }
1717   llvm_unreachable("unhandled error kind");
1718 }
1719
1720 /// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1721 /// file scope.  lazily create a decl for it. ForRedeclaration is true
1722 /// if we're creating this built-in in anticipation of redeclaring the
1723 /// built-in.
1724 NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
1725                                      Scope *S, bool ForRedeclaration,
1726                                      SourceLocation Loc) {
1727   LookupPredefedObjCSuperType(*this, S, II);
1728
1729   ASTContext::GetBuiltinTypeError Error;
1730   QualType R = Context.GetBuiltinType(ID, Error);
1731   if (Error) {
1732     if (ForRedeclaration)
1733       Diag(Loc, diag::warn_implicit_decl_requires_sysheader)
1734           << getHeaderName(Error) << Context.BuiltinInfo.getName(ID);
1735     return nullptr;
1736   }
1737
1738   if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(ID)) {
1739     Diag(Loc, diag::ext_implicit_lib_function_decl)
1740         << Context.BuiltinInfo.getName(ID) << R;
1741     if (Context.BuiltinInfo.getHeaderName(ID) &&
1742         !Diags.isIgnored(diag::ext_implicit_lib_function_decl, Loc))
1743       Diag(Loc, diag::note_include_header_or_declare)
1744           << Context.BuiltinInfo.getHeaderName(ID)
1745           << Context.BuiltinInfo.getName(ID);
1746   }
1747
1748   if (R.isNull())
1749     return nullptr;
1750
1751   DeclContext *Parent = Context.getTranslationUnitDecl();
1752   if (getLangOpts().CPlusPlus) {
1753     LinkageSpecDecl *CLinkageDecl =
1754         LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1755                                 LinkageSpecDecl::lang_c, false);
1756     CLinkageDecl->setImplicit();
1757     Parent->addDecl(CLinkageDecl);
1758     Parent = CLinkageDecl;
1759   }
1760
1761   FunctionDecl *New = FunctionDecl::Create(Context,
1762                                            Parent,
1763                                            Loc, Loc, II, R, /*TInfo=*/nullptr,
1764                                            SC_Extern,
1765                                            false,
1766                                            R->isFunctionProtoType());
1767   New->setImplicit();
1768
1769   // Create Decl objects for each parameter, adding them to the
1770   // FunctionDecl.
1771   if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
1772     SmallVector<ParmVarDecl*, 16> Params;
1773     for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1774       ParmVarDecl *parm =
1775           ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
1776                               nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
1777                               SC_None, nullptr);
1778       parm->setScopeInfo(0, i);
1779       Params.push_back(parm);
1780     }
1781     New->setParams(Params);
1782   }
1783
1784   AddKnownFunctionAttributes(New);
1785   RegisterLocallyScopedExternCDecl(New, S);
1786
1787   // TUScope is the translation-unit scope to insert this function into.
1788   // FIXME: This is hideous. We need to teach PushOnScopeChains to
1789   // relate Scopes to DeclContexts, and probably eliminate CurContext
1790   // entirely, but we're not there yet.
1791   DeclContext *SavedContext = CurContext;
1792   CurContext = Parent;
1793   PushOnScopeChains(New, TUScope);
1794   CurContext = SavedContext;
1795   return New;
1796 }
1797
1798 /// Typedef declarations don't have linkage, but they still denote the same
1799 /// entity if their types are the same.
1800 /// FIXME: This is notionally doing the same thing as ASTReaderDecl's
1801 /// isSameEntity.
1802 static void filterNonConflictingPreviousTypedefDecls(Sema &S,
1803                                                      TypedefNameDecl *Decl,
1804                                                      LookupResult &Previous) {
1805   // This is only interesting when modules are enabled.
1806   if (!S.getLangOpts().Modules && !S.getLangOpts().ModulesLocalVisibility)
1807     return;
1808
1809   // Empty sets are uninteresting.
1810   if (Previous.empty())
1811     return;
1812
1813   LookupResult::Filter Filter = Previous.makeFilter();
1814   while (Filter.hasNext()) {
1815     NamedDecl *Old = Filter.next();
1816
1817     // Non-hidden declarations are never ignored.
1818     if (S.isVisible(Old))
1819       continue;
1820
1821     // Declarations of the same entity are not ignored, even if they have
1822     // different linkages.
1823     if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
1824       if (S.Context.hasSameType(OldTD->getUnderlyingType(),
1825                                 Decl->getUnderlyingType()))
1826         continue;
1827
1828       // If both declarations give a tag declaration a typedef name for linkage
1829       // purposes, then they declare the same entity.
1830       if (S.getLangOpts().CPlusPlus &&
1831           OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true) &&
1832           Decl->getAnonDeclWithTypedefName())
1833         continue;
1834     }
1835
1836     Filter.erase();
1837   }
1838
1839   Filter.done();
1840 }
1841
1842 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
1843   QualType OldType;
1844   if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
1845     OldType = OldTypedef->getUnderlyingType();
1846   else
1847     OldType = Context.getTypeDeclType(Old);
1848   QualType NewType = New->getUnderlyingType();
1849
1850   if (NewType->isVariablyModifiedType()) {
1851     // Must not redefine a typedef with a variably-modified type.
1852     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1853     Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
1854       << Kind << NewType;
1855     if (Old->getLocation().isValid())
1856       Diag(Old->getLocation(), diag::note_previous_definition);
1857     New->setInvalidDecl();
1858     return true;    
1859   }
1860   
1861   if (OldType != NewType &&
1862       !OldType->isDependentType() &&
1863       !NewType->isDependentType() &&
1864       !Context.hasSameType(OldType, NewType)) { 
1865     int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1866     Diag(New->getLocation(), diag::err_redefinition_different_typedef)
1867       << Kind << NewType << OldType;
1868     if (Old->getLocation().isValid())
1869       Diag(Old->getLocation(), diag::note_previous_definition);
1870     New->setInvalidDecl();
1871     return true;
1872   }
1873   return false;
1874 }
1875
1876 /// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
1877 /// same name and scope as a previous declaration 'Old'.  Figure out
1878 /// how to resolve this situation, merging decls or emitting
1879 /// diagnostics as appropriate. If there was an error, set New to be invalid.
1880 ///
1881 void Sema::MergeTypedefNameDecl(Scope *S, TypedefNameDecl *New,
1882                                 LookupResult &OldDecls) {
1883   // If the new decl is known invalid already, don't bother doing any
1884   // merging checks.
1885   if (New->isInvalidDecl()) return;
1886
1887   // Allow multiple definitions for ObjC built-in typedefs.
1888   // FIXME: Verify the underlying types are equivalent!
1889   if (getLangOpts().ObjC1) {
1890     const IdentifierInfo *TypeID = New->getIdentifier();
1891     switch (TypeID->getLength()) {
1892     default: break;
1893     case 2:
1894       {
1895         if (!TypeID->isStr("id"))
1896           break;
1897         QualType T = New->getUnderlyingType();
1898         if (!T->isPointerType())
1899           break;
1900         if (!T->isVoidPointerType()) {
1901           QualType PT = T->getAs<PointerType>()->getPointeeType();
1902           if (!PT->isStructureType())
1903             break;
1904         }
1905         Context.setObjCIdRedefinitionType(T);
1906         // Install the built-in type for 'id', ignoring the current definition.
1907         New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
1908         return;
1909       }
1910     case 5:
1911       if (!TypeID->isStr("Class"))
1912         break;
1913       Context.setObjCClassRedefinitionType(New->getUnderlyingType());
1914       // Install the built-in type for 'Class', ignoring the current definition.
1915       New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
1916       return;
1917     case 3:
1918       if (!TypeID->isStr("SEL"))
1919         break;
1920       Context.setObjCSelRedefinitionType(New->getUnderlyingType());
1921       // Install the built-in type for 'SEL', ignoring the current definition.
1922       New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
1923       return;
1924     }
1925     // Fall through - the typedef name was not a builtin type.
1926   }
1927
1928   // Verify the old decl was also a type.
1929   TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
1930   if (!Old) {
1931     Diag(New->getLocation(), diag::err_redefinition_different_kind)
1932       << New->getDeclName();
1933
1934     NamedDecl *OldD = OldDecls.getRepresentativeDecl();
1935     if (OldD->getLocation().isValid())
1936       Diag(OldD->getLocation(), diag::note_previous_definition);
1937
1938     return New->setInvalidDecl();
1939   }
1940
1941   // If the old declaration is invalid, just give up here.
1942   if (Old->isInvalidDecl())
1943     return New->setInvalidDecl();
1944
1945   if (auto *OldTD = dyn_cast<TypedefNameDecl>(Old)) {
1946     auto *OldTag = OldTD->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
1947     auto *NewTag = New->getAnonDeclWithTypedefName();
1948     NamedDecl *Hidden = nullptr;
1949     if (getLangOpts().CPlusPlus && OldTag && NewTag &&
1950         OldTag->getCanonicalDecl() != NewTag->getCanonicalDecl() &&
1951         !hasVisibleDefinition(OldTag, &Hidden)) {
1952       // There is a definition of this tag, but it is not visible. Use it
1953       // instead of our tag.
1954       New->setTypeForDecl(OldTD->getTypeForDecl());
1955       if (OldTD->isModed())
1956         New->setModedTypeSourceInfo(OldTD->getTypeSourceInfo(),
1957                                     OldTD->getUnderlyingType());
1958       else
1959         New->setTypeSourceInfo(OldTD->getTypeSourceInfo());
1960
1961       // Make the old tag definition visible.
1962       makeMergedDefinitionVisible(Hidden, NewTag->getLocation());
1963
1964       // If this was an unscoped enumeration, yank all of its enumerators
1965       // out of the scope.
1966       if (isa<EnumDecl>(NewTag)) {
1967         Scope *EnumScope = getNonFieldDeclScope(S);
1968         for (auto *D : NewTag->decls()) {
1969           auto *ED = cast<EnumConstantDecl>(D);
1970           assert(EnumScope->isDeclScope(ED));
1971           EnumScope->RemoveDecl(ED);
1972           IdResolver.RemoveDecl(ED);
1973           ED->getLexicalDeclContext()->removeDecl(ED);
1974         }
1975       }
1976     }
1977   }
1978
1979   // If the typedef types are not identical, reject them in all languages and
1980   // with any extensions enabled.
1981   if (isIncompatibleTypedef(Old, New))
1982     return;
1983
1984   // The types match.  Link up the redeclaration chain and merge attributes if
1985   // the old declaration was a typedef.
1986   if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
1987     New->setPreviousDecl(Typedef);
1988     mergeDeclAttributes(New, Old);
1989   }
1990
1991   if (getLangOpts().MicrosoftExt)
1992     return;
1993
1994   if (getLangOpts().CPlusPlus) {
1995     // C++ [dcl.typedef]p2:
1996     //   In a given non-class scope, a typedef specifier can be used to
1997     //   redefine the name of any type declared in that scope to refer
1998     //   to the type to which it already refers.
1999     if (!isa<CXXRecordDecl>(CurContext))
2000       return;
2001
2002     // C++0x [dcl.typedef]p4:
2003     //   In a given class scope, a typedef specifier can be used to redefine 
2004     //   any class-name declared in that scope that is not also a typedef-name
2005     //   to refer to the type to which it already refers.
2006     //
2007     // This wording came in via DR424, which was a correction to the
2008     // wording in DR56, which accidentally banned code like:
2009     //
2010     //   struct S {
2011     //     typedef struct A { } A;
2012     //   };
2013     //
2014     // in the C++03 standard. We implement the C++0x semantics, which
2015     // allow the above but disallow
2016     //
2017     //   struct S {
2018     //     typedef int I;
2019     //     typedef int I;
2020     //   };
2021     //
2022     // since that was the intent of DR56.
2023     if (!isa<TypedefNameDecl>(Old))
2024       return;
2025
2026     Diag(New->getLocation(), diag::err_redefinition)
2027       << New->getDeclName();
2028     Diag(Old->getLocation(), diag::note_previous_definition);
2029     return New->setInvalidDecl();
2030   }
2031
2032   // Modules always permit redefinition of typedefs, as does C11.
2033   if (getLangOpts().Modules || getLangOpts().C11)
2034     return;
2035   
2036   // If we have a redefinition of a typedef in C, emit a warning.  This warning
2037   // is normally mapped to an error, but can be controlled with
2038   // -Wtypedef-redefinition.  If either the original or the redefinition is
2039   // in a system header, don't emit this for compatibility with GCC.
2040   if (getDiagnostics().getSuppressSystemWarnings() &&
2041       (Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
2042        Context.getSourceManager().isInSystemHeader(New->getLocation())))
2043     return;
2044
2045   Diag(New->getLocation(), diag::ext_redefinition_of_typedef)
2046     << New->getDeclName();
2047   Diag(Old->getLocation(), diag::note_previous_definition);
2048 }
2049
2050 /// DeclhasAttr - returns true if decl Declaration already has the target
2051 /// attribute.
2052 static bool DeclHasAttr(const Decl *D, const Attr *A) {
2053   const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
2054   const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
2055   for (const auto *i : D->attrs())
2056     if (i->getKind() == A->getKind()) {
2057       if (Ann) {
2058         if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
2059           return true;
2060         continue;
2061       }
2062       // FIXME: Don't hardcode this check
2063       if (OA && isa<OwnershipAttr>(i))
2064         return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
2065       return true;
2066     }
2067
2068   return false;
2069 }
2070
2071 static bool isAttributeTargetADefinition(Decl *D) {
2072   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2073     return VD->isThisDeclarationADefinition();
2074   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2075     return TD->isCompleteDefinition() || TD->isBeingDefined();
2076   return true;
2077 }
2078
2079 /// Merge alignment attributes from \p Old to \p New, taking into account the
2080 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2081 ///
2082 /// \return \c true if any attributes were added to \p New.
2083 static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
2084   // Look for alignas attributes on Old, and pick out whichever attribute
2085   // specifies the strictest alignment requirement.
2086   AlignedAttr *OldAlignasAttr = nullptr;
2087   AlignedAttr *OldStrictestAlignAttr = nullptr;
2088   unsigned OldAlign = 0;
2089   for (auto *I : Old->specific_attrs<AlignedAttr>()) {
2090     // FIXME: We have no way of representing inherited dependent alignments
2091     // in a case like:
2092     //   template<int A, int B> struct alignas(A) X;
2093     //   template<int A, int B> struct alignas(B) X {};
2094     // For now, we just ignore any alignas attributes which are not on the
2095     // definition in such a case.
2096     if (I->isAlignmentDependent())
2097       return false;
2098
2099     if (I->isAlignas())
2100       OldAlignasAttr = I;
2101
2102     unsigned Align = I->getAlignment(S.Context);
2103     if (Align > OldAlign) {
2104       OldAlign = Align;
2105       OldStrictestAlignAttr = I;
2106     }
2107   }
2108
2109   // Look for alignas attributes on New.
2110   AlignedAttr *NewAlignasAttr = nullptr;
2111   unsigned NewAlign = 0;
2112   for (auto *I : New->specific_attrs<AlignedAttr>()) {
2113     if (I->isAlignmentDependent())
2114       return false;
2115
2116     if (I->isAlignas())
2117       NewAlignasAttr = I;
2118
2119     unsigned Align = I->getAlignment(S.Context);
2120     if (Align > NewAlign)
2121       NewAlign = Align;
2122   }
2123
2124   if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
2125     // Both declarations have 'alignas' attributes. We require them to match.
2126     // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2127     // fall short. (If two declarations both have alignas, they must both match
2128     // every definition, and so must match each other if there is a definition.)
2129
2130     // If either declaration only contains 'alignas(0)' specifiers, then it
2131     // specifies the natural alignment for the type.
2132     if (OldAlign == 0 || NewAlign == 0) {
2133       QualType Ty;
2134       if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
2135         Ty = VD->getType();
2136       else
2137         Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
2138
2139       if (OldAlign == 0)
2140         OldAlign = S.Context.getTypeAlign(Ty);
2141       if (NewAlign == 0)
2142         NewAlign = S.Context.getTypeAlign(Ty);
2143     }
2144
2145     if (OldAlign != NewAlign) {
2146       S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
2147         << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
2148         << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
2149       S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
2150     }
2151   }
2152
2153   if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
2154     // C++11 [dcl.align]p6:
2155     //   if any declaration of an entity has an alignment-specifier,
2156     //   every defining declaration of that entity shall specify an
2157     //   equivalent alignment.
2158     // C11 6.7.5/7:
2159     //   If the definition of an object does not have an alignment
2160     //   specifier, any other declaration of that object shall also
2161     //   have no alignment specifier.
2162     S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
2163       << OldAlignasAttr;
2164     S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
2165       << OldAlignasAttr;
2166   }
2167
2168   bool AnyAdded = false;
2169
2170   // Ensure we have an attribute representing the strictest alignment.
2171   if (OldAlign > NewAlign) {
2172     AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
2173     Clone->setInherited(true);
2174     New->addAttr(Clone);
2175     AnyAdded = true;
2176   }
2177
2178   // Ensure we have an alignas attribute if the old declaration had one.
2179   if (OldAlignasAttr && !NewAlignasAttr &&
2180       !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
2181     AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
2182     Clone->setInherited(true);
2183     New->addAttr(Clone);
2184     AnyAdded = true;
2185   }
2186
2187   return AnyAdded;
2188 }
2189
2190 static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
2191                                const InheritableAttr *Attr,
2192                                Sema::AvailabilityMergeKind AMK) {
2193   InheritableAttr *NewAttr = nullptr;
2194   unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
2195   if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
2196     NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
2197                                       AA->getIntroduced(), AA->getDeprecated(),
2198                                       AA->getObsoleted(), AA->getUnavailable(),
2199                                       AA->getMessage(), AA->getStrict(),
2200                                       AA->getReplacement(), AMK,
2201                                       AttrSpellingListIndex);
2202   else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
2203     NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2204                                     AttrSpellingListIndex);
2205   else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
2206     NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
2207                                         AttrSpellingListIndex);
2208   else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
2209     NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
2210                                    AttrSpellingListIndex);
2211   else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
2212     NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
2213                                    AttrSpellingListIndex);
2214   else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
2215     NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
2216                                 FA->getFormatIdx(), FA->getFirstArg(),
2217                                 AttrSpellingListIndex);
2218   else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
2219     NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
2220                                  AttrSpellingListIndex);
2221   else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
2222     NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
2223                                        AttrSpellingListIndex,
2224                                        IA->getSemanticSpelling());
2225   else if (const auto *AA = dyn_cast<AlwaysInlineAttr>(Attr))
2226     NewAttr = S.mergeAlwaysInlineAttr(D, AA->getRange(),
2227                                       &S.Context.Idents.get(AA->getSpelling()),
2228                                       AttrSpellingListIndex);
2229   else if (const auto *MA = dyn_cast<MinSizeAttr>(Attr))
2230     NewAttr = S.mergeMinSizeAttr(D, MA->getRange(), AttrSpellingListIndex);
2231   else if (const auto *OA = dyn_cast<OptimizeNoneAttr>(Attr))
2232     NewAttr = S.mergeOptimizeNoneAttr(D, OA->getRange(), AttrSpellingListIndex);
2233   else if (const auto *InternalLinkageA = dyn_cast<InternalLinkageAttr>(Attr))
2234     NewAttr = S.mergeInternalLinkageAttr(
2235         D, InternalLinkageA->getRange(),
2236         &S.Context.Idents.get(InternalLinkageA->getSpelling()),
2237         AttrSpellingListIndex);
2238   else if (const auto *CommonA = dyn_cast<CommonAttr>(Attr))
2239     NewAttr = S.mergeCommonAttr(D, CommonA->getRange(),
2240                                 &S.Context.Idents.get(CommonA->getSpelling()),
2241                                 AttrSpellingListIndex);
2242   else if (isa<AlignedAttr>(Attr))
2243     // AlignedAttrs are handled separately, because we need to handle all
2244     // such attributes on a declaration at the same time.
2245     NewAttr = nullptr;
2246   else if ((isa<DeprecatedAttr>(Attr) || isa<UnavailableAttr>(Attr)) &&
2247            (AMK == Sema::AMK_Override ||
2248             AMK == Sema::AMK_ProtocolImplementation))
2249     NewAttr = nullptr;
2250   else if (Attr->duplicatesAllowed() || !DeclHasAttr(D, Attr))
2251     NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
2252
2253   if (NewAttr) {
2254     NewAttr->setInherited(true);
2255     D->addAttr(NewAttr);
2256     if (isa<MSInheritanceAttr>(NewAttr))
2257       S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
2258     return true;
2259   }
2260
2261   return false;
2262 }
2263
2264 static const Decl *getDefinition(const Decl *D) {
2265   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
2266     return TD->getDefinition();
2267   if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
2268     const VarDecl *Def = VD->getDefinition();
2269     if (Def)
2270       return Def;
2271     return VD->getActingDefinition();
2272   }
2273   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2274     const FunctionDecl* Def;
2275     if (FD->isDefined(Def))
2276       return Def;
2277   }
2278   return nullptr;
2279 }
2280
2281 static bool hasAttribute(const Decl *D, attr::Kind Kind) {
2282   for (const auto *Attribute : D->attrs())
2283     if (Attribute->getKind() == Kind)
2284       return true;
2285   return false;
2286 }
2287
2288 /// checkNewAttributesAfterDef - If we already have a definition, check that
2289 /// there are no new attributes in this declaration.
2290 static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2291   if (!New->hasAttrs())
2292     return;
2293
2294   const Decl *Def = getDefinition(Old);
2295   if (!Def || Def == New)
2296     return;
2297
2298   AttrVec &NewAttributes = New->getAttrs();
2299   for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2300     const Attr *NewAttribute = NewAttributes[I];
2301
2302     if (isa<AliasAttr>(NewAttribute)) {
2303       if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New)) {
2304         Sema::SkipBodyInfo SkipBody;
2305         S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def), &SkipBody);
2306
2307         // If we're skipping this definition, drop the "alias" attribute.
2308         if (SkipBody.ShouldSkip) {
2309           NewAttributes.erase(NewAttributes.begin() + I);
2310           --E;
2311           continue;
2312         }
2313       } else {
2314         VarDecl *VD = cast<VarDecl>(New);
2315         unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2316                                 VarDecl::TentativeDefinition
2317                             ? diag::err_alias_after_tentative
2318                             : diag::err_redefinition;
2319         S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2320         S.Diag(Def->getLocation(), diag::note_previous_definition);
2321         VD->setInvalidDecl();
2322       }
2323       ++I;
2324       continue;
2325     }
2326
2327     if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2328       // Tentative definitions are only interesting for the alias check above.
2329       if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2330         ++I;
2331         continue;
2332       }
2333     }
2334
2335     if (hasAttribute(Def, NewAttribute->getKind())) {
2336       ++I;
2337       continue; // regular attr merging will take care of validating this.
2338     }
2339
2340     if (isa<C11NoReturnAttr>(NewAttribute)) {
2341       // C's _Noreturn is allowed to be added to a function after it is defined.
2342       ++I;
2343       continue;
2344     } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2345       if (AA->isAlignas()) { 
2346         // C++11 [dcl.align]p6:
2347         //   if any declaration of an entity has an alignment-specifier,
2348         //   every defining declaration of that entity shall specify an
2349         //   equivalent alignment.
2350         // C11 6.7.5/7:
2351         //   If the definition of an object does not have an alignment
2352         //   specifier, any other declaration of that object shall also
2353         //   have no alignment specifier.
2354         S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
2355           << AA;
2356         S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
2357           << AA;
2358         NewAttributes.erase(NewAttributes.begin() + I);
2359         --E;
2360         continue;
2361       }
2362     }
2363
2364     S.Diag(NewAttribute->getLocation(),
2365            diag::warn_attribute_precede_definition);
2366     S.Diag(Def->getLocation(), diag::note_previous_definition);
2367     NewAttributes.erase(NewAttributes.begin() + I);
2368     --E;
2369   }
2370 }
2371
2372 /// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
2373 void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
2374                                AvailabilityMergeKind AMK) {
2375   if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2376     UsedAttr *NewAttr = OldAttr->clone(Context);
2377     NewAttr->setInherited(true);
2378     New->addAttr(NewAttr);
2379   }
2380
2381   if (!Old->hasAttrs() && !New->hasAttrs())
2382     return;
2383
2384   // Attributes declared post-definition are currently ignored.
2385   checkNewAttributesAfterDef(*this, New, Old);
2386
2387   if (AsmLabelAttr *NewA = New->getAttr<AsmLabelAttr>()) {
2388     if (AsmLabelAttr *OldA = Old->getAttr<AsmLabelAttr>()) {
2389       if (OldA->getLabel() != NewA->getLabel()) {
2390         // This redeclaration changes __asm__ label.
2391         Diag(New->getLocation(), diag::err_different_asm_label);
2392         Diag(OldA->getLocation(), diag::note_previous_declaration);
2393       }
2394     } else if (Old->isUsed()) {
2395       // This redeclaration adds an __asm__ label to a declaration that has
2396       // already been ODR-used.
2397       Diag(New->getLocation(), diag::err_late_asm_label_name)
2398         << isa<FunctionDecl>(Old) << New->getAttr<AsmLabelAttr>()->getRange();
2399     }
2400   }
2401
2402   // Re-declaration cannot add abi_tag's.
2403   if (const auto *NewAbiTagAttr = New->getAttr<AbiTagAttr>()) {
2404     if (const auto *OldAbiTagAttr = Old->getAttr<AbiTagAttr>()) {
2405       for (const auto &NewTag : NewAbiTagAttr->tags()) {
2406         if (std::find(OldAbiTagAttr->tags_begin(), OldAbiTagAttr->tags_end(),
2407                       NewTag) == OldAbiTagAttr->tags_end()) {
2408           Diag(NewAbiTagAttr->getLocation(),
2409                diag::err_new_abi_tag_on_redeclaration)
2410               << NewTag;
2411           Diag(OldAbiTagAttr->getLocation(), diag::note_previous_declaration);
2412         }
2413       }
2414     } else {
2415       Diag(NewAbiTagAttr->getLocation(), diag::err_abi_tag_on_redeclaration);
2416       Diag(Old->getLocation(), diag::note_previous_declaration);
2417     }
2418   }
2419
2420   if (!Old->hasAttrs())
2421     return;
2422
2423   bool foundAny = New->hasAttrs();
2424
2425   // Ensure that any moving of objects within the allocated map is done before
2426   // we process them.
2427   if (!foundAny) New->setAttrs(AttrVec());
2428
2429   for (auto *I : Old->specific_attrs<InheritableAttr>()) {
2430     // Ignore deprecated/unavailable/availability attributes if requested.
2431     AvailabilityMergeKind LocalAMK = AMK_None;
2432     if (isa<DeprecatedAttr>(I) ||
2433         isa<UnavailableAttr>(I) ||
2434         isa<AvailabilityAttr>(I)) {
2435       switch (AMK) {
2436       case AMK_None:
2437         continue;
2438
2439       case AMK_Redeclaration:
2440       case AMK_Override:
2441       case AMK_ProtocolImplementation:
2442         LocalAMK = AMK;
2443         break;
2444       }
2445     }
2446
2447     // Already handled.
2448     if (isa<UsedAttr>(I))
2449       continue;
2450
2451     if (mergeDeclAttribute(*this, New, I, LocalAMK))
2452       foundAny = true;
2453   }
2454
2455   if (mergeAlignedAttrs(*this, New, Old))
2456     foundAny = true;
2457
2458   if (!foundAny) New->dropAttrs();
2459 }
2460
2461 /// mergeParamDeclAttributes - Copy attributes from the old parameter
2462 /// to the new one.
2463 static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2464                                      const ParmVarDecl *oldDecl,
2465                                      Sema &S) {
2466   // C++11 [dcl.attr.depend]p2:
2467   //   The first declaration of a function shall specify the
2468   //   carries_dependency attribute for its declarator-id if any declaration
2469   //   of the function specifies the carries_dependency attribute.
2470   const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2471   if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2472     S.Diag(CDA->getLocation(),
2473            diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2474     // Find the first declaration of the parameter.
2475     // FIXME: Should we build redeclaration chains for function parameters?
2476     const FunctionDecl *FirstFD =
2477       cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
2478     const ParmVarDecl *FirstVD =
2479       FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2480     S.Diag(FirstVD->getLocation(),
2481            diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2482   }
2483
2484   if (!oldDecl->hasAttrs())
2485     return;
2486
2487   bool foundAny = newDecl->hasAttrs();
2488
2489   // Ensure that any moving of objects within the allocated map is
2490   // done before we process them.
2491   if (!foundAny) newDecl->setAttrs(AttrVec());
2492
2493   for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2494     if (!DeclHasAttr(newDecl, I)) {
2495       InheritableAttr *newAttr =
2496         cast<InheritableParamAttr>(I->clone(S.Context));
2497       newAttr->setInherited(true);
2498       newDecl->addAttr(newAttr);
2499       foundAny = true;
2500     }
2501   }
2502
2503   if (!foundAny) newDecl->dropAttrs();
2504 }
2505
2506 static void mergeParamDeclTypes(ParmVarDecl *NewParam,
2507                                 const ParmVarDecl *OldParam,
2508                                 Sema &S) {
2509   if (auto Oldnullability = OldParam->getType()->getNullability(S.Context)) {
2510     if (auto Newnullability = NewParam->getType()->getNullability(S.Context)) {
2511       if (*Oldnullability != *Newnullability) {
2512         S.Diag(NewParam->getLocation(), diag::warn_mismatched_nullability_attr)
2513           << DiagNullabilityKind(
2514                *Newnullability,
2515                ((NewParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2516                 != 0))
2517           << DiagNullabilityKind(
2518                *Oldnullability,
2519                ((OldParam->getObjCDeclQualifier() & Decl::OBJC_TQ_CSNullability)
2520                 != 0));
2521         S.Diag(OldParam->getLocation(), diag::note_previous_declaration);
2522       }
2523     } else {
2524       QualType NewT = NewParam->getType();
2525       NewT = S.Context.getAttributedType(
2526                          AttributedType::getNullabilityAttrKind(*Oldnullability),
2527                          NewT, NewT);
2528       NewParam->setType(NewT);
2529     }
2530   }
2531 }
2532
2533 namespace {
2534
2535 /// Used in MergeFunctionDecl to keep track of function parameters in
2536 /// C.
2537 struct GNUCompatibleParamWarning {
2538   ParmVarDecl *OldParm;
2539   ParmVarDecl *NewParm;
2540   QualType PromotedType;
2541 };
2542
2543 } // end anonymous namespace
2544
2545 /// getSpecialMember - get the special member enum for a method.
2546 Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
2547   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
2548     if (Ctor->isDefaultConstructor())
2549       return Sema::CXXDefaultConstructor;
2550
2551     if (Ctor->isCopyConstructor())
2552       return Sema::CXXCopyConstructor;
2553
2554     if (Ctor->isMoveConstructor())
2555       return Sema::CXXMoveConstructor;
2556   } else if (isa<CXXDestructorDecl>(MD)) {
2557     return Sema::CXXDestructor;
2558   } else if (MD->isCopyAssignmentOperator()) {
2559     return Sema::CXXCopyAssignment;
2560   } else if (MD->isMoveAssignmentOperator()) {
2561     return Sema::CXXMoveAssignment;
2562   }
2563
2564   return Sema::CXXInvalid;
2565 }
2566
2567 // Determine whether the previous declaration was a definition, implicit
2568 // declaration, or a declaration.
2569 template <typename T>
2570 static std::pair<diag::kind, SourceLocation>
2571 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) {
2572   diag::kind PrevDiag;
2573   SourceLocation OldLocation = Old->getLocation();
2574   if (Old->isThisDeclarationADefinition())
2575     PrevDiag = diag::note_previous_definition;
2576   else if (Old->isImplicit()) {
2577     PrevDiag = diag::note_previous_implicit_declaration;
2578     if (OldLocation.isInvalid())
2579       OldLocation = New->getLocation();
2580   } else
2581     PrevDiag = diag::note_previous_declaration;
2582   return std::make_pair(PrevDiag, OldLocation);
2583 }
2584
2585 /// canRedefineFunction - checks if a function can be redefined. Currently,
2586 /// only extern inline functions can be redefined, and even then only in
2587 /// GNU89 mode.
2588 static bool canRedefineFunction(const FunctionDecl *FD,
2589                                 const LangOptions& LangOpts) {
2590   return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2591           !LangOpts.CPlusPlus &&
2592           FD->isInlineSpecified() &&
2593           FD->getStorageClass() == SC_Extern);
2594 }
2595
2596 const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2597   const AttributedType *AT = T->getAs<AttributedType>();
2598   while (AT && !AT->isCallingConv())
2599     AT = AT->getModifiedType()->getAs<AttributedType>();
2600   return AT;
2601 }
2602
2603 template <typename T>
2604 static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
2605   const DeclContext *DC = Old->getDeclContext();
2606   if (DC->isRecord())
2607     return false;
2608
2609   LanguageLinkage OldLinkage = Old->getLanguageLinkage();
2610   if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
2611     return true;
2612   if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
2613     return true;
2614   return false;
2615 }
2616
2617 template<typename T> static bool isExternC(T *D) { return D->isExternC(); }
2618 static bool isExternC(VarTemplateDecl *) { return false; }
2619
2620 /// \brief Check whether a redeclaration of an entity introduced by a
2621 /// using-declaration is valid, given that we know it's not an overload
2622 /// (nor a hidden tag declaration).
2623 template<typename ExpectedDecl>
2624 static bool checkUsingShadowRedecl(Sema &S, UsingShadowDecl *OldS,
2625                                    ExpectedDecl *New) {
2626   // C++11 [basic.scope.declarative]p4:
2627   //   Given a set of declarations in a single declarative region, each of
2628   //   which specifies the same unqualified name,
2629   //   -- they shall all refer to the same entity, or all refer to functions
2630   //      and function templates; or
2631   //   -- exactly one declaration shall declare a class name or enumeration
2632   //      name that is not a typedef name and the other declarations shall all
2633   //      refer to the same variable or enumerator, or all refer to functions
2634   //      and function templates; in this case the class name or enumeration
2635   //      name is hidden (3.3.10).
2636
2637   // C++11 [namespace.udecl]p14:
2638   //   If a function declaration in namespace scope or block scope has the
2639   //   same name and the same parameter-type-list as a function introduced
2640   //   by a using-declaration, and the declarations do not declare the same
2641   //   function, the program is ill-formed.
2642
2643   auto *Old = dyn_cast<ExpectedDecl>(OldS->getTargetDecl());
2644   if (Old &&
2645       !Old->getDeclContext()->getRedeclContext()->Equals(
2646           New->getDeclContext()->getRedeclContext()) &&
2647       !(isExternC(Old) && isExternC(New)))
2648     Old = nullptr;
2649
2650   if (!Old) {
2651     S.Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2652     S.Diag(OldS->getTargetDecl()->getLocation(), diag::note_using_decl_target);
2653     S.Diag(OldS->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2654     return true;
2655   }
2656   return false;
2657 }
2658
2659 static bool hasIdenticalPassObjectSizeAttrs(const FunctionDecl *A,
2660                                             const FunctionDecl *B) {
2661   assert(A->getNumParams() == B->getNumParams());
2662
2663   auto AttrEq = [](const ParmVarDecl *A, const ParmVarDecl *B) {
2664     const auto *AttrA = A->getAttr<PassObjectSizeAttr>();
2665     const auto *AttrB = B->getAttr<PassObjectSizeAttr>();
2666     if (AttrA == AttrB)
2667       return true;
2668     return AttrA && AttrB && AttrA->getType() == AttrB->getType();
2669   };
2670
2671   return std::equal(A->param_begin(), A->param_end(), B->param_begin(), AttrEq);
2672 }
2673
2674 /// MergeFunctionDecl - We just parsed a function 'New' from
2675 /// declarator D which has the same name and scope as a previous
2676 /// declaration 'Old'.  Figure out how to resolve this situation,
2677 /// merging decls or emitting diagnostics as appropriate.
2678 ///
2679 /// In C++, New and Old must be declarations that are not
2680 /// overloaded. Use IsOverload to determine whether New and Old are
2681 /// overloaded, and to select the Old declaration that New should be
2682 /// merged with.
2683 ///
2684 /// Returns true if there was an error, false otherwise.
2685 bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2686                              Scope *S, bool MergeTypeWithOld) {
2687   // Verify the old decl was also a function.
2688   FunctionDecl *Old = OldD->getAsFunction();
2689   if (!Old) {
2690     if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
2691       if (New->getFriendObjectKind()) {
2692         Diag(New->getLocation(), diag::err_using_decl_friend);
2693         Diag(Shadow->getTargetDecl()->getLocation(),
2694              diag::note_using_decl_target);
2695         Diag(Shadow->getUsingDecl()->getLocation(),
2696              diag::note_using_decl) << 0;
2697         return true;
2698       }
2699
2700       // Check whether the two declarations might declare the same function.
2701       if (checkUsingShadowRedecl<FunctionDecl>(*this, Shadow, New))
2702         return true;
2703       OldD = Old = cast<FunctionDecl>(Shadow->getTargetDecl());
2704     } else {
2705       Diag(New->getLocation(), diag::err_redefinition_different_kind)
2706         << New->getDeclName();
2707       Diag(OldD->getLocation(), diag::note_previous_definition);
2708       return true;
2709     }
2710   }
2711
2712   // If the old declaration is invalid, just give up here.
2713   if (Old->isInvalidDecl())
2714     return true;
2715
2716   diag::kind PrevDiag;
2717   SourceLocation OldLocation;
2718   std::tie(PrevDiag, OldLocation) =
2719       getNoteDiagForInvalidRedeclaration(Old, New);
2720
2721   // Don't complain about this if we're in GNU89 mode and the old function
2722   // is an extern inline function.
2723   // Don't complain about specializations. They are not supposed to have
2724   // storage classes.
2725   if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
2726       New->getStorageClass() == SC_Static &&
2727       Old->hasExternalFormalLinkage() &&
2728       !New->getTemplateSpecializationInfo() &&
2729       !canRedefineFunction(Old, getLangOpts())) {
2730     if (getLangOpts().MicrosoftExt) {
2731       Diag(New->getLocation(), diag::ext_static_non_static) << New;
2732       Diag(OldLocation, PrevDiag);
2733     } else {
2734       Diag(New->getLocation(), diag::err_static_non_static) << New;
2735       Diag(OldLocation, PrevDiag);
2736       return true;
2737     }
2738   }
2739
2740   if (New->hasAttr<InternalLinkageAttr>() &&
2741       !Old->hasAttr<InternalLinkageAttr>()) {
2742     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
2743         << New->getDeclName();
2744     Diag(Old->getLocation(), diag::note_previous_definition);
2745     New->dropAttr<InternalLinkageAttr>();
2746   }
2747
2748   // If a function is first declared with a calling convention, but is later
2749   // declared or defined without one, all following decls assume the calling
2750   // convention of the first.
2751   //
2752   // It's OK if a function is first declared without a calling convention,
2753   // but is later declared or defined with the default calling convention.
2754   //
2755   // To test if either decl has an explicit calling convention, we look for
2756   // AttributedType sugar nodes on the type as written.  If they are missing or
2757   // were canonicalized away, we assume the calling convention was implicit.
2758   //
2759   // Note also that we DO NOT return at this point, because we still have
2760   // other tests to run.
2761   QualType OldQType = Context.getCanonicalType(Old->getType());
2762   QualType NewQType = Context.getCanonicalType(New->getType());
2763   const FunctionType *OldType = cast<FunctionType>(OldQType);
2764   const FunctionType *NewType = cast<FunctionType>(NewQType);
2765   FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
2766   FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
2767   bool RequiresAdjustment = false;
2768
2769   if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
2770     FunctionDecl *First = Old->getFirstDecl();
2771     const FunctionType *FT =
2772         First->getType().getCanonicalType()->castAs<FunctionType>();
2773     FunctionType::ExtInfo FI = FT->getExtInfo();
2774     bool NewCCExplicit = getCallingConvAttributedType(New->getType());
2775     if (!NewCCExplicit) {
2776       // Inherit the CC from the previous declaration if it was specified
2777       // there but not here.
2778       NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
2779       RequiresAdjustment = true;
2780     } else {
2781       // Calling conventions aren't compatible, so complain.
2782       bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
2783       Diag(New->getLocation(), diag::err_cconv_change)
2784         << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
2785         << !FirstCCExplicit
2786         << (!FirstCCExplicit ? "" :
2787             FunctionType::getNameForCallConv(FI.getCC()));
2788
2789       // Put the note on the first decl, since it is the one that matters.
2790       Diag(First->getLocation(), diag::note_previous_declaration);
2791       return true;
2792     }
2793   }
2794
2795   // FIXME: diagnose the other way around?
2796   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
2797     NewTypeInfo = NewTypeInfo.withNoReturn(true);
2798     RequiresAdjustment = true;
2799   }
2800
2801   // Merge regparm attribute.
2802   if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
2803       OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
2804     if (NewTypeInfo.getHasRegParm()) {
2805       Diag(New->getLocation(), diag::err_regparm_mismatch)
2806         << NewType->getRegParmType()
2807         << OldType->getRegParmType();
2808       Diag(OldLocation, diag::note_previous_declaration);
2809       return true;
2810     }
2811
2812     NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
2813     RequiresAdjustment = true;
2814   }
2815
2816   // Merge ns_returns_retained attribute.
2817   if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
2818     if (NewTypeInfo.getProducesResult()) {
2819       Diag(New->getLocation(), diag::err_returns_retained_mismatch);
2820       Diag(OldLocation, diag::note_previous_declaration);
2821       return true;
2822     }
2823     
2824     NewTypeInfo = NewTypeInfo.withProducesResult(true);
2825     RequiresAdjustment = true;
2826   }
2827   
2828   if (RequiresAdjustment) {
2829     const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
2830     AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
2831     New->setType(QualType(AdjustedType, 0));
2832     NewQType = Context.getCanonicalType(New->getType());
2833     NewType = cast<FunctionType>(NewQType);
2834   }
2835
2836   // If this redeclaration makes the function inline, we may need to add it to
2837   // UndefinedButUsed.
2838   if (!Old->isInlined() && New->isInlined() &&
2839       !New->hasAttr<GNUInlineAttr>() &&
2840       !getLangOpts().GNUInline &&
2841       Old->isUsed(false) &&
2842       !Old->isDefined() && !New->isThisDeclarationADefinition())
2843     UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
2844                                            SourceLocation()));
2845
2846   // If this redeclaration makes it newly gnu_inline, we don't want to warn
2847   // about it.
2848   if (New->hasAttr<GNUInlineAttr>() &&
2849       Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
2850     UndefinedButUsed.erase(Old->getCanonicalDecl());
2851   }
2852
2853   // If pass_object_size params don't match up perfectly, this isn't a valid
2854   // redeclaration.
2855   if (Old->getNumParams() > 0 && Old->getNumParams() == New->getNumParams() &&
2856       !hasIdenticalPassObjectSizeAttrs(Old, New)) {
2857     Diag(New->getLocation(), diag::err_different_pass_object_size_params)
2858         << New->getDeclName();
2859     Diag(OldLocation, PrevDiag) << Old << Old->getType();
2860     return true;
2861   }
2862
2863   if (getLangOpts().CPlusPlus) {
2864     // (C++98 13.1p2):
2865     //   Certain function declarations cannot be overloaded:
2866     //     -- Function declarations that differ only in the return type
2867     //        cannot be overloaded.
2868
2869     // Go back to the type source info to compare the declared return types,
2870     // per C++1y [dcl.type.auto]p13:
2871     //   Redeclarations or specializations of a function or function template
2872     //   with a declared return type that uses a placeholder type shall also
2873     //   use that placeholder, not a deduced type.
2874     QualType OldDeclaredReturnType =
2875         (Old->getTypeSourceInfo()
2876              ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2877              : OldType)->getReturnType();
2878     QualType NewDeclaredReturnType =
2879         (New->getTypeSourceInfo()
2880              ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2881              : NewType)->getReturnType();
2882     QualType ResQT;
2883     if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
2884         !((NewQType->isDependentType() || OldQType->isDependentType()) &&
2885           New->isLocalExternDecl())) {
2886       if (NewDeclaredReturnType->isObjCObjectPointerType() &&
2887           OldDeclaredReturnType->isObjCObjectPointerType())
2888         ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
2889       if (ResQT.isNull()) {
2890         if (New->isCXXClassMember() && New->isOutOfLine())
2891           Diag(New->getLocation(), diag::err_member_def_does_not_match_ret_type)
2892               << New << New->getReturnTypeSourceRange();
2893         else
2894           Diag(New->getLocation(), diag::err_ovl_diff_return_type)
2895               << New->getReturnTypeSourceRange();
2896         Diag(OldLocation, PrevDiag) << Old << Old->getType()
2897                                     << Old->getReturnTypeSourceRange();
2898         return true;
2899       }
2900       else
2901         NewQType = ResQT;
2902     }
2903
2904     QualType OldReturnType = OldType->getReturnType();
2905     QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
2906     if (OldReturnType != NewReturnType) {
2907       // If this function has a deduced return type and has already been
2908       // defined, copy the deduced value from the old declaration.
2909       AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
2910       if (OldAT && OldAT->isDeduced()) {
2911         New->setType(
2912             SubstAutoType(New->getType(),
2913                           OldAT->isDependentType() ? Context.DependentTy
2914                                                    : OldAT->getDeducedType()));
2915         NewQType = Context.getCanonicalType(
2916             SubstAutoType(NewQType,
2917                           OldAT->isDependentType() ? Context.DependentTy
2918                                                    : OldAT->getDeducedType()));
2919       }
2920     }
2921
2922     const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
2923     CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
2924     if (OldMethod && NewMethod) {
2925       // Preserve triviality.
2926       NewMethod->setTrivial(OldMethod->isTrivial());
2927
2928       // MSVC allows explicit template specialization at class scope:
2929       // 2 CXXMethodDecls referring to the same function will be injected.
2930       // We don't want a redeclaration error.
2931       bool IsClassScopeExplicitSpecialization =
2932                               OldMethod->isFunctionTemplateSpecialization() &&
2933                               NewMethod->isFunctionTemplateSpecialization();
2934       bool isFriend = NewMethod->getFriendObjectKind();
2935
2936       if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
2937           !IsClassScopeExplicitSpecialization) {
2938         //    -- Member function declarations with the same name and the
2939         //       same parameter types cannot be overloaded if any of them
2940         //       is a static member function declaration.
2941         if (OldMethod->isStatic() != NewMethod->isStatic()) {
2942           Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
2943           Diag(OldLocation, PrevDiag) << Old << Old->getType();
2944           return true;
2945         }
2946
2947         // C++ [class.mem]p1:
2948         //   [...] A member shall not be declared twice in the
2949         //   member-specification, except that a nested class or member
2950         //   class template can be declared and then later defined.
2951         if (ActiveTemplateInstantiations.empty()) {
2952           unsigned NewDiag;
2953           if (isa<CXXConstructorDecl>(OldMethod))
2954             NewDiag = diag::err_constructor_redeclared;
2955           else if (isa<CXXDestructorDecl>(NewMethod))
2956             NewDiag = diag::err_destructor_redeclared;
2957           else if (isa<CXXConversionDecl>(NewMethod))
2958             NewDiag = diag::err_conv_function_redeclared;
2959           else
2960             NewDiag = diag::err_member_redeclared;
2961
2962           Diag(New->getLocation(), NewDiag);
2963         } else {
2964           Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
2965             << New << New->getType();
2966         }
2967         Diag(OldLocation, PrevDiag) << Old << Old->getType();
2968         return true;
2969
2970       // Complain if this is an explicit declaration of a special
2971       // member that was initially declared implicitly.
2972       //
2973       // As an exception, it's okay to befriend such methods in order
2974       // to permit the implicit constructor/destructor/operator calls.
2975       } else if (OldMethod->isImplicit()) {
2976         if (isFriend) {
2977           NewMethod->setImplicit();
2978         } else {
2979           Diag(NewMethod->getLocation(),
2980                diag::err_definition_of_implicitly_declared_member) 
2981             << New << getSpecialMember(OldMethod);
2982           return true;
2983         }
2984       } else if (OldMethod->isExplicitlyDefaulted() && !isFriend) {
2985         Diag(NewMethod->getLocation(),
2986              diag::err_definition_of_explicitly_defaulted_member)
2987           << getSpecialMember(OldMethod);
2988         return true;
2989       }
2990     }
2991
2992     // C++11 [dcl.attr.noreturn]p1:
2993     //   The first declaration of a function shall specify the noreturn
2994     //   attribute if any declaration of that function specifies the noreturn
2995     //   attribute.
2996     const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
2997     if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
2998       Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
2999       Diag(Old->getFirstDecl()->getLocation(),
3000            diag::note_noreturn_missing_first_decl);
3001     }
3002
3003     // C++11 [dcl.attr.depend]p2:
3004     //   The first declaration of a function shall specify the
3005     //   carries_dependency attribute for its declarator-id if any declaration
3006     //   of the function specifies the carries_dependency attribute.
3007     const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
3008     if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
3009       Diag(CDA->getLocation(),
3010            diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
3011       Diag(Old->getFirstDecl()->getLocation(),
3012            diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
3013     }
3014
3015     // (C++98 8.3.5p3):
3016     //   All declarations for a function shall agree exactly in both the
3017     //   return type and the parameter-type-list.
3018     // We also want to respect all the extended bits except noreturn.
3019
3020     // noreturn should now match unless the old type info didn't have it.
3021     QualType OldQTypeForComparison = OldQType;
3022     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
3023       assert(OldQType == QualType(OldType, 0));
3024       const FunctionType *OldTypeForComparison
3025         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
3026       OldQTypeForComparison = QualType(OldTypeForComparison, 0);
3027       assert(OldQTypeForComparison.isCanonical());
3028     }
3029
3030     if (haveIncompatibleLanguageLinkages(Old, New)) {
3031       // As a special case, retain the language linkage from previous
3032       // declarations of a friend function as an extension.
3033       //
3034       // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
3035       // and is useful because there's otherwise no way to specify language
3036       // linkage within class scope.
3037       //
3038       // Check cautiously as the friend object kind isn't yet complete.
3039       if (New->getFriendObjectKind() != Decl::FOK_None) {
3040         Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
3041         Diag(OldLocation, PrevDiag);
3042       } else {
3043         Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3044         Diag(OldLocation, PrevDiag);
3045         return true;
3046       }
3047     }
3048
3049     if (OldQTypeForComparison == NewQType)
3050       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3051
3052     if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
3053         New->isLocalExternDecl()) {
3054       // It's OK if we couldn't merge types for a local function declaraton
3055       // if either the old or new type is dependent. We'll merge the types
3056       // when we instantiate the function.
3057       return false;
3058     }
3059
3060     // Fall through for conflicting redeclarations and redefinitions.
3061   }
3062
3063   // C: Function types need to be compatible, not identical. This handles
3064   // duplicate function decls like "void f(int); void f(enum X);" properly.
3065   if (!getLangOpts().CPlusPlus &&
3066       Context.typesAreCompatible(OldQType, NewQType)) {
3067     const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
3068     const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
3069     const FunctionProtoType *OldProto = nullptr;
3070     if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
3071         (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
3072       // The old declaration provided a function prototype, but the
3073       // new declaration does not. Merge in the prototype.
3074       assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
3075       SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
3076       NewQType =
3077           Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
3078                                   OldProto->getExtProtoInfo());
3079       New->setType(NewQType);
3080       New->setHasInheritedPrototype();
3081
3082       // Synthesize parameters with the same types.
3083       SmallVector<ParmVarDecl*, 16> Params;
3084       for (const auto &ParamType : OldProto->param_types()) {
3085         ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
3086                                                  SourceLocation(), nullptr,
3087                                                  ParamType, /*TInfo=*/nullptr,
3088                                                  SC_None, nullptr);
3089         Param->setScopeInfo(0, Params.size());
3090         Param->setImplicit();
3091         Params.push_back(Param);
3092       }
3093
3094       New->setParams(Params);
3095     }
3096
3097     return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3098   }
3099
3100   // GNU C permits a K&R definition to follow a prototype declaration
3101   // if the declared types of the parameters in the K&R definition
3102   // match the types in the prototype declaration, even when the
3103   // promoted types of the parameters from the K&R definition differ
3104   // from the types in the prototype. GCC then keeps the types from
3105   // the prototype.
3106   //
3107   // If a variadic prototype is followed by a non-variadic K&R definition,
3108   // the K&R definition becomes variadic.  This is sort of an edge case, but
3109   // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
3110   // C99 6.9.1p8.
3111   if (!getLangOpts().CPlusPlus &&
3112       Old->hasPrototype() && !New->hasPrototype() &&
3113       New->getType()->getAs<FunctionProtoType>() &&
3114       Old->getNumParams() == New->getNumParams()) {
3115     SmallVector<QualType, 16> ArgTypes;
3116     SmallVector<GNUCompatibleParamWarning, 16> Warnings;
3117     const FunctionProtoType *OldProto
3118       = Old->getType()->getAs<FunctionProtoType>();
3119     const FunctionProtoType *NewProto
3120       = New->getType()->getAs<FunctionProtoType>();
3121
3122     // Determine whether this is the GNU C extension.
3123     QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
3124                                                NewProto->getReturnType());
3125     bool LooseCompatible = !MergedReturn.isNull();
3126     for (unsigned Idx = 0, End = Old->getNumParams();
3127          LooseCompatible && Idx != End; ++Idx) {
3128       ParmVarDecl *OldParm = Old->getParamDecl(Idx);
3129       ParmVarDecl *NewParm = New->getParamDecl(Idx);
3130       if (Context.typesAreCompatible(OldParm->getType(),
3131                                      NewProto->getParamType(Idx))) {
3132         ArgTypes.push_back(NewParm->getType());
3133       } else if (Context.typesAreCompatible(OldParm->getType(),
3134                                             NewParm->getType(),
3135                                             /*CompareUnqualified=*/true)) {
3136         GNUCompatibleParamWarning Warn = { OldParm, NewParm,
3137                                            NewProto->getParamType(Idx) };
3138         Warnings.push_back(Warn);
3139         ArgTypes.push_back(NewParm->getType());
3140       } else
3141         LooseCompatible = false;
3142     }
3143
3144     if (LooseCompatible) {
3145       for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
3146         Diag(Warnings[Warn].NewParm->getLocation(),
3147              diag::ext_param_promoted_not_compatible_with_prototype)
3148           << Warnings[Warn].PromotedType
3149           << Warnings[Warn].OldParm->getType();
3150         if (Warnings[Warn].OldParm->getLocation().isValid())
3151           Diag(Warnings[Warn].OldParm->getLocation(),
3152                diag::note_previous_declaration);
3153       }
3154
3155       if (MergeTypeWithOld)
3156         New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
3157                                              OldProto->getExtProtoInfo()));
3158       return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
3159     }
3160
3161     // Fall through to diagnose conflicting types.
3162   }
3163
3164   // A function that has already been declared has been redeclared or
3165   // defined with a different type; show an appropriate diagnostic.
3166
3167   // If the previous declaration was an implicitly-generated builtin
3168   // declaration, then at the very least we should use a specialized note.
3169   unsigned BuiltinID;
3170   if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
3171     // If it's actually a library-defined builtin function like 'malloc'
3172     // or 'printf', just warn about the incompatible redeclaration.
3173     if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
3174       Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
3175       Diag(OldLocation, diag::note_previous_builtin_declaration)
3176         << Old << Old->getType();
3177
3178       // If this is a global redeclaration, just forget hereafter
3179       // about the "builtin-ness" of the function.
3180       //
3181       // Doing this for local extern declarations is problematic.  If
3182       // the builtin declaration remains visible, a second invalid
3183       // local declaration will produce a hard error; if it doesn't
3184       // remain visible, a single bogus local redeclaration (which is
3185       // actually only a warning) could break all the downstream code.
3186       if (!New->getLexicalDeclContext()->isFunctionOrMethod())
3187         New->getIdentifier()->revertBuiltin();
3188
3189       return false;
3190     }
3191
3192     PrevDiag = diag::note_previous_builtin_declaration;
3193   }
3194
3195   Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
3196   Diag(OldLocation, PrevDiag) << Old << Old->getType();
3197   return true;
3198 }
3199
3200 /// \brief Completes the merge of two function declarations that are
3201 /// known to be compatible.
3202 ///
3203 /// This routine handles the merging of attributes and other
3204 /// properties of function declarations from the old declaration to
3205 /// the new declaration, once we know that New is in fact a
3206 /// redeclaration of Old.
3207 ///
3208 /// \returns false
3209 bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
3210                                         Scope *S, bool MergeTypeWithOld) {
3211   // Merge the attributes
3212   mergeDeclAttributes(New, Old);
3213
3214   // Merge "pure" flag.
3215   if (Old->isPure())
3216     New->setPure();
3217
3218   // Merge "used" flag.
3219   if (Old->getMostRecentDecl()->isUsed(false))
3220     New->setIsUsed();
3221
3222   // Merge attributes from the parameters.  These can mismatch with K&R
3223   // declarations.
3224   if (New->getNumParams() == Old->getNumParams())
3225       for (unsigned i = 0, e = New->getNumParams(); i != e; ++i) {
3226         ParmVarDecl *NewParam = New->getParamDecl(i);
3227         ParmVarDecl *OldParam = Old->getParamDecl(i);
3228         mergeParamDeclAttributes(NewParam, OldParam, *this);
3229         mergeParamDeclTypes(NewParam, OldParam, *this);
3230       }
3231
3232   if (getLangOpts().CPlusPlus)
3233     return MergeCXXFunctionDecl(New, Old, S);
3234
3235   // Merge the function types so the we get the composite types for the return
3236   // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3237   // was visible.
3238   QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
3239   if (!Merged.isNull() && MergeTypeWithOld)
3240     New->setType(Merged);
3241
3242   return false;
3243 }
3244
3245 void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
3246                                 ObjCMethodDecl *oldMethod) {
3247   // Merge the attributes, including deprecated/unavailable
3248   AvailabilityMergeKind MergeKind =
3249     isa<ObjCProtocolDecl>(oldMethod->getDeclContext())
3250       ? AMK_ProtocolImplementation
3251       : isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
3252                                                        : AMK_Override;
3253
3254   mergeDeclAttributes(newMethod, oldMethod, MergeKind);
3255
3256   // Merge attributes from the parameters.
3257   ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
3258                                        oe = oldMethod->param_end();
3259   for (ObjCMethodDecl::param_iterator
3260          ni = newMethod->param_begin(), ne = newMethod->param_end();
3261        ni != ne && oi != oe; ++ni, ++oi)
3262     mergeParamDeclAttributes(*ni, *oi, *this);
3263
3264   CheckObjCMethodOverride(newMethod, oldMethod);
3265 }
3266
3267 static void diagnoseVarDeclTypeMismatch(Sema &S, VarDecl *New, VarDecl* Old) {
3268   assert(!S.Context.hasSameType(New->getType(), Old->getType()));
3269
3270   S.Diag(New->getLocation(), New->isThisDeclarationADefinition()
3271          ? diag::err_redefinition_different_type
3272          : diag::err_redeclaration_different_type)
3273     << New->getDeclName() << New->getType() << Old->getType();
3274
3275   diag::kind PrevDiag;
3276   SourceLocation OldLocation;
3277   std::tie(PrevDiag, OldLocation)
3278     = getNoteDiagForInvalidRedeclaration(Old, New);
3279   S.Diag(OldLocation, PrevDiag);
3280   New->setInvalidDecl();
3281 }
3282
3283 /// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
3284 /// scope as a previous declaration 'Old'.  Figure out how to merge their types,
3285 /// emitting diagnostics as appropriate.
3286 ///
3287 /// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
3288 /// to here in AddInitializerToDecl. We can't check them before the initializer
3289 /// is attached.
3290 void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
3291                              bool MergeTypeWithOld) {
3292   if (New->isInvalidDecl() || Old->isInvalidDecl())
3293     return;
3294
3295   QualType MergedT;
3296   if (getLangOpts().CPlusPlus) {
3297     if (New->getType()->isUndeducedType()) {
3298       // We don't know what the new type is until the initializer is attached.
3299       return;
3300     } else if (Context.hasSameType(New->getType(), Old->getType())) {
3301       // These could still be something that needs exception specs checked.
3302       return MergeVarDeclExceptionSpecs(New, Old);
3303     }
3304     // C++ [basic.link]p10:
3305     //   [...] the types specified by all declarations referring to a given
3306     //   object or function shall be identical, except that declarations for an
3307     //   array object can specify array types that differ by the presence or
3308     //   absence of a major array bound (8.3.4).
3309     else if (Old->getType()->isArrayType() && New->getType()->isArrayType()) {
3310       const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
3311       const ArrayType *NewArray = Context.getAsArrayType(New->getType());
3312
3313       // We are merging a variable declaration New into Old. If it has an array
3314       // bound, and that bound differs from Old's bound, we should diagnose the
3315       // mismatch.
3316       if (!NewArray->isIncompleteArrayType()) {
3317         for (VarDecl *PrevVD = Old->getMostRecentDecl(); PrevVD;
3318              PrevVD = PrevVD->getPreviousDecl()) {
3319           const ArrayType *PrevVDTy = Context.getAsArrayType(PrevVD->getType());
3320           if (PrevVDTy->isIncompleteArrayType())
3321             continue;
3322
3323           if (!Context.hasSameType(NewArray, PrevVDTy))
3324             return diagnoseVarDeclTypeMismatch(*this, New, PrevVD);
3325         }
3326       }
3327
3328       if (OldArray->isIncompleteArrayType() && NewArray->isArrayType()) {
3329         if (Context.hasSameType(OldArray->getElementType(),
3330                                 NewArray->getElementType()))
3331           MergedT = New->getType();
3332       }
3333       // FIXME: Check visibility. New is hidden but has a complete type. If New
3334       // has no array bound, it should not inherit one from Old, if Old is not
3335       // visible.
3336       else if (OldArray->isArrayType() && NewArray->isIncompleteArrayType()) {
3337         if (Context.hasSameType(OldArray->getElementType(),
3338                                 NewArray->getElementType()))
3339           MergedT = Old->getType();
3340       }
3341     }
3342     else if (New->getType()->isObjCObjectPointerType() &&
3343                Old->getType()->isObjCObjectPointerType()) {
3344       MergedT = Context.mergeObjCGCQualifiers(New->getType(),
3345                                               Old->getType());
3346     }
3347   } else {
3348     // C 6.2.7p2:
3349     //   All declarations that refer to the same object or function shall have
3350     //   compatible type.
3351     MergedT = Context.mergeTypes(New->getType(), Old->getType());
3352   }
3353   if (MergedT.isNull()) {
3354     // It's OK if we couldn't merge types if either type is dependent, for a
3355     // block-scope variable. In other cases (static data members of class
3356     // templates, variable templates, ...), we require the types to be
3357     // equivalent.
3358     // FIXME: The C++ standard doesn't say anything about this.
3359     if ((New->getType()->isDependentType() ||
3360          Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
3361       // If the old type was dependent, we can't merge with it, so the new type
3362       // becomes dependent for now. We'll reproduce the original type when we
3363       // instantiate the TypeSourceInfo for the variable.
3364       if (!New->getType()->isDependentType() && MergeTypeWithOld)
3365         New->setType(Context.DependentTy);
3366       return;
3367     }
3368     return diagnoseVarDeclTypeMismatch(*this, New, Old);
3369   }
3370
3371   // Don't actually update the type on the new declaration if the old
3372   // declaration was an extern declaration in a different scope.
3373   if (MergeTypeWithOld)
3374     New->setType(MergedT);
3375 }
3376
3377 static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
3378                                   LookupResult &Previous) {
3379   // C11 6.2.7p4:
3380   //   For an identifier with internal or external linkage declared
3381   //   in a scope in which a prior declaration of that identifier is
3382   //   visible, if the prior declaration specifies internal or
3383   //   external linkage, the type of the identifier at the later
3384   //   declaration becomes the composite type.
3385   //
3386   // If the variable isn't visible, we do not merge with its type.
3387   if (Previous.isShadowed())
3388     return false;
3389
3390   if (S.getLangOpts().CPlusPlus) {
3391     // C++11 [dcl.array]p3:
3392     //   If there is a preceding declaration of the entity in the same
3393     //   scope in which the bound was specified, an omitted array bound
3394     //   is taken to be the same as in that earlier declaration.
3395     return NewVD->isPreviousDeclInSameBlockScope() ||
3396            (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
3397             !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
3398   } else {
3399     // If the old declaration was function-local, don't merge with its
3400     // type unless we're in the same function.
3401     return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
3402            OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
3403   }
3404 }
3405
3406 /// MergeVarDecl - We just parsed a variable 'New' which has the same name
3407 /// and scope as a previous declaration 'Old'.  Figure out how to resolve this
3408 /// situation, merging decls or emitting diagnostics as appropriate.
3409 ///
3410 /// Tentative definition rules (C99 6.9.2p2) are checked by
3411 /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
3412 /// definitions here, since the initializer hasn't been attached.
3413 ///
3414 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
3415   // If the new decl is already invalid, don't do any other checking.
3416   if (New->isInvalidDecl())
3417     return;
3418
3419   if (!shouldLinkPossiblyHiddenDecl(Previous, New))
3420     return;
3421
3422   VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
3423
3424   // Verify the old decl was also a variable or variable template.
3425   VarDecl *Old = nullptr;
3426   VarTemplateDecl *OldTemplate = nullptr;
3427   if (Previous.isSingleResult()) {
3428     if (NewTemplate) {
3429       OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
3430       Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
3431
3432       if (auto *Shadow =
3433               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3434         if (checkUsingShadowRedecl<VarTemplateDecl>(*this, Shadow, NewTemplate))
3435           return New->setInvalidDecl();
3436     } else {
3437       Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
3438
3439       if (auto *Shadow =
3440               dyn_cast<UsingShadowDecl>(Previous.getRepresentativeDecl()))
3441         if (checkUsingShadowRedecl<VarDecl>(*this, Shadow, New))
3442           return New->setInvalidDecl();
3443     }
3444   }
3445   if (!Old) {
3446     Diag(New->getLocation(), diag::err_redefinition_different_kind)
3447       << New->getDeclName();
3448     Diag(Previous.getRepresentativeDecl()->getLocation(),
3449          diag::note_previous_definition);
3450     return New->setInvalidDecl();
3451   }
3452
3453   // Ensure the template parameters are compatible.
3454   if (NewTemplate &&
3455       !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
3456                                       OldTemplate->getTemplateParameters(),
3457                                       /*Complain=*/true, TPL_TemplateMatch))
3458     return New->setInvalidDecl();
3459
3460   // C++ [class.mem]p1:
3461   //   A member shall not be declared twice in the member-specification [...]
3462   // 
3463   // Here, we need only consider static data members.
3464   if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3465     Diag(New->getLocation(), diag::err_duplicate_member) 
3466       << New->getIdentifier();
3467     Diag(Old->getLocation(), diag::note_previous_declaration);
3468     New->setInvalidDecl();
3469   }
3470   
3471   mergeDeclAttributes(New, Old);
3472   // Warn if an already-declared variable is made a weak_import in a subsequent 
3473   // declaration
3474   if (New->hasAttr<WeakImportAttr>() &&
3475       Old->getStorageClass() == SC_None &&
3476       !Old->hasAttr<WeakImportAttr>()) {
3477     Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3478     Diag(Old->getLocation(), diag::note_previous_definition);
3479     // Remove weak_import attribute on new declaration.
3480     New->dropAttr<WeakImportAttr>();
3481   }
3482
3483   if (New->hasAttr<InternalLinkageAttr>() &&
3484       !Old->hasAttr<InternalLinkageAttr>()) {
3485     Diag(New->getLocation(), diag::err_internal_linkage_redeclaration)
3486         << New->getDeclName();
3487     Diag(Old->getLocation(), diag::note_previous_definition);
3488     New->dropAttr<InternalLinkageAttr>();
3489   }
3490
3491   // Merge the types.
3492   VarDecl *MostRecent = Old->getMostRecentDecl();
3493   if (MostRecent != Old) {
3494     MergeVarDeclTypes(New, MostRecent,
3495                       mergeTypeWithPrevious(*this, New, MostRecent, Previous));
3496     if (New->isInvalidDecl())
3497       return;
3498   }
3499
3500   MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3501   if (New->isInvalidDecl())
3502     return;
3503
3504   diag::kind PrevDiag;
3505   SourceLocation OldLocation;
3506   std::tie(PrevDiag, OldLocation) =
3507       getNoteDiagForInvalidRedeclaration(Old, New);
3508
3509   // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
3510   if (New->getStorageClass() == SC_Static &&
3511       !New->isStaticDataMember() &&
3512       Old->hasExternalFormalLinkage()) {
3513     if (getLangOpts().MicrosoftExt) {
3514       Diag(New->getLocation(), diag::ext_static_non_static)
3515           << New->getDeclName();
3516       Diag(OldLocation, PrevDiag);
3517     } else {
3518       Diag(New->getLocation(), diag::err_static_non_static)
3519           << New->getDeclName();
3520       Diag(OldLocation, PrevDiag);
3521       return New->setInvalidDecl();
3522     }
3523   }
3524   // C99 6.2.2p4:
3525   //   For an identifier declared with the storage-class specifier
3526   //   extern in a scope in which a prior declaration of that
3527   //   identifier is visible,23) if the prior declaration specifies
3528   //   internal or external linkage, the linkage of the identifier at
3529   //   the later declaration is the same as the linkage specified at
3530   //   the prior declaration. If no prior declaration is visible, or
3531   //   if the prior declaration specifies no linkage, then the
3532   //   identifier has external linkage.
3533   if (New->hasExternalStorage() && Old->hasLinkage())
3534     /* Okay */;
3535   else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
3536            !New->isStaticDataMember() &&
3537            Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
3538     Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
3539     Diag(OldLocation, PrevDiag);
3540     return New->setInvalidDecl();
3541   }
3542
3543   // Check if extern is followed by non-extern and vice-versa.
3544   if (New->hasExternalStorage() &&
3545       !Old->hasLinkage() && Old->isLocalVarDeclOrParm()) {
3546     Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3547     Diag(OldLocation, PrevDiag);
3548     return New->setInvalidDecl();
3549   }
3550   if (Old->hasLinkage() && New->isLocalVarDeclOrParm() &&
3551       !New->hasExternalStorage()) {
3552     Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3553     Diag(OldLocation, PrevDiag);
3554     return New->setInvalidDecl();
3555   }
3556
3557   // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
3558
3559   // FIXME: The test for external storage here seems wrong? We still
3560   // need to check for mismatches.
3561   if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
3562       // Don't complain about out-of-line definitions of static members.
3563       !(Old->getLexicalDeclContext()->isRecord() &&
3564         !New->getLexicalDeclContext()->isRecord())) {
3565     Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
3566     Diag(OldLocation, PrevDiag);
3567     return New->setInvalidDecl();
3568   }
3569
3570   if (New->getTLSKind() != Old->getTLSKind()) {
3571     if (!Old->getTLSKind()) {
3572       Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3573       Diag(OldLocation, PrevDiag);
3574     } else if (!New->getTLSKind()) {
3575       Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3576       Diag(OldLocation, PrevDiag);
3577     } else {
3578       // Do not allow redeclaration to change the variable between requiring
3579       // static and dynamic initialization.
3580       // FIXME: GCC allows this, but uses the TLS keyword on the first
3581       // declaration to determine the kind. Do we need to be compatible here?
3582       Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3583         << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3584       Diag(OldLocation, PrevDiag);
3585     }
3586   }
3587
3588   // C++ doesn't have tentative definitions, so go right ahead and check here.
3589   VarDecl *Def;
3590   if (getLangOpts().CPlusPlus &&
3591       New->isThisDeclarationADefinition() == VarDecl::Definition &&
3592       (Def = Old->getDefinition())) {
3593     NamedDecl *Hidden = nullptr;
3594     if (!hasVisibleDefinition(Def, &Hidden) &&
3595         (New->getFormalLinkage() == InternalLinkage ||
3596          New->getDescribedVarTemplate() ||
3597          New->getNumTemplateParameterLists() ||
3598          New->getDeclContext()->isDependentContext())) {
3599       // The previous definition is hidden, and multiple definitions are
3600       // permitted (in separate TUs). Form another definition of it.
3601     } else {
3602       Diag(New->getLocation(), diag::err_redefinition) << New;
3603       Diag(Def->getLocation(), diag::note_previous_definition);
3604       New->setInvalidDecl();
3605       return;
3606     }
3607   }
3608
3609   if (haveIncompatibleLanguageLinkages(Old, New)) {
3610     Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3611     Diag(OldLocation, PrevDiag);
3612     New->setInvalidDecl();
3613     return;
3614   }
3615
3616   // Merge "used" flag.
3617   if (Old->getMostRecentDecl()->isUsed(false))
3618     New->setIsUsed();
3619
3620   // Keep a chain of previous declarations.
3621   New->setPreviousDecl(Old);
3622   if (NewTemplate)
3623     NewTemplate->setPreviousDecl(OldTemplate);
3624
3625   // Inherit access appropriately.
3626   New->setAccess(Old->getAccess());
3627   if (NewTemplate)
3628     NewTemplate->setAccess(New->getAccess());
3629 }
3630
3631 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
3632 /// no declarator (e.g. "struct foo;") is parsed.
3633 Decl *
3634 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
3635                                  RecordDecl *&AnonRecord) {
3636   return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg(), false,
3637                                     AnonRecord);
3638 }
3639
3640 // The MS ABI changed between VS2013 and VS2015 with regard to numbers used to
3641 // disambiguate entities defined in different scopes.
3642 // While the VS2015 ABI fixes potential miscompiles, it is also breaks
3643 // compatibility.
3644 // We will pick our mangling number depending on which version of MSVC is being
3645 // targeted.
3646 static unsigned getMSManglingNumber(const LangOptions &LO, Scope *S) {
3647   return LO.isCompatibleWithMSVC(LangOptions::MSVC2015)
3648              ? S->getMSCurManglingNumber()
3649              : S->getMSLastManglingNumber();
3650 }
3651
3652 void Sema::handleTagNumbering(const TagDecl *Tag, Scope *TagScope) {
3653   if (!Context.getLangOpts().CPlusPlus)
3654     return;
3655
3656   if (isa<CXXRecordDecl>(Tag->getParent())) {
3657     // If this tag is the direct child of a class, number it if
3658     // it is anonymous.
3659     if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
3660       return;
3661     MangleNumberingContext &MCtx =
3662         Context.getManglingNumberContext(Tag->getParent());
3663     Context.setManglingNumber(
3664         Tag, MCtx.getManglingNumber(
3665                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
3666     return;
3667   }
3668
3669   // If this tag isn't a direct child of a class, number it if it is local.
3670   Decl *ManglingContextDecl;
3671   if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
3672           Tag->getDeclContext(), ManglingContextDecl)) {
3673     Context.setManglingNumber(
3674         Tag, MCtx->getManglingNumber(
3675                  Tag, getMSManglingNumber(getLangOpts(), TagScope)));
3676   }
3677 }
3678
3679 void Sema::setTagNameForLinkagePurposes(TagDecl *TagFromDeclSpec,
3680                                         TypedefNameDecl *NewTD) {
3681   if (TagFromDeclSpec->isInvalidDecl())
3682     return;
3683
3684   // Do nothing if the tag already has a name for linkage purposes.
3685   if (TagFromDeclSpec->hasNameForLinkage())
3686     return;
3687
3688   // A well-formed anonymous tag must always be a TUK_Definition.
3689   assert(TagFromDeclSpec->isThisDeclarationADefinition());
3690
3691   // The type must match the tag exactly;  no qualifiers allowed.
3692   if (!Context.hasSameType(NewTD->getUnderlyingType(),
3693                            Context.getTagDeclType(TagFromDeclSpec))) {
3694     if (getLangOpts().CPlusPlus)
3695       Context.addTypedefNameForUnnamedTagDecl(TagFromDeclSpec, NewTD);
3696     return;
3697   }
3698
3699   // If we've already computed linkage for the anonymous tag, then
3700   // adding a typedef name for the anonymous decl can change that
3701   // linkage, which might be a serious problem.  Diagnose this as
3702   // unsupported and ignore the typedef name.  TODO: we should
3703   // pursue this as a language defect and establish a formal rule
3704   // for how to handle it.
3705   if (TagFromDeclSpec->hasLinkageBeenComputed()) {
3706     Diag(NewTD->getLocation(), diag::err_typedef_changes_linkage);
3707
3708     SourceLocation tagLoc = TagFromDeclSpec->getInnerLocStart();
3709     tagLoc = getLocForEndOfToken(tagLoc);
3710
3711     llvm::SmallString<40> textToInsert;
3712     textToInsert += ' ';
3713     textToInsert += NewTD->getIdentifier()->getName();
3714     Diag(tagLoc, diag::note_typedef_changes_linkage)
3715         << FixItHint::CreateInsertion(tagLoc, textToInsert);
3716     return;
3717   }
3718
3719   // Otherwise, set this is the anon-decl typedef for the tag.
3720   TagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
3721 }
3722
3723 static unsigned GetDiagnosticTypeSpecifierID(DeclSpec::TST T) {
3724   switch (T) {
3725   case DeclSpec::TST_class:
3726     return 0;
3727   case DeclSpec::TST_struct:
3728     return 1;
3729   case DeclSpec::TST_interface:
3730     return 2;
3731   case DeclSpec::TST_union:
3732     return 3;
3733   case DeclSpec::TST_enum:
3734     return 4;
3735   default:
3736     llvm_unreachable("unexpected type specifier");
3737   }
3738 }
3739
3740 /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
3741 /// no declarator (e.g. "struct foo;") is parsed. It also accepts template
3742 /// parameters to cope with template friend declarations.
3743 Decl *
3744 Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS, DeclSpec &DS,
3745                                  MultiTemplateParamsArg TemplateParams,
3746                                  bool IsExplicitInstantiation,
3747                                  RecordDecl *&AnonRecord) {
3748   Decl *TagD = nullptr;
3749   TagDecl *Tag = nullptr;
3750   if (DS.getTypeSpecType() == DeclSpec::TST_class ||
3751       DS.getTypeSpecType() == DeclSpec::TST_struct ||
3752       DS.getTypeSpecType() == DeclSpec::TST_interface ||
3753       DS.getTypeSpecType() == DeclSpec::TST_union ||
3754       DS.getTypeSpecType() == DeclSpec::TST_enum) {
3755     TagD = DS.getRepAsDecl();
3756
3757     if (!TagD) // We probably had an error
3758       return nullptr;
3759
3760     // Note that the above type specs guarantee that the
3761     // type rep is a Decl, whereas in many of the others
3762     // it's a Type.
3763     if (isa<TagDecl>(TagD))
3764       Tag = cast<TagDecl>(TagD);
3765     else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
3766       Tag = CTD->getTemplatedDecl();
3767   }
3768
3769   if (Tag) {
3770     handleTagNumbering(Tag, S);
3771     Tag->setFreeStanding();
3772     if (Tag->isInvalidDecl())
3773       return Tag;
3774   }
3775
3776   if (unsigned TypeQuals = DS.getTypeQualifiers()) {
3777     // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
3778     // or incomplete types shall not be restrict-qualified."
3779     if (TypeQuals & DeclSpec::TQ_restrict)
3780       Diag(DS.getRestrictSpecLoc(),
3781            diag::err_typecheck_invalid_restrict_not_pointer_noarg)
3782            << DS.getSourceRange();
3783   }
3784
3785   if (DS.isConstexprSpecified()) {
3786     // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
3787     // and definitions of functions and variables.
3788     if (Tag)
3789       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
3790           << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType());
3791     else
3792       Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
3793     // Don't emit warnings after this error.
3794     return TagD;
3795   }
3796
3797   if (DS.isConceptSpecified()) {
3798     // C++ Concepts TS [dcl.spec.concept]p1: A concept definition refers to
3799     // either a function concept and its definition or a variable concept and
3800     // its initializer.
3801     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
3802     return TagD;
3803   }
3804
3805   DiagnoseFunctionSpecifiers(DS);
3806
3807   if (DS.isFriendSpecified()) {
3808     // If we're dealing with a decl but not a TagDecl, assume that
3809     // whatever routines created it handled the friendship aspect.
3810     if (TagD && !Tag)
3811       return nullptr;
3812     return ActOnFriendTypeDecl(S, DS, TemplateParams);
3813   }
3814
3815   const CXXScopeSpec &SS = DS.getTypeSpecScope();
3816   bool IsExplicitSpecialization =
3817     !TemplateParams.empty() && TemplateParams.back()->size() == 0;
3818   if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
3819       !IsExplicitInstantiation && !IsExplicitSpecialization &&
3820       !isa<ClassTemplatePartialSpecializationDecl>(Tag)) {
3821     // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
3822     // nested-name-specifier unless it is an explicit instantiation
3823     // or an explicit specialization.
3824     //
3825     // FIXME: We allow class template partial specializations here too, per the
3826     // obvious intent of DR1819.
3827     //
3828     // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
3829     Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
3830         << GetDiagnosticTypeSpecifierID(DS.getTypeSpecType()) << SS.getRange();
3831     return nullptr;
3832   }
3833
3834   // Track whether this decl-specifier declares anything.
3835   bool DeclaresAnything = true;
3836
3837   // Handle anonymous struct definitions.
3838   if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
3839     if (!Record->getDeclName() && Record->isCompleteDefinition() &&
3840         DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
3841       if (getLangOpts().CPlusPlus ||
3842           Record->getDeclContext()->isRecord()) {
3843         // If CurContext is a DeclContext that can contain statements,
3844         // RecursiveASTVisitor won't visit the decls that
3845         // BuildAnonymousStructOrUnion() will put into CurContext.
3846         // Also store them here so that they can be part of the
3847         // DeclStmt that gets created in this case.
3848         // FIXME: Also return the IndirectFieldDecls created by
3849         // BuildAnonymousStructOr union, for the same reason?
3850         if (CurContext->isFunctionOrMethod())
3851           AnonRecord = Record;
3852         return BuildAnonymousStructOrUnion(S, DS, AS, Record,
3853                                            Context.getPrintingPolicy());
3854       }
3855
3856       DeclaresAnything = false;
3857     }
3858   }
3859
3860   // C11 6.7.2.1p2:
3861   //   A struct-declaration that does not declare an anonymous structure or
3862   //   anonymous union shall contain a struct-declarator-list.
3863   //
3864   // This rule also existed in C89 and C99; the grammar for struct-declaration
3865   // did not permit a struct-declaration without a struct-declarator-list.
3866   if (!getLangOpts().CPlusPlus && CurContext->isRecord() &&
3867       DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
3868     // Check for Microsoft C extension: anonymous struct/union member.
3869     // Handle 2 kinds of anonymous struct/union:
3870     //   struct STRUCT;
3871     //   union UNION;
3872     // and
3873     //   STRUCT_TYPE;  <- where STRUCT_TYPE is a typedef struct.
3874     //   UNION_TYPE;   <- where UNION_TYPE is a typedef union.
3875     if ((Tag && Tag->getDeclName()) ||
3876         DS.getTypeSpecType() == DeclSpec::TST_typename) {
3877       RecordDecl *Record = nullptr;
3878       if (Tag)
3879         Record = dyn_cast<RecordDecl>(Tag);
3880       else if (const RecordType *RT =
3881                    DS.getRepAsType().get()->getAsStructureType())
3882         Record = RT->getDecl();
3883       else if (const RecordType *UT = DS.getRepAsType().get()->getAsUnionType())
3884         Record = UT->getDecl();
3885
3886       if (Record && getLangOpts().MicrosoftExt) {
3887         Diag(DS.getLocStart(), diag::ext_ms_anonymous_record)
3888           << Record->isUnion() << DS.getSourceRange();
3889         return BuildMicrosoftCAnonymousStruct(S, DS, Record);
3890       }
3891
3892       DeclaresAnything = false;
3893     }
3894   }
3895
3896   // Skip all the checks below if we have a type error.
3897   if (DS.getTypeSpecType() == DeclSpec::TST_error ||
3898       (TagD && TagD->isInvalidDecl()))
3899     return TagD;
3900
3901   if (getLangOpts().CPlusPlus &&
3902       DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
3903     if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
3904       if (Enum->enumerator_begin() == Enum->enumerator_end() &&
3905           !Enum->getIdentifier() && !Enum->isInvalidDecl())
3906         DeclaresAnything = false;
3907
3908   if (!DS.isMissingDeclaratorOk()) {
3909     // Customize diagnostic for a typedef missing a name.
3910     if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
3911       Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
3912         << DS.getSourceRange();
3913     else
3914       DeclaresAnything = false;
3915   }
3916
3917   if (DS.isModulePrivateSpecified() &&
3918       Tag && Tag->getDeclContext()->isFunctionOrMethod())
3919     Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
3920       << Tag->getTagKind()
3921       << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
3922
3923   ActOnDocumentableDecl(TagD);
3924
3925   // C 6.7/2:
3926   //   A declaration [...] shall declare at least a declarator [...], a tag,
3927   //   or the members of an enumeration.
3928   // C++ [dcl.dcl]p3:
3929   //   [If there are no declarators], and except for the declaration of an
3930   //   unnamed bit-field, the decl-specifier-seq shall introduce one or more
3931   //   names into the program, or shall redeclare a name introduced by a
3932   //   previous declaration.
3933   if (!DeclaresAnything) {
3934     // In C, we allow this as a (popular) extension / bug. Don't bother
3935     // producing further diagnostics for redundant qualifiers after this.
3936     Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
3937     return TagD;
3938   }
3939
3940   // C++ [dcl.stc]p1:
3941   //   If a storage-class-specifier appears in a decl-specifier-seq, [...] the
3942   //   init-declarator-list of the declaration shall not be empty.
3943   // C++ [dcl.fct.spec]p1:
3944   //   If a cv-qualifier appears in a decl-specifier-seq, the
3945   //   init-declarator-list of the declaration shall not be empty.
3946   //
3947   // Spurious qualifiers here appear to be valid in C.
3948   unsigned DiagID = diag::warn_standalone_specifier;
3949   if (getLangOpts().CPlusPlus)
3950     DiagID = diag::ext_standalone_specifier;
3951
3952   // Note that a linkage-specification sets a storage class, but
3953   // 'extern "C" struct foo;' is actually valid and not theoretically
3954   // useless.
3955   if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
3956     if (SCS == DeclSpec::SCS_mutable)
3957       // Since mutable is not a viable storage class specifier in C, there is
3958       // no reason to treat it as an extension. Instead, diagnose as an error.
3959       Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
3960     else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
3961       Diag(DS.getStorageClassSpecLoc(), DiagID)
3962         << DeclSpec::getSpecifierName(SCS);
3963   }
3964
3965   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
3966     Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
3967       << DeclSpec::getSpecifierName(TSCS);
3968   if (DS.getTypeQualifiers()) {
3969     if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
3970       Diag(DS.getConstSpecLoc(), DiagID) << "const";
3971     if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
3972       Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
3973     // Restrict is covered above.
3974     if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
3975       Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
3976   }
3977
3978   // Warn about ignored type attributes, for example:
3979   // __attribute__((aligned)) struct A;
3980   // Attributes should be placed after tag to apply to type declaration.
3981   if (!DS.getAttributes().empty()) {
3982     DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
3983     if (TypeSpecType == DeclSpec::TST_class ||
3984         TypeSpecType == DeclSpec::TST_struct ||
3985         TypeSpecType == DeclSpec::TST_interface ||
3986         TypeSpecType == DeclSpec::TST_union ||
3987         TypeSpecType == DeclSpec::TST_enum) {
3988       for (AttributeList* attrs = DS.getAttributes().getList(); attrs;
3989            attrs = attrs->getNext())
3990         Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
3991             << attrs->getName() << GetDiagnosticTypeSpecifierID(TypeSpecType);
3992     }
3993   }
3994
3995   return TagD;
3996 }
3997
3998 /// We are trying to inject an anonymous member into the given scope;
3999 /// check if there's an existing declaration that can't be overloaded.
4000 ///
4001 /// \return true if this is a forbidden redeclaration
4002 static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
4003                                          Scope *S,
4004                                          DeclContext *Owner,
4005                                          DeclarationName Name,
4006                                          SourceLocation NameLoc,
4007                                          bool IsUnion) {
4008   LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
4009                  Sema::ForRedeclaration);
4010   if (!SemaRef.LookupName(R, S)) return false;
4011
4012   // Pick a representative declaration.
4013   NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
4014   assert(PrevDecl && "Expected a non-null Decl");
4015
4016   if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
4017     return false;
4018
4019   SemaRef.Diag(NameLoc, diag::err_anonymous_record_member_redecl)
4020     << IsUnion << Name;
4021   SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
4022
4023   return true;
4024 }
4025
4026 /// InjectAnonymousStructOrUnionMembers - Inject the members of the
4027 /// anonymous struct or union AnonRecord into the owning context Owner
4028 /// and scope S. This routine will be invoked just after we realize
4029 /// that an unnamed union or struct is actually an anonymous union or
4030 /// struct, e.g.,
4031 ///
4032 /// @code
4033 /// union {
4034 ///   int i;
4035 ///   float f;
4036 /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
4037 ///    // f into the surrounding scope.x
4038 /// @endcode
4039 ///
4040 /// This routine is recursive, injecting the names of nested anonymous
4041 /// structs/unions into the owning context and scope as well.
4042 static bool
4043 InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S, DeclContext *Owner,
4044                                     RecordDecl *AnonRecord, AccessSpecifier AS,
4045                                     SmallVectorImpl<NamedDecl *> &Chaining) {
4046   bool Invalid = false;
4047
4048   // Look every FieldDecl and IndirectFieldDecl with a name.
4049   for (auto *D : AnonRecord->decls()) {
4050     if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
4051         cast<NamedDecl>(D)->getDeclName()) {
4052       ValueDecl *VD = cast<ValueDecl>(D);
4053       if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
4054                                        VD->getLocation(),
4055                                        AnonRecord->isUnion())) {
4056         // C++ [class.union]p2:
4057         //   The names of the members of an anonymous union shall be
4058         //   distinct from the names of any other entity in the
4059         //   scope in which the anonymous union is declared.
4060         Invalid = true;
4061       } else {
4062         // C++ [class.union]p2:
4063         //   For the purpose of name lookup, after the anonymous union
4064         //   definition, the members of the anonymous union are
4065         //   considered to have been defined in the scope in which the
4066         //   anonymous union is declared.
4067         unsigned OldChainingSize = Chaining.size();
4068         if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
4069           Chaining.append(IF->chain_begin(), IF->chain_end());
4070         else
4071           Chaining.push_back(VD);
4072
4073         assert(Chaining.size() >= 2);
4074         NamedDecl **NamedChain =
4075           new (SemaRef.Context)NamedDecl*[Chaining.size()];
4076         for (unsigned i = 0; i < Chaining.size(); i++)
4077           NamedChain[i] = Chaining[i];
4078
4079         IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
4080             SemaRef.Context, Owner, VD->getLocation(), VD->getIdentifier(),
4081             VD->getType(), NamedChain, Chaining.size());
4082
4083         for (const auto *Attr : VD->attrs())
4084           IndirectField->addAttr(Attr->clone(SemaRef.Context));
4085
4086         IndirectField->setAccess(AS);
4087         IndirectField->setImplicit();
4088         SemaRef.PushOnScopeChains(IndirectField, S);
4089
4090         // That includes picking up the appropriate access specifier.
4091         if (AS != AS_none) IndirectField->setAccess(AS);
4092
4093         Chaining.resize(OldChainingSize);
4094       }
4095     }
4096   }
4097
4098   return Invalid;
4099 }
4100
4101 /// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
4102 /// a VarDecl::StorageClass. Any error reporting is up to the caller:
4103 /// illegal input values are mapped to SC_None.
4104 static StorageClass
4105 StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
4106   DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
4107   assert(StorageClassSpec != DeclSpec::SCS_typedef &&
4108          "Parser allowed 'typedef' as storage class VarDecl.");
4109   switch (StorageClassSpec) {
4110   case DeclSpec::SCS_unspecified:    return SC_None;
4111   case DeclSpec::SCS_extern:
4112     if (DS.isExternInLinkageSpec())
4113       return SC_None;
4114     return SC_Extern;
4115   case DeclSpec::SCS_static:         return SC_Static;
4116   case DeclSpec::SCS_auto:           return SC_Auto;
4117   case DeclSpec::SCS_register:       return SC_Register;
4118   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
4119     // Illegal SCSs map to None: error reporting is up to the caller.
4120   case DeclSpec::SCS_mutable:        // Fall through.
4121   case DeclSpec::SCS_typedef:        return SC_None;
4122   }
4123   llvm_unreachable("unknown storage class specifier");
4124 }
4125
4126 static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
4127   assert(Record->hasInClassInitializer());
4128
4129   for (const auto *I : Record->decls()) {
4130     const auto *FD = dyn_cast<FieldDecl>(I);
4131     if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
4132       FD = IFD->getAnonField();
4133     if (FD && FD->hasInClassInitializer())
4134       return FD->getLocation();
4135   }
4136
4137   llvm_unreachable("couldn't find in-class initializer");
4138 }
4139
4140 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4141                                       SourceLocation DefaultInitLoc) {
4142   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4143     return;
4144
4145   S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
4146   S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
4147 }
4148
4149 static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
4150                                       CXXRecordDecl *AnonUnion) {
4151   if (!Parent->isUnion() || !Parent->hasInClassInitializer())
4152     return;
4153
4154   checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
4155 }
4156
4157 /// BuildAnonymousStructOrUnion - Handle the declaration of an
4158 /// anonymous structure or union. Anonymous unions are a C++ feature
4159 /// (C++ [class.union]) and a C11 feature; anonymous structures
4160 /// are a C11 feature and GNU C++ extension.
4161 Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
4162                                         AccessSpecifier AS,
4163                                         RecordDecl *Record,
4164                                         const PrintingPolicy &Policy) {
4165   DeclContext *Owner = Record->getDeclContext();
4166
4167   // Diagnose whether this anonymous struct/union is an extension.
4168   if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
4169     Diag(Record->getLocation(), diag::ext_anonymous_union);
4170   else if (!Record->isUnion() && getLangOpts().CPlusPlus)
4171     Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
4172   else if (!Record->isUnion() && !getLangOpts().C11)
4173     Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
4174
4175   // C and C++ require different kinds of checks for anonymous
4176   // structs/unions.
4177   bool Invalid = false;
4178   if (getLangOpts().CPlusPlus) {
4179     const char *PrevSpec = nullptr;
4180     unsigned DiagID;
4181     if (Record->isUnion()) {
4182       // C++ [class.union]p6:
4183       //   Anonymous unions declared in a named namespace or in the
4184       //   global namespace shall be declared static.
4185       if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
4186           (isa<TranslationUnitDecl>(Owner) ||
4187            (isa<NamespaceDecl>(Owner) &&
4188             cast<NamespaceDecl>(Owner)->getDeclName()))) {
4189         Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
4190           << FixItHint::CreateInsertion(Record->getLocation(), "static ");
4191   
4192         // Recover by adding 'static'.
4193         DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
4194                                PrevSpec, DiagID, Policy);
4195       }
4196       // C++ [class.union]p6:
4197       //   A storage class is not allowed in a declaration of an
4198       //   anonymous union in a class scope.
4199       else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
4200                isa<RecordDecl>(Owner)) {
4201         Diag(DS.getStorageClassSpecLoc(),
4202              diag::err_anonymous_union_with_storage_spec)
4203           << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
4204   
4205         // Recover by removing the storage specifier.
4206         DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified, 
4207                                SourceLocation(),
4208                                PrevSpec, DiagID, Context.getPrintingPolicy());
4209       }
4210     }
4211
4212     // Ignore const/volatile/restrict qualifiers.
4213     if (DS.getTypeQualifiers()) {
4214       if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
4215         Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
4216           << Record->isUnion() << "const"
4217           << FixItHint::CreateRemoval(DS.getConstSpecLoc());
4218       if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
4219         Diag(DS.getVolatileSpecLoc(),
4220              diag::ext_anonymous_struct_union_qualified)
4221           << Record->isUnion() << "volatile"
4222           << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
4223       if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
4224         Diag(DS.getRestrictSpecLoc(),
4225              diag::ext_anonymous_struct_union_qualified)
4226           << Record->isUnion() << "restrict"
4227           << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
4228       if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
4229         Diag(DS.getAtomicSpecLoc(),
4230              diag::ext_anonymous_struct_union_qualified)
4231           << Record->isUnion() << "_Atomic"
4232           << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
4233
4234       DS.ClearTypeQualifiers();
4235     }
4236
4237     // C++ [class.union]p2:
4238     //   The member-specification of an anonymous union shall only
4239     //   define non-static data members. [Note: nested types and
4240     //   functions cannot be declared within an anonymous union. ]
4241     for (auto *Mem : Record->decls()) {
4242       if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
4243         // C++ [class.union]p3:
4244         //   An anonymous union shall not have private or protected
4245         //   members (clause 11).
4246         assert(FD->getAccess() != AS_none);
4247         if (FD->getAccess() != AS_public) {
4248           Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
4249             << Record->isUnion() << (FD->getAccess() == AS_protected);
4250           Invalid = true;
4251         }
4252
4253         // C++ [class.union]p1
4254         //   An object of a class with a non-trivial constructor, a non-trivial
4255         //   copy constructor, a non-trivial destructor, or a non-trivial copy
4256         //   assignment operator cannot be a member of a union, nor can an
4257         //   array of such objects.
4258         if (CheckNontrivialField(FD))
4259           Invalid = true;
4260       } else if (Mem->isImplicit()) {
4261         // Any implicit members are fine.
4262       } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
4263         // This is a type that showed up in an
4264         // elaborated-type-specifier inside the anonymous struct or
4265         // union, but which actually declares a type outside of the
4266         // anonymous struct or union. It's okay.
4267       } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
4268         if (!MemRecord->isAnonymousStructOrUnion() &&
4269             MemRecord->getDeclName()) {
4270           // Visual C++ allows type definition in anonymous struct or union.
4271           if (getLangOpts().MicrosoftExt)
4272             Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
4273               << Record->isUnion();
4274           else {
4275             // This is a nested type declaration.
4276             Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
4277               << Record->isUnion();
4278             Invalid = true;
4279           }
4280         } else {
4281           // This is an anonymous type definition within another anonymous type.
4282           // This is a popular extension, provided by Plan9, MSVC and GCC, but
4283           // not part of standard C++.
4284           Diag(MemRecord->getLocation(),
4285                diag::ext_anonymous_record_with_anonymous_type)
4286             << Record->isUnion();
4287         }
4288       } else if (isa<AccessSpecDecl>(Mem)) {
4289         // Any access specifier is fine.
4290       } else if (isa<StaticAssertDecl>(Mem)) {
4291         // In C++1z, static_assert declarations are also fine.
4292       } else {
4293         // We have something that isn't a non-static data
4294         // member. Complain about it.
4295         unsigned DK = diag::err_anonymous_record_bad_member;
4296         if (isa<TypeDecl>(Mem))
4297           DK = diag::err_anonymous_record_with_type;
4298         else if (isa<FunctionDecl>(Mem))
4299           DK = diag::err_anonymous_record_with_function;
4300         else if (isa<VarDecl>(Mem))
4301           DK = diag::err_anonymous_record_with_static;
4302         
4303         // Visual C++ allows type definition in anonymous struct or union.
4304         if (getLangOpts().MicrosoftExt &&
4305             DK == diag::err_anonymous_record_with_type)
4306           Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
4307             << Record->isUnion();
4308         else {
4309           Diag(Mem->getLocation(), DK) << Record->isUnion();
4310           Invalid = true;
4311         }
4312       }
4313     }
4314
4315     // C++11 [class.union]p8 (DR1460):
4316     //   At most one variant member of a union may have a
4317     //   brace-or-equal-initializer.
4318     if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
4319         Owner->isRecord())
4320       checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
4321                                 cast<CXXRecordDecl>(Record));
4322   }
4323
4324   if (!Record->isUnion() && !Owner->isRecord()) {
4325     Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
4326       << getLangOpts().CPlusPlus;
4327     Invalid = true;
4328   }
4329
4330   // Mock up a declarator.
4331   Declarator Dc(DS, Declarator::MemberContext);
4332   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4333   assert(TInfo && "couldn't build declarator info for anonymous struct/union");
4334
4335   // Create a declaration for this anonymous struct/union.
4336   NamedDecl *Anon = nullptr;
4337   if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
4338     Anon = FieldDecl::Create(Context, OwningClass,
4339                              DS.getLocStart(),
4340                              Record->getLocation(),
4341                              /*IdentifierInfo=*/nullptr,
4342                              Context.getTypeDeclType(Record),
4343                              TInfo,
4344                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4345                              /*InitStyle=*/ICIS_NoInit);
4346     Anon->setAccess(AS);
4347     if (getLangOpts().CPlusPlus)
4348       FieldCollector->Add(cast<FieldDecl>(Anon));
4349   } else {
4350     DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
4351     StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
4352     if (SCSpec == DeclSpec::SCS_mutable) {
4353       // mutable can only appear on non-static class members, so it's always
4354       // an error here
4355       Diag(Record->getLocation(), diag::err_mutable_nonmember);
4356       Invalid = true;
4357       SC = SC_None;
4358     }
4359
4360     Anon = VarDecl::Create(Context, Owner,
4361                            DS.getLocStart(),
4362                            Record->getLocation(), /*IdentifierInfo=*/nullptr,
4363                            Context.getTypeDeclType(Record),
4364                            TInfo, SC);
4365
4366     // Default-initialize the implicit variable. This initialization will be
4367     // trivial in almost all cases, except if a union member has an in-class
4368     // initializer:
4369     //   union { int n = 0; };
4370     ActOnUninitializedDecl(Anon, /*TypeMayContainAuto=*/false);
4371   }
4372   Anon->setImplicit();
4373
4374   // Mark this as an anonymous struct/union type.
4375   Record->setAnonymousStructOrUnion(true);
4376
4377   // Add the anonymous struct/union object to the current
4378   // context. We'll be referencing this object when we refer to one of
4379   // its members.
4380   Owner->addDecl(Anon);
4381
4382   // Inject the members of the anonymous struct/union into the owning
4383   // context and into the identifier resolver chain for name lookup
4384   // purposes.
4385   SmallVector<NamedDecl*, 2> Chain;
4386   Chain.push_back(Anon);
4387
4388   if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS, Chain))
4389     Invalid = true;
4390
4391   if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
4392     if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
4393       Decl *ManglingContextDecl;
4394       if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
4395               NewVD->getDeclContext(), ManglingContextDecl)) {
4396         Context.setManglingNumber(
4397             NewVD, MCtx->getManglingNumber(
4398                        NewVD, getMSManglingNumber(getLangOpts(), S)));
4399         Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
4400       }
4401     }
4402   }
4403
4404   if (Invalid)
4405     Anon->setInvalidDecl();
4406
4407   return Anon;
4408 }
4409
4410 /// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
4411 /// Microsoft C anonymous structure.
4412 /// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
4413 /// Example:
4414 ///
4415 /// struct A { int a; };
4416 /// struct B { struct A; int b; };
4417 ///
4418 /// void foo() {
4419 ///   B var;
4420 ///   var.a = 3;
4421 /// }
4422 ///
4423 Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
4424                                            RecordDecl *Record) {
4425   assert(Record && "expected a record!");
4426
4427   // Mock up a declarator.
4428   Declarator Dc(DS, Declarator::TypeNameContext);
4429   TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
4430   assert(TInfo && "couldn't build declarator info for anonymous struct");
4431
4432   auto *ParentDecl = cast<RecordDecl>(CurContext);
4433   QualType RecTy = Context.getTypeDeclType(Record);
4434
4435   // Create a declaration for this anonymous struct.
4436   NamedDecl *Anon = FieldDecl::Create(Context,
4437                              ParentDecl,
4438                              DS.getLocStart(),
4439                              DS.getLocStart(),
4440                              /*IdentifierInfo=*/nullptr,
4441                              RecTy,
4442                              TInfo,
4443                              /*BitWidth=*/nullptr, /*Mutable=*/false,
4444                              /*InitStyle=*/ICIS_NoInit);
4445   Anon->setImplicit();
4446
4447   // Add the anonymous struct object to the current context.
4448   CurContext->addDecl(Anon);
4449
4450   // Inject the members of the anonymous struct into the current
4451   // context and into the identifier resolver chain for name lookup
4452   // purposes.
4453   SmallVector<NamedDecl*, 2> Chain;
4454   Chain.push_back(Anon);
4455
4456   RecordDecl *RecordDef = Record->getDefinition();
4457   if (RequireCompleteType(Anon->getLocation(), RecTy,
4458                           diag::err_field_incomplete) ||
4459       InjectAnonymousStructOrUnionMembers(*this, S, CurContext, RecordDef,
4460                                           AS_none, Chain)) {
4461     Anon->setInvalidDecl();
4462     ParentDecl->setInvalidDecl();
4463   }
4464
4465   return Anon;
4466 }
4467
4468 /// GetNameForDeclarator - Determine the full declaration name for the
4469 /// given Declarator.
4470 DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
4471   return GetNameFromUnqualifiedId(D.getName());
4472 }
4473
4474 /// \brief Retrieves the declaration name from a parsed unqualified-id.
4475 DeclarationNameInfo
4476 Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
4477   DeclarationNameInfo NameInfo;
4478   NameInfo.setLoc(Name.StartLocation);
4479
4480   switch (Name.getKind()) {
4481
4482   case UnqualifiedId::IK_ImplicitSelfParam:
4483   case UnqualifiedId::IK_Identifier:
4484     NameInfo.setName(Name.Identifier);
4485     NameInfo.setLoc(Name.StartLocation);
4486     return NameInfo;
4487
4488   case UnqualifiedId::IK_OperatorFunctionId:
4489     NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
4490                                            Name.OperatorFunctionId.Operator));
4491     NameInfo.setLoc(Name.StartLocation);
4492     NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
4493       = Name.OperatorFunctionId.SymbolLocations[0];
4494     NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
4495       = Name.EndLocation.getRawEncoding();
4496     return NameInfo;
4497
4498   case UnqualifiedId::IK_LiteralOperatorId:
4499     NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
4500                                                            Name.Identifier));
4501     NameInfo.setLoc(Name.StartLocation);
4502     NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
4503     return NameInfo;
4504
4505   case UnqualifiedId::IK_ConversionFunctionId: {
4506     TypeSourceInfo *TInfo;
4507     QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
4508     if (Ty.isNull())
4509       return DeclarationNameInfo();
4510     NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
4511                                                Context.getCanonicalType(Ty)));
4512     NameInfo.setLoc(Name.StartLocation);
4513     NameInfo.setNamedTypeInfo(TInfo);
4514     return NameInfo;
4515   }
4516
4517   case UnqualifiedId::IK_ConstructorName: {
4518     TypeSourceInfo *TInfo;
4519     QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
4520     if (Ty.isNull())
4521       return DeclarationNameInfo();
4522     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4523                                               Context.getCanonicalType(Ty)));
4524     NameInfo.setLoc(Name.StartLocation);
4525     NameInfo.setNamedTypeInfo(TInfo);
4526     return NameInfo;
4527   }
4528
4529   case UnqualifiedId::IK_ConstructorTemplateId: {
4530     // In well-formed code, we can only have a constructor
4531     // template-id that refers to the current context, so go there
4532     // to find the actual type being constructed.
4533     CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
4534     if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
4535       return DeclarationNameInfo();
4536
4537     // Determine the type of the class being constructed.
4538     QualType CurClassType = Context.getTypeDeclType(CurClass);
4539
4540     // FIXME: Check two things: that the template-id names the same type as
4541     // CurClassType, and that the template-id does not occur when the name
4542     // was qualified.
4543
4544     NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
4545                                     Context.getCanonicalType(CurClassType)));
4546     NameInfo.setLoc(Name.StartLocation);
4547     // FIXME: should we retrieve TypeSourceInfo?
4548     NameInfo.setNamedTypeInfo(nullptr);
4549     return NameInfo;
4550   }
4551
4552   case UnqualifiedId::IK_DestructorName: {
4553     TypeSourceInfo *TInfo;
4554     QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
4555     if (Ty.isNull())
4556       return DeclarationNameInfo();
4557     NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
4558                                               Context.getCanonicalType(Ty)));
4559     NameInfo.setLoc(Name.StartLocation);
4560     NameInfo.setNamedTypeInfo(TInfo);
4561     return NameInfo;
4562   }
4563
4564   case UnqualifiedId::IK_TemplateId: {
4565     TemplateName TName = Name.TemplateId->Template.get();
4566     SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
4567     return Context.getNameForTemplate(TName, TNameLoc);
4568   }
4569
4570   } // switch (Name.getKind())
4571
4572   llvm_unreachable("Unknown name kind");
4573 }
4574
4575 static QualType getCoreType(QualType Ty) {
4576   do {
4577     if (Ty->isPointerType() || Ty->isReferenceType())
4578       Ty = Ty->getPointeeType();
4579     else if (Ty->isArrayType())
4580       Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
4581     else
4582       return Ty.withoutLocalFastQualifiers();
4583   } while (true);
4584 }
4585
4586 /// hasSimilarParameters - Determine whether the C++ functions Declaration
4587 /// and Definition have "nearly" matching parameters. This heuristic is
4588 /// used to improve diagnostics in the case where an out-of-line function
4589 /// definition doesn't match any declaration within the class or namespace.
4590 /// Also sets Params to the list of indices to the parameters that differ
4591 /// between the declaration and the definition. If hasSimilarParameters
4592 /// returns true and Params is empty, then all of the parameters match.
4593 static bool hasSimilarParameters(ASTContext &Context,
4594                                      FunctionDecl *Declaration,
4595                                      FunctionDecl *Definition,
4596                                      SmallVectorImpl<unsigned> &Params) {
4597   Params.clear();
4598   if (Declaration->param_size() != Definition->param_size())
4599     return false;
4600   for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
4601     QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
4602     QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
4603
4604     // The parameter types are identical
4605     if (Context.hasSameType(DefParamTy, DeclParamTy))
4606       continue;
4607
4608     QualType DeclParamBaseTy = getCoreType(DeclParamTy);
4609     QualType DefParamBaseTy = getCoreType(DefParamTy);
4610     const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
4611     const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
4612
4613     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
4614         (DeclTyName && DeclTyName == DefTyName))
4615       Params.push_back(Idx);
4616     else  // The two parameters aren't even close
4617       return false;
4618   }
4619
4620   return true;
4621 }
4622
4623 /// NeedsRebuildingInCurrentInstantiation - Checks whether the given
4624 /// declarator needs to be rebuilt in the current instantiation.
4625 /// Any bits of declarator which appear before the name are valid for
4626 /// consideration here.  That's specifically the type in the decl spec
4627 /// and the base type in any member-pointer chunks.
4628 static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
4629                                                     DeclarationName Name) {
4630   // The types we specifically need to rebuild are:
4631   //   - typenames, typeofs, and decltypes
4632   //   - types which will become injected class names
4633   // Of course, we also need to rebuild any type referencing such a
4634   // type.  It's safest to just say "dependent", but we call out a
4635   // few cases here.
4636
4637   DeclSpec &DS = D.getMutableDeclSpec();
4638   switch (DS.getTypeSpecType()) {
4639   case DeclSpec::TST_typename:
4640   case DeclSpec::TST_typeofType:
4641   case DeclSpec::TST_underlyingType:
4642   case DeclSpec::TST_atomic: {
4643     // Grab the type from the parser.
4644     TypeSourceInfo *TSI = nullptr;
4645     QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
4646     if (T.isNull() || !T->isDependentType()) break;
4647
4648     // Make sure there's a type source info.  This isn't really much
4649     // of a waste; most dependent types should have type source info
4650     // attached already.
4651     if (!TSI)
4652       TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
4653
4654     // Rebuild the type in the current instantiation.
4655     TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
4656     if (!TSI) return true;
4657
4658     // Store the new type back in the decl spec.
4659     ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
4660     DS.UpdateTypeRep(LocType);
4661     break;
4662   }
4663
4664   case DeclSpec::TST_decltype:
4665   case DeclSpec::TST_typeofExpr: {
4666     Expr *E = DS.getRepAsExpr();
4667     ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
4668     if (Result.isInvalid()) return true;
4669     DS.UpdateExprRep(Result.get());
4670     break;
4671   }
4672
4673   default:
4674     // Nothing to do for these decl specs.
4675     break;
4676   }
4677
4678   // It doesn't matter what order we do this in.
4679   for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
4680     DeclaratorChunk &Chunk = D.getTypeObject(I);
4681
4682     // The only type information in the declarator which can come
4683     // before the declaration name is the base type of a member
4684     // pointer.
4685     if (Chunk.Kind != DeclaratorChunk::MemberPointer)
4686       continue;
4687
4688     // Rebuild the scope specifier in-place.
4689     CXXScopeSpec &SS = Chunk.Mem.Scope();
4690     if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
4691       return true;
4692   }
4693
4694   return false;
4695 }
4696
4697 Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
4698   D.setFunctionDefinitionKind(FDK_Declaration);
4699   Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
4700
4701   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
4702       Dcl && Dcl->getDeclContext()->isFileContext())
4703     Dcl->setTopLevelDeclInObjCContainer();
4704
4705   return Dcl;
4706 }
4707
4708 /// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
4709 ///   If T is the name of a class, then each of the following shall have a 
4710 ///   name different from T:
4711 ///     - every static data member of class T;
4712 ///     - every member function of class T
4713 ///     - every member of class T that is itself a type;
4714 /// \returns true if the declaration name violates these rules.
4715 bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
4716                                    DeclarationNameInfo NameInfo) {
4717   DeclarationName Name = NameInfo.getName();
4718
4719   CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC);
4720   while (Record && Record->isAnonymousStructOrUnion())
4721     Record = dyn_cast<CXXRecordDecl>(Record->getParent());
4722   if (Record && Record->getIdentifier() && Record->getDeclName() == Name) {
4723     Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
4724     return true;
4725   }
4726
4727   return false;
4728 }
4729
4730 /// \brief Diagnose a declaration whose declarator-id has the given 
4731 /// nested-name-specifier.
4732 ///
4733 /// \param SS The nested-name-specifier of the declarator-id.
4734 ///
4735 /// \param DC The declaration context to which the nested-name-specifier 
4736 /// resolves.
4737 ///
4738 /// \param Name The name of the entity being declared.
4739 ///
4740 /// \param Loc The location of the name of the entity being declared.
4741 ///
4742 /// \returns true if we cannot safely recover from this error, false otherwise.
4743 bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
4744                                         DeclarationName Name,
4745                                         SourceLocation Loc) {
4746   DeclContext *Cur = CurContext;
4747   while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
4748     Cur = Cur->getParent();
4749
4750   // If the user provided a superfluous scope specifier that refers back to the
4751   // class in which the entity is already declared, diagnose and ignore it.
4752   //
4753   // class X {
4754   //   void X::f();
4755   // };
4756   //
4757   // Note, it was once ill-formed to give redundant qualification in all
4758   // contexts, but that rule was removed by DR482.
4759   if (Cur->Equals(DC)) {
4760     if (Cur->isRecord()) {
4761       Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
4762                                       : diag::err_member_extra_qualification)
4763         << Name << FixItHint::CreateRemoval(SS.getRange());
4764       SS.clear();
4765     } else {
4766       Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
4767     }
4768     return false;
4769   }
4770
4771   // Check whether the qualifying scope encloses the scope of the original
4772   // declaration.
4773   if (!Cur->Encloses(DC)) {
4774     if (Cur->isRecord())
4775       Diag(Loc, diag::err_member_qualification)
4776         << Name << SS.getRange();
4777     else if (isa<TranslationUnitDecl>(DC))
4778       Diag(Loc, diag::err_invalid_declarator_global_scope)
4779         << Name << SS.getRange();
4780     else if (isa<FunctionDecl>(Cur))
4781       Diag(Loc, diag::err_invalid_declarator_in_function) 
4782         << Name << SS.getRange();
4783     else if (isa<BlockDecl>(Cur))
4784       Diag(Loc, diag::err_invalid_declarator_in_block) 
4785         << Name << SS.getRange();
4786     else
4787       Diag(Loc, diag::err_invalid_declarator_scope)
4788       << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
4789     
4790     return true;
4791   }
4792
4793   if (Cur->isRecord()) {
4794     // Cannot qualify members within a class.
4795     Diag(Loc, diag::err_member_qualification)
4796       << Name << SS.getRange();
4797     SS.clear();
4798     
4799     // C++ constructors and destructors with incorrect scopes can break
4800     // our AST invariants by having the wrong underlying types. If
4801     // that's the case, then drop this declaration entirely.
4802     if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
4803          Name.getNameKind() == DeclarationName::CXXDestructorName) &&
4804         !Context.hasSameType(Name.getCXXNameType(),
4805                              Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
4806       return true;
4807     
4808     return false;
4809   }
4810   
4811   // C++11 [dcl.meaning]p1:
4812   //   [...] "The nested-name-specifier of the qualified declarator-id shall
4813   //   not begin with a decltype-specifer"
4814   NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
4815   while (SpecLoc.getPrefix())
4816     SpecLoc = SpecLoc.getPrefix();
4817   if (dyn_cast_or_null<DecltypeType>(
4818         SpecLoc.getNestedNameSpecifier()->getAsType()))
4819     Diag(Loc, diag::err_decltype_in_declarator)
4820       << SpecLoc.getTypeLoc().getSourceRange();
4821
4822   return false;
4823 }
4824
4825 NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
4826                                   MultiTemplateParamsArg TemplateParamLists) {
4827   // TODO: consider using NameInfo for diagnostic.
4828   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
4829   DeclarationName Name = NameInfo.getName();
4830
4831   // All of these full declarators require an identifier.  If it doesn't have
4832   // one, the ParsedFreeStandingDeclSpec action should be used.
4833   if (!Name) {
4834     if (!D.isInvalidType())  // Reject this if we think it is valid.
4835       Diag(D.getDeclSpec().getLocStart(),
4836            diag::err_declarator_need_ident)
4837         << D.getDeclSpec().getSourceRange() << D.getSourceRange();
4838     return nullptr;
4839   } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
4840     return nullptr;
4841
4842   // The scope passed in may not be a decl scope.  Zip up the scope tree until
4843   // we find one that is.
4844   while ((S->getFlags() & Scope::DeclScope) == 0 ||
4845          (S->getFlags() & Scope::TemplateParamScope) != 0)
4846     S = S->getParent();
4847
4848   DeclContext *DC = CurContext;
4849   if (D.getCXXScopeSpec().isInvalid())
4850     D.setInvalidType();
4851   else if (D.getCXXScopeSpec().isSet()) {
4852     if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(), 
4853                                         UPPC_DeclarationQualifier))
4854       return nullptr;
4855
4856     bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
4857     DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
4858     if (!DC || isa<EnumDecl>(DC)) {
4859       // If we could not compute the declaration context, it's because the
4860       // declaration context is dependent but does not refer to a class,
4861       // class template, or class template partial specialization. Complain
4862       // and return early, to avoid the coming semantic disaster.
4863       Diag(D.getIdentifierLoc(),
4864            diag::err_template_qualified_declarator_no_match)
4865         << D.getCXXScopeSpec().getScopeRep()
4866         << D.getCXXScopeSpec().getRange();
4867       return nullptr;
4868     }
4869     bool IsDependentContext = DC->isDependentContext();
4870
4871     if (!IsDependentContext && 
4872         RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
4873       return nullptr;
4874
4875     // If a class is incomplete, do not parse entities inside it.
4876     if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
4877       Diag(D.getIdentifierLoc(),
4878            diag::err_member_def_undefined_record)
4879         << Name << DC << D.getCXXScopeSpec().getRange();
4880       return nullptr;
4881     }
4882     if (!D.getDeclSpec().isFriendSpecified()) {
4883       if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
4884                                       Name, D.getIdentifierLoc())) {
4885         if (DC->isRecord())
4886           return nullptr;
4887
4888         D.setInvalidType();
4889       }
4890     }
4891
4892     // Check whether we need to rebuild the type of the given
4893     // declaration in the current instantiation.
4894     if (EnteringContext && IsDependentContext &&
4895         TemplateParamLists.size() != 0) {
4896       ContextRAII SavedContext(*this, DC);
4897       if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
4898         D.setInvalidType();
4899     }
4900   }
4901
4902   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
4903   QualType R = TInfo->getType();
4904
4905   if (!R->isFunctionType() && DiagnoseClassNameShadow(DC, NameInfo))
4906     // If this is a typedef, we'll end up spewing multiple diagnostics.
4907     // Just return early; it's safer. If this is a function, let the
4908     // "constructor cannot have a return type" diagnostic handle it.
4909     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
4910       return nullptr;
4911
4912   if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
4913                                       UPPC_DeclarationType))
4914     D.setInvalidType();
4915
4916   LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
4917                         ForRedeclaration);
4918
4919   // See if this is a redefinition of a variable in the same scope.
4920   if (!D.getCXXScopeSpec().isSet()) {
4921     bool IsLinkageLookup = false;
4922     bool CreateBuiltins = false;
4923
4924     // If the declaration we're planning to build will be a function
4925     // or object with linkage, then look for another declaration with
4926     // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
4927     //
4928     // If the declaration we're planning to build will be declared with
4929     // external linkage in the translation unit, create any builtin with
4930     // the same name.
4931     if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
4932       /* Do nothing*/;
4933     else if (CurContext->isFunctionOrMethod() &&
4934              (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
4935               R->isFunctionType())) {
4936       IsLinkageLookup = true;
4937       CreateBuiltins =
4938           CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
4939     } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
4940                D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
4941       CreateBuiltins = true;
4942
4943     if (IsLinkageLookup)
4944       Previous.clear(LookupRedeclarationWithLinkage);
4945
4946     LookupName(Previous, S, CreateBuiltins);
4947   } else { // Something like "int foo::x;"
4948     LookupQualifiedName(Previous, DC);
4949
4950     // C++ [dcl.meaning]p1:
4951     //   When the declarator-id is qualified, the declaration shall refer to a 
4952     //  previously declared member of the class or namespace to which the 
4953     //  qualifier refers (or, in the case of a namespace, of an element of the
4954     //  inline namespace set of that namespace (7.3.1)) or to a specialization
4955     //  thereof; [...] 
4956     //
4957     // Note that we already checked the context above, and that we do not have
4958     // enough information to make sure that Previous contains the declaration
4959     // we want to match. For example, given:
4960     //
4961     //   class X {
4962     //     void f();
4963     //     void f(float);
4964     //   };
4965     //
4966     //   void X::f(int) { } // ill-formed
4967     //
4968     // In this case, Previous will point to the overload set
4969     // containing the two f's declared in X, but neither of them
4970     // matches.
4971     
4972     // C++ [dcl.meaning]p1:
4973     //   [...] the member shall not merely have been introduced by a 
4974     //   using-declaration in the scope of the class or namespace nominated by 
4975     //   the nested-name-specifier of the declarator-id.
4976     RemoveUsingDecls(Previous);
4977   }
4978
4979   if (Previous.isSingleResult() &&
4980       Previous.getFoundDecl()->isTemplateParameter()) {
4981     // Maybe we will complain about the shadowed template parameter.
4982     if (!D.isInvalidType())
4983       DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
4984                                       Previous.getFoundDecl());
4985
4986     // Just pretend that we didn't see the previous declaration.
4987     Previous.clear();
4988   }
4989
4990   // In C++, the previous declaration we find might be a tag type
4991   // (class or enum). In this case, the new declaration will hide the
4992   // tag type. Note that this does does not apply if we're declaring a
4993   // typedef (C++ [dcl.typedef]p4).
4994   if (Previous.isSingleTagDecl() &&
4995       D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
4996     Previous.clear();
4997
4998   // Check that there are no default arguments other than in the parameters
4999   // of a function declaration (C++ only).
5000   if (getLangOpts().CPlusPlus)
5001     CheckExtraCXXDefaultArguments(D);
5002
5003   if (D.getDeclSpec().isConceptSpecified()) {
5004     // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
5005     // applied only to the definition of a function template or variable
5006     // template, declared in namespace scope
5007     if (!TemplateParamLists.size()) {
5008       Diag(D.getDeclSpec().getConceptSpecLoc(),
5009            diag:: err_concept_wrong_decl_kind);
5010       return nullptr;
5011     }
5012
5013     if (!DC->getRedeclContext()->isFileContext()) {
5014       Diag(D.getIdentifierLoc(),
5015            diag::err_concept_decls_may_only_appear_in_namespace_scope);
5016       return nullptr;
5017     }
5018   }
5019
5020   NamedDecl *New;
5021
5022   bool AddToScope = true;
5023   if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
5024     if (TemplateParamLists.size()) {
5025       Diag(D.getIdentifierLoc(), diag::err_template_typedef);
5026       return nullptr;
5027     }
5028
5029     New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
5030   } else if (R->isFunctionType()) {
5031     New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
5032                                   TemplateParamLists,
5033                                   AddToScope);
5034   } else {
5035     New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
5036                                   AddToScope);
5037   }
5038
5039   if (!New)
5040     return nullptr;
5041
5042   // If this has an identifier and is not an invalid redeclaration or 
5043   // function template specialization, add it to the scope stack.
5044   if (New->getDeclName() && AddToScope &&
5045        !(D.isRedeclaration() && New->isInvalidDecl())) {
5046     // Only make a locally-scoped extern declaration visible if it is the first
5047     // declaration of this entity. Qualified lookup for such an entity should
5048     // only find this declaration if there is no visible declaration of it.
5049     bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
5050     PushOnScopeChains(New, S, AddToContext);
5051     if (!AddToContext)
5052       CurContext->addHiddenDecl(New);
5053   }
5054
5055   return New;
5056 }
5057
5058 /// Helper method to turn variable array types into constant array
5059 /// types in certain situations which would otherwise be errors (for
5060 /// GCC compatibility).
5061 static QualType TryToFixInvalidVariablyModifiedType(QualType T,
5062                                                     ASTContext &Context,
5063                                                     bool &SizeIsNegative,
5064                                                     llvm::APSInt &Oversized) {
5065   // This method tries to turn a variable array into a constant
5066   // array even when the size isn't an ICE.  This is necessary
5067   // for compatibility with code that depends on gcc's buggy
5068   // constant expression folding, like struct {char x[(int)(char*)2];}
5069   SizeIsNegative = false;
5070   Oversized = 0;
5071   
5072   if (T->isDependentType())
5073     return QualType();
5074   
5075   QualifierCollector Qs;
5076   const Type *Ty = Qs.strip(T);
5077
5078   if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
5079     QualType Pointee = PTy->getPointeeType();
5080     QualType FixedType =
5081         TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
5082                                             Oversized);
5083     if (FixedType.isNull()) return FixedType;
5084     FixedType = Context.getPointerType(FixedType);
5085     return Qs.apply(Context, FixedType);
5086   }
5087   if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
5088     QualType Inner = PTy->getInnerType();
5089     QualType FixedType =
5090         TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
5091                                             Oversized);
5092     if (FixedType.isNull()) return FixedType;
5093     FixedType = Context.getParenType(FixedType);
5094     return Qs.apply(Context, FixedType);
5095   }
5096
5097   const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
5098   if (!VLATy)
5099     return QualType();
5100   // FIXME: We should probably handle this case
5101   if (VLATy->getElementType()->isVariablyModifiedType())
5102     return QualType();
5103
5104   llvm::APSInt Res;
5105   if (!VLATy->getSizeExpr() ||
5106       !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
5107     return QualType();
5108
5109   // Check whether the array size is negative.
5110   if (Res.isSigned() && Res.isNegative()) {
5111     SizeIsNegative = true;
5112     return QualType();
5113   }
5114
5115   // Check whether the array is too large to be addressed.
5116   unsigned ActiveSizeBits
5117     = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
5118                                               Res);
5119   if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
5120     Oversized = Res;
5121     return QualType();
5122   }
5123   
5124   return Context.getConstantArrayType(VLATy->getElementType(),
5125                                       Res, ArrayType::Normal, 0);
5126 }
5127
5128 static void
5129 FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
5130   SrcTL = SrcTL.getUnqualifiedLoc();
5131   DstTL = DstTL.getUnqualifiedLoc();
5132   if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
5133     PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
5134     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
5135                                       DstPTL.getPointeeLoc());
5136     DstPTL.setStarLoc(SrcPTL.getStarLoc());
5137     return;
5138   }
5139   if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
5140     ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
5141     FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
5142                                       DstPTL.getInnerLoc());
5143     DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
5144     DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
5145     return;
5146   }
5147   ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
5148   ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
5149   TypeLoc SrcElemTL = SrcATL.getElementLoc();
5150   TypeLoc DstElemTL = DstATL.getElementLoc();
5151   DstElemTL.initializeFullCopy(SrcElemTL);
5152   DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
5153   DstATL.setSizeExpr(SrcATL.getSizeExpr());
5154   DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
5155 }
5156
5157 /// Helper method to turn variable array types into constant array
5158 /// types in certain situations which would otherwise be errors (for
5159 /// GCC compatibility).
5160 static TypeSourceInfo*
5161 TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
5162                                               ASTContext &Context,
5163                                               bool &SizeIsNegative,
5164                                               llvm::APSInt &Oversized) {
5165   QualType FixedTy
5166     = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
5167                                           SizeIsNegative, Oversized);
5168   if (FixedTy.isNull())
5169     return nullptr;
5170   TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
5171   FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
5172                                     FixedTInfo->getTypeLoc());
5173   return FixedTInfo;
5174 }
5175
5176 /// \brief Register the given locally-scoped extern "C" declaration so
5177 /// that it can be found later for redeclarations. We include any extern "C"
5178 /// declaration that is not visible in the translation unit here, not just
5179 /// function-scope declarations.
5180 void
5181 Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
5182   if (!getLangOpts().CPlusPlus &&
5183       ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
5184     // Don't need to track declarations in the TU in C.
5185     return;
5186
5187   // Note that we have a locally-scoped external with this name.
5188   Context.getExternCContextDecl()->makeDeclVisibleInContext(ND);
5189 }
5190
5191 NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
5192   // FIXME: We can have multiple results via __attribute__((overloadable)).
5193   auto Result = Context.getExternCContextDecl()->lookup(Name);
5194   return Result.empty() ? nullptr : *Result.begin();
5195 }
5196
5197 /// \brief Diagnose function specifiers on a declaration of an identifier that
5198 /// does not identify a function.
5199 void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
5200   // FIXME: We should probably indicate the identifier in question to avoid
5201   // confusion for constructs like "inline int a(), b;"
5202   if (DS.isInlineSpecified())
5203     Diag(DS.getInlineSpecLoc(),
5204          diag::err_inline_non_function);
5205
5206   if (DS.isVirtualSpecified())
5207     Diag(DS.getVirtualSpecLoc(),
5208          diag::err_virtual_non_function);
5209
5210   if (DS.isExplicitSpecified())
5211     Diag(DS.getExplicitSpecLoc(),
5212          diag::err_explicit_non_function);
5213
5214   if (DS.isNoreturnSpecified())
5215     Diag(DS.getNoreturnSpecLoc(),
5216          diag::err_noreturn_non_function);
5217 }
5218
5219 NamedDecl*
5220 Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
5221                              TypeSourceInfo *TInfo, LookupResult &Previous) {
5222   // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
5223   if (D.getCXXScopeSpec().isSet()) {
5224     Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
5225       << D.getCXXScopeSpec().getRange();
5226     D.setInvalidType();
5227     // Pretend we didn't see the scope specifier.
5228     DC = CurContext;
5229     Previous.clear();
5230   }
5231
5232   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5233
5234   if (D.getDeclSpec().isConstexprSpecified())
5235     Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
5236       << 1;
5237   if (D.getDeclSpec().isConceptSpecified())
5238     Diag(D.getDeclSpec().getConceptSpecLoc(),
5239          diag::err_concept_wrong_decl_kind);
5240
5241   if (D.getName().Kind != UnqualifiedId::IK_Identifier) {
5242     Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
5243       << D.getName().getSourceRange();
5244     return nullptr;
5245   }
5246
5247   TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
5248   if (!NewTD) return nullptr;
5249
5250   // Handle attributes prior to checking for duplicates in MergeVarDecl
5251   ProcessDeclAttributes(S, NewTD, D);
5252
5253   CheckTypedefForVariablyModifiedType(S, NewTD);
5254
5255   bool Redeclaration = D.isRedeclaration();
5256   NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
5257   D.setRedeclaration(Redeclaration);
5258   return ND;
5259 }
5260
5261 void
5262 Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
5263   // C99 6.7.7p2: If a typedef name specifies a variably modified type
5264   // then it shall have block scope.
5265   // Note that variably modified types must be fixed before merging the decl so
5266   // that redeclarations will match.
5267   TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
5268   QualType T = TInfo->getType();
5269   if (T->isVariablyModifiedType()) {
5270     getCurFunction()->setHasBranchProtectedScope();
5271
5272     if (S->getFnParent() == nullptr) {
5273       bool SizeIsNegative;
5274       llvm::APSInt Oversized;
5275       TypeSourceInfo *FixedTInfo =
5276         TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5277                                                       SizeIsNegative,
5278                                                       Oversized);
5279       if (FixedTInfo) {
5280         Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
5281         NewTD->setTypeSourceInfo(FixedTInfo);
5282       } else {
5283         if (SizeIsNegative)
5284           Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
5285         else if (T->isVariableArrayType())
5286           Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
5287         else if (Oversized.getBoolValue())
5288           Diag(NewTD->getLocation(), diag::err_array_too_large) 
5289             << Oversized.toString(10);
5290         else
5291           Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
5292         NewTD->setInvalidDecl();
5293       }
5294     }
5295   }
5296 }
5297
5298 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
5299 /// declares a typedef-name, either using the 'typedef' type specifier or via
5300 /// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
5301 NamedDecl*
5302 Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
5303                            LookupResult &Previous, bool &Redeclaration) {
5304   // Merge the decl with the existing one if appropriate. If the decl is
5305   // in an outer scope, it isn't the same thing.
5306   FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
5307                        /*AllowInlineNamespace*/false);
5308   filterNonConflictingPreviousTypedefDecls(*this, NewTD, Previous);
5309   if (!Previous.empty()) {
5310     Redeclaration = true;
5311     MergeTypedefNameDecl(S, NewTD, Previous);
5312   }
5313
5314   // If this is the C FILE type, notify the AST context.
5315   if (IdentifierInfo *II = NewTD->getIdentifier())
5316     if (!NewTD->isInvalidDecl() &&
5317         NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5318       if (II->isStr("FILE"))
5319         Context.setFILEDecl(NewTD);
5320       else if (II->isStr("jmp_buf"))
5321         Context.setjmp_bufDecl(NewTD);
5322       else if (II->isStr("sigjmp_buf"))
5323         Context.setsigjmp_bufDecl(NewTD);
5324       else if (II->isStr("ucontext_t"))
5325         Context.setucontext_tDecl(NewTD);
5326     }
5327
5328   return NewTD;
5329 }
5330
5331 /// \brief Determines whether the given declaration is an out-of-scope
5332 /// previous declaration.
5333 ///
5334 /// This routine should be invoked when name lookup has found a
5335 /// previous declaration (PrevDecl) that is not in the scope where a
5336 /// new declaration by the same name is being introduced. If the new
5337 /// declaration occurs in a local scope, previous declarations with
5338 /// linkage may still be considered previous declarations (C99
5339 /// 6.2.2p4-5, C++ [basic.link]p6).
5340 ///
5341 /// \param PrevDecl the previous declaration found by name
5342 /// lookup
5343 ///
5344 /// \param DC the context in which the new declaration is being
5345 /// declared.
5346 ///
5347 /// \returns true if PrevDecl is an out-of-scope previous declaration
5348 /// for a new delcaration with the same name.
5349 static bool
5350 isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
5351                                 ASTContext &Context) {
5352   if (!PrevDecl)
5353     return false;
5354
5355   if (!PrevDecl->hasLinkage())
5356     return false;
5357
5358   if (Context.getLangOpts().CPlusPlus) {
5359     // C++ [basic.link]p6:
5360     //   If there is a visible declaration of an entity with linkage
5361     //   having the same name and type, ignoring entities declared
5362     //   outside the innermost enclosing namespace scope, the block
5363     //   scope declaration declares that same entity and receives the
5364     //   linkage of the previous declaration.
5365     DeclContext *OuterContext = DC->getRedeclContext();
5366     if (!OuterContext->isFunctionOrMethod())
5367       // This rule only applies to block-scope declarations.
5368       return false;
5369     
5370     DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
5371     if (PrevOuterContext->isRecord())
5372       // We found a member function: ignore it.
5373       return false;
5374     
5375     // Find the innermost enclosing namespace for the new and
5376     // previous declarations.
5377     OuterContext = OuterContext->getEnclosingNamespaceContext();
5378     PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
5379
5380     // The previous declaration is in a different namespace, so it
5381     // isn't the same function.
5382     if (!OuterContext->Equals(PrevOuterContext))
5383       return false;
5384   }
5385
5386   return true;
5387 }
5388
5389 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
5390   CXXScopeSpec &SS = D.getCXXScopeSpec();
5391   if (!SS.isSet()) return;
5392   DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
5393 }
5394
5395 bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
5396   QualType type = decl->getType();
5397   Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
5398   if (lifetime == Qualifiers::OCL_Autoreleasing) {
5399     // Various kinds of declaration aren't allowed to be __autoreleasing.
5400     unsigned kind = -1U;
5401     if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5402       if (var->hasAttr<BlocksAttr>())
5403         kind = 0; // __block
5404       else if (!var->hasLocalStorage())
5405         kind = 1; // global
5406     } else if (isa<ObjCIvarDecl>(decl)) {
5407       kind = 3; // ivar
5408     } else if (isa<FieldDecl>(decl)) {
5409       kind = 2; // field
5410     }
5411
5412     if (kind != -1U) {
5413       Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
5414         << kind;
5415     }
5416   } else if (lifetime == Qualifiers::OCL_None) {
5417     // Try to infer lifetime.
5418     if (!type->isObjCLifetimeType())
5419       return false;
5420
5421     lifetime = type->getObjCARCImplicitLifetime();
5422     type = Context.getLifetimeQualifiedType(type, lifetime);
5423     decl->setType(type);
5424   }
5425   
5426   if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
5427     // Thread-local variables cannot have lifetime.
5428     if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
5429         var->getTLSKind()) {
5430       Diag(var->getLocation(), diag::err_arc_thread_ownership)
5431         << var->getType();
5432       return true;
5433     }
5434   }
5435   
5436   return false;
5437 }
5438
5439 static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
5440   // Ensure that an auto decl is deduced otherwise the checks below might cache
5441   // the wrong linkage.
5442   assert(S.ParsingInitForAutoVars.count(&ND) == 0);
5443
5444   // 'weak' only applies to declarations with external linkage.
5445   if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
5446     if (!ND.isExternallyVisible()) {
5447       S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
5448       ND.dropAttr<WeakAttr>();
5449     }
5450   }
5451   if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
5452     if (ND.isExternallyVisible()) {
5453       S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
5454       ND.dropAttr<WeakRefAttr>();
5455       ND.dropAttr<AliasAttr>();
5456     }
5457   }
5458
5459   if (auto *VD = dyn_cast<VarDecl>(&ND)) {
5460     if (VD->hasInit()) {
5461       if (const auto *Attr = VD->getAttr<AliasAttr>()) {
5462         assert(VD->isThisDeclarationADefinition() &&
5463                !VD->isExternallyVisible() && "Broken AliasAttr handled late!");
5464         S.Diag(Attr->getLocation(), diag::err_alias_is_definition) << VD;
5465         VD->dropAttr<AliasAttr>();
5466       }
5467     }
5468   }
5469
5470   // 'selectany' only applies to externally visible variable declarations.
5471   // It does not apply to functions.
5472   if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
5473     if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
5474       S.Diag(Attr->getLocation(),
5475              diag::err_attribute_selectany_non_extern_data);
5476       ND.dropAttr<SelectAnyAttr>();
5477     }
5478   }
5479
5480   if (const InheritableAttr *Attr = getDLLAttr(&ND)) {
5481     // dll attributes require external linkage. Static locals may have external
5482     // linkage but still cannot be explicitly imported or exported.
5483     auto *VD = dyn_cast<VarDecl>(&ND);
5484     if (!ND.isExternallyVisible() || (VD && VD->isStaticLocal())) {
5485       S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
5486         << &ND << Attr;
5487       ND.setInvalidDecl();
5488     }
5489   }
5490
5491   // Virtual functions cannot be marked as 'notail'.
5492   if (auto *Attr = ND.getAttr<NotTailCalledAttr>())
5493     if (auto *MD = dyn_cast<CXXMethodDecl>(&ND))
5494       if (MD->isVirtual()) {
5495         S.Diag(ND.getLocation(),
5496                diag::err_invalid_attribute_on_virtual_function)
5497             << Attr;
5498         ND.dropAttr<NotTailCalledAttr>();
5499       }
5500 }
5501
5502 static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
5503                                            NamedDecl *NewDecl,
5504                                            bool IsSpecialization) {
5505   if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl))
5506     OldDecl = OldTD->getTemplatedDecl();
5507   if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl))
5508     NewDecl = NewTD->getTemplatedDecl();
5509
5510   if (!OldDecl || !NewDecl)
5511     return;
5512
5513   const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
5514   const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
5515   const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
5516   const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
5517
5518   // dllimport and dllexport are inheritable attributes so we have to exclude
5519   // inherited attribute instances.
5520   bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
5521                     (NewExportAttr && !NewExportAttr->isInherited());
5522
5523   // A redeclaration is not allowed to add a dllimport or dllexport attribute,
5524   // the only exception being explicit specializations.
5525   // Implicitly generated declarations are also excluded for now because there
5526   // is no other way to switch these to use dllimport or dllexport.
5527   bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
5528
5529   if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
5530     // Allow with a warning for free functions and global variables.
5531     bool JustWarn = false;
5532     if (!OldDecl->isCXXClassMember()) {
5533       auto *VD = dyn_cast<VarDecl>(OldDecl);
5534       if (VD && !VD->getDescribedVarTemplate())
5535         JustWarn = true;
5536       auto *FD = dyn_cast<FunctionDecl>(OldDecl);
5537       if (FD && FD->getTemplatedKind() == FunctionDecl::TK_NonTemplate)
5538         JustWarn = true;
5539     }
5540
5541     // We cannot change a declaration that's been used because IR has already
5542     // been emitted. Dllimported functions will still work though (modulo
5543     // address equality) as they can use the thunk.
5544     if (OldDecl->isUsed())
5545       if (!isa<FunctionDecl>(OldDecl) || !NewImportAttr)
5546         JustWarn = false;
5547
5548     unsigned DiagID = JustWarn ? diag::warn_attribute_dll_redeclaration
5549                                : diag::err_attribute_dll_redeclaration;
5550     S.Diag(NewDecl->getLocation(), DiagID)
5551         << NewDecl
5552         << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
5553     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
5554     if (!JustWarn) {
5555       NewDecl->setInvalidDecl();
5556       return;
5557     }
5558   }
5559
5560   // A redeclaration is not allowed to drop a dllimport attribute, the only
5561   // exceptions being inline function definitions, local extern declarations,
5562   // and qualified friend declarations.
5563   // NB: MSVC converts such a declaration to dllexport.
5564   bool IsInline = false, IsStaticDataMember = false, IsQualifiedFriend = false;
5565   if (const auto *VD = dyn_cast<VarDecl>(NewDecl))
5566     // Ignore static data because out-of-line definitions are diagnosed
5567     // separately.
5568     IsStaticDataMember = VD->isStaticDataMember();
5569   else if (const auto *FD = dyn_cast<FunctionDecl>(NewDecl)) {
5570     IsInline = FD->isInlined();
5571     IsQualifiedFriend = FD->getQualifier() &&
5572                         FD->getFriendObjectKind() == Decl::FOK_Declared;
5573   }
5574
5575   if (OldImportAttr && !HasNewAttr && !IsInline && !IsStaticDataMember &&
5576       !NewDecl->isLocalExternDecl() && !IsQualifiedFriend) {
5577     S.Diag(NewDecl->getLocation(),
5578            diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
5579       << NewDecl << OldImportAttr;
5580     S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
5581     S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
5582     OldDecl->dropAttr<DLLImportAttr>();
5583     NewDecl->dropAttr<DLLImportAttr>();
5584   } else if (IsInline && OldImportAttr &&
5585              !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
5586     // In MinGW, seeing a function declared inline drops the dllimport attribute.
5587     OldDecl->dropAttr<DLLImportAttr>();
5588     NewDecl->dropAttr<DLLImportAttr>();
5589     S.Diag(NewDecl->getLocation(),
5590            diag::warn_dllimport_dropped_from_inline_function)
5591         << NewDecl << OldImportAttr;
5592   }
5593 }
5594
5595 /// Given that we are within the definition of the given function,
5596 /// will that definition behave like C99's 'inline', where the
5597 /// definition is discarded except for optimization purposes?
5598 static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
5599   // Try to avoid calling GetGVALinkageForFunction.
5600
5601   // All cases of this require the 'inline' keyword.
5602   if (!FD->isInlined()) return false;
5603
5604   // This is only possible in C++ with the gnu_inline attribute.
5605   if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
5606     return false;
5607
5608   // Okay, go ahead and call the relatively-more-expensive function.
5609
5610 #ifndef NDEBUG
5611   // AST quite reasonably asserts that it's working on a function
5612   // definition.  We don't really have a way to tell it that we're
5613   // currently defining the function, so just lie to it in +Asserts
5614   // builds.  This is an awful hack.
5615   FD->setLazyBody(1);
5616 #endif
5617
5618   bool isC99Inline =
5619       S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
5620
5621 #ifndef NDEBUG
5622   FD->setLazyBody(0);
5623 #endif
5624
5625   return isC99Inline;
5626 }
5627
5628 /// Determine whether a variable is extern "C" prior to attaching
5629 /// an initializer. We can't just call isExternC() here, because that
5630 /// will also compute and cache whether the declaration is externally
5631 /// visible, which might change when we attach the initializer.
5632 ///
5633 /// This can only be used if the declaration is known to not be a
5634 /// redeclaration of an internal linkage declaration.
5635 ///
5636 /// For instance:
5637 ///
5638 ///   auto x = []{};
5639 ///
5640 /// Attaching the initializer here makes this declaration not externally
5641 /// visible, because its type has internal linkage.
5642 ///
5643 /// FIXME: This is a hack.
5644 template<typename T>
5645 static bool isIncompleteDeclExternC(Sema &S, const T *D) {
5646   if (S.getLangOpts().CPlusPlus) {
5647     // In C++, the overloadable attribute negates the effects of extern "C".
5648     if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
5649       return false;
5650
5651     // So do CUDA's host/device attributes if overloading is enabled.
5652     if (S.getLangOpts().CUDA && S.getLangOpts().CUDATargetOverloads &&
5653         (D->template hasAttr<CUDADeviceAttr>() ||
5654          D->template hasAttr<CUDAHostAttr>()))
5655       return false;
5656   }
5657   return D->isExternC();
5658 }
5659
5660 static bool shouldConsiderLinkage(const VarDecl *VD) {
5661   const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
5662   if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC))
5663     return VD->hasExternalStorage();
5664   if (DC->isFileContext())
5665     return true;
5666   if (DC->isRecord())
5667     return false;
5668   llvm_unreachable("Unexpected context");
5669 }
5670
5671 static bool shouldConsiderLinkage(const FunctionDecl *FD) {
5672   const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
5673   if (DC->isFileContext() || DC->isFunctionOrMethod() ||
5674       isa<OMPDeclareReductionDecl>(DC))
5675     return true;
5676   if (DC->isRecord())
5677     return false;
5678   llvm_unreachable("Unexpected context");
5679 }
5680
5681 static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
5682                           AttributeList::Kind Kind) {
5683   for (const AttributeList *L = AttrList; L; L = L->getNext())
5684     if (L->getKind() == Kind)
5685       return true;
5686   return false;
5687 }
5688
5689 static bool hasParsedAttr(Scope *S, const Declarator &PD,
5690                           AttributeList::Kind Kind) {
5691   // Check decl attributes on the DeclSpec.
5692   if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
5693     return true;
5694
5695   // Walk the declarator structure, checking decl attributes that were in a type
5696   // position to the decl itself.
5697   for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
5698     if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
5699       return true;
5700   }
5701
5702   // Finally, check attributes on the decl itself.
5703   return hasParsedAttr(S, PD.getAttributes(), Kind);
5704 }
5705
5706 /// Adjust the \c DeclContext for a function or variable that might be a
5707 /// function-local external declaration.
5708 bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
5709   if (!DC->isFunctionOrMethod())
5710     return false;
5711
5712   // If this is a local extern function or variable declared within a function
5713   // template, don't add it into the enclosing namespace scope until it is
5714   // instantiated; it might have a dependent type right now.
5715   if (DC->isDependentContext())
5716     return true;
5717
5718   // C++11 [basic.link]p7:
5719   //   When a block scope declaration of an entity with linkage is not found to
5720   //   refer to some other declaration, then that entity is a member of the
5721   //   innermost enclosing namespace.
5722   //
5723   // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
5724   // semantically-enclosing namespace, not a lexically-enclosing one.
5725   while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
5726     DC = DC->getParent();
5727   return true;
5728 }
5729
5730 /// \brief Returns true if given declaration has external C language linkage.
5731 static bool isDeclExternC(const Decl *D) {
5732   if (const auto *FD = dyn_cast<FunctionDecl>(D))
5733     return FD->isExternC();
5734   if (const auto *VD = dyn_cast<VarDecl>(D))
5735     return VD->isExternC();
5736
5737   llvm_unreachable("Unknown type of decl!");
5738 }
5739
5740 NamedDecl *
5741 Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
5742                               TypeSourceInfo *TInfo, LookupResult &Previous,
5743                               MultiTemplateParamsArg TemplateParamLists,
5744                               bool &AddToScope) {
5745   QualType R = TInfo->getType();
5746   DeclarationName Name = GetNameForDeclarator(D).getName();
5747
5748   // OpenCL v2.0 s6.9.b - Image type can only be used as a function argument.
5749   // OpenCL v2.0 s6.13.16.1 - Pipe type can only be used as a function
5750   // argument.
5751   if (getLangOpts().OpenCL && (R->isImageType() || R->isPipeType())) {
5752     Diag(D.getIdentifierLoc(),
5753          diag::err_opencl_type_can_only_be_used_as_function_parameter)
5754         << R;
5755     D.setInvalidType();
5756     return nullptr;
5757   }
5758
5759   DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
5760   StorageClass SC = StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
5761
5762   // dllimport globals without explicit storage class are treated as extern. We
5763   // have to change the storage class this early to get the right DeclContext.
5764   if (SC == SC_None && !DC->isRecord() &&
5765       hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
5766       !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
5767     SC = SC_Extern;
5768
5769   DeclContext *OriginalDC = DC;
5770   bool IsLocalExternDecl = SC == SC_Extern &&
5771                            adjustContextForLocalExternDecl(DC);
5772
5773   if (getLangOpts().OpenCL) {
5774     // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
5775     QualType NR = R;
5776     while (NR->isPointerType()) {
5777       if (NR->isFunctionPointerType()) {
5778         Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer_variable);
5779         D.setInvalidType();
5780         break;
5781       }
5782       NR = NR->getPointeeType();
5783     }
5784
5785     if (!getOpenCLOptions().cl_khr_fp16) {
5786       // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
5787       // half array type (unless the cl_khr_fp16 extension is enabled).
5788       if (Context.getBaseElementType(R)->isHalfType()) {
5789         Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
5790         D.setInvalidType();
5791       }
5792     }
5793   }
5794
5795   if (SCSpec == DeclSpec::SCS_mutable) {
5796     // mutable can only appear on non-static class members, so it's always
5797     // an error here
5798     Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
5799     D.setInvalidType();
5800     SC = SC_None;
5801   }
5802
5803   if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
5804       !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
5805                               D.getDeclSpec().getStorageClassSpecLoc())) {
5806     // In C++11, the 'register' storage class specifier is deprecated.
5807     // Suppress the warning in system macros, it's used in macros in some
5808     // popular C system headers, such as in glibc's htonl() macro.
5809     Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5810          getLangOpts().CPlusPlus1z ? diag::ext_register_storage_class
5811                                    : diag::warn_deprecated_register)
5812       << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5813   }
5814
5815   IdentifierInfo *II = Name.getAsIdentifierInfo();
5816   if (!II) {
5817     Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
5818       << Name;
5819     return nullptr;
5820   }
5821
5822   DiagnoseFunctionSpecifiers(D.getDeclSpec());
5823
5824   if (!DC->isRecord() && S->getFnParent() == nullptr) {
5825     // C99 6.9p2: The storage-class specifiers auto and register shall not
5826     // appear in the declaration specifiers in an external declaration.
5827     // Global Register+Asm is a GNU extension we support.
5828     if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
5829       Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
5830       D.setInvalidType();
5831     }
5832   }
5833
5834   if (getLangOpts().OpenCL) {
5835     // OpenCL v1.2 s6.9.b p4:
5836     // The sampler type cannot be used with the __local and __global address
5837     // space qualifiers.
5838     if (R->isSamplerT() && (R.getAddressSpace() == LangAS::opencl_local ||
5839       R.getAddressSpace() == LangAS::opencl_global)) {
5840       Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
5841     }
5842
5843     // OpenCL 1.2 spec, p6.9 r:
5844     // The event type cannot be used to declare a program scope variable.
5845     // The event type cannot be used with the __local, __constant and __global
5846     // address space qualifiers.
5847     if (R->isEventT()) {
5848       if (S->getParent() == nullptr) {
5849         Diag(D.getLocStart(), diag::err_event_t_global_var);
5850         D.setInvalidType();
5851       }
5852
5853       if (R.getAddressSpace()) {
5854         Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
5855         D.setInvalidType();
5856       }
5857     }
5858   }
5859
5860   bool IsExplicitSpecialization = false;
5861   bool IsVariableTemplateSpecialization = false;
5862   bool IsPartialSpecialization = false;
5863   bool IsVariableTemplate = false;
5864   VarDecl *NewVD = nullptr;
5865   VarTemplateDecl *NewTemplate = nullptr;
5866   TemplateParameterList *TemplateParams = nullptr;
5867   if (!getLangOpts().CPlusPlus) {
5868     NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
5869                             D.getIdentifierLoc(), II,
5870                             R, TInfo, SC);
5871
5872     if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType())
5873       ParsingInitForAutoVars.insert(NewVD);
5874
5875     if (D.isInvalidType())
5876       NewVD->setInvalidDecl();
5877   } else {
5878     bool Invalid = false;
5879
5880     if (DC->isRecord() && !CurContext->isRecord()) {
5881       // This is an out-of-line definition of a static data member.
5882       switch (SC) {
5883       case SC_None:
5884         break;
5885       case SC_Static:
5886         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5887              diag::err_static_out_of_line)
5888           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5889         break;
5890       case SC_Auto:
5891       case SC_Register:
5892       case SC_Extern:
5893         // [dcl.stc] p2: The auto or register specifiers shall be applied only
5894         // to names of variables declared in a block or to function parameters.
5895         // [dcl.stc] p6: The extern specifier cannot be used in the declaration
5896         // of class members
5897
5898         Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5899              diag::err_storage_class_for_static_member)
5900           << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5901         break;
5902       case SC_PrivateExtern:
5903         llvm_unreachable("C storage class in c++!");
5904       }
5905     }    
5906
5907     if (SC == SC_Static && CurContext->isRecord()) {
5908       if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
5909         if (RD->isLocalClass())
5910           Diag(D.getIdentifierLoc(),
5911                diag::err_static_data_member_not_allowed_in_local_class)
5912             << Name << RD->getDeclName();
5913
5914         // C++98 [class.union]p1: If a union contains a static data member,
5915         // the program is ill-formed. C++11 drops this restriction.
5916         if (RD->isUnion())
5917           Diag(D.getIdentifierLoc(),
5918                getLangOpts().CPlusPlus11
5919                  ? diag::warn_cxx98_compat_static_data_member_in_union
5920                  : diag::ext_static_data_member_in_union) << Name;
5921         // We conservatively disallow static data members in anonymous structs.
5922         else if (!RD->getDeclName())
5923           Diag(D.getIdentifierLoc(),
5924                diag::err_static_data_member_not_allowed_in_anon_struct)
5925             << Name << RD->isUnion();
5926       }
5927     }
5928
5929     // Match up the template parameter lists with the scope specifier, then
5930     // determine whether we have a template or a template specialization.
5931     TemplateParams = MatchTemplateParametersToScopeSpecifier(
5932         D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
5933         D.getCXXScopeSpec(),
5934         D.getName().getKind() == UnqualifiedId::IK_TemplateId
5935             ? D.getName().TemplateId
5936             : nullptr,
5937         TemplateParamLists,
5938         /*never a friend*/ false, IsExplicitSpecialization, Invalid);
5939
5940     if (TemplateParams) {
5941       if (!TemplateParams->size() &&
5942           D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
5943         // There is an extraneous 'template<>' for this variable. Complain
5944         // about it, but allow the declaration of the variable.
5945         Diag(TemplateParams->getTemplateLoc(),
5946              diag::err_template_variable_noparams)
5947           << II
5948           << SourceRange(TemplateParams->getTemplateLoc(),
5949                          TemplateParams->getRAngleLoc());
5950         TemplateParams = nullptr;
5951       } else {
5952         if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
5953           // This is an explicit specialization or a partial specialization.
5954           // FIXME: Check that we can declare a specialization here.
5955           IsVariableTemplateSpecialization = true;
5956           IsPartialSpecialization = TemplateParams->size() > 0;
5957         } else { // if (TemplateParams->size() > 0)
5958           // This is a template declaration.
5959           IsVariableTemplate = true;
5960
5961           // Check that we can declare a template here.
5962           if (CheckTemplateDeclScope(S, TemplateParams))
5963             return nullptr;
5964
5965           // Only C++1y supports variable templates (N3651).
5966           Diag(D.getIdentifierLoc(),
5967                getLangOpts().CPlusPlus14
5968                    ? diag::warn_cxx11_compat_variable_template
5969                    : diag::ext_variable_template);
5970         }
5971       }
5972     } else {
5973       assert(
5974           (Invalid || D.getName().getKind() != UnqualifiedId::IK_TemplateId) &&
5975           "should have a 'template<>' for this decl");
5976     }
5977
5978     if (IsVariableTemplateSpecialization) {
5979       SourceLocation TemplateKWLoc =
5980           TemplateParamLists.size() > 0
5981               ? TemplateParamLists[0]->getTemplateLoc()
5982               : SourceLocation();
5983       DeclResult Res = ActOnVarTemplateSpecialization(
5984           S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
5985           IsPartialSpecialization);
5986       if (Res.isInvalid())
5987         return nullptr;
5988       NewVD = cast<VarDecl>(Res.get());
5989       AddToScope = false;
5990     } else
5991       NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
5992                               D.getIdentifierLoc(), II, R, TInfo, SC);
5993
5994     // If this is supposed to be a variable template, create it as such.
5995     if (IsVariableTemplate) {
5996       NewTemplate =
5997           VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
5998                                   TemplateParams, NewVD);
5999       NewVD->setDescribedVarTemplate(NewTemplate);
6000     }
6001
6002     // If this decl has an auto type in need of deduction, make a note of the
6003     // Decl so we can diagnose uses of it in its own initializer.
6004     if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType())
6005       ParsingInitForAutoVars.insert(NewVD);
6006
6007     if (D.isInvalidType() || Invalid) {
6008       NewVD->setInvalidDecl();
6009       if (NewTemplate)
6010         NewTemplate->setInvalidDecl();
6011     }
6012
6013     SetNestedNameSpecifier(NewVD, D);
6014
6015     // If we have any template parameter lists that don't directly belong to
6016     // the variable (matching the scope specifier), store them.
6017     unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
6018     if (TemplateParamLists.size() > VDTemplateParamLists)
6019       NewVD->setTemplateParameterListsInfo(
6020           Context, TemplateParamLists.drop_back(VDTemplateParamLists));
6021
6022     if (D.getDeclSpec().isConstexprSpecified())
6023       NewVD->setConstexpr(true);
6024
6025     if (D.getDeclSpec().isConceptSpecified()) {
6026       if (VarTemplateDecl *VTD = NewVD->getDescribedVarTemplate())
6027         VTD->setConcept();
6028
6029       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
6030       // be declared with the thread_local, inline, friend, or constexpr
6031       // specifiers, [...]
6032       if (D.getDeclSpec().getThreadStorageClassSpec() == TSCS_thread_local) {
6033         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6034              diag::err_concept_decl_invalid_specifiers)
6035             << 0 << 0;
6036         NewVD->setInvalidDecl(true);
6037       }
6038
6039       if (D.getDeclSpec().isConstexprSpecified()) {
6040         Diag(D.getDeclSpec().getConstexprSpecLoc(),
6041              diag::err_concept_decl_invalid_specifiers)
6042             << 0 << 3;
6043         NewVD->setInvalidDecl(true);
6044       }
6045
6046       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
6047       // applied only to the definition of a function template or variable
6048       // template, declared in namespace scope.
6049       if (IsVariableTemplateSpecialization) {
6050         Diag(D.getDeclSpec().getConceptSpecLoc(),
6051              diag::err_concept_specified_specialization)
6052             << (IsPartialSpecialization ? 2 : 1);
6053       }
6054
6055       // C++ Concepts TS [dcl.spec.concept]p6: A variable concept has the
6056       // following restrictions:
6057       // - The declared type shall have the type bool.
6058       if (!Context.hasSameType(NewVD->getType(), Context.BoolTy) &&
6059           !NewVD->isInvalidDecl()) {
6060         Diag(D.getIdentifierLoc(), diag::err_variable_concept_bool_decl);
6061         NewVD->setInvalidDecl(true);
6062       }
6063     }
6064   }
6065
6066   // Set the lexical context. If the declarator has a C++ scope specifier, the
6067   // lexical context will be different from the semantic context.
6068   NewVD->setLexicalDeclContext(CurContext);
6069   if (NewTemplate)
6070     NewTemplate->setLexicalDeclContext(CurContext);
6071
6072   if (IsLocalExternDecl)
6073     NewVD->setLocalExternDecl();
6074
6075   bool EmitTLSUnsupportedError = false;
6076   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
6077     // C++11 [dcl.stc]p4:
6078     //   When thread_local is applied to a variable of block scope the
6079     //   storage-class-specifier static is implied if it does not appear
6080     //   explicitly.
6081     // Core issue: 'static' is not implied if the variable is declared
6082     //   'extern'.
6083     if (NewVD->hasLocalStorage() &&
6084         (SCSpec != DeclSpec::SCS_unspecified ||
6085          TSCS != DeclSpec::TSCS_thread_local ||
6086          !DC->isFunctionOrMethod()))
6087       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6088            diag::err_thread_non_global)
6089         << DeclSpec::getSpecifierName(TSCS);
6090     else if (!Context.getTargetInfo().isTLSSupported()) {
6091       if (getLangOpts().CUDA) {
6092         // Postpone error emission until we've collected attributes required to
6093         // figure out whether it's a host or device variable and whether the
6094         // error should be ignored.
6095         EmitTLSUnsupportedError = true;
6096         // We still need to mark the variable as TLS so it shows up in AST with
6097         // proper storage class for other tools to use even if we're not going
6098         // to emit any code for it.
6099         NewVD->setTSCSpec(TSCS);
6100       } else
6101         Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6102              diag::err_thread_unsupported);
6103     } else
6104       NewVD->setTSCSpec(TSCS);
6105   }
6106
6107   // C99 6.7.4p3
6108   //   An inline definition of a function with external linkage shall
6109   //   not contain a definition of a modifiable object with static or
6110   //   thread storage duration...
6111   // We only apply this when the function is required to be defined
6112   // elsewhere, i.e. when the function is not 'extern inline'.  Note
6113   // that a local variable with thread storage duration still has to
6114   // be marked 'static'.  Also note that it's possible to get these
6115   // semantics in C++ using __attribute__((gnu_inline)).
6116   if (SC == SC_Static && S->getFnParent() != nullptr &&
6117       !NewVD->getType().isConstQualified()) {
6118     FunctionDecl *CurFD = getCurFunctionDecl();
6119     if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
6120       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6121            diag::warn_static_local_in_extern_inline);
6122       MaybeSuggestAddingStaticToDecl(CurFD);
6123     }
6124   }
6125
6126   if (D.getDeclSpec().isModulePrivateSpecified()) {
6127     if (IsVariableTemplateSpecialization)
6128       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6129           << (IsPartialSpecialization ? 1 : 0)
6130           << FixItHint::CreateRemoval(
6131                  D.getDeclSpec().getModulePrivateSpecLoc());
6132     else if (IsExplicitSpecialization)
6133       Diag(NewVD->getLocation(), diag::err_module_private_specialization)
6134         << 2
6135         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6136     else if (NewVD->hasLocalStorage())
6137       Diag(NewVD->getLocation(), diag::err_module_private_local)
6138         << 0 << NewVD->getDeclName()
6139         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
6140         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
6141     else {
6142       NewVD->setModulePrivate();
6143       if (NewTemplate)
6144         NewTemplate->setModulePrivate();
6145     }
6146   }
6147
6148   // Handle attributes prior to checking for duplicates in MergeVarDecl
6149   ProcessDeclAttributes(S, NewVD, D);
6150
6151   if (getLangOpts().CUDA) {
6152     if (EmitTLSUnsupportedError && DeclAttrsMatchCUDAMode(getLangOpts(), NewVD))
6153       Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6154            diag::err_thread_unsupported);
6155     // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
6156     // storage [duration]."
6157     if (SC == SC_None && S->getFnParent() != nullptr &&
6158         (NewVD->hasAttr<CUDASharedAttr>() ||
6159          NewVD->hasAttr<CUDAConstantAttr>())) {
6160       NewVD->setStorageClass(SC_Static);
6161     }
6162   }
6163
6164   // Ensure that dllimport globals without explicit storage class are treated as
6165   // extern. The storage class is set above using parsed attributes. Now we can
6166   // check the VarDecl itself.
6167   assert(!NewVD->hasAttr<DLLImportAttr>() ||
6168          NewVD->getAttr<DLLImportAttr>()->isInherited() ||
6169          NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
6170
6171   // In auto-retain/release, infer strong retension for variables of
6172   // retainable type.
6173   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
6174     NewVD->setInvalidDecl();
6175
6176   // Handle GNU asm-label extension (encoded as an attribute).
6177   if (Expr *E = (Expr*)D.getAsmLabel()) {
6178     // The parser guarantees this is a string.
6179     StringLiteral *SE = cast<StringLiteral>(E);
6180     StringRef Label = SE->getString();
6181     if (S->getFnParent() != nullptr) {
6182       switch (SC) {
6183       case SC_None:
6184       case SC_Auto:
6185         Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
6186         break;
6187       case SC_Register:
6188         // Local Named register
6189         if (!Context.getTargetInfo().isValidGCCRegisterName(Label) &&
6190             DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl()))
6191           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6192         break;
6193       case SC_Static:
6194       case SC_Extern:
6195       case SC_PrivateExtern:
6196         break;
6197       }
6198     } else if (SC == SC_Register) {
6199       // Global Named register
6200       if (DeclAttrsMatchCUDAMode(getLangOpts(), NewVD)) {
6201         const auto &TI = Context.getTargetInfo();
6202         bool HasSizeMismatch;
6203
6204         if (!TI.isValidGCCRegisterName(Label))
6205           Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
6206         else if (!TI.validateGlobalRegisterVariable(Label,
6207                                                     Context.getTypeSize(R),
6208                                                     HasSizeMismatch))
6209           Diag(E->getExprLoc(), diag::err_asm_invalid_global_var_reg) << Label;
6210         else if (HasSizeMismatch)
6211           Diag(E->getExprLoc(), diag::err_asm_register_size_mismatch) << Label;
6212       }
6213
6214       if (!R->isIntegralType(Context) && !R->isPointerType()) {
6215         Diag(D.getLocStart(), diag::err_asm_bad_register_type);
6216         NewVD->setInvalidDecl(true);
6217       }
6218     }
6219
6220     NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
6221                                                 Context, Label, 0));
6222   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6223     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6224       ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
6225     if (I != ExtnameUndeclaredIdentifiers.end()) {
6226       if (isDeclExternC(NewVD)) {
6227         NewVD->addAttr(I->second);
6228         ExtnameUndeclaredIdentifiers.erase(I);
6229       } else
6230         Diag(NewVD->getLocation(), diag::warn_redefine_extname_not_applied)
6231             << /*Variable*/1 << NewVD;
6232     }
6233   }
6234
6235   // Diagnose shadowed variables before filtering for scope.
6236   if (D.getCXXScopeSpec().isEmpty())
6237     CheckShadow(S, NewVD, Previous);
6238
6239   // Don't consider existing declarations that are in a different
6240   // scope and are out-of-semantic-context declarations (if the new
6241   // declaration has linkage).
6242   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
6243                        D.getCXXScopeSpec().isNotEmpty() ||
6244                        IsExplicitSpecialization ||
6245                        IsVariableTemplateSpecialization);
6246
6247   // Check whether the previous declaration is in the same block scope. This
6248   // affects whether we merge types with it, per C++11 [dcl.array]p3.
6249   if (getLangOpts().CPlusPlus &&
6250       NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
6251     NewVD->setPreviousDeclInSameBlockScope(
6252         Previous.isSingleResult() && !Previous.isShadowed() &&
6253         isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
6254
6255   if (!getLangOpts().CPlusPlus) {
6256     D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6257   } else {
6258     // If this is an explicit specialization of a static data member, check it.
6259     if (IsExplicitSpecialization && !NewVD->isInvalidDecl() &&
6260         CheckMemberSpecialization(NewVD, Previous))
6261       NewVD->setInvalidDecl();
6262
6263     // Merge the decl with the existing one if appropriate.
6264     if (!Previous.empty()) {
6265       if (Previous.isSingleResult() &&
6266           isa<FieldDecl>(Previous.getFoundDecl()) &&
6267           D.getCXXScopeSpec().isSet()) {
6268         // The user tried to define a non-static data member
6269         // out-of-line (C++ [dcl.meaning]p1).
6270         Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
6271           << D.getCXXScopeSpec().getRange();
6272         Previous.clear();
6273         NewVD->setInvalidDecl();
6274       }
6275     } else if (D.getCXXScopeSpec().isSet()) {
6276       // No previous declaration in the qualifying scope.
6277       Diag(D.getIdentifierLoc(), diag::err_no_member)
6278         << Name << computeDeclContext(D.getCXXScopeSpec(), true)
6279         << D.getCXXScopeSpec().getRange();
6280       NewVD->setInvalidDecl();
6281     }
6282
6283     if (!IsVariableTemplateSpecialization)
6284       D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
6285
6286     if (NewTemplate) {
6287       VarTemplateDecl *PrevVarTemplate =
6288           NewVD->getPreviousDecl()
6289               ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
6290               : nullptr;
6291
6292       // Check the template parameter list of this declaration, possibly
6293       // merging in the template parameter list from the previous variable
6294       // template declaration.
6295       if (CheckTemplateParameterList(
6296               TemplateParams,
6297               PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
6298                               : nullptr,
6299               (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
6300                DC->isDependentContext())
6301                   ? TPC_ClassTemplateMember
6302                   : TPC_VarTemplate))
6303         NewVD->setInvalidDecl();
6304
6305       // If we are providing an explicit specialization of a static variable
6306       // template, make a note of that.
6307       if (PrevVarTemplate &&
6308           PrevVarTemplate->getInstantiatedFromMemberTemplate())
6309         PrevVarTemplate->setMemberSpecialization();
6310     }
6311   }
6312
6313   ProcessPragmaWeak(S, NewVD);
6314
6315   // If this is the first declaration of an extern C variable, update
6316   // the map of such variables.
6317   if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
6318       isIncompleteDeclExternC(*this, NewVD))
6319     RegisterLocallyScopedExternCDecl(NewVD, S);
6320
6321   if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
6322     Decl *ManglingContextDecl;
6323     if (MangleNumberingContext *MCtx = getCurrentMangleNumberContext(
6324             NewVD->getDeclContext(), ManglingContextDecl)) {
6325       Context.setManglingNumber(
6326           NewVD, MCtx->getManglingNumber(
6327                      NewVD, getMSManglingNumber(getLangOpts(), S)));
6328       Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
6329     }
6330   }
6331
6332   // Special handling of variable named 'main'.
6333   if (Name.isIdentifier() && Name.getAsIdentifierInfo()->isStr("main") &&
6334       NewVD->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
6335       !getLangOpts().Freestanding && !NewVD->getDescribedVarTemplate()) {
6336
6337     // C++ [basic.start.main]p3
6338     // A program that declares a variable main at global scope is ill-formed.
6339     if (getLangOpts().CPlusPlus)
6340       Diag(D.getLocStart(), diag::err_main_global_variable);
6341
6342     // In C, and external-linkage variable named main results in undefined
6343     // behavior.
6344     else if (NewVD->hasExternalFormalLinkage())
6345       Diag(D.getLocStart(), diag::warn_main_redefined);
6346   }
6347
6348   if (D.isRedeclaration() && !Previous.empty()) {
6349     checkDLLAttributeRedeclaration(
6350         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD,
6351         IsExplicitSpecialization);
6352   }
6353
6354   if (NewTemplate) {
6355     if (NewVD->isInvalidDecl())
6356       NewTemplate->setInvalidDecl();
6357     ActOnDocumentableDecl(NewTemplate);
6358     return NewTemplate;
6359   }
6360
6361   return NewVD;
6362 }
6363
6364 /// \brief Diagnose variable or built-in function shadowing.  Implements
6365 /// -Wshadow.
6366 ///
6367 /// This method is called whenever a VarDecl is added to a "useful"
6368 /// scope.
6369 ///
6370 /// \param S the scope in which the shadowing name is being declared
6371 /// \param R the lookup of the name
6372 ///
6373 void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) {
6374   // Return if warning is ignored.
6375   if (Diags.isIgnored(diag::warn_decl_shadow, R.getNameLoc()))
6376     return;
6377
6378   // Don't diagnose declarations at file scope.
6379   if (D->hasGlobalStorage())
6380     return;
6381
6382   DeclContext *NewDC = D->getDeclContext();
6383
6384   // Only diagnose if we're shadowing an unambiguous field or variable.
6385   if (R.getResultKind() != LookupResult::Found)
6386     return;
6387
6388   NamedDecl* ShadowedDecl = R.getFoundDecl();
6389   if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl))
6390     return;
6391
6392   // Fields are not shadowed by variables in C++ static methods.
6393   if (isa<FieldDecl>(ShadowedDecl))
6394     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
6395       if (MD->isStatic())
6396         return;
6397
6398   if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
6399     if (shadowedVar->isExternC()) {
6400       // For shadowing external vars, make sure that we point to the global
6401       // declaration, not a locally scoped extern declaration.
6402       for (auto I : shadowedVar->redecls())
6403         if (I->isFileVarDecl()) {
6404           ShadowedDecl = I;
6405           break;
6406         }
6407     }
6408
6409   DeclContext *OldDC = ShadowedDecl->getDeclContext();
6410
6411   // Only warn about certain kinds of shadowing for class members.
6412   if (NewDC && NewDC->isRecord()) {
6413     // In particular, don't warn about shadowing non-class members.
6414     if (!OldDC->isRecord())
6415       return;
6416
6417     // TODO: should we warn about static data members shadowing
6418     // static data members from base classes?
6419     
6420     // TODO: don't diagnose for inaccessible shadowed members.
6421     // This is hard to do perfectly because we might friend the
6422     // shadowing context, but that's just a false negative.
6423   }
6424
6425   // Determine what kind of declaration we're shadowing.
6426   unsigned Kind;
6427   if (isa<RecordDecl>(OldDC)) {
6428     if (isa<FieldDecl>(ShadowedDecl))
6429       Kind = 3; // field
6430     else
6431       Kind = 2; // static data member
6432   } else if (OldDC->isFileContext())
6433     Kind = 1; // global
6434   else
6435     Kind = 0; // local
6436
6437   DeclarationName Name = R.getLookupName();
6438
6439   // Emit warning and note.
6440   if (getSourceManager().isInSystemMacro(R.getNameLoc()))
6441     return;
6442   Diag(R.getNameLoc(), diag::warn_decl_shadow) << Name << Kind << OldDC;
6443   Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
6444 }
6445
6446 /// \brief Check -Wshadow without the advantage of a previous lookup.
6447 void Sema::CheckShadow(Scope *S, VarDecl *D) {
6448   if (Diags.isIgnored(diag::warn_decl_shadow, D->getLocation()))
6449     return;
6450
6451   LookupResult R(*this, D->getDeclName(), D->getLocation(),
6452                  Sema::LookupOrdinaryName, Sema::ForRedeclaration);
6453   LookupName(R, S);
6454   CheckShadow(S, D, R);
6455 }
6456
6457 /// Check for conflict between this global or extern "C" declaration and
6458 /// previous global or extern "C" declarations. This is only used in C++.
6459 template<typename T>
6460 static bool checkGlobalOrExternCConflict(
6461     Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
6462   assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
6463   NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
6464
6465   if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
6466     // The common case: this global doesn't conflict with any extern "C"
6467     // declaration.
6468     return false;
6469   }
6470
6471   if (Prev) {
6472     if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
6473       // Both the old and new declarations have C language linkage. This is a
6474       // redeclaration.
6475       Previous.clear();
6476       Previous.addDecl(Prev);
6477       return true;
6478     }
6479
6480     // This is a global, non-extern "C" declaration, and there is a previous
6481     // non-global extern "C" declaration. Diagnose if this is a variable
6482     // declaration.
6483     if (!isa<VarDecl>(ND))
6484       return false;
6485   } else {
6486     // The declaration is extern "C". Check for any declaration in the
6487     // translation unit which might conflict.
6488     if (IsGlobal) {
6489       // We have already performed the lookup into the translation unit.
6490       IsGlobal = false;
6491       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6492            I != E; ++I) {
6493         if (isa<VarDecl>(*I)) {
6494           Prev = *I;
6495           break;
6496         }
6497       }
6498     } else {
6499       DeclContext::lookup_result R =
6500           S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
6501       for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
6502            I != E; ++I) {
6503         if (isa<VarDecl>(*I)) {
6504           Prev = *I;
6505           break;
6506         }
6507         // FIXME: If we have any other entity with this name in global scope,
6508         // the declaration is ill-formed, but that is a defect: it breaks the
6509         // 'stat' hack, for instance. Only variables can have mangled name
6510         // clashes with extern "C" declarations, so only they deserve a
6511         // diagnostic.
6512       }
6513     }
6514
6515     if (!Prev)
6516       return false;
6517   }
6518
6519   // Use the first declaration's location to ensure we point at something which
6520   // is lexically inside an extern "C" linkage-spec.
6521   assert(Prev && "should have found a previous declaration to diagnose");
6522   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
6523     Prev = FD->getFirstDecl();
6524   else
6525     Prev = cast<VarDecl>(Prev)->getFirstDecl();
6526
6527   S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
6528     << IsGlobal << ND;
6529   S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
6530     << IsGlobal;
6531   return false;
6532 }
6533
6534 /// Apply special rules for handling extern "C" declarations. Returns \c true
6535 /// if we have found that this is a redeclaration of some prior entity.
6536 ///
6537 /// Per C++ [dcl.link]p6:
6538 ///   Two declarations [for a function or variable] with C language linkage
6539 ///   with the same name that appear in different scopes refer to the same
6540 ///   [entity]. An entity with C language linkage shall not be declared with
6541 ///   the same name as an entity in global scope.
6542 template<typename T>
6543 static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
6544                                                   LookupResult &Previous) {
6545   if (!S.getLangOpts().CPlusPlus) {
6546     // In C, when declaring a global variable, look for a corresponding 'extern'
6547     // variable declared in function scope. We don't need this in C++, because
6548     // we find local extern decls in the surrounding file-scope DeclContext.
6549     if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
6550       if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
6551         Previous.clear();
6552         Previous.addDecl(Prev);
6553         return true;
6554       }
6555     }
6556     return false;
6557   }
6558
6559   // A declaration in the translation unit can conflict with an extern "C"
6560   // declaration.
6561   if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
6562     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
6563
6564   // An extern "C" declaration can conflict with a declaration in the
6565   // translation unit or can be a redeclaration of an extern "C" declaration
6566   // in another scope.
6567   if (isIncompleteDeclExternC(S,ND))
6568     return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
6569
6570   // Neither global nor extern "C": nothing to do.
6571   return false;
6572 }
6573
6574 void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
6575   // If the decl is already known invalid, don't check it.
6576   if (NewVD->isInvalidDecl())
6577     return;
6578
6579   TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
6580   QualType T = TInfo->getType();
6581
6582   // Defer checking an 'auto' type until its initializer is attached.
6583   if (T->isUndeducedType())
6584     return;
6585
6586   if (NewVD->hasAttrs())
6587     CheckAlignasUnderalignment(NewVD);
6588
6589   if (T->isObjCObjectType()) {
6590     Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
6591       << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
6592     T = Context.getObjCObjectPointerType(T);
6593     NewVD->setType(T);
6594   }
6595
6596   // Emit an error if an address space was applied to decl with local storage.
6597   // This includes arrays of objects with address space qualifiers, but not
6598   // automatic variables that point to other address spaces.
6599   // ISO/IEC TR 18037 S5.1.2
6600   if (!getLangOpts().OpenCL
6601       && NewVD->hasLocalStorage() && T.getAddressSpace() != 0) {
6602     Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl);
6603     NewVD->setInvalidDecl();
6604     return;
6605   }
6606
6607   // OpenCL v1.2 s6.8 - The static qualifier is valid only in program
6608   // scope.
6609   if (getLangOpts().OpenCLVersion == 120 &&
6610       !getOpenCLOptions().cl_clang_storage_class_specifiers &&
6611       NewVD->isStaticLocal()) {
6612     Diag(NewVD->getLocation(), diag::err_static_function_scope);
6613     NewVD->setInvalidDecl();
6614     return;
6615   }
6616
6617   if (getLangOpts().OpenCL) {
6618     // OpenCL v2.0 s6.12.5 - The __block storage type is not supported.
6619     if (NewVD->hasAttr<BlocksAttr>()) {
6620       Diag(NewVD->getLocation(), diag::err_opencl_block_storage_type);
6621       return;
6622     }
6623
6624     if (T->isBlockPointerType()) {
6625       // OpenCL v2.0 s6.12.5 - Any block declaration must be const qualified and
6626       // can't use 'extern' storage class.
6627       if (!T.isConstQualified()) {
6628         Diag(NewVD->getLocation(), diag::err_opencl_invalid_block_declaration)
6629             << 0 /*const*/;
6630         NewVD->setInvalidDecl();
6631         return;
6632       }
6633       if (NewVD->hasExternalStorage()) {
6634         Diag(NewVD->getLocation(), diag::err_opencl_extern_block_declaration);
6635         NewVD->setInvalidDecl();
6636         return;
6637       }
6638       // OpenCL v2.0 s6.12.5 - Blocks with variadic arguments are not supported.
6639       // TODO: this check is not enough as it doesn't diagnose the typedef
6640       const BlockPointerType *BlkTy = T->getAs<BlockPointerType>();
6641       const FunctionProtoType *FTy =
6642           BlkTy->getPointeeType()->getAs<FunctionProtoType>();
6643       if (FTy && FTy->isVariadic()) {
6644         Diag(NewVD->getLocation(), diag::err_opencl_block_proto_variadic)
6645             << T << NewVD->getSourceRange();
6646         NewVD->setInvalidDecl();
6647         return;
6648       }
6649     }
6650     // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
6651     // __constant address space.
6652     // OpenCL v2.0 s6.5.1 - Variables defined at program scope and static
6653     // variables inside a function can also be declared in the global
6654     // address space.
6655     if (NewVD->isFileVarDecl() || NewVD->isStaticLocal() ||
6656         NewVD->hasExternalStorage()) {
6657       if (!T->isSamplerT() &&
6658           !(T.getAddressSpace() == LangAS::opencl_constant ||
6659             (T.getAddressSpace() == LangAS::opencl_global &&
6660              getLangOpts().OpenCLVersion == 200))) {
6661         int Scope = NewVD->isStaticLocal() | NewVD->hasExternalStorage() << 1;
6662         if (getLangOpts().OpenCLVersion == 200)
6663           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
6664               << Scope << "global or constant";
6665         else
6666           Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space)
6667               << Scope << "constant";
6668         NewVD->setInvalidDecl();
6669         return;
6670       }
6671     } else {
6672       if (T.getAddressSpace() == LangAS::opencl_global) {
6673         Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6674             << 1 /*is any function*/ << "global";
6675         NewVD->setInvalidDecl();
6676         return;
6677       }
6678       // OpenCL v1.1 s6.5.2 and s6.5.3 no local or constant variables
6679       // in functions.
6680       if (T.getAddressSpace() == LangAS::opencl_constant ||
6681           T.getAddressSpace() == LangAS::opencl_local) {
6682         FunctionDecl *FD = getCurFunctionDecl();
6683         if (FD && !FD->hasAttr<OpenCLKernelAttr>()) {
6684           if (T.getAddressSpace() == LangAS::opencl_constant)
6685             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6686                 << 0 /*non-kernel only*/ << "constant";
6687           else
6688             Diag(NewVD->getLocation(), diag::err_opencl_function_variable)
6689                 << 0 /*non-kernel only*/ << "local";
6690           NewVD->setInvalidDecl();
6691           return;
6692         }
6693       }
6694     }
6695   }
6696
6697   if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
6698       && !NewVD->hasAttr<BlocksAttr>()) {
6699     if (getLangOpts().getGC() != LangOptions::NonGC)
6700       Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
6701     else {
6702       assert(!getLangOpts().ObjCAutoRefCount);
6703       Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
6704     }
6705   }
6706   
6707   bool isVM = T->isVariablyModifiedType();
6708   if (isVM || NewVD->hasAttr<CleanupAttr>() ||
6709       NewVD->hasAttr<BlocksAttr>())
6710     getCurFunction()->setHasBranchProtectedScope();
6711
6712   if ((isVM && NewVD->hasLinkage()) ||
6713       (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
6714     bool SizeIsNegative;
6715     llvm::APSInt Oversized;
6716     TypeSourceInfo *FixedTInfo =
6717       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
6718                                                     SizeIsNegative, Oversized);
6719     if (!FixedTInfo && T->isVariableArrayType()) {
6720       const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
6721       // FIXME: This won't give the correct result for
6722       // int a[10][n];
6723       SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
6724
6725       if (NewVD->isFileVarDecl())
6726         Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
6727         << SizeRange;
6728       else if (NewVD->isStaticLocal())
6729         Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
6730         << SizeRange;
6731       else
6732         Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
6733         << SizeRange;
6734       NewVD->setInvalidDecl();
6735       return;
6736     }
6737
6738     if (!FixedTInfo) {
6739       if (NewVD->isFileVarDecl())
6740         Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
6741       else
6742         Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
6743       NewVD->setInvalidDecl();
6744       return;
6745     }
6746
6747     Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
6748     NewVD->setType(FixedTInfo->getType());
6749     NewVD->setTypeSourceInfo(FixedTInfo);
6750   }
6751
6752   if (T->isVoidType()) {
6753     // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
6754     //                    of objects and functions.
6755     if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
6756       Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
6757         << T;
6758       NewVD->setInvalidDecl();
6759       return;
6760     }
6761   }
6762
6763   if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
6764     Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
6765     NewVD->setInvalidDecl();
6766     return;
6767   }
6768
6769   if (isVM && NewVD->hasAttr<BlocksAttr>()) {
6770     Diag(NewVD->getLocation(), diag::err_block_on_vm);
6771     NewVD->setInvalidDecl();
6772     return;
6773   }
6774
6775   if (NewVD->isConstexpr() && !T->isDependentType() &&
6776       RequireLiteralType(NewVD->getLocation(), T,
6777                          diag::err_constexpr_var_non_literal)) {
6778     NewVD->setInvalidDecl();
6779     return;
6780   }
6781 }
6782
6783 /// \brief Perform semantic checking on a newly-created variable
6784 /// declaration.
6785 ///
6786 /// This routine performs all of the type-checking required for a
6787 /// variable declaration once it has been built. It is used both to
6788 /// check variables after they have been parsed and their declarators
6789 /// have been translated into a declaration, and to check variables
6790 /// that have been instantiated from a template.
6791 ///
6792 /// Sets NewVD->isInvalidDecl() if an error was encountered.
6793 ///
6794 /// Returns true if the variable declaration is a redeclaration.
6795 bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
6796   CheckVariableDeclarationType(NewVD);
6797
6798   // If the decl is already known invalid, don't check it.
6799   if (NewVD->isInvalidDecl())
6800     return false;
6801
6802   // If we did not find anything by this name, look for a non-visible
6803   // extern "C" declaration with the same name.
6804   if (Previous.empty() &&
6805       checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
6806     Previous.setShadowed();
6807
6808   if (!Previous.empty()) {
6809     MergeVarDecl(NewVD, Previous);
6810     return true;
6811   }
6812   return false;
6813 }
6814
6815 namespace {
6816 struct FindOverriddenMethod {
6817   Sema *S;
6818   CXXMethodDecl *Method;
6819
6820   /// Member lookup function that determines whether a given C++
6821   /// method overrides a method in a base class, to be used with
6822   /// CXXRecordDecl::lookupInBases().
6823   bool operator()(const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
6824     RecordDecl *BaseRecord =
6825         Specifier->getType()->getAs<RecordType>()->getDecl();
6826
6827     DeclarationName Name = Method->getDeclName();
6828
6829     // FIXME: Do we care about other names here too?
6830     if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
6831       // We really want to find the base class destructor here.
6832       QualType T = S->Context.getTypeDeclType(BaseRecord);
6833       CanQualType CT = S->Context.getCanonicalType(T);
6834
6835       Name = S->Context.DeclarationNames.getCXXDestructorName(CT);
6836     }
6837
6838     for (Path.Decls = BaseRecord->lookup(Name); !Path.Decls.empty();
6839          Path.Decls = Path.Decls.slice(1)) {
6840       NamedDecl *D = Path.Decls.front();
6841       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
6842         if (MD->isVirtual() && !S->IsOverload(Method, MD, false))
6843           return true;
6844       }
6845     }
6846
6847     return false;
6848   }
6849 };
6850
6851 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
6852 } // end anonymous namespace
6853
6854 /// \brief Report an error regarding overriding, along with any relevant
6855 /// overriden methods.
6856 ///
6857 /// \param DiagID the primary error to report.
6858 /// \param MD the overriding method.
6859 /// \param OEK which overrides to include as notes.
6860 static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
6861                             OverrideErrorKind OEK = OEK_All) {
6862   S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
6863   for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6864                                       E = MD->end_overridden_methods();
6865        I != E; ++I) {
6866     // This check (& the OEK parameter) could be replaced by a predicate, but
6867     // without lambdas that would be overkill. This is still nicer than writing
6868     // out the diag loop 3 times.
6869     if ((OEK == OEK_All) ||
6870         (OEK == OEK_NonDeleted && !(*I)->isDeleted()) ||
6871         (OEK == OEK_Deleted && (*I)->isDeleted()))
6872       S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
6873   }
6874 }
6875
6876 /// AddOverriddenMethods - See if a method overrides any in the base classes,
6877 /// and if so, check that it's a valid override and remember it.
6878 bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
6879   // Look for methods in base classes that this method might override.
6880   CXXBasePaths Paths;
6881   FindOverriddenMethod FOM;
6882   FOM.Method = MD;
6883   FOM.S = this;
6884   bool hasDeletedOverridenMethods = false;
6885   bool hasNonDeletedOverridenMethods = false;
6886   bool AddedAny = false;
6887   if (DC->lookupInBases(FOM, Paths)) {
6888     for (auto *I : Paths.found_decls()) {
6889       if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
6890         MD->addOverriddenMethod(OldMD->getCanonicalDecl());
6891         if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
6892             !CheckOverridingFunctionAttributes(MD, OldMD) &&
6893             !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
6894             !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
6895           hasDeletedOverridenMethods |= OldMD->isDeleted();
6896           hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
6897           AddedAny = true;
6898         }
6899       }
6900     }
6901   }
6902
6903   if (hasDeletedOverridenMethods && !MD->isDeleted()) {
6904     ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
6905   }
6906   if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
6907     ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
6908   }
6909
6910   return AddedAny;
6911 }
6912
6913 namespace {
6914   // Struct for holding all of the extra arguments needed by
6915   // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
6916   struct ActOnFDArgs {
6917     Scope *S;
6918     Declarator &D;
6919     MultiTemplateParamsArg TemplateParamLists;
6920     bool AddToScope;
6921   };
6922 } // end anonymous namespace
6923
6924 namespace {
6925
6926 // Callback to only accept typo corrections that have a non-zero edit distance.
6927 // Also only accept corrections that have the same parent decl.
6928 class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
6929  public:
6930   DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
6931                             CXXRecordDecl *Parent)
6932       : Context(Context), OriginalFD(TypoFD),
6933         ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
6934
6935   bool ValidateCandidate(const TypoCorrection &candidate) override {
6936     if (candidate.getEditDistance() == 0)
6937       return false;
6938
6939     SmallVector<unsigned, 1> MismatchedParams;
6940     for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
6941                                           CDeclEnd = candidate.end();
6942          CDecl != CDeclEnd; ++CDecl) {
6943       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
6944
6945       if (FD && !FD->hasBody() &&
6946           hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
6947         if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
6948           CXXRecordDecl *Parent = MD->getParent();
6949           if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
6950             return true;
6951         } else if (!ExpectedParent) {
6952           return true;
6953         }
6954       }
6955     }
6956
6957     return false;
6958   }
6959
6960  private:
6961   ASTContext &Context;
6962   FunctionDecl *OriginalFD;
6963   CXXRecordDecl *ExpectedParent;
6964 };
6965
6966 } // end anonymous namespace
6967
6968 /// \brief Generate diagnostics for an invalid function redeclaration.
6969 ///
6970 /// This routine handles generating the diagnostic messages for an invalid
6971 /// function redeclaration, including finding possible similar declarations
6972 /// or performing typo correction if there are no previous declarations with
6973 /// the same name.
6974 ///
6975 /// Returns a NamedDecl iff typo correction was performed and substituting in
6976 /// the new declaration name does not cause new errors.
6977 static NamedDecl *DiagnoseInvalidRedeclaration(
6978     Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
6979     ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
6980   DeclarationName Name = NewFD->getDeclName();
6981   DeclContext *NewDC = NewFD->getDeclContext();
6982   SmallVector<unsigned, 1> MismatchedParams;
6983   SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
6984   TypoCorrection Correction;
6985   bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
6986   unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
6987                                    : diag::err_member_decl_does_not_match;
6988   LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
6989                     IsLocalFriend ? Sema::LookupLocalFriendName
6990                                   : Sema::LookupOrdinaryName,
6991                     Sema::ForRedeclaration);
6992
6993   NewFD->setInvalidDecl();
6994   if (IsLocalFriend)
6995     SemaRef.LookupName(Prev, S);
6996   else
6997     SemaRef.LookupQualifiedName(Prev, NewDC);
6998   assert(!Prev.isAmbiguous() &&
6999          "Cannot have an ambiguity in previous-declaration lookup");
7000   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
7001   if (!Prev.empty()) {
7002     for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
7003          Func != FuncEnd; ++Func) {
7004       FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
7005       if (FD &&
7006           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7007         // Add 1 to the index so that 0 can mean the mismatch didn't
7008         // involve a parameter
7009         unsigned ParamNum =
7010             MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
7011         NearMatches.push_back(std::make_pair(FD, ParamNum));
7012       }
7013     }
7014   // If the qualified name lookup yielded nothing, try typo correction
7015   } else if ((Correction = SemaRef.CorrectTypo(
7016                   Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
7017                   &ExtraArgs.D.getCXXScopeSpec(),
7018                   llvm::make_unique<DifferentNameValidatorCCC>(
7019                       SemaRef.Context, NewFD, MD ? MD->getParent() : nullptr),
7020                   Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
7021     // Set up everything for the call to ActOnFunctionDeclarator
7022     ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
7023                               ExtraArgs.D.getIdentifierLoc());
7024     Previous.clear();
7025     Previous.setLookupName(Correction.getCorrection());
7026     for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
7027                                     CDeclEnd = Correction.end();
7028          CDecl != CDeclEnd; ++CDecl) {
7029       FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
7030       if (FD && !FD->hasBody() &&
7031           hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
7032         Previous.addDecl(FD);
7033       }
7034     }
7035     bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
7036
7037     NamedDecl *Result;
7038     // Retry building the function declaration with the new previous
7039     // declarations, and with errors suppressed.
7040     {
7041       // Trap errors.
7042       Sema::SFINAETrap Trap(SemaRef);
7043
7044       // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
7045       // pieces need to verify the typo-corrected C++ declaration and hopefully
7046       // eliminate the need for the parameter pack ExtraArgs.
7047       Result = SemaRef.ActOnFunctionDeclarator(
7048           ExtraArgs.S, ExtraArgs.D,
7049           Correction.getCorrectionDecl()->getDeclContext(),
7050           NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
7051           ExtraArgs.AddToScope);
7052
7053       if (Trap.hasErrorOccurred())
7054         Result = nullptr;
7055     }
7056
7057     if (Result) {
7058       // Determine which correction we picked.
7059       Decl *Canonical = Result->getCanonicalDecl();
7060       for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
7061            I != E; ++I)
7062         if ((*I)->getCanonicalDecl() == Canonical)
7063           Correction.setCorrectionDecl(*I);
7064
7065       SemaRef.diagnoseTypo(
7066           Correction,
7067           SemaRef.PDiag(IsLocalFriend
7068                           ? diag::err_no_matching_local_friend_suggest
7069                           : diag::err_member_decl_does_not_match_suggest)
7070             << Name << NewDC << IsDefinition);
7071       return Result;
7072     }
7073
7074     // Pretend the typo correction never occurred
7075     ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
7076                               ExtraArgs.D.getIdentifierLoc());
7077     ExtraArgs.D.setRedeclaration(wasRedeclaration);
7078     Previous.clear();
7079     Previous.setLookupName(Name);
7080   }
7081
7082   SemaRef.Diag(NewFD->getLocation(), DiagMsg)
7083       << Name << NewDC << IsDefinition << NewFD->getLocation();
7084
7085   bool NewFDisConst = false;
7086   if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
7087     NewFDisConst = NewMD->isConst();
7088
7089   for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
7090        NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
7091        NearMatch != NearMatchEnd; ++NearMatch) {
7092     FunctionDecl *FD = NearMatch->first;
7093     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
7094     bool FDisConst = MD && MD->isConst();
7095     bool IsMember = MD || !IsLocalFriend;
7096
7097     // FIXME: These notes are poorly worded for the local friend case.
7098     if (unsigned Idx = NearMatch->second) {
7099       ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
7100       SourceLocation Loc = FDParam->getTypeSpecStartLoc();
7101       if (Loc.isInvalid()) Loc = FD->getLocation();
7102       SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
7103                                  : diag::note_local_decl_close_param_match)
7104         << Idx << FDParam->getType()
7105         << NewFD->getParamDecl(Idx - 1)->getType();
7106     } else if (FDisConst != NewFDisConst) {
7107       SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
7108           << NewFDisConst << FD->getSourceRange().getEnd();
7109     } else
7110       SemaRef.Diag(FD->getLocation(),
7111                    IsMember ? diag::note_member_def_close_match
7112                             : diag::note_local_decl_close_match);
7113   }
7114   return nullptr;
7115 }
7116
7117 static StorageClass getFunctionStorageClass(Sema &SemaRef, Declarator &D) {
7118   switch (D.getDeclSpec().getStorageClassSpec()) {
7119   default: llvm_unreachable("Unknown storage class!");
7120   case DeclSpec::SCS_auto:
7121   case DeclSpec::SCS_register:
7122   case DeclSpec::SCS_mutable:
7123     SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7124                  diag::err_typecheck_sclass_func);
7125     D.setInvalidType();
7126     break;
7127   case DeclSpec::SCS_unspecified: break;
7128   case DeclSpec::SCS_extern:
7129     if (D.getDeclSpec().isExternInLinkageSpec())
7130       return SC_None;
7131     return SC_Extern;
7132   case DeclSpec::SCS_static: {
7133     if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
7134       // C99 6.7.1p5:
7135       //   The declaration of an identifier for a function that has
7136       //   block scope shall have no explicit storage-class specifier
7137       //   other than extern
7138       // See also (C++ [dcl.stc]p4).
7139       SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7140                    diag::err_static_block_func);
7141       break;
7142     } else
7143       return SC_Static;
7144   }
7145   case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
7146   }
7147
7148   // No explicit storage class has already been returned
7149   return SC_None;
7150 }
7151
7152 static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
7153                                            DeclContext *DC, QualType &R,
7154                                            TypeSourceInfo *TInfo,
7155                                            StorageClass SC,
7156                                            bool &IsVirtualOkay) {
7157   DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
7158   DeclarationName Name = NameInfo.getName();
7159
7160   FunctionDecl *NewFD = nullptr;
7161   bool isInline = D.getDeclSpec().isInlineSpecified();
7162
7163   if (!SemaRef.getLangOpts().CPlusPlus) {
7164     // Determine whether the function was written with a
7165     // prototype. This true when:
7166     //   - there is a prototype in the declarator, or
7167     //   - the type R of the function is some kind of typedef or other reference
7168     //     to a type name (which eventually refers to a function type).
7169     bool HasPrototype =
7170       (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
7171       (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType());
7172
7173     NewFD = FunctionDecl::Create(SemaRef.Context, DC, 
7174                                  D.getLocStart(), NameInfo, R, 
7175                                  TInfo, SC, isInline, 
7176                                  HasPrototype, false);
7177     if (D.isInvalidType())
7178       NewFD->setInvalidDecl();
7179
7180     return NewFD;
7181   }
7182
7183   bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7184   bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7185
7186   // Check that the return type is not an abstract class type.
7187   // For record types, this is done by the AbstractClassUsageDiagnoser once
7188   // the class has been completely parsed.
7189   if (!DC->isRecord() &&
7190       SemaRef.RequireNonAbstractType(
7191           D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
7192           diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
7193     D.setInvalidType();
7194
7195   if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
7196     // This is a C++ constructor declaration.
7197     assert(DC->isRecord() &&
7198            "Constructors can only be declared in a member context");
7199
7200     R = SemaRef.CheckConstructorDeclarator(D, R, SC);
7201     return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7202                                       D.getLocStart(), NameInfo,
7203                                       R, TInfo, isExplicit, isInline,
7204                                       /*isImplicitlyDeclared=*/false,
7205                                       isConstexpr);
7206
7207   } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7208     // This is a C++ destructor declaration.
7209     if (DC->isRecord()) {
7210       R = SemaRef.CheckDestructorDeclarator(D, R, SC);
7211       CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
7212       CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
7213                                         SemaRef.Context, Record,
7214                                         D.getLocStart(),
7215                                         NameInfo, R, TInfo, isInline,
7216                                         /*isImplicitlyDeclared=*/false);
7217
7218       // If the class is complete, then we now create the implicit exception
7219       // specification. If the class is incomplete or dependent, we can't do
7220       // it yet.
7221       if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
7222           Record->getDefinition() && !Record->isBeingDefined() &&
7223           R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
7224         SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
7225       }
7226
7227       IsVirtualOkay = true;
7228       return NewDD;
7229
7230     } else {
7231       SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
7232       D.setInvalidType();
7233
7234       // Create a FunctionDecl to satisfy the function definition parsing
7235       // code path.
7236       return FunctionDecl::Create(SemaRef.Context, DC,
7237                                   D.getLocStart(),
7238                                   D.getIdentifierLoc(), Name, R, TInfo,
7239                                   SC, isInline,
7240                                   /*hasPrototype=*/true, isConstexpr);
7241     }
7242
7243   } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
7244     if (!DC->isRecord()) {
7245       SemaRef.Diag(D.getIdentifierLoc(),
7246            diag::err_conv_function_not_member);
7247       return nullptr;
7248     }
7249
7250     SemaRef.CheckConversionDeclarator(D, R, SC);
7251     IsVirtualOkay = true;
7252     return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
7253                                      D.getLocStart(), NameInfo,
7254                                      R, TInfo, isInline, isExplicit,
7255                                      isConstexpr, SourceLocation());
7256
7257   } else if (DC->isRecord()) {
7258     // If the name of the function is the same as the name of the record,
7259     // then this must be an invalid constructor that has a return type.
7260     // (The parser checks for a return type and makes the declarator a
7261     // constructor if it has no return type).
7262     if (Name.getAsIdentifierInfo() &&
7263         Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
7264       SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
7265         << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
7266         << SourceRange(D.getIdentifierLoc());
7267       return nullptr;
7268     }
7269
7270     // This is a C++ method declaration.
7271     CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
7272                                                cast<CXXRecordDecl>(DC),
7273                                                D.getLocStart(), NameInfo, R,
7274                                                TInfo, SC, isInline,
7275                                                isConstexpr, SourceLocation());
7276     IsVirtualOkay = !Ret->isStatic();
7277     return Ret;
7278   } else {
7279     bool isFriend =
7280         SemaRef.getLangOpts().CPlusPlus && D.getDeclSpec().isFriendSpecified();
7281     if (!isFriend && SemaRef.CurContext->isRecord())
7282       return nullptr;
7283
7284     // Determine whether the function was written with a
7285     // prototype. This true when:
7286     //   - we're in C++ (where every function has a prototype),
7287     return FunctionDecl::Create(SemaRef.Context, DC,
7288                                 D.getLocStart(),
7289                                 NameInfo, R, TInfo, SC, isInline,
7290                                 true/*HasPrototype*/, isConstexpr);
7291   }
7292 }
7293
7294 enum OpenCLParamType {
7295   ValidKernelParam,
7296   PtrPtrKernelParam,
7297   PtrKernelParam,
7298   PrivatePtrKernelParam,
7299   InvalidKernelParam,
7300   RecordKernelParam
7301 };
7302
7303 static OpenCLParamType getOpenCLKernelParameterType(QualType PT) {
7304   if (PT->isPointerType()) {
7305     QualType PointeeType = PT->getPointeeType();
7306     if (PointeeType->isPointerType())
7307       return PtrPtrKernelParam;
7308     return PointeeType.getAddressSpace() == 0 ? PrivatePtrKernelParam
7309                                               : PtrKernelParam;
7310   }
7311
7312   // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
7313   // be used as builtin types.
7314
7315   if (PT->isImageType())
7316     return PtrKernelParam;
7317
7318   if (PT->isBooleanType())
7319     return InvalidKernelParam;
7320
7321   if (PT->isEventT())
7322     return InvalidKernelParam;
7323
7324   if (PT->isHalfType())
7325     return InvalidKernelParam;
7326
7327   if (PT->isRecordType())
7328     return RecordKernelParam;
7329
7330   return ValidKernelParam;
7331 }
7332
7333 static void checkIsValidOpenCLKernelParameter(
7334   Sema &S,
7335   Declarator &D,
7336   ParmVarDecl *Param,
7337   llvm::SmallPtrSetImpl<const Type *> &ValidTypes) {
7338   QualType PT = Param->getType();
7339
7340   // Cache the valid types we encounter to avoid rechecking structs that are
7341   // used again
7342   if (ValidTypes.count(PT.getTypePtr()))
7343     return;
7344
7345   switch (getOpenCLKernelParameterType(PT)) {
7346   case PtrPtrKernelParam:
7347     // OpenCL v1.2 s6.9.a:
7348     // A kernel function argument cannot be declared as a
7349     // pointer to a pointer type.
7350     S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
7351     D.setInvalidType();
7352     return;
7353
7354   case PrivatePtrKernelParam:
7355     // OpenCL v1.2 s6.9.a:
7356     // A kernel function argument cannot be declared as a
7357     // pointer to the private address space.
7358     S.Diag(Param->getLocation(), diag::err_opencl_private_ptr_kernel_param);
7359     D.setInvalidType();
7360     return;
7361
7362     // OpenCL v1.2 s6.9.k:
7363     // Arguments to kernel functions in a program cannot be declared with the
7364     // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
7365     // uintptr_t or a struct and/or union that contain fields declared to be
7366     // one of these built-in scalar types.
7367
7368   case InvalidKernelParam:
7369     // OpenCL v1.2 s6.8 n:
7370     // A kernel function argument cannot be declared
7371     // of event_t type.
7372     S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
7373     D.setInvalidType();
7374     return;
7375
7376   case PtrKernelParam:
7377   case ValidKernelParam:
7378     ValidTypes.insert(PT.getTypePtr());
7379     return;
7380
7381   case RecordKernelParam:
7382     break;
7383   }
7384
7385   // Track nested structs we will inspect
7386   SmallVector<const Decl *, 4> VisitStack;
7387
7388   // Track where we are in the nested structs. Items will migrate from
7389   // VisitStack to HistoryStack as we do the DFS for bad field.
7390   SmallVector<const FieldDecl *, 4> HistoryStack;
7391   HistoryStack.push_back(nullptr);
7392
7393   const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
7394   VisitStack.push_back(PD);
7395
7396   assert(VisitStack.back() && "First decl null?");
7397
7398   do {
7399     const Decl *Next = VisitStack.pop_back_val();
7400     if (!Next) {
7401       assert(!HistoryStack.empty());
7402       // Found a marker, we have gone up a level
7403       if (const FieldDecl *Hist = HistoryStack.pop_back_val())
7404         ValidTypes.insert(Hist->getType().getTypePtr());
7405
7406       continue;
7407     }
7408
7409     // Adds everything except the original parameter declaration (which is not a
7410     // field itself) to the history stack.
7411     const RecordDecl *RD;
7412     if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
7413       HistoryStack.push_back(Field);
7414       RD = Field->getType()->castAs<RecordType>()->getDecl();
7415     } else {
7416       RD = cast<RecordDecl>(Next);
7417     }
7418
7419     // Add a null marker so we know when we've gone back up a level
7420     VisitStack.push_back(nullptr);
7421
7422     for (const auto *FD : RD->fields()) {
7423       QualType QT = FD->getType();
7424
7425       if (ValidTypes.count(QT.getTypePtr()))
7426         continue;
7427
7428       OpenCLParamType ParamType = getOpenCLKernelParameterType(QT);
7429       if (ParamType == ValidKernelParam)
7430         continue;
7431
7432       if (ParamType == RecordKernelParam) {
7433         VisitStack.push_back(FD);
7434         continue;
7435       }
7436
7437       // OpenCL v1.2 s6.9.p:
7438       // Arguments to kernel functions that are declared to be a struct or union
7439       // do not allow OpenCL objects to be passed as elements of the struct or
7440       // union.
7441       if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
7442           ParamType == PrivatePtrKernelParam) {
7443         S.Diag(Param->getLocation(),
7444                diag::err_record_with_pointers_kernel_param)
7445           << PT->isUnionType()
7446           << PT;
7447       } else {
7448         S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
7449       }
7450
7451       S.Diag(PD->getLocation(), diag::note_within_field_of_type)
7452         << PD->getDeclName();
7453
7454       // We have an error, now let's go back up through history and show where
7455       // the offending field came from
7456       for (ArrayRef<const FieldDecl *>::const_iterator
7457                I = HistoryStack.begin() + 1,
7458                E = HistoryStack.end();
7459            I != E; ++I) {
7460         const FieldDecl *OuterField = *I;
7461         S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
7462           << OuterField->getType();
7463       }
7464
7465       S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
7466         << QT->isPointerType()
7467         << QT;
7468       D.setInvalidType();
7469       return;
7470     }
7471   } while (!VisitStack.empty());
7472 }
7473
7474 NamedDecl*
7475 Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
7476                               TypeSourceInfo *TInfo, LookupResult &Previous,
7477                               MultiTemplateParamsArg TemplateParamLists,
7478                               bool &AddToScope) {
7479   QualType R = TInfo->getType();
7480
7481   assert(R.getTypePtr()->isFunctionType());
7482
7483   // TODO: consider using NameInfo for diagnostic.
7484   DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
7485   DeclarationName Name = NameInfo.getName();
7486   StorageClass SC = getFunctionStorageClass(*this, D);
7487
7488   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
7489     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
7490          diag::err_invalid_thread)
7491       << DeclSpec::getSpecifierName(TSCS);
7492
7493   if (D.isFirstDeclarationOfMember())
7494     adjustMemberFunctionCC(R, D.isStaticMember(), D.isCtorOrDtor(),
7495                            D.getIdentifierLoc());
7496
7497   bool isFriend = false;
7498   FunctionTemplateDecl *FunctionTemplate = nullptr;
7499   bool isExplicitSpecialization = false;
7500   bool isFunctionTemplateSpecialization = false;
7501
7502   bool isDependentClassScopeExplicitSpecialization = false;
7503   bool HasExplicitTemplateArgs = false;
7504   TemplateArgumentListInfo TemplateArgs;
7505
7506   bool isVirtualOkay = false;
7507
7508   DeclContext *OriginalDC = DC;
7509   bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
7510
7511   FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
7512                                               isVirtualOkay);
7513   if (!NewFD) return nullptr;
7514
7515   if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
7516     NewFD->setTopLevelDeclInObjCContainer();
7517
7518   // Set the lexical context. If this is a function-scope declaration, or has a
7519   // C++ scope specifier, or is the object of a friend declaration, the lexical
7520   // context will be different from the semantic context.
7521   NewFD->setLexicalDeclContext(CurContext);
7522
7523   if (IsLocalExternDecl)
7524     NewFD->setLocalExternDecl();
7525
7526   if (getLangOpts().CPlusPlus) {
7527     bool isInline = D.getDeclSpec().isInlineSpecified();
7528     bool isVirtual = D.getDeclSpec().isVirtualSpecified();
7529     bool isExplicit = D.getDeclSpec().isExplicitSpecified();
7530     bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
7531     bool isConcept = D.getDeclSpec().isConceptSpecified();
7532     isFriend = D.getDeclSpec().isFriendSpecified();
7533     if (isFriend && !isInline && D.isFunctionDefinition()) {
7534       // C++ [class.friend]p5
7535       //   A function can be defined in a friend declaration of a
7536       //   class . . . . Such a function is implicitly inline.
7537       NewFD->setImplicitlyInline();
7538     }
7539
7540     // If this is a method defined in an __interface, and is not a constructor
7541     // or an overloaded operator, then set the pure flag (isVirtual will already
7542     // return true).
7543     if (const CXXRecordDecl *Parent =
7544           dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
7545       if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
7546         NewFD->setPure(true);
7547
7548       // C++ [class.union]p2
7549       //   A union can have member functions, but not virtual functions.
7550       if (isVirtual && Parent->isUnion())
7551         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_virtual_in_union);
7552     }
7553
7554     SetNestedNameSpecifier(NewFD, D);
7555     isExplicitSpecialization = false;
7556     isFunctionTemplateSpecialization = false;
7557     if (D.isInvalidType())
7558       NewFD->setInvalidDecl();
7559
7560     // Match up the template parameter lists with the scope specifier, then
7561     // determine whether we have a template or a template specialization.
7562     bool Invalid = false;
7563     if (TemplateParameterList *TemplateParams =
7564             MatchTemplateParametersToScopeSpecifier(
7565                 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
7566                 D.getCXXScopeSpec(),
7567                 D.getName().getKind() == UnqualifiedId::IK_TemplateId
7568                     ? D.getName().TemplateId
7569                     : nullptr,
7570                 TemplateParamLists, isFriend, isExplicitSpecialization,
7571                 Invalid)) {
7572       if (TemplateParams->size() > 0) {
7573         // This is a function template
7574
7575         // Check that we can declare a template here.
7576         if (CheckTemplateDeclScope(S, TemplateParams))
7577           NewFD->setInvalidDecl();
7578
7579         // A destructor cannot be a template.
7580         if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
7581           Diag(NewFD->getLocation(), diag::err_destructor_template);
7582           NewFD->setInvalidDecl();
7583         }
7584         
7585         // If we're adding a template to a dependent context, we may need to 
7586         // rebuilding some of the types used within the template parameter list,
7587         // now that we know what the current instantiation is.
7588         if (DC->isDependentContext()) {
7589           ContextRAII SavedContext(*this, DC);
7590           if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
7591             Invalid = true;
7592         }
7593         
7594         FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
7595                                                         NewFD->getLocation(),
7596                                                         Name, TemplateParams,
7597                                                         NewFD);
7598         FunctionTemplate->setLexicalDeclContext(CurContext);
7599         NewFD->setDescribedFunctionTemplate(FunctionTemplate);
7600
7601         // For source fidelity, store the other template param lists.
7602         if (TemplateParamLists.size() > 1) {
7603           NewFD->setTemplateParameterListsInfo(Context,
7604                                                TemplateParamLists.drop_back(1));
7605         }
7606       } else {
7607         // This is a function template specialization.
7608         isFunctionTemplateSpecialization = true;
7609         // For source fidelity, store all the template param lists.
7610         if (TemplateParamLists.size() > 0)
7611           NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
7612
7613         // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
7614         if (isFriend) {
7615           // We want to remove the "template<>", found here.
7616           SourceRange RemoveRange = TemplateParams->getSourceRange();
7617
7618           // If we remove the template<> and the name is not a
7619           // template-id, we're actually silently creating a problem:
7620           // the friend declaration will refer to an untemplated decl,
7621           // and clearly the user wants a template specialization.  So
7622           // we need to insert '<>' after the name.
7623           SourceLocation InsertLoc;
7624           if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
7625             InsertLoc = D.getName().getSourceRange().getEnd();
7626             InsertLoc = getLocForEndOfToken(InsertLoc);
7627           }
7628
7629           Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
7630             << Name << RemoveRange
7631             << FixItHint::CreateRemoval(RemoveRange)
7632             << FixItHint::CreateInsertion(InsertLoc, "<>");
7633         }
7634       }
7635     }
7636     else {
7637       // All template param lists were matched against the scope specifier:
7638       // this is NOT (an explicit specialization of) a template.
7639       if (TemplateParamLists.size() > 0)
7640         // For source fidelity, store all the template param lists.
7641         NewFD->setTemplateParameterListsInfo(Context, TemplateParamLists);
7642     }
7643
7644     if (Invalid) {
7645       NewFD->setInvalidDecl();
7646       if (FunctionTemplate)
7647         FunctionTemplate->setInvalidDecl();
7648     }
7649
7650     // C++ [dcl.fct.spec]p5:
7651     //   The virtual specifier shall only be used in declarations of
7652     //   nonstatic class member functions that appear within a
7653     //   member-specification of a class declaration; see 10.3.
7654     //
7655     if (isVirtual && !NewFD->isInvalidDecl()) {
7656       if (!isVirtualOkay) {
7657         Diag(D.getDeclSpec().getVirtualSpecLoc(),
7658              diag::err_virtual_non_function);
7659       } else if (!CurContext->isRecord()) {
7660         // 'virtual' was specified outside of the class.
7661         Diag(D.getDeclSpec().getVirtualSpecLoc(), 
7662              diag::err_virtual_out_of_class)
7663           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
7664       } else if (NewFD->getDescribedFunctionTemplate()) {
7665         // C++ [temp.mem]p3:
7666         //  A member function template shall not be virtual.
7667         Diag(D.getDeclSpec().getVirtualSpecLoc(),
7668              diag::err_virtual_member_function_template)
7669           << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
7670       } else {
7671         // Okay: Add virtual to the method.
7672         NewFD->setVirtualAsWritten(true);
7673       }
7674
7675       if (getLangOpts().CPlusPlus14 &&
7676           NewFD->getReturnType()->isUndeducedType())
7677         Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
7678     }
7679
7680     if (getLangOpts().CPlusPlus14 &&
7681         (NewFD->isDependentContext() ||
7682          (isFriend && CurContext->isDependentContext())) &&
7683         NewFD->getReturnType()->isUndeducedType()) {
7684       // If the function template is referenced directly (for instance, as a
7685       // member of the current instantiation), pretend it has a dependent type.
7686       // This is not really justified by the standard, but is the only sane
7687       // thing to do.
7688       // FIXME: For a friend function, we have not marked the function as being
7689       // a friend yet, so 'isDependentContext' on the FD doesn't work.
7690       const FunctionProtoType *FPT =
7691           NewFD->getType()->castAs<FunctionProtoType>();
7692       QualType Result =
7693           SubstAutoType(FPT->getReturnType(), Context.DependentTy);
7694       NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
7695                                              FPT->getExtProtoInfo()));
7696     }
7697
7698     // C++ [dcl.fct.spec]p3:
7699     //  The inline specifier shall not appear on a block scope function 
7700     //  declaration.
7701     if (isInline && !NewFD->isInvalidDecl()) {
7702       if (CurContext->isFunctionOrMethod()) {
7703         // 'inline' is not allowed on block scope function declaration.
7704         Diag(D.getDeclSpec().getInlineSpecLoc(), 
7705              diag::err_inline_declaration_block_scope) << Name
7706           << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
7707       }
7708     }
7709
7710     // C++ [dcl.fct.spec]p6:
7711     //  The explicit specifier shall be used only in the declaration of a
7712     //  constructor or conversion function within its class definition; 
7713     //  see 12.3.1 and 12.3.2.
7714     if (isExplicit && !NewFD->isInvalidDecl()) {
7715       if (!CurContext->isRecord()) {
7716         // 'explicit' was specified outside of the class.
7717         Diag(D.getDeclSpec().getExplicitSpecLoc(), 
7718              diag::err_explicit_out_of_class)
7719           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
7720       } else if (!isa<CXXConstructorDecl>(NewFD) && 
7721                  !isa<CXXConversionDecl>(NewFD)) {
7722         // 'explicit' was specified on a function that wasn't a constructor
7723         // or conversion function.
7724         Diag(D.getDeclSpec().getExplicitSpecLoc(),
7725              diag::err_explicit_non_ctor_or_conv_function)
7726           << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
7727       }      
7728     }
7729
7730     if (isConstexpr) {
7731       // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
7732       // are implicitly inline.
7733       NewFD->setImplicitlyInline();
7734
7735       // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
7736       // be either constructors or to return a literal type. Therefore,
7737       // destructors cannot be declared constexpr.
7738       if (isa<CXXDestructorDecl>(NewFD))
7739         Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
7740     }
7741
7742     if (isConcept) {
7743       // This is a function concept.
7744       if (FunctionTemplateDecl *FTD = NewFD->getDescribedFunctionTemplate())
7745         FTD->setConcept();
7746
7747       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
7748       // applied only to the definition of a function template [...]
7749       if (!D.isFunctionDefinition()) {
7750         Diag(D.getDeclSpec().getConceptSpecLoc(),
7751              diag::err_function_concept_not_defined);
7752         NewFD->setInvalidDecl();
7753       }
7754
7755       // C++ Concepts TS [dcl.spec.concept]p1: [...] A function concept shall
7756       // have no exception-specification and is treated as if it were specified
7757       // with noexcept(true) (15.4). [...]
7758       if (const FunctionProtoType *FPT = R->getAs<FunctionProtoType>()) {
7759         if (FPT->hasExceptionSpec()) {
7760           SourceRange Range;
7761           if (D.isFunctionDeclarator())
7762             Range = D.getFunctionTypeInfo().getExceptionSpecRange();
7763           Diag(NewFD->getLocation(), diag::err_function_concept_exception_spec)
7764               << FixItHint::CreateRemoval(Range);
7765           NewFD->setInvalidDecl();
7766         } else {
7767           Context.adjustExceptionSpec(NewFD, EST_BasicNoexcept);
7768         }
7769
7770         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
7771         // following restrictions:
7772         // - The declared return type shall have the type bool.
7773         if (!Context.hasSameType(FPT->getReturnType(), Context.BoolTy)) {
7774           Diag(D.getIdentifierLoc(), diag::err_function_concept_bool_ret);
7775           NewFD->setInvalidDecl();
7776         }
7777
7778         // C++ Concepts TS [dcl.spec.concept]p5: A function concept has the
7779         // following restrictions:
7780         // - The declaration's parameter list shall be equivalent to an empty
7781         //   parameter list.
7782         if (FPT->getNumParams() > 0 || FPT->isVariadic())
7783           Diag(NewFD->getLocation(), diag::err_function_concept_with_params);
7784       }
7785
7786       // C++ Concepts TS [dcl.spec.concept]p2: Every concept definition is
7787       // implicity defined to be a constexpr declaration (implicitly inline)
7788       NewFD->setImplicitlyInline();
7789
7790       // C++ Concepts TS [dcl.spec.concept]p2: A concept definition shall not
7791       // be declared with the thread_local, inline, friend, or constexpr
7792       // specifiers, [...]
7793       if (isInline) {
7794         Diag(D.getDeclSpec().getInlineSpecLoc(),
7795              diag::err_concept_decl_invalid_specifiers)
7796             << 1 << 1;
7797         NewFD->setInvalidDecl(true);
7798       }
7799
7800       if (isFriend) {
7801         Diag(D.getDeclSpec().getFriendSpecLoc(),
7802              diag::err_concept_decl_invalid_specifiers)
7803             << 1 << 2;
7804         NewFD->setInvalidDecl(true);
7805       }
7806
7807       if (isConstexpr) {
7808         Diag(D.getDeclSpec().getConstexprSpecLoc(),
7809              diag::err_concept_decl_invalid_specifiers)
7810             << 1 << 3;
7811         NewFD->setInvalidDecl(true);
7812       }
7813
7814       // C++ Concepts TS [dcl.spec.concept]p1: The concept specifier shall be
7815       // applied only to the definition of a function template or variable
7816       // template, declared in namespace scope.
7817       if (isFunctionTemplateSpecialization) {
7818         Diag(D.getDeclSpec().getConceptSpecLoc(),
7819              diag::err_concept_specified_specialization) << 1;
7820       }
7821     }
7822
7823     // If __module_private__ was specified, mark the function accordingly.
7824     if (D.getDeclSpec().isModulePrivateSpecified()) {
7825       if (isFunctionTemplateSpecialization) {
7826         SourceLocation ModulePrivateLoc
7827           = D.getDeclSpec().getModulePrivateSpecLoc();
7828         Diag(ModulePrivateLoc, diag::err_module_private_specialization)
7829           << 0
7830           << FixItHint::CreateRemoval(ModulePrivateLoc);
7831       } else {
7832         NewFD->setModulePrivate();
7833         if (FunctionTemplate)
7834           FunctionTemplate->setModulePrivate();
7835       }
7836     }
7837
7838     if (isFriend) {
7839       if (FunctionTemplate) {
7840         FunctionTemplate->setObjectOfFriendDecl();
7841         FunctionTemplate->setAccess(AS_public);
7842       }
7843       NewFD->setObjectOfFriendDecl();
7844       NewFD->setAccess(AS_public);
7845     }
7846
7847     // If a function is defined as defaulted or deleted, mark it as such now.
7848     // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
7849     // definition kind to FDK_Definition.
7850     switch (D.getFunctionDefinitionKind()) {
7851       case FDK_Declaration:
7852       case FDK_Definition:
7853         break;
7854         
7855       case FDK_Defaulted:
7856         NewFD->setDefaulted();
7857         break;
7858         
7859       case FDK_Deleted:
7860         NewFD->setDeletedAsWritten();
7861         break;
7862     }
7863
7864     if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
7865         D.isFunctionDefinition()) {
7866       // C++ [class.mfct]p2:
7867       //   A member function may be defined (8.4) in its class definition, in 
7868       //   which case it is an inline member function (7.1.2)
7869       NewFD->setImplicitlyInline();
7870     }
7871
7872     if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
7873         !CurContext->isRecord()) {
7874       // C++ [class.static]p1:
7875       //   A data or function member of a class may be declared static
7876       //   in a class definition, in which case it is a static member of
7877       //   the class.
7878
7879       // Complain about the 'static' specifier if it's on an out-of-line
7880       // member function definition.
7881       Diag(D.getDeclSpec().getStorageClassSpecLoc(),
7882            diag::err_static_out_of_line)
7883         << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
7884     }
7885
7886     // C++11 [except.spec]p15:
7887     //   A deallocation function with no exception-specification is treated
7888     //   as if it were specified with noexcept(true).
7889     const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
7890     if ((Name.getCXXOverloadedOperator() == OO_Delete ||
7891          Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
7892         getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec())
7893       NewFD->setType(Context.getFunctionType(
7894           FPT->getReturnType(), FPT->getParamTypes(),
7895           FPT->getExtProtoInfo().withExceptionSpec(EST_BasicNoexcept)));
7896   }
7897
7898   // Filter out previous declarations that don't match the scope.
7899   FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
7900                        D.getCXXScopeSpec().isNotEmpty() ||
7901                        isExplicitSpecialization ||
7902                        isFunctionTemplateSpecialization);
7903
7904   // Handle GNU asm-label extension (encoded as an attribute).
7905   if (Expr *E = (Expr*) D.getAsmLabel()) {
7906     // The parser guarantees this is a string.
7907     StringLiteral *SE = cast<StringLiteral>(E);
7908     NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
7909                                                 SE->getString(), 0));
7910   } else if (!ExtnameUndeclaredIdentifiers.empty()) {
7911     llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
7912       ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
7913     if (I != ExtnameUndeclaredIdentifiers.end()) {
7914       if (isDeclExternC(NewFD)) {
7915         NewFD->addAttr(I->second);
7916         ExtnameUndeclaredIdentifiers.erase(I);
7917       } else
7918         Diag(NewFD->getLocation(), diag::warn_redefine_extname_not_applied)
7919             << /*Variable*/0 << NewFD;
7920     }
7921   }
7922
7923   // Copy the parameter declarations from the declarator D to the function
7924   // declaration NewFD, if they are available.  First scavenge them into Params.
7925   SmallVector<ParmVarDecl*, 16> Params;
7926   if (D.isFunctionDeclarator()) {
7927     DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
7928
7929     // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
7930     // function that takes no arguments, not a function that takes a
7931     // single void argument.
7932     // We let through "const void" here because Sema::GetTypeForDeclarator
7933     // already checks for that case.
7934     if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
7935       for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
7936         ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
7937         assert(Param->getDeclContext() != NewFD && "Was set before ?");
7938         Param->setDeclContext(NewFD);
7939         Params.push_back(Param);
7940
7941         if (Param->isInvalidDecl())
7942           NewFD->setInvalidDecl();
7943       }
7944     }
7945   } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
7946     // When we're declaring a function with a typedef, typeof, etc as in the
7947     // following example, we'll need to synthesize (unnamed)
7948     // parameters for use in the declaration.
7949     //
7950     // @code
7951     // typedef void fn(int);
7952     // fn f;
7953     // @endcode
7954
7955     // Synthesize a parameter for each argument type.
7956     for (const auto &AI : FT->param_types()) {
7957       ParmVarDecl *Param =
7958           BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
7959       Param->setScopeInfo(0, Params.size());
7960       Params.push_back(Param);
7961     }
7962   } else {
7963     assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
7964            "Should not need args for typedef of non-prototype fn");
7965   }
7966
7967   // Finally, we know we have the right number of parameters, install them.
7968   NewFD->setParams(Params);
7969
7970   // Find all anonymous symbols defined during the declaration of this function
7971   // and add to NewFD. This lets us track decls such 'enum Y' in:
7972   //
7973   //   void f(enum Y {AA} x) {}
7974   //
7975   // which would otherwise incorrectly end up in the translation unit scope.
7976   NewFD->setDeclsInPrototypeScope(DeclsInPrototypeScope);
7977   DeclsInPrototypeScope.clear();
7978
7979   if (D.getDeclSpec().isNoreturnSpecified())
7980     NewFD->addAttr(
7981         ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
7982                                        Context, 0));
7983
7984   // Functions returning a variably modified type violate C99 6.7.5.2p2
7985   // because all functions have linkage.
7986   if (!NewFD->isInvalidDecl() &&
7987       NewFD->getReturnType()->isVariablyModifiedType()) {
7988     Diag(NewFD->getLocation(), diag::err_vm_func_decl);
7989     NewFD->setInvalidDecl();
7990   }
7991
7992   // Apply an implicit SectionAttr if #pragma code_seg is active.
7993   if (CodeSegStack.CurrentValue && D.isFunctionDefinition() &&
7994       !NewFD->hasAttr<SectionAttr>()) {
7995     NewFD->addAttr(
7996         SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
7997                                     CodeSegStack.CurrentValue->getString(),
7998                                     CodeSegStack.CurrentPragmaLocation));
7999     if (UnifySection(CodeSegStack.CurrentValue->getString(),
8000                      ASTContext::PSF_Implicit | ASTContext::PSF_Execute |
8001                          ASTContext::PSF_Read,
8002                      NewFD))
8003       NewFD->dropAttr<SectionAttr>();
8004   }
8005
8006   // Handle attributes.
8007   ProcessDeclAttributes(S, NewFD, D);
8008
8009   if (getLangOpts().OpenCL) {
8010     // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
8011     // type declaration will generate a compilation error.
8012     unsigned AddressSpace = NewFD->getReturnType().getAddressSpace();
8013     if (AddressSpace == LangAS::opencl_local ||
8014         AddressSpace == LangAS::opencl_global ||
8015         AddressSpace == LangAS::opencl_constant) {
8016       Diag(NewFD->getLocation(),
8017            diag::err_opencl_return_value_with_address_space);
8018       NewFD->setInvalidDecl();
8019     }
8020   }
8021
8022   if (!getLangOpts().CPlusPlus) {
8023     // Perform semantic checking on the function declaration.
8024     bool isExplicitSpecialization=false;
8025     if (!NewFD->isInvalidDecl() && NewFD->isMain())
8026       CheckMain(NewFD, D.getDeclSpec());
8027
8028     if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8029       CheckMSVCRTEntryPoint(NewFD);
8030
8031     if (!NewFD->isInvalidDecl())
8032       D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8033                                                   isExplicitSpecialization));
8034     else if (!Previous.empty())
8035       // Recover gracefully from an invalid redeclaration.
8036       D.setRedeclaration(true);
8037     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8038             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8039            "previous declaration set still overloaded");
8040
8041     // Diagnose no-prototype function declarations with calling conventions that
8042     // don't support variadic calls. Only do this in C and do it after merging
8043     // possibly prototyped redeclarations.
8044     const FunctionType *FT = NewFD->getType()->castAs<FunctionType>();
8045     if (isa<FunctionNoProtoType>(FT) && !D.isFunctionDefinition()) {
8046       CallingConv CC = FT->getExtInfo().getCC();
8047       if (!supportsVariadicCall(CC)) {
8048         // Windows system headers sometimes accidentally use stdcall without
8049         // (void) parameters, so we relax this to a warning.
8050         int DiagID =
8051             CC == CC_X86StdCall ? diag::warn_cconv_knr : diag::err_cconv_knr;
8052         Diag(NewFD->getLocation(), DiagID)
8053             << FunctionType::getNameForCallConv(CC);
8054       }
8055     }
8056   } else {
8057     // C++11 [replacement.functions]p3:
8058     //  The program's definitions shall not be specified as inline.
8059     //
8060     // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
8061     //
8062     // Suppress the diagnostic if the function is __attribute__((used)), since
8063     // that forces an external definition to be emitted.
8064     if (D.getDeclSpec().isInlineSpecified() &&
8065         NewFD->isReplaceableGlobalAllocationFunction() &&
8066         !NewFD->hasAttr<UsedAttr>())
8067       Diag(D.getDeclSpec().getInlineSpecLoc(),
8068            diag::ext_operator_new_delete_declared_inline)
8069         << NewFD->getDeclName();
8070
8071     // If the declarator is a template-id, translate the parser's template 
8072     // argument list into our AST format.
8073     if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
8074       TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
8075       TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
8076       TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
8077       ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
8078                                          TemplateId->NumArgs);
8079       translateTemplateArguments(TemplateArgsPtr,
8080                                  TemplateArgs);
8081
8082       HasExplicitTemplateArgs = true;
8083
8084       if (NewFD->isInvalidDecl()) {
8085         HasExplicitTemplateArgs = false;
8086       } else if (FunctionTemplate) {
8087         // Function template with explicit template arguments.
8088         Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
8089           << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
8090
8091         HasExplicitTemplateArgs = false;
8092       } else {
8093         assert((isFunctionTemplateSpecialization ||
8094                 D.getDeclSpec().isFriendSpecified()) &&
8095                "should have a 'template<>' for this decl");
8096         // "friend void foo<>(int);" is an implicit specialization decl.
8097         isFunctionTemplateSpecialization = true;
8098       }
8099     } else if (isFriend && isFunctionTemplateSpecialization) {
8100       // This combination is only possible in a recovery case;  the user
8101       // wrote something like:
8102       //   template <> friend void foo(int);
8103       // which we're recovering from as if the user had written:
8104       //   friend void foo<>(int);
8105       // Go ahead and fake up a template id.
8106       HasExplicitTemplateArgs = true;
8107       TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
8108       TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
8109     }
8110
8111     // If it's a friend (and only if it's a friend), it's possible
8112     // that either the specialized function type or the specialized
8113     // template is dependent, and therefore matching will fail.  In
8114     // this case, don't check the specialization yet.
8115     bool InstantiationDependent = false;
8116     if (isFunctionTemplateSpecialization && isFriend &&
8117         (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
8118          TemplateSpecializationType::anyDependentTemplateArguments(
8119             TemplateArgs.getArgumentArray(), TemplateArgs.size(),
8120             InstantiationDependent))) {
8121       assert(HasExplicitTemplateArgs &&
8122              "friend function specialization without template args");
8123       if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
8124                                                        Previous))
8125         NewFD->setInvalidDecl();
8126     } else if (isFunctionTemplateSpecialization) {
8127       if (CurContext->isDependentContext() && CurContext->isRecord() 
8128           && !isFriend) {
8129         isDependentClassScopeExplicitSpecialization = true;
8130         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ? 
8131           diag::ext_function_specialization_in_class :
8132           diag::err_function_specialization_in_class)
8133           << NewFD->getDeclName();
8134       } else if (CheckFunctionTemplateSpecialization(NewFD,
8135                                   (HasExplicitTemplateArgs ? &TemplateArgs
8136                                                            : nullptr),
8137                                                      Previous))
8138         NewFD->setInvalidDecl();
8139       
8140       // C++ [dcl.stc]p1:
8141       //   A storage-class-specifier shall not be specified in an explicit
8142       //   specialization (14.7.3)
8143       FunctionTemplateSpecializationInfo *Info =
8144           NewFD->getTemplateSpecializationInfo();
8145       if (Info && SC != SC_None) {
8146         if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
8147           Diag(NewFD->getLocation(),
8148                diag::err_explicit_specialization_inconsistent_storage_class)
8149             << SC
8150             << FixItHint::CreateRemoval(
8151                                       D.getDeclSpec().getStorageClassSpecLoc());
8152             
8153         else
8154           Diag(NewFD->getLocation(), 
8155                diag::ext_explicit_specialization_storage_class)
8156             << FixItHint::CreateRemoval(
8157                                       D.getDeclSpec().getStorageClassSpecLoc());
8158       }
8159     } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD)) {
8160       if (CheckMemberSpecialization(NewFD, Previous))
8161           NewFD->setInvalidDecl();
8162     }
8163
8164     // Perform semantic checking on the function declaration.
8165     if (!isDependentClassScopeExplicitSpecialization) {
8166       if (!NewFD->isInvalidDecl() && NewFD->isMain())
8167         CheckMain(NewFD, D.getDeclSpec());
8168
8169       if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
8170         CheckMSVCRTEntryPoint(NewFD);
8171
8172       if (!NewFD->isInvalidDecl())
8173         D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
8174                                                     isExplicitSpecialization));
8175       else if (!Previous.empty())
8176         // Recover gracefully from an invalid redeclaration.
8177         D.setRedeclaration(true);
8178     }
8179
8180     assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
8181             Previous.getResultKind() != LookupResult::FoundOverloaded) &&
8182            "previous declaration set still overloaded");
8183
8184     NamedDecl *PrincipalDecl = (FunctionTemplate
8185                                 ? cast<NamedDecl>(FunctionTemplate)
8186                                 : NewFD);
8187
8188     if (isFriend && D.isRedeclaration()) {
8189       AccessSpecifier Access = AS_public;
8190       if (!NewFD->isInvalidDecl())
8191         Access = NewFD->getPreviousDecl()->getAccess();
8192
8193       NewFD->setAccess(Access);
8194       if (FunctionTemplate) FunctionTemplate->setAccess(Access);
8195     }
8196
8197     if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
8198         PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
8199       PrincipalDecl->setNonMemberOperator();
8200
8201     // If we have a function template, check the template parameter
8202     // list. This will check and merge default template arguments.
8203     if (FunctionTemplate) {
8204       FunctionTemplateDecl *PrevTemplate = 
8205                                      FunctionTemplate->getPreviousDecl();
8206       CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
8207                        PrevTemplate ? PrevTemplate->getTemplateParameters()
8208                                     : nullptr,
8209                             D.getDeclSpec().isFriendSpecified()
8210                               ? (D.isFunctionDefinition()
8211                                    ? TPC_FriendFunctionTemplateDefinition
8212                                    : TPC_FriendFunctionTemplate)
8213                               : (D.getCXXScopeSpec().isSet() && 
8214                                  DC && DC->isRecord() && 
8215                                  DC->isDependentContext())
8216                                   ? TPC_ClassTemplateMember
8217                                   : TPC_FunctionTemplate);
8218     }
8219
8220     if (NewFD->isInvalidDecl()) {
8221       // Ignore all the rest of this.
8222     } else if (!D.isRedeclaration()) {
8223       struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
8224                                        AddToScope };
8225       // Fake up an access specifier if it's supposed to be a class member.
8226       if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
8227         NewFD->setAccess(AS_public);
8228
8229       // Qualified decls generally require a previous declaration.
8230       if (D.getCXXScopeSpec().isSet()) {
8231         // ...with the major exception of templated-scope or
8232         // dependent-scope friend declarations.
8233
8234         // TODO: we currently also suppress this check in dependent
8235         // contexts because (1) the parameter depth will be off when
8236         // matching friend templates and (2) we might actually be
8237         // selecting a friend based on a dependent factor.  But there
8238         // are situations where these conditions don't apply and we
8239         // can actually do this check immediately.
8240         if (isFriend &&
8241             (TemplateParamLists.size() ||
8242              D.getCXXScopeSpec().getScopeRep()->isDependent() ||
8243              CurContext->isDependentContext())) {
8244           // ignore these
8245         } else {
8246           // The user tried to provide an out-of-line definition for a
8247           // function that is a member of a class or namespace, but there
8248           // was no such member function declared (C++ [class.mfct]p2,
8249           // C++ [namespace.memdef]p2). For example:
8250           //
8251           // class X {
8252           //   void f() const;
8253           // };
8254           //
8255           // void X::f() { } // ill-formed
8256           //
8257           // Complain about this problem, and attempt to suggest close
8258           // matches (e.g., those that differ only in cv-qualifiers and
8259           // whether the parameter types are references).
8260
8261           if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8262                   *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
8263             AddToScope = ExtraArgs.AddToScope;
8264             return Result;
8265           }
8266         }
8267
8268         // Unqualified local friend declarations are required to resolve
8269         // to something.
8270       } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
8271         if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
8272                 *this, Previous, NewFD, ExtraArgs, true, S)) {
8273           AddToScope = ExtraArgs.AddToScope;
8274           return Result;
8275         }
8276       }
8277     } else if (!D.isFunctionDefinition() &&
8278                isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
8279                !isFriend && !isFunctionTemplateSpecialization &&
8280                !isExplicitSpecialization) {
8281       // An out-of-line member function declaration must also be a
8282       // definition (C++ [class.mfct]p2).
8283       // Note that this is not the case for explicit specializations of
8284       // function templates or member functions of class templates, per
8285       // C++ [temp.expl.spec]p2. We also allow these declarations as an 
8286       // extension for compatibility with old SWIG code which likes to 
8287       // generate them.
8288       Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
8289         << D.getCXXScopeSpec().getRange();
8290     }
8291   }
8292
8293   ProcessPragmaWeak(S, NewFD);
8294   checkAttributesAfterMerging(*this, *NewFD);
8295
8296   AddKnownFunctionAttributes(NewFD);
8297
8298   if (NewFD->hasAttr<OverloadableAttr>() && 
8299       !NewFD->getType()->getAs<FunctionProtoType>()) {
8300     Diag(NewFD->getLocation(),
8301          diag::err_attribute_overloadable_no_prototype)
8302       << NewFD;
8303
8304     // Turn this into a variadic function with no parameters.
8305     const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
8306     FunctionProtoType::ExtProtoInfo EPI(
8307         Context.getDefaultCallingConvention(true, false));
8308     EPI.Variadic = true;
8309     EPI.ExtInfo = FT->getExtInfo();
8310
8311     QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
8312     NewFD->setType(R);
8313   }
8314
8315   // If there's a #pragma GCC visibility in scope, and this isn't a class
8316   // member, set the visibility of this function.
8317   if (!DC->isRecord() && NewFD->isExternallyVisible())
8318     AddPushedVisibilityAttribute(NewFD);
8319
8320   // If there's a #pragma clang arc_cf_code_audited in scope, consider
8321   // marking the function.
8322   AddCFAuditedAttribute(NewFD);
8323
8324   // If this is a function definition, check if we have to apply optnone due to
8325   // a pragma.
8326   if(D.isFunctionDefinition())
8327     AddRangeBasedOptnone(NewFD);
8328
8329   // If this is the first declaration of an extern C variable, update
8330   // the map of such variables.
8331   if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
8332       isIncompleteDeclExternC(*this, NewFD))
8333     RegisterLocallyScopedExternCDecl(NewFD, S);
8334
8335   // Set this FunctionDecl's range up to the right paren.
8336   NewFD->setRangeEnd(D.getSourceRange().getEnd());
8337
8338   if (D.isRedeclaration() && !Previous.empty()) {
8339     checkDLLAttributeRedeclaration(
8340         *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD,
8341         isExplicitSpecialization || isFunctionTemplateSpecialization);
8342   }
8343
8344   if (getLangOpts().CUDA) {
8345     IdentifierInfo *II = NewFD->getIdentifier();
8346     if (II && II->isStr("cudaConfigureCall") && !NewFD->isInvalidDecl() &&
8347         NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
8348       if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
8349         Diag(NewFD->getLocation(), diag::err_config_scalar_return);
8350
8351       Context.setcudaConfigureCallDecl(NewFD);
8352     }
8353
8354     // Variadic functions, other than a *declaration* of printf, are not allowed
8355     // in device-side CUDA code, unless someone passed
8356     // -fcuda-allow-variadic-functions.
8357     if (!getLangOpts().CUDAAllowVariadicFunctions && NewFD->isVariadic() &&
8358         (NewFD->hasAttr<CUDADeviceAttr>() ||
8359          NewFD->hasAttr<CUDAGlobalAttr>()) &&
8360         !(II && II->isStr("printf") && NewFD->isExternC() &&
8361           !D.isFunctionDefinition())) {
8362       Diag(NewFD->getLocation(), diag::err_variadic_device_fn);
8363     }
8364   }
8365
8366   if (getLangOpts().CPlusPlus) {
8367     if (FunctionTemplate) {
8368       if (NewFD->isInvalidDecl())
8369         FunctionTemplate->setInvalidDecl();
8370       return FunctionTemplate;
8371     }
8372   }
8373
8374   if (NewFD->hasAttr<OpenCLKernelAttr>()) {
8375     // OpenCL v1.2 s6.8 static is invalid for kernel functions.
8376     if ((getLangOpts().OpenCLVersion >= 120)
8377         && (SC == SC_Static)) {
8378       Diag(D.getIdentifierLoc(), diag::err_static_kernel);
8379       D.setInvalidType();
8380     }
8381     
8382     // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
8383     if (!NewFD->getReturnType()->isVoidType()) {
8384       SourceRange RTRange = NewFD->getReturnTypeSourceRange();
8385       Diag(D.getIdentifierLoc(), diag::err_expected_kernel_void_return_type)
8386           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
8387                                 : FixItHint());
8388       D.setInvalidType();
8389     }
8390
8391     llvm::SmallPtrSet<const Type *, 16> ValidTypes;
8392     for (auto Param : NewFD->params())
8393       checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
8394   }
8395   for (FunctionDecl::param_iterator PI = NewFD->param_begin(),
8396        PE = NewFD->param_end(); PI != PE; ++PI) {
8397     ParmVarDecl *Param = *PI;
8398     QualType PT = Param->getType();
8399
8400     // OpenCL 2.0 pipe restrictions forbids pipe packet types to be non-value
8401     // types.
8402     if (getLangOpts().OpenCLVersion >= 200) {
8403       if(const PipeType *PipeTy = PT->getAs<PipeType>()) {
8404         QualType ElemTy = PipeTy->getElementType();
8405           if (ElemTy->isReferenceType() || ElemTy->isPointerType()) {
8406             Diag(Param->getTypeSpecStartLoc(), diag::err_reference_pipe_type );
8407             D.setInvalidType();
8408           }
8409       }
8410     }
8411   }
8412
8413   MarkUnusedFileScopedDecl(NewFD);
8414
8415   // Here we have an function template explicit specialization at class scope.
8416   // The actually specialization will be postponed to template instatiation
8417   // time via the ClassScopeFunctionSpecializationDecl node.
8418   if (isDependentClassScopeExplicitSpecialization) {
8419     ClassScopeFunctionSpecializationDecl *NewSpec =
8420                          ClassScopeFunctionSpecializationDecl::Create(
8421                                 Context, CurContext, SourceLocation(), 
8422                                 cast<CXXMethodDecl>(NewFD),
8423                                 HasExplicitTemplateArgs, TemplateArgs);
8424     CurContext->addDecl(NewSpec);
8425     AddToScope = false;
8426   }
8427
8428   return NewFD;
8429 }
8430
8431 /// \brief Perform semantic checking of a new function declaration.
8432 ///
8433 /// Performs semantic analysis of the new function declaration
8434 /// NewFD. This routine performs all semantic checking that does not
8435 /// require the actual declarator involved in the declaration, and is
8436 /// used both for the declaration of functions as they are parsed
8437 /// (called via ActOnDeclarator) and for the declaration of functions
8438 /// that have been instantiated via C++ template instantiation (called
8439 /// via InstantiateDecl).
8440 ///
8441 /// \param IsExplicitSpecialization whether this new function declaration is
8442 /// an explicit specialization of the previous declaration.
8443 ///
8444 /// This sets NewFD->isInvalidDecl() to true if there was an error.
8445 ///
8446 /// \returns true if the function declaration is a redeclaration.
8447 bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
8448                                     LookupResult &Previous,
8449                                     bool IsExplicitSpecialization) {
8450   assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
8451          "Variably modified return types are not handled here");
8452
8453   // Determine whether the type of this function should be merged with
8454   // a previous visible declaration. This never happens for functions in C++,
8455   // and always happens in C if the previous declaration was visible.
8456   bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
8457                                !Previous.isShadowed();
8458
8459   bool Redeclaration = false;
8460   NamedDecl *OldDecl = nullptr;
8461
8462   // Merge or overload the declaration with an existing declaration of
8463   // the same name, if appropriate.
8464   if (!Previous.empty()) {
8465     // Determine whether NewFD is an overload of PrevDecl or
8466     // a declaration that requires merging. If it's an overload,
8467     // there's no more work to do here; we'll just add the new
8468     // function to the scope.
8469     if (!AllowOverloadingOfFunction(Previous, Context)) {
8470       NamedDecl *Candidate = Previous.getRepresentativeDecl();
8471       if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
8472         Redeclaration = true;
8473         OldDecl = Candidate;
8474       }
8475     } else {
8476       switch (CheckOverload(S, NewFD, Previous, OldDecl,
8477                             /*NewIsUsingDecl*/ false)) {
8478       case Ovl_Match:
8479         Redeclaration = true;
8480         break;
8481
8482       case Ovl_NonFunction:
8483         Redeclaration = true;
8484         break;
8485
8486       case Ovl_Overload:
8487         Redeclaration = false;
8488         break;
8489       }
8490
8491       if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
8492         // If a function name is overloadable in C, then every function
8493         // with that name must be marked "overloadable".
8494         Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
8495           << Redeclaration << NewFD;
8496         NamedDecl *OverloadedDecl = nullptr;
8497         if (Redeclaration)
8498           OverloadedDecl = OldDecl;
8499         else if (!Previous.empty())
8500           OverloadedDecl = Previous.getRepresentativeDecl();
8501         if (OverloadedDecl)
8502           Diag(OverloadedDecl->getLocation(),
8503                diag::note_attribute_overloadable_prev_overload);
8504         NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
8505       }
8506     }
8507   }
8508
8509   // Check for a previous extern "C" declaration with this name.
8510   if (!Redeclaration &&
8511       checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
8512     if (!Previous.empty()) {
8513       // This is an extern "C" declaration with the same name as a previous
8514       // declaration, and thus redeclares that entity...
8515       Redeclaration = true;
8516       OldDecl = Previous.getFoundDecl();
8517       MergeTypeWithPrevious = false;
8518
8519       // ... except in the presence of __attribute__((overloadable)).
8520       if (OldDecl->hasAttr<OverloadableAttr>()) {
8521         if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
8522           Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
8523             << Redeclaration << NewFD;
8524           Diag(Previous.getFoundDecl()->getLocation(),
8525                diag::note_attribute_overloadable_prev_overload);
8526           NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
8527         }
8528         if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
8529           Redeclaration = false;
8530           OldDecl = nullptr;
8531         }
8532       }
8533     }
8534   }
8535
8536   // C++11 [dcl.constexpr]p8:
8537   //   A constexpr specifier for a non-static member function that is not
8538   //   a constructor declares that member function to be const.
8539   //
8540   // This needs to be delayed until we know whether this is an out-of-line
8541   // definition of a static member function.
8542   //
8543   // This rule is not present in C++1y, so we produce a backwards
8544   // compatibility warning whenever it happens in C++11.
8545   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
8546   if (!getLangOpts().CPlusPlus14 && MD && MD->isConstexpr() &&
8547       !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
8548       (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
8549     CXXMethodDecl *OldMD = nullptr;
8550     if (OldDecl)
8551       OldMD = dyn_cast_or_null<CXXMethodDecl>(OldDecl->getAsFunction());
8552     if (!OldMD || !OldMD->isStatic()) {
8553       const FunctionProtoType *FPT =
8554         MD->getType()->castAs<FunctionProtoType>();
8555       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8556       EPI.TypeQuals |= Qualifiers::Const;
8557       MD->setType(Context.getFunctionType(FPT->getReturnType(),
8558                                           FPT->getParamTypes(), EPI));
8559
8560       // Warn that we did this, if we're not performing template instantiation.
8561       // In that case, we'll have warned already when the template was defined.
8562       if (ActiveTemplateInstantiations.empty()) {
8563         SourceLocation AddConstLoc;
8564         if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
8565                 .IgnoreParens().getAs<FunctionTypeLoc>())
8566           AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
8567
8568         Diag(MD->getLocation(), diag::warn_cxx14_compat_constexpr_not_const)
8569           << FixItHint::CreateInsertion(AddConstLoc, " const");
8570       }
8571     }
8572   }
8573
8574   if (Redeclaration) {
8575     // NewFD and OldDecl represent declarations that need to be
8576     // merged.
8577     if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
8578       NewFD->setInvalidDecl();
8579       return Redeclaration;
8580     }
8581
8582     Previous.clear();
8583     Previous.addDecl(OldDecl);
8584
8585     if (FunctionTemplateDecl *OldTemplateDecl
8586                                   = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
8587       NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
8588       FunctionTemplateDecl *NewTemplateDecl
8589         = NewFD->getDescribedFunctionTemplate();
8590       assert(NewTemplateDecl && "Template/non-template mismatch");
8591       if (CXXMethodDecl *Method 
8592             = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
8593         Method->setAccess(OldTemplateDecl->getAccess());
8594         NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
8595       }
8596       
8597       // If this is an explicit specialization of a member that is a function
8598       // template, mark it as a member specialization.
8599       if (IsExplicitSpecialization && 
8600           NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
8601         NewTemplateDecl->setMemberSpecialization();
8602         assert(OldTemplateDecl->isMemberSpecialization());
8603       }
8604       
8605     } else {
8606       // This needs to happen first so that 'inline' propagates.
8607       NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
8608
8609       if (isa<CXXMethodDecl>(NewFD))
8610         NewFD->setAccess(OldDecl->getAccess());
8611     }
8612   }
8613
8614   // Semantic checking for this function declaration (in isolation).
8615
8616   if (getLangOpts().CPlusPlus) {
8617     // C++-specific checks.
8618     if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
8619       CheckConstructor(Constructor);
8620     } else if (CXXDestructorDecl *Destructor = 
8621                 dyn_cast<CXXDestructorDecl>(NewFD)) {
8622       CXXRecordDecl *Record = Destructor->getParent();
8623       QualType ClassType = Context.getTypeDeclType(Record);
8624       
8625       // FIXME: Shouldn't we be able to perform this check even when the class
8626       // type is dependent? Both gcc and edg can handle that.
8627       if (!ClassType->isDependentType()) {
8628         DeclarationName Name
8629           = Context.DeclarationNames.getCXXDestructorName(
8630                                         Context.getCanonicalType(ClassType));
8631         if (NewFD->getDeclName() != Name) {
8632           Diag(NewFD->getLocation(), diag::err_destructor_name);
8633           NewFD->setInvalidDecl();
8634           return Redeclaration;
8635         }
8636       }
8637     } else if (CXXConversionDecl *Conversion
8638                = dyn_cast<CXXConversionDecl>(NewFD)) {
8639       ActOnConversionDeclarator(Conversion);
8640     }
8641
8642     // Find any virtual functions that this function overrides.
8643     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
8644       if (!Method->isFunctionTemplateSpecialization() && 
8645           !Method->getDescribedFunctionTemplate() &&
8646           Method->isCanonicalDecl()) {
8647         if (AddOverriddenMethods(Method->getParent(), Method)) {
8648           // If the function was marked as "static", we have a problem.
8649           if (NewFD->getStorageClass() == SC_Static) {
8650             ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
8651           }
8652         }
8653       }
8654       
8655       if (Method->isStatic())
8656         checkThisInStaticMemberFunctionType(Method);
8657     }
8658
8659     // Extra checking for C++ overloaded operators (C++ [over.oper]).
8660     if (NewFD->isOverloadedOperator() &&
8661         CheckOverloadedOperatorDeclaration(NewFD)) {
8662       NewFD->setInvalidDecl();
8663       return Redeclaration;
8664     }
8665
8666     // Extra checking for C++0x literal operators (C++0x [over.literal]).
8667     if (NewFD->getLiteralIdentifier() &&
8668         CheckLiteralOperatorDeclaration(NewFD)) {
8669       NewFD->setInvalidDecl();
8670       return Redeclaration;
8671     }
8672
8673     // In C++, check default arguments now that we have merged decls. Unless
8674     // the lexical context is the class, because in this case this is done
8675     // during delayed parsing anyway.
8676     if (!CurContext->isRecord())
8677       CheckCXXDefaultArguments(NewFD);
8678
8679     // If this function declares a builtin function, check the type of this
8680     // declaration against the expected type for the builtin. 
8681     if (unsigned BuiltinID = NewFD->getBuiltinID()) {
8682       ASTContext::GetBuiltinTypeError Error;
8683       LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
8684       QualType T = Context.GetBuiltinType(BuiltinID, Error);
8685       if (!T.isNull() && !Context.hasSameType(T, NewFD->getType())) {
8686         // The type of this function differs from the type of the builtin,
8687         // so forget about the builtin entirely.
8688         Context.BuiltinInfo.forgetBuiltin(BuiltinID, Context.Idents);
8689       }
8690     }
8691
8692     // If this function is declared as being extern "C", then check to see if 
8693     // the function returns a UDT (class, struct, or union type) that is not C
8694     // compatible, and if it does, warn the user.
8695     // But, issue any diagnostic on the first declaration only.
8696     if (Previous.empty() && NewFD->isExternC()) {
8697       QualType R = NewFD->getReturnType();
8698       if (R->isIncompleteType() && !R->isVoidType())
8699         Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
8700             << NewFD << R;
8701       else if (!R.isPODType(Context) && !R->isVoidType() &&
8702                !R->isObjCObjectPointerType())
8703         Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
8704     }
8705   }
8706   return Redeclaration;
8707 }
8708
8709 void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
8710   // C++11 [basic.start.main]p3:
8711   //   A program that [...] declares main to be inline, static or
8712   //   constexpr is ill-formed.
8713   // C11 6.7.4p4:  In a hosted environment, no function specifier(s) shall
8714   //   appear in a declaration of main.
8715   // static main is not an error under C99, but we should warn about it.
8716   // We accept _Noreturn main as an extension.
8717   if (FD->getStorageClass() == SC_Static)
8718     Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus 
8719          ? diag::err_static_main : diag::warn_static_main) 
8720       << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
8721   if (FD->isInlineSpecified())
8722     Diag(DS.getInlineSpecLoc(), diag::err_inline_main) 
8723       << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
8724   if (DS.isNoreturnSpecified()) {
8725     SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
8726     SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
8727     Diag(NoreturnLoc, diag::ext_noreturn_main);
8728     Diag(NoreturnLoc, diag::note_main_remove_noreturn)
8729       << FixItHint::CreateRemoval(NoreturnRange);
8730   }
8731   if (FD->isConstexpr()) {
8732     Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
8733       << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
8734     FD->setConstexpr(false);
8735   }
8736
8737   if (getLangOpts().OpenCL) {
8738     Diag(FD->getLocation(), diag::err_opencl_no_main)
8739         << FD->hasAttr<OpenCLKernelAttr>();
8740     FD->setInvalidDecl();
8741     return;
8742   }
8743
8744   QualType T = FD->getType();
8745   assert(T->isFunctionType() && "function decl is not of function type");
8746   const FunctionType* FT = T->castAs<FunctionType>();
8747
8748   if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
8749     // In C with GNU extensions we allow main() to have non-integer return
8750     // type, but we should warn about the extension, and we disable the
8751     // implicit-return-zero rule.
8752
8753     // GCC in C mode accepts qualified 'int'.
8754     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
8755       FD->setHasImplicitReturnZero(true);
8756     else {
8757       Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
8758       SourceRange RTRange = FD->getReturnTypeSourceRange();
8759       if (RTRange.isValid())
8760         Diag(RTRange.getBegin(), diag::note_main_change_return_type)
8761             << FixItHint::CreateReplacement(RTRange, "int");
8762     }
8763   } else {
8764     // In C and C++, main magically returns 0 if you fall off the end;
8765     // set the flag which tells us that.
8766     // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
8767
8768     // All the standards say that main() should return 'int'.
8769     if (Context.hasSameType(FT->getReturnType(), Context.IntTy))
8770       FD->setHasImplicitReturnZero(true);
8771     else {
8772       // Otherwise, this is just a flat-out error.
8773       SourceRange RTRange = FD->getReturnTypeSourceRange();
8774       Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
8775           << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "int")
8776                                 : FixItHint());
8777       FD->setInvalidDecl(true);
8778     }
8779   }
8780
8781   // Treat protoless main() as nullary.
8782   if (isa<FunctionNoProtoType>(FT)) return;
8783
8784   const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
8785   unsigned nparams = FTP->getNumParams();
8786   assert(FD->getNumParams() == nparams);
8787
8788   bool HasExtraParameters = (nparams > 3);
8789
8790   if (FTP->isVariadic()) {
8791     Diag(FD->getLocation(), diag::ext_variadic_main);
8792     // FIXME: if we had information about the location of the ellipsis, we
8793     // could add a FixIt hint to remove it as a parameter.
8794   }
8795
8796   // Darwin passes an undocumented fourth argument of type char**.  If
8797   // other platforms start sprouting these, the logic below will start
8798   // getting shifty.
8799   if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
8800     HasExtraParameters = false;
8801
8802   if (HasExtraParameters) {
8803     Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
8804     FD->setInvalidDecl(true);
8805     nparams = 3;
8806   }
8807
8808   // FIXME: a lot of the following diagnostics would be improved
8809   // if we had some location information about types.
8810
8811   QualType CharPP =
8812     Context.getPointerType(Context.getPointerType(Context.CharTy));
8813   QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
8814
8815   for (unsigned i = 0; i < nparams; ++i) {
8816     QualType AT = FTP->getParamType(i);
8817
8818     bool mismatch = true;
8819
8820     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
8821       mismatch = false;
8822     else if (Expected[i] == CharPP) {
8823       // As an extension, the following forms are okay:
8824       //   char const **
8825       //   char const * const *
8826       //   char * const *
8827
8828       QualifierCollector qs;
8829       const PointerType* PT;
8830       if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
8831           (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
8832           Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
8833                               Context.CharTy)) {
8834         qs.removeConst();
8835         mismatch = !qs.empty();
8836       }
8837     }
8838
8839     if (mismatch) {
8840       Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
8841       // TODO: suggest replacing given type with expected type
8842       FD->setInvalidDecl(true);
8843     }
8844   }
8845
8846   if (nparams == 1 && !FD->isInvalidDecl()) {
8847     Diag(FD->getLocation(), diag::warn_main_one_arg);
8848   }
8849   
8850   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
8851     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
8852     FD->setInvalidDecl();
8853   }
8854 }
8855
8856 void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
8857   QualType T = FD->getType();
8858   assert(T->isFunctionType() && "function decl is not of function type");
8859   const FunctionType *FT = T->castAs<FunctionType>();
8860
8861   // Set an implicit return of 'zero' if the function can return some integral,
8862   // enumeration, pointer or nullptr type.
8863   if (FT->getReturnType()->isIntegralOrEnumerationType() ||
8864       FT->getReturnType()->isAnyPointerType() ||
8865       FT->getReturnType()->isNullPtrType())
8866     // DllMain is exempt because a return value of zero means it failed.
8867     if (FD->getName() != "DllMain")
8868       FD->setHasImplicitReturnZero(true);
8869
8870   if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
8871     Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
8872     FD->setInvalidDecl();
8873   }
8874 }
8875
8876 bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
8877   // FIXME: Need strict checking.  In C89, we need to check for
8878   // any assignment, increment, decrement, function-calls, or
8879   // commas outside of a sizeof.  In C99, it's the same list,
8880   // except that the aforementioned are allowed in unevaluated
8881   // expressions.  Everything else falls under the
8882   // "may accept other forms of constant expressions" exception.
8883   // (We never end up here for C++, so the constant expression
8884   // rules there don't matter.)
8885   const Expr *Culprit;
8886   if (Init->isConstantInitializer(Context, false, &Culprit))
8887     return false;
8888   Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
8889     << Culprit->getSourceRange();
8890   return true;
8891 }
8892
8893 namespace {
8894   // Visits an initialization expression to see if OrigDecl is evaluated in
8895   // its own initialization and throws a warning if it does.
8896   class SelfReferenceChecker
8897       : public EvaluatedExprVisitor<SelfReferenceChecker> {
8898     Sema &S;
8899     Decl *OrigDecl;
8900     bool isRecordType;
8901     bool isPODType;
8902     bool isReferenceType;
8903
8904     bool isInitList;
8905     llvm::SmallVector<unsigned, 4> InitFieldIndex;
8906
8907   public:
8908     typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
8909
8910     SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
8911                                                     S(S), OrigDecl(OrigDecl) {
8912       isPODType = false;
8913       isRecordType = false;
8914       isReferenceType = false;
8915       isInitList = false;
8916       if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
8917         isPODType = VD->getType().isPODType(S.Context);
8918         isRecordType = VD->getType()->isRecordType();
8919         isReferenceType = VD->getType()->isReferenceType();
8920       }
8921     }
8922
8923     // For most expressions, just call the visitor.  For initializer lists,
8924     // track the index of the field being initialized since fields are
8925     // initialized in order allowing use of previously initialized fields.
8926     void CheckExpr(Expr *E) {
8927       InitListExpr *InitList = dyn_cast<InitListExpr>(E);
8928       if (!InitList) {
8929         Visit(E);
8930         return;
8931       }
8932
8933       // Track and increment the index here.
8934       isInitList = true;
8935       InitFieldIndex.push_back(0);
8936       for (auto Child : InitList->children()) {
8937         CheckExpr(cast<Expr>(Child));
8938         ++InitFieldIndex.back();
8939       }
8940       InitFieldIndex.pop_back();
8941     }
8942
8943     // Returns true if MemberExpr is checked and no futher checking is needed.
8944     // Returns false if additional checking is required.
8945     bool CheckInitListMemberExpr(MemberExpr *E, bool CheckReference) {
8946       llvm::SmallVector<FieldDecl*, 4> Fields;
8947       Expr *Base = E;
8948       bool ReferenceField = false;
8949
8950       // Get the field memebers used.
8951       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
8952         FieldDecl *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
8953         if (!FD)
8954           return false;
8955         Fields.push_back(FD);
8956         if (FD->getType()->isReferenceType())
8957           ReferenceField = true;
8958         Base = ME->getBase()->IgnoreParenImpCasts();
8959       }
8960
8961       // Keep checking only if the base Decl is the same.
8962       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base);
8963       if (!DRE || DRE->getDecl() != OrigDecl)
8964         return false;
8965
8966       // A reference field can be bound to an unininitialized field.
8967       if (CheckReference && !ReferenceField)
8968         return true;
8969
8970       // Convert FieldDecls to their index number.
8971       llvm::SmallVector<unsigned, 4> UsedFieldIndex;
8972       for (const FieldDecl *I : llvm::reverse(Fields))
8973         UsedFieldIndex.push_back(I->getFieldIndex());
8974
8975       // See if a warning is needed by checking the first difference in index
8976       // numbers.  If field being used has index less than the field being
8977       // initialized, then the use is safe.
8978       for (auto UsedIter = UsedFieldIndex.begin(),
8979                 UsedEnd = UsedFieldIndex.end(),
8980                 OrigIter = InitFieldIndex.begin(),
8981                 OrigEnd = InitFieldIndex.end();
8982            UsedIter != UsedEnd && OrigIter != OrigEnd; ++UsedIter, ++OrigIter) {
8983         if (*UsedIter < *OrigIter)
8984           return true;
8985         if (*UsedIter > *OrigIter)
8986           break;
8987       }
8988
8989       // TODO: Add a different warning which will print the field names.
8990       HandleDeclRefExpr(DRE);
8991       return true;
8992     }
8993
8994     // For most expressions, the cast is directly above the DeclRefExpr.
8995     // For conditional operators, the cast can be outside the conditional
8996     // operator if both expressions are DeclRefExpr's.
8997     void HandleValue(Expr *E) {
8998       E = E->IgnoreParens();
8999       if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
9000         HandleDeclRefExpr(DRE);
9001         return;
9002       }
9003
9004       if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
9005         Visit(CO->getCond());
9006         HandleValue(CO->getTrueExpr());
9007         HandleValue(CO->getFalseExpr());
9008         return;
9009       }
9010
9011       if (BinaryConditionalOperator *BCO =
9012               dyn_cast<BinaryConditionalOperator>(E)) {
9013         Visit(BCO->getCond());
9014         HandleValue(BCO->getFalseExpr());
9015         return;
9016       }
9017
9018       if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
9019         HandleValue(OVE->getSourceExpr());
9020         return;
9021       }
9022
9023       if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
9024         if (BO->getOpcode() == BO_Comma) {
9025           Visit(BO->getLHS());
9026           HandleValue(BO->getRHS());
9027           return;
9028         }
9029       }
9030
9031       if (isa<MemberExpr>(E)) {
9032         if (isInitList) {
9033           if (CheckInitListMemberExpr(cast<MemberExpr>(E),
9034                                       false /*CheckReference*/))
9035             return;
9036         }
9037
9038         Expr *Base = E->IgnoreParenImpCasts();
9039         while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9040           // Check for static member variables and don't warn on them.
9041           if (!isa<FieldDecl>(ME->getMemberDecl()))
9042             return;
9043           Base = ME->getBase()->IgnoreParenImpCasts();
9044         }
9045         if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
9046           HandleDeclRefExpr(DRE);
9047         return;
9048       }
9049
9050       Visit(E);
9051     }
9052
9053     // Reference types not handled in HandleValue are handled here since all
9054     // uses of references are bad, not just r-value uses.
9055     void VisitDeclRefExpr(DeclRefExpr *E) {
9056       if (isReferenceType)
9057         HandleDeclRefExpr(E);
9058     }
9059
9060     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
9061       if (E->getCastKind() == CK_LValueToRValue) {
9062         HandleValue(E->getSubExpr());
9063         return;
9064       }
9065
9066       Inherited::VisitImplicitCastExpr(E);
9067     }
9068
9069     void VisitMemberExpr(MemberExpr *E) {
9070       if (isInitList) {
9071         if (CheckInitListMemberExpr(E, true /*CheckReference*/))
9072           return;
9073       }
9074
9075       // Don't warn on arrays since they can be treated as pointers.
9076       if (E->getType()->canDecayToPointerType()) return;
9077
9078       // Warn when a non-static method call is followed by non-static member
9079       // field accesses, which is followed by a DeclRefExpr.
9080       CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
9081       bool Warn = (MD && !MD->isStatic());
9082       Expr *Base = E->getBase()->IgnoreParenImpCasts();
9083       while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
9084         if (!isa<FieldDecl>(ME->getMemberDecl()))
9085           Warn = false;
9086         Base = ME->getBase()->IgnoreParenImpCasts();
9087       }
9088
9089       if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
9090         if (Warn)
9091           HandleDeclRefExpr(DRE);
9092         return;
9093       }
9094
9095       // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
9096       // Visit that expression.
9097       Visit(Base);
9098     }
9099
9100     void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
9101       Expr *Callee = E->getCallee();
9102
9103       if (isa<UnresolvedLookupExpr>(Callee))
9104         return Inherited::VisitCXXOperatorCallExpr(E);
9105
9106       Visit(Callee);
9107       for (auto Arg: E->arguments())
9108         HandleValue(Arg->IgnoreParenImpCasts());
9109     }
9110
9111     void VisitUnaryOperator(UnaryOperator *E) {
9112       // For POD record types, addresses of its own members are well-defined.
9113       if (E->getOpcode() == UO_AddrOf && isRecordType &&
9114           isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
9115         if (!isPODType)
9116           HandleValue(E->getSubExpr());
9117         return;
9118       }
9119
9120       if (E->isIncrementDecrementOp()) {
9121         HandleValue(E->getSubExpr());
9122         return;
9123       }
9124
9125       Inherited::VisitUnaryOperator(E);
9126     }
9127
9128     void VisitObjCMessageExpr(ObjCMessageExpr *E) {}
9129
9130     void VisitCXXConstructExpr(CXXConstructExpr *E) {
9131       if (E->getConstructor()->isCopyConstructor()) {
9132         Expr *ArgExpr = E->getArg(0);
9133         if (InitListExpr *ILE = dyn_cast<InitListExpr>(ArgExpr))
9134           if (ILE->getNumInits() == 1)
9135             ArgExpr = ILE->getInit(0);
9136         if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgExpr))
9137           if (ICE->getCastKind() == CK_NoOp)
9138             ArgExpr = ICE->getSubExpr();
9139         HandleValue(ArgExpr);
9140         return;
9141       }
9142       Inherited::VisitCXXConstructExpr(E);
9143     }
9144
9145     void VisitCallExpr(CallExpr *E) {
9146       // Treat std::move as a use.
9147       if (E->getNumArgs() == 1) {
9148         if (FunctionDecl *FD = E->getDirectCallee()) {
9149           if (FD->isInStdNamespace() && FD->getIdentifier() &&
9150               FD->getIdentifier()->isStr("move")) {
9151             HandleValue(E->getArg(0));
9152             return;
9153           }
9154         }
9155       }
9156
9157       Inherited::VisitCallExpr(E);
9158     }
9159
9160     void VisitBinaryOperator(BinaryOperator *E) {
9161       if (E->isCompoundAssignmentOp()) {
9162         HandleValue(E->getLHS());
9163         Visit(E->getRHS());
9164         return;
9165       }
9166
9167       Inherited::VisitBinaryOperator(E);
9168     }
9169
9170     // A custom visitor for BinaryConditionalOperator is needed because the
9171     // regular visitor would check the condition and true expression separately
9172     // but both point to the same place giving duplicate diagnostics.
9173     void VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
9174       Visit(E->getCond());
9175       Visit(E->getFalseExpr());
9176     }
9177
9178     void HandleDeclRefExpr(DeclRefExpr *DRE) {
9179       Decl* ReferenceDecl = DRE->getDecl();
9180       if (OrigDecl != ReferenceDecl) return;
9181       unsigned diag;
9182       if (isReferenceType) {
9183         diag = diag::warn_uninit_self_reference_in_reference_init;
9184       } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
9185         diag = diag::warn_static_self_reference_in_init;
9186       } else if (isa<TranslationUnitDecl>(OrigDecl->getDeclContext()) ||
9187                  isa<NamespaceDecl>(OrigDecl->getDeclContext()) ||
9188                  DRE->getDecl()->getType()->isRecordType()) {
9189         diag = diag::warn_uninit_self_reference_in_init;
9190       } else {
9191         // Local variables will be handled by the CFG analysis.
9192         return;
9193       }
9194
9195       S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
9196                             S.PDiag(diag)
9197                               << DRE->getNameInfo().getName()
9198                               << OrigDecl->getLocation()
9199                               << DRE->getSourceRange());
9200     }
9201   };
9202
9203   /// CheckSelfReference - Warns if OrigDecl is used in expression E.
9204   static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
9205                                  bool DirectInit) {
9206     // Parameters arguments are occassionially constructed with itself,
9207     // for instance, in recursive functions.  Skip them.
9208     if (isa<ParmVarDecl>(OrigDecl))
9209       return;
9210
9211     E = E->IgnoreParens();
9212
9213     // Skip checking T a = a where T is not a record or reference type.
9214     // Doing so is a way to silence uninitialized warnings.
9215     if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
9216       if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
9217         if (ICE->getCastKind() == CK_LValueToRValue)
9218           if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
9219             if (DRE->getDecl() == OrigDecl)
9220               return;
9221
9222     SelfReferenceChecker(S, OrigDecl).CheckExpr(E);
9223   }
9224 } // end anonymous namespace
9225
9226 QualType Sema::deduceVarTypeFromInitializer(VarDecl *VDecl,
9227                                             DeclarationName Name, QualType Type,
9228                                             TypeSourceInfo *TSI,
9229                                             SourceRange Range, bool DirectInit,
9230                                             Expr *Init) {
9231   bool IsInitCapture = !VDecl;
9232   assert((!VDecl || !VDecl->isInitCapture()) &&
9233          "init captures are expected to be deduced prior to initialization");
9234
9235   ArrayRef<Expr *> DeduceInits = Init;
9236   if (DirectInit) {
9237     if (auto *PL = dyn_cast<ParenListExpr>(Init))
9238       DeduceInits = PL->exprs();
9239     else if (auto *IL = dyn_cast<InitListExpr>(Init))
9240       DeduceInits = IL->inits();
9241   }
9242
9243   // Deduction only works if we have exactly one source expression.
9244   if (DeduceInits.empty()) {
9245     // It isn't possible to write this directly, but it is possible to
9246     // end up in this situation with "auto x(some_pack...);"
9247     Diag(Init->getLocStart(), IsInitCapture
9248                                   ? diag::err_init_capture_no_expression
9249                                   : diag::err_auto_var_init_no_expression)
9250         << Name << Type << Range;
9251     return QualType();
9252   }
9253
9254   if (DeduceInits.size() > 1) {
9255     Diag(DeduceInits[1]->getLocStart(),
9256          IsInitCapture ? diag::err_init_capture_multiple_expressions
9257                        : diag::err_auto_var_init_multiple_expressions)
9258         << Name << Type << Range;
9259     return QualType();
9260   }
9261
9262   Expr *DeduceInit = DeduceInits[0];
9263   if (DirectInit && isa<InitListExpr>(DeduceInit)) {
9264     Diag(Init->getLocStart(), IsInitCapture
9265                                   ? diag::err_init_capture_paren_braces
9266                                   : diag::err_auto_var_init_paren_braces)
9267         << isa<InitListExpr>(Init) << Name << Type << Range;
9268     return QualType();
9269   }
9270
9271   // Expressions default to 'id' when we're in a debugger.
9272   bool DefaultedAnyToId = false;
9273   if (getLangOpts().DebuggerCastResultToId &&
9274       Init->getType() == Context.UnknownAnyTy && !IsInitCapture) {
9275     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
9276     if (Result.isInvalid()) {
9277       return QualType();
9278     }
9279     Init = Result.get();
9280     DefaultedAnyToId = true;
9281   }
9282
9283   QualType DeducedType;
9284   if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) {
9285     if (!IsInitCapture)
9286       DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
9287     else if (isa<InitListExpr>(Init))
9288       Diag(Range.getBegin(),
9289            diag::err_init_capture_deduction_failure_from_init_list)
9290           << Name
9291           << (DeduceInit->getType().isNull() ? TSI->getType()
9292                                              : DeduceInit->getType())
9293           << DeduceInit->getSourceRange();
9294     else
9295       Diag(Range.getBegin(), diag::err_init_capture_deduction_failure)
9296           << Name << TSI->getType()
9297           << (DeduceInit->getType().isNull() ? TSI->getType()
9298                                              : DeduceInit->getType())
9299           << DeduceInit->getSourceRange();
9300   }
9301
9302   // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
9303   // 'id' instead of a specific object type prevents most of our usual
9304   // checks.
9305   // We only want to warn outside of template instantiations, though:
9306   // inside a template, the 'id' could have come from a parameter.
9307   if (ActiveTemplateInstantiations.empty() && !DefaultedAnyToId &&
9308       !IsInitCapture && !DeducedType.isNull() && DeducedType->isObjCIdType()) {
9309     SourceLocation Loc = TSI->getTypeLoc().getBeginLoc();
9310     Diag(Loc, diag::warn_auto_var_is_id) << Name << Range;
9311   }
9312
9313   return DeducedType;
9314 }
9315
9316 /// AddInitializerToDecl - Adds the initializer Init to the
9317 /// declaration dcl. If DirectInit is true, this is C++ direct
9318 /// initialization rather than copy initialization.
9319 void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init,
9320                                 bool DirectInit, bool TypeMayContainAuto) {
9321   // If there is no declaration, there was an error parsing it.  Just ignore
9322   // the initializer.
9323   if (!RealDecl || RealDecl->isInvalidDecl()) {
9324     CorrectDelayedTyposInExpr(Init, dyn_cast_or_null<VarDecl>(RealDecl));
9325     return;
9326   }
9327
9328   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
9329     // Pure-specifiers are handled in ActOnPureSpecifier.
9330     Diag(Method->getLocation(), diag::err_member_function_initialization)
9331       << Method->getDeclName() << Init->getSourceRange();
9332     Method->setInvalidDecl();
9333     return;
9334   }
9335
9336   VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
9337   if (!VDecl) {
9338     assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
9339     Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
9340     RealDecl->setInvalidDecl();
9341     return;
9342   }
9343
9344   // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
9345   if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) {
9346     // Attempt typo correction early so that the type of the init expression can
9347     // be deduced based on the chosen correction if the original init contains a
9348     // TypoExpr.
9349     ExprResult Res = CorrectDelayedTyposInExpr(Init, VDecl);
9350     if (!Res.isUsable()) {
9351       RealDecl->setInvalidDecl();
9352       return;
9353     }
9354     Init = Res.get();
9355
9356     QualType DeducedType = deduceVarTypeFromInitializer(
9357         VDecl, VDecl->getDeclName(), VDecl->getType(),
9358         VDecl->getTypeSourceInfo(), VDecl->getSourceRange(), DirectInit, Init);
9359     if (DeducedType.isNull()) {
9360       RealDecl->setInvalidDecl();
9361       return;
9362     }
9363
9364     VDecl->setType(DeducedType);
9365     assert(VDecl->isLinkageValid());
9366
9367     // In ARC, infer lifetime.
9368     if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
9369       VDecl->setInvalidDecl();
9370
9371     // If this is a redeclaration, check that the type we just deduced matches
9372     // the previously declared type.
9373     if (VarDecl *Old = VDecl->getPreviousDecl()) {
9374       // We never need to merge the type, because we cannot form an incomplete
9375       // array of auto, nor deduce such a type.
9376       MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/ false);
9377     }
9378
9379     // Check the deduced type is valid for a variable declaration.
9380     CheckVariableDeclarationType(VDecl);
9381     if (VDecl->isInvalidDecl())
9382       return;
9383   }
9384
9385   // dllimport cannot be used on variable definitions.
9386   if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
9387     Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
9388     VDecl->setInvalidDecl();
9389     return;
9390   }
9391
9392   if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
9393     // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
9394     Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
9395     VDecl->setInvalidDecl();
9396     return;
9397   }
9398
9399   if (!VDecl->getType()->isDependentType()) {
9400     // A definition must end up with a complete type, which means it must be
9401     // complete with the restriction that an array type might be completed by
9402     // the initializer; note that later code assumes this restriction.
9403     QualType BaseDeclType = VDecl->getType();
9404     if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
9405       BaseDeclType = Array->getElementType();
9406     if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
9407                             diag::err_typecheck_decl_incomplete_type)) {
9408       RealDecl->setInvalidDecl();
9409       return;
9410     }
9411
9412     // The variable can not have an abstract class type.
9413     if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
9414                                diag::err_abstract_type_in_decl,
9415                                AbstractVariableType))
9416       VDecl->setInvalidDecl();
9417   }
9418
9419   VarDecl *Def;
9420   if ((Def = VDecl->getDefinition()) && Def != VDecl) {
9421     NamedDecl *Hidden = nullptr;
9422     if (!hasVisibleDefinition(Def, &Hidden) && 
9423         (VDecl->getFormalLinkage() == InternalLinkage ||
9424          VDecl->getDescribedVarTemplate() ||
9425          VDecl->getNumTemplateParameterLists() ||
9426          VDecl->getDeclContext()->isDependentContext())) {
9427       // The previous definition is hidden, and multiple definitions are
9428       // permitted (in separate TUs). Form another definition of it.
9429     } else {
9430       Diag(VDecl->getLocation(), diag::err_redefinition)
9431         << VDecl->getDeclName();
9432       Diag(Def->getLocation(), diag::note_previous_definition);
9433       VDecl->setInvalidDecl();
9434       return;
9435     }
9436   }
9437
9438   if (getLangOpts().CPlusPlus) {
9439     // C++ [class.static.data]p4
9440     //   If a static data member is of const integral or const
9441     //   enumeration type, its declaration in the class definition can
9442     //   specify a constant-initializer which shall be an integral
9443     //   constant expression (5.19). In that case, the member can appear
9444     //   in integral constant expressions. The member shall still be
9445     //   defined in a namespace scope if it is used in the program and the
9446     //   namespace scope definition shall not contain an initializer.
9447     //
9448     // We already performed a redefinition check above, but for static
9449     // data members we also need to check whether there was an in-class
9450     // declaration with an initializer.
9451     if (VDecl->isStaticDataMember() && VDecl->getCanonicalDecl()->hasInit()) {
9452       Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
9453           << VDecl->getDeclName();
9454       Diag(VDecl->getCanonicalDecl()->getInit()->getExprLoc(),
9455            diag::note_previous_initializer)
9456           << 0;
9457       return;
9458     }  
9459
9460     if (VDecl->hasLocalStorage())
9461       getCurFunction()->setHasBranchProtectedScope();
9462
9463     if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
9464       VDecl->setInvalidDecl();
9465       return;
9466     }
9467   }
9468
9469   // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
9470   // a kernel function cannot be initialized."
9471   if (VDecl->getType().getAddressSpace() == LangAS::opencl_local) {
9472     Diag(VDecl->getLocation(), diag::err_local_cant_init);
9473     VDecl->setInvalidDecl();
9474     return;
9475   }
9476
9477   // Get the decls type and save a reference for later, since
9478   // CheckInitializerTypes may change it.
9479   QualType DclT = VDecl->getType(), SavT = DclT;
9480   
9481   // Expressions default to 'id' when we're in a debugger
9482   // and we are assigning it to a variable of Objective-C pointer type.
9483   if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
9484       Init->getType() == Context.UnknownAnyTy) {
9485     ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
9486     if (Result.isInvalid()) {
9487       VDecl->setInvalidDecl();
9488       return;
9489     }
9490     Init = Result.get();
9491   }
9492
9493   // Perform the initialization.
9494   ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
9495   if (!VDecl->isInvalidDecl()) {
9496     InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
9497     InitializationKind Kind =
9498         DirectInit
9499             ? CXXDirectInit
9500                   ? InitializationKind::CreateDirect(VDecl->getLocation(),
9501                                                      Init->getLocStart(),
9502                                                      Init->getLocEnd())
9503                   : InitializationKind::CreateDirectList(VDecl->getLocation())
9504             : InitializationKind::CreateCopy(VDecl->getLocation(),
9505                                              Init->getLocStart());
9506
9507     MultiExprArg Args = Init;
9508     if (CXXDirectInit)
9509       Args = MultiExprArg(CXXDirectInit->getExprs(),
9510                           CXXDirectInit->getNumExprs());
9511
9512     // Try to correct any TypoExprs in the initialization arguments.
9513     for (size_t Idx = 0; Idx < Args.size(); ++Idx) {
9514       ExprResult Res = CorrectDelayedTyposInExpr(
9515           Args[Idx], VDecl, [this, Entity, Kind](Expr *E) {
9516             InitializationSequence Init(*this, Entity, Kind, MultiExprArg(E));
9517             return Init.Failed() ? ExprError() : E;
9518           });
9519       if (Res.isInvalid()) {
9520         VDecl->setInvalidDecl();
9521       } else if (Res.get() != Args[Idx]) {
9522         Args[Idx] = Res.get();
9523       }
9524     }
9525     if (VDecl->isInvalidDecl())
9526       return;
9527
9528     InitializationSequence InitSeq(*this, Entity, Kind, Args,
9529                                    /*TopLevelOfInitList=*/false,
9530                                    /*TreatUnavailableAsInvalid=*/false);
9531     ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
9532     if (Result.isInvalid()) {
9533       VDecl->setInvalidDecl();
9534       return;
9535     }
9536
9537     Init = Result.getAs<Expr>();
9538   }
9539
9540   // Check for self-references within variable initializers.
9541   // Variables declared within a function/method body (except for references)
9542   // are handled by a dataflow analysis.
9543   if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
9544       VDecl->getType()->isReferenceType()) {
9545     CheckSelfReference(*this, RealDecl, Init, DirectInit);
9546   }
9547
9548   // If the type changed, it means we had an incomplete type that was
9549   // completed by the initializer. For example:
9550   //   int ary[] = { 1, 3, 5 };
9551   // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
9552   if (!VDecl->isInvalidDecl() && (DclT != SavT))
9553     VDecl->setType(DclT);
9554
9555   if (!VDecl->isInvalidDecl()) {
9556     checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
9557
9558     if (VDecl->hasAttr<BlocksAttr>())
9559       checkRetainCycles(VDecl, Init);
9560
9561     // It is safe to assign a weak reference into a strong variable.
9562     // Although this code can still have problems:
9563     //   id x = self.weakProp;
9564     //   id y = self.weakProp;
9565     // we do not warn to warn spuriously when 'x' and 'y' are on separate
9566     // paths through the function. This should be revisited if
9567     // -Wrepeated-use-of-weak is made flow-sensitive.
9568     if (VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong &&
9569         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9570                          Init->getLocStart()))
9571       getCurFunction()->markSafeWeakUse(Init);
9572   }
9573
9574   // The initialization is usually a full-expression.
9575   //
9576   // FIXME: If this is a braced initialization of an aggregate, it is not
9577   // an expression, and each individual field initializer is a separate
9578   // full-expression. For instance, in:
9579   //
9580   //   struct Temp { ~Temp(); };
9581   //   struct S { S(Temp); };
9582   //   struct T { S a, b; } t = { Temp(), Temp() }
9583   //
9584   // we should destroy the first Temp before constructing the second.
9585   ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
9586                                           false,
9587                                           VDecl->isConstexpr());
9588   if (Result.isInvalid()) {
9589     VDecl->setInvalidDecl();
9590     return;
9591   }
9592   Init = Result.get();
9593
9594   // Attach the initializer to the decl.
9595   VDecl->setInit(Init);
9596
9597   if (VDecl->isLocalVarDecl()) {
9598     // C99 6.7.8p4: All the expressions in an initializer for an object that has
9599     // static storage duration shall be constant expressions or string literals.
9600     // C++ does not have this restriction.
9601     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) {
9602       const Expr *Culprit;
9603       if (VDecl->getStorageClass() == SC_Static)
9604         CheckForConstantInitializer(Init, DclT);
9605       // C89 is stricter than C99 for non-static aggregate types.
9606       // C89 6.5.7p3: All the expressions [...] in an initializer list
9607       // for an object that has aggregate or union type shall be
9608       // constant expressions.
9609       else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
9610                isa<InitListExpr>(Init) &&
9611                !Init->isConstantInitializer(Context, false, &Culprit))
9612         Diag(Culprit->getExprLoc(),
9613              diag::ext_aggregate_init_not_constant)
9614           << Culprit->getSourceRange();
9615     }
9616   } else if (VDecl->isStaticDataMember() &&
9617              VDecl->getLexicalDeclContext()->isRecord()) {
9618     // This is an in-class initialization for a static data member, e.g.,
9619     //
9620     // struct S {
9621     //   static const int value = 17;
9622     // };
9623
9624     // C++ [class.mem]p4:
9625     //   A member-declarator can contain a constant-initializer only
9626     //   if it declares a static member (9.4) of const integral or
9627     //   const enumeration type, see 9.4.2.
9628     //
9629     // C++11 [class.static.data]p3:
9630     //   If a non-volatile const static data member is of integral or
9631     //   enumeration type, its declaration in the class definition can
9632     //   specify a brace-or-equal-initializer in which every initalizer-clause
9633     //   that is an assignment-expression is a constant expression. A static
9634     //   data member of literal type can be declared in the class definition
9635     //   with the constexpr specifier; if so, its declaration shall specify a
9636     //   brace-or-equal-initializer in which every initializer-clause that is
9637     //   an assignment-expression is a constant expression.
9638
9639     // Do nothing on dependent types.
9640     if (DclT->isDependentType()) {
9641
9642     // Allow any 'static constexpr' members, whether or not they are of literal
9643     // type. We separately check that every constexpr variable is of literal
9644     // type.
9645     } else if (VDecl->isConstexpr()) {
9646
9647     // Require constness.
9648     } else if (!DclT.isConstQualified()) {
9649       Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
9650         << Init->getSourceRange();
9651       VDecl->setInvalidDecl();
9652
9653     // We allow integer constant expressions in all cases.
9654     } else if (DclT->isIntegralOrEnumerationType()) {
9655       // Check whether the expression is a constant expression.
9656       SourceLocation Loc;
9657       if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
9658         // In C++11, a non-constexpr const static data member with an
9659         // in-class initializer cannot be volatile.
9660         Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
9661       else if (Init->isValueDependent())
9662         ; // Nothing to check.
9663       else if (Init->isIntegerConstantExpr(Context, &Loc))
9664         ; // Ok, it's an ICE!
9665       else if (Init->isEvaluatable(Context)) {
9666         // If we can constant fold the initializer through heroics, accept it,
9667         // but report this as a use of an extension for -pedantic.
9668         Diag(Loc, diag::ext_in_class_initializer_non_constant)
9669           << Init->getSourceRange();
9670       } else {
9671         // Otherwise, this is some crazy unknown case.  Report the issue at the
9672         // location provided by the isIntegerConstantExpr failed check.
9673         Diag(Loc, diag::err_in_class_initializer_non_constant)
9674           << Init->getSourceRange();
9675         VDecl->setInvalidDecl();
9676       }
9677
9678     // We allow foldable floating-point constants as an extension.
9679     } else if (DclT->isFloatingType()) { // also permits complex, which is ok
9680       // In C++98, this is a GNU extension. In C++11, it is not, but we support
9681       // it anyway and provide a fixit to add the 'constexpr'.
9682       if (getLangOpts().CPlusPlus11) {
9683         Diag(VDecl->getLocation(),
9684              diag::ext_in_class_initializer_float_type_cxx11)
9685             << DclT << Init->getSourceRange();
9686         Diag(VDecl->getLocStart(),
9687              diag::note_in_class_initializer_float_type_cxx11)
9688             << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
9689       } else {
9690         Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
9691           << DclT << Init->getSourceRange();
9692
9693         if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
9694           Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
9695             << Init->getSourceRange();
9696           VDecl->setInvalidDecl();
9697         }
9698       }
9699
9700     // Suggest adding 'constexpr' in C++11 for literal types.
9701     } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
9702       Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
9703         << DclT << Init->getSourceRange()
9704         << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
9705       VDecl->setConstexpr(true);
9706
9707     } else {
9708       Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
9709         << DclT << Init->getSourceRange();
9710       VDecl->setInvalidDecl();
9711     }
9712   } else if (VDecl->isFileVarDecl()) {
9713     if (VDecl->getStorageClass() == SC_Extern &&
9714         (!getLangOpts().CPlusPlus ||
9715          !(Context.getBaseElementType(VDecl->getType()).isConstQualified() ||
9716            VDecl->isExternC())) &&
9717         !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
9718       Diag(VDecl->getLocation(), diag::warn_extern_init);
9719
9720     // C99 6.7.8p4. All file scoped initializers need to be constant.
9721     if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
9722       CheckForConstantInitializer(Init, DclT);
9723   }
9724
9725   // We will represent direct-initialization similarly to copy-initialization:
9726   //    int x(1);  -as-> int x = 1;
9727   //    ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
9728   //
9729   // Clients that want to distinguish between the two forms, can check for
9730   // direct initializer using VarDecl::getInitStyle().
9731   // A major benefit is that clients that don't particularly care about which
9732   // exactly form was it (like the CodeGen) can handle both cases without
9733   // special case code.
9734
9735   // C++ 8.5p11:
9736   // The form of initialization (using parentheses or '=') is generally
9737   // insignificant, but does matter when the entity being initialized has a
9738   // class type.
9739   if (CXXDirectInit) {
9740     assert(DirectInit && "Call-style initializer must be direct init.");
9741     VDecl->setInitStyle(VarDecl::CallInit);
9742   } else if (DirectInit) {
9743     // This must be list-initialization. No other way is direct-initialization.
9744     VDecl->setInitStyle(VarDecl::ListInit);
9745   }
9746
9747   CheckCompleteVariableDeclaration(VDecl);
9748 }
9749
9750 /// ActOnInitializerError - Given that there was an error parsing an
9751 /// initializer for the given declaration, try to return to some form
9752 /// of sanity.
9753 void Sema::ActOnInitializerError(Decl *D) {
9754   // Our main concern here is re-establishing invariants like "a
9755   // variable's type is either dependent or complete".
9756   if (!D || D->isInvalidDecl()) return;
9757
9758   VarDecl *VD = dyn_cast<VarDecl>(D);
9759   if (!VD) return;
9760
9761   // Auto types are meaningless if we can't make sense of the initializer.
9762   if (ParsingInitForAutoVars.count(D)) {
9763     D->setInvalidDecl();
9764     return;
9765   }
9766
9767   QualType Ty = VD->getType();
9768   if (Ty->isDependentType()) return;
9769
9770   // Require a complete type.
9771   if (RequireCompleteType(VD->getLocation(), 
9772                           Context.getBaseElementType(Ty),
9773                           diag::err_typecheck_decl_incomplete_type)) {
9774     VD->setInvalidDecl();
9775     return;
9776   }
9777
9778   // Require a non-abstract type.
9779   if (RequireNonAbstractType(VD->getLocation(), Ty,
9780                              diag::err_abstract_type_in_decl,
9781                              AbstractVariableType)) {
9782     VD->setInvalidDecl();
9783     return;
9784   }
9785
9786   // Don't bother complaining about constructors or destructors,
9787   // though.
9788 }
9789
9790 void Sema::ActOnUninitializedDecl(Decl *RealDecl,
9791                                   bool TypeMayContainAuto) {
9792   // If there is no declaration, there was an error parsing it. Just ignore it.
9793   if (!RealDecl)
9794     return;
9795
9796   if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
9797     QualType Type = Var->getType();
9798
9799     // C++11 [dcl.spec.auto]p3
9800     if (TypeMayContainAuto && Type->getContainedAutoType()) {
9801       Diag(Var->getLocation(), diag::err_auto_var_requires_init)
9802         << Var->getDeclName() << Type;
9803       Var->setInvalidDecl();
9804       return;
9805     }
9806
9807     // C++11 [class.static.data]p3: A static data member can be declared with
9808     // the constexpr specifier; if so, its declaration shall specify
9809     // a brace-or-equal-initializer.
9810     // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
9811     // the definition of a variable [...] or the declaration of a static data
9812     // member.
9813     if (Var->isConstexpr() && !Var->isThisDeclarationADefinition()) {
9814       if (Var->isStaticDataMember())
9815         Diag(Var->getLocation(),
9816              diag::err_constexpr_static_mem_var_requires_init)
9817           << Var->getDeclName();
9818       else
9819         Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
9820       Var->setInvalidDecl();
9821       return;
9822     }
9823
9824     // C++ Concepts TS [dcl.spec.concept]p1: [...]  A variable template
9825     // definition having the concept specifier is called a variable concept. A
9826     // concept definition refers to [...] a variable concept and its initializer.
9827     if (VarTemplateDecl *VTD = Var->getDescribedVarTemplate()) {
9828       if (VTD->isConcept()) {
9829         Diag(Var->getLocation(), diag::err_var_concept_not_initialized);
9830         Var->setInvalidDecl();
9831         return;
9832       }
9833     }
9834
9835     // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
9836     // be initialized.
9837     if (!Var->isInvalidDecl() &&
9838         Var->getType().getAddressSpace() == LangAS::opencl_constant &&
9839         Var->getStorageClass() != SC_Extern && !Var->getInit()) {
9840       Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
9841       Var->setInvalidDecl();
9842       return;
9843     }
9844
9845     switch (Var->isThisDeclarationADefinition()) {
9846     case VarDecl::Definition:
9847       if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
9848         break;
9849
9850       // We have an out-of-line definition of a static data member
9851       // that has an in-class initializer, so we type-check this like
9852       // a declaration. 
9853       //
9854       // Fall through
9855       
9856     case VarDecl::DeclarationOnly:
9857       // It's only a declaration. 
9858
9859       // Block scope. C99 6.7p7: If an identifier for an object is
9860       // declared with no linkage (C99 6.2.2p6), the type for the
9861       // object shall be complete.
9862       if (!Type->isDependentType() && Var->isLocalVarDecl() && 
9863           !Var->hasLinkage() && !Var->isInvalidDecl() &&
9864           RequireCompleteType(Var->getLocation(), Type,
9865                               diag::err_typecheck_decl_incomplete_type))
9866         Var->setInvalidDecl();
9867
9868       // Make sure that the type is not abstract.
9869       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
9870           RequireNonAbstractType(Var->getLocation(), Type,
9871                                  diag::err_abstract_type_in_decl,
9872                                  AbstractVariableType))
9873         Var->setInvalidDecl();
9874       if (!Type->isDependentType() && !Var->isInvalidDecl() &&
9875           Var->getStorageClass() == SC_PrivateExtern) {
9876         Diag(Var->getLocation(), diag::warn_private_extern);
9877         Diag(Var->getLocation(), diag::note_private_extern);
9878       }
9879         
9880       return;
9881
9882     case VarDecl::TentativeDefinition:
9883       // File scope. C99 6.9.2p2: A declaration of an identifier for an
9884       // object that has file scope without an initializer, and without a
9885       // storage-class specifier or with the storage-class specifier "static",
9886       // constitutes a tentative definition. Note: A tentative definition with
9887       // external linkage is valid (C99 6.2.2p5).
9888       if (!Var->isInvalidDecl()) {
9889         if (const IncompleteArrayType *ArrayT
9890                                     = Context.getAsIncompleteArrayType(Type)) {
9891           if (RequireCompleteType(Var->getLocation(),
9892                                   ArrayT->getElementType(),
9893                                   diag::err_illegal_decl_array_incomplete_type))
9894             Var->setInvalidDecl();
9895         } else if (Var->getStorageClass() == SC_Static) {
9896           // C99 6.9.2p3: If the declaration of an identifier for an object is
9897           // a tentative definition and has internal linkage (C99 6.2.2p3), the
9898           // declared type shall not be an incomplete type.
9899           // NOTE: code such as the following
9900           //     static struct s;
9901           //     struct s { int a; };
9902           // is accepted by gcc. Hence here we issue a warning instead of
9903           // an error and we do not invalidate the static declaration.
9904           // NOTE: to avoid multiple warnings, only check the first declaration.
9905           if (Var->isFirstDecl())
9906             RequireCompleteType(Var->getLocation(), Type,
9907                                 diag::ext_typecheck_decl_incomplete_type);
9908         }
9909       }
9910
9911       // Record the tentative definition; we're done.
9912       if (!Var->isInvalidDecl())
9913         TentativeDefinitions.push_back(Var);
9914       return;
9915     }
9916
9917     // Provide a specific diagnostic for uninitialized variable
9918     // definitions with incomplete array type.
9919     if (Type->isIncompleteArrayType()) {
9920       Diag(Var->getLocation(),
9921            diag::err_typecheck_incomplete_array_needs_initializer);
9922       Var->setInvalidDecl();
9923       return;
9924     }
9925
9926     // Provide a specific diagnostic for uninitialized variable
9927     // definitions with reference type.
9928     if (Type->isReferenceType()) {
9929       Diag(Var->getLocation(), diag::err_reference_var_requires_init)
9930         << Var->getDeclName()
9931         << SourceRange(Var->getLocation(), Var->getLocation());
9932       Var->setInvalidDecl();
9933       return;
9934     }
9935
9936     // Do not attempt to type-check the default initializer for a
9937     // variable with dependent type.
9938     if (Type->isDependentType())
9939       return;
9940
9941     if (Var->isInvalidDecl())
9942       return;
9943
9944     if (!Var->hasAttr<AliasAttr>()) {
9945       if (RequireCompleteType(Var->getLocation(),
9946                               Context.getBaseElementType(Type),
9947                               diag::err_typecheck_decl_incomplete_type)) {
9948         Var->setInvalidDecl();
9949         return;
9950       }
9951     } else {
9952       return;
9953     }
9954
9955     // The variable can not have an abstract class type.
9956     if (RequireNonAbstractType(Var->getLocation(), Type,
9957                                diag::err_abstract_type_in_decl,
9958                                AbstractVariableType)) {
9959       Var->setInvalidDecl();
9960       return;
9961     }
9962
9963     // Check for jumps past the implicit initializer.  C++0x
9964     // clarifies that this applies to a "variable with automatic
9965     // storage duration", not a "local variable".
9966     // C++11 [stmt.dcl]p3
9967     //   A program that jumps from a point where a variable with automatic
9968     //   storage duration is not in scope to a point where it is in scope is
9969     //   ill-formed unless the variable has scalar type, class type with a
9970     //   trivial default constructor and a trivial destructor, a cv-qualified
9971     //   version of one of these types, or an array of one of the preceding
9972     //   types and is declared without an initializer.
9973     if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
9974       if (const RecordType *Record
9975             = Context.getBaseElementType(Type)->getAs<RecordType>()) {
9976         CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
9977         // Mark the function for further checking even if the looser rules of
9978         // C++11 do not require such checks, so that we can diagnose
9979         // incompatibilities with C++98.
9980         if (!CXXRecord->isPOD())
9981           getCurFunction()->setHasBranchProtectedScope();
9982       }
9983     }
9984     
9985     // C++03 [dcl.init]p9:
9986     //   If no initializer is specified for an object, and the
9987     //   object is of (possibly cv-qualified) non-POD class type (or
9988     //   array thereof), the object shall be default-initialized; if
9989     //   the object is of const-qualified type, the underlying class
9990     //   type shall have a user-declared default
9991     //   constructor. Otherwise, if no initializer is specified for
9992     //   a non- static object, the object and its subobjects, if
9993     //   any, have an indeterminate initial value); if the object
9994     //   or any of its subobjects are of const-qualified type, the
9995     //   program is ill-formed.
9996     // C++0x [dcl.init]p11:
9997     //   If no initializer is specified for an object, the object is
9998     //   default-initialized; [...].
9999     InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
10000     InitializationKind Kind
10001       = InitializationKind::CreateDefault(Var->getLocation());
10002
10003     InitializationSequence InitSeq(*this, Entity, Kind, None);
10004     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
10005     if (Init.isInvalid())
10006       Var->setInvalidDecl();
10007     else if (Init.get()) {
10008       Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
10009       // This is important for template substitution.
10010       Var->setInitStyle(VarDecl::CallInit);
10011     }
10012
10013     CheckCompleteVariableDeclaration(Var);
10014   }
10015 }
10016
10017 void Sema::ActOnCXXForRangeDecl(Decl *D) {
10018   // If there is no declaration, there was an error parsing it. Ignore it.
10019   if (!D)
10020     return;
10021
10022   VarDecl *VD = dyn_cast<VarDecl>(D);
10023   if (!VD) {
10024     Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
10025     D->setInvalidDecl();
10026     return;
10027   }
10028
10029   VD->setCXXForRangeDecl(true);
10030
10031   // for-range-declaration cannot be given a storage class specifier.
10032   int Error = -1;
10033   switch (VD->getStorageClass()) {
10034   case SC_None:
10035     break;
10036   case SC_Extern:
10037     Error = 0;
10038     break;
10039   case SC_Static:
10040     Error = 1;
10041     break;
10042   case SC_PrivateExtern:
10043     Error = 2;
10044     break;
10045   case SC_Auto:
10046     Error = 3;
10047     break;
10048   case SC_Register:
10049     Error = 4;
10050     break;
10051   }
10052   if (Error != -1) {
10053     Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
10054       << VD->getDeclName() << Error;
10055     D->setInvalidDecl();
10056   }
10057 }
10058
10059 StmtResult
10060 Sema::ActOnCXXForRangeIdentifier(Scope *S, SourceLocation IdentLoc,
10061                                  IdentifierInfo *Ident,
10062                                  ParsedAttributes &Attrs,
10063                                  SourceLocation AttrEnd) {
10064   // C++1y [stmt.iter]p1:
10065   //   A range-based for statement of the form
10066   //      for ( for-range-identifier : for-range-initializer ) statement
10067   //   is equivalent to
10068   //      for ( auto&& for-range-identifier : for-range-initializer ) statement
10069   DeclSpec DS(Attrs.getPool().getFactory());
10070
10071   const char *PrevSpec;
10072   unsigned DiagID;
10073   DS.SetTypeSpecType(DeclSpec::TST_auto, IdentLoc, PrevSpec, DiagID,
10074                      getPrintingPolicy());
10075
10076   Declarator D(DS, Declarator::ForContext);
10077   D.SetIdentifier(Ident, IdentLoc);
10078   D.takeAttributes(Attrs, AttrEnd);
10079
10080   ParsedAttributes EmptyAttrs(Attrs.getPool().getFactory());
10081   D.AddTypeInfo(DeclaratorChunk::getReference(0, IdentLoc, /*lvalue*/false),
10082                 EmptyAttrs, IdentLoc);
10083   Decl *Var = ActOnDeclarator(S, D);
10084   cast<VarDecl>(Var)->setCXXForRangeDecl(true);
10085   FinalizeDeclaration(Var);
10086   return ActOnDeclStmt(FinalizeDeclaratorGroup(S, DS, Var), IdentLoc,
10087                        AttrEnd.isValid() ? AttrEnd : IdentLoc);
10088 }
10089
10090 void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
10091   if (var->isInvalidDecl()) return;
10092
10093   if (getLangOpts().OpenCL) {
10094     // OpenCL v2.0 s6.12.5 - Every block variable declaration must have an
10095     // initialiser
10096     if (var->getTypeSourceInfo()->getType()->isBlockPointerType() &&
10097         !var->hasInit()) {
10098       Diag(var->getLocation(), diag::err_opencl_invalid_block_declaration)
10099           << 1 /*Init*/;
10100       var->setInvalidDecl();
10101       return;
10102     }
10103   }
10104
10105   // In Objective-C, don't allow jumps past the implicit initialization of a
10106   // local retaining variable.
10107   if (getLangOpts().ObjC1 &&
10108       var->hasLocalStorage()) {
10109     switch (var->getType().getObjCLifetime()) {
10110     case Qualifiers::OCL_None:
10111     case Qualifiers::OCL_ExplicitNone:
10112     case Qualifiers::OCL_Autoreleasing:
10113       break;
10114
10115     case Qualifiers::OCL_Weak:
10116     case Qualifiers::OCL_Strong:
10117       getCurFunction()->setHasBranchProtectedScope();
10118       break;
10119     }
10120   }
10121
10122   // Warn about externally-visible variables being defined without a
10123   // prior declaration.  We only want to do this for global
10124   // declarations, but we also specifically need to avoid doing it for
10125   // class members because the linkage of an anonymous class can
10126   // change if it's later given a typedef name.
10127   if (var->isThisDeclarationADefinition() &&
10128       var->getDeclContext()->getRedeclContext()->isFileContext() &&
10129       var->isExternallyVisible() && var->hasLinkage() &&
10130       !getDiagnostics().isIgnored(diag::warn_missing_variable_declarations,
10131                                   var->getLocation())) {
10132     // Find a previous declaration that's not a definition.
10133     VarDecl *prev = var->getPreviousDecl();
10134     while (prev && prev->isThisDeclarationADefinition())
10135       prev = prev->getPreviousDecl();
10136
10137     if (!prev)
10138       Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
10139   }
10140
10141   if (var->getTLSKind() == VarDecl::TLS_Static) {
10142     const Expr *Culprit;
10143     if (var->getType().isDestructedType()) {
10144       // GNU C++98 edits for __thread, [basic.start.term]p3:
10145       //   The type of an object with thread storage duration shall not
10146       //   have a non-trivial destructor.
10147       Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
10148       if (getLangOpts().CPlusPlus11)
10149         Diag(var->getLocation(), diag::note_use_thread_local);
10150     } else if (getLangOpts().CPlusPlus && var->hasInit() &&
10151                !var->getInit()->isConstantInitializer(
10152                    Context, var->getType()->isReferenceType(), &Culprit)) {
10153       // GNU C++98 edits for __thread, [basic.start.init]p4:
10154       //   An object of thread storage duration shall not require dynamic
10155       //   initialization.
10156       // FIXME: Need strict checking here.
10157       Diag(Culprit->getExprLoc(), diag::err_thread_dynamic_init)
10158         << Culprit->getSourceRange();
10159       if (getLangOpts().CPlusPlus11)
10160         Diag(var->getLocation(), diag::note_use_thread_local);
10161     }
10162   }
10163
10164   // Apply section attributes and pragmas to global variables.
10165   bool GlobalStorage = var->hasGlobalStorage();
10166   if (GlobalStorage && var->isThisDeclarationADefinition() &&
10167       ActiveTemplateInstantiations.empty()) {
10168     PragmaStack<StringLiteral *> *Stack = nullptr;
10169     int SectionFlags = ASTContext::PSF_Implicit | ASTContext::PSF_Read;
10170     if (var->getType().isConstQualified())
10171       Stack = &ConstSegStack;
10172     else if (!var->getInit()) {
10173       Stack = &BSSSegStack;
10174       SectionFlags |= ASTContext::PSF_Write;
10175     } else {
10176       Stack = &DataSegStack;
10177       SectionFlags |= ASTContext::PSF_Write;
10178     }
10179     if (Stack->CurrentValue && !var->hasAttr<SectionAttr>()) {
10180       var->addAttr(SectionAttr::CreateImplicit(
10181           Context, SectionAttr::Declspec_allocate,
10182           Stack->CurrentValue->getString(), Stack->CurrentPragmaLocation));
10183     }
10184     if (const SectionAttr *SA = var->getAttr<SectionAttr>())
10185       if (UnifySection(SA->getName(), SectionFlags, var))
10186         var->dropAttr<SectionAttr>();
10187
10188     // Apply the init_seg attribute if this has an initializer.  If the
10189     // initializer turns out to not be dynamic, we'll end up ignoring this
10190     // attribute.
10191     if (CurInitSeg && var->getInit())
10192       var->addAttr(InitSegAttr::CreateImplicit(Context, CurInitSeg->getString(),
10193                                                CurInitSegLoc));
10194   }
10195
10196   // All the following checks are C++ only.
10197   if (!getLangOpts().CPlusPlus) return;
10198
10199   QualType type = var->getType();
10200   if (type->isDependentType()) return;
10201
10202   // __block variables might require us to capture a copy-initializer.
10203   if (var->hasAttr<BlocksAttr>()) {
10204     // It's currently invalid to ever have a __block variable with an
10205     // array type; should we diagnose that here?
10206
10207     // Regardless, we don't want to ignore array nesting when
10208     // constructing this copy.
10209     if (type->isStructureOrClassType()) {
10210       EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
10211       SourceLocation poi = var->getLocation();
10212       Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
10213       ExprResult result
10214         = PerformMoveOrCopyInitialization(
10215             InitializedEntity::InitializeBlock(poi, type, false),
10216             var, var->getType(), varRef, /*AllowNRVO=*/true);
10217       if (!result.isInvalid()) {
10218         result = MaybeCreateExprWithCleanups(result);
10219         Expr *init = result.getAs<Expr>();
10220         Context.setBlockVarCopyInits(var, init);
10221       }
10222     }
10223   }
10224
10225   Expr *Init = var->getInit();
10226   bool IsGlobal = GlobalStorage && !var->isStaticLocal();
10227   QualType baseType = Context.getBaseElementType(type);
10228
10229   if (!var->getDeclContext()->isDependentContext() &&
10230       Init && !Init->isValueDependent()) {
10231     if (IsGlobal && !var->isConstexpr() &&
10232         !getDiagnostics().isIgnored(diag::warn_global_constructor,
10233                                     var->getLocation())) {
10234       // Warn about globals which don't have a constant initializer.  Don't
10235       // warn about globals with a non-trivial destructor because we already
10236       // warned about them.
10237       CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
10238       if (!(RD && !RD->hasTrivialDestructor()) &&
10239           !Init->isConstantInitializer(Context, baseType->isReferenceType()))
10240         Diag(var->getLocation(), diag::warn_global_constructor)
10241           << Init->getSourceRange();
10242     }
10243
10244     if (var->isConstexpr()) {
10245       SmallVector<PartialDiagnosticAt, 8> Notes;
10246       if (!var->evaluateValue(Notes) || !var->isInitICE()) {
10247         SourceLocation DiagLoc = var->getLocation();
10248         // If the note doesn't add any useful information other than a source
10249         // location, fold it into the primary diagnostic.
10250         if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
10251               diag::note_invalid_subexpr_in_const_expr) {
10252           DiagLoc = Notes[0].first;
10253           Notes.clear();
10254         }
10255         Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
10256           << var << Init->getSourceRange();
10257         for (unsigned I = 0, N = Notes.size(); I != N; ++I)
10258           Diag(Notes[I].first, Notes[I].second);
10259       }
10260     } else if (var->isUsableInConstantExpressions(Context)) {
10261       // Check whether the initializer of a const variable of integral or
10262       // enumeration type is an ICE now, since we can't tell whether it was
10263       // initialized by a constant expression if we check later.
10264       var->checkInitIsICE();
10265     }
10266   }
10267
10268   // Require the destructor.
10269   if (const RecordType *recordType = baseType->getAs<RecordType>())
10270     FinalizeVarWithDestructor(var, recordType);
10271 }
10272
10273 /// \brief Determines if a variable's alignment is dependent.
10274 static bool hasDependentAlignment(VarDecl *VD) {
10275   if (VD->getType()->isDependentType())
10276     return true;
10277   for (auto *I : VD->specific_attrs<AlignedAttr>())
10278     if (I->isAlignmentDependent())
10279       return true;
10280   return false;
10281 }
10282
10283 /// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
10284 /// any semantic actions necessary after any initializer has been attached.
10285 void
10286 Sema::FinalizeDeclaration(Decl *ThisDecl) {
10287   // Note that we are no longer parsing the initializer for this declaration.
10288   ParsingInitForAutoVars.erase(ThisDecl);
10289
10290   VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
10291   if (!VD)
10292     return;
10293
10294   checkAttributesAfterMerging(*this, *VD);
10295
10296   // Perform TLS alignment check here after attributes attached to the variable
10297   // which may affect the alignment have been processed. Only perform the check
10298   // if the target has a maximum TLS alignment (zero means no constraints).
10299   if (unsigned MaxAlign = Context.getTargetInfo().getMaxTLSAlign()) {
10300     // Protect the check so that it's not performed on dependent types and
10301     // dependent alignments (we can't determine the alignment in that case).
10302     if (VD->getTLSKind() && !hasDependentAlignment(VD)) {
10303       CharUnits MaxAlignChars = Context.toCharUnitsFromBits(MaxAlign);
10304       if (Context.getDeclAlign(VD) > MaxAlignChars) {
10305         Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
10306           << (unsigned)Context.getDeclAlign(VD).getQuantity() << VD
10307           << (unsigned)MaxAlignChars.getQuantity();
10308       }
10309     }
10310   }
10311
10312   // Static locals inherit dll attributes from their function.
10313   if (VD->isStaticLocal()) {
10314     if (FunctionDecl *FD =
10315             dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod())) {
10316       if (Attr *A = getDLLAttr(FD)) {
10317         auto *NewAttr = cast<InheritableAttr>(A->clone(getASTContext()));
10318         NewAttr->setInherited(true);
10319         VD->addAttr(NewAttr);
10320       }
10321     }
10322   }
10323
10324   // Perform check for initializers of device-side global variables.
10325   // CUDA allows empty constructors as initializers (see E.2.3.1, CUDA
10326   // 7.5). CUDA also allows constant initializers for __constant__ and
10327   // __device__ variables.
10328   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
10329     const Expr *Init = VD->getInit();
10330     const bool IsGlobal = VD->hasGlobalStorage() && !VD->isStaticLocal();
10331     if (Init && IsGlobal &&
10332         (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
10333          VD->hasAttr<CUDASharedAttr>())) {
10334       bool AllowedInit = false;
10335       if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
10336         AllowedInit =
10337             isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
10338       // We'll allow constant initializers even if it's a non-empty
10339       // constructor according to CUDA rules. This deviates from NVCC,
10340       // but allows us to handle things like constexpr constructors.
10341       if (!AllowedInit &&
10342           (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>()))
10343         AllowedInit = VD->getInit()->isConstantInitializer(
10344             Context, VD->getType()->isReferenceType());
10345
10346       if (!AllowedInit) {
10347         Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
10348                                     ? diag::err_shared_var_init
10349                                     : diag::err_dynamic_var_init)
10350             << Init->getSourceRange();
10351         VD->setInvalidDecl();
10352       }
10353     }
10354   }
10355
10356   // Grab the dllimport or dllexport attribute off of the VarDecl.
10357   const InheritableAttr *DLLAttr = getDLLAttr(VD);
10358
10359   // Imported static data members cannot be defined out-of-line.
10360   if (const auto *IA = dyn_cast_or_null<DLLImportAttr>(DLLAttr)) {
10361     if (VD->isStaticDataMember() && VD->isOutOfLine() &&
10362         VD->isThisDeclarationADefinition()) {
10363       // We allow definitions of dllimport class template static data members
10364       // with a warning.
10365       CXXRecordDecl *Context =
10366         cast<CXXRecordDecl>(VD->getFirstDecl()->getDeclContext());
10367       bool IsClassTemplateMember =
10368           isa<ClassTemplatePartialSpecializationDecl>(Context) ||
10369           Context->getDescribedClassTemplate();
10370
10371       Diag(VD->getLocation(),
10372            IsClassTemplateMember
10373                ? diag::warn_attribute_dllimport_static_field_definition
10374                : diag::err_attribute_dllimport_static_field_definition);
10375       Diag(IA->getLocation(), diag::note_attribute);
10376       if (!IsClassTemplateMember)
10377         VD->setInvalidDecl();
10378     }
10379   }
10380
10381   // dllimport/dllexport variables cannot be thread local, their TLS index
10382   // isn't exported with the variable.
10383   if (DLLAttr && VD->getTLSKind()) {
10384     auto *F = dyn_cast_or_null<FunctionDecl>(VD->getParentFunctionOrMethod());
10385     if (F && getDLLAttr(F)) {
10386       assert(VD->isStaticLocal());
10387       // But if this is a static local in a dlimport/dllexport function, the
10388       // function will never be inlined, which means the var would never be
10389       // imported, so having it marked import/export is safe.
10390     } else {
10391       Diag(VD->getLocation(), diag::err_attribute_dll_thread_local) << VD
10392                                                                     << DLLAttr;
10393       VD->setInvalidDecl();
10394     }
10395   }
10396
10397   if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
10398     if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
10399       Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
10400       VD->dropAttr<UsedAttr>();
10401     }
10402   }
10403
10404   const DeclContext *DC = VD->getDeclContext();
10405   // If there's a #pragma GCC visibility in scope, and this isn't a class
10406   // member, set the visibility of this variable.
10407   if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
10408     AddPushedVisibilityAttribute(VD);
10409
10410   // FIXME: Warn on unused templates.
10411   if (VD->isFileVarDecl() && !VD->getDescribedVarTemplate() &&
10412       !isa<VarTemplatePartialSpecializationDecl>(VD))
10413     MarkUnusedFileScopedDecl(VD);
10414
10415   // Now we have parsed the initializer and can update the table of magic
10416   // tag values.
10417   if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
10418       !VD->getType()->isIntegralOrEnumerationType())
10419     return;
10420
10421   for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
10422     const Expr *MagicValueExpr = VD->getInit();
10423     if (!MagicValueExpr) {
10424       continue;
10425     }
10426     llvm::APSInt MagicValueInt;
10427     if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
10428       Diag(I->getRange().getBegin(),
10429            diag::err_type_tag_for_datatype_not_ice)
10430         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
10431       continue;
10432     }
10433     if (MagicValueInt.getActiveBits() > 64) {
10434       Diag(I->getRange().getBegin(),
10435            diag::err_type_tag_for_datatype_too_large)
10436         << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
10437       continue;
10438     }
10439     uint64_t MagicValue = MagicValueInt.getZExtValue();
10440     RegisterTypeTagForDatatype(I->getArgumentKind(),
10441                                MagicValue,
10442                                I->getMatchingCType(),
10443                                I->getLayoutCompatible(),
10444                                I->getMustBeNull());
10445   }
10446 }
10447
10448 Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
10449                                                    ArrayRef<Decl *> Group) {
10450   SmallVector<Decl*, 8> Decls;
10451
10452   if (DS.isTypeSpecOwned())
10453     Decls.push_back(DS.getRepAsDecl());
10454
10455   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
10456   for (unsigned i = 0, e = Group.size(); i != e; ++i)
10457     if (Decl *D = Group[i]) {
10458       if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D))
10459         if (!FirstDeclaratorInGroup)
10460           FirstDeclaratorInGroup = DD;
10461       Decls.push_back(D);
10462     }
10463
10464   if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
10465     if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
10466       handleTagNumbering(Tag, S);
10467       if (FirstDeclaratorInGroup && !Tag->hasNameForLinkage() &&
10468           getLangOpts().CPlusPlus)
10469         Context.addDeclaratorForUnnamedTagDecl(Tag, FirstDeclaratorInGroup);
10470     }
10471   }
10472
10473   return BuildDeclaratorGroup(Decls, DS.containsPlaceholderType());
10474 }
10475
10476 /// BuildDeclaratorGroup - convert a list of declarations into a declaration
10477 /// group, performing any necessary semantic checking.
10478 Sema::DeclGroupPtrTy
10479 Sema::BuildDeclaratorGroup(MutableArrayRef<Decl *> Group,
10480                            bool TypeMayContainAuto) {
10481   // C++0x [dcl.spec.auto]p7:
10482   //   If the type deduced for the template parameter U is not the same in each
10483   //   deduction, the program is ill-formed.
10484   // FIXME: When initializer-list support is added, a distinction is needed
10485   // between the deduced type U and the deduced type which 'auto' stands for.
10486   //   auto a = 0, b = { 1, 2, 3 };
10487   // is legal because the deduced type U is 'int' in both cases.
10488   if (TypeMayContainAuto && Group.size() > 1) {
10489     QualType Deduced;
10490     CanQualType DeducedCanon;
10491     VarDecl *DeducedDecl = nullptr;
10492     for (unsigned i = 0, e = Group.size(); i != e; ++i) {
10493       if (VarDecl *D = dyn_cast<VarDecl>(Group[i])) {
10494         AutoType *AT = D->getType()->getContainedAutoType();
10495         // Don't reissue diagnostics when instantiating a template.
10496         if (AT && D->isInvalidDecl())
10497           break;
10498         QualType U = AT ? AT->getDeducedType() : QualType();
10499         if (!U.isNull()) {
10500           CanQualType UCanon = Context.getCanonicalType(U);
10501           if (Deduced.isNull()) {
10502             Deduced = U;
10503             DeducedCanon = UCanon;
10504             DeducedDecl = D;
10505           } else if (DeducedCanon != UCanon) {
10506             Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
10507                  diag::err_auto_different_deductions)
10508               << (unsigned)AT->getKeyword()
10509               << Deduced << DeducedDecl->getDeclName()
10510               << U << D->getDeclName()
10511               << DeducedDecl->getInit()->getSourceRange()
10512               << D->getInit()->getSourceRange();
10513             D->setInvalidDecl();
10514             break;
10515           }
10516         }
10517       }
10518     }
10519   }
10520
10521   ActOnDocumentableDecls(Group);
10522
10523   return DeclGroupPtrTy::make(
10524       DeclGroupRef::Create(Context, Group.data(), Group.size()));
10525 }
10526
10527 void Sema::ActOnDocumentableDecl(Decl *D) {
10528   ActOnDocumentableDecls(D);
10529 }
10530
10531 void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
10532   // Don't parse the comment if Doxygen diagnostics are ignored.
10533   if (Group.empty() || !Group[0])
10534     return;
10535
10536   if (Diags.isIgnored(diag::warn_doc_param_not_found,
10537                       Group[0]->getLocation()) &&
10538       Diags.isIgnored(diag::warn_unknown_comment_command_name,
10539                       Group[0]->getLocation()))
10540     return;
10541
10542   if (Group.size() >= 2) {
10543     // This is a decl group.  Normally it will contain only declarations
10544     // produced from declarator list.  But in case we have any definitions or
10545     // additional declaration references:
10546     //   'typedef struct S {} S;'
10547     //   'typedef struct S *S;'
10548     //   'struct S *pS;'
10549     // FinalizeDeclaratorGroup adds these as separate declarations.
10550     Decl *MaybeTagDecl = Group[0];
10551     if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
10552       Group = Group.slice(1);
10553     }
10554   }
10555
10556   // See if there are any new comments that are not attached to a decl.
10557   ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
10558   if (!Comments.empty() &&
10559       !Comments.back()->isAttached()) {
10560     // There is at least one comment that not attached to a decl.
10561     // Maybe it should be attached to one of these decls?
10562     //
10563     // Note that this way we pick up not only comments that precede the
10564     // declaration, but also comments that *follow* the declaration -- thanks to
10565     // the lookahead in the lexer: we've consumed the semicolon and looked
10566     // ahead through comments.
10567     for (unsigned i = 0, e = Group.size(); i != e; ++i)
10568       Context.getCommentForDecl(Group[i], &PP);
10569   }
10570 }
10571
10572 /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
10573 /// to introduce parameters into function prototype scope.
10574 Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
10575   const DeclSpec &DS = D.getDeclSpec();
10576
10577   // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
10578
10579   // C++03 [dcl.stc]p2 also permits 'auto'.
10580   StorageClass SC = SC_None;
10581   if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
10582     SC = SC_Register;
10583   } else if (getLangOpts().CPlusPlus &&
10584              DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
10585     SC = SC_Auto;
10586   } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
10587     Diag(DS.getStorageClassSpecLoc(),
10588          diag::err_invalid_storage_class_in_func_decl);
10589     D.getMutableDeclSpec().ClearStorageClassSpecs();
10590   }
10591
10592   if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
10593     Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
10594       << DeclSpec::getSpecifierName(TSCS);
10595   if (DS.isConstexprSpecified())
10596     Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
10597       << 0;
10598   if (DS.isConceptSpecified())
10599     Diag(DS.getConceptSpecLoc(), diag::err_concept_wrong_decl_kind);
10600
10601   DiagnoseFunctionSpecifiers(DS);
10602
10603   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
10604   QualType parmDeclType = TInfo->getType();
10605
10606   if (getLangOpts().CPlusPlus) {
10607     // Check that there are no default arguments inside the type of this
10608     // parameter.
10609     CheckExtraCXXDefaultArguments(D);
10610     
10611     // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
10612     if (D.getCXXScopeSpec().isSet()) {
10613       Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
10614         << D.getCXXScopeSpec().getRange();
10615       D.getCXXScopeSpec().clear();
10616     }
10617   }
10618
10619   // Ensure we have a valid name
10620   IdentifierInfo *II = nullptr;
10621   if (D.hasName()) {
10622     II = D.getIdentifier();
10623     if (!II) {
10624       Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
10625         << GetNameForDeclarator(D).getName();
10626       D.setInvalidType(true);
10627     }
10628   }
10629
10630   // Check for redeclaration of parameters, e.g. int foo(int x, int x);
10631   if (II) {
10632     LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
10633                    ForRedeclaration);
10634     LookupName(R, S);
10635     if (R.isSingleResult()) {
10636       NamedDecl *PrevDecl = R.getFoundDecl();
10637       if (PrevDecl->isTemplateParameter()) {
10638         // Maybe we will complain about the shadowed template parameter.
10639         DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
10640         // Just pretend that we didn't see the previous declaration.
10641         PrevDecl = nullptr;
10642       } else if (S->isDeclScope(PrevDecl)) {
10643         Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
10644         Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
10645
10646         // Recover by removing the name
10647         II = nullptr;
10648         D.SetIdentifier(nullptr, D.getIdentifierLoc());
10649         D.setInvalidType(true);
10650       }
10651     }
10652   }
10653
10654   // Temporarily put parameter variables in the translation unit, not
10655   // the enclosing context.  This prevents them from accidentally
10656   // looking like class members in C++.
10657   ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
10658                                     D.getLocStart(),
10659                                     D.getIdentifierLoc(), II,
10660                                     parmDeclType, TInfo,
10661                                     SC);
10662
10663   if (D.isInvalidType())
10664     New->setInvalidDecl();
10665
10666   assert(S->isFunctionPrototypeScope());
10667   assert(S->getFunctionPrototypeDepth() >= 1);
10668   New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
10669                     S->getNextFunctionPrototypeIndex());
10670   
10671   // Add the parameter declaration into this scope.
10672   S->AddDecl(New);
10673   if (II)
10674     IdResolver.AddDecl(New);
10675
10676   ProcessDeclAttributes(S, New, D);
10677
10678   if (D.getDeclSpec().isModulePrivateSpecified())
10679     Diag(New->getLocation(), diag::err_module_private_local)
10680       << 1 << New->getDeclName()
10681       << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
10682       << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
10683
10684   if (New->hasAttr<BlocksAttr>()) {
10685     Diag(New->getLocation(), diag::err_block_on_nonlocal);
10686   }
10687   return New;
10688 }
10689
10690 /// \brief Synthesizes a variable for a parameter arising from a
10691 /// typedef.
10692 ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
10693                                               SourceLocation Loc,
10694                                               QualType T) {
10695   /* FIXME: setting StartLoc == Loc.
10696      Would it be worth to modify callers so as to provide proper source
10697      location for the unnamed parameters, embedding the parameter's type? */
10698   ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
10699                                 T, Context.getTrivialTypeSourceInfo(T, Loc),
10700                                            SC_None, nullptr);
10701   Param->setImplicit();
10702   return Param;
10703 }
10704
10705 void Sema::DiagnoseUnusedParameters(ParmVarDecl * const *Param,
10706                                     ParmVarDecl * const *ParamEnd) {
10707   // Don't diagnose unused-parameter errors in template instantiations; we
10708   // will already have done so in the template itself.
10709   if (!ActiveTemplateInstantiations.empty())
10710     return;
10711
10712   for (; Param != ParamEnd; ++Param) {
10713     if (!(*Param)->isReferenced() && (*Param)->getDeclName() &&
10714         !(*Param)->hasAttr<UnusedAttr>()) {
10715       Diag((*Param)->getLocation(), diag::warn_unused_parameter)
10716         << (*Param)->getDeclName();
10717     }
10718   }
10719 }
10720
10721 void Sema::DiagnoseSizeOfParametersAndReturnValue(ParmVarDecl * const *Param,
10722                                                   ParmVarDecl * const *ParamEnd,
10723                                                   QualType ReturnTy,
10724                                                   NamedDecl *D) {
10725   if (LangOpts.NumLargeByValueCopy == 0) // No check.
10726     return;
10727
10728   // Warn if the return value is pass-by-value and larger than the specified
10729   // threshold.
10730   if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
10731     unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
10732     if (Size > LangOpts.NumLargeByValueCopy)
10733       Diag(D->getLocation(), diag::warn_return_value_size)
10734           << D->getDeclName() << Size;
10735   }
10736
10737   // Warn if any parameter is pass-by-value and larger than the specified
10738   // threshold.
10739   for (; Param != ParamEnd; ++Param) {
10740     QualType T = (*Param)->getType();
10741     if (T->isDependentType() || !T.isPODType(Context))
10742       continue;
10743     unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
10744     if (Size > LangOpts.NumLargeByValueCopy)
10745       Diag((*Param)->getLocation(), diag::warn_parameter_size)
10746           << (*Param)->getDeclName() << Size;
10747   }
10748 }
10749
10750 ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
10751                                   SourceLocation NameLoc, IdentifierInfo *Name,
10752                                   QualType T, TypeSourceInfo *TSInfo,
10753                                   StorageClass SC) {
10754   // In ARC, infer a lifetime qualifier for appropriate parameter types.
10755   if (getLangOpts().ObjCAutoRefCount &&
10756       T.getObjCLifetime() == Qualifiers::OCL_None &&
10757       T->isObjCLifetimeType()) {
10758
10759     Qualifiers::ObjCLifetime lifetime;
10760
10761     // Special cases for arrays:
10762     //   - if it's const, use __unsafe_unretained
10763     //   - otherwise, it's an error
10764     if (T->isArrayType()) {
10765       if (!T.isConstQualified()) {
10766         DelayedDiagnostics.add(
10767             sema::DelayedDiagnostic::makeForbiddenType(
10768             NameLoc, diag::err_arc_array_param_no_ownership, T, false));
10769       }
10770       lifetime = Qualifiers::OCL_ExplicitNone;
10771     } else {
10772       lifetime = T->getObjCARCImplicitLifetime();
10773     }
10774     T = Context.getLifetimeQualifiedType(T, lifetime);
10775   }
10776
10777   ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
10778                                          Context.getAdjustedParameterType(T), 
10779                                          TSInfo, SC, nullptr);
10780
10781   // Parameters can not be abstract class types.
10782   // For record types, this is done by the AbstractClassUsageDiagnoser once
10783   // the class has been completely parsed.
10784   if (!CurContext->isRecord() &&
10785       RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
10786                              AbstractParamType))
10787     New->setInvalidDecl();
10788
10789   // Parameter declarators cannot be interface types. All ObjC objects are
10790   // passed by reference.
10791   if (T->isObjCObjectType()) {
10792     SourceLocation TypeEndLoc = TSInfo->getTypeLoc().getLocEnd();
10793     Diag(NameLoc,
10794          diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
10795       << FixItHint::CreateInsertion(TypeEndLoc, "*");
10796     T = Context.getObjCObjectPointerType(T);
10797     New->setType(T);
10798   }
10799
10800   // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage 
10801   // duration shall not be qualified by an address-space qualifier."
10802   // Since all parameters have automatic store duration, they can not have
10803   // an address space.
10804   if (T.getAddressSpace() != 0) {
10805     // OpenCL allows function arguments declared to be an array of a type
10806     // to be qualified with an address space.
10807     if (!(getLangOpts().OpenCL && T->isArrayType())) {
10808       Diag(NameLoc, diag::err_arg_with_address_space);
10809       New->setInvalidDecl();
10810     }
10811   }
10812
10813   // OpenCL v2.0 s6.9b - Pointer to image/sampler cannot be used.
10814   // OpenCL v2.0 s6.13.16.1 - Pointer to pipe cannot be used.
10815   if (getLangOpts().OpenCL && T->isPointerType()) {
10816     const QualType PTy = T->getPointeeType();
10817     if (PTy->isImageType() || PTy->isSamplerT() || PTy->isPipeType()) {
10818       Diag(NameLoc, diag::err_opencl_pointer_to_type) << PTy;
10819       New->setInvalidDecl();
10820     }
10821   }
10822
10823   return New;
10824 }
10825
10826 void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
10827                                            SourceLocation LocAfterDecls) {
10828   DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
10829
10830   // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
10831   // for a K&R function.
10832   if (!FTI.hasPrototype) {
10833     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
10834       --i;
10835       if (FTI.Params[i].Param == nullptr) {
10836         SmallString<256> Code;
10837         llvm::raw_svector_ostream(Code)
10838             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
10839         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
10840             << FTI.Params[i].Ident
10841             << FixItHint::CreateInsertion(LocAfterDecls, Code);
10842
10843         // Implicitly declare the argument as type 'int' for lack of a better
10844         // type.
10845         AttributeFactory attrs;
10846         DeclSpec DS(attrs);
10847         const char* PrevSpec; // unused
10848         unsigned DiagID; // unused
10849         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
10850                            DiagID, Context.getPrintingPolicy());
10851         // Use the identifier location for the type source range.
10852         DS.SetRangeStart(FTI.Params[i].IdentLoc);
10853         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
10854         Declarator ParamD(DS, Declarator::KNRTypeListContext);
10855         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
10856         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
10857       }
10858     }
10859   }
10860 }
10861
10862 Decl *
10863 Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D,
10864                               MultiTemplateParamsArg TemplateParameterLists,
10865                               SkipBodyInfo *SkipBody) {
10866   assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
10867   assert(D.isFunctionDeclarator() && "Not a function declarator!");
10868   Scope *ParentScope = FnBodyScope->getParent();
10869
10870   D.setFunctionDefinitionKind(FDK_Definition);
10871   Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists);
10872   return ActOnStartOfFunctionDef(FnBodyScope, DP, SkipBody);
10873 }
10874
10875 void Sema::ActOnFinishInlineMethodDef(CXXMethodDecl *D) {
10876   Consumer.HandleInlineMethodDefinition(D);
10877 }
10878
10879 static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD, 
10880                              const FunctionDecl*& PossibleZeroParamPrototype) {
10881   // Don't warn about invalid declarations.
10882   if (FD->isInvalidDecl())
10883     return false;
10884
10885   // Or declarations that aren't global.
10886   if (!FD->isGlobal())
10887     return false;
10888
10889   // Don't warn about C++ member functions.
10890   if (isa<CXXMethodDecl>(FD))
10891     return false;
10892
10893   // Don't warn about 'main'.
10894   if (FD->isMain())
10895     return false;
10896
10897   // Don't warn about inline functions.
10898   if (FD->isInlined())
10899     return false;
10900
10901   // Don't warn about function templates.
10902   if (FD->getDescribedFunctionTemplate())
10903     return false;
10904
10905   // Don't warn about function template specializations.
10906   if (FD->isFunctionTemplateSpecialization())
10907     return false;
10908
10909   // Don't warn for OpenCL kernels.
10910   if (FD->hasAttr<OpenCLKernelAttr>())
10911     return false;
10912
10913   // Don't warn on explicitly deleted functions.
10914   if (FD->isDeleted())
10915     return false;
10916
10917   bool MissingPrototype = true;
10918   for (const FunctionDecl *Prev = FD->getPreviousDecl();
10919        Prev; Prev = Prev->getPreviousDecl()) {
10920     // Ignore any declarations that occur in function or method
10921     // scope, because they aren't visible from the header.
10922     if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
10923       continue;
10924
10925     MissingPrototype = !Prev->getType()->isFunctionProtoType();
10926     if (FD->getNumParams() == 0)
10927       PossibleZeroParamPrototype = Prev;
10928     break;
10929   }
10930
10931   return MissingPrototype;
10932 }
10933
10934 void
10935 Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
10936                                    const FunctionDecl *EffectiveDefinition,
10937                                    SkipBodyInfo *SkipBody) {
10938   // Don't complain if we're in GNU89 mode and the previous definition
10939   // was an extern inline function.
10940   const FunctionDecl *Definition = EffectiveDefinition;
10941   if (!Definition)
10942     if (!FD->isDefined(Definition))
10943       return;
10944
10945   if (canRedefineFunction(Definition, getLangOpts()))
10946     return;
10947
10948   // If we don't have a visible definition of the function, and it's inline or
10949   // a template, skip the new definition.
10950   if (SkipBody && !hasVisibleDefinition(Definition) &&
10951       (Definition->getFormalLinkage() == InternalLinkage ||
10952        Definition->isInlined() ||
10953        Definition->getDescribedFunctionTemplate() ||
10954        Definition->getNumTemplateParameterLists())) {
10955     SkipBody->ShouldSkip = true;
10956     if (auto *TD = Definition->getDescribedFunctionTemplate())
10957       makeMergedDefinitionVisible(TD, FD->getLocation());
10958     else
10959       makeMergedDefinitionVisible(const_cast<FunctionDecl*>(Definition),
10960                                   FD->getLocation());
10961     return;
10962   }
10963
10964   if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
10965       Definition->getStorageClass() == SC_Extern)
10966     Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
10967         << FD->getDeclName() << getLangOpts().CPlusPlus;
10968   else
10969     Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
10970
10971   Diag(Definition->getLocation(), diag::note_previous_definition);
10972   FD->setInvalidDecl();
10973 }
10974
10975 static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator, 
10976                                    Sema &S) {
10977   CXXRecordDecl *const LambdaClass = CallOperator->getParent();
10978   
10979   LambdaScopeInfo *LSI = S.PushLambdaScope();
10980   LSI->CallOperator = CallOperator;
10981   LSI->Lambda = LambdaClass;
10982   LSI->ReturnType = CallOperator->getReturnType();
10983   const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
10984
10985   if (LCD == LCD_None)
10986     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
10987   else if (LCD == LCD_ByCopy)
10988     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
10989   else if (LCD == LCD_ByRef)
10990     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
10991   DeclarationNameInfo DNI = CallOperator->getNameInfo();
10992     
10993   LSI->IntroducerRange = DNI.getCXXOperatorNameRange(); 
10994   LSI->Mutable = !CallOperator->isConst();
10995
10996   // Add the captures to the LSI so they can be noted as already
10997   // captured within tryCaptureVar. 
10998   auto I = LambdaClass->field_begin();
10999   for (const auto &C : LambdaClass->captures()) {
11000     if (C.capturesVariable()) {
11001       VarDecl *VD = C.getCapturedVar();
11002       if (VD->isInitCapture())
11003         S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
11004       QualType CaptureType = VD->getType();
11005       const bool ByRef = C.getCaptureKind() == LCK_ByRef;
11006       LSI->addCapture(VD, /*IsBlock*/false, ByRef, 
11007           /*RefersToEnclosingVariableOrCapture*/true, C.getLocation(),
11008           /*EllipsisLoc*/C.isPackExpansion() 
11009                          ? C.getEllipsisLoc() : SourceLocation(),
11010           CaptureType, /*Expr*/ nullptr);
11011
11012     } else if (C.capturesThis()) {
11013       LSI->addThisCapture(/*Nested*/ false, C.getLocation(), 
11014                               S.getCurrentThisType(), /*Expr*/ nullptr,
11015                               C.getCaptureKind() == LCK_StarThis);
11016     } else {
11017       LSI->addVLATypeCapture(C.getLocation(), I->getType());
11018     }
11019     ++I;
11020   }
11021 }
11022
11023 Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D,
11024                                     SkipBodyInfo *SkipBody) {
11025   // Clear the last template instantiation error context.
11026   LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation();
11027   
11028   if (!D)
11029     return D;
11030   FunctionDecl *FD = nullptr;
11031
11032   if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
11033     FD = FunTmpl->getTemplatedDecl();
11034   else
11035     FD = cast<FunctionDecl>(D);
11036
11037   // See if this is a redefinition.
11038   if (!FD->isLateTemplateParsed()) {
11039     CheckForFunctionRedefinition(FD, nullptr, SkipBody);
11040
11041     // If we're skipping the body, we're done. Don't enter the scope.
11042     if (SkipBody && SkipBody->ShouldSkip)
11043       return D;
11044   }
11045
11046   // If we are instantiating a generic lambda call operator, push
11047   // a LambdaScopeInfo onto the function stack.  But use the information
11048   // that's already been calculated (ActOnLambdaExpr) to prime the current 
11049   // LambdaScopeInfo.  
11050   // When the template operator is being specialized, the LambdaScopeInfo,
11051   // has to be properly restored so that tryCaptureVariable doesn't try
11052   // and capture any new variables. In addition when calculating potential
11053   // captures during transformation of nested lambdas, it is necessary to 
11054   // have the LSI properly restored. 
11055   if (isGenericLambdaCallOperatorSpecialization(FD)) {
11056     assert(ActiveTemplateInstantiations.size() &&
11057       "There should be an active template instantiation on the stack " 
11058       "when instantiating a generic lambda!");
11059     RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
11060   }
11061   else
11062     // Enter a new function scope
11063     PushFunctionScope();
11064
11065   // Builtin functions cannot be defined.
11066   if (unsigned BuiltinID = FD->getBuiltinID()) {
11067     if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
11068         !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
11069       Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
11070       FD->setInvalidDecl();
11071     }
11072   }
11073
11074   // The return type of a function definition must be complete
11075   // (C99 6.9.1p3, C++ [dcl.fct]p6).
11076   QualType ResultType = FD->getReturnType();
11077   if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
11078       !FD->isInvalidDecl() &&
11079       RequireCompleteType(FD->getLocation(), ResultType,
11080                           diag::err_func_def_incomplete_result))
11081     FD->setInvalidDecl();
11082
11083   if (FnBodyScope)
11084     PushDeclContext(FnBodyScope, FD);
11085
11086   // Check the validity of our function parameters
11087   CheckParmsForFunctionDef(FD->param_begin(), FD->param_end(),
11088                            /*CheckParameterNames=*/true);
11089
11090   // Introduce our parameters into the function scope
11091   for (auto Param : FD->params()) {
11092     Param->setOwningFunction(FD);
11093
11094     // If this has an identifier, add it to the scope stack.
11095     if (Param->getIdentifier() && FnBodyScope) {
11096       CheckShadow(FnBodyScope, Param);
11097
11098       PushOnScopeChains(Param, FnBodyScope);
11099     }
11100   }
11101
11102   // If we had any tags defined in the function prototype,
11103   // introduce them into the function scope.
11104   if (FnBodyScope) {
11105     for (ArrayRef<NamedDecl *>::iterator
11106              I = FD->getDeclsInPrototypeScope().begin(),
11107              E = FD->getDeclsInPrototypeScope().end();
11108          I != E; ++I) {
11109       NamedDecl *D = *I;
11110
11111       // Some of these decls (like enums) may have been pinned to the
11112       // translation unit for lack of a real context earlier. If so, remove
11113       // from the translation unit and reattach to the current context.
11114       if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) {
11115         // Is the decl actually in the context?
11116         if (Context.getTranslationUnitDecl()->containsDecl(D))
11117           Context.getTranslationUnitDecl()->removeDecl(D);
11118         // Either way, reassign the lexical decl context to our FunctionDecl.
11119         D->setLexicalDeclContext(CurContext);
11120       }
11121
11122       // If the decl has a non-null name, make accessible in the current scope.
11123       if (!D->getName().empty())
11124         PushOnScopeChains(D, FnBodyScope, /*AddToContext=*/false);
11125
11126       // Similarly, dive into enums and fish their constants out, making them
11127       // accessible in this scope.
11128       if (auto *ED = dyn_cast<EnumDecl>(D)) {
11129         for (auto *EI : ED->enumerators())
11130           PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
11131       }
11132     }
11133   }
11134
11135   // Ensure that the function's exception specification is instantiated.
11136   if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
11137     ResolveExceptionSpec(D->getLocation(), FPT);
11138
11139   // dllimport cannot be applied to non-inline function definitions.
11140   if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
11141       !FD->isTemplateInstantiation()) {
11142     assert(!FD->hasAttr<DLLExportAttr>());
11143     Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
11144     FD->setInvalidDecl();
11145     return D;
11146   }
11147   // We want to attach documentation to original Decl (which might be
11148   // a function template).
11149   ActOnDocumentableDecl(D);
11150   if (getCurLexicalContext()->isObjCContainer() &&
11151       getCurLexicalContext()->getDeclKind() != Decl::ObjCCategoryImpl &&
11152       getCurLexicalContext()->getDeclKind() != Decl::ObjCImplementation)
11153     Diag(FD->getLocation(), diag::warn_function_def_in_objc_container);
11154     
11155   return D;
11156 }
11157
11158 /// \brief Given the set of return statements within a function body,
11159 /// compute the variables that are subject to the named return value 
11160 /// optimization.
11161 ///
11162 /// Each of the variables that is subject to the named return value 
11163 /// optimization will be marked as NRVO variables in the AST, and any
11164 /// return statement that has a marked NRVO variable as its NRVO candidate can
11165 /// use the named return value optimization.
11166 ///
11167 /// This function applies a very simplistic algorithm for NRVO: if every return
11168 /// statement in the scope of a variable has the same NRVO candidate, that
11169 /// candidate is an NRVO variable.
11170 void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
11171   ReturnStmt **Returns = Scope->Returns.data();
11172
11173   for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
11174     if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
11175       if (!NRVOCandidate->isNRVOVariable())
11176         Returns[I]->setNRVOCandidate(nullptr);
11177     }
11178   }
11179 }
11180
11181 bool Sema::canDelayFunctionBody(const Declarator &D) {
11182   // We can't delay parsing the body of a constexpr function template (yet).
11183   if (D.getDeclSpec().isConstexprSpecified())
11184     return false;
11185
11186   // We can't delay parsing the body of a function template with a deduced
11187   // return type (yet).
11188   if (D.getDeclSpec().containsPlaceholderType()) {
11189     // If the placeholder introduces a non-deduced trailing return type,
11190     // we can still delay parsing it.
11191     if (D.getNumTypeObjects()) {
11192       const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
11193       if (Outer.Kind == DeclaratorChunk::Function &&
11194           Outer.Fun.hasTrailingReturnType()) {
11195         QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
11196         return Ty.isNull() || !Ty->isUndeducedType();
11197       }
11198     }
11199     return false;
11200   }
11201
11202   return true;
11203 }
11204
11205 bool Sema::canSkipFunctionBody(Decl *D) {
11206   // We cannot skip the body of a function (or function template) which is
11207   // constexpr, since we may need to evaluate its body in order to parse the
11208   // rest of the file.
11209   // We cannot skip the body of a function with an undeduced return type,
11210   // because any callers of that function need to know the type.
11211   if (const FunctionDecl *FD = D->getAsFunction())
11212     if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
11213       return false;
11214   return Consumer.shouldSkipFunctionBody(D);
11215 }
11216
11217 Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
11218   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl))
11219     FD->setHasSkippedBody();
11220   else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl))
11221     MD->setHasSkippedBody();
11222   return ActOnFinishFunctionBody(Decl, nullptr);
11223 }
11224
11225 Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
11226   return ActOnFinishFunctionBody(D, BodyArg, false);
11227 }
11228
11229 Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
11230                                     bool IsInstantiation) {
11231   FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
11232
11233   sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
11234   sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
11235
11236   if (getLangOpts().Coroutines && !getCurFunction()->CoroutineStmts.empty())
11237     CheckCompletedCoroutineBody(FD, Body);
11238
11239   if (FD) {
11240     FD->setBody(Body);
11241
11242     if (getLangOpts().CPlusPlus14) {
11243       if (!FD->isInvalidDecl() && Body && !FD->isDependentContext() &&
11244           FD->getReturnType()->isUndeducedType()) {
11245         // If the function has a deduced result type but contains no 'return'
11246         // statements, the result type as written must be exactly 'auto', and
11247         // the deduced result type is 'void'.
11248         if (!FD->getReturnType()->getAs<AutoType>()) {
11249           Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
11250               << FD->getReturnType();
11251           FD->setInvalidDecl();
11252         } else {
11253           // Substitute 'void' for the 'auto' in the type.
11254           TypeLoc ResultType = getReturnTypeLoc(FD);
11255           Context.adjustDeducedFunctionResultType(
11256               FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
11257         }
11258       }
11259     } else if (getLangOpts().CPlusPlus11 && isLambdaCallOperator(FD)) {
11260       // In C++11, we don't use 'auto' deduction rules for lambda call
11261       // operators because we don't support return type deduction.
11262       auto *LSI = getCurLambda();
11263       if (LSI->HasImplicitReturnType) {
11264         deduceClosureReturnType(*LSI);
11265
11266         // C++11 [expr.prim.lambda]p4:
11267         //   [...] if there are no return statements in the compound-statement
11268         //   [the deduced type is] the type void
11269         QualType RetType =
11270             LSI->ReturnType.isNull() ? Context.VoidTy : LSI->ReturnType;
11271
11272         // Update the return type to the deduced type.
11273         const FunctionProtoType *Proto =
11274             FD->getType()->getAs<FunctionProtoType>();
11275         FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
11276                                             Proto->getExtProtoInfo()));
11277       }
11278     }
11279
11280     // The only way to be included in UndefinedButUsed is if there is an
11281     // ODR use before the definition. Avoid the expensive map lookup if this
11282     // is the first declaration.
11283     if (!FD->isFirstDecl() && FD->getPreviousDecl()->isUsed()) {
11284       if (!FD->isExternallyVisible())
11285         UndefinedButUsed.erase(FD);
11286       else if (FD->isInlined() &&
11287                !LangOpts.GNUInline &&
11288                (!FD->getPreviousDecl()->hasAttr<GNUInlineAttr>()))
11289         UndefinedButUsed.erase(FD);
11290     }
11291
11292     // If the function implicitly returns zero (like 'main') or is naked,
11293     // don't complain about missing return statements.
11294     if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
11295       WP.disableCheckFallThrough();
11296
11297     // MSVC permits the use of pure specifier (=0) on function definition,
11298     // defined at class scope, warn about this non-standard construct.
11299     if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
11300       Diag(FD->getLocation(), diag::ext_pure_function_definition);
11301
11302     if (!FD->isInvalidDecl()) {
11303       // Don't diagnose unused parameters of defaulted or deleted functions.
11304       if (!FD->isDeleted() && !FD->isDefaulted())
11305         DiagnoseUnusedParameters(FD->param_begin(), FD->param_end());
11306       DiagnoseSizeOfParametersAndReturnValue(FD->param_begin(), FD->param_end(),
11307                                              FD->getReturnType(), FD);
11308
11309       // If this is a structor, we need a vtable.
11310       if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
11311         MarkVTableUsed(FD->getLocation(), Constructor->getParent());
11312       else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(FD))
11313         MarkVTableUsed(FD->getLocation(), Destructor->getParent());
11314       
11315       // Try to apply the named return value optimization. We have to check
11316       // if we can do this here because lambdas keep return statements around
11317       // to deduce an implicit return type.
11318       if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
11319           !FD->isDependentContext())
11320         computeNRVO(Body, getCurFunction());
11321     }
11322
11323     // GNU warning -Wmissing-prototypes:
11324     //   Warn if a global function is defined without a previous
11325     //   prototype declaration. This warning is issued even if the
11326     //   definition itself provides a prototype. The aim is to detect
11327     //   global functions that fail to be declared in header files.
11328     const FunctionDecl *PossibleZeroParamPrototype = nullptr;
11329     if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
11330       Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
11331
11332       if (PossibleZeroParamPrototype) {
11333         // We found a declaration that is not a prototype,
11334         // but that could be a zero-parameter prototype
11335         if (TypeSourceInfo *TI =
11336                 PossibleZeroParamPrototype->getTypeSourceInfo()) {
11337           TypeLoc TL = TI->getTypeLoc();
11338           if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
11339             Diag(PossibleZeroParamPrototype->getLocation(),
11340                  diag::note_declaration_not_a_prototype)
11341                 << PossibleZeroParamPrototype
11342                 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
11343         }
11344       }
11345     }
11346
11347     if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
11348       const CXXMethodDecl *KeyFunction;
11349       if (MD->isOutOfLine() && (MD = MD->getCanonicalDecl()) &&
11350           MD->isVirtual() &&
11351           (KeyFunction = Context.getCurrentKeyFunction(MD->getParent())) &&
11352           MD == KeyFunction->getCanonicalDecl()) {
11353         // Update the key-function state if necessary for this ABI.
11354         if (FD->isInlined() &&
11355             !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
11356           Context.setNonKeyFunction(MD);
11357
11358           // If the newly-chosen key function is already defined, then we
11359           // need to mark the vtable as used retroactively.
11360           KeyFunction = Context.getCurrentKeyFunction(MD->getParent());
11361           const FunctionDecl *Definition;
11362           if (KeyFunction && KeyFunction->isDefined(Definition))
11363             MarkVTableUsed(Definition->getLocation(), MD->getParent(), true);
11364         } else {
11365           // We just defined they key function; mark the vtable as used.
11366           MarkVTableUsed(FD->getLocation(), MD->getParent(), true);
11367         }
11368       }
11369     }
11370
11371     assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
11372            "Function parsing confused");
11373   } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
11374     assert(MD == getCurMethodDecl() && "Method parsing confused");
11375     MD->setBody(Body);
11376     if (!MD->isInvalidDecl()) {
11377       DiagnoseUnusedParameters(MD->param_begin(), MD->param_end());
11378       DiagnoseSizeOfParametersAndReturnValue(MD->param_begin(), MD->param_end(),
11379                                              MD->getReturnType(), MD);
11380
11381       if (Body)
11382         computeNRVO(Body, getCurFunction());
11383     }
11384     if (getCurFunction()->ObjCShouldCallSuper) {
11385       Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
11386         << MD->getSelector().getAsString();
11387       getCurFunction()->ObjCShouldCallSuper = false;
11388     }
11389     if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
11390       const ObjCMethodDecl *InitMethod = nullptr;
11391       bool isDesignated =
11392           MD->isDesignatedInitializerForTheInterface(&InitMethod);
11393       assert(isDesignated && InitMethod);
11394       (void)isDesignated;
11395
11396       auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
11397         auto IFace = MD->getClassInterface();
11398         if (!IFace)
11399           return false;
11400         auto SuperD = IFace->getSuperClass();
11401         if (!SuperD)
11402           return false;
11403         return SuperD->getIdentifier() ==
11404             NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
11405       };
11406       // Don't issue this warning for unavailable inits or direct subclasses
11407       // of NSObject.
11408       if (!MD->isUnavailable() && !superIsNSObject(MD)) {
11409         Diag(MD->getLocation(),
11410              diag::warn_objc_designated_init_missing_super_call);
11411         Diag(InitMethod->getLocation(),
11412              diag::note_objc_designated_init_marked_here);
11413       }
11414       getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
11415     }
11416     if (getCurFunction()->ObjCWarnForNoInitDelegation) {
11417       // Don't issue this warning for unavaialable inits.
11418       if (!MD->isUnavailable())
11419         Diag(MD->getLocation(),
11420              diag::warn_objc_secondary_init_missing_init_call);
11421       getCurFunction()->ObjCWarnForNoInitDelegation = false;
11422     }
11423   } else {
11424     return nullptr;
11425   }
11426
11427   assert(!getCurFunction()->ObjCShouldCallSuper &&
11428          "This should only be set for ObjC methods, which should have been "
11429          "handled in the block above.");
11430
11431   // Verify and clean out per-function state.
11432   if (Body && (!FD || !FD->isDefaulted())) {
11433     // C++ constructors that have function-try-blocks can't have return
11434     // statements in the handlers of that block. (C++ [except.handle]p14)
11435     // Verify this.
11436     if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
11437       DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
11438     
11439     // Verify that gotos and switch cases don't jump into scopes illegally.
11440     if (getCurFunction()->NeedsScopeChecking() &&
11441         !PP.isCodeCompletionEnabled())
11442       DiagnoseInvalidJumps(Body);
11443
11444     if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
11445       if (!Destructor->getParent()->isDependentType())
11446         CheckDestructor(Destructor);
11447
11448       MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
11449                                              Destructor->getParent());
11450     }
11451     
11452     // If any errors have occurred, clear out any temporaries that may have
11453     // been leftover. This ensures that these temporaries won't be picked up for
11454     // deletion in some later function.
11455     if (getDiagnostics().hasErrorOccurred() ||
11456         getDiagnostics().getSuppressAllDiagnostics()) {
11457       DiscardCleanupsInEvaluationContext();
11458     }
11459     if (!getDiagnostics().hasUncompilableErrorOccurred() &&
11460         !isa<FunctionTemplateDecl>(dcl)) {
11461       // Since the body is valid, issue any analysis-based warnings that are
11462       // enabled.
11463       ActivePolicy = &WP;
11464     }
11465
11466     if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
11467         (!CheckConstexprFunctionDecl(FD) ||
11468          !CheckConstexprFunctionBody(FD, Body)))
11469       FD->setInvalidDecl();
11470
11471     if (FD && FD->hasAttr<NakedAttr>()) {
11472       for (const Stmt *S : Body->children()) {
11473         if (!isa<AsmStmt>(S) && !isa<NullStmt>(S)) {
11474           Diag(S->getLocStart(), diag::err_non_asm_stmt_in_naked_function);
11475           Diag(FD->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
11476           FD->setInvalidDecl();
11477           break;
11478         }
11479       }
11480     }
11481
11482     assert(ExprCleanupObjects.size() ==
11483                ExprEvalContexts.back().NumCleanupObjects &&
11484            "Leftover temporaries in function");
11485     assert(!ExprNeedsCleanups && "Unaccounted cleanups in function");
11486     assert(MaybeODRUseExprs.empty() &&
11487            "Leftover expressions for odr-use checking");
11488   }
11489   
11490   if (!IsInstantiation)
11491     PopDeclContext();
11492
11493   PopFunctionScopeInfo(ActivePolicy, dcl);
11494   // If any errors have occurred, clear out any temporaries that may have
11495   // been leftover. This ensures that these temporaries won't be picked up for
11496   // deletion in some later function.
11497   if (getDiagnostics().hasErrorOccurred()) {
11498     DiscardCleanupsInEvaluationContext();
11499   }
11500
11501   return dcl;
11502 }
11503
11504 /// When we finish delayed parsing of an attribute, we must attach it to the
11505 /// relevant Decl.
11506 void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
11507                                        ParsedAttributes &Attrs) {
11508   // Always attach attributes to the underlying decl.
11509   if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
11510     D = TD->getTemplatedDecl();
11511   ProcessDeclAttributeList(S, D, Attrs.getList());  
11512   
11513   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
11514     if (Method->isStatic())
11515       checkThisInStaticMemberFunctionAttributes(Method);
11516 }
11517
11518 /// ImplicitlyDefineFunction - An undeclared identifier was used in a function
11519 /// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
11520 NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
11521                                           IdentifierInfo &II, Scope *S) {
11522   // Before we produce a declaration for an implicitly defined
11523   // function, see whether there was a locally-scoped declaration of
11524   // this name as a function or variable. If so, use that
11525   // (non-visible) declaration, and complain about it.
11526   if (NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II)) {
11527     Diag(Loc, diag::warn_use_out_of_scope_declaration) << ExternCPrev;
11528     Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
11529     return ExternCPrev;
11530   }
11531
11532   // Extension in C99.  Legal in C90, but warn about it.
11533   unsigned diag_id;
11534   if (II.getName().startswith("__builtin_"))
11535     diag_id = diag::warn_builtin_unknown;
11536   else if (getLangOpts().C99)
11537     diag_id = diag::ext_implicit_function_decl;
11538   else
11539     diag_id = diag::warn_implicit_function_decl;
11540   Diag(Loc, diag_id) << &II;
11541
11542   // Because typo correction is expensive, only do it if the implicit
11543   // function declaration is going to be treated as an error.
11544   if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
11545     TypoCorrection Corrected;
11546     if (S &&
11547         (Corrected = CorrectTypo(
11548              DeclarationNameInfo(&II, Loc), LookupOrdinaryName, S, nullptr,
11549              llvm::make_unique<DeclFilterCCC<FunctionDecl>>(), CTK_NonError)))
11550       diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
11551                    /*ErrorRecovery*/false);
11552   }
11553
11554   // Set a Declarator for the implicit definition: int foo();
11555   const char *Dummy;
11556   AttributeFactory attrFactory;
11557   DeclSpec DS(attrFactory);
11558   unsigned DiagID;
11559   bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
11560                                   Context.getPrintingPolicy());
11561   (void)Error; // Silence warning.
11562   assert(!Error && "Error setting up implicit decl!");
11563   SourceLocation NoLoc;
11564   Declarator D(DS, Declarator::BlockContext);
11565   D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
11566                                              /*IsAmbiguous=*/false,
11567                                              /*LParenLoc=*/NoLoc,
11568                                              /*Params=*/nullptr,
11569                                              /*NumParams=*/0,
11570                                              /*EllipsisLoc=*/NoLoc,
11571                                              /*RParenLoc=*/NoLoc,
11572                                              /*TypeQuals=*/0,
11573                                              /*RefQualifierIsLvalueRef=*/true,
11574                                              /*RefQualifierLoc=*/NoLoc,
11575                                              /*ConstQualifierLoc=*/NoLoc,
11576                                              /*VolatileQualifierLoc=*/NoLoc,
11577                                              /*RestrictQualifierLoc=*/NoLoc,
11578                                              /*MutableLoc=*/NoLoc,
11579                                              EST_None,
11580                                              /*ESpecRange=*/SourceRange(),
11581                                              /*Exceptions=*/nullptr,
11582                                              /*ExceptionRanges=*/nullptr,
11583                                              /*NumExceptions=*/0,
11584                                              /*NoexceptExpr=*/nullptr,
11585                                              /*ExceptionSpecTokens=*/nullptr,
11586                                              Loc, Loc, D),
11587                 DS.getAttributes(),
11588                 SourceLocation());
11589   D.SetIdentifier(&II, Loc);
11590
11591   // Insert this function into translation-unit scope.
11592
11593   DeclContext *PrevDC = CurContext;
11594   CurContext = Context.getTranslationUnitDecl();
11595
11596   FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(TUScope, D));
11597   FD->setImplicit();
11598
11599   CurContext = PrevDC;
11600
11601   AddKnownFunctionAttributes(FD);
11602
11603   return FD;
11604 }
11605
11606 /// \brief Adds any function attributes that we know a priori based on
11607 /// the declaration of this function.
11608 ///
11609 /// These attributes can apply both to implicitly-declared builtins
11610 /// (like __builtin___printf_chk) or to library-declared functions
11611 /// like NSLog or printf.
11612 ///
11613 /// We need to check for duplicate attributes both here and where user-written
11614 /// attributes are applied to declarations.
11615 void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
11616   if (FD->isInvalidDecl())
11617     return;
11618
11619   // If this is a built-in function, map its builtin attributes to
11620   // actual attributes.
11621   if (unsigned BuiltinID = FD->getBuiltinID()) {
11622     // Handle printf-formatting attributes.
11623     unsigned FormatIdx;
11624     bool HasVAListArg;
11625     if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
11626       if (!FD->hasAttr<FormatAttr>()) {
11627         const char *fmt = "printf";
11628         unsigned int NumParams = FD->getNumParams();
11629         if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
11630             FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
11631           fmt = "NSString";
11632         FD->addAttr(FormatAttr::CreateImplicit(Context,
11633                                                &Context.Idents.get(fmt),
11634                                                FormatIdx+1,
11635                                                HasVAListArg ? 0 : FormatIdx+2,
11636                                                FD->getLocation()));
11637       }
11638     }
11639     if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
11640                                              HasVAListArg)) {
11641      if (!FD->hasAttr<FormatAttr>())
11642        FD->addAttr(FormatAttr::CreateImplicit(Context,
11643                                               &Context.Idents.get("scanf"),
11644                                               FormatIdx+1,
11645                                               HasVAListArg ? 0 : FormatIdx+2,
11646                                               FD->getLocation()));
11647     }
11648
11649     // Mark const if we don't care about errno and that is the only
11650     // thing preventing the function from being const. This allows
11651     // IRgen to use LLVM intrinsics for such functions.
11652     if (!getLangOpts().MathErrno &&
11653         Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
11654       if (!FD->hasAttr<ConstAttr>())
11655         FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
11656     }
11657
11658     if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
11659         !FD->hasAttr<ReturnsTwiceAttr>())
11660       FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
11661                                          FD->getLocation()));
11662     if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
11663       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
11664     if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
11665       FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
11666     if (getLangOpts().CUDA && getLangOpts().CUDATargetOverloads &&
11667         Context.BuiltinInfo.isTSBuiltin(BuiltinID) &&
11668         !FD->hasAttr<CUDADeviceAttr>() && !FD->hasAttr<CUDAHostAttr>()) {
11669       // Assign appropriate attribute depending on CUDA compilation
11670       // mode and the target builtin belongs to. E.g. during host
11671       // compilation, aux builtins are __device__, the rest are __host__.
11672       if (getLangOpts().CUDAIsDevice !=
11673           Context.BuiltinInfo.isAuxBuiltinID(BuiltinID))
11674         FD->addAttr(CUDADeviceAttr::CreateImplicit(Context, FD->getLocation()));
11675       else
11676         FD->addAttr(CUDAHostAttr::CreateImplicit(Context, FD->getLocation()));
11677     }
11678   }
11679
11680   // If C++ exceptions are enabled but we are told extern "C" functions cannot
11681   // throw, add an implicit nothrow attribute to any extern "C" function we come
11682   // across.
11683   if (getLangOpts().CXXExceptions && getLangOpts().ExternCNoUnwind &&
11684       FD->isExternC() && !FD->hasAttr<NoThrowAttr>()) {
11685     const auto *FPT = FD->getType()->getAs<FunctionProtoType>();
11686     if (!FPT || FPT->getExceptionSpecType() == EST_None)
11687       FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
11688   }
11689
11690   IdentifierInfo *Name = FD->getIdentifier();
11691   if (!Name)
11692     return;
11693   if ((!getLangOpts().CPlusPlus &&
11694        FD->getDeclContext()->isTranslationUnit()) ||
11695       (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
11696        cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
11697        LinkageSpecDecl::lang_c)) {
11698     // Okay: this could be a libc/libm/Objective-C function we know
11699     // about.
11700   } else
11701     return;
11702
11703   if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
11704     // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
11705     // target-specific builtins, perhaps?
11706     if (!FD->hasAttr<FormatAttr>())
11707       FD->addAttr(FormatAttr::CreateImplicit(Context,
11708                                              &Context.Idents.get("printf"), 2,
11709                                              Name->isStr("vasprintf") ? 0 : 3,
11710                                              FD->getLocation()));
11711   }
11712
11713   if (Name->isStr("__CFStringMakeConstantString")) {
11714     // We already have a __builtin___CFStringMakeConstantString,
11715     // but builds that use -fno-constant-cfstrings don't go through that.
11716     if (!FD->hasAttr<FormatArgAttr>())
11717       FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1,
11718                                                 FD->getLocation()));
11719   }
11720 }
11721
11722 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
11723                                     TypeSourceInfo *TInfo) {
11724   assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
11725   assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
11726
11727   if (!TInfo) {
11728     assert(D.isInvalidType() && "no declarator info for valid type");
11729     TInfo = Context.getTrivialTypeSourceInfo(T);
11730   }
11731
11732   // Scope manipulation handled by caller.
11733   TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
11734                                            D.getLocStart(),
11735                                            D.getIdentifierLoc(),
11736                                            D.getIdentifier(),
11737                                            TInfo);
11738
11739   // Bail out immediately if we have an invalid declaration.
11740   if (D.isInvalidType()) {
11741     NewTD->setInvalidDecl();
11742     return NewTD;
11743   }
11744   
11745   if (D.getDeclSpec().isModulePrivateSpecified()) {
11746     if (CurContext->isFunctionOrMethod())
11747       Diag(NewTD->getLocation(), diag::err_module_private_local)
11748         << 2 << NewTD->getDeclName()
11749         << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
11750         << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
11751     else
11752       NewTD->setModulePrivate();
11753   }
11754   
11755   // C++ [dcl.typedef]p8:
11756   //   If the typedef declaration defines an unnamed class (or
11757   //   enum), the first typedef-name declared by the declaration
11758   //   to be that class type (or enum type) is used to denote the
11759   //   class type (or enum type) for linkage purposes only.
11760   // We need to check whether the type was declared in the declaration.
11761   switch (D.getDeclSpec().getTypeSpecType()) {
11762   case TST_enum:
11763   case TST_struct:
11764   case TST_interface:
11765   case TST_union:
11766   case TST_class: {
11767     TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
11768     setTagNameForLinkagePurposes(tagFromDeclSpec, NewTD);
11769     break;
11770   }
11771
11772   default:
11773     break;
11774   }
11775
11776   return NewTD;
11777 }
11778
11779 /// \brief Check that this is a valid underlying type for an enum declaration.
11780 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
11781   SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
11782   QualType T = TI->getType();
11783
11784   if (T->isDependentType())
11785     return false;
11786
11787   if (const BuiltinType *BT = T->getAs<BuiltinType>())
11788     if (BT->isInteger())
11789       return false;
11790
11791   Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
11792   return true;
11793 }
11794
11795 /// Check whether this is a valid redeclaration of a previous enumeration.
11796 /// \return true if the redeclaration was invalid.
11797 bool Sema::CheckEnumRedeclaration(
11798     SourceLocation EnumLoc, bool IsScoped, QualType EnumUnderlyingTy,
11799     bool EnumUnderlyingIsImplicit, const EnumDecl *Prev) {
11800   bool IsFixed = !EnumUnderlyingTy.isNull();
11801
11802   if (IsScoped != Prev->isScoped()) {
11803     Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
11804       << Prev->isScoped();
11805     Diag(Prev->getLocation(), diag::note_previous_declaration);
11806     return true;
11807   }
11808
11809   if (IsFixed && Prev->isFixed()) {
11810     if (!EnumUnderlyingTy->isDependentType() &&
11811         !Prev->getIntegerType()->isDependentType() &&
11812         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
11813                                         Prev->getIntegerType())) {
11814       // TODO: Highlight the underlying type of the redeclaration.
11815       Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
11816         << EnumUnderlyingTy << Prev->getIntegerType();
11817       Diag(Prev->getLocation(), diag::note_previous_declaration)
11818           << Prev->getIntegerTypeRange();
11819       return true;
11820     }
11821   } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) {
11822     ;
11823   } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) {
11824     ;
11825   } else if (IsFixed != Prev->isFixed()) {
11826     Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
11827       << Prev->isFixed();
11828     Diag(Prev->getLocation(), diag::note_previous_declaration);
11829     return true;
11830   }
11831
11832   return false;
11833 }
11834
11835 /// \brief Get diagnostic %select index for tag kind for
11836 /// redeclaration diagnostic message.
11837 /// WARNING: Indexes apply to particular diagnostics only!
11838 ///
11839 /// \returns diagnostic %select index.
11840 static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
11841   switch (Tag) {
11842   case TTK_Struct: return 0;
11843   case TTK_Interface: return 1;
11844   case TTK_Class:  return 2;
11845   default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
11846   }
11847 }
11848
11849 /// \brief Determine if tag kind is a class-key compatible with
11850 /// class for redeclaration (class, struct, or __interface).
11851 ///
11852 /// \returns true iff the tag kind is compatible.
11853 static bool isClassCompatTagKind(TagTypeKind Tag)
11854 {
11855   return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
11856 }
11857
11858 /// \brief Determine whether a tag with a given kind is acceptable
11859 /// as a redeclaration of the given tag declaration.
11860 ///
11861 /// \returns true if the new tag kind is acceptable, false otherwise.
11862 bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
11863                                         TagTypeKind NewTag, bool isDefinition,
11864                                         SourceLocation NewTagLoc,
11865                                         const IdentifierInfo *Name) {
11866   // C++ [dcl.type.elab]p3:
11867   //   The class-key or enum keyword present in the
11868   //   elaborated-type-specifier shall agree in kind with the
11869   //   declaration to which the name in the elaborated-type-specifier
11870   //   refers. This rule also applies to the form of
11871   //   elaborated-type-specifier that declares a class-name or
11872   //   friend class since it can be construed as referring to the
11873   //   definition of the class. Thus, in any
11874   //   elaborated-type-specifier, the enum keyword shall be used to
11875   //   refer to an enumeration (7.2), the union class-key shall be
11876   //   used to refer to a union (clause 9), and either the class or
11877   //   struct class-key shall be used to refer to a class (clause 9)
11878   //   declared using the class or struct class-key.
11879   TagTypeKind OldTag = Previous->getTagKind();
11880   if (!isDefinition || !isClassCompatTagKind(NewTag))
11881     if (OldTag == NewTag)
11882       return true;
11883
11884   if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
11885     // Warn about the struct/class tag mismatch.
11886     bool isTemplate = false;
11887     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
11888       isTemplate = Record->getDescribedClassTemplate();
11889
11890     if (!ActiveTemplateInstantiations.empty()) {
11891       // In a template instantiation, do not offer fix-its for tag mismatches
11892       // since they usually mess up the template instead of fixing the problem.
11893       Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
11894         << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11895         << getRedeclDiagFromTagKind(OldTag);
11896       return true;
11897     }
11898
11899     if (isDefinition) {
11900       // On definitions, check previous tags and issue a fix-it for each
11901       // one that doesn't match the current tag.
11902       if (Previous->getDefinition()) {
11903         // Don't suggest fix-its for redefinitions.
11904         return true;
11905       }
11906
11907       bool previousMismatch = false;
11908       for (auto I : Previous->redecls()) {
11909         if (I->getTagKind() != NewTag) {
11910           if (!previousMismatch) {
11911             previousMismatch = true;
11912             Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
11913               << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11914               << getRedeclDiagFromTagKind(I->getTagKind());
11915           }
11916           Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
11917             << getRedeclDiagFromTagKind(NewTag)
11918             << FixItHint::CreateReplacement(I->getInnerLocStart(),
11919                  TypeWithKeyword::getTagTypeKindName(NewTag));
11920         }
11921       }
11922       return true;
11923     }
11924
11925     // Check for a previous definition.  If current tag and definition
11926     // are same type, do nothing.  If no definition, but disagree with
11927     // with previous tag type, give a warning, but no fix-it.
11928     const TagDecl *Redecl = Previous->getDefinition() ?
11929                             Previous->getDefinition() : Previous;
11930     if (Redecl->getTagKind() == NewTag) {
11931       return true;
11932     }
11933
11934     Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
11935       << getRedeclDiagFromTagKind(NewTag) << isTemplate << Name
11936       << getRedeclDiagFromTagKind(OldTag);
11937     Diag(Redecl->getLocation(), diag::note_previous_use);
11938
11939     // If there is a previous definition, suggest a fix-it.
11940     if (Previous->getDefinition()) {
11941         Diag(NewTagLoc, diag::note_struct_class_suggestion)
11942           << getRedeclDiagFromTagKind(Redecl->getTagKind())
11943           << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
11944                TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
11945     }
11946
11947     return true;
11948   }
11949   return false;
11950 }
11951
11952 /// Add a minimal nested name specifier fixit hint to allow lookup of a tag name
11953 /// from an outer enclosing namespace or file scope inside a friend declaration.
11954 /// This should provide the commented out code in the following snippet:
11955 ///   namespace N {
11956 ///     struct X;
11957 ///     namespace M {
11958 ///       struct Y { friend struct /*N::*/ X; };
11959 ///     }
11960 ///   }
11961 static FixItHint createFriendTagNNSFixIt(Sema &SemaRef, NamedDecl *ND, Scope *S,
11962                                          SourceLocation NameLoc) {
11963   // While the decl is in a namespace, do repeated lookup of that name and see
11964   // if we get the same namespace back.  If we do not, continue until
11965   // translation unit scope, at which point we have a fully qualified NNS.
11966   SmallVector<IdentifierInfo *, 4> Namespaces;
11967   DeclContext *DC = ND->getDeclContext()->getRedeclContext();
11968   for (; !DC->isTranslationUnit(); DC = DC->getParent()) {
11969     // This tag should be declared in a namespace, which can only be enclosed by
11970     // other namespaces.  Bail if there's an anonymous namespace in the chain.
11971     NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(DC);
11972     if (!Namespace || Namespace->isAnonymousNamespace())
11973       return FixItHint();
11974     IdentifierInfo *II = Namespace->getIdentifier();
11975     Namespaces.push_back(II);
11976     NamedDecl *Lookup = SemaRef.LookupSingleName(
11977         S, II, NameLoc, Sema::LookupNestedNameSpecifierName);
11978     if (Lookup == Namespace)
11979       break;
11980   }
11981
11982   // Once we have all the namespaces, reverse them to go outermost first, and
11983   // build an NNS.
11984   SmallString<64> Insertion;
11985   llvm::raw_svector_ostream OS(Insertion);
11986   if (DC->isTranslationUnit())
11987     OS << "::";
11988   std::reverse(Namespaces.begin(), Namespaces.end());
11989   for (auto *II : Namespaces)
11990     OS << II->getName() << "::";
11991   return FixItHint::CreateInsertion(NameLoc, Insertion);
11992 }
11993
11994 /// \brief Determine whether a tag originally declared in context \p OldDC can
11995 /// be redeclared with an unqualfied name in \p NewDC (assuming name lookup
11996 /// found a declaration in \p OldDC as a previous decl, perhaps through a
11997 /// using-declaration).
11998 static bool isAcceptableTagRedeclContext(Sema &S, DeclContext *OldDC,
11999                                          DeclContext *NewDC) {
12000   OldDC = OldDC->getRedeclContext();
12001   NewDC = NewDC->getRedeclContext();
12002
12003   if (OldDC->Equals(NewDC))
12004     return true;
12005
12006   // In MSVC mode, we allow a redeclaration if the contexts are related (either
12007   // encloses the other).
12008   if (S.getLangOpts().MSVCCompat &&
12009       (OldDC->Encloses(NewDC) || NewDC->Encloses(OldDC)))
12010     return true;
12011
12012   return false;
12013 }
12014
12015 /// Find the DeclContext in which a tag is implicitly declared if we see an
12016 /// elaborated type specifier in the specified context, and lookup finds
12017 /// nothing.
12018 static DeclContext *getTagInjectionContext(DeclContext *DC) {
12019   while (!DC->isFileContext() && !DC->isFunctionOrMethod())
12020     DC = DC->getParent();
12021   return DC;
12022 }
12023
12024 /// Find the Scope in which a tag is implicitly declared if we see an
12025 /// elaborated type specifier in the specified context, and lookup finds
12026 /// nothing.
12027 static Scope *getTagInjectionScope(Scope *S, const LangOptions &LangOpts) {
12028   while (S->isClassScope() ||
12029          (LangOpts.CPlusPlus &&
12030           S->isFunctionPrototypeScope()) ||
12031          ((S->getFlags() & Scope::DeclScope) == 0) ||
12032          (S->getEntity() && S->getEntity()->isTransparentContext()))
12033     S = S->getParent();
12034   return S;
12035 }
12036
12037 /// \brief This is invoked when we see 'struct foo' or 'struct {'.  In the
12038 /// former case, Name will be non-null.  In the later case, Name will be null.
12039 /// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
12040 /// reference/declaration/definition of a tag.
12041 ///
12042 /// \param IsTypeSpecifier \c true if this is a type-specifier (or
12043 /// trailing-type-specifier) other than one in an alias-declaration.
12044 ///
12045 /// \param SkipBody If non-null, will be set to indicate if the caller should
12046 /// skip the definition of this tag and treat it as if it were a declaration.
12047 Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
12048                      SourceLocation KWLoc, CXXScopeSpec &SS,
12049                      IdentifierInfo *Name, SourceLocation NameLoc,
12050                      AttributeList *Attr, AccessSpecifier AS,
12051                      SourceLocation ModulePrivateLoc,
12052                      MultiTemplateParamsArg TemplateParameterLists,
12053                      bool &OwnedDecl, bool &IsDependent,
12054                      SourceLocation ScopedEnumKWLoc,
12055                      bool ScopedEnumUsesClassTag,
12056                      TypeResult UnderlyingType,
12057                      bool IsTypeSpecifier, SkipBodyInfo *SkipBody) {
12058   // If this is not a definition, it must have a name.
12059   IdentifierInfo *OrigName = Name;
12060   assert((Name != nullptr || TUK == TUK_Definition) &&
12061          "Nameless record must be a definition!");
12062   assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
12063
12064   OwnedDecl = false;
12065   TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
12066   bool ScopedEnum = ScopedEnumKWLoc.isValid();
12067
12068   // FIXME: Check explicit specializations more carefully.
12069   bool isExplicitSpecialization = false;
12070   bool Invalid = false;
12071
12072   // We only need to do this matching if we have template parameters
12073   // or a scope specifier, which also conveniently avoids this work
12074   // for non-C++ cases.
12075   if (TemplateParameterLists.size() > 0 ||
12076       (SS.isNotEmpty() && TUK != TUK_Reference)) {
12077     if (TemplateParameterList *TemplateParams =
12078             MatchTemplateParametersToScopeSpecifier(
12079                 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
12080                 TUK == TUK_Friend, isExplicitSpecialization, Invalid)) {
12081       if (Kind == TTK_Enum) {
12082         Diag(KWLoc, diag::err_enum_template);
12083         return nullptr;
12084       }
12085
12086       if (TemplateParams->size() > 0) {
12087         // This is a declaration or definition of a class template (which may
12088         // be a member of another template).
12089
12090         if (Invalid)
12091           return nullptr;
12092
12093         OwnedDecl = false;
12094         DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
12095                                                SS, Name, NameLoc, Attr,
12096                                                TemplateParams, AS,
12097                                                ModulePrivateLoc,
12098                                                /*FriendLoc*/SourceLocation(),
12099                                                TemplateParameterLists.size()-1,
12100                                                TemplateParameterLists.data(),
12101                                                SkipBody);
12102         return Result.get();
12103       } else {
12104         // The "template<>" header is extraneous.
12105         Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
12106           << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
12107         isExplicitSpecialization = true;
12108       }
12109     }
12110   }
12111
12112   // Figure out the underlying type if this a enum declaration. We need to do
12113   // this early, because it's needed to detect if this is an incompatible
12114   // redeclaration.
12115   llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
12116   bool EnumUnderlyingIsImplicit = false;
12117
12118   if (Kind == TTK_Enum) {
12119     if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum))
12120       // No underlying type explicitly specified, or we failed to parse the
12121       // type, default to int.
12122       EnumUnderlying = Context.IntTy.getTypePtr();
12123     else if (UnderlyingType.get()) {
12124       // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
12125       // integral type; any cv-qualification is ignored.
12126       TypeSourceInfo *TI = nullptr;
12127       GetTypeFromParser(UnderlyingType.get(), &TI);
12128       EnumUnderlying = TI;
12129
12130       if (CheckEnumUnderlyingType(TI))
12131         // Recover by falling back to int.
12132         EnumUnderlying = Context.IntTy.getTypePtr();
12133
12134       if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
12135                                           UPPC_FixedUnderlyingType))
12136         EnumUnderlying = Context.IntTy.getTypePtr();
12137
12138     } else if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
12139       if (getLangOpts().MSVCCompat || TUK == TUK_Definition) {
12140         // Microsoft enums are always of int type.
12141         EnumUnderlying = Context.IntTy.getTypePtr();
12142         EnumUnderlyingIsImplicit = true;
12143       }
12144     }
12145   }
12146
12147   DeclContext *SearchDC = CurContext;
12148   DeclContext *DC = CurContext;
12149   bool isStdBadAlloc = false;
12150
12151   RedeclarationKind Redecl = ForRedeclaration;
12152   if (TUK == TUK_Friend || TUK == TUK_Reference)
12153     Redecl = NotForRedeclaration;
12154
12155   LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
12156   if (Name && SS.isNotEmpty()) {
12157     // We have a nested-name tag ('struct foo::bar').
12158
12159     // Check for invalid 'foo::'.
12160     if (SS.isInvalid()) {
12161       Name = nullptr;
12162       goto CreateNewDecl;
12163     }
12164
12165     // If this is a friend or a reference to a class in a dependent
12166     // context, don't try to make a decl for it.
12167     if (TUK == TUK_Friend || TUK == TUK_Reference) {
12168       DC = computeDeclContext(SS, false);
12169       if (!DC) {
12170         IsDependent = true;
12171         return nullptr;
12172       }
12173     } else {
12174       DC = computeDeclContext(SS, true);
12175       if (!DC) {
12176         Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
12177           << SS.getRange();
12178         return nullptr;
12179       }
12180     }
12181
12182     if (RequireCompleteDeclContext(SS, DC))
12183       return nullptr;
12184
12185     SearchDC = DC;
12186     // Look-up name inside 'foo::'.
12187     LookupQualifiedName(Previous, DC);
12188
12189     if (Previous.isAmbiguous())
12190       return nullptr;
12191
12192     if (Previous.empty()) {
12193       // Name lookup did not find anything. However, if the
12194       // nested-name-specifier refers to the current instantiation,
12195       // and that current instantiation has any dependent base
12196       // classes, we might find something at instantiation time: treat
12197       // this as a dependent elaborated-type-specifier.
12198       // But this only makes any sense for reference-like lookups.
12199       if (Previous.wasNotFoundInCurrentInstantiation() &&
12200           (TUK == TUK_Reference || TUK == TUK_Friend)) {
12201         IsDependent = true;
12202         return nullptr;
12203       }
12204
12205       // A tag 'foo::bar' must already exist.
12206       Diag(NameLoc, diag::err_not_tag_in_scope) 
12207         << Kind << Name << DC << SS.getRange();
12208       Name = nullptr;
12209       Invalid = true;
12210       goto CreateNewDecl;
12211     }
12212   } else if (Name) {
12213     // C++14 [class.mem]p14:
12214     //   If T is the name of a class, then each of the following shall have a
12215     //   name different from T:
12216     //    -- every member of class T that is itself a type
12217     if (TUK != TUK_Reference && TUK != TUK_Friend &&
12218         DiagnoseClassNameShadow(SearchDC, DeclarationNameInfo(Name, NameLoc)))
12219       return nullptr;
12220
12221     // If this is a named struct, check to see if there was a previous forward
12222     // declaration or definition.
12223     // FIXME: We're looking into outer scopes here, even when we
12224     // shouldn't be. Doing so can result in ambiguities that we
12225     // shouldn't be diagnosing.
12226     LookupName(Previous, S);
12227
12228     // When declaring or defining a tag, ignore ambiguities introduced
12229     // by types using'ed into this scope.
12230     if (Previous.isAmbiguous() && 
12231         (TUK == TUK_Definition || TUK == TUK_Declaration)) {
12232       LookupResult::Filter F = Previous.makeFilter();
12233       while (F.hasNext()) {
12234         NamedDecl *ND = F.next();
12235         if (ND->getDeclContext()->getRedeclContext() != SearchDC)
12236           F.erase();
12237       }
12238       F.done();
12239     }
12240
12241     // C++11 [namespace.memdef]p3:
12242     //   If the name in a friend declaration is neither qualified nor
12243     //   a template-id and the declaration is a function or an
12244     //   elaborated-type-specifier, the lookup to determine whether
12245     //   the entity has been previously declared shall not consider
12246     //   any scopes outside the innermost enclosing namespace.
12247     //
12248     // MSVC doesn't implement the above rule for types, so a friend tag
12249     // declaration may be a redeclaration of a type declared in an enclosing
12250     // scope.  They do implement this rule for friend functions.
12251     //
12252     // Does it matter that this should be by scope instead of by
12253     // semantic context?
12254     if (!Previous.empty() && TUK == TUK_Friend) {
12255       DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
12256       LookupResult::Filter F = Previous.makeFilter();
12257       bool FriendSawTagOutsideEnclosingNamespace = false;
12258       while (F.hasNext()) {
12259         NamedDecl *ND = F.next();
12260         DeclContext *DC = ND->getDeclContext()->getRedeclContext();
12261         if (DC->isFileContext() &&
12262             !EnclosingNS->Encloses(ND->getDeclContext())) {
12263           if (getLangOpts().MSVCCompat)
12264             FriendSawTagOutsideEnclosingNamespace = true;
12265           else
12266             F.erase();
12267         }
12268       }
12269       F.done();
12270
12271       // Diagnose this MSVC extension in the easy case where lookup would have
12272       // unambiguously found something outside the enclosing namespace.
12273       if (Previous.isSingleResult() && FriendSawTagOutsideEnclosingNamespace) {
12274         NamedDecl *ND = Previous.getFoundDecl();
12275         Diag(NameLoc, diag::ext_friend_tag_redecl_outside_namespace)
12276             << createFriendTagNNSFixIt(*this, ND, S, NameLoc);
12277       }
12278     }
12279
12280     // Note:  there used to be some attempt at recovery here.
12281     if (Previous.isAmbiguous())
12282       return nullptr;
12283
12284     if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
12285       // FIXME: This makes sure that we ignore the contexts associated
12286       // with C structs, unions, and enums when looking for a matching
12287       // tag declaration or definition. See the similar lookup tweak
12288       // in Sema::LookupName; is there a better way to deal with this?
12289       while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
12290         SearchDC = SearchDC->getParent();
12291     }
12292   }
12293
12294   if (Previous.isSingleResult() &&
12295       Previous.getFoundDecl()->isTemplateParameter()) {
12296     // Maybe we will complain about the shadowed template parameter.
12297     DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
12298     // Just pretend that we didn't see the previous declaration.
12299     Previous.clear();
12300   }
12301
12302   if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
12303       DC->Equals(getStdNamespace()) && Name->isStr("bad_alloc")) {
12304     // This is a declaration of or a reference to "std::bad_alloc".
12305     isStdBadAlloc = true;
12306     
12307     if (Previous.empty() && StdBadAlloc) {
12308       // std::bad_alloc has been implicitly declared (but made invisible to
12309       // name lookup). Fill in this implicit declaration as the previous 
12310       // declaration, so that the declarations get chained appropriately.
12311       Previous.addDecl(getStdBadAlloc());
12312     }
12313   }
12314
12315   // If we didn't find a previous declaration, and this is a reference
12316   // (or friend reference), move to the correct scope.  In C++, we
12317   // also need to do a redeclaration lookup there, just in case
12318   // there's a shadow friend decl.
12319   if (Name && Previous.empty() &&
12320       (TUK == TUK_Reference || TUK == TUK_Friend)) {
12321     if (Invalid) goto CreateNewDecl;
12322     assert(SS.isEmpty());
12323
12324     if (TUK == TUK_Reference) {
12325       // C++ [basic.scope.pdecl]p5:
12326       //   -- for an elaborated-type-specifier of the form
12327       //
12328       //          class-key identifier
12329       //
12330       //      if the elaborated-type-specifier is used in the
12331       //      decl-specifier-seq or parameter-declaration-clause of a
12332       //      function defined in namespace scope, the identifier is
12333       //      declared as a class-name in the namespace that contains
12334       //      the declaration; otherwise, except as a friend
12335       //      declaration, the identifier is declared in the smallest
12336       //      non-class, non-function-prototype scope that contains the
12337       //      declaration.
12338       //
12339       // C99 6.7.2.3p8 has a similar (but not identical!) provision for
12340       // C structs and unions.
12341       //
12342       // It is an error in C++ to declare (rather than define) an enum
12343       // type, including via an elaborated type specifier.  We'll
12344       // diagnose that later; for now, declare the enum in the same
12345       // scope as we would have picked for any other tag type.
12346       //
12347       // GNU C also supports this behavior as part of its incomplete
12348       // enum types extension, while GNU C++ does not.
12349       //
12350       // Find the context where we'll be declaring the tag.
12351       // FIXME: We would like to maintain the current DeclContext as the
12352       // lexical context,
12353       SearchDC = getTagInjectionContext(SearchDC);
12354
12355       // Find the scope where we'll be declaring the tag.
12356       S = getTagInjectionScope(S, getLangOpts());
12357     } else {
12358       assert(TUK == TUK_Friend);
12359       // C++ [namespace.memdef]p3:
12360       //   If a friend declaration in a non-local class first declares a
12361       //   class or function, the friend class or function is a member of
12362       //   the innermost enclosing namespace.
12363       SearchDC = SearchDC->getEnclosingNamespaceContext();
12364     }
12365
12366     // In C++, we need to do a redeclaration lookup to properly
12367     // diagnose some problems.
12368     // FIXME: redeclaration lookup is also used (with and without C++) to find a
12369     // hidden declaration so that we don't get ambiguity errors when using a
12370     // type declared by an elaborated-type-specifier.  In C that is not correct
12371     // and we should instead merge compatible types found by lookup.
12372     if (getLangOpts().CPlusPlus) {
12373       Previous.setRedeclarationKind(ForRedeclaration);
12374       LookupQualifiedName(Previous, SearchDC);
12375     } else {
12376       Previous.setRedeclarationKind(ForRedeclaration);
12377       LookupName(Previous, S);
12378     }
12379   }
12380
12381   // If we have a known previous declaration to use, then use it.
12382   if (Previous.empty() && SkipBody && SkipBody->Previous)
12383     Previous.addDecl(SkipBody->Previous);
12384
12385   if (!Previous.empty()) {
12386     NamedDecl *PrevDecl = Previous.getFoundDecl();
12387     NamedDecl *DirectPrevDecl = Previous.getRepresentativeDecl();
12388
12389     // It's okay to have a tag decl in the same scope as a typedef
12390     // which hides a tag decl in the same scope.  Finding this
12391     // insanity with a redeclaration lookup can only actually happen
12392     // in C++.
12393     //
12394     // This is also okay for elaborated-type-specifiers, which is
12395     // technically forbidden by the current standard but which is
12396     // okay according to the likely resolution of an open issue;
12397     // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
12398     if (getLangOpts().CPlusPlus) {
12399       if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
12400         if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
12401           TagDecl *Tag = TT->getDecl();
12402           if (Tag->getDeclName() == Name &&
12403               Tag->getDeclContext()->getRedeclContext()
12404                           ->Equals(TD->getDeclContext()->getRedeclContext())) {
12405             PrevDecl = Tag;
12406             Previous.clear();
12407             Previous.addDecl(Tag);
12408             Previous.resolveKind();
12409           }
12410         }
12411       }
12412     }
12413
12414     // If this is a redeclaration of a using shadow declaration, it must
12415     // declare a tag in the same context. In MSVC mode, we allow a
12416     // redefinition if either context is within the other.
12417     if (auto *Shadow = dyn_cast<UsingShadowDecl>(DirectPrevDecl)) {
12418       auto *OldTag = dyn_cast<TagDecl>(PrevDecl);
12419       if (SS.isEmpty() && TUK != TUK_Reference && TUK != TUK_Friend &&
12420           isDeclInScope(Shadow, SearchDC, S, isExplicitSpecialization) &&
12421           !(OldTag && isAcceptableTagRedeclContext(
12422                           *this, OldTag->getDeclContext(), SearchDC))) {
12423         Diag(KWLoc, diag::err_using_decl_conflict_reverse);
12424         Diag(Shadow->getTargetDecl()->getLocation(),
12425              diag::note_using_decl_target);
12426         Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl)
12427             << 0;
12428         // Recover by ignoring the old declaration.
12429         Previous.clear();
12430         goto CreateNewDecl;
12431       }
12432     }
12433
12434     if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
12435       // If this is a use of a previous tag, or if the tag is already declared
12436       // in the same scope (so that the definition/declaration completes or
12437       // rementions the tag), reuse the decl.
12438       if (TUK == TUK_Reference || TUK == TUK_Friend ||
12439           isDeclInScope(DirectPrevDecl, SearchDC, S,
12440                         SS.isNotEmpty() || isExplicitSpecialization)) {
12441         // Make sure that this wasn't declared as an enum and now used as a
12442         // struct or something similar.
12443         if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
12444                                           TUK == TUK_Definition, KWLoc,
12445                                           Name)) {
12446           bool SafeToContinue
12447             = (PrevTagDecl->getTagKind() != TTK_Enum &&
12448                Kind != TTK_Enum);
12449           if (SafeToContinue)
12450             Diag(KWLoc, diag::err_use_with_wrong_tag)
12451               << Name
12452               << FixItHint::CreateReplacement(SourceRange(KWLoc),
12453                                               PrevTagDecl->getKindName());
12454           else
12455             Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
12456           Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
12457
12458           if (SafeToContinue)
12459             Kind = PrevTagDecl->getTagKind();
12460           else {
12461             // Recover by making this an anonymous redefinition.
12462             Name = nullptr;
12463             Previous.clear();
12464             Invalid = true;
12465           }
12466         }
12467
12468         if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
12469           const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
12470
12471           // If this is an elaborated-type-specifier for a scoped enumeration,
12472           // the 'class' keyword is not necessary and not permitted.
12473           if (TUK == TUK_Reference || TUK == TUK_Friend) {
12474             if (ScopedEnum)
12475               Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
12476                 << PrevEnum->isScoped()
12477                 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
12478             return PrevTagDecl;
12479           }
12480
12481           QualType EnumUnderlyingTy;
12482           if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
12483             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
12484           else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
12485             EnumUnderlyingTy = QualType(T, 0);
12486
12487           // All conflicts with previous declarations are recovered by
12488           // returning the previous declaration, unless this is a definition,
12489           // in which case we want the caller to bail out.
12490           if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
12491                                      ScopedEnum, EnumUnderlyingTy,
12492                                      EnumUnderlyingIsImplicit, PrevEnum))
12493             return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
12494         }
12495
12496         // C++11 [class.mem]p1:
12497         //   A member shall not be declared twice in the member-specification,
12498         //   except that a nested class or member class template can be declared
12499         //   and then later defined.
12500         if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
12501             S->isDeclScope(PrevDecl)) {
12502           Diag(NameLoc, diag::ext_member_redeclared);
12503           Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
12504         }
12505
12506         if (!Invalid) {
12507           // If this is a use, just return the declaration we found, unless
12508           // we have attributes.
12509           if (TUK == TUK_Reference || TUK == TUK_Friend) {
12510             if (Attr) {
12511               // FIXME: Diagnose these attributes. For now, we create a new
12512               // declaration to hold them.
12513             } else if (TUK == TUK_Reference &&
12514                        (PrevTagDecl->getFriendObjectKind() ==
12515                             Decl::FOK_Undeclared ||
12516                         PP.getModuleContainingLocation(
12517                             PrevDecl->getLocation()) !=
12518                             PP.getModuleContainingLocation(KWLoc)) &&
12519                        SS.isEmpty()) {
12520               // This declaration is a reference to an existing entity, but
12521               // has different visibility from that entity: it either makes
12522               // a friend visible or it makes a type visible in a new module.
12523               // In either case, create a new declaration. We only do this if
12524               // the declaration would have meant the same thing if no prior
12525               // declaration were found, that is, if it was found in the same
12526               // scope where we would have injected a declaration.
12527               if (!getTagInjectionContext(CurContext)->getRedeclContext()
12528                        ->Equals(PrevDecl->getDeclContext()->getRedeclContext()))
12529                 return PrevTagDecl;
12530               // This is in the injected scope, create a new declaration in
12531               // that scope.
12532               S = getTagInjectionScope(S, getLangOpts());
12533             } else {
12534               return PrevTagDecl;
12535             }
12536           }
12537
12538           // Diagnose attempts to redefine a tag.
12539           if (TUK == TUK_Definition) {
12540             if (NamedDecl *Def = PrevTagDecl->getDefinition()) {
12541               // If we're defining a specialization and the previous definition
12542               // is from an implicit instantiation, don't emit an error
12543               // here; we'll catch this in the general case below.
12544               bool IsExplicitSpecializationAfterInstantiation = false;
12545               if (isExplicitSpecialization) {
12546                 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
12547                   IsExplicitSpecializationAfterInstantiation =
12548                     RD->getTemplateSpecializationKind() !=
12549                     TSK_ExplicitSpecialization;
12550                 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
12551                   IsExplicitSpecializationAfterInstantiation =
12552                     ED->getTemplateSpecializationKind() !=
12553                     TSK_ExplicitSpecialization;
12554               }
12555
12556               NamedDecl *Hidden = nullptr;
12557               if (SkipBody && getLangOpts().CPlusPlus &&
12558                   !hasVisibleDefinition(Def, &Hidden)) {
12559                 // There is a definition of this tag, but it is not visible. We
12560                 // explicitly make use of C++'s one definition rule here, and
12561                 // assume that this definition is identical to the hidden one
12562                 // we already have. Make the existing definition visible and
12563                 // use it in place of this one.
12564                 SkipBody->ShouldSkip = true;
12565                 makeMergedDefinitionVisible(Hidden, KWLoc);
12566                 return Def;
12567               } else if (!IsExplicitSpecializationAfterInstantiation) {
12568                 // A redeclaration in function prototype scope in C isn't
12569                 // visible elsewhere, so merely issue a warning.
12570                 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
12571                   Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
12572                 else
12573                   Diag(NameLoc, diag::err_redefinition) << Name;
12574                 Diag(Def->getLocation(), diag::note_previous_definition);
12575                 // If this is a redefinition, recover by making this
12576                 // struct be anonymous, which will make any later
12577                 // references get the previous definition.
12578                 Name = nullptr;
12579                 Previous.clear();
12580                 Invalid = true;
12581               }
12582             } else {
12583               // If the type is currently being defined, complain
12584               // about a nested redefinition.
12585               auto *TD = Context.getTagDeclType(PrevTagDecl)->getAsTagDecl();
12586               if (TD->isBeingDefined()) {
12587                 Diag(NameLoc, diag::err_nested_redefinition) << Name;
12588                 Diag(PrevTagDecl->getLocation(),
12589                      diag::note_previous_definition);
12590                 Name = nullptr;
12591                 Previous.clear();
12592                 Invalid = true;
12593               }
12594             }
12595
12596             // Okay, this is definition of a previously declared or referenced
12597             // tag. We're going to create a new Decl for it.
12598           }
12599
12600           // Okay, we're going to make a redeclaration.  If this is some kind
12601           // of reference, make sure we build the redeclaration in the same DC
12602           // as the original, and ignore the current access specifier.
12603           if (TUK == TUK_Friend || TUK == TUK_Reference) {
12604             SearchDC = PrevTagDecl->getDeclContext();
12605             AS = AS_none;
12606           }
12607         }
12608         // If we get here we have (another) forward declaration or we
12609         // have a definition.  Just create a new decl.
12610
12611       } else {
12612         // If we get here, this is a definition of a new tag type in a nested
12613         // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
12614         // new decl/type.  We set PrevDecl to NULL so that the entities
12615         // have distinct types.
12616         Previous.clear();
12617       }
12618       // If we get here, we're going to create a new Decl. If PrevDecl
12619       // is non-NULL, it's a definition of the tag declared by
12620       // PrevDecl. If it's NULL, we have a new definition.
12621
12622     // Otherwise, PrevDecl is not a tag, but was found with tag
12623     // lookup.  This is only actually possible in C++, where a few
12624     // things like templates still live in the tag namespace.
12625     } else {
12626       // Use a better diagnostic if an elaborated-type-specifier
12627       // found the wrong kind of type on the first
12628       // (non-redeclaration) lookup.
12629       if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
12630           !Previous.isForRedeclaration()) {
12631         unsigned Kind = 0;
12632         if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
12633         else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
12634         else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
12635         Diag(NameLoc, diag::err_tag_reference_non_tag) << Kind;
12636         Diag(PrevDecl->getLocation(), diag::note_declared_at);
12637         Invalid = true;
12638
12639       // Otherwise, only diagnose if the declaration is in scope.
12640       } else if (!isDeclInScope(DirectPrevDecl, SearchDC, S,
12641                                 SS.isNotEmpty() || isExplicitSpecialization)) {
12642         // do nothing
12643
12644       // Diagnose implicit declarations introduced by elaborated types.
12645       } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
12646         unsigned Kind = 0;
12647         if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
12648         else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
12649         else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
12650         Diag(NameLoc, diag::err_tag_reference_conflict) << Kind;
12651         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
12652         Invalid = true;
12653
12654       // Otherwise it's a declaration.  Call out a particularly common
12655       // case here.
12656       } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
12657         unsigned Kind = 0;
12658         if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
12659         Diag(NameLoc, diag::err_tag_definition_of_typedef)
12660           << Name << Kind << TND->getUnderlyingType();
12661         Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
12662         Invalid = true;
12663
12664       // Otherwise, diagnose.
12665       } else {
12666         // The tag name clashes with something else in the target scope,
12667         // issue an error and recover by making this tag be anonymous.
12668         Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
12669         Diag(PrevDecl->getLocation(), diag::note_previous_definition);
12670         Name = nullptr;
12671         Invalid = true;
12672       }
12673
12674       // The existing declaration isn't relevant to us; we're in a
12675       // new scope, so clear out the previous declaration.
12676       Previous.clear();
12677     }
12678   }
12679
12680 CreateNewDecl:
12681
12682   TagDecl *PrevDecl = nullptr;
12683   if (Previous.isSingleResult())
12684     PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
12685
12686   // If there is an identifier, use the location of the identifier as the
12687   // location of the decl, otherwise use the location of the struct/union
12688   // keyword.
12689   SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
12690
12691   // Otherwise, create a new declaration. If there is a previous
12692   // declaration of the same entity, the two will be linked via
12693   // PrevDecl.
12694   TagDecl *New;
12695
12696   bool IsForwardReference = false;
12697   if (Kind == TTK_Enum) {
12698     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
12699     // enum X { A, B, C } D;    D should chain to X.
12700     New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
12701                            cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
12702                            ScopedEnumUsesClassTag, !EnumUnderlying.isNull());
12703     // If this is an undefined enum, warn.
12704     if (TUK != TUK_Definition && !Invalid) {
12705       TagDecl *Def;
12706       if ((getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
12707           cast<EnumDecl>(New)->isFixed()) {
12708         // C++0x: 7.2p2: opaque-enum-declaration.
12709         // Conflicts are diagnosed above. Do nothing.
12710       }
12711       else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
12712         Diag(Loc, diag::ext_forward_ref_enum_def)
12713           << New;
12714         Diag(Def->getLocation(), diag::note_previous_definition);
12715       } else {
12716         unsigned DiagID = diag::ext_forward_ref_enum;
12717         if (getLangOpts().MSVCCompat)
12718           DiagID = diag::ext_ms_forward_ref_enum;
12719         else if (getLangOpts().CPlusPlus)
12720           DiagID = diag::err_forward_ref_enum;
12721         Diag(Loc, DiagID);
12722         
12723         // If this is a forward-declared reference to an enumeration, make a 
12724         // note of it; we won't actually be introducing the declaration into
12725         // the declaration context.
12726         if (TUK == TUK_Reference)
12727           IsForwardReference = true;
12728       }
12729     }
12730
12731     if (EnumUnderlying) {
12732       EnumDecl *ED = cast<EnumDecl>(New);
12733       if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
12734         ED->setIntegerTypeSourceInfo(TI);
12735       else
12736         ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
12737       ED->setPromotionType(ED->getIntegerType());
12738     }
12739   } else {
12740     // struct/union/class
12741
12742     // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
12743     // struct X { int A; } D;    D should chain to X.
12744     if (getLangOpts().CPlusPlus) {
12745       // FIXME: Look for a way to use RecordDecl for simple structs.
12746       New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
12747                                   cast_or_null<CXXRecordDecl>(PrevDecl));
12748
12749       if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
12750         StdBadAlloc = cast<CXXRecordDecl>(New);
12751     } else
12752       New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
12753                                cast_or_null<RecordDecl>(PrevDecl));
12754   }
12755
12756   // C++11 [dcl.type]p3:
12757   //   A type-specifier-seq shall not define a class or enumeration [...].
12758   if (getLangOpts().CPlusPlus && IsTypeSpecifier && TUK == TUK_Definition) {
12759     Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
12760       << Context.getTagDeclType(New);
12761     Invalid = true;
12762   }
12763
12764   // Maybe add qualifier info.
12765   if (SS.isNotEmpty()) {
12766     if (SS.isSet()) {
12767       // If this is either a declaration or a definition, check the 
12768       // nested-name-specifier against the current context. We don't do this
12769       // for explicit specializations, because they have similar checking
12770       // (with more specific diagnostics) in the call to 
12771       // CheckMemberSpecialization, below.
12772       if (!isExplicitSpecialization &&
12773           (TUK == TUK_Definition || TUK == TUK_Declaration) &&
12774           diagnoseQualifiedDeclaration(SS, DC, OrigName, Loc))
12775         Invalid = true;
12776
12777       New->setQualifierInfo(SS.getWithLocInContext(Context));
12778       if (TemplateParameterLists.size() > 0) {
12779         New->setTemplateParameterListsInfo(Context, TemplateParameterLists);
12780       }
12781     }
12782     else
12783       Invalid = true;
12784   }
12785
12786   if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
12787     // Add alignment attributes if necessary; these attributes are checked when
12788     // the ASTContext lays out the structure.
12789     //
12790     // It is important for implementing the correct semantics that this
12791     // happen here (in act on tag decl). The #pragma pack stack is
12792     // maintained as a result of parser callbacks which can occur at
12793     // many points during the parsing of a struct declaration (because
12794     // the #pragma tokens are effectively skipped over during the
12795     // parsing of the struct).
12796     if (TUK == TUK_Definition) {
12797       AddAlignmentAttributesForRecord(RD);
12798       AddMsStructLayoutForRecord(RD);
12799     }
12800   }
12801
12802   if (ModulePrivateLoc.isValid()) {
12803     if (isExplicitSpecialization)
12804       Diag(New->getLocation(), diag::err_module_private_specialization)
12805         << 2
12806         << FixItHint::CreateRemoval(ModulePrivateLoc);
12807     // __module_private__ does not apply to local classes. However, we only
12808     // diagnose this as an error when the declaration specifiers are
12809     // freestanding. Here, we just ignore the __module_private__.
12810     else if (!SearchDC->isFunctionOrMethod())
12811       New->setModulePrivate();
12812   }
12813
12814   // If this is a specialization of a member class (of a class template),
12815   // check the specialization.
12816   if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous))
12817     Invalid = true;
12818
12819   // If we're declaring or defining a tag in function prototype scope in C,
12820   // note that this type can only be used within the function and add it to
12821   // the list of decls to inject into the function definition scope.
12822   if ((Name || Kind == TTK_Enum) &&
12823       getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
12824     if (getLangOpts().CPlusPlus) {
12825       // C++ [dcl.fct]p6:
12826       //   Types shall not be defined in return or parameter types.
12827       if (TUK == TUK_Definition && !IsTypeSpecifier) {
12828         Diag(Loc, diag::err_type_defined_in_param_type)
12829             << Name;
12830         Invalid = true;
12831       }
12832     } else if (!PrevDecl) {
12833       Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
12834     }
12835     DeclsInPrototypeScope.push_back(New);
12836   }
12837
12838   if (Invalid)
12839     New->setInvalidDecl();
12840
12841   if (Attr)
12842     ProcessDeclAttributeList(S, New, Attr);
12843
12844   // Set the lexical context. If the tag has a C++ scope specifier, the
12845   // lexical context will be different from the semantic context.
12846   New->setLexicalDeclContext(CurContext);
12847
12848   // Mark this as a friend decl if applicable.
12849   // In Microsoft mode, a friend declaration also acts as a forward
12850   // declaration so we always pass true to setObjectOfFriendDecl to make
12851   // the tag name visible.
12852   if (TUK == TUK_Friend)
12853     New->setObjectOfFriendDecl(getLangOpts().MSVCCompat);
12854
12855   // Set the access specifier.
12856   if (!Invalid && SearchDC->isRecord())
12857     SetMemberAccessSpecifier(New, PrevDecl, AS);
12858
12859   if (TUK == TUK_Definition)
12860     New->startDefinition();
12861
12862   // If this has an identifier, add it to the scope stack.
12863   if (TUK == TUK_Friend) {
12864     // We might be replacing an existing declaration in the lookup tables;
12865     // if so, borrow its access specifier.
12866     if (PrevDecl)
12867       New->setAccess(PrevDecl->getAccess());
12868
12869     DeclContext *DC = New->getDeclContext()->getRedeclContext();
12870     DC->makeDeclVisibleInContext(New);
12871     if (Name) // can be null along some error paths
12872       if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
12873         PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
12874   } else if (Name) {
12875     S = getNonFieldDeclScope(S);
12876     PushOnScopeChains(New, S, !IsForwardReference);
12877     if (IsForwardReference)
12878       SearchDC->makeDeclVisibleInContext(New);
12879   } else {
12880     CurContext->addDecl(New);
12881   }
12882
12883   // If this is the C FILE type, notify the AST context.
12884   if (IdentifierInfo *II = New->getIdentifier())
12885     if (!New->isInvalidDecl() &&
12886         New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
12887         II->isStr("FILE"))
12888       Context.setFILEDecl(New);
12889
12890   if (PrevDecl)
12891     mergeDeclAttributes(New, PrevDecl);
12892
12893   // If there's a #pragma GCC visibility in scope, set the visibility of this
12894   // record.
12895   AddPushedVisibilityAttribute(New);
12896
12897   OwnedDecl = true;
12898   // In C++, don't return an invalid declaration. We can't recover well from
12899   // the cases where we make the type anonymous.
12900   return (Invalid && getLangOpts().CPlusPlus) ? nullptr : New;
12901 }
12902
12903 void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
12904   AdjustDeclIfTemplate(TagD);
12905   TagDecl *Tag = cast<TagDecl>(TagD);
12906   
12907   // Enter the tag context.
12908   PushDeclContext(S, Tag);
12909
12910   ActOnDocumentableDecl(TagD);
12911
12912   // If there's a #pragma GCC visibility in scope, set the visibility of this
12913   // record.
12914   AddPushedVisibilityAttribute(Tag);
12915 }
12916
12917 Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
12918   assert(isa<ObjCContainerDecl>(IDecl) && 
12919          "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
12920   DeclContext *OCD = cast<DeclContext>(IDecl);
12921   assert(getContainingDC(OCD) == CurContext &&
12922       "The next DeclContext should be lexically contained in the current one.");
12923   CurContext = OCD;
12924   return IDecl;
12925 }
12926
12927 void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
12928                                            SourceLocation FinalLoc,
12929                                            bool IsFinalSpelledSealed,
12930                                            SourceLocation LBraceLoc) {
12931   AdjustDeclIfTemplate(TagD);
12932   CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
12933
12934   FieldCollector->StartClass();
12935
12936   if (!Record->getIdentifier())
12937     return;
12938
12939   if (FinalLoc.isValid())
12940     Record->addAttr(new (Context)
12941                     FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
12942
12943   // C++ [class]p2:
12944   //   [...] The class-name is also inserted into the scope of the
12945   //   class itself; this is known as the injected-class-name. For
12946   //   purposes of access checking, the injected-class-name is treated
12947   //   as if it were a public member name.
12948   CXXRecordDecl *InjectedClassName
12949     = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
12950                             Record->getLocStart(), Record->getLocation(),
12951                             Record->getIdentifier(),
12952                             /*PrevDecl=*/nullptr,
12953                             /*DelayTypeCreation=*/true);
12954   Context.getTypeDeclType(InjectedClassName, Record);
12955   InjectedClassName->setImplicit();
12956   InjectedClassName->setAccess(AS_public);
12957   if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
12958       InjectedClassName->setDescribedClassTemplate(Template);
12959   PushOnScopeChains(InjectedClassName, S);
12960   assert(InjectedClassName->isInjectedClassName() &&
12961          "Broken injected-class-name");
12962 }
12963
12964 void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
12965                                     SourceLocation RBraceLoc) {
12966   AdjustDeclIfTemplate(TagD);
12967   TagDecl *Tag = cast<TagDecl>(TagD);
12968   Tag->setRBraceLoc(RBraceLoc);
12969
12970   // Make sure we "complete" the definition even it is invalid.
12971   if (Tag->isBeingDefined()) {
12972     assert(Tag->isInvalidDecl() && "We should already have completed it");
12973     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
12974       RD->completeDefinition();
12975   }
12976
12977   if (isa<CXXRecordDecl>(Tag))
12978     FieldCollector->FinishClass();
12979
12980   // Exit this scope of this tag's definition.
12981   PopDeclContext();
12982
12983   if (getCurLexicalContext()->isObjCContainer() &&
12984       Tag->getDeclContext()->isFileContext())
12985     Tag->setTopLevelDeclInObjCContainer();
12986
12987   // Notify the consumer that we've defined a tag.
12988   if (!Tag->isInvalidDecl())
12989     Consumer.HandleTagDeclDefinition(Tag);
12990 }
12991
12992 void Sema::ActOnObjCContainerFinishDefinition() {
12993   // Exit this scope of this interface definition.
12994   PopDeclContext();
12995 }
12996
12997 void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
12998   assert(DC == CurContext && "Mismatch of container contexts");
12999   OriginalLexicalContext = DC;
13000   ActOnObjCContainerFinishDefinition();
13001 }
13002
13003 void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
13004   ActOnObjCContainerStartDefinition(cast<Decl>(DC));
13005   OriginalLexicalContext = nullptr;
13006 }
13007
13008 void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
13009   AdjustDeclIfTemplate(TagD);
13010   TagDecl *Tag = cast<TagDecl>(TagD);
13011   Tag->setInvalidDecl();
13012
13013   // Make sure we "complete" the definition even it is invalid.
13014   if (Tag->isBeingDefined()) {
13015     if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
13016       RD->completeDefinition();
13017   }
13018
13019   // We're undoing ActOnTagStartDefinition here, not
13020   // ActOnStartCXXMemberDeclarations, so we don't have to mess with
13021   // the FieldCollector.
13022
13023   PopDeclContext();  
13024 }
13025
13026 // Note that FieldName may be null for anonymous bitfields.
13027 ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
13028                                 IdentifierInfo *FieldName,
13029                                 QualType FieldTy, bool IsMsStruct,
13030                                 Expr *BitWidth, bool *ZeroWidth) {
13031   // Default to true; that shouldn't confuse checks for emptiness
13032   if (ZeroWidth)
13033     *ZeroWidth = true;
13034
13035   // C99 6.7.2.1p4 - verify the field type.
13036   // C++ 9.6p3: A bit-field shall have integral or enumeration type.
13037   if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
13038     // Handle incomplete types with specific error.
13039     if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
13040       return ExprError();
13041     if (FieldName)
13042       return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
13043         << FieldName << FieldTy << BitWidth->getSourceRange();
13044     return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
13045       << FieldTy << BitWidth->getSourceRange();
13046   } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
13047                                              UPPC_BitFieldWidth))
13048     return ExprError();
13049
13050   // If the bit-width is type- or value-dependent, don't try to check
13051   // it now.
13052   if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
13053     return BitWidth;
13054
13055   llvm::APSInt Value;
13056   ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
13057   if (ICE.isInvalid())
13058     return ICE;
13059   BitWidth = ICE.get();
13060
13061   if (Value != 0 && ZeroWidth)
13062     *ZeroWidth = false;
13063
13064   // Zero-width bitfield is ok for anonymous field.
13065   if (Value == 0 && FieldName)
13066     return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
13067
13068   if (Value.isSigned() && Value.isNegative()) {
13069     if (FieldName)
13070       return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
13071                << FieldName << Value.toString(10);
13072     return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
13073       << Value.toString(10);
13074   }
13075
13076   if (!FieldTy->isDependentType()) {
13077     uint64_t TypeStorageSize = Context.getTypeSize(FieldTy);
13078     uint64_t TypeWidth = Context.getIntWidth(FieldTy);
13079     bool BitfieldIsOverwide = Value.ugt(TypeWidth);
13080
13081     // Over-wide bitfields are an error in C or when using the MSVC bitfield
13082     // ABI.
13083     bool CStdConstraintViolation =
13084         BitfieldIsOverwide && !getLangOpts().CPlusPlus;
13085     bool MSBitfieldViolation =
13086         Value.ugt(TypeStorageSize) &&
13087         (IsMsStruct || Context.getTargetInfo().getCXXABI().isMicrosoft());
13088     if (CStdConstraintViolation || MSBitfieldViolation) {
13089       unsigned DiagWidth =
13090           CStdConstraintViolation ? TypeWidth : TypeStorageSize;
13091       if (FieldName)
13092         return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_width)
13093                << FieldName << (unsigned)Value.getZExtValue()
13094                << !CStdConstraintViolation << DiagWidth;
13095
13096       return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_width)
13097              << (unsigned)Value.getZExtValue() << !CStdConstraintViolation
13098              << DiagWidth;
13099     }
13100
13101     // Warn on types where the user might conceivably expect to get all
13102     // specified bits as value bits: that's all integral types other than
13103     // 'bool'.
13104     if (BitfieldIsOverwide && !FieldTy->isBooleanType()) {
13105       if (FieldName)
13106         Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_width)
13107             << FieldName << (unsigned)Value.getZExtValue()
13108             << (unsigned)TypeWidth;
13109       else
13110         Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_width)
13111             << (unsigned)Value.getZExtValue() << (unsigned)TypeWidth;
13112     }
13113   }
13114
13115   return BitWidth;
13116 }
13117
13118 /// ActOnField - Each field of a C struct/union is passed into this in order
13119 /// to create a FieldDecl object for it.
13120 Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
13121                        Declarator &D, Expr *BitfieldWidth) {
13122   FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
13123                                DeclStart, D, static_cast<Expr*>(BitfieldWidth),
13124                                /*InitStyle=*/ICIS_NoInit, AS_public);
13125   return Res;
13126 }
13127
13128 /// HandleField - Analyze a field of a C struct or a C++ data member.
13129 ///
13130 FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
13131                              SourceLocation DeclStart,
13132                              Declarator &D, Expr *BitWidth,
13133                              InClassInitStyle InitStyle,
13134                              AccessSpecifier AS) {
13135   IdentifierInfo *II = D.getIdentifier();
13136   SourceLocation Loc = DeclStart;
13137   if (II) Loc = D.getIdentifierLoc();
13138
13139   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13140   QualType T = TInfo->getType();
13141   if (getLangOpts().CPlusPlus) {
13142     CheckExtraCXXDefaultArguments(D);
13143
13144     if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
13145                                         UPPC_DataMemberType)) {
13146       D.setInvalidType();
13147       T = Context.IntTy;
13148       TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
13149     }
13150   }
13151
13152   // TR 18037 does not allow fields to be declared with address spaces.
13153   if (T.getQualifiers().hasAddressSpace()) {
13154     Diag(Loc, diag::err_field_with_address_space);
13155     D.setInvalidType();
13156   }
13157
13158   // OpenCL v1.2 s6.9b,r & OpenCL v2.0 s6.12.5 - The following types cannot be
13159   // used as structure or union field: image, sampler, event or block types.
13160   if (LangOpts.OpenCL && (T->isEventT() || T->isImageType() ||
13161                           T->isSamplerT() || T->isBlockPointerType())) {
13162     Diag(Loc, diag::err_opencl_type_struct_or_union_field) << T;
13163     D.setInvalidType();
13164   }
13165
13166   DiagnoseFunctionSpecifiers(D.getDeclSpec());
13167
13168   if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
13169     Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
13170          diag::err_invalid_thread)
13171       << DeclSpec::getSpecifierName(TSCS);
13172
13173   // Check to see if this name was declared as a member previously
13174   NamedDecl *PrevDecl = nullptr;
13175   LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
13176   LookupName(Previous, S);
13177   switch (Previous.getResultKind()) {
13178     case LookupResult::Found:
13179     case LookupResult::FoundUnresolvedValue:
13180       PrevDecl = Previous.getAsSingle<NamedDecl>();
13181       break;
13182       
13183     case LookupResult::FoundOverloaded:
13184       PrevDecl = Previous.getRepresentativeDecl();
13185       break;
13186       
13187     case LookupResult::NotFound:
13188     case LookupResult::NotFoundInCurrentInstantiation:
13189     case LookupResult::Ambiguous:
13190       break;
13191   }
13192   Previous.suppressDiagnostics();
13193
13194   if (PrevDecl && PrevDecl->isTemplateParameter()) {
13195     // Maybe we will complain about the shadowed template parameter.
13196     DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
13197     // Just pretend that we didn't see the previous declaration.
13198     PrevDecl = nullptr;
13199   }
13200
13201   if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
13202     PrevDecl = nullptr;
13203
13204   bool Mutable
13205     = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
13206   SourceLocation TSSL = D.getLocStart();
13207   FieldDecl *NewFD
13208     = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
13209                      TSSL, AS, PrevDecl, &D);
13210
13211   if (NewFD->isInvalidDecl())
13212     Record->setInvalidDecl();
13213
13214   if (D.getDeclSpec().isModulePrivateSpecified())
13215     NewFD->setModulePrivate();
13216   
13217   if (NewFD->isInvalidDecl() && PrevDecl) {
13218     // Don't introduce NewFD into scope; there's already something
13219     // with the same name in the same scope.
13220   } else if (II) {
13221     PushOnScopeChains(NewFD, S);
13222   } else
13223     Record->addDecl(NewFD);
13224
13225   return NewFD;
13226 }
13227
13228 /// \brief Build a new FieldDecl and check its well-formedness.
13229 ///
13230 /// This routine builds a new FieldDecl given the fields name, type,
13231 /// record, etc. \p PrevDecl should refer to any previous declaration
13232 /// with the same name and in the same scope as the field to be
13233 /// created.
13234 ///
13235 /// \returns a new FieldDecl.
13236 ///
13237 /// \todo The Declarator argument is a hack. It will be removed once
13238 FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
13239                                 TypeSourceInfo *TInfo,
13240                                 RecordDecl *Record, SourceLocation Loc,
13241                                 bool Mutable, Expr *BitWidth,
13242                                 InClassInitStyle InitStyle,
13243                                 SourceLocation TSSL,
13244                                 AccessSpecifier AS, NamedDecl *PrevDecl,
13245                                 Declarator *D) {
13246   IdentifierInfo *II = Name.getAsIdentifierInfo();
13247   bool InvalidDecl = false;
13248   if (D) InvalidDecl = D->isInvalidType();
13249
13250   // If we receive a broken type, recover by assuming 'int' and
13251   // marking this declaration as invalid.
13252   if (T.isNull()) {
13253     InvalidDecl = true;
13254     T = Context.IntTy;
13255   }
13256
13257   QualType EltTy = Context.getBaseElementType(T);
13258   if (!EltTy->isDependentType()) {
13259     if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
13260       // Fields of incomplete type force their record to be invalid.
13261       Record->setInvalidDecl();
13262       InvalidDecl = true;
13263     } else {
13264       NamedDecl *Def;
13265       EltTy->isIncompleteType(&Def);
13266       if (Def && Def->isInvalidDecl()) {
13267         Record->setInvalidDecl();
13268         InvalidDecl = true;
13269       }
13270     }
13271   }
13272
13273   // OpenCL v1.2 s6.9.c: bitfields are not supported.
13274   if (BitWidth && getLangOpts().OpenCL) {
13275     Diag(Loc, diag::err_opencl_bitfields);
13276     InvalidDecl = true;
13277   }
13278
13279   // C99 6.7.2.1p8: A member of a structure or union may have any type other
13280   // than a variably modified type.
13281   if (!InvalidDecl && T->isVariablyModifiedType()) {
13282     bool SizeIsNegative;
13283     llvm::APSInt Oversized;
13284
13285     TypeSourceInfo *FixedTInfo =
13286       TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
13287                                                     SizeIsNegative,
13288                                                     Oversized);
13289     if (FixedTInfo) {
13290       Diag(Loc, diag::warn_illegal_constant_array_size);
13291       TInfo = FixedTInfo;
13292       T = FixedTInfo->getType();
13293     } else {
13294       if (SizeIsNegative)
13295         Diag(Loc, diag::err_typecheck_negative_array_size);
13296       else if (Oversized.getBoolValue())
13297         Diag(Loc, diag::err_array_too_large)
13298           << Oversized.toString(10);
13299       else
13300         Diag(Loc, diag::err_typecheck_field_variable_size);
13301       InvalidDecl = true;
13302     }
13303   }
13304
13305   // Fields can not have abstract class types
13306   if (!InvalidDecl && RequireNonAbstractType(Loc, T,
13307                                              diag::err_abstract_type_in_decl,
13308                                              AbstractFieldType))
13309     InvalidDecl = true;
13310
13311   bool ZeroWidth = false;
13312   if (InvalidDecl)
13313     BitWidth = nullptr;
13314   // If this is declared as a bit-field, check the bit-field.
13315   if (BitWidth) {
13316     BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
13317                               &ZeroWidth).get();
13318     if (!BitWidth) {
13319       InvalidDecl = true;
13320       BitWidth = nullptr;
13321       ZeroWidth = false;
13322     }
13323   }
13324
13325   // Check that 'mutable' is consistent with the type of the declaration.
13326   if (!InvalidDecl && Mutable) {
13327     unsigned DiagID = 0;
13328     if (T->isReferenceType())
13329       DiagID = getLangOpts().MSVCCompat ? diag::ext_mutable_reference
13330                                         : diag::err_mutable_reference;
13331     else if (T.isConstQualified())
13332       DiagID = diag::err_mutable_const;
13333
13334     if (DiagID) {
13335       SourceLocation ErrLoc = Loc;
13336       if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
13337         ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
13338       Diag(ErrLoc, DiagID);
13339       if (DiagID != diag::ext_mutable_reference) {
13340         Mutable = false;
13341         InvalidDecl = true;
13342       }
13343     }
13344   }
13345
13346   // C++11 [class.union]p8 (DR1460):
13347   //   At most one variant member of a union may have a
13348   //   brace-or-equal-initializer.
13349   if (InitStyle != ICIS_NoInit)
13350     checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
13351
13352   FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
13353                                        BitWidth, Mutable, InitStyle);
13354   if (InvalidDecl)
13355     NewFD->setInvalidDecl();
13356
13357   if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
13358     Diag(Loc, diag::err_duplicate_member) << II;
13359     Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
13360     NewFD->setInvalidDecl();
13361   }
13362
13363   if (!InvalidDecl && getLangOpts().CPlusPlus) {
13364     if (Record->isUnion()) {
13365       if (const RecordType *RT = EltTy->getAs<RecordType>()) {
13366         CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
13367         if (RDecl->getDefinition()) {
13368           // C++ [class.union]p1: An object of a class with a non-trivial
13369           // constructor, a non-trivial copy constructor, a non-trivial
13370           // destructor, or a non-trivial copy assignment operator
13371           // cannot be a member of a union, nor can an array of such
13372           // objects.
13373           if (CheckNontrivialField(NewFD))
13374             NewFD->setInvalidDecl();
13375         }
13376       }
13377
13378       // C++ [class.union]p1: If a union contains a member of reference type,
13379       // the program is ill-formed, except when compiling with MSVC extensions
13380       // enabled.
13381       if (EltTy->isReferenceType()) {
13382         Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
13383                                     diag::ext_union_member_of_reference_type :
13384                                     diag::err_union_member_of_reference_type)
13385           << NewFD->getDeclName() << EltTy;
13386         if (!getLangOpts().MicrosoftExt)
13387           NewFD->setInvalidDecl();
13388       }
13389     }
13390   }
13391
13392   // FIXME: We need to pass in the attributes given an AST
13393   // representation, not a parser representation.
13394   if (D) {
13395     // FIXME: The current scope is almost... but not entirely... correct here.
13396     ProcessDeclAttributes(getCurScope(), NewFD, *D);
13397
13398     if (NewFD->hasAttrs())
13399       CheckAlignasUnderalignment(NewFD);
13400   }
13401
13402   // In auto-retain/release, infer strong retension for fields of
13403   // retainable type.
13404   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
13405     NewFD->setInvalidDecl();
13406
13407   if (T.isObjCGCWeak())
13408     Diag(Loc, diag::warn_attribute_weak_on_field);
13409
13410   NewFD->setAccess(AS);
13411   return NewFD;
13412 }
13413
13414 bool Sema::CheckNontrivialField(FieldDecl *FD) {
13415   assert(FD);
13416   assert(getLangOpts().CPlusPlus && "valid check only for C++");
13417
13418   if (FD->isInvalidDecl() || FD->getType()->isDependentType())
13419     return false;
13420
13421   QualType EltTy = Context.getBaseElementType(FD->getType());
13422   if (const RecordType *RT = EltTy->getAs<RecordType>()) {
13423     CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
13424     if (RDecl->getDefinition()) {
13425       // We check for copy constructors before constructors
13426       // because otherwise we'll never get complaints about
13427       // copy constructors.
13428
13429       CXXSpecialMember member = CXXInvalid;
13430       // We're required to check for any non-trivial constructors. Since the
13431       // implicit default constructor is suppressed if there are any
13432       // user-declared constructors, we just need to check that there is a
13433       // trivial default constructor and a trivial copy constructor. (We don't
13434       // worry about move constructors here, since this is a C++98 check.)
13435       if (RDecl->hasNonTrivialCopyConstructor())
13436         member = CXXCopyConstructor;
13437       else if (!RDecl->hasTrivialDefaultConstructor())
13438         member = CXXDefaultConstructor;
13439       else if (RDecl->hasNonTrivialCopyAssignment())
13440         member = CXXCopyAssignment;
13441       else if (RDecl->hasNonTrivialDestructor())
13442         member = CXXDestructor;
13443
13444       if (member != CXXInvalid) {
13445         if (!getLangOpts().CPlusPlus11 &&
13446             getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
13447           // Objective-C++ ARC: it is an error to have a non-trivial field of
13448           // a union. However, system headers in Objective-C programs 
13449           // occasionally have Objective-C lifetime objects within unions,
13450           // and rather than cause the program to fail, we make those 
13451           // members unavailable.
13452           SourceLocation Loc = FD->getLocation();
13453           if (getSourceManager().isInSystemHeader(Loc)) {
13454             if (!FD->hasAttr<UnavailableAttr>())
13455               FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
13456                             UnavailableAttr::IR_ARCFieldWithOwnership, Loc));
13457             return false;
13458           }
13459         }
13460
13461         Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
13462                diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
13463                diag::err_illegal_union_or_anon_struct_member)
13464           << FD->getParent()->isUnion() << FD->getDeclName() << member;
13465         DiagnoseNontrivial(RDecl, member);
13466         return !getLangOpts().CPlusPlus11;
13467       }
13468     }
13469   }
13470
13471   return false;
13472 }
13473
13474 /// TranslateIvarVisibility - Translate visibility from a token ID to an
13475 ///  AST enum value.
13476 static ObjCIvarDecl::AccessControl
13477 TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
13478   switch (ivarVisibility) {
13479   default: llvm_unreachable("Unknown visitibility kind");
13480   case tok::objc_private: return ObjCIvarDecl::Private;
13481   case tok::objc_public: return ObjCIvarDecl::Public;
13482   case tok::objc_protected: return ObjCIvarDecl::Protected;
13483   case tok::objc_package: return ObjCIvarDecl::Package;
13484   }
13485 }
13486
13487 /// ActOnIvar - Each ivar field of an objective-c class is passed into this
13488 /// in order to create an IvarDecl object for it.
13489 Decl *Sema::ActOnIvar(Scope *S,
13490                                 SourceLocation DeclStart,
13491                                 Declarator &D, Expr *BitfieldWidth,
13492                                 tok::ObjCKeywordKind Visibility) {
13493
13494   IdentifierInfo *II = D.getIdentifier();
13495   Expr *BitWidth = (Expr*)BitfieldWidth;
13496   SourceLocation Loc = DeclStart;
13497   if (II) Loc = D.getIdentifierLoc();
13498
13499   // FIXME: Unnamed fields can be handled in various different ways, for
13500   // example, unnamed unions inject all members into the struct namespace!
13501
13502   TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
13503   QualType T = TInfo->getType();
13504
13505   if (BitWidth) {
13506     // 6.7.2.1p3, 6.7.2.1p4
13507     BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).get();
13508     if (!BitWidth)
13509       D.setInvalidType();
13510   } else {
13511     // Not a bitfield.
13512
13513     // validate II.
13514
13515   }
13516   if (T->isReferenceType()) {
13517     Diag(Loc, diag::err_ivar_reference_type);
13518     D.setInvalidType();
13519   }
13520   // C99 6.7.2.1p8: A member of a structure or union may have any type other
13521   // than a variably modified type.
13522   else if (T->isVariablyModifiedType()) {
13523     Diag(Loc, diag::err_typecheck_ivar_variable_size);
13524     D.setInvalidType();
13525   }
13526
13527   // Get the visibility (access control) for this ivar.
13528   ObjCIvarDecl::AccessControl ac =
13529     Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
13530                                         : ObjCIvarDecl::None;
13531   // Must set ivar's DeclContext to its enclosing interface.
13532   ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
13533   if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
13534     return nullptr;
13535   ObjCContainerDecl *EnclosingContext;
13536   if (ObjCImplementationDecl *IMPDecl =
13537       dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
13538     if (LangOpts.ObjCRuntime.isFragile()) {
13539     // Case of ivar declared in an implementation. Context is that of its class.
13540       EnclosingContext = IMPDecl->getClassInterface();
13541       assert(EnclosingContext && "Implementation has no class interface!");
13542     }
13543     else
13544       EnclosingContext = EnclosingDecl;
13545   } else {
13546     if (ObjCCategoryDecl *CDecl = 
13547         dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
13548       if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
13549         Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
13550         return nullptr;
13551       }
13552     }
13553     EnclosingContext = EnclosingDecl;
13554   }
13555
13556   // Construct the decl.
13557   ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
13558                                              DeclStart, Loc, II, T,
13559                                              TInfo, ac, (Expr *)BitfieldWidth);
13560
13561   if (II) {
13562     NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
13563                                            ForRedeclaration);
13564     if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
13565         && !isa<TagDecl>(PrevDecl)) {
13566       Diag(Loc, diag::err_duplicate_member) << II;
13567       Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
13568       NewID->setInvalidDecl();
13569     }
13570   }
13571
13572   // Process attributes attached to the ivar.
13573   ProcessDeclAttributes(S, NewID, D);
13574
13575   if (D.isInvalidType())
13576     NewID->setInvalidDecl();
13577
13578   // In ARC, infer 'retaining' for ivars of retainable type.
13579   if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
13580     NewID->setInvalidDecl();
13581
13582   if (D.getDeclSpec().isModulePrivateSpecified())
13583     NewID->setModulePrivate();
13584   
13585   if (II) {
13586     // FIXME: When interfaces are DeclContexts, we'll need to add
13587     // these to the interface.
13588     S->AddDecl(NewID);
13589     IdResolver.AddDecl(NewID);
13590   }
13591   
13592   if (LangOpts.ObjCRuntime.isNonFragile() &&
13593       !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
13594     Diag(Loc, diag::warn_ivars_in_interface);
13595   
13596   return NewID;
13597 }
13598
13599 /// ActOnLastBitfield - This routine handles synthesized bitfields rules for 
13600 /// class and class extensions. For every class \@interface and class 
13601 /// extension \@interface, if the last ivar is a bitfield of any type, 
13602 /// then add an implicit `char :0` ivar to the end of that interface.
13603 void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
13604                              SmallVectorImpl<Decl *> &AllIvarDecls) {
13605   if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
13606     return;
13607   
13608   Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
13609   ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
13610   
13611   if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
13612     return;
13613   ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
13614   if (!ID) {
13615     if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
13616       if (!CD->IsClassExtension())
13617         return;
13618     }
13619     // No need to add this to end of @implementation.
13620     else
13621       return;
13622   }
13623   // All conditions are met. Add a new bitfield to the tail end of ivars.
13624   llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
13625   Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
13626
13627   Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
13628                               DeclLoc, DeclLoc, nullptr,
13629                               Context.CharTy, 
13630                               Context.getTrivialTypeSourceInfo(Context.CharTy,
13631                                                                DeclLoc),
13632                               ObjCIvarDecl::Private, BW,
13633                               true);
13634   AllIvarDecls.push_back(Ivar);
13635 }
13636
13637 void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
13638                        ArrayRef<Decl *> Fields, SourceLocation LBrac,
13639                        SourceLocation RBrac, AttributeList *Attr) {
13640   assert(EnclosingDecl && "missing record or interface decl");
13641
13642   // If this is an Objective-C @implementation or category and we have
13643   // new fields here we should reset the layout of the interface since
13644   // it will now change.
13645   if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
13646     ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
13647     switch (DC->getKind()) {
13648     default: break;
13649     case Decl::ObjCCategory:
13650       Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
13651       break;
13652     case Decl::ObjCImplementation:
13653       Context.
13654         ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
13655       break;
13656     }
13657   }
13658   
13659   RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
13660
13661   // Start counting up the number of named members; make sure to include
13662   // members of anonymous structs and unions in the total.
13663   unsigned NumNamedMembers = 0;
13664   if (Record) {
13665     for (const auto *I : Record->decls()) {
13666       if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
13667         if (IFD->getDeclName())
13668           ++NumNamedMembers;
13669     }
13670   }
13671
13672   // Verify that all the fields are okay.
13673   SmallVector<FieldDecl*, 32> RecFields;
13674
13675   bool ARCErrReported = false;
13676   for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
13677        i != end; ++i) {
13678     FieldDecl *FD = cast<FieldDecl>(*i);
13679
13680     // Get the type for the field.
13681     const Type *FDTy = FD->getType().getTypePtr();
13682
13683     if (!FD->isAnonymousStructOrUnion()) {
13684       // Remember all fields written by the user.
13685       RecFields.push_back(FD);
13686     }
13687
13688     // If the field is already invalid for some reason, don't emit more
13689     // diagnostics about it.
13690     if (FD->isInvalidDecl()) {
13691       EnclosingDecl->setInvalidDecl();
13692       continue;
13693     }
13694
13695     // C99 6.7.2.1p2:
13696     //   A structure or union shall not contain a member with
13697     //   incomplete or function type (hence, a structure shall not
13698     //   contain an instance of itself, but may contain a pointer to
13699     //   an instance of itself), except that the last member of a
13700     //   structure with more than one named member may have incomplete
13701     //   array type; such a structure (and any union containing,
13702     //   possibly recursively, a member that is such a structure)
13703     //   shall not be a member of a structure or an element of an
13704     //   array.
13705     if (FDTy->isFunctionType()) {
13706       // Field declared as a function.
13707       Diag(FD->getLocation(), diag::err_field_declared_as_function)
13708         << FD->getDeclName();
13709       FD->setInvalidDecl();
13710       EnclosingDecl->setInvalidDecl();
13711       continue;
13712     } else if (FDTy->isIncompleteArrayType() && Record && 
13713                ((i + 1 == Fields.end() && !Record->isUnion()) ||
13714                 ((getLangOpts().MicrosoftExt ||
13715                   getLangOpts().CPlusPlus) &&
13716                  (i + 1 == Fields.end() || Record->isUnion())))) {
13717       // Flexible array member.
13718       // Microsoft and g++ is more permissive regarding flexible array.
13719       // It will accept flexible array in union and also
13720       // as the sole element of a struct/class.
13721       unsigned DiagID = 0;
13722       if (Record->isUnion())
13723         DiagID = getLangOpts().MicrosoftExt
13724                      ? diag::ext_flexible_array_union_ms
13725                      : getLangOpts().CPlusPlus
13726                            ? diag::ext_flexible_array_union_gnu
13727                            : diag::err_flexible_array_union;
13728       else if (Fields.size() == 1)
13729         DiagID = getLangOpts().MicrosoftExt
13730                      ? diag::ext_flexible_array_empty_aggregate_ms
13731                      : getLangOpts().CPlusPlus
13732                            ? diag::ext_flexible_array_empty_aggregate_gnu
13733                            : NumNamedMembers < 1
13734                                  ? diag::err_flexible_array_empty_aggregate
13735                                  : 0;
13736
13737       if (DiagID)
13738         Diag(FD->getLocation(), DiagID) << FD->getDeclName()
13739                                         << Record->getTagKind();
13740       // While the layout of types that contain virtual bases is not specified
13741       // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
13742       // virtual bases after the derived members.  This would make a flexible
13743       // array member declared at the end of an object not adjacent to the end
13744       // of the type.
13745       if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
13746         if (RD->getNumVBases() != 0)
13747           Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
13748             << FD->getDeclName() << Record->getTagKind();
13749       if (!getLangOpts().C99)
13750         Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
13751           << FD->getDeclName() << Record->getTagKind();
13752
13753       // If the element type has a non-trivial destructor, we would not
13754       // implicitly destroy the elements, so disallow it for now.
13755       //
13756       // FIXME: GCC allows this. We should probably either implicitly delete
13757       // the destructor of the containing class, or just allow this.
13758       QualType BaseElem = Context.getBaseElementType(FD->getType());
13759       if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
13760         Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
13761           << FD->getDeclName() << FD->getType();
13762         FD->setInvalidDecl();
13763         EnclosingDecl->setInvalidDecl();
13764         continue;
13765       }
13766       // Okay, we have a legal flexible array member at the end of the struct.
13767       Record->setHasFlexibleArrayMember(true);
13768     } else if (!FDTy->isDependentType() &&
13769                RequireCompleteType(FD->getLocation(), FD->getType(),
13770                                    diag::err_field_incomplete)) {
13771       // Incomplete type
13772       FD->setInvalidDecl();
13773       EnclosingDecl->setInvalidDecl();
13774       continue;
13775     } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
13776       if (Record && FDTTy->getDecl()->hasFlexibleArrayMember()) {
13777         // A type which contains a flexible array member is considered to be a
13778         // flexible array member.
13779         Record->setHasFlexibleArrayMember(true);
13780         if (!Record->isUnion()) {
13781           // If this is a struct/class and this is not the last element, reject
13782           // it.  Note that GCC supports variable sized arrays in the middle of
13783           // structures.
13784           if (i + 1 != Fields.end())
13785             Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
13786               << FD->getDeclName() << FD->getType();
13787           else {
13788             // We support flexible arrays at the end of structs in
13789             // other structs as an extension.
13790             Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
13791               << FD->getDeclName();
13792           }
13793         }
13794       }
13795       if (isa<ObjCContainerDecl>(EnclosingDecl) &&
13796           RequireNonAbstractType(FD->getLocation(), FD->getType(),
13797                                  diag::err_abstract_type_in_decl,
13798                                  AbstractIvarType)) {
13799         // Ivars can not have abstract class types
13800         FD->setInvalidDecl();
13801       }
13802       if (Record && FDTTy->getDecl()->hasObjectMember())
13803         Record->setHasObjectMember(true);
13804       if (Record && FDTTy->getDecl()->hasVolatileMember())
13805         Record->setHasVolatileMember(true);
13806     } else if (FDTy->isObjCObjectType()) {
13807       /// A field cannot be an Objective-c object
13808       Diag(FD->getLocation(), diag::err_statically_allocated_object)
13809         << FixItHint::CreateInsertion(FD->getLocation(), "*");
13810       QualType T = Context.getObjCObjectPointerType(FD->getType());
13811       FD->setType(T);
13812     } else if (getLangOpts().ObjCAutoRefCount && Record && !ARCErrReported &&
13813                (!getLangOpts().CPlusPlus || Record->isUnion())) {
13814       // It's an error in ARC if a field has lifetime.
13815       // We don't want to report this in a system header, though,
13816       // so we just make the field unavailable.
13817       // FIXME: that's really not sufficient; we need to make the type
13818       // itself invalid to, say, initialize or copy.
13819       QualType T = FD->getType();
13820       Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime();
13821       if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone) {
13822         SourceLocation loc = FD->getLocation();
13823         if (getSourceManager().isInSystemHeader(loc)) {
13824           if (!FD->hasAttr<UnavailableAttr>()) {
13825             FD->addAttr(UnavailableAttr::CreateImplicit(Context, "",
13826                           UnavailableAttr::IR_ARCFieldWithOwnership, loc));
13827           }
13828         } else {
13829           Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag) 
13830             << T->isBlockPointerType() << Record->getTagKind();
13831         }
13832         ARCErrReported = true;
13833       }
13834     } else if (getLangOpts().ObjC1 &&
13835                getLangOpts().getGC() != LangOptions::NonGC &&
13836                Record && !Record->hasObjectMember()) {
13837       if (FD->getType()->isObjCObjectPointerType() ||
13838           FD->getType().isObjCGCStrong())
13839         Record->setHasObjectMember(true);
13840       else if (Context.getAsArrayType(FD->getType())) {
13841         QualType BaseType = Context.getBaseElementType(FD->getType());
13842         if (BaseType->isRecordType() && 
13843             BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
13844           Record->setHasObjectMember(true);
13845         else if (BaseType->isObjCObjectPointerType() ||
13846                  BaseType.isObjCGCStrong())
13847                Record->setHasObjectMember(true);
13848       }
13849     }
13850     if (Record && FD->getType().isVolatileQualified())
13851       Record->setHasVolatileMember(true);
13852     // Keep track of the number of named members.
13853     if (FD->getIdentifier())
13854       ++NumNamedMembers;
13855   }
13856
13857   // Okay, we successfully defined 'Record'.
13858   if (Record) {
13859     bool Completed = false;
13860     if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
13861       if (!CXXRecord->isInvalidDecl()) {
13862         // Set access bits correctly on the directly-declared conversions.
13863         for (CXXRecordDecl::conversion_iterator
13864                I = CXXRecord->conversion_begin(),
13865                E = CXXRecord->conversion_end(); I != E; ++I)
13866           I.setAccess((*I)->getAccess());
13867       }
13868
13869       if (!CXXRecord->isDependentType()) {
13870         if (CXXRecord->hasUserDeclaredDestructor()) {
13871           // Adjust user-defined destructor exception spec.
13872           if (getLangOpts().CPlusPlus11)
13873             AdjustDestructorExceptionSpec(CXXRecord,
13874                                           CXXRecord->getDestructor());
13875         }
13876
13877         if (!CXXRecord->isInvalidDecl()) {
13878           // Add any implicitly-declared members to this class.
13879           AddImplicitlyDeclaredMembersToClass(CXXRecord);
13880
13881           // If we have virtual base classes, we may end up finding multiple 
13882           // final overriders for a given virtual function. Check for this 
13883           // problem now.
13884           if (CXXRecord->getNumVBases()) {
13885             CXXFinalOverriderMap FinalOverriders;
13886             CXXRecord->getFinalOverriders(FinalOverriders);
13887             
13888             for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(), 
13889                                              MEnd = FinalOverriders.end();
13890                  M != MEnd; ++M) {
13891               for (OverridingMethods::iterator SO = M->second.begin(), 
13892                                             SOEnd = M->second.end();
13893                    SO != SOEnd; ++SO) {
13894                 assert(SO->second.size() > 0 && 
13895                        "Virtual function without overridding functions?");
13896                 if (SO->second.size() == 1)
13897                   continue;
13898                 
13899                 // C++ [class.virtual]p2:
13900                 //   In a derived class, if a virtual member function of a base
13901                 //   class subobject has more than one final overrider the
13902                 //   program is ill-formed.
13903                 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
13904                   << (const NamedDecl *)M->first << Record;
13905                 Diag(M->first->getLocation(), 
13906                      diag::note_overridden_virtual_function);
13907                 for (OverridingMethods::overriding_iterator 
13908                           OM = SO->second.begin(), 
13909                        OMEnd = SO->second.end();
13910                      OM != OMEnd; ++OM)
13911                   Diag(OM->Method->getLocation(), diag::note_final_overrider)
13912                     << (const NamedDecl *)M->first << OM->Method->getParent();
13913                 
13914                 Record->setInvalidDecl();
13915               }
13916             }
13917             CXXRecord->completeDefinition(&FinalOverriders);
13918             Completed = true;
13919           }
13920         }
13921       }
13922     }
13923     
13924     if (!Completed)
13925       Record->completeDefinition();
13926
13927     if (Record->hasAttrs()) {
13928       CheckAlignasUnderalignment(Record);
13929
13930       if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
13931         checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
13932                                            IA->getRange(), IA->getBestCase(),
13933                                            IA->getSemanticSpelling());
13934     }
13935
13936     // Check if the structure/union declaration is a type that can have zero
13937     // size in C. For C this is a language extension, for C++ it may cause
13938     // compatibility problems.
13939     bool CheckForZeroSize;
13940     if (!getLangOpts().CPlusPlus) {
13941       CheckForZeroSize = true;
13942     } else {
13943       // For C++ filter out types that cannot be referenced in C code.
13944       CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
13945       CheckForZeroSize =
13946           CXXRecord->getLexicalDeclContext()->isExternCContext() &&
13947           !CXXRecord->isDependentType() &&
13948           CXXRecord->isCLike();
13949     }
13950     if (CheckForZeroSize) {
13951       bool ZeroSize = true;
13952       bool IsEmpty = true;
13953       unsigned NonBitFields = 0;
13954       for (RecordDecl::field_iterator I = Record->field_begin(),
13955                                       E = Record->field_end();
13956            (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
13957         IsEmpty = false;
13958         if (I->isUnnamedBitfield()) {
13959           if (I->getBitWidthValue(Context) > 0)
13960             ZeroSize = false;
13961         } else {
13962           ++NonBitFields;
13963           QualType FieldType = I->getType();
13964           if (FieldType->isIncompleteType() ||
13965               !Context.getTypeSizeInChars(FieldType).isZero())
13966             ZeroSize = false;
13967         }
13968       }
13969
13970       // Empty structs are an extension in C (C99 6.7.2.1p7). They are
13971       // allowed in C++, but warn if its declaration is inside
13972       // extern "C" block.
13973       if (ZeroSize) {
13974         Diag(RecLoc, getLangOpts().CPlusPlus ?
13975                          diag::warn_zero_size_struct_union_in_extern_c :
13976                          diag::warn_zero_size_struct_union_compat)
13977           << IsEmpty << Record->isUnion() << (NonBitFields > 1);
13978       }
13979
13980       // Structs without named members are extension in C (C99 6.7.2.1p7),
13981       // but are accepted by GCC.
13982       if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
13983         Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
13984                                diag::ext_no_named_members_in_struct_union)
13985           << Record->isUnion();
13986       }
13987     }
13988   } else {
13989     ObjCIvarDecl **ClsFields =
13990       reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
13991     if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
13992       ID->setEndOfDefinitionLoc(RBrac);
13993       // Add ivar's to class's DeclContext.
13994       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
13995         ClsFields[i]->setLexicalDeclContext(ID);
13996         ID->addDecl(ClsFields[i]);
13997       }
13998       // Must enforce the rule that ivars in the base classes may not be
13999       // duplicates.
14000       if (ID->getSuperClass())
14001         DiagnoseDuplicateIvars(ID, ID->getSuperClass());
14002     } else if (ObjCImplementationDecl *IMPDecl =
14003                   dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
14004       assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
14005       for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
14006         // Ivar declared in @implementation never belongs to the implementation.
14007         // Only it is in implementation's lexical context.
14008         ClsFields[I]->setLexicalDeclContext(IMPDecl);
14009       CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
14010       IMPDecl->setIvarLBraceLoc(LBrac);
14011       IMPDecl->setIvarRBraceLoc(RBrac);
14012     } else if (ObjCCategoryDecl *CDecl = 
14013                 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
14014       // case of ivars in class extension; all other cases have been
14015       // reported as errors elsewhere.
14016       // FIXME. Class extension does not have a LocEnd field.
14017       // CDecl->setLocEnd(RBrac);
14018       // Add ivar's to class extension's DeclContext.
14019       // Diagnose redeclaration of private ivars.
14020       ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
14021       for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
14022         if (IDecl) {
14023           if (const ObjCIvarDecl *ClsIvar = 
14024               IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
14025             Diag(ClsFields[i]->getLocation(), 
14026                  diag::err_duplicate_ivar_declaration); 
14027             Diag(ClsIvar->getLocation(), diag::note_previous_definition);
14028             continue;
14029           }
14030           for (const auto *Ext : IDecl->known_extensions()) {
14031             if (const ObjCIvarDecl *ClsExtIvar
14032                   = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
14033               Diag(ClsFields[i]->getLocation(), 
14034                    diag::err_duplicate_ivar_declaration); 
14035               Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
14036               continue;
14037             }
14038           }
14039         }
14040         ClsFields[i]->setLexicalDeclContext(CDecl);
14041         CDecl->addDecl(ClsFields[i]);
14042       }
14043       CDecl->setIvarLBraceLoc(LBrac);
14044       CDecl->setIvarRBraceLoc(RBrac);
14045     }
14046   }
14047
14048   if (Attr)
14049     ProcessDeclAttributeList(S, Record, Attr);
14050 }
14051
14052 /// \brief Determine whether the given integral value is representable within
14053 /// the given type T.
14054 static bool isRepresentableIntegerValue(ASTContext &Context,
14055                                         llvm::APSInt &Value,
14056                                         QualType T) {
14057   assert(T->isIntegralType(Context) && "Integral type required!");
14058   unsigned BitWidth = Context.getIntWidth(T);
14059   
14060   if (Value.isUnsigned() || Value.isNonNegative()) {
14061     if (T->isSignedIntegerOrEnumerationType()) 
14062       --BitWidth;
14063     return Value.getActiveBits() <= BitWidth;
14064   }  
14065   return Value.getMinSignedBits() <= BitWidth;
14066 }
14067
14068 // \brief Given an integral type, return the next larger integral type
14069 // (or a NULL type of no such type exists).
14070 static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
14071   // FIXME: Int128/UInt128 support, which also needs to be introduced into 
14072   // enum checking below.
14073   assert(T->isIntegralType(Context) && "Integral type required!");
14074   const unsigned NumTypes = 4;
14075   QualType SignedIntegralTypes[NumTypes] = { 
14076     Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
14077   };
14078   QualType UnsignedIntegralTypes[NumTypes] = { 
14079     Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, 
14080     Context.UnsignedLongLongTy
14081   };
14082   
14083   unsigned BitWidth = Context.getTypeSize(T);
14084   QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
14085                                                         : UnsignedIntegralTypes;
14086   for (unsigned I = 0; I != NumTypes; ++I)
14087     if (Context.getTypeSize(Types[I]) > BitWidth)
14088       return Types[I];
14089   
14090   return QualType();
14091 }
14092
14093 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
14094                                           EnumConstantDecl *LastEnumConst,
14095                                           SourceLocation IdLoc,
14096                                           IdentifierInfo *Id,
14097                                           Expr *Val) {
14098   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
14099   llvm::APSInt EnumVal(IntWidth);
14100   QualType EltTy;
14101
14102   if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
14103     Val = nullptr;
14104
14105   if (Val)
14106     Val = DefaultLvalueConversion(Val).get();
14107
14108   if (Val) {
14109     if (Enum->isDependentType() || Val->isTypeDependent())
14110       EltTy = Context.DependentTy;
14111     else {
14112       SourceLocation ExpLoc;
14113       if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
14114           !getLangOpts().MSVCCompat) {
14115         // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
14116         // constant-expression in the enumerator-definition shall be a converted
14117         // constant expression of the underlying type.
14118         EltTy = Enum->getIntegerType();
14119         ExprResult Converted =
14120           CheckConvertedConstantExpression(Val, EltTy, EnumVal,
14121                                            CCEK_Enumerator);
14122         if (Converted.isInvalid())
14123           Val = nullptr;
14124         else
14125           Val = Converted.get();
14126       } else if (!Val->isValueDependent() &&
14127                  !(Val = VerifyIntegerConstantExpression(Val,
14128                                                          &EnumVal).get())) {
14129         // C99 6.7.2.2p2: Make sure we have an integer constant expression.
14130       } else {
14131         if (Enum->isFixed()) {
14132           EltTy = Enum->getIntegerType();
14133
14134           // In Obj-C and Microsoft mode, require the enumeration value to be
14135           // representable in the underlying type of the enumeration. In C++11,
14136           // we perform a non-narrowing conversion as part of converted constant
14137           // expression checking.
14138           if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
14139             if (getLangOpts().MSVCCompat) {
14140               Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
14141               Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
14142             } else
14143               Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
14144           } else
14145             Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).get();
14146         } else if (getLangOpts().CPlusPlus) {
14147           // C++11 [dcl.enum]p5:
14148           //   If the underlying type is not fixed, the type of each enumerator
14149           //   is the type of its initializing value:
14150           //     - If an initializer is specified for an enumerator, the 
14151           //       initializing value has the same type as the expression.
14152           EltTy = Val->getType();
14153         } else {
14154           // C99 6.7.2.2p2:
14155           //   The expression that defines the value of an enumeration constant
14156           //   shall be an integer constant expression that has a value
14157           //   representable as an int.
14158
14159           // Complain if the value is not representable in an int.
14160           if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
14161             Diag(IdLoc, diag::ext_enum_value_not_int)
14162               << EnumVal.toString(10) << Val->getSourceRange()
14163               << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
14164           else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
14165             // Force the type of the expression to 'int'.
14166             Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).get();
14167           }
14168           EltTy = Val->getType();
14169         }
14170       }
14171     }
14172   }
14173
14174   if (!Val) {
14175     if (Enum->isDependentType())
14176       EltTy = Context.DependentTy;
14177     else if (!LastEnumConst) {
14178       // C++0x [dcl.enum]p5:
14179       //   If the underlying type is not fixed, the type of each enumerator
14180       //   is the type of its initializing value:
14181       //     - If no initializer is specified for the first enumerator, the 
14182       //       initializing value has an unspecified integral type.
14183       //
14184       // GCC uses 'int' for its unspecified integral type, as does 
14185       // C99 6.7.2.2p3.
14186       if (Enum->isFixed()) {
14187         EltTy = Enum->getIntegerType();
14188       }
14189       else {
14190         EltTy = Context.IntTy;
14191       }
14192     } else {
14193       // Assign the last value + 1.
14194       EnumVal = LastEnumConst->getInitVal();
14195       ++EnumVal;
14196       EltTy = LastEnumConst->getType();
14197
14198       // Check for overflow on increment.
14199       if (EnumVal < LastEnumConst->getInitVal()) {
14200         // C++0x [dcl.enum]p5:
14201         //   If the underlying type is not fixed, the type of each enumerator
14202         //   is the type of its initializing value:
14203         //
14204         //     - Otherwise the type of the initializing value is the same as
14205         //       the type of the initializing value of the preceding enumerator
14206         //       unless the incremented value is not representable in that type,
14207         //       in which case the type is an unspecified integral type 
14208         //       sufficient to contain the incremented value. If no such type
14209         //       exists, the program is ill-formed.
14210         QualType T = getNextLargerIntegralType(Context, EltTy);
14211         if (T.isNull() || Enum->isFixed()) {
14212           // There is no integral type larger enough to represent this 
14213           // value. Complain, then allow the value to wrap around.
14214           EnumVal = LastEnumConst->getInitVal();
14215           EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
14216           ++EnumVal;
14217           if (Enum->isFixed())
14218             // When the underlying type is fixed, this is ill-formed.
14219             Diag(IdLoc, diag::err_enumerator_wrapped)
14220               << EnumVal.toString(10)
14221               << EltTy;
14222           else
14223             Diag(IdLoc, diag::ext_enumerator_increment_too_large)
14224               << EnumVal.toString(10);
14225         } else {
14226           EltTy = T;
14227         }
14228         
14229         // Retrieve the last enumerator's value, extent that type to the
14230         // type that is supposed to be large enough to represent the incremented
14231         // value, then increment.
14232         EnumVal = LastEnumConst->getInitVal();
14233         EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
14234         EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
14235         ++EnumVal;        
14236         
14237         // If we're not in C++, diagnose the overflow of enumerator values,
14238         // which in C99 means that the enumerator value is not representable in
14239         // an int (C99 6.7.2.2p2). However, we support GCC's extension that
14240         // permits enumerator values that are representable in some larger
14241         // integral type.
14242         if (!getLangOpts().CPlusPlus && !T.isNull())
14243           Diag(IdLoc, diag::warn_enum_value_overflow);
14244       } else if (!getLangOpts().CPlusPlus &&
14245                  !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
14246         // Enforce C99 6.7.2.2p2 even when we compute the next value.
14247         Diag(IdLoc, diag::ext_enum_value_not_int)
14248           << EnumVal.toString(10) << 1;
14249       }
14250     }
14251   }
14252
14253   if (!EltTy->isDependentType()) {
14254     // Make the enumerator value match the signedness and size of the 
14255     // enumerator's type.
14256     EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
14257     EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
14258   }
14259   
14260   return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
14261                                   Val, EnumVal);
14262 }
14263
14264 Sema::SkipBodyInfo Sema::shouldSkipAnonEnumBody(Scope *S, IdentifierInfo *II,
14265                                                 SourceLocation IILoc) {
14266   if (!(getLangOpts().Modules || getLangOpts().ModulesLocalVisibility) ||
14267       !getLangOpts().CPlusPlus)
14268     return SkipBodyInfo();
14269
14270   // We have an anonymous enum definition. Look up the first enumerator to
14271   // determine if we should merge the definition with an existing one and
14272   // skip the body.
14273   NamedDecl *PrevDecl = LookupSingleName(S, II, IILoc, LookupOrdinaryName,
14274                                          ForRedeclaration);
14275   auto *PrevECD = dyn_cast_or_null<EnumConstantDecl>(PrevDecl);
14276   if (!PrevECD)
14277     return SkipBodyInfo();
14278
14279   EnumDecl *PrevED = cast<EnumDecl>(PrevECD->getDeclContext());
14280   NamedDecl *Hidden;
14281   if (!PrevED->getDeclName() && !hasVisibleDefinition(PrevED, &Hidden)) {
14282     SkipBodyInfo Skip;
14283     Skip.Previous = Hidden;
14284     return Skip;
14285   }
14286
14287   return SkipBodyInfo();
14288 }
14289
14290 Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
14291                               SourceLocation IdLoc, IdentifierInfo *Id,
14292                               AttributeList *Attr,
14293                               SourceLocation EqualLoc, Expr *Val) {
14294   EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
14295   EnumConstantDecl *LastEnumConst =
14296     cast_or_null<EnumConstantDecl>(lastEnumConst);
14297
14298   // The scope passed in may not be a decl scope.  Zip up the scope tree until
14299   // we find one that is.
14300   S = getNonFieldDeclScope(S);
14301
14302   // Verify that there isn't already something declared with this name in this
14303   // scope.
14304   NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
14305                                          ForRedeclaration);
14306   if (PrevDecl && PrevDecl->isTemplateParameter()) {
14307     // Maybe we will complain about the shadowed template parameter.
14308     DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
14309     // Just pretend that we didn't see the previous declaration.
14310     PrevDecl = nullptr;
14311   }
14312
14313   // C++ [class.mem]p15:
14314   // If T is the name of a class, then each of the following shall have a name 
14315   // different from T:
14316   // - every enumerator of every member of class T that is an unscoped 
14317   // enumerated type
14318   if (!TheEnumDecl->isScoped())
14319     DiagnoseClassNameShadow(TheEnumDecl->getDeclContext(),
14320                             DeclarationNameInfo(Id, IdLoc));
14321   
14322   EnumConstantDecl *New =
14323     CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
14324   if (!New)
14325     return nullptr;
14326
14327   if (PrevDecl) {
14328     // When in C++, we may get a TagDecl with the same name; in this case the
14329     // enum constant will 'hide' the tag.
14330     assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
14331            "Received TagDecl when not in C++!");
14332     if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S) &&
14333         shouldLinkPossiblyHiddenDecl(PrevDecl, New)) {
14334       if (isa<EnumConstantDecl>(PrevDecl))
14335         Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
14336       else
14337         Diag(IdLoc, diag::err_redefinition) << Id;
14338       Diag(PrevDecl->getLocation(), diag::note_previous_definition);
14339       return nullptr;
14340     }
14341   }
14342
14343   // Process attributes.
14344   if (Attr) ProcessDeclAttributeList(S, New, Attr);
14345
14346   // Register this decl in the current scope stack.
14347   New->setAccess(TheEnumDecl->getAccess());
14348   PushOnScopeChains(New, S);
14349
14350   ActOnDocumentableDecl(New);
14351
14352   return New;
14353 }
14354
14355 // Returns true when the enum initial expression does not trigger the
14356 // duplicate enum warning.  A few common cases are exempted as follows:
14357 // Element2 = Element1
14358 // Element2 = Element1 + 1
14359 // Element2 = Element1 - 1
14360 // Where Element2 and Element1 are from the same enum.
14361 static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
14362   Expr *InitExpr = ECD->getInitExpr();
14363   if (!InitExpr)
14364     return true;
14365   InitExpr = InitExpr->IgnoreImpCasts();
14366
14367   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
14368     if (!BO->isAdditiveOp())
14369       return true;
14370     IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
14371     if (!IL)
14372       return true;
14373     if (IL->getValue() != 1)
14374       return true;
14375
14376     InitExpr = BO->getLHS();
14377   }
14378
14379   // This checks if the elements are from the same enum.
14380   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
14381   if (!DRE)
14382     return true;
14383
14384   EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
14385   if (!EnumConstant)
14386     return true;
14387
14388   if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
14389       Enum)
14390     return true;
14391
14392   return false;
14393 }
14394
14395 namespace {
14396 struct DupKey {
14397   int64_t val;
14398   bool isTombstoneOrEmptyKey;
14399   DupKey(int64_t val, bool isTombstoneOrEmptyKey)
14400     : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
14401 };
14402
14403 static DupKey GetDupKey(const llvm::APSInt& Val) {
14404   return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
14405                 false);
14406 }
14407
14408 struct DenseMapInfoDupKey {
14409   static DupKey getEmptyKey() { return DupKey(0, true); }
14410   static DupKey getTombstoneKey() { return DupKey(1, true); }
14411   static unsigned getHashValue(const DupKey Key) {
14412     return (unsigned)(Key.val * 37);
14413   }
14414   static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
14415     return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
14416            LHS.val == RHS.val;
14417   }
14418 };
14419 } // end anonymous namespace
14420
14421 // Emits a warning when an element is implicitly set a value that
14422 // a previous element has already been set to.
14423 static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
14424                                         EnumDecl *Enum,
14425                                         QualType EnumType) {
14426   if (S.Diags.isIgnored(diag::warn_duplicate_enum_values, Enum->getLocation()))
14427     return;
14428   // Avoid anonymous enums
14429   if (!Enum->getIdentifier())
14430     return;
14431
14432   // Only check for small enums.
14433   if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
14434     return;
14435
14436   typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
14437   typedef SmallVector<ECDVector *, 3> DuplicatesVector;
14438
14439   typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
14440   typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
14441           ValueToVectorMap;
14442
14443   DuplicatesVector DupVector;
14444   ValueToVectorMap EnumMap;
14445
14446   // Populate the EnumMap with all values represented by enum constants without
14447   // an initialier.
14448   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14449     EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
14450
14451     // Null EnumConstantDecl means a previous diagnostic has been emitted for
14452     // this constant.  Skip this enum since it may be ill-formed.
14453     if (!ECD) {
14454       return;
14455     }
14456
14457     if (ECD->getInitExpr())
14458       continue;
14459
14460     DupKey Key = GetDupKey(ECD->getInitVal());
14461     DeclOrVector &Entry = EnumMap[Key];
14462
14463     // First time encountering this value.
14464     if (Entry.isNull())
14465       Entry = ECD;
14466   }
14467
14468   // Create vectors for any values that has duplicates.
14469   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14470     EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
14471     if (!ValidDuplicateEnum(ECD, Enum))
14472       continue;
14473
14474     DupKey Key = GetDupKey(ECD->getInitVal());
14475
14476     DeclOrVector& Entry = EnumMap[Key];
14477     if (Entry.isNull())
14478       continue;
14479
14480     if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
14481       // Ensure constants are different.
14482       if (D == ECD)
14483         continue;
14484
14485       // Create new vector and push values onto it.
14486       ECDVector *Vec = new ECDVector();
14487       Vec->push_back(D);
14488       Vec->push_back(ECD);
14489
14490       // Update entry to point to the duplicates vector.
14491       Entry = Vec;
14492
14493       // Store the vector somewhere we can consult later for quick emission of
14494       // diagnostics.
14495       DupVector.push_back(Vec);
14496       continue;
14497     }
14498
14499     ECDVector *Vec = Entry.get<ECDVector*>();
14500     // Make sure constants are not added more than once.
14501     if (*Vec->begin() == ECD)
14502       continue;
14503
14504     Vec->push_back(ECD);
14505   }
14506
14507   // Emit diagnostics.
14508   for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
14509                                   DupVectorEnd = DupVector.end();
14510        DupVectorIter != DupVectorEnd; ++DupVectorIter) {
14511     ECDVector *Vec = *DupVectorIter;
14512     assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
14513
14514     // Emit warning for one enum constant.
14515     ECDVector::iterator I = Vec->begin();
14516     S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
14517       << (*I)->getName() << (*I)->getInitVal().toString(10)
14518       << (*I)->getSourceRange();
14519     ++I;
14520
14521     // Emit one note for each of the remaining enum constants with
14522     // the same value.
14523     for (ECDVector::iterator E = Vec->end(); I != E; ++I)
14524       S.Diag((*I)->getLocation(), diag::note_duplicate_element)
14525         << (*I)->getName() << (*I)->getInitVal().toString(10)
14526         << (*I)->getSourceRange();
14527     delete Vec;
14528   }
14529 }
14530
14531 bool Sema::IsValueInFlagEnum(const EnumDecl *ED, const llvm::APInt &Val,
14532                              bool AllowMask) const {
14533   assert(ED->hasAttr<FlagEnumAttr>() && "looking for value in non-flag enum");
14534   assert(ED->isCompleteDefinition() && "expected enum definition");
14535
14536   auto R = FlagBitsCache.insert(std::make_pair(ED, llvm::APInt()));
14537   llvm::APInt &FlagBits = R.first->second;
14538
14539   if (R.second) {
14540     for (auto *E : ED->enumerators()) {
14541       const auto &EVal = E->getInitVal();
14542       // Only single-bit enumerators introduce new flag values.
14543       if (EVal.isPowerOf2())
14544         FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal;
14545     }
14546   }
14547
14548   // A value is in a flag enum if either its bits are a subset of the enum's
14549   // flag bits (the first condition) or we are allowing masks and the same is
14550   // true of its complement (the second condition). When masks are allowed, we
14551   // allow the common idiom of ~(enum1 | enum2) to be a valid enum value.
14552   //
14553   // While it's true that any value could be used as a mask, the assumption is
14554   // that a mask will have all of the insignificant bits set. Anything else is
14555   // likely a logic error.
14556   llvm::APInt FlagMask = ~FlagBits.zextOrTrunc(Val.getBitWidth());
14557   return !(FlagMask & Val) || (AllowMask && !(FlagMask & ~Val));
14558 }
14559
14560 void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
14561                          SourceLocation RBraceLoc, Decl *EnumDeclX,
14562                          ArrayRef<Decl *> Elements,
14563                          Scope *S, AttributeList *Attr) {
14564   EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
14565   QualType EnumType = Context.getTypeDeclType(Enum);
14566
14567   if (Attr)
14568     ProcessDeclAttributeList(S, Enum, Attr);
14569
14570   if (Enum->isDependentType()) {
14571     for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14572       EnumConstantDecl *ECD =
14573         cast_or_null<EnumConstantDecl>(Elements[i]);
14574       if (!ECD) continue;
14575
14576       ECD->setType(EnumType);
14577     }
14578
14579     Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
14580     return;
14581   }
14582
14583   // TODO: If the result value doesn't fit in an int, it must be a long or long
14584   // long value.  ISO C does not support this, but GCC does as an extension,
14585   // emit a warning.
14586   unsigned IntWidth = Context.getTargetInfo().getIntWidth();
14587   unsigned CharWidth = Context.getTargetInfo().getCharWidth();
14588   unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
14589
14590   // Verify that all the values are okay, compute the size of the values, and
14591   // reverse the list.
14592   unsigned NumNegativeBits = 0;
14593   unsigned NumPositiveBits = 0;
14594
14595   // Keep track of whether all elements have type int.
14596   bool AllElementsInt = true;
14597
14598   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
14599     EnumConstantDecl *ECD =
14600       cast_or_null<EnumConstantDecl>(Elements[i]);
14601     if (!ECD) continue;  // Already issued a diagnostic.
14602
14603     const llvm::APSInt &InitVal = ECD->getInitVal();
14604
14605     // Keep track of the size of positive and negative values.
14606     if (InitVal.isUnsigned() || InitVal.isNonNegative())
14607       NumPositiveBits = std::max(NumPositiveBits,
14608                                  (unsigned)InitVal.getActiveBits());
14609     else
14610       NumNegativeBits = std::max(NumNegativeBits,
14611                                  (unsigned)InitVal.getMinSignedBits());
14612
14613     // Keep track of whether every enum element has type int (very commmon).
14614     if (AllElementsInt)
14615       AllElementsInt = ECD->getType() == Context.IntTy;
14616   }
14617
14618   // Figure out the type that should be used for this enum.
14619   QualType BestType;
14620   unsigned BestWidth;
14621
14622   // C++0x N3000 [conv.prom]p3:
14623   //   An rvalue of an unscoped enumeration type whose underlying
14624   //   type is not fixed can be converted to an rvalue of the first
14625   //   of the following types that can represent all the values of
14626   //   the enumeration: int, unsigned int, long int, unsigned long
14627   //   int, long long int, or unsigned long long int.
14628   // C99 6.4.4.3p2:
14629   //   An identifier declared as an enumeration constant has type int.
14630   // The C99 rule is modified by a gcc extension 
14631   QualType BestPromotionType;
14632
14633   bool Packed = Enum->hasAttr<PackedAttr>();
14634   // -fshort-enums is the equivalent to specifying the packed attribute on all
14635   // enum definitions.
14636   if (LangOpts.ShortEnums)
14637     Packed = true;
14638
14639   if (Enum->isFixed()) {
14640     BestType = Enum->getIntegerType();
14641     if (BestType->isPromotableIntegerType())
14642       BestPromotionType = Context.getPromotedIntegerType(BestType);
14643     else
14644       BestPromotionType = BestType;
14645
14646     BestWidth = Context.getIntWidth(BestType);
14647   }
14648   else if (NumNegativeBits) {
14649     // If there is a negative value, figure out the smallest integer type (of
14650     // int/long/longlong) that fits.
14651     // If it's packed, check also if it fits a char or a short.
14652     if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
14653       BestType = Context.SignedCharTy;
14654       BestWidth = CharWidth;
14655     } else if (Packed && NumNegativeBits <= ShortWidth &&
14656                NumPositiveBits < ShortWidth) {
14657       BestType = Context.ShortTy;
14658       BestWidth = ShortWidth;
14659     } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
14660       BestType = Context.IntTy;
14661       BestWidth = IntWidth;
14662     } else {
14663       BestWidth = Context.getTargetInfo().getLongWidth();
14664
14665       if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
14666         BestType = Context.LongTy;
14667       } else {
14668         BestWidth = Context.getTargetInfo().getLongLongWidth();
14669
14670         if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
14671           Diag(Enum->getLocation(), diag::ext_enum_too_large);
14672         BestType = Context.LongLongTy;
14673       }
14674     }
14675     BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
14676   } else {
14677     // If there is no negative value, figure out the smallest type that fits
14678     // all of the enumerator values.
14679     // If it's packed, check also if it fits a char or a short.
14680     if (Packed && NumPositiveBits <= CharWidth) {
14681       BestType = Context.UnsignedCharTy;
14682       BestPromotionType = Context.IntTy;
14683       BestWidth = CharWidth;
14684     } else if (Packed && NumPositiveBits <= ShortWidth) {
14685       BestType = Context.UnsignedShortTy;
14686       BestPromotionType = Context.IntTy;
14687       BestWidth = ShortWidth;
14688     } else if (NumPositiveBits <= IntWidth) {
14689       BestType = Context.UnsignedIntTy;
14690       BestWidth = IntWidth;
14691       BestPromotionType
14692         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14693                            ? Context.UnsignedIntTy : Context.IntTy;
14694     } else if (NumPositiveBits <=
14695                (BestWidth = Context.getTargetInfo().getLongWidth())) {
14696       BestType = Context.UnsignedLongTy;
14697       BestPromotionType
14698         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14699                            ? Context.UnsignedLongTy : Context.LongTy;
14700     } else {
14701       BestWidth = Context.getTargetInfo().getLongLongWidth();
14702       assert(NumPositiveBits <= BestWidth &&
14703              "How could an initializer get larger than ULL?");
14704       BestType = Context.UnsignedLongLongTy;
14705       BestPromotionType
14706         = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
14707                            ? Context.UnsignedLongLongTy : Context.LongLongTy;
14708     }
14709   }
14710
14711   // Loop over all of the enumerator constants, changing their types to match
14712   // the type of the enum if needed.
14713   for (auto *D : Elements) {
14714     auto *ECD = cast_or_null<EnumConstantDecl>(D);
14715     if (!ECD) continue;  // Already issued a diagnostic.
14716
14717     // Standard C says the enumerators have int type, but we allow, as an
14718     // extension, the enumerators to be larger than int size.  If each
14719     // enumerator value fits in an int, type it as an int, otherwise type it the
14720     // same as the enumerator decl itself.  This means that in "enum { X = 1U }"
14721     // that X has type 'int', not 'unsigned'.
14722
14723     // Determine whether the value fits into an int.
14724     llvm::APSInt InitVal = ECD->getInitVal();
14725
14726     // If it fits into an integer type, force it.  Otherwise force it to match
14727     // the enum decl type.
14728     QualType NewTy;
14729     unsigned NewWidth;
14730     bool NewSign;
14731     if (!getLangOpts().CPlusPlus &&
14732         !Enum->isFixed() &&
14733         isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
14734       NewTy = Context.IntTy;
14735       NewWidth = IntWidth;
14736       NewSign = true;
14737     } else if (ECD->getType() == BestType) {
14738       // Already the right type!
14739       if (getLangOpts().CPlusPlus)
14740         // C++ [dcl.enum]p4: Following the closing brace of an
14741         // enum-specifier, each enumerator has the type of its
14742         // enumeration.
14743         ECD->setType(EnumType);
14744       continue;
14745     } else {
14746       NewTy = BestType;
14747       NewWidth = BestWidth;
14748       NewSign = BestType->isSignedIntegerOrEnumerationType();
14749     }
14750
14751     // Adjust the APSInt value.
14752     InitVal = InitVal.extOrTrunc(NewWidth);
14753     InitVal.setIsSigned(NewSign);
14754     ECD->setInitVal(InitVal);
14755
14756     // Adjust the Expr initializer and type.
14757     if (ECD->getInitExpr() &&
14758         !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
14759       ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
14760                                                 CK_IntegralCast,
14761                                                 ECD->getInitExpr(),
14762                                                 /*base paths*/ nullptr,
14763                                                 VK_RValue));
14764     if (getLangOpts().CPlusPlus)
14765       // C++ [dcl.enum]p4: Following the closing brace of an
14766       // enum-specifier, each enumerator has the type of its
14767       // enumeration.
14768       ECD->setType(EnumType);
14769     else
14770       ECD->setType(NewTy);
14771   }
14772
14773   Enum->completeDefinition(BestType, BestPromotionType,
14774                            NumPositiveBits, NumNegativeBits);
14775
14776   CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
14777
14778   if (Enum->hasAttr<FlagEnumAttr>()) {
14779     for (Decl *D : Elements) {
14780       EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(D);
14781       if (!ECD) continue;  // Already issued a diagnostic.
14782
14783       llvm::APSInt InitVal = ECD->getInitVal();
14784       if (InitVal != 0 && !InitVal.isPowerOf2() &&
14785           !IsValueInFlagEnum(Enum, InitVal, true))
14786         Diag(ECD->getLocation(), diag::warn_flag_enum_constant_out_of_range)
14787           << ECD << Enum;
14788     }
14789   }
14790
14791   // Now that the enum type is defined, ensure it's not been underaligned.
14792   if (Enum->hasAttrs())
14793     CheckAlignasUnderalignment(Enum);
14794 }
14795
14796 Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
14797                                   SourceLocation StartLoc,
14798                                   SourceLocation EndLoc) {
14799   StringLiteral *AsmString = cast<StringLiteral>(expr);
14800
14801   FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
14802                                                    AsmString, StartLoc,
14803                                                    EndLoc);
14804   CurContext->addDecl(New);
14805   return New;
14806 }
14807
14808 static void checkModuleImportContext(Sema &S, Module *M,
14809                                      SourceLocation ImportLoc, DeclContext *DC,
14810                                      bool FromInclude = false) {
14811   SourceLocation ExternCLoc;
14812
14813   if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
14814     switch (LSD->getLanguage()) {
14815     case LinkageSpecDecl::lang_c:
14816       if (ExternCLoc.isInvalid())
14817         ExternCLoc = LSD->getLocStart();
14818       break;
14819     case LinkageSpecDecl::lang_cxx:
14820       break;
14821     }
14822     DC = LSD->getParent();
14823   }
14824
14825   while (isa<LinkageSpecDecl>(DC))
14826     DC = DC->getParent();
14827
14828   if (!isa<TranslationUnitDecl>(DC)) {
14829     S.Diag(ImportLoc, (FromInclude && S.isModuleVisible(M))
14830                           ? diag::ext_module_import_not_at_top_level_noop
14831                           : diag::err_module_import_not_at_top_level_fatal)
14832         << M->getFullModuleName() << DC;
14833     S.Diag(cast<Decl>(DC)->getLocStart(),
14834            diag::note_module_import_not_at_top_level) << DC;
14835   } else if (!M->IsExternC && ExternCLoc.isValid()) {
14836     S.Diag(ImportLoc, diag::ext_module_import_in_extern_c)
14837       << M->getFullModuleName();
14838     S.Diag(ExternCLoc, diag::note_module_import_in_extern_c);
14839   }
14840 }
14841
14842 void Sema::diagnoseMisplacedModuleImport(Module *M, SourceLocation ImportLoc) {
14843   return checkModuleImportContext(*this, M, ImportLoc, CurContext);
14844 }
14845
14846 DeclResult Sema::ActOnModuleImport(SourceLocation AtLoc, 
14847                                    SourceLocation ImportLoc, 
14848                                    ModuleIdPath Path) {
14849   Module *Mod =
14850       getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
14851                                    /*IsIncludeDirective=*/false);
14852   if (!Mod)
14853     return true;
14854
14855   VisibleModules.setVisible(Mod, ImportLoc);
14856
14857   checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
14858
14859   // FIXME: we should support importing a submodule within a different submodule
14860   // of the same top-level module. Until we do, make it an error rather than
14861   // silently ignoring the import.
14862   if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule)
14863     Diag(ImportLoc, getLangOpts().CompilingModule
14864                         ? diag::err_module_self_import
14865                         : diag::err_module_import_in_implementation)
14866         << Mod->getFullModuleName() << getLangOpts().CurrentModule;
14867
14868   SmallVector<SourceLocation, 2> IdentifierLocs;
14869   Module *ModCheck = Mod;
14870   for (unsigned I = 0, N = Path.size(); I != N; ++I) {
14871     // If we've run out of module parents, just drop the remaining identifiers.
14872     // We need the length to be consistent.
14873     if (!ModCheck)
14874       break;
14875     ModCheck = ModCheck->Parent;
14876     
14877     IdentifierLocs.push_back(Path[I].second);
14878   }
14879
14880   ImportDecl *Import = ImportDecl::Create(Context, 
14881                                           Context.getTranslationUnitDecl(),
14882                                           AtLoc.isValid()? AtLoc : ImportLoc, 
14883                                           Mod, IdentifierLocs);
14884   Context.getTranslationUnitDecl()->addDecl(Import);
14885   return Import;
14886 }
14887
14888 void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
14889   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext, true);
14890
14891   // Determine whether we're in the #include buffer for a module. The #includes
14892   // in that buffer do not qualify as module imports; they're just an
14893   // implementation detail of us building the module.
14894   //
14895   // FIXME: Should we even get ActOnModuleInclude calls for those?
14896   bool IsInModuleIncludes =
14897       TUKind == TU_Module &&
14898       getSourceManager().isWrittenInMainFile(DirectiveLoc);
14899
14900   // Similarly, if we're in the implementation of a module, don't
14901   // synthesize an illegal module import. FIXME: Why not?
14902   bool ShouldAddImport =
14903       !IsInModuleIncludes &&
14904       (getLangOpts().CompilingModule ||
14905        getLangOpts().CurrentModule.empty() ||
14906        getLangOpts().CurrentModule != Mod->getTopLevelModuleName());
14907
14908   // If this module import was due to an inclusion directive, create an 
14909   // implicit import declaration to capture it in the AST.
14910   if (ShouldAddImport) {
14911     TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
14912     ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
14913                                                      DirectiveLoc, Mod,
14914                                                      DirectiveLoc);
14915     TU->addDecl(ImportD);
14916     Consumer.HandleImplicitImportDecl(ImportD);
14917   }
14918   
14919   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc);
14920   VisibleModules.setVisible(Mod, DirectiveLoc);
14921 }
14922
14923 void Sema::ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod) {
14924   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext);
14925
14926   if (getLangOpts().ModulesLocalVisibility)
14927     VisibleModulesStack.push_back(std::move(VisibleModules));
14928   VisibleModules.setVisible(Mod, DirectiveLoc);
14929 }
14930
14931 void Sema::ActOnModuleEnd(SourceLocation DirectiveLoc, Module *Mod) {
14932   checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext);
14933
14934   if (getLangOpts().ModulesLocalVisibility) {
14935     VisibleModules = std::move(VisibleModulesStack.back());
14936     VisibleModulesStack.pop_back();
14937     VisibleModules.setVisible(Mod, DirectiveLoc);
14938     // Leaving a module hides namespace names, so our visible namespace cache
14939     // is now out of date.
14940     VisibleNamespaceCache.clear();
14941   }
14942 }
14943
14944 void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
14945                                                       Module *Mod) {
14946   // Bail if we're not allowed to implicitly import a module here.
14947   if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery)
14948     return;
14949
14950   // Create the implicit import declaration.
14951   TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
14952   ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
14953                                                    Loc, Mod, Loc);
14954   TU->addDecl(ImportD);
14955   Consumer.HandleImplicitImportDecl(ImportD);
14956
14957   // Make the module visible.
14958   getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc);
14959   VisibleModules.setVisible(Mod, Loc);
14960 }
14961
14962 void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
14963                                       IdentifierInfo* AliasName,
14964                                       SourceLocation PragmaLoc,
14965                                       SourceLocation NameLoc,
14966                                       SourceLocation AliasNameLoc) {
14967   NamedDecl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
14968                                          LookupOrdinaryName);
14969   AsmLabelAttr *Attr =
14970       AsmLabelAttr::CreateImplicit(Context, AliasName->getName(), AliasNameLoc);
14971
14972   // If a declaration that:
14973   // 1) declares a function or a variable
14974   // 2) has external linkage
14975   // already exists, add a label attribute to it.
14976   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
14977     if (isDeclExternC(PrevDecl))
14978       PrevDecl->addAttr(Attr);
14979     else
14980       Diag(PrevDecl->getLocation(), diag::warn_redefine_extname_not_applied)
14981           << /*Variable*/(isa<FunctionDecl>(PrevDecl) ? 0 : 1) << PrevDecl;
14982   // Otherwise, add a label atttibute to ExtnameUndeclaredIdentifiers.
14983   } else
14984     (void)ExtnameUndeclaredIdentifiers.insert(std::make_pair(Name, Attr));
14985 }
14986
14987 void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
14988                              SourceLocation PragmaLoc,
14989                              SourceLocation NameLoc) {
14990   Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
14991
14992   if (PrevDecl) {
14993     PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
14994   } else {
14995     (void)WeakUndeclaredIdentifiers.insert(
14996       std::pair<IdentifierInfo*,WeakInfo>
14997         (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
14998   }
14999 }
15000
15001 void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
15002                                 IdentifierInfo* AliasName,
15003                                 SourceLocation PragmaLoc,
15004                                 SourceLocation NameLoc,
15005                                 SourceLocation AliasNameLoc) {
15006   Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
15007                                     LookupOrdinaryName);
15008   WeakInfo W = WeakInfo(Name, NameLoc);
15009
15010   if (PrevDecl && (isa<FunctionDecl>(PrevDecl) || isa<VarDecl>(PrevDecl))) {
15011     if (!PrevDecl->hasAttr<AliasAttr>())
15012       if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
15013         DeclApplyPragmaWeak(TUScope, ND, W);
15014   } else {
15015     (void)WeakUndeclaredIdentifiers.insert(
15016       std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
15017   }
15018 }
15019
15020 Decl *Sema::getObjCDeclContext() const {
15021   return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
15022 }
15023
15024 AvailabilityResult Sema::getCurContextAvailability() const {
15025   const Decl *D = cast_or_null<Decl>(getCurObjCLexicalContext());
15026   if (!D)
15027     return AR_Available;
15028
15029   // If we are within an Objective-C method, we should consult
15030   // both the availability of the method as well as the
15031   // enclosing class.  If the class is (say) deprecated,
15032   // the entire method is considered deprecated from the
15033   // purpose of checking if the current context is deprecated.
15034   if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
15035     AvailabilityResult R = MD->getAvailability();
15036     if (R != AR_Available)
15037       return R;
15038     D = MD->getClassInterface();
15039   }
15040   // If we are within an Objective-c @implementation, it
15041   // gets the same availability context as the @interface.
15042   else if (const ObjCImplementationDecl *ID =
15043             dyn_cast<ObjCImplementationDecl>(D)) {
15044     D = ID->getClassInterface();
15045   }
15046   // Recover from user error.
15047   return D ? D->getAvailability() : AR_Available;
15048 }