1 //===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements decl-related attribute processing.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/ASTConsumer.h"
14 #include "clang/AST/ASTContext.h"
15 #include "clang/AST/ASTMutationListener.h"
16 #include "clang/AST/CXXInheritance.h"
17 #include "clang/AST/DeclCXX.h"
18 #include "clang/AST/DeclObjC.h"
19 #include "clang/AST/DeclTemplate.h"
20 #include "clang/AST/Expr.h"
21 #include "clang/AST/ExprCXX.h"
22 #include "clang/AST/Mangle.h"
23 #include "clang/AST/RecursiveASTVisitor.h"
24 #include "clang/Basic/CharInfo.h"
25 #include "clang/Basic/SourceManager.h"
26 #include "clang/Basic/TargetInfo.h"
27 #include "clang/Lex/Preprocessor.h"
28 #include "clang/Sema/DeclSpec.h"
29 #include "clang/Sema/DelayedDiagnostic.h"
30 #include "clang/Sema/Initialization.h"
31 #include "clang/Sema/Lookup.h"
32 #include "clang/Sema/Scope.h"
33 #include "clang/Sema/ScopeInfo.h"
34 #include "clang/Sema/SemaInternal.h"
35 #include "llvm/ADT/STLExtras.h"
36 #include "llvm/ADT/StringExtras.h"
37 #include "llvm/Support/MathExtras.h"
38 
39 using namespace clang;
40 using namespace sema;
41 
42 namespace AttributeLangSupport {
43   enum LANG {
44     C,
45     Cpp,
46     ObjC
47   };
48 } // end namespace AttributeLangSupport
49 
50 //===----------------------------------------------------------------------===//
51 //  Helper functions
52 //===----------------------------------------------------------------------===//
53 
54 /// isFunctionOrMethod - Return true if the given decl has function
55 /// type (function or function-typed variable) or an Objective-C
56 /// method.
57 static bool isFunctionOrMethod(const Decl *D) {
58   return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D);
59 }
60 
61 /// Return true if the given decl has function type (function or
62 /// function-typed variable) or an Objective-C method or a block.
63 static bool isFunctionOrMethodOrBlock(const Decl *D) {
64   return isFunctionOrMethod(D) || isa<BlockDecl>(D);
65 }
66 
67 /// Return true if the given decl has a declarator that should have
68 /// been processed by Sema::GetTypeForDeclarator.
69 static bool hasDeclarator(const Decl *D) {
70   // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl.
71   return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
72          isa<ObjCPropertyDecl>(D);
73 }
74 
75 /// hasFunctionProto - Return true if the given decl has a argument
76 /// information. This decl should have already passed
77 /// isFunctionOrMethod or isFunctionOrMethodOrBlock.
78 static bool hasFunctionProto(const Decl *D) {
79   if (const FunctionType *FnTy = D->getFunctionType())
80     return isa<FunctionProtoType>(FnTy);
81   return isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D);
82 }
83 
84 /// getFunctionOrMethodNumParams - Return number of function or method
85 /// parameters. It is an error to call this on a K&R function (use
86 /// hasFunctionProto first).
87 static unsigned getFunctionOrMethodNumParams(const Decl *D) {
88   if (const FunctionType *FnTy = D->getFunctionType())
89     return cast<FunctionProtoType>(FnTy)->getNumParams();
90   if (const auto *BD = dyn_cast<BlockDecl>(D))
91     return BD->getNumParams();
92   return cast<ObjCMethodDecl>(D)->param_size();
93 }
94 
95 static const ParmVarDecl *getFunctionOrMethodParam(const Decl *D,
96                                                    unsigned Idx) {
97   if (const auto *FD = dyn_cast<FunctionDecl>(D))
98     return FD->getParamDecl(Idx);
99   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
100     return MD->getParamDecl(Idx);
101   if (const auto *BD = dyn_cast<BlockDecl>(D))
102     return BD->getParamDecl(Idx);
103   return nullptr;
104 }
105 
106 static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) {
107   if (const FunctionType *FnTy = D->getFunctionType())
108     return cast<FunctionProtoType>(FnTy)->getParamType(Idx);
109   if (const auto *BD = dyn_cast<BlockDecl>(D))
110     return BD->getParamDecl(Idx)->getType();
111 
112   return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType();
113 }
114 
115 static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) {
116   if (auto *PVD = getFunctionOrMethodParam(D, Idx))
117     return PVD->getSourceRange();
118   return SourceRange();
119 }
120 
121 static QualType getFunctionOrMethodResultType(const Decl *D) {
122   if (const FunctionType *FnTy = D->getFunctionType())
123     return FnTy->getReturnType();
124   return cast<ObjCMethodDecl>(D)->getReturnType();
125 }
126 
127 static SourceRange getFunctionOrMethodResultSourceRange(const Decl *D) {
128   if (const auto *FD = dyn_cast<FunctionDecl>(D))
129     return FD->getReturnTypeSourceRange();
130   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
131     return MD->getReturnTypeSourceRange();
132   return SourceRange();
133 }
134 
135 static bool isFunctionOrMethodVariadic(const Decl *D) {
136   if (const FunctionType *FnTy = D->getFunctionType())
137     return cast<FunctionProtoType>(FnTy)->isVariadic();
138   if (const auto *BD = dyn_cast<BlockDecl>(D))
139     return BD->isVariadic();
140   return cast<ObjCMethodDecl>(D)->isVariadic();
141 }
142 
143 static bool isInstanceMethod(const Decl *D) {
144   if (const auto *MethodDecl = dyn_cast<CXXMethodDecl>(D))
145     return MethodDecl->isInstance();
146   return false;
147 }
148 
149 static inline bool isNSStringType(QualType T, ASTContext &Ctx) {
150   const auto *PT = T->getAs<ObjCObjectPointerType>();
151   if (!PT)
152     return false;
153 
154   ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface();
155   if (!Cls)
156     return false;
157 
158   IdentifierInfo* ClsName = Cls->getIdentifier();
159 
160   // FIXME: Should we walk the chain of classes?
161   return ClsName == &Ctx.Idents.get("NSString") ||
162          ClsName == &Ctx.Idents.get("NSMutableString");
163 }
164 
165 static inline bool isCFStringType(QualType T, ASTContext &Ctx) {
166   const auto *PT = T->getAs<PointerType>();
167   if (!PT)
168     return false;
169 
170   const auto *RT = PT->getPointeeType()->getAs<RecordType>();
171   if (!RT)
172     return false;
173 
174   const RecordDecl *RD = RT->getDecl();
175   if (RD->getTagKind() != TTK_Struct)
176     return false;
177 
178   return RD->getIdentifier() == &Ctx.Idents.get("__CFString");
179 }
180 
181 static unsigned getNumAttributeArgs(const ParsedAttr &AL) {
182   // FIXME: Include the type in the argument list.
183   return AL.getNumArgs() + AL.hasParsedType();
184 }
185 
186 template <typename Compare>
187 static bool checkAttributeNumArgsImpl(Sema &S, const ParsedAttr &AL,
188                                       unsigned Num, unsigned Diag,
189                                       Compare Comp) {
190   if (Comp(getNumAttributeArgs(AL), Num)) {
191     S.Diag(AL.getLoc(), Diag) << AL << Num;
192     return false;
193   }
194 
195   return true;
196 }
197 
198 /// Check if the attribute has exactly as many args as Num. May
199 /// output an error.
200 static bool checkAttributeNumArgs(Sema &S, const ParsedAttr &AL, unsigned Num) {
201   return checkAttributeNumArgsImpl(S, AL, Num,
202                                    diag::err_attribute_wrong_number_arguments,
203                                    std::not_equal_to<unsigned>());
204 }
205 
206 /// Check if the attribute has at least as many args as Num. May
207 /// output an error.
208 static bool checkAttributeAtLeastNumArgs(Sema &S, const ParsedAttr &AL,
209                                          unsigned Num) {
210   return checkAttributeNumArgsImpl(S, AL, Num,
211                                    diag::err_attribute_too_few_arguments,
212                                    std::less<unsigned>());
213 }
214 
215 /// Check if the attribute has at most as many args as Num. May
216 /// output an error.
217 static bool checkAttributeAtMostNumArgs(Sema &S, const ParsedAttr &AL,
218                                         unsigned Num) {
219   return checkAttributeNumArgsImpl(S, AL, Num,
220                                    diag::err_attribute_too_many_arguments,
221                                    std::greater<unsigned>());
222 }
223 
224 /// A helper function to provide Attribute Location for the Attr types
225 /// AND the ParsedAttr.
226 template <typename AttrInfo>
227 static typename std::enable_if<std::is_base_of<Attr, AttrInfo>::value,
228                                SourceLocation>::type
229 getAttrLoc(const AttrInfo &AL) {
230   return AL.getLocation();
231 }
232 static SourceLocation getAttrLoc(const ParsedAttr &AL) { return AL.getLoc(); }
233 
234 /// If Expr is a valid integer constant, get the value of the integer
235 /// expression and return success or failure. May output an error.
236 ///
237 /// Negative argument is implicitly converted to unsigned, unless
238 /// \p StrictlyUnsigned is true.
239 template <typename AttrInfo>
240 static bool checkUInt32Argument(Sema &S, const AttrInfo &AI, const Expr *Expr,
241                                 uint32_t &Val, unsigned Idx = UINT_MAX,
242                                 bool StrictlyUnsigned = false) {
243   llvm::APSInt I(32);
244   if (Expr->isTypeDependent() || Expr->isValueDependent() ||
245       !Expr->isIntegerConstantExpr(I, S.Context)) {
246     if (Idx != UINT_MAX)
247       S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type)
248           << &AI << Idx << AANT_ArgumentIntegerConstant
249           << Expr->getSourceRange();
250     else
251       S.Diag(getAttrLoc(AI), diag::err_attribute_argument_type)
252           << &AI << AANT_ArgumentIntegerConstant << Expr->getSourceRange();
253     return false;
254   }
255 
256   if (!I.isIntN(32)) {
257     S.Diag(Expr->getExprLoc(), diag::err_ice_too_large)
258         << I.toString(10, false) << 32 << /* Unsigned */ 1;
259     return false;
260   }
261 
262   if (StrictlyUnsigned && I.isSigned() && I.isNegative()) {
263     S.Diag(getAttrLoc(AI), diag::err_attribute_requires_positive_integer)
264         << &AI << /*non-negative*/ 1;
265     return false;
266   }
267 
268   Val = (uint32_t)I.getZExtValue();
269   return true;
270 }
271 
272 /// Wrapper around checkUInt32Argument, with an extra check to be sure
273 /// that the result will fit into a regular (signed) int. All args have the same
274 /// purpose as they do in checkUInt32Argument.
275 template <typename AttrInfo>
276 static bool checkPositiveIntArgument(Sema &S, const AttrInfo &AI, const Expr *Expr,
277                                      int &Val, unsigned Idx = UINT_MAX) {
278   uint32_t UVal;
279   if (!checkUInt32Argument(S, AI, Expr, UVal, Idx))
280     return false;
281 
282   if (UVal > (uint32_t)std::numeric_limits<int>::max()) {
283     llvm::APSInt I(32); // for toString
284     I = UVal;
285     S.Diag(Expr->getExprLoc(), diag::err_ice_too_large)
286         << I.toString(10, false) << 32 << /* Unsigned */ 0;
287     return false;
288   }
289 
290   Val = UVal;
291   return true;
292 }
293 
294 /// Diagnose mutually exclusive attributes when present on a given
295 /// declaration. Returns true if diagnosed.
296 template <typename AttrTy>
297 static bool checkAttrMutualExclusion(Sema &S, Decl *D, const ParsedAttr &AL) {
298   if (const auto *A = D->getAttr<AttrTy>()) {
299     S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) << AL << A;
300     S.Diag(A->getLocation(), diag::note_conflicting_attribute);
301     return true;
302   }
303   return false;
304 }
305 
306 template <typename AttrTy>
307 static bool checkAttrMutualExclusion(Sema &S, Decl *D, const Attr &AL) {
308   if (const auto *A = D->getAttr<AttrTy>()) {
309     S.Diag(AL.getLocation(), diag::err_attributes_are_not_compatible) << &AL
310                                                                       << A;
311     S.Diag(A->getLocation(), diag::note_conflicting_attribute);
312     return true;
313   }
314   return false;
315 }
316 
317 /// Check if IdxExpr is a valid parameter index for a function or
318 /// instance method D.  May output an error.
319 ///
320 /// \returns true if IdxExpr is a valid index.
321 template <typename AttrInfo>
322 static bool checkFunctionOrMethodParameterIndex(
323     Sema &S, const Decl *D, const AttrInfo &AI, unsigned AttrArgNum,
324     const Expr *IdxExpr, ParamIdx &Idx, bool CanIndexImplicitThis = false) {
325   assert(isFunctionOrMethodOrBlock(D));
326 
327   // In C++ the implicit 'this' function parameter also counts.
328   // Parameters are counted from one.
329   bool HP = hasFunctionProto(D);
330   bool HasImplicitThisParam = isInstanceMethod(D);
331   bool IV = HP && isFunctionOrMethodVariadic(D);
332   unsigned NumParams =
333       (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam;
334 
335   llvm::APSInt IdxInt;
336   if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() ||
337       !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) {
338     S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type)
339         << &AI << AttrArgNum << AANT_ArgumentIntegerConstant
340         << IdxExpr->getSourceRange();
341     return false;
342   }
343 
344   unsigned IdxSource = IdxInt.getLimitedValue(UINT_MAX);
345   if (IdxSource < 1 || (!IV && IdxSource > NumParams)) {
346     S.Diag(getAttrLoc(AI), diag::err_attribute_argument_out_of_bounds)
347         << &AI << AttrArgNum << IdxExpr->getSourceRange();
348     return false;
349   }
350   if (HasImplicitThisParam && !CanIndexImplicitThis) {
351     if (IdxSource == 1) {
352       S.Diag(getAttrLoc(AI), diag::err_attribute_invalid_implicit_this_argument)
353           << &AI << IdxExpr->getSourceRange();
354       return false;
355     }
356   }
357 
358   Idx = ParamIdx(IdxSource, D);
359   return true;
360 }
361 
362 /// Check if the argument \p ArgNum of \p Attr is a ASCII string literal.
363 /// If not emit an error and return false. If the argument is an identifier it
364 /// will emit an error with a fixit hint and treat it as if it was a string
365 /// literal.
366 bool Sema::checkStringLiteralArgumentAttr(const ParsedAttr &AL, unsigned ArgNum,
367                                           StringRef &Str,
368                                           SourceLocation *ArgLocation) {
369   // Look for identifiers. If we have one emit a hint to fix it to a literal.
370   if (AL.isArgIdent(ArgNum)) {
371     IdentifierLoc *Loc = AL.getArgAsIdent(ArgNum);
372     Diag(Loc->Loc, diag::err_attribute_argument_type)
373         << AL << AANT_ArgumentString
374         << FixItHint::CreateInsertion(Loc->Loc, "\"")
375         << FixItHint::CreateInsertion(getLocForEndOfToken(Loc->Loc), "\"");
376     Str = Loc->Ident->getName();
377     if (ArgLocation)
378       *ArgLocation = Loc->Loc;
379     return true;
380   }
381 
382   // Now check for an actual string literal.
383   Expr *ArgExpr = AL.getArgAsExpr(ArgNum);
384   const auto *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts());
385   if (ArgLocation)
386     *ArgLocation = ArgExpr->getBeginLoc();
387 
388   if (!Literal || !Literal->isAscii()) {
389     Diag(ArgExpr->getBeginLoc(), diag::err_attribute_argument_type)
390         << AL << AANT_ArgumentString;
391     return false;
392   }
393 
394   Str = Literal->getString();
395   return true;
396 }
397 
398 /// Applies the given attribute to the Decl without performing any
399 /// additional semantic checking.
400 template <typename AttrType>
401 static void handleSimpleAttribute(Sema &S, Decl *D, SourceRange SR,
402                                   unsigned SpellingIndex) {
403   D->addAttr(::new (S.Context) AttrType(SR, S.Context, SpellingIndex));
404 }
405 
406 template <typename AttrType>
407 static void handleSimpleAttribute(Sema &S, Decl *D, const ParsedAttr &AL) {
408   handleSimpleAttribute<AttrType>(S, D, AL.getRange(),
409                                   AL.getAttributeSpellingListIndex());
410 }
411 
412 
413 template <typename... DiagnosticArgs>
414 static const Sema::SemaDiagnosticBuilder&
415 appendDiagnostics(const Sema::SemaDiagnosticBuilder &Bldr) {
416   return Bldr;
417 }
418 
419 template <typename T, typename... DiagnosticArgs>
420 static const Sema::SemaDiagnosticBuilder&
421 appendDiagnostics(const Sema::SemaDiagnosticBuilder &Bldr, T &&ExtraArg,
422                   DiagnosticArgs &&... ExtraArgs) {
423   return appendDiagnostics(Bldr << std::forward<T>(ExtraArg),
424                            std::forward<DiagnosticArgs>(ExtraArgs)...);
425 }
426 
427 /// Add an attribute {@code AttrType} to declaration {@code D}, provided that
428 /// {@code PassesCheck} is true.
429 /// Otherwise, emit diagnostic {@code DiagID}, passing in all parameters
430 /// specified in {@code ExtraArgs}.
431 template <typename AttrType, typename... DiagnosticArgs>
432 static void
433 handleSimpleAttributeOrDiagnose(Sema &S, Decl *D, SourceRange SR,
434                                unsigned SpellingIndex,
435                                bool PassesCheck,
436                                unsigned DiagID, DiagnosticArgs&&... ExtraArgs) {
437   if (!PassesCheck) {
438     Sema::SemaDiagnosticBuilder DB = S.Diag(D->getBeginLoc(), DiagID);
439     appendDiagnostics(DB, std::forward<DiagnosticArgs>(ExtraArgs)...);
440     return;
441   }
442   handleSimpleAttribute<AttrType>(S, D, SR, SpellingIndex);
443 }
444 
445 template <typename AttrType, typename... DiagnosticArgs>
446 static void
447 handleSimpleAttributeOrDiagnose(Sema &S, Decl *D, const ParsedAttr &AL,
448                                bool PassesCheck,
449                                unsigned DiagID,
450                                DiagnosticArgs&&... ExtraArgs) {
451   return handleSimpleAttributeOrDiagnose<AttrType>(
452       S, D, AL.getRange(), AL.getAttributeSpellingListIndex(), PassesCheck,
453       DiagID, std::forward<DiagnosticArgs>(ExtraArgs)...);
454 }
455 
456 template <typename AttrType>
457 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
458                                                 const ParsedAttr &AL) {
459   handleSimpleAttribute<AttrType>(S, D, AL);
460 }
461 
462 /// Applies the given attribute to the Decl so long as the Decl doesn't
463 /// already have one of the given incompatible attributes.
464 template <typename AttrType, typename IncompatibleAttrType,
465           typename... IncompatibleAttrTypes>
466 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D,
467                                                 const ParsedAttr &AL) {
468   if (checkAttrMutualExclusion<IncompatibleAttrType>(S, D, AL))
469     return;
470   handleSimpleAttributeWithExclusions<AttrType, IncompatibleAttrTypes...>(S, D,
471                                                                           AL);
472 }
473 
474 /// Check if the passed-in expression is of type int or bool.
475 static bool isIntOrBool(Expr *Exp) {
476   QualType QT = Exp->getType();
477   return QT->isBooleanType() || QT->isIntegerType();
478 }
479 
480 
481 // Check to see if the type is a smart pointer of some kind.  We assume
482 // it's a smart pointer if it defines both operator-> and operator*.
483 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) {
484   auto IsOverloadedOperatorPresent = [&S](const RecordDecl *Record,
485                                           OverloadedOperatorKind Op) {
486     DeclContextLookupResult Result =
487         Record->lookup(S.Context.DeclarationNames.getCXXOperatorName(Op));
488     return !Result.empty();
489   };
490 
491   const RecordDecl *Record = RT->getDecl();
492   bool foundStarOperator = IsOverloadedOperatorPresent(Record, OO_Star);
493   bool foundArrowOperator = IsOverloadedOperatorPresent(Record, OO_Arrow);
494   if (foundStarOperator && foundArrowOperator)
495     return true;
496 
497   const CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record);
498   if (!CXXRecord)
499     return false;
500 
501   for (auto BaseSpecifier : CXXRecord->bases()) {
502     if (!foundStarOperator)
503       foundStarOperator = IsOverloadedOperatorPresent(
504           BaseSpecifier.getType()->getAsRecordDecl(), OO_Star);
505     if (!foundArrowOperator)
506       foundArrowOperator = IsOverloadedOperatorPresent(
507           BaseSpecifier.getType()->getAsRecordDecl(), OO_Arrow);
508   }
509 
510   if (foundStarOperator && foundArrowOperator)
511     return true;
512 
513   return false;
514 }
515 
516 /// Check if passed in Decl is a pointer type.
517 /// Note that this function may produce an error message.
518 /// \return true if the Decl is a pointer type; false otherwise
519 static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D,
520                                        const ParsedAttr &AL) {
521   const auto *VD = cast<ValueDecl>(D);
522   QualType QT = VD->getType();
523   if (QT->isAnyPointerType())
524     return true;
525 
526   if (const auto *RT = QT->getAs<RecordType>()) {
527     // If it's an incomplete type, it could be a smart pointer; skip it.
528     // (We don't want to force template instantiation if we can avoid it,
529     // since that would alter the order in which templates are instantiated.)
530     if (RT->isIncompleteType())
531       return true;
532 
533     if (threadSafetyCheckIsSmartPointer(S, RT))
534       return true;
535   }
536 
537   S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_pointer) << AL << QT;
538   return false;
539 }
540 
541 /// Checks that the passed in QualType either is of RecordType or points
542 /// to RecordType. Returns the relevant RecordType, null if it does not exit.
543 static const RecordType *getRecordType(QualType QT) {
544   if (const auto *RT = QT->getAs<RecordType>())
545     return RT;
546 
547   // Now check if we point to record type.
548   if (const auto *PT = QT->getAs<PointerType>())
549     return PT->getPointeeType()->getAs<RecordType>();
550 
551   return nullptr;
552 }
553 
554 template <typename AttrType>
555 static bool checkRecordDeclForAttr(const RecordDecl *RD) {
556   // Check if the record itself has the attribute.
557   if (RD->hasAttr<AttrType>())
558     return true;
559 
560   // Else check if any base classes have the attribute.
561   if (const auto *CRD = dyn_cast<CXXRecordDecl>(RD)) {
562     CXXBasePaths BPaths(false, false);
563     if (CRD->lookupInBases(
564             [](const CXXBaseSpecifier *BS, CXXBasePath &) {
565               const auto &Ty = *BS->getType();
566               // If it's type-dependent, we assume it could have the attribute.
567               if (Ty.isDependentType())
568                 return true;
569               return Ty.getAs<RecordType>()->getDecl()->hasAttr<AttrType>();
570             },
571             BPaths, true))
572       return true;
573   }
574   return false;
575 }
576 
577 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) {
578   const RecordType *RT = getRecordType(Ty);
579 
580   if (!RT)
581     return false;
582 
583   // Don't check for the capability if the class hasn't been defined yet.
584   if (RT->isIncompleteType())
585     return true;
586 
587   // Allow smart pointers to be used as capability objects.
588   // FIXME -- Check the type that the smart pointer points to.
589   if (threadSafetyCheckIsSmartPointer(S, RT))
590     return true;
591 
592   return checkRecordDeclForAttr<CapabilityAttr>(RT->getDecl());
593 }
594 
595 static bool checkTypedefTypeForCapability(QualType Ty) {
596   const auto *TD = Ty->getAs<TypedefType>();
597   if (!TD)
598     return false;
599 
600   TypedefNameDecl *TN = TD->getDecl();
601   if (!TN)
602     return false;
603 
604   return TN->hasAttr<CapabilityAttr>();
605 }
606 
607 static bool typeHasCapability(Sema &S, QualType Ty) {
608   if (checkTypedefTypeForCapability(Ty))
609     return true;
610 
611   if (checkRecordTypeForCapability(S, Ty))
612     return true;
613 
614   return false;
615 }
616 
617 static bool isCapabilityExpr(Sema &S, const Expr *Ex) {
618   // Capability expressions are simple expressions involving the boolean logic
619   // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once
620   // a DeclRefExpr is found, its type should be checked to determine whether it
621   // is a capability or not.
622 
623   if (const auto *E = dyn_cast<CastExpr>(Ex))
624     return isCapabilityExpr(S, E->getSubExpr());
625   else if (const auto *E = dyn_cast<ParenExpr>(Ex))
626     return isCapabilityExpr(S, E->getSubExpr());
627   else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) {
628     if (E->getOpcode() == UO_LNot || E->getOpcode() == UO_AddrOf ||
629         E->getOpcode() == UO_Deref)
630       return isCapabilityExpr(S, E->getSubExpr());
631     return false;
632   } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) {
633     if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr)
634       return isCapabilityExpr(S, E->getLHS()) &&
635              isCapabilityExpr(S, E->getRHS());
636     return false;
637   }
638 
639   return typeHasCapability(S, Ex->getType());
640 }
641 
642 /// Checks that all attribute arguments, starting from Sidx, resolve to
643 /// a capability object.
644 /// \param Sidx The attribute argument index to start checking with.
645 /// \param ParamIdxOk Whether an argument can be indexing into a function
646 /// parameter list.
647 static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D,
648                                            const ParsedAttr &AL,
649                                            SmallVectorImpl<Expr *> &Args,
650                                            unsigned Sidx = 0,
651                                            bool ParamIdxOk = false) {
652   if (Sidx == AL.getNumArgs()) {
653     // If we don't have any capability arguments, the attribute implicitly
654     // refers to 'this'. So we need to make sure that 'this' exists, i.e. we're
655     // a non-static method, and that the class is a (scoped) capability.
656     const auto *MD = dyn_cast<const CXXMethodDecl>(D);
657     if (MD && !MD->isStatic()) {
658       const CXXRecordDecl *RD = MD->getParent();
659       // FIXME -- need to check this again on template instantiation
660       if (!checkRecordDeclForAttr<CapabilityAttr>(RD) &&
661           !checkRecordDeclForAttr<ScopedLockableAttr>(RD))
662         S.Diag(AL.getLoc(),
663                diag::warn_thread_attribute_not_on_capability_member)
664             << AL << MD->getParent();
665     } else {
666       S.Diag(AL.getLoc(), diag::warn_thread_attribute_not_on_non_static_member)
667           << AL;
668     }
669   }
670 
671   for (unsigned Idx = Sidx; Idx < AL.getNumArgs(); ++Idx) {
672     Expr *ArgExp = AL.getArgAsExpr(Idx);
673 
674     if (ArgExp->isTypeDependent()) {
675       // FIXME -- need to check this again on template instantiation
676       Args.push_back(ArgExp);
677       continue;
678     }
679 
680     if (const auto *StrLit = dyn_cast<StringLiteral>(ArgExp)) {
681       if (StrLit->getLength() == 0 ||
682           (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) {
683         // Pass empty strings to the analyzer without warnings.
684         // Treat "*" as the universal lock.
685         Args.push_back(ArgExp);
686         continue;
687       }
688 
689       // We allow constant strings to be used as a placeholder for expressions
690       // that are not valid C++ syntax, but warn that they are ignored.
691       S.Diag(AL.getLoc(), diag::warn_thread_attribute_ignored) << AL;
692       Args.push_back(ArgExp);
693       continue;
694     }
695 
696     QualType ArgTy = ArgExp->getType();
697 
698     // A pointer to member expression of the form  &MyClass::mu is treated
699     // specially -- we need to look at the type of the member.
700     if (const auto *UOp = dyn_cast<UnaryOperator>(ArgExp))
701       if (UOp->getOpcode() == UO_AddrOf)
702         if (const auto *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr()))
703           if (DRE->getDecl()->isCXXInstanceMember())
704             ArgTy = DRE->getDecl()->getType();
705 
706     // First see if we can just cast to record type, or pointer to record type.
707     const RecordType *RT = getRecordType(ArgTy);
708 
709     // Now check if we index into a record type function param.
710     if(!RT && ParamIdxOk) {
711       const auto *FD = dyn_cast<FunctionDecl>(D);
712       const auto *IL = dyn_cast<IntegerLiteral>(ArgExp);
713       if(FD && IL) {
714         unsigned int NumParams = FD->getNumParams();
715         llvm::APInt ArgValue = IL->getValue();
716         uint64_t ParamIdxFromOne = ArgValue.getZExtValue();
717         uint64_t ParamIdxFromZero = ParamIdxFromOne - 1;
718         if (!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {
719           S.Diag(AL.getLoc(),
720                  diag::err_attribute_argument_out_of_bounds_extra_info)
721               << AL << Idx + 1 << NumParams;
722           continue;
723         }
724         ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType();
725       }
726     }
727 
728     // If the type does not have a capability, see if the components of the
729     // expression have capabilities. This allows for writing C code where the
730     // capability may be on the type, and the expression is a capability
731     // boolean logic expression. Eg) requires_capability(A || B && !C)
732     if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp))
733       S.Diag(AL.getLoc(), diag::warn_thread_attribute_argument_not_lockable)
734           << AL << ArgTy;
735 
736     Args.push_back(ArgExp);
737   }
738 }
739 
740 //===----------------------------------------------------------------------===//
741 // Attribute Implementations
742 //===----------------------------------------------------------------------===//
743 
744 static void handlePtGuardedVarAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
745   if (!threadSafetyCheckIsPointer(S, D, AL))
746     return;
747 
748   D->addAttr(::new (S.Context)
749              PtGuardedVarAttr(AL.getRange(), S.Context,
750                               AL.getAttributeSpellingListIndex()));
751 }
752 
753 static bool checkGuardedByAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
754                                      Expr *&Arg) {
755   SmallVector<Expr *, 1> Args;
756   // check that all arguments are lockable objects
757   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
758   unsigned Size = Args.size();
759   if (Size != 1)
760     return false;
761 
762   Arg = Args[0];
763 
764   return true;
765 }
766 
767 static void handleGuardedByAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
768   Expr *Arg = nullptr;
769   if (!checkGuardedByAttrCommon(S, D, AL, Arg))
770     return;
771 
772   D->addAttr(::new (S.Context) GuardedByAttr(
773       AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex()));
774 }
775 
776 static void handlePtGuardedByAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
777   Expr *Arg = nullptr;
778   if (!checkGuardedByAttrCommon(S, D, AL, Arg))
779     return;
780 
781   if (!threadSafetyCheckIsPointer(S, D, AL))
782     return;
783 
784   D->addAttr(::new (S.Context) PtGuardedByAttr(
785       AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex()));
786 }
787 
788 static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
789                                         SmallVectorImpl<Expr *> &Args) {
790   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
791     return false;
792 
793   // Check that this attribute only applies to lockable types.
794   QualType QT = cast<ValueDecl>(D)->getType();
795   if (!QT->isDependentType() && !typeHasCapability(S, QT)) {
796     S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_lockable) << AL;
797     return false;
798   }
799 
800   // Check that all arguments are lockable objects.
801   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
802   if (Args.empty())
803     return false;
804 
805   return true;
806 }
807 
808 static void handleAcquiredAfterAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
809   SmallVector<Expr *, 1> Args;
810   if (!checkAcquireOrderAttrCommon(S, D, AL, Args))
811     return;
812 
813   Expr **StartArg = &Args[0];
814   D->addAttr(::new (S.Context) AcquiredAfterAttr(
815       AL.getRange(), S.Context, StartArg, Args.size(),
816       AL.getAttributeSpellingListIndex()));
817 }
818 
819 static void handleAcquiredBeforeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
820   SmallVector<Expr *, 1> Args;
821   if (!checkAcquireOrderAttrCommon(S, D, AL, Args))
822     return;
823 
824   Expr **StartArg = &Args[0];
825   D->addAttr(::new (S.Context) AcquiredBeforeAttr(
826       AL.getRange(), S.Context, StartArg, Args.size(),
827       AL.getAttributeSpellingListIndex()));
828 }
829 
830 static bool checkLockFunAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
831                                    SmallVectorImpl<Expr *> &Args) {
832   // zero or more arguments ok
833   // check that all arguments are lockable objects
834   checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, /*ParamIdxOk=*/true);
835 
836   return true;
837 }
838 
839 static void handleAssertSharedLockAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
840   SmallVector<Expr *, 1> Args;
841   if (!checkLockFunAttrCommon(S, D, AL, Args))
842     return;
843 
844   unsigned Size = Args.size();
845   Expr **StartArg = Size == 0 ? nullptr : &Args[0];
846   D->addAttr(::new (S.Context)
847                  AssertSharedLockAttr(AL.getRange(), S.Context, StartArg, Size,
848                                       AL.getAttributeSpellingListIndex()));
849 }
850 
851 static void handleAssertExclusiveLockAttr(Sema &S, Decl *D,
852                                           const ParsedAttr &AL) {
853   SmallVector<Expr *, 1> Args;
854   if (!checkLockFunAttrCommon(S, D, AL, Args))
855     return;
856 
857   unsigned Size = Args.size();
858   Expr **StartArg = Size == 0 ? nullptr : &Args[0];
859   D->addAttr(::new (S.Context) AssertExclusiveLockAttr(
860       AL.getRange(), S.Context, StartArg, Size,
861       AL.getAttributeSpellingListIndex()));
862 }
863 
864 /// Checks to be sure that the given parameter number is in bounds, and
865 /// is an integral type. Will emit appropriate diagnostics if this returns
866 /// false.
867 ///
868 /// AttrArgNo is used to actually retrieve the argument, so it's base-0.
869 template <typename AttrInfo>
870 static bool checkParamIsIntegerType(Sema &S, const FunctionDecl *FD,
871                                     const AttrInfo &AI, unsigned AttrArgNo) {
872   assert(AI.isArgExpr(AttrArgNo) && "Expected expression argument");
873   Expr *AttrArg = AI.getArgAsExpr(AttrArgNo);
874   ParamIdx Idx;
875   if (!checkFunctionOrMethodParameterIndex(S, FD, AI, AttrArgNo + 1, AttrArg,
876                                            Idx))
877     return false;
878 
879   const ParmVarDecl *Param = FD->getParamDecl(Idx.getASTIndex());
880   if (!Param->getType()->isIntegerType() && !Param->getType()->isCharType()) {
881     SourceLocation SrcLoc = AttrArg->getBeginLoc();
882     S.Diag(SrcLoc, diag::err_attribute_integers_only)
883         << AI << Param->getSourceRange();
884     return false;
885   }
886   return true;
887 }
888 
889 static void handleAllocSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
890   if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
891       !checkAttributeAtMostNumArgs(S, AL, 2))
892     return;
893 
894   const auto *FD = cast<FunctionDecl>(D);
895   if (!FD->getReturnType()->isPointerType()) {
896     S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only) << AL;
897     return;
898   }
899 
900   const Expr *SizeExpr = AL.getArgAsExpr(0);
901   int SizeArgNoVal;
902   // Parameter indices are 1-indexed, hence Index=1
903   if (!checkPositiveIntArgument(S, AL, SizeExpr, SizeArgNoVal, /*Idx=*/1))
904     return;
905   if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/0))
906     return;
907   ParamIdx SizeArgNo(SizeArgNoVal, D);
908 
909   ParamIdx NumberArgNo;
910   if (AL.getNumArgs() == 2) {
911     const Expr *NumberExpr = AL.getArgAsExpr(1);
912     int Val;
913     // Parameter indices are 1-based, hence Index=2
914     if (!checkPositiveIntArgument(S, AL, NumberExpr, Val, /*Idx=*/2))
915       return;
916     if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/1))
917       return;
918     NumberArgNo = ParamIdx(Val, D);
919   }
920 
921   D->addAttr(::new (S.Context)
922                  AllocSizeAttr(AL.getRange(), S.Context, SizeArgNo, NumberArgNo,
923                                AL.getAttributeSpellingListIndex()));
924 }
925 
926 static bool checkTryLockFunAttrCommon(Sema &S, Decl *D, const ParsedAttr &AL,
927                                       SmallVectorImpl<Expr *> &Args) {
928   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
929     return false;
930 
931   if (!isIntOrBool(AL.getArgAsExpr(0))) {
932     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
933         << AL << 1 << AANT_ArgumentIntOrBool;
934     return false;
935   }
936 
937   // check that all arguments are lockable objects
938   checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 1);
939 
940   return true;
941 }
942 
943 static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D,
944                                             const ParsedAttr &AL) {
945   SmallVector<Expr*, 2> Args;
946   if (!checkTryLockFunAttrCommon(S, D, AL, Args))
947     return;
948 
949   D->addAttr(::new (S.Context) SharedTrylockFunctionAttr(
950       AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(), Args.size(),
951       AL.getAttributeSpellingListIndex()));
952 }
953 
954 static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D,
955                                                const ParsedAttr &AL) {
956   SmallVector<Expr*, 2> Args;
957   if (!checkTryLockFunAttrCommon(S, D, AL, Args))
958     return;
959 
960   D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr(
961       AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(),
962       Args.size(), AL.getAttributeSpellingListIndex()));
963 }
964 
965 static void handleLockReturnedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
966   // check that the argument is lockable object
967   SmallVector<Expr*, 1> Args;
968   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
969   unsigned Size = Args.size();
970   if (Size == 0)
971     return;
972 
973   D->addAttr(::new (S.Context)
974              LockReturnedAttr(AL.getRange(), S.Context, Args[0],
975                               AL.getAttributeSpellingListIndex()));
976 }
977 
978 static void handleLocksExcludedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
979   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
980     return;
981 
982   // check that all arguments are lockable objects
983   SmallVector<Expr*, 1> Args;
984   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
985   unsigned Size = Args.size();
986   if (Size == 0)
987     return;
988   Expr **StartArg = &Args[0];
989 
990   D->addAttr(::new (S.Context)
991              LocksExcludedAttr(AL.getRange(), S.Context, StartArg, Size,
992                                AL.getAttributeSpellingListIndex()));
993 }
994 
995 static bool checkFunctionConditionAttr(Sema &S, Decl *D, const ParsedAttr &AL,
996                                        Expr *&Cond, StringRef &Msg) {
997   Cond = AL.getArgAsExpr(0);
998   if (!Cond->isTypeDependent()) {
999     ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
1000     if (Converted.isInvalid())
1001       return false;
1002     Cond = Converted.get();
1003   }
1004 
1005   if (!S.checkStringLiteralArgumentAttr(AL, 1, Msg))
1006     return false;
1007 
1008   if (Msg.empty())
1009     Msg = "<no message provided>";
1010 
1011   SmallVector<PartialDiagnosticAt, 8> Diags;
1012   if (isa<FunctionDecl>(D) && !Cond->isValueDependent() &&
1013       !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D),
1014                                                 Diags)) {
1015     S.Diag(AL.getLoc(), diag::err_attr_cond_never_constant_expr) << AL;
1016     for (const PartialDiagnosticAt &PDiag : Diags)
1017       S.Diag(PDiag.first, PDiag.second);
1018     return false;
1019   }
1020   return true;
1021 }
1022 
1023 static void handleEnableIfAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1024   S.Diag(AL.getLoc(), diag::ext_clang_enable_if);
1025 
1026   Expr *Cond;
1027   StringRef Msg;
1028   if (checkFunctionConditionAttr(S, D, AL, Cond, Msg))
1029     D->addAttr(::new (S.Context)
1030                    EnableIfAttr(AL.getRange(), S.Context, Cond, Msg,
1031                                 AL.getAttributeSpellingListIndex()));
1032 }
1033 
1034 namespace {
1035 /// Determines if a given Expr references any of the given function's
1036 /// ParmVarDecls, or the function's implicit `this` parameter (if applicable).
1037 class ArgumentDependenceChecker
1038     : public RecursiveASTVisitor<ArgumentDependenceChecker> {
1039 #ifndef NDEBUG
1040   const CXXRecordDecl *ClassType;
1041 #endif
1042   llvm::SmallPtrSet<const ParmVarDecl *, 16> Parms;
1043   bool Result;
1044 
1045 public:
1046   ArgumentDependenceChecker(const FunctionDecl *FD) {
1047 #ifndef NDEBUG
1048     if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
1049       ClassType = MD->getParent();
1050     else
1051       ClassType = nullptr;
1052 #endif
1053     Parms.insert(FD->param_begin(), FD->param_end());
1054   }
1055 
1056   bool referencesArgs(Expr *E) {
1057     Result = false;
1058     TraverseStmt(E);
1059     return Result;
1060   }
1061 
1062   bool VisitCXXThisExpr(CXXThisExpr *E) {
1063     assert(E->getType()->getPointeeCXXRecordDecl() == ClassType &&
1064            "`this` doesn't refer to the enclosing class?");
1065     Result = true;
1066     return false;
1067   }
1068 
1069   bool VisitDeclRefExpr(DeclRefExpr *DRE) {
1070     if (const auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl()))
1071       if (Parms.count(PVD)) {
1072         Result = true;
1073         return false;
1074       }
1075     return true;
1076   }
1077 };
1078 }
1079 
1080 static void handleDiagnoseIfAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1081   S.Diag(AL.getLoc(), diag::ext_clang_diagnose_if);
1082 
1083   Expr *Cond;
1084   StringRef Msg;
1085   if (!checkFunctionConditionAttr(S, D, AL, Cond, Msg))
1086     return;
1087 
1088   StringRef DiagTypeStr;
1089   if (!S.checkStringLiteralArgumentAttr(AL, 2, DiagTypeStr))
1090     return;
1091 
1092   DiagnoseIfAttr::DiagnosticType DiagType;
1093   if (!DiagnoseIfAttr::ConvertStrToDiagnosticType(DiagTypeStr, DiagType)) {
1094     S.Diag(AL.getArgAsExpr(2)->getBeginLoc(),
1095            diag::err_diagnose_if_invalid_diagnostic_type);
1096     return;
1097   }
1098 
1099   bool ArgDependent = false;
1100   if (const auto *FD = dyn_cast<FunctionDecl>(D))
1101     ArgDependent = ArgumentDependenceChecker(FD).referencesArgs(Cond);
1102   D->addAttr(::new (S.Context) DiagnoseIfAttr(
1103       AL.getRange(), S.Context, Cond, Msg, DiagType, ArgDependent,
1104       cast<NamedDecl>(D), AL.getAttributeSpellingListIndex()));
1105 }
1106 
1107 static void handlePassObjectSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1108   if (D->hasAttr<PassObjectSizeAttr>()) {
1109     S.Diag(D->getBeginLoc(), diag::err_attribute_only_once_per_parameter) << AL;
1110     return;
1111   }
1112 
1113   Expr *E = AL.getArgAsExpr(0);
1114   uint32_t Type;
1115   if (!checkUInt32Argument(S, AL, E, Type, /*Idx=*/1))
1116     return;
1117 
1118   // pass_object_size's argument is passed in as the second argument of
1119   // __builtin_object_size. So, it has the same constraints as that second
1120   // argument; namely, it must be in the range [0, 3].
1121   if (Type > 3) {
1122     S.Diag(E->getBeginLoc(), diag::err_attribute_argument_out_of_range)
1123         << AL << 0 << 3 << E->getSourceRange();
1124     return;
1125   }
1126 
1127   // pass_object_size is only supported on constant pointer parameters; as a
1128   // kindness to users, we allow the parameter to be non-const for declarations.
1129   // At this point, we have no clue if `D` belongs to a function declaration or
1130   // definition, so we defer the constness check until later.
1131   if (!cast<ParmVarDecl>(D)->getType()->isPointerType()) {
1132     S.Diag(D->getBeginLoc(), diag::err_attribute_pointers_only) << AL << 1;
1133     return;
1134   }
1135 
1136   D->addAttr(::new (S.Context) PassObjectSizeAttr(
1137       AL.getRange(), S.Context, (int)Type, AL.getAttributeSpellingListIndex()));
1138 }
1139 
1140 static void handleConsumableAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1141   ConsumableAttr::ConsumedState DefaultState;
1142 
1143   if (AL.isArgIdent(0)) {
1144     IdentifierLoc *IL = AL.getArgAsIdent(0);
1145     if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1146                                                    DefaultState)) {
1147       S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL
1148                                                                << IL->Ident;
1149       return;
1150     }
1151   } else {
1152     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1153         << AL << AANT_ArgumentIdentifier;
1154     return;
1155   }
1156 
1157   D->addAttr(::new (S.Context)
1158              ConsumableAttr(AL.getRange(), S.Context, DefaultState,
1159                             AL.getAttributeSpellingListIndex()));
1160 }
1161 
1162 static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD,
1163                                     const ParsedAttr &AL) {
1164   QualType ThisType = MD->getThisType()->getPointeeType();
1165 
1166   if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) {
1167     if (!RD->hasAttr<ConsumableAttr>()) {
1168       S.Diag(AL.getLoc(), diag::warn_attr_on_unconsumable_class) <<
1169         RD->getNameAsString();
1170 
1171       return false;
1172     }
1173   }
1174 
1175   return true;
1176 }
1177 
1178 static void handleCallableWhenAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1179   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
1180     return;
1181 
1182   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
1183     return;
1184 
1185   SmallVector<CallableWhenAttr::ConsumedState, 3> States;
1186   for (unsigned ArgIndex = 0; ArgIndex < AL.getNumArgs(); ++ArgIndex) {
1187     CallableWhenAttr::ConsumedState CallableState;
1188 
1189     StringRef StateString;
1190     SourceLocation Loc;
1191     if (AL.isArgIdent(ArgIndex)) {
1192       IdentifierLoc *Ident = AL.getArgAsIdent(ArgIndex);
1193       StateString = Ident->Ident->getName();
1194       Loc = Ident->Loc;
1195     } else {
1196       if (!S.checkStringLiteralArgumentAttr(AL, ArgIndex, StateString, &Loc))
1197         return;
1198     }
1199 
1200     if (!CallableWhenAttr::ConvertStrToConsumedState(StateString,
1201                                                      CallableState)) {
1202       S.Diag(Loc, diag::warn_attribute_type_not_supported) << AL << StateString;
1203       return;
1204     }
1205 
1206     States.push_back(CallableState);
1207   }
1208 
1209   D->addAttr(::new (S.Context)
1210              CallableWhenAttr(AL.getRange(), S.Context, States.data(),
1211                States.size(), AL.getAttributeSpellingListIndex()));
1212 }
1213 
1214 static void handleParamTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1215   ParamTypestateAttr::ConsumedState ParamState;
1216 
1217   if (AL.isArgIdent(0)) {
1218     IdentifierLoc *Ident = AL.getArgAsIdent(0);
1219     StringRef StateString = Ident->Ident->getName();
1220 
1221     if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString,
1222                                                        ParamState)) {
1223       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported)
1224           << AL << StateString;
1225       return;
1226     }
1227   } else {
1228     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1229         << AL << AANT_ArgumentIdentifier;
1230     return;
1231   }
1232 
1233   // FIXME: This check is currently being done in the analysis.  It can be
1234   //        enabled here only after the parser propagates attributes at
1235   //        template specialization definition, not declaration.
1236   //QualType ReturnType = cast<ParmVarDecl>(D)->getType();
1237   //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1238   //
1239   //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1240   //    S.Diag(AL.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1241   //      ReturnType.getAsString();
1242   //    return;
1243   //}
1244 
1245   D->addAttr(::new (S.Context)
1246              ParamTypestateAttr(AL.getRange(), S.Context, ParamState,
1247                                 AL.getAttributeSpellingListIndex()));
1248 }
1249 
1250 static void handleReturnTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1251   ReturnTypestateAttr::ConsumedState ReturnState;
1252 
1253   if (AL.isArgIdent(0)) {
1254     IdentifierLoc *IL = AL.getArgAsIdent(0);
1255     if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1256                                                         ReturnState)) {
1257       S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL
1258                                                                << IL->Ident;
1259       return;
1260     }
1261   } else {
1262     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1263         << AL << AANT_ArgumentIdentifier;
1264     return;
1265   }
1266 
1267   // FIXME: This check is currently being done in the analysis.  It can be
1268   //        enabled here only after the parser propagates attributes at
1269   //        template specialization definition, not declaration.
1270   //QualType ReturnType;
1271   //
1272   //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) {
1273   //  ReturnType = Param->getType();
1274   //
1275   //} else if (const CXXConstructorDecl *Constructor =
1276   //             dyn_cast<CXXConstructorDecl>(D)) {
1277   //  ReturnType = Constructor->getThisType()->getPointeeType();
1278   //
1279   //} else {
1280   //
1281   //  ReturnType = cast<FunctionDecl>(D)->getCallResultType();
1282   //}
1283   //
1284   //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1285   //
1286   //if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1287   //    S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) <<
1288   //      ReturnType.getAsString();
1289   //    return;
1290   //}
1291 
1292   D->addAttr(::new (S.Context)
1293                  ReturnTypestateAttr(AL.getRange(), S.Context, ReturnState,
1294                                      AL.getAttributeSpellingListIndex()));
1295 }
1296 
1297 static void handleSetTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1298   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
1299     return;
1300 
1301   SetTypestateAttr::ConsumedState NewState;
1302   if (AL.isArgIdent(0)) {
1303     IdentifierLoc *Ident = AL.getArgAsIdent(0);
1304     StringRef Param = Ident->Ident->getName();
1305     if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) {
1306       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) << AL
1307                                                                   << Param;
1308       return;
1309     }
1310   } else {
1311     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1312         << AL << AANT_ArgumentIdentifier;
1313     return;
1314   }
1315 
1316   D->addAttr(::new (S.Context)
1317              SetTypestateAttr(AL.getRange(), S.Context, NewState,
1318                               AL.getAttributeSpellingListIndex()));
1319 }
1320 
1321 static void handleTestTypestateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1322   if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL))
1323     return;
1324 
1325   TestTypestateAttr::ConsumedState TestState;
1326   if (AL.isArgIdent(0)) {
1327     IdentifierLoc *Ident = AL.getArgAsIdent(0);
1328     StringRef Param = Ident->Ident->getName();
1329     if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) {
1330       S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) << AL
1331                                                                   << Param;
1332       return;
1333     }
1334   } else {
1335     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1336         << AL << AANT_ArgumentIdentifier;
1337     return;
1338   }
1339 
1340   D->addAttr(::new (S.Context)
1341              TestTypestateAttr(AL.getRange(), S.Context, TestState,
1342                                 AL.getAttributeSpellingListIndex()));
1343 }
1344 
1345 static void handleExtVectorTypeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1346   // Remember this typedef decl, we will need it later for diagnostics.
1347   S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D));
1348 }
1349 
1350 static void handlePackedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1351   if (auto *TD = dyn_cast<TagDecl>(D))
1352     TD->addAttr(::new (S.Context) PackedAttr(AL.getRange(), S.Context,
1353                                         AL.getAttributeSpellingListIndex()));
1354   else if (auto *FD = dyn_cast<FieldDecl>(D)) {
1355     bool BitfieldByteAligned = (!FD->getType()->isDependentType() &&
1356                                 !FD->getType()->isIncompleteType() &&
1357                                 FD->isBitField() &&
1358                                 S.Context.getTypeAlign(FD->getType()) <= 8);
1359 
1360     if (S.getASTContext().getTargetInfo().getTriple().isPS4()) {
1361       if (BitfieldByteAligned)
1362         // The PS4 target needs to maintain ABI backwards compatibility.
1363         S.Diag(AL.getLoc(), diag::warn_attribute_ignored_for_field_of_type)
1364             << AL << FD->getType();
1365       else
1366         FD->addAttr(::new (S.Context) PackedAttr(
1367                     AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
1368     } else {
1369       // Report warning about changed offset in the newer compiler versions.
1370       if (BitfieldByteAligned)
1371         S.Diag(AL.getLoc(), diag::warn_attribute_packed_for_bitfield);
1372 
1373       FD->addAttr(::new (S.Context) PackedAttr(
1374                   AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
1375     }
1376 
1377   } else
1378     S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL;
1379 }
1380 
1381 static bool checkIBOutletCommon(Sema &S, Decl *D, const ParsedAttr &AL) {
1382   // The IBOutlet/IBOutletCollection attributes only apply to instance
1383   // variables or properties of Objective-C classes.  The outlet must also
1384   // have an object reference type.
1385   if (const auto *VD = dyn_cast<ObjCIvarDecl>(D)) {
1386     if (!VD->getType()->getAs<ObjCObjectPointerType>()) {
1387       S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type)
1388           << AL << VD->getType() << 0;
1389       return false;
1390     }
1391   }
1392   else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
1393     if (!PD->getType()->getAs<ObjCObjectPointerType>()) {
1394       S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type)
1395           << AL << PD->getType() << 1;
1396       return false;
1397     }
1398   }
1399   else {
1400     S.Diag(AL.getLoc(), diag::warn_attribute_iboutlet) << AL;
1401     return false;
1402   }
1403 
1404   return true;
1405 }
1406 
1407 static void handleIBOutlet(Sema &S, Decl *D, const ParsedAttr &AL) {
1408   if (!checkIBOutletCommon(S, D, AL))
1409     return;
1410 
1411   D->addAttr(::new (S.Context)
1412              IBOutletAttr(AL.getRange(), S.Context,
1413                           AL.getAttributeSpellingListIndex()));
1414 }
1415 
1416 static void handleIBOutletCollection(Sema &S, Decl *D, const ParsedAttr &AL) {
1417 
1418   // The iboutletcollection attribute can have zero or one arguments.
1419   if (AL.getNumArgs() > 1) {
1420     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
1421     return;
1422   }
1423 
1424   if (!checkIBOutletCommon(S, D, AL))
1425     return;
1426 
1427   ParsedType PT;
1428 
1429   if (AL.hasParsedType())
1430     PT = AL.getTypeArg();
1431   else {
1432     PT = S.getTypeName(S.Context.Idents.get("NSObject"), AL.getLoc(),
1433                        S.getScopeForContext(D->getDeclContext()->getParent()));
1434     if (!PT) {
1435       S.Diag(AL.getLoc(), diag::err_iboutletcollection_type) << "NSObject";
1436       return;
1437     }
1438   }
1439 
1440   TypeSourceInfo *QTLoc = nullptr;
1441   QualType QT = S.GetTypeFromParser(PT, &QTLoc);
1442   if (!QTLoc)
1443     QTLoc = S.Context.getTrivialTypeSourceInfo(QT, AL.getLoc());
1444 
1445   // Diagnose use of non-object type in iboutletcollection attribute.
1446   // FIXME. Gnu attribute extension ignores use of builtin types in
1447   // attributes. So, __attribute__((iboutletcollection(char))) will be
1448   // treated as __attribute__((iboutletcollection())).
1449   if (!QT->isObjCIdType() && !QT->isObjCObjectType()) {
1450     S.Diag(AL.getLoc(),
1451            QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype
1452                                : diag::err_iboutletcollection_type) << QT;
1453     return;
1454   }
1455 
1456   D->addAttr(::new (S.Context)
1457              IBOutletCollectionAttr(AL.getRange(), S.Context, QTLoc,
1458                                     AL.getAttributeSpellingListIndex()));
1459 }
1460 
1461 bool Sema::isValidPointerAttrType(QualType T, bool RefOkay) {
1462   if (RefOkay) {
1463     if (T->isReferenceType())
1464       return true;
1465   } else {
1466     T = T.getNonReferenceType();
1467   }
1468 
1469   // The nonnull attribute, and other similar attributes, can be applied to a
1470   // transparent union that contains a pointer type.
1471   if (const RecordType *UT = T->getAsUnionType()) {
1472     if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) {
1473       RecordDecl *UD = UT->getDecl();
1474       for (const auto *I : UD->fields()) {
1475         QualType QT = I->getType();
1476         if (QT->isAnyPointerType() || QT->isBlockPointerType())
1477           return true;
1478       }
1479     }
1480   }
1481 
1482   return T->isAnyPointerType() || T->isBlockPointerType();
1483 }
1484 
1485 static bool attrNonNullArgCheck(Sema &S, QualType T, const ParsedAttr &AL,
1486                                 SourceRange AttrParmRange,
1487                                 SourceRange TypeRange,
1488                                 bool isReturnValue = false) {
1489   if (!S.isValidPointerAttrType(T)) {
1490     if (isReturnValue)
1491       S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only)
1492           << AL << AttrParmRange << TypeRange;
1493     else
1494       S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only)
1495           << AL << AttrParmRange << TypeRange << 0;
1496     return false;
1497   }
1498   return true;
1499 }
1500 
1501 static void handleNonNullAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1502   SmallVector<ParamIdx, 8> NonNullArgs;
1503   for (unsigned I = 0; I < AL.getNumArgs(); ++I) {
1504     Expr *Ex = AL.getArgAsExpr(I);
1505     ParamIdx Idx;
1506     if (!checkFunctionOrMethodParameterIndex(S, D, AL, I + 1, Ex, Idx))
1507       return;
1508 
1509     // Is the function argument a pointer type?
1510     if (Idx.getASTIndex() < getFunctionOrMethodNumParams(D) &&
1511         !attrNonNullArgCheck(
1512             S, getFunctionOrMethodParamType(D, Idx.getASTIndex()), AL,
1513             Ex->getSourceRange(),
1514             getFunctionOrMethodParamRange(D, Idx.getASTIndex())))
1515       continue;
1516 
1517     NonNullArgs.push_back(Idx);
1518   }
1519 
1520   // If no arguments were specified to __attribute__((nonnull)) then all pointer
1521   // arguments have a nonnull attribute; warn if there aren't any. Skip this
1522   // check if the attribute came from a macro expansion or a template
1523   // instantiation.
1524   if (NonNullArgs.empty() && AL.getLoc().isFileID() &&
1525       !S.inTemplateInstantiation()) {
1526     bool AnyPointers = isFunctionOrMethodVariadic(D);
1527     for (unsigned I = 0, E = getFunctionOrMethodNumParams(D);
1528          I != E && !AnyPointers; ++I) {
1529       QualType T = getFunctionOrMethodParamType(D, I);
1530       if (T->isDependentType() || S.isValidPointerAttrType(T))
1531         AnyPointers = true;
1532     }
1533 
1534     if (!AnyPointers)
1535       S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_no_pointers);
1536   }
1537 
1538   ParamIdx *Start = NonNullArgs.data();
1539   unsigned Size = NonNullArgs.size();
1540   llvm::array_pod_sort(Start, Start + Size);
1541   D->addAttr(::new (S.Context)
1542                  NonNullAttr(AL.getRange(), S.Context, Start, Size,
1543                              AL.getAttributeSpellingListIndex()));
1544 }
1545 
1546 static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D,
1547                                        const ParsedAttr &AL) {
1548   if (AL.getNumArgs() > 0) {
1549     if (D->getFunctionType()) {
1550       handleNonNullAttr(S, D, AL);
1551     } else {
1552       S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_parm_no_args)
1553         << D->getSourceRange();
1554     }
1555     return;
1556   }
1557 
1558   // Is the argument a pointer type?
1559   if (!attrNonNullArgCheck(S, D->getType(), AL, SourceRange(),
1560                            D->getSourceRange()))
1561     return;
1562 
1563   D->addAttr(::new (S.Context)
1564                  NonNullAttr(AL.getRange(), S.Context, nullptr, 0,
1565                              AL.getAttributeSpellingListIndex()));
1566 }
1567 
1568 static void handleReturnsNonNullAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1569   QualType ResultType = getFunctionOrMethodResultType(D);
1570   SourceRange SR = getFunctionOrMethodResultSourceRange(D);
1571   if (!attrNonNullArgCheck(S, ResultType, AL, SourceRange(), SR,
1572                            /* isReturnValue */ true))
1573     return;
1574 
1575   D->addAttr(::new (S.Context)
1576             ReturnsNonNullAttr(AL.getRange(), S.Context,
1577                                AL.getAttributeSpellingListIndex()));
1578 }
1579 
1580 static void handleNoEscapeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1581   if (D->isInvalidDecl())
1582     return;
1583 
1584   // noescape only applies to pointer types.
1585   QualType T = cast<ParmVarDecl>(D)->getType();
1586   if (!S.isValidPointerAttrType(T, /* RefOkay */ true)) {
1587     S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only)
1588         << AL << AL.getRange() << 0;
1589     return;
1590   }
1591 
1592   D->addAttr(::new (S.Context) NoEscapeAttr(
1593       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
1594 }
1595 
1596 static void handleAssumeAlignedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1597   Expr *E = AL.getArgAsExpr(0),
1598        *OE = AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr;
1599   S.AddAssumeAlignedAttr(AL.getRange(), D, E, OE,
1600                          AL.getAttributeSpellingListIndex());
1601 }
1602 
1603 static void handleAllocAlignAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1604   S.AddAllocAlignAttr(AL.getRange(), D, AL.getArgAsExpr(0),
1605                       AL.getAttributeSpellingListIndex());
1606 }
1607 
1608 void Sema::AddAssumeAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
1609                                 Expr *OE, unsigned SpellingListIndex) {
1610   QualType ResultType = getFunctionOrMethodResultType(D);
1611   SourceRange SR = getFunctionOrMethodResultSourceRange(D);
1612 
1613   AssumeAlignedAttr TmpAttr(AttrRange, Context, E, OE, SpellingListIndex);
1614   SourceLocation AttrLoc = AttrRange.getBegin();
1615 
1616   if (!isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1617     Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1618       << &TmpAttr << AttrRange << SR;
1619     return;
1620   }
1621 
1622   if (!E->isValueDependent()) {
1623     llvm::APSInt I(64);
1624     if (!E->isIntegerConstantExpr(I, Context)) {
1625       if (OE)
1626         Diag(AttrLoc, diag::err_attribute_argument_n_type)
1627           << &TmpAttr << 1 << AANT_ArgumentIntegerConstant
1628           << E->getSourceRange();
1629       else
1630         Diag(AttrLoc, diag::err_attribute_argument_type)
1631           << &TmpAttr << AANT_ArgumentIntegerConstant
1632           << E->getSourceRange();
1633       return;
1634     }
1635 
1636     if (!I.isPowerOf2()) {
1637       Diag(AttrLoc, diag::err_alignment_not_power_of_two)
1638         << E->getSourceRange();
1639       return;
1640     }
1641   }
1642 
1643   if (OE) {
1644     if (!OE->isValueDependent()) {
1645       llvm::APSInt I(64);
1646       if (!OE->isIntegerConstantExpr(I, Context)) {
1647         Diag(AttrLoc, diag::err_attribute_argument_n_type)
1648           << &TmpAttr << 2 << AANT_ArgumentIntegerConstant
1649           << OE->getSourceRange();
1650         return;
1651       }
1652     }
1653   }
1654 
1655   D->addAttr(::new (Context)
1656             AssumeAlignedAttr(AttrRange, Context, E, OE, SpellingListIndex));
1657 }
1658 
1659 void Sema::AddAllocAlignAttr(SourceRange AttrRange, Decl *D, Expr *ParamExpr,
1660                              unsigned SpellingListIndex) {
1661   QualType ResultType = getFunctionOrMethodResultType(D);
1662 
1663   AllocAlignAttr TmpAttr(AttrRange, Context, ParamIdx(), SpellingListIndex);
1664   SourceLocation AttrLoc = AttrRange.getBegin();
1665 
1666   if (!ResultType->isDependentType() &&
1667       !isValidPointerAttrType(ResultType, /* RefOkay */ true)) {
1668     Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only)
1669         << &TmpAttr << AttrRange << getFunctionOrMethodResultSourceRange(D);
1670     return;
1671   }
1672 
1673   ParamIdx Idx;
1674   const auto *FuncDecl = cast<FunctionDecl>(D);
1675   if (!checkFunctionOrMethodParameterIndex(*this, FuncDecl, TmpAttr,
1676                                            /*AttrArgNum=*/1, ParamExpr, Idx))
1677     return;
1678 
1679   QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex());
1680   if (!Ty->isDependentType() && !Ty->isIntegralType(Context)) {
1681     Diag(ParamExpr->getBeginLoc(), diag::err_attribute_integers_only)
1682         << &TmpAttr
1683         << FuncDecl->getParamDecl(Idx.getASTIndex())->getSourceRange();
1684     return;
1685   }
1686 
1687   D->addAttr(::new (Context)
1688                  AllocAlignAttr(AttrRange, Context, Idx, SpellingListIndex));
1689 }
1690 
1691 /// Normalize the attribute, __foo__ becomes foo.
1692 /// Returns true if normalization was applied.
1693 static bool normalizeName(StringRef &AttrName) {
1694   if (AttrName.size() > 4 && AttrName.startswith("__") &&
1695       AttrName.endswith("__")) {
1696     AttrName = AttrName.drop_front(2).drop_back(2);
1697     return true;
1698   }
1699   return false;
1700 }
1701 
1702 static void handleOwnershipAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1703   // This attribute must be applied to a function declaration. The first
1704   // argument to the attribute must be an identifier, the name of the resource,
1705   // for example: malloc. The following arguments must be argument indexes, the
1706   // arguments must be of integer type for Returns, otherwise of pointer type.
1707   // The difference between Holds and Takes is that a pointer may still be used
1708   // after being held. free() should be __attribute((ownership_takes)), whereas
1709   // a list append function may well be __attribute((ownership_holds)).
1710 
1711   if (!AL.isArgIdent(0)) {
1712     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
1713         << AL << 1 << AANT_ArgumentIdentifier;
1714     return;
1715   }
1716 
1717   // Figure out our Kind.
1718   OwnershipAttr::OwnershipKind K =
1719       OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0,
1720                     AL.getAttributeSpellingListIndex()).getOwnKind();
1721 
1722   // Check arguments.
1723   switch (K) {
1724   case OwnershipAttr::Takes:
1725   case OwnershipAttr::Holds:
1726     if (AL.getNumArgs() < 2) {
1727       S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments) << AL << 2;
1728       return;
1729     }
1730     break;
1731   case OwnershipAttr::Returns:
1732     if (AL.getNumArgs() > 2) {
1733       S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
1734       return;
1735     }
1736     break;
1737   }
1738 
1739   IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident;
1740 
1741   StringRef ModuleName = Module->getName();
1742   if (normalizeName(ModuleName)) {
1743     Module = &S.PP.getIdentifierTable().get(ModuleName);
1744   }
1745 
1746   SmallVector<ParamIdx, 8> OwnershipArgs;
1747   for (unsigned i = 1; i < AL.getNumArgs(); ++i) {
1748     Expr *Ex = AL.getArgAsExpr(i);
1749     ParamIdx Idx;
1750     if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx))
1751       return;
1752 
1753     // Is the function argument a pointer type?
1754     QualType T = getFunctionOrMethodParamType(D, Idx.getASTIndex());
1755     int Err = -1;  // No error
1756     switch (K) {
1757       case OwnershipAttr::Takes:
1758       case OwnershipAttr::Holds:
1759         if (!T->isAnyPointerType() && !T->isBlockPointerType())
1760           Err = 0;
1761         break;
1762       case OwnershipAttr::Returns:
1763         if (!T->isIntegerType())
1764           Err = 1;
1765         break;
1766     }
1767     if (-1 != Err) {
1768       S.Diag(AL.getLoc(), diag::err_ownership_type) << AL << Err
1769                                                     << Ex->getSourceRange();
1770       return;
1771     }
1772 
1773     // Check we don't have a conflict with another ownership attribute.
1774     for (const auto *I : D->specific_attrs<OwnershipAttr>()) {
1775       // Cannot have two ownership attributes of different kinds for the same
1776       // index.
1777       if (I->getOwnKind() != K && I->args_end() !=
1778           std::find(I->args_begin(), I->args_end(), Idx)) {
1779         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) << AL << I;
1780         return;
1781       } else if (K == OwnershipAttr::Returns &&
1782                  I->getOwnKind() == OwnershipAttr::Returns) {
1783         // A returns attribute conflicts with any other returns attribute using
1784         // a different index.
1785         if (std::find(I->args_begin(), I->args_end(), Idx) == I->args_end()) {
1786           S.Diag(I->getLocation(), diag::err_ownership_returns_index_mismatch)
1787               << I->args_begin()->getSourceIndex();
1788           if (I->args_size())
1789             S.Diag(AL.getLoc(), diag::note_ownership_returns_index_mismatch)
1790                 << Idx.getSourceIndex() << Ex->getSourceRange();
1791           return;
1792         }
1793       }
1794     }
1795     OwnershipArgs.push_back(Idx);
1796   }
1797 
1798   ParamIdx *Start = OwnershipArgs.data();
1799   unsigned Size = OwnershipArgs.size();
1800   llvm::array_pod_sort(Start, Start + Size);
1801   D->addAttr(::new (S.Context)
1802                  OwnershipAttr(AL.getLoc(), S.Context, Module, Start, Size,
1803                                AL.getAttributeSpellingListIndex()));
1804 }
1805 
1806 static void handleWeakRefAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1807   // Check the attribute arguments.
1808   if (AL.getNumArgs() > 1) {
1809     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
1810     return;
1811   }
1812 
1813   // gcc rejects
1814   // class c {
1815   //   static int a __attribute__((weakref ("v2")));
1816   //   static int b() __attribute__((weakref ("f3")));
1817   // };
1818   // and ignores the attributes of
1819   // void f(void) {
1820   //   static int a __attribute__((weakref ("v2")));
1821   // }
1822   // we reject them
1823   const DeclContext *Ctx = D->getDeclContext()->getRedeclContext();
1824   if (!Ctx->isFileContext()) {
1825     S.Diag(AL.getLoc(), diag::err_attribute_weakref_not_global_context)
1826         << cast<NamedDecl>(D);
1827     return;
1828   }
1829 
1830   // The GCC manual says
1831   //
1832   // At present, a declaration to which `weakref' is attached can only
1833   // be `static'.
1834   //
1835   // It also says
1836   //
1837   // Without a TARGET,
1838   // given as an argument to `weakref' or to `alias', `weakref' is
1839   // equivalent to `weak'.
1840   //
1841   // gcc 4.4.1 will accept
1842   // int a7 __attribute__((weakref));
1843   // as
1844   // int a7 __attribute__((weak));
1845   // This looks like a bug in gcc. We reject that for now. We should revisit
1846   // it if this behaviour is actually used.
1847 
1848   // GCC rejects
1849   // static ((alias ("y"), weakref)).
1850   // Should we? How to check that weakref is before or after alias?
1851 
1852   // FIXME: it would be good for us to keep the WeakRefAttr as-written instead
1853   // of transforming it into an AliasAttr.  The WeakRefAttr never uses the
1854   // StringRef parameter it was given anyway.
1855   StringRef Str;
1856   if (AL.getNumArgs() && S.checkStringLiteralArgumentAttr(AL, 0, Str))
1857     // GCC will accept anything as the argument of weakref. Should we
1858     // check for an existing decl?
1859     D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str,
1860                                         AL.getAttributeSpellingListIndex()));
1861 
1862   D->addAttr(::new (S.Context)
1863              WeakRefAttr(AL.getRange(), S.Context,
1864                          AL.getAttributeSpellingListIndex()));
1865 }
1866 
1867 static void handleIFuncAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1868   StringRef Str;
1869   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
1870     return;
1871 
1872   // Aliases should be on declarations, not definitions.
1873   const auto *FD = cast<FunctionDecl>(D);
1874   if (FD->isThisDeclarationADefinition()) {
1875     S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 1;
1876     return;
1877   }
1878 
1879   D->addAttr(::new (S.Context) IFuncAttr(AL.getRange(), S.Context, Str,
1880                                          AL.getAttributeSpellingListIndex()));
1881 }
1882 
1883 static void handleAliasAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1884   StringRef Str;
1885   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
1886     return;
1887 
1888   if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
1889     S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_darwin);
1890     return;
1891   }
1892   if (S.Context.getTargetInfo().getTriple().isNVPTX()) {
1893     S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_nvptx);
1894   }
1895 
1896   // Aliases should be on declarations, not definitions.
1897   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
1898     if (FD->isThisDeclarationADefinition()) {
1899       S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 0;
1900       return;
1901     }
1902   } else {
1903     const auto *VD = cast<VarDecl>(D);
1904     if (VD->isThisDeclarationADefinition() && VD->isExternallyVisible()) {
1905       S.Diag(AL.getLoc(), diag::err_alias_is_definition) << VD << 0;
1906       return;
1907     }
1908   }
1909 
1910   // Mark target used to prevent unneeded-internal-declaration warnings.
1911   if (!S.LangOpts.CPlusPlus) {
1912     // FIXME: demangle Str for C++, as the attribute refers to the mangled
1913     // linkage name, not the pre-mangled identifier.
1914     const DeclarationNameInfo target(&S.Context.Idents.get(Str), AL.getLoc());
1915     LookupResult LR(S, target, Sema::LookupOrdinaryName);
1916     if (S.LookupQualifiedName(LR, S.getCurLexicalContext()))
1917       for (NamedDecl *ND : LR)
1918         ND->markUsed(S.Context);
1919   }
1920 
1921   D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str,
1922                                          AL.getAttributeSpellingListIndex()));
1923 }
1924 
1925 static void handleTLSModelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1926   StringRef Model;
1927   SourceLocation LiteralLoc;
1928   // Check that it is a string.
1929   if (!S.checkStringLiteralArgumentAttr(AL, 0, Model, &LiteralLoc))
1930     return;
1931 
1932   // Check that the value.
1933   if (Model != "global-dynamic" && Model != "local-dynamic"
1934       && Model != "initial-exec" && Model != "local-exec") {
1935     S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg);
1936     return;
1937   }
1938 
1939   D->addAttr(::new (S.Context)
1940              TLSModelAttr(AL.getRange(), S.Context, Model,
1941                           AL.getAttributeSpellingListIndex()));
1942 }
1943 
1944 static void handleRestrictAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1945   QualType ResultType = getFunctionOrMethodResultType(D);
1946   if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) {
1947     D->addAttr(::new (S.Context) RestrictAttr(
1948         AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
1949     return;
1950   }
1951 
1952   S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only)
1953       << AL << getFunctionOrMethodResultSourceRange(D);
1954 }
1955 
1956 static void handleCPUSpecificAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
1957   FunctionDecl *FD = cast<FunctionDecl>(D);
1958 
1959   if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
1960     if (MD->getParent()->isLambda()) {
1961       S.Diag(AL.getLoc(), diag::err_attribute_dll_lambda) << AL;
1962       return;
1963     }
1964   }
1965 
1966   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
1967     return;
1968 
1969   SmallVector<IdentifierInfo *, 8> CPUs;
1970   for (unsigned ArgNo = 0; ArgNo < getNumAttributeArgs(AL); ++ArgNo) {
1971     if (!AL.isArgIdent(ArgNo)) {
1972       S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
1973           << AL << AANT_ArgumentIdentifier;
1974       return;
1975     }
1976 
1977     IdentifierLoc *CPUArg = AL.getArgAsIdent(ArgNo);
1978     StringRef CPUName = CPUArg->Ident->getName().trim();
1979 
1980     if (!S.Context.getTargetInfo().validateCPUSpecificCPUDispatch(CPUName)) {
1981       S.Diag(CPUArg->Loc, diag::err_invalid_cpu_specific_dispatch_value)
1982           << CPUName << (AL.getKind() == ParsedAttr::AT_CPUDispatch);
1983       return;
1984     }
1985 
1986     const TargetInfo &Target = S.Context.getTargetInfo();
1987     if (llvm::any_of(CPUs, [CPUName, &Target](const IdentifierInfo *Cur) {
1988           return Target.CPUSpecificManglingCharacter(CPUName) ==
1989                  Target.CPUSpecificManglingCharacter(Cur->getName());
1990         })) {
1991       S.Diag(AL.getLoc(), diag::warn_multiversion_duplicate_entries);
1992       return;
1993     }
1994     CPUs.push_back(CPUArg->Ident);
1995   }
1996 
1997   FD->setIsMultiVersion(true);
1998   if (AL.getKind() == ParsedAttr::AT_CPUSpecific)
1999     D->addAttr(::new (S.Context) CPUSpecificAttr(
2000         AL.getRange(), S.Context, CPUs.data(), CPUs.size(),
2001         AL.getAttributeSpellingListIndex()));
2002   else
2003     D->addAttr(::new (S.Context) CPUDispatchAttr(
2004         AL.getRange(), S.Context, CPUs.data(), CPUs.size(),
2005         AL.getAttributeSpellingListIndex()));
2006 }
2007 
2008 static void handleCommonAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2009   if (S.LangOpts.CPlusPlus) {
2010     S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
2011         << AL << AttributeLangSupport::Cpp;
2012     return;
2013   }
2014 
2015   if (CommonAttr *CA = S.mergeCommonAttr(D, AL))
2016     D->addAttr(CA);
2017 }
2018 
2019 static void handleNakedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2020   if (checkAttrMutualExclusion<DisableTailCallsAttr>(S, D, AL))
2021     return;
2022 
2023   if (AL.isDeclspecAttribute()) {
2024     const auto &Triple = S.getASTContext().getTargetInfo().getTriple();
2025     const auto &Arch = Triple.getArch();
2026     if (Arch != llvm::Triple::x86 &&
2027         (Arch != llvm::Triple::arm && Arch != llvm::Triple::thumb)) {
2028       S.Diag(AL.getLoc(), diag::err_attribute_not_supported_on_arch)
2029           << AL << Triple.getArchName();
2030       return;
2031     }
2032   }
2033 
2034   D->addAttr(::new (S.Context) NakedAttr(AL.getRange(), S.Context,
2035                                          AL.getAttributeSpellingListIndex()));
2036 }
2037 
2038 static void handleNoReturnAttr(Sema &S, Decl *D, const ParsedAttr &Attrs) {
2039   if (hasDeclarator(D)) return;
2040 
2041   if (!isa<ObjCMethodDecl>(D)) {
2042     S.Diag(Attrs.getLoc(), diag::warn_attribute_wrong_decl_type)
2043         << Attrs << ExpectedFunctionOrMethod;
2044     return;
2045   }
2046 
2047   D->addAttr(::new (S.Context) NoReturnAttr(
2048       Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
2049 }
2050 
2051 static void handleNoCfCheckAttr(Sema &S, Decl *D, const ParsedAttr &Attrs) {
2052   if (!S.getLangOpts().CFProtectionBranch)
2053     S.Diag(Attrs.getLoc(), diag::warn_nocf_check_attribute_ignored);
2054   else
2055     handleSimpleAttribute<AnyX86NoCfCheckAttr>(S, D, Attrs);
2056 }
2057 
2058 bool Sema::CheckAttrNoArgs(const ParsedAttr &Attrs) {
2059   if (!checkAttributeNumArgs(*this, Attrs, 0)) {
2060     Attrs.setInvalid();
2061     return true;
2062   }
2063 
2064   return false;
2065 }
2066 
2067 bool Sema::CheckAttrTarget(const ParsedAttr &AL) {
2068   // Check whether the attribute is valid on the current target.
2069   if (!AL.existsInTarget(Context.getTargetInfo())) {
2070     Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored) << AL;
2071     AL.setInvalid();
2072     return true;
2073   }
2074 
2075   return false;
2076 }
2077 
2078 static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2079 
2080   // The checking path for 'noreturn' and 'analyzer_noreturn' are different
2081   // because 'analyzer_noreturn' does not impact the type.
2082   if (!isFunctionOrMethodOrBlock(D)) {
2083     ValueDecl *VD = dyn_cast<ValueDecl>(D);
2084     if (!VD || (!VD->getType()->isBlockPointerType() &&
2085                 !VD->getType()->isFunctionPointerType())) {
2086       S.Diag(AL.getLoc(), AL.isCXX11Attribute()
2087                               ? diag::err_attribute_wrong_decl_type
2088                               : diag::warn_attribute_wrong_decl_type)
2089           << AL << ExpectedFunctionMethodOrBlock;
2090       return;
2091     }
2092   }
2093 
2094   D->addAttr(::new (S.Context)
2095              AnalyzerNoReturnAttr(AL.getRange(), S.Context,
2096                                   AL.getAttributeSpellingListIndex()));
2097 }
2098 
2099 // PS3 PPU-specific.
2100 static void handleVecReturnAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2101   /*
2102     Returning a Vector Class in Registers
2103 
2104     According to the PPU ABI specifications, a class with a single member of
2105     vector type is returned in memory when used as the return value of a
2106     function.
2107     This results in inefficient code when implementing vector classes. To return
2108     the value in a single vector register, add the vecreturn attribute to the
2109     class definition. This attribute is also applicable to struct types.
2110 
2111     Example:
2112 
2113     struct Vector
2114     {
2115       __vector float xyzw;
2116     } __attribute__((vecreturn));
2117 
2118     Vector Add(Vector lhs, Vector rhs)
2119     {
2120       Vector result;
2121       result.xyzw = vec_add(lhs.xyzw, rhs.xyzw);
2122       return result; // This will be returned in a register
2123     }
2124   */
2125   if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) {
2126     S.Diag(AL.getLoc(), diag::err_repeat_attribute) << A;
2127     return;
2128   }
2129 
2130   const auto *R = cast<RecordDecl>(D);
2131   int count = 0;
2132 
2133   if (!isa<CXXRecordDecl>(R)) {
2134     S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
2135     return;
2136   }
2137 
2138   if (!cast<CXXRecordDecl>(R)->isPOD()) {
2139     S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_pod_record);
2140     return;
2141   }
2142 
2143   for (const auto *I : R->fields()) {
2144     if ((count == 1) || !I->getType()->isVectorType()) {
2145       S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member);
2146       return;
2147     }
2148     count++;
2149   }
2150 
2151   D->addAttr(::new (S.Context) VecReturnAttr(
2152       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
2153 }
2154 
2155 static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D,
2156                                  const ParsedAttr &AL) {
2157   if (isa<ParmVarDecl>(D)) {
2158     // [[carries_dependency]] can only be applied to a parameter if it is a
2159     // parameter of a function declaration or lambda.
2160     if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
2161       S.Diag(AL.getLoc(),
2162              diag::err_carries_dependency_param_not_function_decl);
2163       return;
2164     }
2165   }
2166 
2167   D->addAttr(::new (S.Context) CarriesDependencyAttr(
2168                                    AL.getRange(), S.Context,
2169                                    AL.getAttributeSpellingListIndex()));
2170 }
2171 
2172 static void handleUnusedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2173   bool IsCXX17Attr = AL.isCXX11Attribute() && !AL.getScopeName();
2174 
2175   // If this is spelled as the standard C++17 attribute, but not in C++17, warn
2176   // about using it as an extension.
2177   if (!S.getLangOpts().CPlusPlus17 && IsCXX17Attr)
2178     S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL;
2179 
2180   D->addAttr(::new (S.Context) UnusedAttr(
2181       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
2182 }
2183 
2184 static void handleConstructorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2185   uint32_t priority = ConstructorAttr::DefaultPriority;
2186   if (AL.getNumArgs() &&
2187       !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority))
2188     return;
2189 
2190   D->addAttr(::new (S.Context)
2191              ConstructorAttr(AL.getRange(), S.Context, priority,
2192                              AL.getAttributeSpellingListIndex()));
2193 }
2194 
2195 static void handleDestructorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2196   uint32_t priority = DestructorAttr::DefaultPriority;
2197   if (AL.getNumArgs() &&
2198       !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority))
2199     return;
2200 
2201   D->addAttr(::new (S.Context)
2202              DestructorAttr(AL.getRange(), S.Context, priority,
2203                             AL.getAttributeSpellingListIndex()));
2204 }
2205 
2206 template <typename AttrTy>
2207 static void handleAttrWithMessage(Sema &S, Decl *D, const ParsedAttr &AL) {
2208   // Handle the case where the attribute has a text message.
2209   StringRef Str;
2210   if (AL.getNumArgs() == 1 && !S.checkStringLiteralArgumentAttr(AL, 0, Str))
2211     return;
2212 
2213   D->addAttr(::new (S.Context) AttrTy(AL.getRange(), S.Context, Str,
2214                                       AL.getAttributeSpellingListIndex()));
2215 }
2216 
2217 static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D,
2218                                           const ParsedAttr &AL) {
2219   if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) {
2220     S.Diag(AL.getLoc(), diag::err_objc_attr_protocol_requires_definition)
2221         << AL << AL.getRange();
2222     return;
2223   }
2224 
2225   D->addAttr(::new (S.Context)
2226           ObjCExplicitProtocolImplAttr(AL.getRange(), S.Context,
2227                                        AL.getAttributeSpellingListIndex()));
2228 }
2229 
2230 static bool checkAvailabilityAttr(Sema &S, SourceRange Range,
2231                                   IdentifierInfo *Platform,
2232                                   VersionTuple Introduced,
2233                                   VersionTuple Deprecated,
2234                                   VersionTuple Obsoleted) {
2235   StringRef PlatformName
2236     = AvailabilityAttr::getPrettyPlatformName(Platform->getName());
2237   if (PlatformName.empty())
2238     PlatformName = Platform->getName();
2239 
2240   // Ensure that Introduced <= Deprecated <= Obsoleted (although not all
2241   // of these steps are needed).
2242   if (!Introduced.empty() && !Deprecated.empty() &&
2243       !(Introduced <= Deprecated)) {
2244     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2245       << 1 << PlatformName << Deprecated.getAsString()
2246       << 0 << Introduced.getAsString();
2247     return true;
2248   }
2249 
2250   if (!Introduced.empty() && !Obsoleted.empty() &&
2251       !(Introduced <= Obsoleted)) {
2252     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2253       << 2 << PlatformName << Obsoleted.getAsString()
2254       << 0 << Introduced.getAsString();
2255     return true;
2256   }
2257 
2258   if (!Deprecated.empty() && !Obsoleted.empty() &&
2259       !(Deprecated <= Obsoleted)) {
2260     S.Diag(Range.getBegin(), diag::warn_availability_version_ordering)
2261       << 2 << PlatformName << Obsoleted.getAsString()
2262       << 1 << Deprecated.getAsString();
2263     return true;
2264   }
2265 
2266   return false;
2267 }
2268 
2269 /// Check whether the two versions match.
2270 ///
2271 /// If either version tuple is empty, then they are assumed to match. If
2272 /// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y.
2273 static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y,
2274                           bool BeforeIsOkay) {
2275   if (X.empty() || Y.empty())
2276     return true;
2277 
2278   if (X == Y)
2279     return true;
2280 
2281   if (BeforeIsOkay && X < Y)
2282     return true;
2283 
2284   return false;
2285 }
2286 
2287 AvailabilityAttr *Sema::mergeAvailabilityAttr(
2288     NamedDecl *D, SourceRange Range, IdentifierInfo *Platform, bool Implicit,
2289     VersionTuple Introduced, VersionTuple Deprecated, VersionTuple Obsoleted,
2290     bool IsUnavailable, StringRef Message, bool IsStrict, StringRef Replacement,
2291     AvailabilityMergeKind AMK, int Priority, unsigned AttrSpellingListIndex) {
2292   VersionTuple MergedIntroduced = Introduced;
2293   VersionTuple MergedDeprecated = Deprecated;
2294   VersionTuple MergedObsoleted = Obsoleted;
2295   bool FoundAny = false;
2296   bool OverrideOrImpl = false;
2297   switch (AMK) {
2298   case AMK_None:
2299   case AMK_Redeclaration:
2300     OverrideOrImpl = false;
2301     break;
2302 
2303   case AMK_Override:
2304   case AMK_ProtocolImplementation:
2305     OverrideOrImpl = true;
2306     break;
2307   }
2308 
2309   if (D->hasAttrs()) {
2310     AttrVec &Attrs = D->getAttrs();
2311     for (unsigned i = 0, e = Attrs.size(); i != e;) {
2312       const auto *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]);
2313       if (!OldAA) {
2314         ++i;
2315         continue;
2316       }
2317 
2318       IdentifierInfo *OldPlatform = OldAA->getPlatform();
2319       if (OldPlatform != Platform) {
2320         ++i;
2321         continue;
2322       }
2323 
2324       // If there is an existing availability attribute for this platform that
2325       // has a lower priority use the existing one and discard the new
2326       // attribute.
2327       if (OldAA->getPriority() < Priority)
2328         return nullptr;
2329 
2330       // If there is an existing attribute for this platform that has a higher
2331       // priority than the new attribute then erase the old one and continue
2332       // processing the attributes.
2333       if (OldAA->getPriority() > Priority) {
2334         Attrs.erase(Attrs.begin() + i);
2335         --e;
2336         continue;
2337       }
2338 
2339       FoundAny = true;
2340       VersionTuple OldIntroduced = OldAA->getIntroduced();
2341       VersionTuple OldDeprecated = OldAA->getDeprecated();
2342       VersionTuple OldObsoleted = OldAA->getObsoleted();
2343       bool OldIsUnavailable = OldAA->getUnavailable();
2344 
2345       if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl) ||
2346           !versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl) ||
2347           !versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl) ||
2348           !(OldIsUnavailable == IsUnavailable ||
2349             (OverrideOrImpl && !OldIsUnavailable && IsUnavailable))) {
2350         if (OverrideOrImpl) {
2351           int Which = -1;
2352           VersionTuple FirstVersion;
2353           VersionTuple SecondVersion;
2354           if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl)) {
2355             Which = 0;
2356             FirstVersion = OldIntroduced;
2357             SecondVersion = Introduced;
2358           } else if (!versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl)) {
2359             Which = 1;
2360             FirstVersion = Deprecated;
2361             SecondVersion = OldDeprecated;
2362           } else if (!versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl)) {
2363             Which = 2;
2364             FirstVersion = Obsoleted;
2365             SecondVersion = OldObsoleted;
2366           }
2367 
2368           if (Which == -1) {
2369             Diag(OldAA->getLocation(),
2370                  diag::warn_mismatched_availability_override_unavail)
2371               << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2372               << (AMK == AMK_Override);
2373           } else {
2374             Diag(OldAA->getLocation(),
2375                  diag::warn_mismatched_availability_override)
2376               << Which
2377               << AvailabilityAttr::getPrettyPlatformName(Platform->getName())
2378               << FirstVersion.getAsString() << SecondVersion.getAsString()
2379               << (AMK == AMK_Override);
2380           }
2381           if (AMK == AMK_Override)
2382             Diag(Range.getBegin(), diag::note_overridden_method);
2383           else
2384             Diag(Range.getBegin(), diag::note_protocol_method);
2385         } else {
2386           Diag(OldAA->getLocation(), diag::warn_mismatched_availability);
2387           Diag(Range.getBegin(), diag::note_previous_attribute);
2388         }
2389 
2390         Attrs.erase(Attrs.begin() + i);
2391         --e;
2392         continue;
2393       }
2394 
2395       VersionTuple MergedIntroduced2 = MergedIntroduced;
2396       VersionTuple MergedDeprecated2 = MergedDeprecated;
2397       VersionTuple MergedObsoleted2 = MergedObsoleted;
2398 
2399       if (MergedIntroduced2.empty())
2400         MergedIntroduced2 = OldIntroduced;
2401       if (MergedDeprecated2.empty())
2402         MergedDeprecated2 = OldDeprecated;
2403       if (MergedObsoleted2.empty())
2404         MergedObsoleted2 = OldObsoleted;
2405 
2406       if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform,
2407                                 MergedIntroduced2, MergedDeprecated2,
2408                                 MergedObsoleted2)) {
2409         Attrs.erase(Attrs.begin() + i);
2410         --e;
2411         continue;
2412       }
2413 
2414       MergedIntroduced = MergedIntroduced2;
2415       MergedDeprecated = MergedDeprecated2;
2416       MergedObsoleted = MergedObsoleted2;
2417       ++i;
2418     }
2419   }
2420 
2421   if (FoundAny &&
2422       MergedIntroduced == Introduced &&
2423       MergedDeprecated == Deprecated &&
2424       MergedObsoleted == Obsoleted)
2425     return nullptr;
2426 
2427   // Only create a new attribute if !OverrideOrImpl, but we want to do
2428   // the checking.
2429   if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced,
2430                              MergedDeprecated, MergedObsoleted) &&
2431       !OverrideOrImpl) {
2432     auto *Avail = ::new (Context)
2433         AvailabilityAttr(Range, Context, Platform, Introduced, Deprecated,
2434                          Obsoleted, IsUnavailable, Message, IsStrict,
2435                          Replacement, Priority, AttrSpellingListIndex);
2436     Avail->setImplicit(Implicit);
2437     return Avail;
2438   }
2439   return nullptr;
2440 }
2441 
2442 static void handleAvailabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2443   if (!checkAttributeNumArgs(S, AL, 1))
2444     return;
2445   IdentifierLoc *Platform = AL.getArgAsIdent(0);
2446   unsigned Index = AL.getAttributeSpellingListIndex();
2447 
2448   IdentifierInfo *II = Platform->Ident;
2449   if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty())
2450     S.Diag(Platform->Loc, diag::warn_availability_unknown_platform)
2451       << Platform->Ident;
2452 
2453   auto *ND = dyn_cast<NamedDecl>(D);
2454   if (!ND) // We warned about this already, so just return.
2455     return;
2456 
2457   AvailabilityChange Introduced = AL.getAvailabilityIntroduced();
2458   AvailabilityChange Deprecated = AL.getAvailabilityDeprecated();
2459   AvailabilityChange Obsoleted = AL.getAvailabilityObsoleted();
2460   bool IsUnavailable = AL.getUnavailableLoc().isValid();
2461   bool IsStrict = AL.getStrictLoc().isValid();
2462   StringRef Str;
2463   if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getMessageExpr()))
2464     Str = SE->getString();
2465   StringRef Replacement;
2466   if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getReplacementExpr()))
2467     Replacement = SE->getString();
2468 
2469   if (II->isStr("swift")) {
2470     if (Introduced.isValid() || Obsoleted.isValid() ||
2471         (!IsUnavailable && !Deprecated.isValid())) {
2472       S.Diag(AL.getLoc(),
2473              diag::warn_availability_swift_unavailable_deprecated_only);
2474       return;
2475     }
2476   }
2477 
2478   int PriorityModifier = AL.isPragmaClangAttribute()
2479                              ? Sema::AP_PragmaClangAttribute
2480                              : Sema::AP_Explicit;
2481   AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2482       ND, AL.getRange(), II, false /*Implicit*/, Introduced.Version,
2483       Deprecated.Version, Obsoleted.Version, IsUnavailable, Str, IsStrict,
2484       Replacement, Sema::AMK_None, PriorityModifier, Index);
2485   if (NewAttr)
2486     D->addAttr(NewAttr);
2487 
2488   // Transcribe "ios" to "watchos" (and add a new attribute) if the versioning
2489   // matches before the start of the watchOS platform.
2490   if (S.Context.getTargetInfo().getTriple().isWatchOS()) {
2491     IdentifierInfo *NewII = nullptr;
2492     if (II->getName() == "ios")
2493       NewII = &S.Context.Idents.get("watchos");
2494     else if (II->getName() == "ios_app_extension")
2495       NewII = &S.Context.Idents.get("watchos_app_extension");
2496 
2497     if (NewII) {
2498         auto adjustWatchOSVersion = [](VersionTuple Version) -> VersionTuple {
2499           if (Version.empty())
2500             return Version;
2501           auto Major = Version.getMajor();
2502           auto NewMajor = Major >= 9 ? Major - 7 : 0;
2503           if (NewMajor >= 2) {
2504             if (Version.getMinor().hasValue()) {
2505               if (Version.getSubminor().hasValue())
2506                 return VersionTuple(NewMajor, Version.getMinor().getValue(),
2507                                     Version.getSubminor().getValue());
2508               else
2509                 return VersionTuple(NewMajor, Version.getMinor().getValue());
2510             }
2511             return VersionTuple(NewMajor);
2512           }
2513 
2514           return VersionTuple(2, 0);
2515         };
2516 
2517         auto NewIntroduced = adjustWatchOSVersion(Introduced.Version);
2518         auto NewDeprecated = adjustWatchOSVersion(Deprecated.Version);
2519         auto NewObsoleted = adjustWatchOSVersion(Obsoleted.Version);
2520 
2521         AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2522             ND, AL.getRange(), NewII, true /*Implicit*/, NewIntroduced,
2523             NewDeprecated, NewObsoleted, IsUnavailable, Str, IsStrict,
2524             Replacement, Sema::AMK_None,
2525             PriorityModifier + Sema::AP_InferredFromOtherPlatform, Index);
2526         if (NewAttr)
2527           D->addAttr(NewAttr);
2528       }
2529   } else if (S.Context.getTargetInfo().getTriple().isTvOS()) {
2530     // Transcribe "ios" to "tvos" (and add a new attribute) if the versioning
2531     // matches before the start of the tvOS platform.
2532     IdentifierInfo *NewII = nullptr;
2533     if (II->getName() == "ios")
2534       NewII = &S.Context.Idents.get("tvos");
2535     else if (II->getName() == "ios_app_extension")
2536       NewII = &S.Context.Idents.get("tvos_app_extension");
2537 
2538     if (NewII) {
2539       AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(
2540           ND, AL.getRange(), NewII, true /*Implicit*/, Introduced.Version,
2541           Deprecated.Version, Obsoleted.Version, IsUnavailable, Str, IsStrict,
2542           Replacement, Sema::AMK_None,
2543           PriorityModifier + Sema::AP_InferredFromOtherPlatform, Index);
2544       if (NewAttr)
2545         D->addAttr(NewAttr);
2546       }
2547   }
2548 }
2549 
2550 static void handleExternalSourceSymbolAttr(Sema &S, Decl *D,
2551                                            const ParsedAttr &AL) {
2552   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
2553     return;
2554   assert(checkAttributeAtMostNumArgs(S, AL, 3) &&
2555          "Invalid number of arguments in an external_source_symbol attribute");
2556 
2557   StringRef Language;
2558   if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(0)))
2559     Language = SE->getString();
2560   StringRef DefinedIn;
2561   if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(1)))
2562     DefinedIn = SE->getString();
2563   bool IsGeneratedDeclaration = AL.getArgAsIdent(2) != nullptr;
2564 
2565   D->addAttr(::new (S.Context) ExternalSourceSymbolAttr(
2566       AL.getRange(), S.Context, Language, DefinedIn, IsGeneratedDeclaration,
2567       AL.getAttributeSpellingListIndex()));
2568 }
2569 
2570 template <class T>
2571 static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range,
2572                               typename T::VisibilityType value,
2573                               unsigned attrSpellingListIndex) {
2574   T *existingAttr = D->getAttr<T>();
2575   if (existingAttr) {
2576     typename T::VisibilityType existingValue = existingAttr->getVisibility();
2577     if (existingValue == value)
2578       return nullptr;
2579     S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility);
2580     S.Diag(range.getBegin(), diag::note_previous_attribute);
2581     D->dropAttr<T>();
2582   }
2583   return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex);
2584 }
2585 
2586 VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range,
2587                                           VisibilityAttr::VisibilityType Vis,
2588                                           unsigned AttrSpellingListIndex) {
2589   return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis,
2590                                                AttrSpellingListIndex);
2591 }
2592 
2593 TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range,
2594                                       TypeVisibilityAttr::VisibilityType Vis,
2595                                       unsigned AttrSpellingListIndex) {
2596   return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis,
2597                                                    AttrSpellingListIndex);
2598 }
2599 
2600 static void handleVisibilityAttr(Sema &S, Decl *D, const ParsedAttr &AL,
2601                                  bool isTypeVisibility) {
2602   // Visibility attributes don't mean anything on a typedef.
2603   if (isa<TypedefNameDecl>(D)) {
2604     S.Diag(AL.getRange().getBegin(), diag::warn_attribute_ignored) << AL;
2605     return;
2606   }
2607 
2608   // 'type_visibility' can only go on a type or namespace.
2609   if (isTypeVisibility &&
2610       !(isa<TagDecl>(D) ||
2611         isa<ObjCInterfaceDecl>(D) ||
2612         isa<NamespaceDecl>(D))) {
2613     S.Diag(AL.getRange().getBegin(), diag::err_attribute_wrong_decl_type)
2614         << AL << ExpectedTypeOrNamespace;
2615     return;
2616   }
2617 
2618   // Check that the argument is a string literal.
2619   StringRef TypeStr;
2620   SourceLocation LiteralLoc;
2621   if (!S.checkStringLiteralArgumentAttr(AL, 0, TypeStr, &LiteralLoc))
2622     return;
2623 
2624   VisibilityAttr::VisibilityType type;
2625   if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) {
2626     S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported) << AL
2627                                                                 << TypeStr;
2628     return;
2629   }
2630 
2631   // Complain about attempts to use protected visibility on targets
2632   // (like Darwin) that don't support it.
2633   if (type == VisibilityAttr::Protected &&
2634       !S.Context.getTargetInfo().hasProtectedVisibility()) {
2635     S.Diag(AL.getLoc(), diag::warn_attribute_protected_visibility);
2636     type = VisibilityAttr::Default;
2637   }
2638 
2639   unsigned Index = AL.getAttributeSpellingListIndex();
2640   Attr *newAttr;
2641   if (isTypeVisibility) {
2642     newAttr = S.mergeTypeVisibilityAttr(D, AL.getRange(),
2643                                     (TypeVisibilityAttr::VisibilityType) type,
2644                                         Index);
2645   } else {
2646     newAttr = S.mergeVisibilityAttr(D, AL.getRange(), type, Index);
2647   }
2648   if (newAttr)
2649     D->addAttr(newAttr);
2650 }
2651 
2652 static void handleObjCMethodFamilyAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2653   const auto *M = cast<ObjCMethodDecl>(D);
2654   if (!AL.isArgIdent(0)) {
2655     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2656         << AL << 1 << AANT_ArgumentIdentifier;
2657     return;
2658   }
2659 
2660   IdentifierLoc *IL = AL.getArgAsIdent(0);
2661   ObjCMethodFamilyAttr::FamilyKind F;
2662   if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) {
2663     S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << AL << IL->Ident;
2664     return;
2665   }
2666 
2667   if (F == ObjCMethodFamilyAttr::OMF_init &&
2668       !M->getReturnType()->isObjCObjectPointerType()) {
2669     S.Diag(M->getLocation(), diag::err_init_method_bad_return_type)
2670         << M->getReturnType();
2671     // Ignore the attribute.
2672     return;
2673   }
2674 
2675   D->addAttr(new (S.Context) ObjCMethodFamilyAttr(
2676       AL.getRange(), S.Context, F, AL.getAttributeSpellingListIndex()));
2677 }
2678 
2679 static void handleObjCNSObject(Sema &S, Decl *D, const ParsedAttr &AL) {
2680   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
2681     QualType T = TD->getUnderlyingType();
2682     if (!T->isCARCBridgableType()) {
2683       S.Diag(TD->getLocation(), diag::err_nsobject_attribute);
2684       return;
2685     }
2686   }
2687   else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
2688     QualType T = PD->getType();
2689     if (!T->isCARCBridgableType()) {
2690       S.Diag(PD->getLocation(), diag::err_nsobject_attribute);
2691       return;
2692     }
2693   }
2694   else {
2695     // It is okay to include this attribute on properties, e.g.:
2696     //
2697     //  @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject));
2698     //
2699     // In this case it follows tradition and suppresses an error in the above
2700     // case.
2701     S.Diag(D->getLocation(), diag::warn_nsobject_attribute);
2702   }
2703   D->addAttr(::new (S.Context)
2704              ObjCNSObjectAttr(AL.getRange(), S.Context,
2705                               AL.getAttributeSpellingListIndex()));
2706 }
2707 
2708 static void handleObjCIndependentClass(Sema &S, Decl *D, const ParsedAttr &AL) {
2709   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
2710     QualType T = TD->getUnderlyingType();
2711     if (!T->isObjCObjectPointerType()) {
2712       S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute);
2713       return;
2714     }
2715   } else {
2716     S.Diag(D->getLocation(), diag::warn_independentclass_attribute);
2717     return;
2718   }
2719   D->addAttr(::new (S.Context)
2720              ObjCIndependentClassAttr(AL.getRange(), S.Context,
2721                               AL.getAttributeSpellingListIndex()));
2722 }
2723 
2724 static void handleBlocksAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2725   if (!AL.isArgIdent(0)) {
2726     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2727         << AL << 1 << AANT_ArgumentIdentifier;
2728     return;
2729   }
2730 
2731   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
2732   BlocksAttr::BlockType type;
2733   if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) {
2734     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
2735     return;
2736   }
2737 
2738   D->addAttr(::new (S.Context)
2739              BlocksAttr(AL.getRange(), S.Context, type,
2740                         AL.getAttributeSpellingListIndex()));
2741 }
2742 
2743 static void handleSentinelAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2744   unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel;
2745   if (AL.getNumArgs() > 0) {
2746     Expr *E = AL.getArgAsExpr(0);
2747     llvm::APSInt Idx(32);
2748     if (E->isTypeDependent() || E->isValueDependent() ||
2749         !E->isIntegerConstantExpr(Idx, S.Context)) {
2750       S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2751           << AL << 1 << AANT_ArgumentIntegerConstant << E->getSourceRange();
2752       return;
2753     }
2754 
2755     if (Idx.isSigned() && Idx.isNegative()) {
2756       S.Diag(AL.getLoc(), diag::err_attribute_sentinel_less_than_zero)
2757         << E->getSourceRange();
2758       return;
2759     }
2760 
2761     sentinel = Idx.getZExtValue();
2762   }
2763 
2764   unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos;
2765   if (AL.getNumArgs() > 1) {
2766     Expr *E = AL.getArgAsExpr(1);
2767     llvm::APSInt Idx(32);
2768     if (E->isTypeDependent() || E->isValueDependent() ||
2769         !E->isIntegerConstantExpr(Idx, S.Context)) {
2770       S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
2771           << AL << 2 << AANT_ArgumentIntegerConstant << E->getSourceRange();
2772       return;
2773     }
2774     nullPos = Idx.getZExtValue();
2775 
2776     if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) {
2777       // FIXME: This error message could be improved, it would be nice
2778       // to say what the bounds actually are.
2779       S.Diag(AL.getLoc(), diag::err_attribute_sentinel_not_zero_or_one)
2780         << E->getSourceRange();
2781       return;
2782     }
2783   }
2784 
2785   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2786     const FunctionType *FT = FD->getType()->castAs<FunctionType>();
2787     if (isa<FunctionNoProtoType>(FT)) {
2788       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_named_arguments);
2789       return;
2790     }
2791 
2792     if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2793       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2794       return;
2795     }
2796   } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
2797     if (!MD->isVariadic()) {
2798       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0;
2799       return;
2800     }
2801   } else if (const auto *BD = dyn_cast<BlockDecl>(D)) {
2802     if (!BD->isVariadic()) {
2803       S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1;
2804       return;
2805     }
2806   } else if (const auto *V = dyn_cast<VarDecl>(D)) {
2807     QualType Ty = V->getType();
2808     if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
2809       const FunctionType *FT = Ty->isFunctionPointerType()
2810        ? D->getFunctionType()
2811        : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
2812       if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2813         int m = Ty->isFunctionPointerType() ? 0 : 1;
2814         S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m;
2815         return;
2816       }
2817     } else {
2818       S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2819           << AL << ExpectedFunctionMethodOrBlock;
2820       return;
2821     }
2822   } else {
2823     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2824         << AL << ExpectedFunctionMethodOrBlock;
2825     return;
2826   }
2827   D->addAttr(::new (S.Context)
2828              SentinelAttr(AL.getRange(), S.Context, sentinel, nullPos,
2829                           AL.getAttributeSpellingListIndex()));
2830 }
2831 
2832 static void handleWarnUnusedResult(Sema &S, Decl *D, const ParsedAttr &AL) {
2833   if (D->getFunctionType() &&
2834       D->getFunctionType()->getReturnType()->isVoidType() &&
2835       !isa<CXXConstructorDecl>(D)) {
2836     S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 0;
2837     return;
2838   }
2839   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
2840     if (MD->getReturnType()->isVoidType()) {
2841       S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) << AL << 1;
2842       return;
2843     }
2844 
2845   StringRef Str;
2846   if ((AL.isCXX11Attribute() || AL.isC2xAttribute()) && !AL.getScopeName()) {
2847     // If this is spelled as the standard C++17 attribute, but not in C++17,
2848     // warn about using it as an extension. If there are attribute arguments,
2849     // then claim it's a C++2a extension instead.
2850     // FIXME: If WG14 does not seem likely to adopt the same feature, add an
2851     // extension warning for C2x mode.
2852     const LangOptions &LO = S.getLangOpts();
2853     if (AL.getNumArgs() == 1) {
2854       if (LO.CPlusPlus && !LO.CPlusPlus2a)
2855         S.Diag(AL.getLoc(), diag::ext_cxx2a_attr) << AL;
2856 
2857       // Since this this is spelled [[nodiscard]], get the optional string
2858       // literal. If in C++ mode, but not in C++2a mode, diagnose as an
2859       // extension.
2860       // FIXME: C2x should support this feature as well, even as an extension.
2861       if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, nullptr))
2862         return;
2863     } else if (LO.CPlusPlus && !LO.CPlusPlus17)
2864       S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL;
2865   }
2866 
2867   D->addAttr(::new (S.Context)
2868              WarnUnusedResultAttr(AL.getRange(), S.Context, Str,
2869                                   AL.getAttributeSpellingListIndex()));
2870 }
2871 
2872 static void handleWeakImportAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
2873   // weak_import only applies to variable & function declarations.
2874   bool isDef = false;
2875   if (!D->canBeWeakImported(isDef)) {
2876     if (isDef)
2877       S.Diag(AL.getLoc(), diag::warn_attribute_invalid_on_definition)
2878         << "weak_import";
2879     else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) ||
2880              (S.Context.getTargetInfo().getTriple().isOSDarwin() &&
2881               (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) {
2882       // Nothing to warn about here.
2883     } else
2884       S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
2885           << AL << ExpectedVariableOrFunction;
2886 
2887     return;
2888   }
2889 
2890   D->addAttr(::new (S.Context)
2891              WeakImportAttr(AL.getRange(), S.Context,
2892                             AL.getAttributeSpellingListIndex()));
2893 }
2894 
2895 // Handles reqd_work_group_size and work_group_size_hint.
2896 template <typename WorkGroupAttr>
2897 static void handleWorkGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
2898   uint32_t WGSize[3];
2899   for (unsigned i = 0; i < 3; ++i) {
2900     const Expr *E = AL.getArgAsExpr(i);
2901     if (!checkUInt32Argument(S, AL, E, WGSize[i], i,
2902                              /*StrictlyUnsigned=*/true))
2903       return;
2904     if (WGSize[i] == 0) {
2905       S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
2906           << AL << E->getSourceRange();
2907       return;
2908     }
2909   }
2910 
2911   WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2912   if (Existing && !(Existing->getXDim() == WGSize[0] &&
2913                     Existing->getYDim() == WGSize[1] &&
2914                     Existing->getZDim() == WGSize[2]))
2915     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2916 
2917   D->addAttr(::new (S.Context) WorkGroupAttr(AL.getRange(), S.Context,
2918                                              WGSize[0], WGSize[1], WGSize[2],
2919                                        AL.getAttributeSpellingListIndex()));
2920 }
2921 
2922 // Handles intel_reqd_sub_group_size.
2923 static void handleSubGroupSize(Sema &S, Decl *D, const ParsedAttr &AL) {
2924   uint32_t SGSize;
2925   const Expr *E = AL.getArgAsExpr(0);
2926   if (!checkUInt32Argument(S, AL, E, SGSize))
2927     return;
2928   if (SGSize == 0) {
2929     S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero)
2930         << AL << E->getSourceRange();
2931     return;
2932   }
2933 
2934   OpenCLIntelReqdSubGroupSizeAttr *Existing =
2935       D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>();
2936   if (Existing && Existing->getSubGroupSize() != SGSize)
2937     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2938 
2939   D->addAttr(::new (S.Context) OpenCLIntelReqdSubGroupSizeAttr(
2940       AL.getRange(), S.Context, SGSize,
2941       AL.getAttributeSpellingListIndex()));
2942 }
2943 
2944 static void handleVecTypeHint(Sema &S, Decl *D, const ParsedAttr &AL) {
2945   if (!AL.hasParsedType()) {
2946     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
2947     return;
2948   }
2949 
2950   TypeSourceInfo *ParmTSI = nullptr;
2951   QualType ParmType = S.GetTypeFromParser(AL.getTypeArg(), &ParmTSI);
2952   assert(ParmTSI && "no type source info for attribute argument");
2953 
2954   if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() &&
2955       (ParmType->isBooleanType() ||
2956        !ParmType->isIntegralType(S.getASTContext()))) {
2957     S.Diag(AL.getLoc(), diag::err_attribute_invalid_argument) << 3 << AL;
2958     return;
2959   }
2960 
2961   if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) {
2962     if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) {
2963       S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
2964       return;
2965     }
2966   }
2967 
2968   D->addAttr(::new (S.Context) VecTypeHintAttr(AL.getLoc(), S.Context,
2969                                                ParmTSI,
2970                                         AL.getAttributeSpellingListIndex()));
2971 }
2972 
2973 SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range,
2974                                     StringRef Name,
2975                                     unsigned AttrSpellingListIndex) {
2976   // Explicit or partial specializations do not inherit
2977   // the section attribute from the primary template.
2978   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2979     if (AttrSpellingListIndex == SectionAttr::Declspec_allocate &&
2980         FD->isFunctionTemplateSpecialization())
2981       return nullptr;
2982   }
2983   if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) {
2984     if (ExistingAttr->getName() == Name)
2985       return nullptr;
2986     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
2987          << 1 /*section*/;
2988     Diag(Range.getBegin(), diag::note_previous_attribute);
2989     return nullptr;
2990   }
2991   return ::new (Context) SectionAttr(Range, Context, Name,
2992                                      AttrSpellingListIndex);
2993 }
2994 
2995 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) {
2996   std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName);
2997   if (!Error.empty()) {
2998     Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error
2999          << 1 /*'section'*/;
3000     return false;
3001   }
3002   return true;
3003 }
3004 
3005 static void handleSectionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3006   // Make sure that there is a string literal as the sections's single
3007   // argument.
3008   StringRef Str;
3009   SourceLocation LiteralLoc;
3010   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
3011     return;
3012 
3013   if (!S.checkSectionName(LiteralLoc, Str))
3014     return;
3015 
3016   // If the target wants to validate the section specifier, make it happen.
3017   std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str);
3018   if (!Error.empty()) {
3019     S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
3020     << Error;
3021     return;
3022   }
3023 
3024   unsigned Index = AL.getAttributeSpellingListIndex();
3025   SectionAttr *NewAttr = S.mergeSectionAttr(D, AL.getRange(), Str, Index);
3026   if (NewAttr)
3027     D->addAttr(NewAttr);
3028 }
3029 
3030 // This is used for `__declspec(code_seg("segname"))` on a decl.
3031 // `#pragma code_seg("segname")` uses checkSectionName() instead.
3032 static bool checkCodeSegName(Sema &S, SourceLocation LiteralLoc,
3033                              StringRef CodeSegName) {
3034   std::string Error =
3035       S.Context.getTargetInfo().isValidSectionSpecifier(CodeSegName);
3036   if (!Error.empty()) {
3037     S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target)
3038         << Error << 0 /*'code-seg'*/;
3039     return false;
3040   }
3041 
3042   return true;
3043 }
3044 
3045 CodeSegAttr *Sema::mergeCodeSegAttr(Decl *D, SourceRange Range,
3046                                     StringRef Name,
3047                                     unsigned AttrSpellingListIndex) {
3048   // Explicit or partial specializations do not inherit
3049   // the code_seg attribute from the primary template.
3050   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
3051     if (FD->isFunctionTemplateSpecialization())
3052       return nullptr;
3053   }
3054   if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3055     if (ExistingAttr->getName() == Name)
3056       return nullptr;
3057     Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section)
3058          << 0 /*codeseg*/;
3059     Diag(Range.getBegin(), diag::note_previous_attribute);
3060     return nullptr;
3061   }
3062   return ::new (Context) CodeSegAttr(Range, Context, Name,
3063                                      AttrSpellingListIndex);
3064 }
3065 
3066 static void handleCodeSegAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3067   StringRef Str;
3068   SourceLocation LiteralLoc;
3069   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc))
3070     return;
3071   if (!checkCodeSegName(S, LiteralLoc, Str))
3072     return;
3073   if (const auto *ExistingAttr = D->getAttr<CodeSegAttr>()) {
3074     if (!ExistingAttr->isImplicit()) {
3075       S.Diag(AL.getLoc(),
3076              ExistingAttr->getName() == Str
3077              ? diag::warn_duplicate_codeseg_attribute
3078              : diag::err_conflicting_codeseg_attribute);
3079       return;
3080     }
3081     D->dropAttr<CodeSegAttr>();
3082   }
3083   if (CodeSegAttr *CSA = S.mergeCodeSegAttr(D, AL.getRange(), Str,
3084                                             AL.getAttributeSpellingListIndex()))
3085     D->addAttr(CSA);
3086 }
3087 
3088 // Check for things we'd like to warn about. Multiversioning issues are
3089 // handled later in the process, once we know how many exist.
3090 bool Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) {
3091   enum FirstParam { Unsupported, Duplicate };
3092   enum SecondParam { None, Architecture };
3093   for (auto Str : {"tune=", "fpmath="})
3094     if (AttrStr.find(Str) != StringRef::npos)
3095       return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3096              << Unsupported << None << Str;
3097 
3098   TargetAttr::ParsedTargetAttr ParsedAttrs = TargetAttr::parse(AttrStr);
3099 
3100   if (!ParsedAttrs.Architecture.empty() &&
3101       !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Architecture))
3102     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3103            << Unsupported << Architecture << ParsedAttrs.Architecture;
3104 
3105   if (ParsedAttrs.DuplicateArchitecture)
3106     return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3107            << Duplicate << None << "arch=";
3108 
3109   for (const auto &Feature : ParsedAttrs.Features) {
3110     auto CurFeature = StringRef(Feature).drop_front(); // remove + or -.
3111     if (!Context.getTargetInfo().isValidFeatureName(CurFeature))
3112       return Diag(LiteralLoc, diag::warn_unsupported_target_attribute)
3113              << Unsupported << None << CurFeature;
3114   }
3115 
3116   return false;
3117 }
3118 
3119 static void handleTargetAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3120   StringRef Str;
3121   SourceLocation LiteralLoc;
3122   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc) ||
3123       S.checkTargetAttr(LiteralLoc, Str))
3124     return;
3125 
3126   unsigned Index = AL.getAttributeSpellingListIndex();
3127   TargetAttr *NewAttr =
3128       ::new (S.Context) TargetAttr(AL.getRange(), S.Context, Str, Index);
3129   D->addAttr(NewAttr);
3130 }
3131 
3132 static void handleMinVectorWidthAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3133   Expr *E = AL.getArgAsExpr(0);
3134   uint32_t VecWidth;
3135   if (!checkUInt32Argument(S, AL, E, VecWidth)) {
3136     AL.setInvalid();
3137     return;
3138   }
3139 
3140   MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>();
3141   if (Existing && Existing->getVectorWidth() != VecWidth) {
3142     S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL;
3143     return;
3144   }
3145 
3146   D->addAttr(::new (S.Context)
3147              MinVectorWidthAttr(AL.getRange(), S.Context, VecWidth,
3148                                 AL.getAttributeSpellingListIndex()));
3149 }
3150 
3151 static void handleCleanupAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3152   Expr *E = AL.getArgAsExpr(0);
3153   SourceLocation Loc = E->getExprLoc();
3154   FunctionDecl *FD = nullptr;
3155   DeclarationNameInfo NI;
3156 
3157   // gcc only allows for simple identifiers. Since we support more than gcc, we
3158   // will warn the user.
3159   if (auto *DRE = dyn_cast<DeclRefExpr>(E)) {
3160     if (DRE->hasQualifier())
3161       S.Diag(Loc, diag::warn_cleanup_ext);
3162     FD = dyn_cast<FunctionDecl>(DRE->getDecl());
3163     NI = DRE->getNameInfo();
3164     if (!FD) {
3165       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1
3166         << NI.getName();
3167       return;
3168     }
3169   } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
3170     if (ULE->hasExplicitTemplateArgs())
3171       S.Diag(Loc, diag::warn_cleanup_ext);
3172     FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
3173     NI = ULE->getNameInfo();
3174     if (!FD) {
3175       S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
3176         << NI.getName();
3177       if (ULE->getType() == S.Context.OverloadTy)
3178         S.NoteAllOverloadCandidates(ULE);
3179       return;
3180     }
3181   } else {
3182     S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
3183     return;
3184   }
3185 
3186   if (FD->getNumParams() != 1) {
3187     S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg)
3188       << NI.getName();
3189     return;
3190   }
3191 
3192   // We're currently more strict than GCC about what function types we accept.
3193   // If this ever proves to be a problem it should be easy to fix.
3194   QualType Ty = S.Context.getPointerType(cast<VarDecl>(D)->getType());
3195   QualType ParamTy = FD->getParamDecl(0)->getType();
3196   if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(),
3197                                    ParamTy, Ty) != Sema::Compatible) {
3198     S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type)
3199       << NI.getName() << ParamTy << Ty;
3200     return;
3201   }
3202 
3203   D->addAttr(::new (S.Context)
3204              CleanupAttr(AL.getRange(), S.Context, FD,
3205                          AL.getAttributeSpellingListIndex()));
3206 }
3207 
3208 static void handleEnumExtensibilityAttr(Sema &S, Decl *D,
3209                                         const ParsedAttr &AL) {
3210   if (!AL.isArgIdent(0)) {
3211     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
3212         << AL << 0 << AANT_ArgumentIdentifier;
3213     return;
3214   }
3215 
3216   EnumExtensibilityAttr::Kind ExtensibilityKind;
3217   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
3218   if (!EnumExtensibilityAttr::ConvertStrToKind(II->getName(),
3219                                                ExtensibilityKind)) {
3220     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << II;
3221     return;
3222   }
3223 
3224   D->addAttr(::new (S.Context) EnumExtensibilityAttr(
3225       AL.getRange(), S.Context, ExtensibilityKind,
3226       AL.getAttributeSpellingListIndex()));
3227 }
3228 
3229 /// Handle __attribute__((format_arg((idx)))) attribute based on
3230 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
3231 static void handleFormatArgAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3232   Expr *IdxExpr = AL.getArgAsExpr(0);
3233   ParamIdx Idx;
3234   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, IdxExpr, Idx))
3235     return;
3236 
3237   // Make sure the format string is really a string.
3238   QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex());
3239 
3240   bool NotNSStringTy = !isNSStringType(Ty, S.Context);
3241   if (NotNSStringTy &&
3242       !isCFStringType(Ty, S.Context) &&
3243       (!Ty->isPointerType() ||
3244        !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
3245     S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3246         << "a string type" << IdxExpr->getSourceRange()
3247         << getFunctionOrMethodParamRange(D, 0);
3248     return;
3249   }
3250   Ty = getFunctionOrMethodResultType(D);
3251   if (!isNSStringType(Ty, S.Context) &&
3252       !isCFStringType(Ty, S.Context) &&
3253       (!Ty->isPointerType() ||
3254        !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) {
3255     S.Diag(AL.getLoc(), diag::err_format_attribute_result_not)
3256         << (NotNSStringTy ? "string type" : "NSString")
3257         << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0);
3258     return;
3259   }
3260 
3261   D->addAttr(::new (S.Context) FormatArgAttr(
3262       AL.getRange(), S.Context, Idx, AL.getAttributeSpellingListIndex()));
3263 }
3264 
3265 enum FormatAttrKind {
3266   CFStringFormat,
3267   NSStringFormat,
3268   StrftimeFormat,
3269   SupportedFormat,
3270   IgnoredFormat,
3271   InvalidFormat
3272 };
3273 
3274 /// getFormatAttrKind - Map from format attribute names to supported format
3275 /// types.
3276 static FormatAttrKind getFormatAttrKind(StringRef Format) {
3277   return llvm::StringSwitch<FormatAttrKind>(Format)
3278       // Check for formats that get handled specially.
3279       .Case("NSString", NSStringFormat)
3280       .Case("CFString", CFStringFormat)
3281       .Case("strftime", StrftimeFormat)
3282 
3283       // Otherwise, check for supported formats.
3284       .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat)
3285       .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat)
3286       .Case("kprintf", SupportedFormat)         // OpenBSD.
3287       .Case("freebsd_kprintf", SupportedFormat) // FreeBSD.
3288       .Case("os_trace", SupportedFormat)
3289       .Case("os_log", SupportedFormat)
3290 
3291       .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat)
3292       .Default(InvalidFormat);
3293 }
3294 
3295 /// Handle __attribute__((init_priority(priority))) attributes based on
3296 /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html
3297 static void handleInitPriorityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3298   if (!S.getLangOpts().CPlusPlus) {
3299     S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL;
3300     return;
3301   }
3302 
3303   if (S.getCurFunctionOrMethodDecl()) {
3304     S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3305     AL.setInvalid();
3306     return;
3307   }
3308   QualType T = cast<VarDecl>(D)->getType();
3309   if (S.Context.getAsArrayType(T))
3310     T = S.Context.getBaseElementType(T);
3311   if (!T->getAs<RecordType>()) {
3312     S.Diag(AL.getLoc(), diag::err_init_priority_object_attr);
3313     AL.setInvalid();
3314     return;
3315   }
3316 
3317   Expr *E = AL.getArgAsExpr(0);
3318   uint32_t prioritynum;
3319   if (!checkUInt32Argument(S, AL, E, prioritynum)) {
3320     AL.setInvalid();
3321     return;
3322   }
3323 
3324   if (prioritynum < 101 || prioritynum > 65535) {
3325     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_range)
3326         << E->getSourceRange() << AL << 101 << 65535;
3327     AL.setInvalid();
3328     return;
3329   }
3330   D->addAttr(::new (S.Context)
3331              InitPriorityAttr(AL.getRange(), S.Context, prioritynum,
3332                               AL.getAttributeSpellingListIndex()));
3333 }
3334 
3335 FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range,
3336                                   IdentifierInfo *Format, int FormatIdx,
3337                                   int FirstArg,
3338                                   unsigned AttrSpellingListIndex) {
3339   // Check whether we already have an equivalent format attribute.
3340   for (auto *F : D->specific_attrs<FormatAttr>()) {
3341     if (F->getType() == Format &&
3342         F->getFormatIdx() == FormatIdx &&
3343         F->getFirstArg() == FirstArg) {
3344       // If we don't have a valid location for this attribute, adopt the
3345       // location.
3346       if (F->getLocation().isInvalid())
3347         F->setRange(Range);
3348       return nullptr;
3349     }
3350   }
3351 
3352   return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx,
3353                                     FirstArg, AttrSpellingListIndex);
3354 }
3355 
3356 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
3357 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
3358 static void handleFormatAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3359   if (!AL.isArgIdent(0)) {
3360     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
3361         << AL << 1 << AANT_ArgumentIdentifier;
3362     return;
3363   }
3364 
3365   // In C++ the implicit 'this' function parameter also counts, and they are
3366   // counted from one.
3367   bool HasImplicitThisParam = isInstanceMethod(D);
3368   unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam;
3369 
3370   IdentifierInfo *II = AL.getArgAsIdent(0)->Ident;
3371   StringRef Format = II->getName();
3372 
3373   if (normalizeName(Format)) {
3374     // If we've modified the string name, we need a new identifier for it.
3375     II = &S.Context.Idents.get(Format);
3376   }
3377 
3378   // Check for supported formats.
3379   FormatAttrKind Kind = getFormatAttrKind(Format);
3380 
3381   if (Kind == IgnoredFormat)
3382     return;
3383 
3384   if (Kind == InvalidFormat) {
3385     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
3386         << AL << II->getName();
3387     return;
3388   }
3389 
3390   // checks for the 2nd argument
3391   Expr *IdxExpr = AL.getArgAsExpr(1);
3392   uint32_t Idx;
3393   if (!checkUInt32Argument(S, AL, IdxExpr, Idx, 2))
3394     return;
3395 
3396   if (Idx < 1 || Idx > NumArgs) {
3397     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3398         << AL << 2 << IdxExpr->getSourceRange();
3399     return;
3400   }
3401 
3402   // FIXME: Do we need to bounds check?
3403   unsigned ArgIdx = Idx - 1;
3404 
3405   if (HasImplicitThisParam) {
3406     if (ArgIdx == 0) {
3407       S.Diag(AL.getLoc(),
3408              diag::err_format_attribute_implicit_this_format_string)
3409         << IdxExpr->getSourceRange();
3410       return;
3411     }
3412     ArgIdx--;
3413   }
3414 
3415   // make sure the format string is really a string
3416   QualType Ty = getFunctionOrMethodParamType(D, ArgIdx);
3417 
3418   if (Kind == CFStringFormat) {
3419     if (!isCFStringType(Ty, S.Context)) {
3420       S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3421         << "a CFString" << IdxExpr->getSourceRange()
3422         << getFunctionOrMethodParamRange(D, ArgIdx);
3423       return;
3424     }
3425   } else if (Kind == NSStringFormat) {
3426     // FIXME: do we need to check if the type is NSString*?  What are the
3427     // semantics?
3428     if (!isNSStringType(Ty, S.Context)) {
3429       S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3430         << "an NSString" << IdxExpr->getSourceRange()
3431         << getFunctionOrMethodParamRange(D, ArgIdx);
3432       return;
3433     }
3434   } else if (!Ty->isPointerType() ||
3435              !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) {
3436     S.Diag(AL.getLoc(), diag::err_format_attribute_not)
3437       << "a string type" << IdxExpr->getSourceRange()
3438       << getFunctionOrMethodParamRange(D, ArgIdx);
3439     return;
3440   }
3441 
3442   // check the 3rd argument
3443   Expr *FirstArgExpr = AL.getArgAsExpr(2);
3444   uint32_t FirstArg;
3445   if (!checkUInt32Argument(S, AL, FirstArgExpr, FirstArg, 3))
3446     return;
3447 
3448   // check if the function is variadic if the 3rd argument non-zero
3449   if (FirstArg != 0) {
3450     if (isFunctionOrMethodVariadic(D)) {
3451       ++NumArgs; // +1 for ...
3452     } else {
3453       S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic);
3454       return;
3455     }
3456   }
3457 
3458   // strftime requires FirstArg to be 0 because it doesn't read from any
3459   // variable the input is just the current time + the format string.
3460   if (Kind == StrftimeFormat) {
3461     if (FirstArg != 0) {
3462       S.Diag(AL.getLoc(), diag::err_format_strftime_third_parameter)
3463         << FirstArgExpr->getSourceRange();
3464       return;
3465     }
3466   // if 0 it disables parameter checking (to use with e.g. va_list)
3467   } else if (FirstArg != 0 && FirstArg != NumArgs) {
3468     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3469         << AL << 3 << FirstArgExpr->getSourceRange();
3470     return;
3471   }
3472 
3473   FormatAttr *NewAttr = S.mergeFormatAttr(D, AL.getRange(), II,
3474                                           Idx, FirstArg,
3475                                           AL.getAttributeSpellingListIndex());
3476   if (NewAttr)
3477     D->addAttr(NewAttr);
3478 }
3479 
3480 /// Handle __attribute__((callback(CalleeIdx, PayloadIdx0, ...))) attributes.
3481 static void handleCallbackAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3482   // The index that identifies the callback callee is mandatory.
3483   if (AL.getNumArgs() == 0) {
3484     S.Diag(AL.getLoc(), diag::err_callback_attribute_no_callee)
3485         << AL.getRange();
3486     return;
3487   }
3488 
3489   bool HasImplicitThisParam = isInstanceMethod(D);
3490   int32_t NumArgs = getFunctionOrMethodNumParams(D);
3491 
3492   FunctionDecl *FD = D->getAsFunction();
3493   assert(FD && "Expected a function declaration!");
3494 
3495   llvm::StringMap<int> NameIdxMapping;
3496   NameIdxMapping["__"] = -1;
3497 
3498   NameIdxMapping["this"] = 0;
3499 
3500   int Idx = 1;
3501   for (const ParmVarDecl *PVD : FD->parameters())
3502     NameIdxMapping[PVD->getName()] = Idx++;
3503 
3504   auto UnknownName = NameIdxMapping.end();
3505 
3506   SmallVector<int, 8> EncodingIndices;
3507   for (unsigned I = 0, E = AL.getNumArgs(); I < E; ++I) {
3508     SourceRange SR;
3509     int32_t ArgIdx;
3510 
3511     if (AL.isArgIdent(I)) {
3512       IdentifierLoc *IdLoc = AL.getArgAsIdent(I);
3513       auto It = NameIdxMapping.find(IdLoc->Ident->getName());
3514       if (It == UnknownName) {
3515         S.Diag(AL.getLoc(), diag::err_callback_attribute_argument_unknown)
3516             << IdLoc->Ident << IdLoc->Loc;
3517         return;
3518       }
3519 
3520       SR = SourceRange(IdLoc->Loc);
3521       ArgIdx = It->second;
3522     } else if (AL.isArgExpr(I)) {
3523       Expr *IdxExpr = AL.getArgAsExpr(I);
3524 
3525       // If the expression is not parseable as an int32_t we have a problem.
3526       if (!checkUInt32Argument(S, AL, IdxExpr, (uint32_t &)ArgIdx, I + 1,
3527                                false)) {
3528         S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3529             << AL << (I + 1) << IdxExpr->getSourceRange();
3530         return;
3531       }
3532 
3533       // Check oob, excluding the special values, 0 and -1.
3534       if (ArgIdx < -1 || ArgIdx > NumArgs) {
3535         S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
3536             << AL << (I + 1) << IdxExpr->getSourceRange();
3537         return;
3538       }
3539 
3540       SR = IdxExpr->getSourceRange();
3541     } else {
3542       llvm_unreachable("Unexpected ParsedAttr argument type!");
3543     }
3544 
3545     if (ArgIdx == 0 && !HasImplicitThisParam) {
3546       S.Diag(AL.getLoc(), diag::err_callback_implicit_this_not_available)
3547           << (I + 1) << SR;
3548       return;
3549     }
3550 
3551     // Adjust for the case we do not have an implicit "this" parameter. In this
3552     // case we decrease all positive values by 1 to get LLVM argument indices.
3553     if (!HasImplicitThisParam && ArgIdx > 0)
3554       ArgIdx -= 1;
3555 
3556     EncodingIndices.push_back(ArgIdx);
3557   }
3558 
3559   int CalleeIdx = EncodingIndices.front();
3560   // Check if the callee index is proper, thus not "this" and not "unknown".
3561   // This means the "CalleeIdx" has to be non-negative if "HasImplicitThisParam"
3562   // is false and positive if "HasImplicitThisParam" is true.
3563   if (CalleeIdx < (int)HasImplicitThisParam) {
3564     S.Diag(AL.getLoc(), diag::err_callback_attribute_invalid_callee)
3565         << AL.getRange();
3566     return;
3567   }
3568 
3569   // Get the callee type, note the index adjustment as the AST doesn't contain
3570   // the this type (which the callee cannot reference anyway!).
3571   const Type *CalleeType =
3572       getFunctionOrMethodParamType(D, CalleeIdx - HasImplicitThisParam)
3573           .getTypePtr();
3574   if (!CalleeType || !CalleeType->isFunctionPointerType()) {
3575     S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3576         << AL.getRange();
3577     return;
3578   }
3579 
3580   const Type *CalleeFnType =
3581       CalleeType->getPointeeType()->getUnqualifiedDesugaredType();
3582 
3583   // TODO: Check the type of the callee arguments.
3584 
3585   const auto *CalleeFnProtoType = dyn_cast<FunctionProtoType>(CalleeFnType);
3586   if (!CalleeFnProtoType) {
3587     S.Diag(AL.getLoc(), diag::err_callback_callee_no_function_type)
3588         << AL.getRange();
3589     return;
3590   }
3591 
3592   if (CalleeFnProtoType->getNumParams() > EncodingIndices.size() - 1) {
3593     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3594         << AL << (unsigned)(EncodingIndices.size() - 1);
3595     return;
3596   }
3597 
3598   if (CalleeFnProtoType->getNumParams() < EncodingIndices.size() - 1) {
3599     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments)
3600         << AL << (unsigned)(EncodingIndices.size() - 1);
3601     return;
3602   }
3603 
3604   if (CalleeFnProtoType->isVariadic()) {
3605     S.Diag(AL.getLoc(), diag::err_callback_callee_is_variadic) << AL.getRange();
3606     return;
3607   }
3608 
3609   // Do not allow multiple callback attributes.
3610   if (D->hasAttr<CallbackAttr>()) {
3611     S.Diag(AL.getLoc(), diag::err_callback_attribute_multiple) << AL.getRange();
3612     return;
3613   }
3614 
3615   D->addAttr(::new (S.Context) CallbackAttr(
3616       AL.getRange(), S.Context, EncodingIndices.data(), EncodingIndices.size(),
3617       AL.getAttributeSpellingListIndex()));
3618 }
3619 
3620 static void handleTransparentUnionAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3621   // Try to find the underlying union declaration.
3622   RecordDecl *RD = nullptr;
3623   const auto *TD = dyn_cast<TypedefNameDecl>(D);
3624   if (TD && TD->getUnderlyingType()->isUnionType())
3625     RD = TD->getUnderlyingType()->getAsUnionType()->getDecl();
3626   else
3627     RD = dyn_cast<RecordDecl>(D);
3628 
3629   if (!RD || !RD->isUnion()) {
3630     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) << AL
3631                                                               << ExpectedUnion;
3632     return;
3633   }
3634 
3635   if (!RD->isCompleteDefinition()) {
3636     if (!RD->isBeingDefined())
3637       S.Diag(AL.getLoc(),
3638              diag::warn_transparent_union_attribute_not_definition);
3639     return;
3640   }
3641 
3642   RecordDecl::field_iterator Field = RD->field_begin(),
3643                           FieldEnd = RD->field_end();
3644   if (Field == FieldEnd) {
3645     S.Diag(AL.getLoc(), diag::warn_transparent_union_attribute_zero_fields);
3646     return;
3647   }
3648 
3649   FieldDecl *FirstField = *Field;
3650   QualType FirstType = FirstField->getType();
3651   if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
3652     S.Diag(FirstField->getLocation(),
3653            diag::warn_transparent_union_attribute_floating)
3654       << FirstType->isVectorType() << FirstType;
3655     return;
3656   }
3657 
3658   if (FirstType->isIncompleteType())
3659     return;
3660   uint64_t FirstSize = S.Context.getTypeSize(FirstType);
3661   uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
3662   for (; Field != FieldEnd; ++Field) {
3663     QualType FieldType = Field->getType();
3664     if (FieldType->isIncompleteType())
3665       return;
3666     // FIXME: this isn't fully correct; we also need to test whether the
3667     // members of the union would all have the same calling convention as the
3668     // first member of the union. Checking just the size and alignment isn't
3669     // sufficient (consider structs passed on the stack instead of in registers
3670     // as an example).
3671     if (S.Context.getTypeSize(FieldType) != FirstSize ||
3672         S.Context.getTypeAlign(FieldType) > FirstAlign) {
3673       // Warn if we drop the attribute.
3674       bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
3675       unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType)
3676                                  : S.Context.getTypeAlign(FieldType);
3677       S.Diag(Field->getLocation(),
3678           diag::warn_transparent_union_attribute_field_size_align)
3679         << isSize << Field->getDeclName() << FieldBits;
3680       unsigned FirstBits = isSize? FirstSize : FirstAlign;
3681       S.Diag(FirstField->getLocation(),
3682              diag::note_transparent_union_first_field_size_align)
3683         << isSize << FirstBits;
3684       return;
3685     }
3686   }
3687 
3688   RD->addAttr(::new (S.Context)
3689               TransparentUnionAttr(AL.getRange(), S.Context,
3690                                    AL.getAttributeSpellingListIndex()));
3691 }
3692 
3693 static void handleAnnotateAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3694   // Make sure that there is a string literal as the annotation's single
3695   // argument.
3696   StringRef Str;
3697   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str))
3698     return;
3699 
3700   // Don't duplicate annotations that are already set.
3701   for (const auto *I : D->specific_attrs<AnnotateAttr>()) {
3702     if (I->getAnnotation() == Str)
3703       return;
3704   }
3705 
3706   D->addAttr(::new (S.Context)
3707              AnnotateAttr(AL.getRange(), S.Context, Str,
3708                           AL.getAttributeSpellingListIndex()));
3709 }
3710 
3711 static void handleAlignValueAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3712   S.AddAlignValueAttr(AL.getRange(), D, AL.getArgAsExpr(0),
3713                       AL.getAttributeSpellingListIndex());
3714 }
3715 
3716 void Sema::AddAlignValueAttr(SourceRange AttrRange, Decl *D, Expr *E,
3717                              unsigned SpellingListIndex) {
3718   AlignValueAttr TmpAttr(AttrRange, Context, E, SpellingListIndex);
3719   SourceLocation AttrLoc = AttrRange.getBegin();
3720 
3721   QualType T;
3722   if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
3723     T = TD->getUnderlyingType();
3724   else if (const auto *VD = dyn_cast<ValueDecl>(D))
3725     T = VD->getType();
3726   else
3727     llvm_unreachable("Unknown decl type for align_value");
3728 
3729   if (!T->isDependentType() && !T->isAnyPointerType() &&
3730       !T->isReferenceType() && !T->isMemberPointerType()) {
3731     Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only)
3732       << &TmpAttr /*TmpAttr.getName()*/ << T << D->getSourceRange();
3733     return;
3734   }
3735 
3736   if (!E->isValueDependent()) {
3737     llvm::APSInt Alignment;
3738     ExprResult ICE
3739       = VerifyIntegerConstantExpression(E, &Alignment,
3740           diag::err_align_value_attribute_argument_not_int,
3741             /*AllowFold*/ false);
3742     if (ICE.isInvalid())
3743       return;
3744 
3745     if (!Alignment.isPowerOf2()) {
3746       Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3747         << E->getSourceRange();
3748       return;
3749     }
3750 
3751     D->addAttr(::new (Context)
3752                AlignValueAttr(AttrRange, Context, ICE.get(),
3753                SpellingListIndex));
3754     return;
3755   }
3756 
3757   // Save dependent expressions in the AST to be instantiated.
3758   D->addAttr(::new (Context) AlignValueAttr(TmpAttr));
3759 }
3760 
3761 static void handleAlignedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
3762   // check the attribute arguments.
3763   if (AL.getNumArgs() > 1) {
3764     S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) << AL << 1;
3765     return;
3766   }
3767 
3768   if (AL.getNumArgs() == 0) {
3769     D->addAttr(::new (S.Context) AlignedAttr(AL.getRange(), S.Context,
3770                true, nullptr, AL.getAttributeSpellingListIndex()));
3771     return;
3772   }
3773 
3774   Expr *E = AL.getArgAsExpr(0);
3775   if (AL.isPackExpansion() && !E->containsUnexpandedParameterPack()) {
3776     S.Diag(AL.getEllipsisLoc(),
3777            diag::err_pack_expansion_without_parameter_packs);
3778     return;
3779   }
3780 
3781   if (!AL.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E))
3782     return;
3783 
3784   S.AddAlignedAttr(AL.getRange(), D, E, AL.getAttributeSpellingListIndex(),
3785                    AL.isPackExpansion());
3786 }
3787 
3788 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E,
3789                           unsigned SpellingListIndex, bool IsPackExpansion) {
3790   AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex);
3791   SourceLocation AttrLoc = AttrRange.getBegin();
3792 
3793   // C++11 alignas(...) and C11 _Alignas(...) have additional requirements.
3794   if (TmpAttr.isAlignas()) {
3795     // C++11 [dcl.align]p1:
3796     //   An alignment-specifier may be applied to a variable or to a class
3797     //   data member, but it shall not be applied to a bit-field, a function
3798     //   parameter, the formal parameter of a catch clause, or a variable
3799     //   declared with the register storage class specifier. An
3800     //   alignment-specifier may also be applied to the declaration of a class
3801     //   or enumeration type.
3802     // C11 6.7.5/2:
3803     //   An alignment attribute shall not be specified in a declaration of
3804     //   a typedef, or a bit-field, or a function, or a parameter, or an
3805     //   object declared with the register storage-class specifier.
3806     int DiagKind = -1;
3807     if (isa<ParmVarDecl>(D)) {
3808       DiagKind = 0;
3809     } else if (const auto *VD = dyn_cast<VarDecl>(D)) {
3810       if (VD->getStorageClass() == SC_Register)
3811         DiagKind = 1;
3812       if (VD->isExceptionVariable())
3813         DiagKind = 2;
3814     } else if (const auto *FD = dyn_cast<FieldDecl>(D)) {
3815       if (FD->isBitField())
3816         DiagKind = 3;
3817     } else if (!isa<TagDecl>(D)) {
3818       Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr
3819         << (TmpAttr.isC11() ? ExpectedVariableOrField
3820                             : ExpectedVariableFieldOrTag);
3821       return;
3822     }
3823     if (DiagKind != -1) {
3824       Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type)
3825         << &TmpAttr << DiagKind;
3826       return;
3827     }
3828   }
3829 
3830   if (E->isValueDependent()) {
3831     // We can't support a dependent alignment on a non-dependent type,
3832     // because we have no way to model that a type is "alignment-dependent"
3833     // but not dependent in any other way.
3834     if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) {
3835       if (!TND->getUnderlyingType()->isDependentType()) {
3836         Diag(AttrLoc, diag::err_alignment_dependent_typedef_name)
3837             << E->getSourceRange();
3838         return;
3839       }
3840     }
3841 
3842     // Save dependent expressions in the AST to be instantiated.
3843     AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr);
3844     AA->setPackExpansion(IsPackExpansion);
3845     D->addAttr(AA);
3846     return;
3847   }
3848 
3849   // FIXME: Cache the number on the AL object?
3850   llvm::APSInt Alignment;
3851   ExprResult ICE
3852     = VerifyIntegerConstantExpression(E, &Alignment,
3853         diag::err_aligned_attribute_argument_not_int,
3854         /*AllowFold*/ false);
3855   if (ICE.isInvalid())
3856     return;
3857 
3858   uint64_t AlignVal = Alignment.getZExtValue();
3859 
3860   // C++11 [dcl.align]p2:
3861   //   -- if the constant expression evaluates to zero, the alignment
3862   //      specifier shall have no effect
3863   // C11 6.7.5p6:
3864   //   An alignment specification of zero has no effect.
3865   if (!(TmpAttr.isAlignas() && !Alignment)) {
3866     if (!llvm::isPowerOf2_64(AlignVal)) {
3867       Diag(AttrLoc, diag::err_alignment_not_power_of_two)
3868         << E->getSourceRange();
3869       return;
3870     }
3871   }
3872 
3873   // Alignment calculations can wrap around if it's greater than 2**28.
3874   unsigned MaxValidAlignment =
3875       Context.getTargetInfo().getTriple().isOSBinFormatCOFF() ? 8192
3876                                                               : 268435456;
3877   if (AlignVal > MaxValidAlignment) {
3878     Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment
3879                                                          << E->getSourceRange();
3880     return;
3881   }
3882 
3883   if (Context.getTargetInfo().isTLSSupported()) {
3884     unsigned MaxTLSAlign =
3885         Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign())
3886             .getQuantity();
3887     const auto *VD = dyn_cast<VarDecl>(D);
3888     if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD &&
3889         VD->getTLSKind() != VarDecl::TLS_None) {
3890       Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum)
3891           << (unsigned)AlignVal << VD << MaxTLSAlign;
3892       return;
3893     }
3894   }
3895 
3896   AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true,
3897                                                 ICE.get(), SpellingListIndex);
3898   AA->setPackExpansion(IsPackExpansion);
3899   D->addAttr(AA);
3900 }
3901 
3902 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS,
3903                           unsigned SpellingListIndex, bool IsPackExpansion) {
3904   // FIXME: Cache the number on the AL object if non-dependent?
3905   // FIXME: Perform checking of type validity
3906   AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS,
3907                                                 SpellingListIndex);
3908   AA->setPackExpansion(IsPackExpansion);
3909   D->addAttr(AA);
3910 }
3911 
3912 void Sema::CheckAlignasUnderalignment(Decl *D) {
3913   assert(D->hasAttrs() && "no attributes on decl");
3914 
3915   QualType UnderlyingTy, DiagTy;
3916   if (const auto *VD = dyn_cast<ValueDecl>(D)) {
3917     UnderlyingTy = DiagTy = VD->getType();
3918   } else {
3919     UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D));
3920     if (const auto *ED = dyn_cast<EnumDecl>(D))
3921       UnderlyingTy = ED->getIntegerType();
3922   }
3923   if (DiagTy->isDependentType() || DiagTy->isIncompleteType())
3924     return;
3925 
3926   // C++11 [dcl.align]p5, C11 6.7.5/4:
3927   //   The combined effect of all alignment attributes in a declaration shall
3928   //   not specify an alignment that is less strict than the alignment that
3929   //   would otherwise be required for the entity being declared.
3930   AlignedAttr *AlignasAttr = nullptr;
3931   unsigned Align = 0;
3932   for (auto *I : D->specific_attrs<AlignedAttr>()) {
3933     if (I->isAlignmentDependent())
3934       return;
3935     if (I->isAlignas())
3936       AlignasAttr = I;
3937     Align = std::max(Align, I->getAlignment(Context));
3938   }
3939 
3940   if (AlignasAttr && Align) {
3941     CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align);
3942     CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy);
3943     if (NaturalAlign > RequestedAlign)
3944       Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned)
3945         << DiagTy << (unsigned)NaturalAlign.getQuantity();
3946   }
3947 }
3948 
3949 bool Sema::checkMSInheritanceAttrOnDefinition(
3950     CXXRecordDecl *RD, SourceRange Range, bool BestCase,
3951     MSInheritanceAttr::Spelling SemanticSpelling) {
3952   assert(RD->hasDefinition() && "RD has no definition!");
3953 
3954   // We may not have seen base specifiers or any virtual methods yet.  We will
3955   // have to wait until the record is defined to catch any mismatches.
3956   if (!RD->getDefinition()->isCompleteDefinition())
3957     return false;
3958 
3959   // The unspecified model never matches what a definition could need.
3960   if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance)
3961     return false;
3962 
3963   if (BestCase) {
3964     if (RD->calculateInheritanceModel() == SemanticSpelling)
3965       return false;
3966   } else {
3967     if (RD->calculateInheritanceModel() <= SemanticSpelling)
3968       return false;
3969   }
3970 
3971   Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance)
3972       << 0 /*definition*/;
3973   Diag(RD->getDefinition()->getLocation(), diag::note_defined_here)
3974       << RD->getNameAsString();
3975   return true;
3976 }
3977 
3978 /// parseModeAttrArg - Parses attribute mode string and returns parsed type
3979 /// attribute.
3980 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth,
3981                              bool &IntegerMode, bool &ComplexMode) {
3982   IntegerMode = true;
3983   ComplexMode = false;
3984   switch (Str.size()) {
3985   case 2:
3986     switch (Str[0]) {
3987     case 'Q':
3988       DestWidth = 8;
3989       break;
3990     case 'H':
3991       DestWidth = 16;
3992       break;
3993     case 'S':
3994       DestWidth = 32;
3995       break;
3996     case 'D':
3997       DestWidth = 64;
3998       break;
3999     case 'X':
4000       DestWidth = 96;
4001       break;
4002     case 'T':
4003       DestWidth = 128;
4004       break;
4005     }
4006     if (Str[1] == 'F') {
4007       IntegerMode = false;
4008     } else if (Str[1] == 'C') {
4009       IntegerMode = false;
4010       ComplexMode = true;
4011     } else if (Str[1] != 'I') {
4012       DestWidth = 0;
4013     }
4014     break;
4015   case 4:
4016     // FIXME: glibc uses 'word' to define register_t; this is narrower than a
4017     // pointer on PIC16 and other embedded platforms.
4018     if (Str == "word")
4019       DestWidth = S.Context.getTargetInfo().getRegisterWidth();
4020     else if (Str == "byte")
4021       DestWidth = S.Context.getTargetInfo().getCharWidth();
4022     break;
4023   case 7:
4024     if (Str == "pointer")
4025       DestWidth = S.Context.getTargetInfo().getPointerWidth(0);
4026     break;
4027   case 11:
4028     if (Str == "unwind_word")
4029       DestWidth = S.Context.getTargetInfo().getUnwindWordWidth();
4030     break;
4031   }
4032 }
4033 
4034 /// handleModeAttr - This attribute modifies the width of a decl with primitive
4035 /// type.
4036 ///
4037 /// Despite what would be logical, the mode attribute is a decl attribute, not a
4038 /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be
4039 /// HImode, not an intermediate pointer.
4040 static void handleModeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4041   // This attribute isn't documented, but glibc uses it.  It changes
4042   // the width of an int or unsigned int to the specified size.
4043   if (!AL.isArgIdent(0)) {
4044     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
4045         << AL << AANT_ArgumentIdentifier;
4046     return;
4047   }
4048 
4049   IdentifierInfo *Name = AL.getArgAsIdent(0)->Ident;
4050 
4051   S.AddModeAttr(AL.getRange(), D, Name, AL.getAttributeSpellingListIndex());
4052 }
4053 
4054 void Sema::AddModeAttr(SourceRange AttrRange, Decl *D, IdentifierInfo *Name,
4055                        unsigned SpellingListIndex, bool InInstantiation) {
4056   StringRef Str = Name->getName();
4057   normalizeName(Str);
4058   SourceLocation AttrLoc = AttrRange.getBegin();
4059 
4060   unsigned DestWidth = 0;
4061   bool IntegerMode = true;
4062   bool ComplexMode = false;
4063   llvm::APInt VectorSize(64, 0);
4064   if (Str.size() >= 4 && Str[0] == 'V') {
4065     // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2).
4066     size_t StrSize = Str.size();
4067     size_t VectorStringLength = 0;
4068     while ((VectorStringLength + 1) < StrSize &&
4069            isdigit(Str[VectorStringLength + 1]))
4070       ++VectorStringLength;
4071     if (VectorStringLength &&
4072         !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) &&
4073         VectorSize.isPowerOf2()) {
4074       parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth,
4075                        IntegerMode, ComplexMode);
4076       // Avoid duplicate warning from template instantiation.
4077       if (!InInstantiation)
4078         Diag(AttrLoc, diag::warn_vector_mode_deprecated);
4079     } else {
4080       VectorSize = 0;
4081     }
4082   }
4083 
4084   if (!VectorSize)
4085     parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode);
4086 
4087   // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t
4088   // and friends, at least with glibc.
4089   // FIXME: Make sure floating-point mappings are accurate
4090   // FIXME: Support XF and TF types
4091   if (!DestWidth) {
4092     Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name;
4093     return;
4094   }
4095 
4096   QualType OldTy;
4097   if (const auto *TD = dyn_cast<TypedefNameDecl>(D))
4098     OldTy = TD->getUnderlyingType();
4099   else if (const auto *ED = dyn_cast<EnumDecl>(D)) {
4100     // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'.
4101     // Try to get type from enum declaration, default to int.
4102     OldTy = ED->getIntegerType();
4103     if (OldTy.isNull())
4104       OldTy = Context.IntTy;
4105   } else
4106     OldTy = cast<ValueDecl>(D)->getType();
4107 
4108   if (OldTy->isDependentType()) {
4109     D->addAttr(::new (Context)
4110                ModeAttr(AttrRange, Context, Name, SpellingListIndex));
4111     return;
4112   }
4113 
4114   // Base type can also be a vector type (see PR17453).
4115   // Distinguish between base type and base element type.
4116   QualType OldElemTy = OldTy;
4117   if (const auto *VT = OldTy->getAs<VectorType>())
4118     OldElemTy = VT->getElementType();
4119 
4120   // GCC allows 'mode' attribute on enumeration types (even incomplete), except
4121   // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete
4122   // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected.
4123   if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) &&
4124       VectorSize.getBoolValue()) {
4125     Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << AttrRange;
4126     return;
4127   }
4128   bool IntegralOrAnyEnumType =
4129       OldElemTy->isIntegralOrEnumerationType() || OldElemTy->getAs<EnumType>();
4130 
4131   if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() &&
4132       !IntegralOrAnyEnumType)
4133     Diag(AttrLoc, diag::err_mode_not_primitive);
4134   else if (IntegerMode) {
4135     if (!IntegralOrAnyEnumType)
4136       Diag(AttrLoc, diag::err_mode_wrong_type);
4137   } else if (ComplexMode) {
4138     if (!OldElemTy->isComplexType())
4139       Diag(AttrLoc, diag::err_mode_wrong_type);
4140   } else {
4141     if (!OldElemTy->isFloatingType())
4142       Diag(AttrLoc, diag::err_mode_wrong_type);
4143   }
4144 
4145   QualType NewElemTy;
4146 
4147   if (IntegerMode)
4148     NewElemTy = Context.getIntTypeForBitwidth(DestWidth,
4149                                               OldElemTy->isSignedIntegerType());
4150   else
4151     NewElemTy = Context.getRealTypeForBitwidth(DestWidth);
4152 
4153   if (NewElemTy.isNull()) {
4154     Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name;
4155     return;
4156   }
4157 
4158   if (ComplexMode) {
4159     NewElemTy = Context.getComplexType(NewElemTy);
4160   }
4161 
4162   QualType NewTy = NewElemTy;
4163   if (VectorSize.getBoolValue()) {
4164     NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(),
4165                                   VectorType::GenericVector);
4166   } else if (const auto *OldVT = OldTy->getAs<VectorType>()) {
4167     // Complex machine mode does not support base vector types.
4168     if (ComplexMode) {
4169       Diag(AttrLoc, diag::err_complex_mode_vector_type);
4170       return;
4171     }
4172     unsigned NumElements = Context.getTypeSize(OldElemTy) *
4173                            OldVT->getNumElements() /
4174                            Context.getTypeSize(NewElemTy);
4175     NewTy =
4176         Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind());
4177   }
4178 
4179   if (NewTy.isNull()) {
4180     Diag(AttrLoc, diag::err_mode_wrong_type);
4181     return;
4182   }
4183 
4184   // Install the new type.
4185   if (auto *TD = dyn_cast<TypedefNameDecl>(D))
4186     TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy);
4187   else if (auto *ED = dyn_cast<EnumDecl>(D))
4188     ED->setIntegerType(NewTy);
4189   else
4190     cast<ValueDecl>(D)->setType(NewTy);
4191 
4192   D->addAttr(::new (Context)
4193              ModeAttr(AttrRange, Context, Name, SpellingListIndex));
4194 }
4195 
4196 static void handleNoDebugAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4197   D->addAttr(::new (S.Context)
4198              NoDebugAttr(AL.getRange(), S.Context,
4199                          AL.getAttributeSpellingListIndex()));
4200 }
4201 
4202 AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D, SourceRange Range,
4203                                               IdentifierInfo *Ident,
4204                                               unsigned AttrSpellingListIndex) {
4205   if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4206     Diag(Range.getBegin(), diag::warn_attribute_ignored) << Ident;
4207     Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4208     return nullptr;
4209   }
4210 
4211   if (D->hasAttr<AlwaysInlineAttr>())
4212     return nullptr;
4213 
4214   return ::new (Context) AlwaysInlineAttr(Range, Context,
4215                                           AttrSpellingListIndex);
4216 }
4217 
4218 CommonAttr *Sema::mergeCommonAttr(Decl *D, const ParsedAttr &AL) {
4219   if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
4220     return nullptr;
4221 
4222   return ::new (Context)
4223       CommonAttr(AL.getRange(), Context, AL.getAttributeSpellingListIndex());
4224 }
4225 
4226 CommonAttr *Sema::mergeCommonAttr(Decl *D, const CommonAttr &AL) {
4227   if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, AL))
4228     return nullptr;
4229 
4230   return ::new (Context)
4231       CommonAttr(AL.getRange(), Context, AL.getSpellingListIndex());
4232 }
4233 
4234 InternalLinkageAttr *Sema::mergeInternalLinkageAttr(Decl *D,
4235                                                     const ParsedAttr &AL) {
4236   if (const auto *VD = dyn_cast<VarDecl>(D)) {
4237     // Attribute applies to Var but not any subclass of it (like ParmVar,
4238     // ImplicitParm or VarTemplateSpecialization).
4239     if (VD->getKind() != Decl::Var) {
4240       Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
4241           << AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4242                                             : ExpectedVariableOrFunction);
4243       return nullptr;
4244     }
4245     // Attribute does not apply to non-static local variables.
4246     if (VD->hasLocalStorage()) {
4247       Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4248       return nullptr;
4249     }
4250   }
4251 
4252   if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
4253     return nullptr;
4254 
4255   return ::new (Context) InternalLinkageAttr(
4256       AL.getRange(), Context, AL.getAttributeSpellingListIndex());
4257 }
4258 InternalLinkageAttr *
4259 Sema::mergeInternalLinkageAttr(Decl *D, const InternalLinkageAttr &AL) {
4260   if (const auto *VD = dyn_cast<VarDecl>(D)) {
4261     // Attribute applies to Var but not any subclass of it (like ParmVar,
4262     // ImplicitParm or VarTemplateSpecialization).
4263     if (VD->getKind() != Decl::Var) {
4264       Diag(AL.getLocation(), diag::warn_attribute_wrong_decl_type)
4265           << &AL << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass
4266                                              : ExpectedVariableOrFunction);
4267       return nullptr;
4268     }
4269     // Attribute does not apply to non-static local variables.
4270     if (VD->hasLocalStorage()) {
4271       Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage);
4272       return nullptr;
4273     }
4274   }
4275 
4276   if (checkAttrMutualExclusion<CommonAttr>(*this, D, AL))
4277     return nullptr;
4278 
4279   return ::new (Context)
4280       InternalLinkageAttr(AL.getRange(), Context, AL.getSpellingListIndex());
4281 }
4282 
4283 MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, SourceRange Range,
4284                                     unsigned AttrSpellingListIndex) {
4285   if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) {
4286     Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'minsize'";
4287     Diag(Optnone->getLocation(), diag::note_conflicting_attribute);
4288     return nullptr;
4289   }
4290 
4291   if (D->hasAttr<MinSizeAttr>())
4292     return nullptr;
4293 
4294   return ::new (Context) MinSizeAttr(Range, Context, AttrSpellingListIndex);
4295 }
4296 
4297 NoSpeculativeLoadHardeningAttr *Sema::mergeNoSpeculativeLoadHardeningAttr(
4298     Decl *D, const NoSpeculativeLoadHardeningAttr &AL) {
4299   if (checkAttrMutualExclusion<SpeculativeLoadHardeningAttr>(*this, D, AL))
4300     return nullptr;
4301 
4302   return ::new (Context) NoSpeculativeLoadHardeningAttr(
4303       AL.getRange(), Context, AL.getSpellingListIndex());
4304 }
4305 
4306 OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D, SourceRange Range,
4307                                               unsigned AttrSpellingListIndex) {
4308   if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) {
4309     Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline;
4310     Diag(Range.getBegin(), diag::note_conflicting_attribute);
4311     D->dropAttr<AlwaysInlineAttr>();
4312   }
4313   if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) {
4314     Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize;
4315     Diag(Range.getBegin(), diag::note_conflicting_attribute);
4316     D->dropAttr<MinSizeAttr>();
4317   }
4318 
4319   if (D->hasAttr<OptimizeNoneAttr>())
4320     return nullptr;
4321 
4322   return ::new (Context) OptimizeNoneAttr(Range, Context,
4323                                           AttrSpellingListIndex);
4324 }
4325 
4326 SpeculativeLoadHardeningAttr *Sema::mergeSpeculativeLoadHardeningAttr(
4327     Decl *D, const SpeculativeLoadHardeningAttr &AL) {
4328   if (checkAttrMutualExclusion<NoSpeculativeLoadHardeningAttr>(*this, D, AL))
4329     return nullptr;
4330 
4331   return ::new (Context) SpeculativeLoadHardeningAttr(
4332       AL.getRange(), Context, AL.getSpellingListIndex());
4333 }
4334 
4335 static void handleAlwaysInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4336   if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, AL))
4337     return;
4338 
4339   if (AlwaysInlineAttr *Inline = S.mergeAlwaysInlineAttr(
4340           D, AL.getRange(), AL.getName(),
4341           AL.getAttributeSpellingListIndex()))
4342     D->addAttr(Inline);
4343 }
4344 
4345 static void handleMinSizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4346   if (MinSizeAttr *MinSize = S.mergeMinSizeAttr(
4347           D, AL.getRange(), AL.getAttributeSpellingListIndex()))
4348     D->addAttr(MinSize);
4349 }
4350 
4351 static void handleOptimizeNoneAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4352   if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr(
4353           D, AL.getRange(), AL.getAttributeSpellingListIndex()))
4354     D->addAttr(Optnone);
4355 }
4356 
4357 static void handleConstantAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4358   if (checkAttrMutualExclusion<CUDASharedAttr>(S, D, AL))
4359     return;
4360   const auto *VD = cast<VarDecl>(D);
4361   if (!VD->hasGlobalStorage()) {
4362     S.Diag(AL.getLoc(), diag::err_cuda_nonglobal_constant);
4363     return;
4364   }
4365   D->addAttr(::new (S.Context) CUDAConstantAttr(
4366       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
4367 }
4368 
4369 static void handleSharedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4370   if (checkAttrMutualExclusion<CUDAConstantAttr>(S, D, AL))
4371     return;
4372   const auto *VD = cast<VarDecl>(D);
4373   // extern __shared__ is only allowed on arrays with no length (e.g.
4374   // "int x[]").
4375   if (!S.getLangOpts().GPURelocatableDeviceCode && VD->hasExternalStorage() &&
4376       !isa<IncompleteArrayType>(VD->getType())) {
4377     S.Diag(AL.getLoc(), diag::err_cuda_extern_shared) << VD;
4378     return;
4379   }
4380   if (S.getLangOpts().CUDA && VD->hasLocalStorage() &&
4381       S.CUDADiagIfHostCode(AL.getLoc(), diag::err_cuda_host_shared)
4382           << S.CurrentCUDATarget())
4383     return;
4384   D->addAttr(::new (S.Context) CUDASharedAttr(
4385       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
4386 }
4387 
4388 static void handleGlobalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4389   if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, AL) ||
4390       checkAttrMutualExclusion<CUDAHostAttr>(S, D, AL)) {
4391     return;
4392   }
4393   const auto *FD = cast<FunctionDecl>(D);
4394   if (!FD->getReturnType()->isVoidType()) {
4395     SourceRange RTRange = FD->getReturnTypeSourceRange();
4396     S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return)
4397         << FD->getType()
4398         << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void")
4399                               : FixItHint());
4400     return;
4401   }
4402   if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) {
4403     if (Method->isInstance()) {
4404       S.Diag(Method->getBeginLoc(), diag::err_kern_is_nonstatic_method)
4405           << Method;
4406       return;
4407     }
4408     S.Diag(Method->getBeginLoc(), diag::warn_kern_is_method) << Method;
4409   }
4410   // Only warn for "inline" when compiling for host, to cut down on noise.
4411   if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice)
4412     S.Diag(FD->getBeginLoc(), diag::warn_kern_is_inline) << FD;
4413 
4414   D->addAttr(::new (S.Context)
4415               CUDAGlobalAttr(AL.getRange(), S.Context,
4416                              AL.getAttributeSpellingListIndex()));
4417 }
4418 
4419 static void handleGNUInlineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4420   const auto *Fn = cast<FunctionDecl>(D);
4421   if (!Fn->isInlineSpecified()) {
4422     S.Diag(AL.getLoc(), diag::warn_gnu_inline_attribute_requires_inline);
4423     return;
4424   }
4425 
4426   D->addAttr(::new (S.Context)
4427              GNUInlineAttr(AL.getRange(), S.Context,
4428                            AL.getAttributeSpellingListIndex()));
4429 }
4430 
4431 static void handleCallConvAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4432   if (hasDeclarator(D)) return;
4433 
4434   // Diagnostic is emitted elsewhere: here we store the (valid) AL
4435   // in the Decl node for syntactic reasoning, e.g., pretty-printing.
4436   CallingConv CC;
4437   if (S.CheckCallingConvAttr(AL, CC, /*FD*/nullptr))
4438     return;
4439 
4440   if (!isa<ObjCMethodDecl>(D)) {
4441     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
4442         << AL << ExpectedFunctionOrMethod;
4443     return;
4444   }
4445 
4446   switch (AL.getKind()) {
4447   case ParsedAttr::AT_FastCall:
4448     D->addAttr(::new (S.Context)
4449                FastCallAttr(AL.getRange(), S.Context,
4450                             AL.getAttributeSpellingListIndex()));
4451     return;
4452   case ParsedAttr::AT_StdCall:
4453     D->addAttr(::new (S.Context)
4454                StdCallAttr(AL.getRange(), S.Context,
4455                            AL.getAttributeSpellingListIndex()));
4456     return;
4457   case ParsedAttr::AT_ThisCall:
4458     D->addAttr(::new (S.Context)
4459                ThisCallAttr(AL.getRange(), S.Context,
4460                             AL.getAttributeSpellingListIndex()));
4461     return;
4462   case ParsedAttr::AT_CDecl:
4463     D->addAttr(::new (S.Context)
4464                CDeclAttr(AL.getRange(), S.Context,
4465                          AL.getAttributeSpellingListIndex()));
4466     return;
4467   case ParsedAttr::AT_Pascal:
4468     D->addAttr(::new (S.Context)
4469                PascalAttr(AL.getRange(), S.Context,
4470                           AL.getAttributeSpellingListIndex()));
4471     return;
4472   case ParsedAttr::AT_SwiftCall:
4473     D->addAttr(::new (S.Context)
4474                SwiftCallAttr(AL.getRange(), S.Context,
4475                              AL.getAttributeSpellingListIndex()));
4476     return;
4477   case ParsedAttr::AT_VectorCall:
4478     D->addAttr(::new (S.Context)
4479                VectorCallAttr(AL.getRange(), S.Context,
4480                               AL.getAttributeSpellingListIndex()));
4481     return;
4482   case ParsedAttr::AT_MSABI:
4483     D->addAttr(::new (S.Context)
4484                MSABIAttr(AL.getRange(), S.Context,
4485                          AL.getAttributeSpellingListIndex()));
4486     return;
4487   case ParsedAttr::AT_SysVABI:
4488     D->addAttr(::new (S.Context)
4489                SysVABIAttr(AL.getRange(), S.Context,
4490                            AL.getAttributeSpellingListIndex()));
4491     return;
4492   case ParsedAttr::AT_RegCall:
4493     D->addAttr(::new (S.Context) RegCallAttr(
4494         AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
4495     return;
4496   case ParsedAttr::AT_Pcs: {
4497     PcsAttr::PCSType PCS;
4498     switch (CC) {
4499     case CC_AAPCS:
4500       PCS = PcsAttr::AAPCS;
4501       break;
4502     case CC_AAPCS_VFP:
4503       PCS = PcsAttr::AAPCS_VFP;
4504       break;
4505     default:
4506       llvm_unreachable("unexpected calling convention in pcs attribute");
4507     }
4508 
4509     D->addAttr(::new (S.Context)
4510                PcsAttr(AL.getRange(), S.Context, PCS,
4511                        AL.getAttributeSpellingListIndex()));
4512     return;
4513   }
4514   case ParsedAttr::AT_AArch64VectorPcs:
4515     D->addAttr(::new(S.Context)
4516                AArch64VectorPcsAttr(AL.getRange(), S.Context,
4517                                     AL.getAttributeSpellingListIndex()));
4518     return;
4519   case ParsedAttr::AT_IntelOclBicc:
4520     D->addAttr(::new (S.Context)
4521                IntelOclBiccAttr(AL.getRange(), S.Context,
4522                                 AL.getAttributeSpellingListIndex()));
4523     return;
4524   case ParsedAttr::AT_PreserveMost:
4525     D->addAttr(::new (S.Context) PreserveMostAttr(
4526         AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
4527     return;
4528   case ParsedAttr::AT_PreserveAll:
4529     D->addAttr(::new (S.Context) PreserveAllAttr(
4530         AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
4531     return;
4532   default:
4533     llvm_unreachable("unexpected attribute kind");
4534   }
4535 }
4536 
4537 static void handleSuppressAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4538   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
4539     return;
4540 
4541   std::vector<StringRef> DiagnosticIdentifiers;
4542   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
4543     StringRef RuleName;
4544 
4545     if (!S.checkStringLiteralArgumentAttr(AL, I, RuleName, nullptr))
4546       return;
4547 
4548     // FIXME: Warn if the rule name is unknown. This is tricky because only
4549     // clang-tidy knows about available rules.
4550     DiagnosticIdentifiers.push_back(RuleName);
4551   }
4552   D->addAttr(::new (S.Context) SuppressAttr(
4553       AL.getRange(), S.Context, DiagnosticIdentifiers.data(),
4554       DiagnosticIdentifiers.size(), AL.getAttributeSpellingListIndex()));
4555 }
4556 
4557 static void handleLifetimeCategoryAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4558   TypeSourceInfo *DerefTypeLoc = nullptr;
4559   QualType ParmType;
4560   if (AL.hasParsedType()) {
4561     ParmType = S.GetTypeFromParser(AL.getTypeArg(), &DerefTypeLoc);
4562 
4563     unsigned SelectIdx = ~0U;
4564     if (ParmType->isVoidType())
4565       SelectIdx = 0;
4566     else if (ParmType->isReferenceType())
4567       SelectIdx = 1;
4568     else if (ParmType->isArrayType())
4569       SelectIdx = 2;
4570 
4571     if (SelectIdx != ~0U) {
4572       S.Diag(AL.getLoc(), diag::err_attribute_invalid_argument)
4573           << SelectIdx << AL;
4574       return;
4575     }
4576   }
4577 
4578   // To check if earlier decl attributes do not conflict the newly parsed ones
4579   // we always add (and check) the attribute to the cannonical decl.
4580   D = D->getCanonicalDecl();
4581   if (AL.getKind() == ParsedAttr::AT_Owner) {
4582     if (checkAttrMutualExclusion<PointerAttr>(S, D, AL))
4583       return;
4584     if (const auto *OAttr = D->getAttr<OwnerAttr>()) {
4585       const Type *ExistingDerefType = OAttr->getDerefTypeLoc()
4586                                           ? OAttr->getDerefType().getTypePtr()
4587                                           : nullptr;
4588       if (ExistingDerefType != ParmType.getTypePtrOrNull()) {
4589         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
4590             << AL << OAttr;
4591         S.Diag(OAttr->getLocation(), diag::note_conflicting_attribute);
4592       }
4593       return;
4594     }
4595     D->addAttr(::new (S.Context)
4596                    OwnerAttr(AL.getRange(), S.Context, DerefTypeLoc,
4597                              AL.getAttributeSpellingListIndex()));
4598   } else {
4599     if (checkAttrMutualExclusion<OwnerAttr>(S, D, AL))
4600       return;
4601     if (const auto *PAttr = D->getAttr<PointerAttr>()) {
4602       const Type *ExistingDerefType = PAttr->getDerefTypeLoc()
4603                                           ? PAttr->getDerefType().getTypePtr()
4604                                           : nullptr;
4605       if (ExistingDerefType != ParmType.getTypePtrOrNull()) {
4606         S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible)
4607             << AL << PAttr;
4608         S.Diag(PAttr->getLocation(), diag::note_conflicting_attribute);
4609       }
4610       return;
4611     }
4612     D->addAttr(::new (S.Context)
4613                    PointerAttr(AL.getRange(), S.Context, DerefTypeLoc,
4614                                AL.getAttributeSpellingListIndex()));
4615   }
4616 }
4617 
4618 bool Sema::CheckCallingConvAttr(const ParsedAttr &Attrs, CallingConv &CC,
4619                                 const FunctionDecl *FD) {
4620   if (Attrs.isInvalid())
4621     return true;
4622 
4623   if (Attrs.hasProcessingCache()) {
4624     CC = (CallingConv) Attrs.getProcessingCache();
4625     return false;
4626   }
4627 
4628   unsigned ReqArgs = Attrs.getKind() == ParsedAttr::AT_Pcs ? 1 : 0;
4629   if (!checkAttributeNumArgs(*this, Attrs, ReqArgs)) {
4630     Attrs.setInvalid();
4631     return true;
4632   }
4633 
4634   // TODO: diagnose uses of these conventions on the wrong target.
4635   switch (Attrs.getKind()) {
4636   case ParsedAttr::AT_CDecl:
4637     CC = CC_C;
4638     break;
4639   case ParsedAttr::AT_FastCall:
4640     CC = CC_X86FastCall;
4641     break;
4642   case ParsedAttr::AT_StdCall:
4643     CC = CC_X86StdCall;
4644     break;
4645   case ParsedAttr::AT_ThisCall:
4646     CC = CC_X86ThisCall;
4647     break;
4648   case ParsedAttr::AT_Pascal:
4649     CC = CC_X86Pascal;
4650     break;
4651   case ParsedAttr::AT_SwiftCall:
4652     CC = CC_Swift;
4653     break;
4654   case ParsedAttr::AT_VectorCall:
4655     CC = CC_X86VectorCall;
4656     break;
4657   case ParsedAttr::AT_AArch64VectorPcs:
4658     CC = CC_AArch64VectorCall;
4659     break;
4660   case ParsedAttr::AT_RegCall:
4661     CC = CC_X86RegCall;
4662     break;
4663   case ParsedAttr::AT_MSABI:
4664     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C :
4665                                                              CC_Win64;
4666     break;
4667   case ParsedAttr::AT_SysVABI:
4668     CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV :
4669                                                              CC_C;
4670     break;
4671   case ParsedAttr::AT_Pcs: {
4672     StringRef StrRef;
4673     if (!checkStringLiteralArgumentAttr(Attrs, 0, StrRef)) {
4674       Attrs.setInvalid();
4675       return true;
4676     }
4677     if (StrRef == "aapcs") {
4678       CC = CC_AAPCS;
4679       break;
4680     } else if (StrRef == "aapcs-vfp") {
4681       CC = CC_AAPCS_VFP;
4682       break;
4683     }
4684 
4685     Attrs.setInvalid();
4686     Diag(Attrs.getLoc(), diag::err_invalid_pcs);
4687     return true;
4688   }
4689   case ParsedAttr::AT_IntelOclBicc:
4690     CC = CC_IntelOclBicc;
4691     break;
4692   case ParsedAttr::AT_PreserveMost:
4693     CC = CC_PreserveMost;
4694     break;
4695   case ParsedAttr::AT_PreserveAll:
4696     CC = CC_PreserveAll;
4697     break;
4698   default: llvm_unreachable("unexpected attribute kind");
4699   }
4700 
4701   TargetInfo::CallingConvCheckResult A = TargetInfo::CCCR_OK;
4702   const TargetInfo &TI = Context.getTargetInfo();
4703   // CUDA functions may have host and/or device attributes which indicate
4704   // their targeted execution environment, therefore the calling convention
4705   // of functions in CUDA should be checked against the target deduced based
4706   // on their host/device attributes.
4707   if (LangOpts.CUDA) {
4708     auto *Aux = Context.getAuxTargetInfo();
4709     auto CudaTarget = IdentifyCUDATarget(FD);
4710     bool CheckHost = false, CheckDevice = false;
4711     switch (CudaTarget) {
4712     case CFT_HostDevice:
4713       CheckHost = true;
4714       CheckDevice = true;
4715       break;
4716     case CFT_Host:
4717       CheckHost = true;
4718       break;
4719     case CFT_Device:
4720     case CFT_Global:
4721       CheckDevice = true;
4722       break;
4723     case CFT_InvalidTarget:
4724       llvm_unreachable("unexpected cuda target");
4725     }
4726     auto *HostTI = LangOpts.CUDAIsDevice ? Aux : &TI;
4727     auto *DeviceTI = LangOpts.CUDAIsDevice ? &TI : Aux;
4728     if (CheckHost && HostTI)
4729       A = HostTI->checkCallingConvention(CC);
4730     if (A == TargetInfo::CCCR_OK && CheckDevice && DeviceTI)
4731       A = DeviceTI->checkCallingConvention(CC);
4732   } else {
4733     A = TI.checkCallingConvention(CC);
4734   }
4735 
4736   switch (A) {
4737   case TargetInfo::CCCR_OK:
4738     break;
4739 
4740   case TargetInfo::CCCR_Ignore:
4741     // Treat an ignored convention as if it was an explicit C calling convention
4742     // attribute. For example, __stdcall on Win x64 functions as __cdecl, so
4743     // that command line flags that change the default convention to
4744     // __vectorcall don't affect declarations marked __stdcall.
4745     CC = CC_C;
4746     break;
4747 
4748   case TargetInfo::CCCR_Error:
4749     Diag(Attrs.getLoc(), diag::error_cconv_unsupported)
4750         << Attrs << (int)CallingConventionIgnoredReason::ForThisTarget;
4751     break;
4752 
4753   case TargetInfo::CCCR_Warning: {
4754     Diag(Attrs.getLoc(), diag::warn_cconv_unsupported)
4755         << Attrs << (int)CallingConventionIgnoredReason::ForThisTarget;
4756 
4757     // This convention is not valid for the target. Use the default function or
4758     // method calling convention.
4759     bool IsCXXMethod = false, IsVariadic = false;
4760     if (FD) {
4761       IsCXXMethod = FD->isCXXInstanceMember();
4762       IsVariadic = FD->isVariadic();
4763     }
4764     CC = Context.getDefaultCallingConvention(IsVariadic, IsCXXMethod);
4765     break;
4766   }
4767   }
4768 
4769   Attrs.setProcessingCache((unsigned) CC);
4770   return false;
4771 }
4772 
4773 /// Pointer-like types in the default address space.
4774 static bool isValidSwiftContextType(QualType Ty) {
4775   if (!Ty->hasPointerRepresentation())
4776     return Ty->isDependentType();
4777   return Ty->getPointeeType().getAddressSpace() == LangAS::Default;
4778 }
4779 
4780 /// Pointers and references in the default address space.
4781 static bool isValidSwiftIndirectResultType(QualType Ty) {
4782   if (const auto *PtrType = Ty->getAs<PointerType>()) {
4783     Ty = PtrType->getPointeeType();
4784   } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4785     Ty = RefType->getPointeeType();
4786   } else {
4787     return Ty->isDependentType();
4788   }
4789   return Ty.getAddressSpace() == LangAS::Default;
4790 }
4791 
4792 /// Pointers and references to pointers in the default address space.
4793 static bool isValidSwiftErrorResultType(QualType Ty) {
4794   if (const auto *PtrType = Ty->getAs<PointerType>()) {
4795     Ty = PtrType->getPointeeType();
4796   } else if (const auto *RefType = Ty->getAs<ReferenceType>()) {
4797     Ty = RefType->getPointeeType();
4798   } else {
4799     return Ty->isDependentType();
4800   }
4801   if (!Ty.getQualifiers().empty())
4802     return false;
4803   return isValidSwiftContextType(Ty);
4804 }
4805 
4806 static void handleParameterABIAttr(Sema &S, Decl *D, const ParsedAttr &Attrs,
4807                                    ParameterABI Abi) {
4808   S.AddParameterABIAttr(Attrs.getRange(), D, Abi,
4809                         Attrs.getAttributeSpellingListIndex());
4810 }
4811 
4812 void Sema::AddParameterABIAttr(SourceRange range, Decl *D, ParameterABI abi,
4813                                unsigned spellingIndex) {
4814 
4815   QualType type = cast<ParmVarDecl>(D)->getType();
4816 
4817   if (auto existingAttr = D->getAttr<ParameterABIAttr>()) {
4818     if (existingAttr->getABI() != abi) {
4819       Diag(range.getBegin(), diag::err_attributes_are_not_compatible)
4820         << getParameterABISpelling(abi) << existingAttr;
4821       Diag(existingAttr->getLocation(), diag::note_conflicting_attribute);
4822       return;
4823     }
4824   }
4825 
4826   switch (abi) {
4827   case ParameterABI::Ordinary:
4828     llvm_unreachable("explicit attribute for ordinary parameter ABI?");
4829 
4830   case ParameterABI::SwiftContext:
4831     if (!isValidSwiftContextType(type)) {
4832       Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4833         << getParameterABISpelling(abi)
4834         << /*pointer to pointer */ 0 << type;
4835     }
4836     D->addAttr(::new (Context)
4837                SwiftContextAttr(range, Context, spellingIndex));
4838     return;
4839 
4840   case ParameterABI::SwiftErrorResult:
4841     if (!isValidSwiftErrorResultType(type)) {
4842       Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4843         << getParameterABISpelling(abi)
4844         << /*pointer to pointer */ 1 << type;
4845     }
4846     D->addAttr(::new (Context)
4847                SwiftErrorResultAttr(range, Context, spellingIndex));
4848     return;
4849 
4850   case ParameterABI::SwiftIndirectResult:
4851     if (!isValidSwiftIndirectResultType(type)) {
4852       Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type)
4853         << getParameterABISpelling(abi)
4854         << /*pointer*/ 0 << type;
4855     }
4856     D->addAttr(::new (Context)
4857                SwiftIndirectResultAttr(range, Context, spellingIndex));
4858     return;
4859   }
4860   llvm_unreachable("bad parameter ABI attribute");
4861 }
4862 
4863 /// Checks a regparm attribute, returning true if it is ill-formed and
4864 /// otherwise setting numParams to the appropriate value.
4865 bool Sema::CheckRegparmAttr(const ParsedAttr &AL, unsigned &numParams) {
4866   if (AL.isInvalid())
4867     return true;
4868 
4869   if (!checkAttributeNumArgs(*this, AL, 1)) {
4870     AL.setInvalid();
4871     return true;
4872   }
4873 
4874   uint32_t NP;
4875   Expr *NumParamsExpr = AL.getArgAsExpr(0);
4876   if (!checkUInt32Argument(*this, AL, NumParamsExpr, NP)) {
4877     AL.setInvalid();
4878     return true;
4879   }
4880 
4881   if (Context.getTargetInfo().getRegParmMax() == 0) {
4882     Diag(AL.getLoc(), diag::err_attribute_regparm_wrong_platform)
4883       << NumParamsExpr->getSourceRange();
4884     AL.setInvalid();
4885     return true;
4886   }
4887 
4888   numParams = NP;
4889   if (numParams > Context.getTargetInfo().getRegParmMax()) {
4890     Diag(AL.getLoc(), diag::err_attribute_regparm_invalid_number)
4891       << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange();
4892     AL.setInvalid();
4893     return true;
4894   }
4895 
4896   return false;
4897 }
4898 
4899 // Checks whether an argument of launch_bounds attribute is
4900 // acceptable, performs implicit conversion to Rvalue, and returns
4901 // non-nullptr Expr result on success. Otherwise, it returns nullptr
4902 // and may output an error.
4903 static Expr *makeLaunchBoundsArgExpr(Sema &S, Expr *E,
4904                                      const CUDALaunchBoundsAttr &AL,
4905                                      const unsigned Idx) {
4906   if (S.DiagnoseUnexpandedParameterPack(E))
4907     return nullptr;
4908 
4909   // Accept template arguments for now as they depend on something else.
4910   // We'll get to check them when they eventually get instantiated.
4911   if (E->isValueDependent())
4912     return E;
4913 
4914   llvm::APSInt I(64);
4915   if (!E->isIntegerConstantExpr(I, S.Context)) {
4916     S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type)
4917         << &AL << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange();
4918     return nullptr;
4919   }
4920   // Make sure we can fit it in 32 bits.
4921   if (!I.isIntN(32)) {
4922     S.Diag(E->getExprLoc(), diag::err_ice_too_large) << I.toString(10, false)
4923                                                      << 32 << /* Unsigned */ 1;
4924     return nullptr;
4925   }
4926   if (I < 0)
4927     S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative)
4928         << &AL << Idx << E->getSourceRange();
4929 
4930   // We may need to perform implicit conversion of the argument.
4931   InitializedEntity Entity = InitializedEntity::InitializeParameter(
4932       S.Context, S.Context.getConstType(S.Context.IntTy), /*consume*/ false);
4933   ExprResult ValArg = S.PerformCopyInitialization(Entity, SourceLocation(), E);
4934   assert(!ValArg.isInvalid() &&
4935          "Unexpected PerformCopyInitialization() failure.");
4936 
4937   return ValArg.getAs<Expr>();
4938 }
4939 
4940 void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads,
4941                                Expr *MinBlocks, unsigned SpellingListIndex) {
4942   CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks,
4943                                SpellingListIndex);
4944   MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0);
4945   if (MaxThreads == nullptr)
4946     return;
4947 
4948   if (MinBlocks) {
4949     MinBlocks = makeLaunchBoundsArgExpr(*this, MinBlocks, TmpAttr, 1);
4950     if (MinBlocks == nullptr)
4951       return;
4952   }
4953 
4954   D->addAttr(::new (Context) CUDALaunchBoundsAttr(
4955       AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex));
4956 }
4957 
4958 static void handleLaunchBoundsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
4959   if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
4960       !checkAttributeAtMostNumArgs(S, AL, 2))
4961     return;
4962 
4963   S.AddLaunchBoundsAttr(AL.getRange(), D, AL.getArgAsExpr(0),
4964                         AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr,
4965                         AL.getAttributeSpellingListIndex());
4966 }
4967 
4968 static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D,
4969                                           const ParsedAttr &AL) {
4970   if (!AL.isArgIdent(0)) {
4971     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
4972         << AL << /* arg num = */ 1 << AANT_ArgumentIdentifier;
4973     return;
4974   }
4975 
4976   ParamIdx ArgumentIdx;
4977   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 2, AL.getArgAsExpr(1),
4978                                            ArgumentIdx))
4979     return;
4980 
4981   ParamIdx TypeTagIdx;
4982   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 3, AL.getArgAsExpr(2),
4983                                            TypeTagIdx))
4984     return;
4985 
4986   bool IsPointer = AL.getName()->getName() == "pointer_with_type_tag";
4987   if (IsPointer) {
4988     // Ensure that buffer has a pointer type.
4989     unsigned ArgumentIdxAST = ArgumentIdx.getASTIndex();
4990     if (ArgumentIdxAST >= getFunctionOrMethodNumParams(D) ||
4991         !getFunctionOrMethodParamType(D, ArgumentIdxAST)->isPointerType())
4992       S.Diag(AL.getLoc(), diag::err_attribute_pointers_only) << AL << 0;
4993   }
4994 
4995   D->addAttr(::new (S.Context) ArgumentWithTypeTagAttr(
4996       AL.getRange(), S.Context, AL.getArgAsIdent(0)->Ident, ArgumentIdx,
4997       TypeTagIdx, IsPointer, AL.getAttributeSpellingListIndex()));
4998 }
4999 
5000 static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D,
5001                                          const ParsedAttr &AL) {
5002   if (!AL.isArgIdent(0)) {
5003     S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type)
5004         << AL << 1 << AANT_ArgumentIdentifier;
5005     return;
5006   }
5007 
5008   if (!checkAttributeNumArgs(S, AL, 1))
5009     return;
5010 
5011   if (!isa<VarDecl>(D)) {
5012     S.Diag(AL.getLoc(), diag::err_attribute_wrong_decl_type)
5013         << AL << ExpectedVariable;
5014     return;
5015   }
5016 
5017   IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident;
5018   TypeSourceInfo *MatchingCTypeLoc = nullptr;
5019   S.GetTypeFromParser(AL.getMatchingCType(), &MatchingCTypeLoc);
5020   assert(MatchingCTypeLoc && "no type source info for attribute argument");
5021 
5022   D->addAttr(::new (S.Context)
5023              TypeTagForDatatypeAttr(AL.getRange(), S.Context, PointerKind,
5024                                     MatchingCTypeLoc,
5025                                     AL.getLayoutCompatible(),
5026                                     AL.getMustBeNull(),
5027                                     AL.getAttributeSpellingListIndex()));
5028 }
5029 
5030 static void handleXRayLogArgsAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5031   ParamIdx ArgCount;
5032 
5033   if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, AL.getArgAsExpr(0),
5034                                            ArgCount,
5035                                            true /* CanIndexImplicitThis */))
5036     return;
5037 
5038   // ArgCount isn't a parameter index [0;n), it's a count [1;n]
5039   D->addAttr(::new (S.Context) XRayLogArgsAttr(
5040       AL.getRange(), S.Context, ArgCount.getSourceIndex(),
5041       AL.getAttributeSpellingListIndex()));
5042 }
5043 
5044 //===----------------------------------------------------------------------===//
5045 // Checker-specific attribute handlers.
5046 //===----------------------------------------------------------------------===//
5047 static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType QT) {
5048   return QT->isDependentType() || QT->isObjCRetainableType();
5049 }
5050 
5051 static bool isValidSubjectOfNSAttribute(QualType QT) {
5052   return QT->isDependentType() || QT->isObjCObjectPointerType() ||
5053          QT->isObjCNSObjectType();
5054 }
5055 
5056 static bool isValidSubjectOfCFAttribute(QualType QT) {
5057   return QT->isDependentType() || QT->isPointerType() ||
5058          isValidSubjectOfNSAttribute(QT);
5059 }
5060 
5061 static bool isValidSubjectOfOSAttribute(QualType QT) {
5062   if (QT->isDependentType())
5063     return true;
5064   QualType PT = QT->getPointeeType();
5065   return !PT.isNull() && PT->getAsCXXRecordDecl() != nullptr;
5066 }
5067 
5068 void Sema::AddXConsumedAttr(Decl *D, SourceRange SR, unsigned SpellingIndex,
5069                             RetainOwnershipKind K,
5070                             bool IsTemplateInstantiation) {
5071   ValueDecl *VD = cast<ValueDecl>(D);
5072   switch (K) {
5073   case RetainOwnershipKind::OS:
5074     handleSimpleAttributeOrDiagnose<OSConsumedAttr>(
5075         *this, VD, SR, SpellingIndex, isValidSubjectOfOSAttribute(VD->getType()),
5076         diag::warn_ns_attribute_wrong_parameter_type,
5077         /*ExtraArgs=*/SR, "os_consumed", /*pointers*/ 1);
5078     return;
5079   case RetainOwnershipKind::NS:
5080     handleSimpleAttributeOrDiagnose<NSConsumedAttr>(
5081         *this, VD, SR, SpellingIndex, isValidSubjectOfNSAttribute(VD->getType()),
5082 
5083         // These attributes are normally just advisory, but in ARC, ns_consumed
5084         // is significant.  Allow non-dependent code to contain inappropriate
5085         // attributes even in ARC, but require template instantiations to be
5086         // set up correctly.
5087         ((IsTemplateInstantiation && getLangOpts().ObjCAutoRefCount)
5088              ? diag::err_ns_attribute_wrong_parameter_type
5089              : diag::warn_ns_attribute_wrong_parameter_type),
5090         /*ExtraArgs=*/SR, "ns_consumed", /*objc pointers*/ 0);
5091     return;
5092   case RetainOwnershipKind::CF:
5093     handleSimpleAttributeOrDiagnose<CFConsumedAttr>(
5094         *this, VD, SR, SpellingIndex,
5095         isValidSubjectOfCFAttribute(VD->getType()),
5096         diag::warn_ns_attribute_wrong_parameter_type,
5097         /*ExtraArgs=*/SR, "cf_consumed", /*pointers*/1);
5098     return;
5099   }
5100 }
5101 
5102 static Sema::RetainOwnershipKind
5103 parsedAttrToRetainOwnershipKind(const ParsedAttr &AL) {
5104   switch (AL.getKind()) {
5105   case ParsedAttr::AT_CFConsumed:
5106   case ParsedAttr::AT_CFReturnsRetained:
5107   case ParsedAttr::AT_CFReturnsNotRetained:
5108     return Sema::RetainOwnershipKind::CF;
5109   case ParsedAttr::AT_OSConsumesThis:
5110   case ParsedAttr::AT_OSConsumed:
5111   case ParsedAttr::AT_OSReturnsRetained:
5112   case ParsedAttr::AT_OSReturnsNotRetained:
5113   case ParsedAttr::AT_OSReturnsRetainedOnZero:
5114   case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
5115     return Sema::RetainOwnershipKind::OS;
5116   case ParsedAttr::AT_NSConsumesSelf:
5117   case ParsedAttr::AT_NSConsumed:
5118   case ParsedAttr::AT_NSReturnsRetained:
5119   case ParsedAttr::AT_NSReturnsNotRetained:
5120   case ParsedAttr::AT_NSReturnsAutoreleased:
5121     return Sema::RetainOwnershipKind::NS;
5122   default:
5123     llvm_unreachable("Wrong argument supplied");
5124   }
5125 }
5126 
5127 bool Sema::checkNSReturnsRetainedReturnType(SourceLocation Loc, QualType QT) {
5128   if (isValidSubjectOfNSReturnsRetainedAttribute(QT))
5129     return false;
5130 
5131   Diag(Loc, diag::warn_ns_attribute_wrong_return_type)
5132       << "'ns_returns_retained'" << 0 << 0;
5133   return true;
5134 }
5135 
5136 /// \return whether the parameter is a pointer to OSObject pointer.
5137 static bool isValidOSObjectOutParameter(const Decl *D) {
5138   const auto *PVD = dyn_cast<ParmVarDecl>(D);
5139   if (!PVD)
5140     return false;
5141   QualType QT = PVD->getType();
5142   QualType PT = QT->getPointeeType();
5143   return !PT.isNull() && isValidSubjectOfOSAttribute(PT);
5144 }
5145 
5146 static void handleXReturnsXRetainedAttr(Sema &S, Decl *D,
5147                                         const ParsedAttr &AL) {
5148   QualType ReturnType;
5149   Sema::RetainOwnershipKind K = parsedAttrToRetainOwnershipKind(AL);
5150 
5151   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
5152     ReturnType = MD->getReturnType();
5153   } else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) &&
5154              (AL.getKind() == ParsedAttr::AT_NSReturnsRetained)) {
5155     return; // ignore: was handled as a type attribute
5156   } else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) {
5157     ReturnType = PD->getType();
5158   } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
5159     ReturnType = FD->getReturnType();
5160   } else if (const auto *Param = dyn_cast<ParmVarDecl>(D)) {
5161     // Attributes on parameters are used for out-parameters,
5162     // passed as pointers-to-pointers.
5163     unsigned DiagID = K == Sema::RetainOwnershipKind::CF
5164             ? /*pointer-to-CF-pointer*/2
5165             : /*pointer-to-OSObject-pointer*/3;
5166     ReturnType = Param->getType()->getPointeeType();
5167     if (ReturnType.isNull()) {
5168       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
5169           << AL << DiagID << AL.getRange();
5170       return;
5171     }
5172   } else if (AL.isUsedAsTypeAttr()) {
5173     return;
5174   } else {
5175     AttributeDeclKind ExpectedDeclKind;
5176     switch (AL.getKind()) {
5177     default: llvm_unreachable("invalid ownership attribute");
5178     case ParsedAttr::AT_NSReturnsRetained:
5179     case ParsedAttr::AT_NSReturnsAutoreleased:
5180     case ParsedAttr::AT_NSReturnsNotRetained:
5181       ExpectedDeclKind = ExpectedFunctionOrMethod;
5182       break;
5183 
5184     case ParsedAttr::AT_OSReturnsRetained:
5185     case ParsedAttr::AT_OSReturnsNotRetained:
5186     case ParsedAttr::AT_CFReturnsRetained:
5187     case ParsedAttr::AT_CFReturnsNotRetained:
5188       ExpectedDeclKind = ExpectedFunctionMethodOrParameter;
5189       break;
5190     }
5191     S.Diag(D->getBeginLoc(), diag::warn_attribute_wrong_decl_type)
5192         << AL.getRange() << AL << ExpectedDeclKind;
5193     return;
5194   }
5195 
5196   bool TypeOK;
5197   bool Cf;
5198   unsigned ParmDiagID = 2; // Pointer-to-CF-pointer
5199   switch (AL.getKind()) {
5200   default: llvm_unreachable("invalid ownership attribute");
5201   case ParsedAttr::AT_NSReturnsRetained:
5202     TypeOK = isValidSubjectOfNSReturnsRetainedAttribute(ReturnType);
5203     Cf = false;
5204     break;
5205 
5206   case ParsedAttr::AT_NSReturnsAutoreleased:
5207   case ParsedAttr::AT_NSReturnsNotRetained:
5208     TypeOK = isValidSubjectOfNSAttribute(ReturnType);
5209     Cf = false;
5210     break;
5211 
5212   case ParsedAttr::AT_CFReturnsRetained:
5213   case ParsedAttr::AT_CFReturnsNotRetained:
5214     TypeOK = isValidSubjectOfCFAttribute(ReturnType);
5215     Cf = true;
5216     break;
5217 
5218   case ParsedAttr::AT_OSReturnsRetained:
5219   case ParsedAttr::AT_OSReturnsNotRetained:
5220     TypeOK = isValidSubjectOfOSAttribute(ReturnType);
5221     Cf = true;
5222     ParmDiagID = 3; // Pointer-to-OSObject-pointer
5223     break;
5224   }
5225 
5226   if (!TypeOK) {
5227     if (AL.isUsedAsTypeAttr())
5228       return;
5229 
5230     if (isa<ParmVarDecl>(D)) {
5231       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_parameter_type)
5232           << AL << ParmDiagID << AL.getRange();
5233     } else {
5234       // Needs to be kept in sync with warn_ns_attribute_wrong_return_type.
5235       enum : unsigned {
5236         Function,
5237         Method,
5238         Property
5239       } SubjectKind = Function;
5240       if (isa<ObjCMethodDecl>(D))
5241         SubjectKind = Method;
5242       else if (isa<ObjCPropertyDecl>(D))
5243         SubjectKind = Property;
5244       S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
5245           << AL << SubjectKind << Cf << AL.getRange();
5246     }
5247     return;
5248   }
5249 
5250   switch (AL.getKind()) {
5251     default:
5252       llvm_unreachable("invalid ownership attribute");
5253     case ParsedAttr::AT_NSReturnsAutoreleased:
5254       handleSimpleAttribute<NSReturnsAutoreleasedAttr>(S, D, AL);
5255       return;
5256     case ParsedAttr::AT_CFReturnsNotRetained:
5257       handleSimpleAttribute<CFReturnsNotRetainedAttr>(S, D, AL);
5258       return;
5259     case ParsedAttr::AT_NSReturnsNotRetained:
5260       handleSimpleAttribute<NSReturnsNotRetainedAttr>(S, D, AL);
5261       return;
5262     case ParsedAttr::AT_CFReturnsRetained:
5263       handleSimpleAttribute<CFReturnsRetainedAttr>(S, D, AL);
5264       return;
5265     case ParsedAttr::AT_NSReturnsRetained:
5266       handleSimpleAttribute<NSReturnsRetainedAttr>(S, D, AL);
5267       return;
5268     case ParsedAttr::AT_OSReturnsRetained:
5269       handleSimpleAttribute<OSReturnsRetainedAttr>(S, D, AL);
5270       return;
5271     case ParsedAttr::AT_OSReturnsNotRetained:
5272       handleSimpleAttribute<OSReturnsNotRetainedAttr>(S, D, AL);
5273       return;
5274   };
5275 }
5276 
5277 static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D,
5278                                               const ParsedAttr &Attrs) {
5279   const int EP_ObjCMethod = 1;
5280   const int EP_ObjCProperty = 2;
5281 
5282   SourceLocation loc = Attrs.getLoc();
5283   QualType resultType;
5284   if (isa<ObjCMethodDecl>(D))
5285     resultType = cast<ObjCMethodDecl>(D)->getReturnType();
5286   else
5287     resultType = cast<ObjCPropertyDecl>(D)->getType();
5288 
5289   if (!resultType->isReferenceType() &&
5290       (!resultType->isPointerType() || resultType->isObjCRetainableType())) {
5291     S.Diag(D->getBeginLoc(), diag::warn_ns_attribute_wrong_return_type)
5292         << SourceRange(loc) << Attrs
5293         << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty)
5294         << /*non-retainable pointer*/ 2;
5295 
5296     // Drop the attribute.
5297     return;
5298   }
5299 
5300   D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr(
5301       Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
5302 }
5303 
5304 static void handleObjCRequiresSuperAttr(Sema &S, Decl *D,
5305                                         const ParsedAttr &Attrs) {
5306   const auto *Method = cast<ObjCMethodDecl>(D);
5307 
5308   const DeclContext *DC = Method->getDeclContext();
5309   if (const auto *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) {
5310     S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
5311                                                                       << 0;
5312     S.Diag(PDecl->getLocation(), diag::note_protocol_decl);
5313     return;
5314   }
5315   if (Method->getMethodFamily() == OMF_dealloc) {
5316     S.Diag(D->getBeginLoc(), diag::warn_objc_requires_super_protocol) << Attrs
5317                                                                       << 1;
5318     return;
5319   }
5320 
5321   D->addAttr(::new (S.Context) ObjCRequiresSuperAttr(
5322       Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex()));
5323 }
5324 
5325 static void handleObjCBridgeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5326   IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
5327 
5328   if (!Parm) {
5329     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5330     return;
5331   }
5332 
5333   // Typedefs only allow objc_bridge(id) and have some additional checking.
5334   if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
5335     if (!Parm->Ident->isStr("id")) {
5336       S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_id) << AL;
5337       return;
5338     }
5339 
5340     // Only allow 'cv void *'.
5341     QualType T = TD->getUnderlyingType();
5342     if (!T->isVoidPointerType()) {
5343       S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_void_pointer);
5344       return;
5345     }
5346   }
5347 
5348   D->addAttr(::new (S.Context)
5349              ObjCBridgeAttr(AL.getRange(), S.Context, Parm->Ident,
5350                            AL.getAttributeSpellingListIndex()));
5351 }
5352 
5353 static void handleObjCBridgeMutableAttr(Sema &S, Decl *D,
5354                                         const ParsedAttr &AL) {
5355   IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr;
5356 
5357   if (!Parm) {
5358     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5359     return;
5360   }
5361 
5362   D->addAttr(::new (S.Context)
5363              ObjCBridgeMutableAttr(AL.getRange(), S.Context, Parm->Ident,
5364                             AL.getAttributeSpellingListIndex()));
5365 }
5366 
5367 static void handleObjCBridgeRelatedAttr(Sema &S, Decl *D,
5368                                         const ParsedAttr &AL) {
5369   IdentifierInfo *RelatedClass =
5370       AL.isArgIdent(0) ? AL.getArgAsIdent(0)->Ident : nullptr;
5371   if (!RelatedClass) {
5372     S.Diag(D->getBeginLoc(), diag::err_objc_attr_not_id) << AL << 0;
5373     return;
5374   }
5375   IdentifierInfo *ClassMethod =
5376     AL.getArgAsIdent(1) ? AL.getArgAsIdent(1)->Ident : nullptr;
5377   IdentifierInfo *InstanceMethod =
5378     AL.getArgAsIdent(2) ? AL.getArgAsIdent(2)->Ident : nullptr;
5379   D->addAttr(::new (S.Context)
5380              ObjCBridgeRelatedAttr(AL.getRange(), S.Context, RelatedClass,
5381                                    ClassMethod, InstanceMethod,
5382                                    AL.getAttributeSpellingListIndex()));
5383 }
5384 
5385 static void handleObjCDesignatedInitializer(Sema &S, Decl *D,
5386                                             const ParsedAttr &AL) {
5387   DeclContext *Ctx = D->getDeclContext();
5388 
5389   // This attribute can only be applied to methods in interfaces or class
5390   // extensions.
5391   if (!isa<ObjCInterfaceDecl>(Ctx) &&
5392       !(isa<ObjCCategoryDecl>(Ctx) &&
5393         cast<ObjCCategoryDecl>(Ctx)->IsClassExtension())) {
5394     S.Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
5395     return;
5396   }
5397 
5398   ObjCInterfaceDecl *IFace;
5399   if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(Ctx))
5400     IFace = CatDecl->getClassInterface();
5401   else
5402     IFace = cast<ObjCInterfaceDecl>(Ctx);
5403 
5404   if (!IFace)
5405     return;
5406 
5407   IFace->setHasDesignatedInitializers();
5408   D->addAttr(::new (S.Context)
5409                   ObjCDesignatedInitializerAttr(AL.getRange(), S.Context,
5410                                          AL.getAttributeSpellingListIndex()));
5411 }
5412 
5413 static void handleObjCRuntimeName(Sema &S, Decl *D, const ParsedAttr &AL) {
5414   StringRef MetaDataName;
5415   if (!S.checkStringLiteralArgumentAttr(AL, 0, MetaDataName))
5416     return;
5417   D->addAttr(::new (S.Context)
5418              ObjCRuntimeNameAttr(AL.getRange(), S.Context,
5419                                  MetaDataName,
5420                                  AL.getAttributeSpellingListIndex()));
5421 }
5422 
5423 // When a user wants to use objc_boxable with a union or struct
5424 // but they don't have access to the declaration (legacy/third-party code)
5425 // then they can 'enable' this feature with a typedef:
5426 // typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct;
5427 static void handleObjCBoxable(Sema &S, Decl *D, const ParsedAttr &AL) {
5428   bool notify = false;
5429 
5430   auto *RD = dyn_cast<RecordDecl>(D);
5431   if (RD && RD->getDefinition()) {
5432     RD = RD->getDefinition();
5433     notify = true;
5434   }
5435 
5436   if (RD) {
5437     ObjCBoxableAttr *BoxableAttr = ::new (S.Context)
5438                           ObjCBoxableAttr(AL.getRange(), S.Context,
5439                                           AL.getAttributeSpellingListIndex());
5440     RD->addAttr(BoxableAttr);
5441     if (notify) {
5442       // we need to notify ASTReader/ASTWriter about
5443       // modification of existing declaration
5444       if (ASTMutationListener *L = S.getASTMutationListener())
5445         L->AddedAttributeToRecord(BoxableAttr, RD);
5446     }
5447   }
5448 }
5449 
5450 static void handleObjCOwnershipAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5451   if (hasDeclarator(D)) return;
5452 
5453   S.Diag(D->getBeginLoc(), diag::err_attribute_wrong_decl_type)
5454       << AL.getRange() << AL << ExpectedVariable;
5455 }
5456 
5457 static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D,
5458                                           const ParsedAttr &AL) {
5459   const auto *VD = cast<ValueDecl>(D);
5460   QualType QT = VD->getType();
5461 
5462   if (!QT->isDependentType() &&
5463       !QT->isObjCLifetimeType()) {
5464     S.Diag(AL.getLoc(), diag::err_objc_precise_lifetime_bad_type)
5465       << QT;
5466     return;
5467   }
5468 
5469   Qualifiers::ObjCLifetime Lifetime = QT.getObjCLifetime();
5470 
5471   // If we have no lifetime yet, check the lifetime we're presumably
5472   // going to infer.
5473   if (Lifetime == Qualifiers::OCL_None && !QT->isDependentType())
5474     Lifetime = QT->getObjCARCImplicitLifetime();
5475 
5476   switch (Lifetime) {
5477   case Qualifiers::OCL_None:
5478     assert(QT->isDependentType() &&
5479            "didn't infer lifetime for non-dependent type?");
5480     break;
5481 
5482   case Qualifiers::OCL_Weak:   // meaningful
5483   case Qualifiers::OCL_Strong: // meaningful
5484     break;
5485 
5486   case Qualifiers::OCL_ExplicitNone:
5487   case Qualifiers::OCL_Autoreleasing:
5488     S.Diag(AL.getLoc(), diag::warn_objc_precise_lifetime_meaningless)
5489         << (Lifetime == Qualifiers::OCL_Autoreleasing);
5490     break;
5491   }
5492 
5493   D->addAttr(::new (S.Context)
5494              ObjCPreciseLifetimeAttr(AL.getRange(), S.Context,
5495                                      AL.getAttributeSpellingListIndex()));
5496 }
5497 
5498 //===----------------------------------------------------------------------===//
5499 // Microsoft specific attribute handlers.
5500 //===----------------------------------------------------------------------===//
5501 
5502 UuidAttr *Sema::mergeUuidAttr(Decl *D, SourceRange Range,
5503                               unsigned AttrSpellingListIndex, StringRef Uuid) {
5504   if (const auto *UA = D->getAttr<UuidAttr>()) {
5505     if (UA->getGuid().equals_lower(Uuid))
5506       return nullptr;
5507     Diag(UA->getLocation(), diag::err_mismatched_uuid);
5508     Diag(Range.getBegin(), diag::note_previous_uuid);
5509     D->dropAttr<UuidAttr>();
5510   }
5511 
5512   return ::new (Context) UuidAttr(Range, Context, Uuid, AttrSpellingListIndex);
5513 }
5514 
5515 static void handleUuidAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5516   if (!S.LangOpts.CPlusPlus) {
5517     S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
5518         << AL << AttributeLangSupport::C;
5519     return;
5520   }
5521 
5522   StringRef StrRef;
5523   SourceLocation LiteralLoc;
5524   if (!S.checkStringLiteralArgumentAttr(AL, 0, StrRef, &LiteralLoc))
5525     return;
5526 
5527   // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or
5528   // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former.
5529   if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}')
5530     StrRef = StrRef.drop_front().drop_back();
5531 
5532   // Validate GUID length.
5533   if (StrRef.size() != 36) {
5534     S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
5535     return;
5536   }
5537 
5538   for (unsigned i = 0; i < 36; ++i) {
5539     if (i == 8 || i == 13 || i == 18 || i == 23) {
5540       if (StrRef[i] != '-') {
5541         S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
5542         return;
5543       }
5544     } else if (!isHexDigit(StrRef[i])) {
5545       S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid);
5546       return;
5547     }
5548   }
5549 
5550   // FIXME: It'd be nice to also emit a fixit removing uuid(...) (and, if it's
5551   // the only thing in the [] list, the [] too), and add an insertion of
5552   // __declspec(uuid(...)).  But sadly, neither the SourceLocs of the commas
5553   // separating attributes nor of the [ and the ] are in the AST.
5554   // Cf "SourceLocations of attribute list delimiters - [[ ... , ... ]] etc"
5555   // on cfe-dev.
5556   if (AL.isMicrosoftAttribute()) // Check for [uuid(...)] spelling.
5557     S.Diag(AL.getLoc(), diag::warn_atl_uuid_deprecated);
5558 
5559   UuidAttr *UA = S.mergeUuidAttr(D, AL.getRange(),
5560                                  AL.getAttributeSpellingListIndex(), StrRef);
5561   if (UA)
5562     D->addAttr(UA);
5563 }
5564 
5565 static void handleMSInheritanceAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5566   if (!S.LangOpts.CPlusPlus) {
5567     S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang)
5568         << AL << AttributeLangSupport::C;
5569     return;
5570   }
5571   MSInheritanceAttr *IA = S.mergeMSInheritanceAttr(
5572       D, AL.getRange(), /*BestCase=*/true,
5573       AL.getAttributeSpellingListIndex(),
5574       (MSInheritanceAttr::Spelling)AL.getSemanticSpelling());
5575   if (IA) {
5576     D->addAttr(IA);
5577     S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D));
5578   }
5579 }
5580 
5581 static void handleDeclspecThreadAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5582   const auto *VD = cast<VarDecl>(D);
5583   if (!S.Context.getTargetInfo().isTLSSupported()) {
5584     S.Diag(AL.getLoc(), diag::err_thread_unsupported);
5585     return;
5586   }
5587   if (VD->getTSCSpec() != TSCS_unspecified) {
5588     S.Diag(AL.getLoc(), diag::err_declspec_thread_on_thread_variable);
5589     return;
5590   }
5591   if (VD->hasLocalStorage()) {
5592     S.Diag(AL.getLoc(), diag::err_thread_non_global) << "__declspec(thread)";
5593     return;
5594   }
5595   D->addAttr(::new (S.Context) ThreadAttr(AL.getRange(), S.Context,
5596                                           AL.getAttributeSpellingListIndex()));
5597 }
5598 
5599 static void handleAbiTagAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5600   SmallVector<StringRef, 4> Tags;
5601   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
5602     StringRef Tag;
5603     if (!S.checkStringLiteralArgumentAttr(AL, I, Tag))
5604       return;
5605     Tags.push_back(Tag);
5606   }
5607 
5608   if (const auto *NS = dyn_cast<NamespaceDecl>(D)) {
5609     if (!NS->isInline()) {
5610       S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 0;
5611       return;
5612     }
5613     if (NS->isAnonymousNamespace()) {
5614       S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 1;
5615       return;
5616     }
5617     if (AL.getNumArgs() == 0)
5618       Tags.push_back(NS->getName());
5619   } else if (!checkAttributeAtLeastNumArgs(S, AL, 1))
5620     return;
5621 
5622   // Store tags sorted and without duplicates.
5623   llvm::sort(Tags);
5624   Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end());
5625 
5626   D->addAttr(::new (S.Context)
5627              AbiTagAttr(AL.getRange(), S.Context, Tags.data(), Tags.size(),
5628                         AL.getAttributeSpellingListIndex()));
5629 }
5630 
5631 static void handleARMInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5632   // Check the attribute arguments.
5633   if (AL.getNumArgs() > 1) {
5634     S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
5635     return;
5636   }
5637 
5638   StringRef Str;
5639   SourceLocation ArgLoc;
5640 
5641   if (AL.getNumArgs() == 0)
5642     Str = "";
5643   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5644     return;
5645 
5646   ARMInterruptAttr::InterruptType Kind;
5647   if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
5648     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
5649                                                                  << ArgLoc;
5650     return;
5651   }
5652 
5653   unsigned Index = AL.getAttributeSpellingListIndex();
5654   D->addAttr(::new (S.Context)
5655              ARMInterruptAttr(AL.getLoc(), S.Context, Kind, Index));
5656 }
5657 
5658 static void handleMSP430InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5659   // MSP430 'interrupt' attribute is applied to
5660   // a function with no parameters and void return type.
5661   if (!isFunctionOrMethod(D)) {
5662     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5663         << "'interrupt'" << ExpectedFunctionOrMethod;
5664     return;
5665   }
5666 
5667   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
5668     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5669         << /*MSP430*/ 1 << 0;
5670     return;
5671   }
5672 
5673   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5674     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5675         << /*MSP430*/ 1 << 1;
5676     return;
5677   }
5678 
5679   // The attribute takes one integer argument.
5680   if (!checkAttributeNumArgs(S, AL, 1))
5681     return;
5682 
5683   if (!AL.isArgExpr(0)) {
5684     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
5685         << AL << AANT_ArgumentIntegerConstant;
5686     return;
5687   }
5688 
5689   Expr *NumParamsExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
5690   llvm::APSInt NumParams(32);
5691   if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) {
5692     S.Diag(AL.getLoc(), diag::err_attribute_argument_type)
5693         << AL << AANT_ArgumentIntegerConstant
5694         << NumParamsExpr->getSourceRange();
5695     return;
5696   }
5697   // The argument should be in range 0..63.
5698   unsigned Num = NumParams.getLimitedValue(255);
5699   if (Num > 63) {
5700     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
5701         << AL << (int)NumParams.getSExtValue()
5702         << NumParamsExpr->getSourceRange();
5703     return;
5704   }
5705 
5706   D->addAttr(::new (S.Context)
5707               MSP430InterruptAttr(AL.getLoc(), S.Context, Num,
5708                                   AL.getAttributeSpellingListIndex()));
5709   D->addAttr(UsedAttr::CreateImplicit(S.Context));
5710 }
5711 
5712 static void handleMipsInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5713   // Only one optional argument permitted.
5714   if (AL.getNumArgs() > 1) {
5715     S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) << AL << 1;
5716     return;
5717   }
5718 
5719   StringRef Str;
5720   SourceLocation ArgLoc;
5721 
5722   if (AL.getNumArgs() == 0)
5723     Str = "";
5724   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5725     return;
5726 
5727   // Semantic checks for a function with the 'interrupt' attribute for MIPS:
5728   // a) Must be a function.
5729   // b) Must have no parameters.
5730   // c) Must have the 'void' return type.
5731   // d) Cannot have the 'mips16' attribute, as that instruction set
5732   //    lacks the 'eret' instruction.
5733   // e) The attribute itself must either have no argument or one of the
5734   //    valid interrupt types, see [MipsInterruptDocs].
5735 
5736   if (!isFunctionOrMethod(D)) {
5737     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5738         << "'interrupt'" << ExpectedFunctionOrMethod;
5739     return;
5740   }
5741 
5742   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
5743     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5744         << /*MIPS*/ 0 << 0;
5745     return;
5746   }
5747 
5748   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5749     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5750         << /*MIPS*/ 0 << 1;
5751     return;
5752   }
5753 
5754   if (checkAttrMutualExclusion<Mips16Attr>(S, D, AL))
5755     return;
5756 
5757   MipsInterruptAttr::InterruptType Kind;
5758   if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
5759     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported)
5760         << AL << "'" + std::string(Str) + "'";
5761     return;
5762   }
5763 
5764   D->addAttr(::new (S.Context) MipsInterruptAttr(
5765       AL.getLoc(), S.Context, Kind, AL.getAttributeSpellingListIndex()));
5766 }
5767 
5768 static void handleAnyX86InterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5769   // Semantic checks for a function with the 'interrupt' attribute.
5770   // a) Must be a function.
5771   // b) Must have the 'void' return type.
5772   // c) Must take 1 or 2 arguments.
5773   // d) The 1st argument must be a pointer.
5774   // e) The 2nd argument (if any) must be an unsigned integer.
5775   if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) ||
5776       CXXMethodDecl::isStaticOverloadedOperator(
5777           cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) {
5778     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
5779         << AL << ExpectedFunctionWithProtoType;
5780     return;
5781   }
5782   // Interrupt handler must have void return type.
5783   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5784     S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(),
5785            diag::err_anyx86_interrupt_attribute)
5786         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5787                 ? 0
5788                 : 1)
5789         << 0;
5790     return;
5791   }
5792   // Interrupt handler must have 1 or 2 parameters.
5793   unsigned NumParams = getFunctionOrMethodNumParams(D);
5794   if (NumParams < 1 || NumParams > 2) {
5795     S.Diag(D->getBeginLoc(), diag::err_anyx86_interrupt_attribute)
5796         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5797                 ? 0
5798                 : 1)
5799         << 1;
5800     return;
5801   }
5802   // The first argument must be a pointer.
5803   if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) {
5804     S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(),
5805            diag::err_anyx86_interrupt_attribute)
5806         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5807                 ? 0
5808                 : 1)
5809         << 2;
5810     return;
5811   }
5812   // The second argument, if present, must be an unsigned integer.
5813   unsigned TypeSize =
5814       S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64
5815           ? 64
5816           : 32;
5817   if (NumParams == 2 &&
5818       (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() ||
5819        S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) {
5820     S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(),
5821            diag::err_anyx86_interrupt_attribute)
5822         << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86
5823                 ? 0
5824                 : 1)
5825         << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false);
5826     return;
5827   }
5828   D->addAttr(::new (S.Context) AnyX86InterruptAttr(
5829       AL.getLoc(), S.Context, AL.getAttributeSpellingListIndex()));
5830   D->addAttr(UsedAttr::CreateImplicit(S.Context));
5831 }
5832 
5833 static void handleAVRInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5834   if (!isFunctionOrMethod(D)) {
5835     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5836         << "'interrupt'" << ExpectedFunction;
5837     return;
5838   }
5839 
5840   if (!checkAttributeNumArgs(S, AL, 0))
5841     return;
5842 
5843   handleSimpleAttribute<AVRInterruptAttr>(S, D, AL);
5844 }
5845 
5846 static void handleAVRSignalAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5847   if (!isFunctionOrMethod(D)) {
5848     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5849         << "'signal'" << ExpectedFunction;
5850     return;
5851   }
5852 
5853   if (!checkAttributeNumArgs(S, AL, 0))
5854     return;
5855 
5856   handleSimpleAttribute<AVRSignalAttr>(S, D, AL);
5857 }
5858 
5859 static void handleWebAssemblyImportModuleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5860   if (!isFunctionOrMethod(D)) {
5861     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5862         << "'import_module'" << ExpectedFunction;
5863     return;
5864   }
5865 
5866   auto *FD = cast<FunctionDecl>(D);
5867   if (FD->isThisDeclarationADefinition()) {
5868     S.Diag(D->getLocation(), diag::err_alias_is_definition) << FD << 0;
5869     return;
5870   }
5871 
5872   StringRef Str;
5873   SourceLocation ArgLoc;
5874   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5875     return;
5876 
5877   FD->addAttr(::new (S.Context) WebAssemblyImportModuleAttr(
5878       AL.getRange(), S.Context, Str,
5879       AL.getAttributeSpellingListIndex()));
5880 }
5881 
5882 static void handleWebAssemblyImportNameAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5883   if (!isFunctionOrMethod(D)) {
5884     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5885         << "'import_name'" << ExpectedFunction;
5886     return;
5887   }
5888 
5889   auto *FD = cast<FunctionDecl>(D);
5890   if (FD->isThisDeclarationADefinition()) {
5891     S.Diag(D->getLocation(), diag::err_alias_is_definition) << FD << 0;
5892     return;
5893   }
5894 
5895   StringRef Str;
5896   SourceLocation ArgLoc;
5897   if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5898     return;
5899 
5900   FD->addAttr(::new (S.Context) WebAssemblyImportNameAttr(
5901       AL.getRange(), S.Context, Str,
5902       AL.getAttributeSpellingListIndex()));
5903 }
5904 
5905 static void handleRISCVInterruptAttr(Sema &S, Decl *D,
5906                                      const ParsedAttr &AL) {
5907   // Warn about repeated attributes.
5908   if (const auto *A = D->getAttr<RISCVInterruptAttr>()) {
5909     S.Diag(AL.getRange().getBegin(),
5910       diag::warn_riscv_repeated_interrupt_attribute);
5911     S.Diag(A->getLocation(), diag::note_riscv_repeated_interrupt_attribute);
5912     return;
5913   }
5914 
5915   // Check the attribute argument. Argument is optional.
5916   if (!checkAttributeAtMostNumArgs(S, AL, 1))
5917     return;
5918 
5919   StringRef Str;
5920   SourceLocation ArgLoc;
5921 
5922   // 'machine'is the default interrupt mode.
5923   if (AL.getNumArgs() == 0)
5924     Str = "machine";
5925   else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc))
5926     return;
5927 
5928   // Semantic checks for a function with the 'interrupt' attribute:
5929   // - Must be a function.
5930   // - Must have no parameters.
5931   // - Must have the 'void' return type.
5932   // - The attribute itself must either have no argument or one of the
5933   //   valid interrupt types, see [RISCVInterruptDocs].
5934 
5935   if (D->getFunctionType() == nullptr) {
5936     S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type)
5937       << "'interrupt'" << ExpectedFunction;
5938     return;
5939   }
5940 
5941   if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) {
5942     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5943       << /*RISC-V*/ 2 << 0;
5944     return;
5945   }
5946 
5947   if (!getFunctionOrMethodResultType(D)->isVoidType()) {
5948     S.Diag(D->getLocation(), diag::warn_interrupt_attribute_invalid)
5949       << /*RISC-V*/ 2 << 1;
5950     return;
5951   }
5952 
5953   RISCVInterruptAttr::InterruptType Kind;
5954   if (!RISCVInterruptAttr::ConvertStrToInterruptType(Str, Kind)) {
5955     S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) << AL << Str
5956                                                                  << ArgLoc;
5957     return;
5958   }
5959 
5960   D->addAttr(::new (S.Context) RISCVInterruptAttr(
5961     AL.getLoc(), S.Context, Kind, AL.getAttributeSpellingListIndex()));
5962 }
5963 
5964 static void handleInterruptAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
5965   // Dispatch the interrupt attribute based on the current target.
5966   switch (S.Context.getTargetInfo().getTriple().getArch()) {
5967   case llvm::Triple::msp430:
5968     handleMSP430InterruptAttr(S, D, AL);
5969     break;
5970   case llvm::Triple::mipsel:
5971   case llvm::Triple::mips:
5972     handleMipsInterruptAttr(S, D, AL);
5973     break;
5974   case llvm::Triple::x86:
5975   case llvm::Triple::x86_64:
5976     handleAnyX86InterruptAttr(S, D, AL);
5977     break;
5978   case llvm::Triple::avr:
5979     handleAVRInterruptAttr(S, D, AL);
5980     break;
5981   case llvm::Triple::riscv32:
5982   case llvm::Triple::riscv64:
5983     handleRISCVInterruptAttr(S, D, AL);
5984     break;
5985   default:
5986     handleARMInterruptAttr(S, D, AL);
5987     break;
5988   }
5989 }
5990 
5991 static bool
5992 checkAMDGPUFlatWorkGroupSizeArguments(Sema &S, Expr *MinExpr, Expr *MaxExpr,
5993                                       const AMDGPUFlatWorkGroupSizeAttr &Attr) {
5994   // Accept template arguments for now as they depend on something else.
5995   // We'll get to check them when they eventually get instantiated.
5996   if (MinExpr->isValueDependent() || MaxExpr->isValueDependent())
5997     return false;
5998 
5999   uint32_t Min = 0;
6000   if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
6001     return true;
6002 
6003   uint32_t Max = 0;
6004   if (!checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
6005     return true;
6006 
6007   if (Min == 0 && Max != 0) {
6008     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6009         << &Attr << 0;
6010     return true;
6011   }
6012   if (Min > Max) {
6013     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6014         << &Attr << 1;
6015     return true;
6016   }
6017 
6018   return false;
6019 }
6020 
6021 void Sema::addAMDGPUFlatWorkGroupSizeAttr(SourceRange AttrRange, Decl *D,
6022                                           Expr *MinExpr, Expr *MaxExpr,
6023                                           unsigned SpellingListIndex) {
6024   AMDGPUFlatWorkGroupSizeAttr TmpAttr(AttrRange, Context, MinExpr, MaxExpr,
6025                                       SpellingListIndex);
6026 
6027   if (checkAMDGPUFlatWorkGroupSizeArguments(*this, MinExpr, MaxExpr, TmpAttr))
6028     return;
6029 
6030   D->addAttr(::new (Context) AMDGPUFlatWorkGroupSizeAttr(
6031       AttrRange, Context, MinExpr, MaxExpr, SpellingListIndex));
6032 }
6033 
6034 static void handleAMDGPUFlatWorkGroupSizeAttr(Sema &S, Decl *D,
6035                                               const ParsedAttr &AL) {
6036   Expr *MinExpr = AL.getArgAsExpr(0);
6037   Expr *MaxExpr = AL.getArgAsExpr(1);
6038 
6039   S.addAMDGPUFlatWorkGroupSizeAttr(AL.getRange(), D, MinExpr, MaxExpr,
6040                                    AL.getAttributeSpellingListIndex());
6041 }
6042 
6043 static bool checkAMDGPUWavesPerEUArguments(Sema &S, Expr *MinExpr,
6044                                            Expr *MaxExpr,
6045                                            const AMDGPUWavesPerEUAttr &Attr) {
6046   if (S.DiagnoseUnexpandedParameterPack(MinExpr) ||
6047       (MaxExpr && S.DiagnoseUnexpandedParameterPack(MaxExpr)))
6048     return true;
6049 
6050   // Accept template arguments for now as they depend on something else.
6051   // We'll get to check them when they eventually get instantiated.
6052   if (MinExpr->isValueDependent() || (MaxExpr && MaxExpr->isValueDependent()))
6053     return false;
6054 
6055   uint32_t Min = 0;
6056   if (!checkUInt32Argument(S, Attr, MinExpr, Min, 0))
6057     return true;
6058 
6059   uint32_t Max = 0;
6060   if (MaxExpr && !checkUInt32Argument(S, Attr, MaxExpr, Max, 1))
6061     return true;
6062 
6063   if (Min == 0 && Max != 0) {
6064     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6065         << &Attr << 0;
6066     return true;
6067   }
6068   if (Max != 0 && Min > Max) {
6069     S.Diag(Attr.getLocation(), diag::err_attribute_argument_invalid)
6070         << &Attr << 1;
6071     return true;
6072   }
6073 
6074   return false;
6075 }
6076 
6077 void Sema::addAMDGPUWavesPerEUAttr(SourceRange AttrRange, Decl *D,
6078                                    Expr *MinExpr, Expr *MaxExpr,
6079                                    unsigned SpellingListIndex) {
6080   AMDGPUWavesPerEUAttr TmpAttr(AttrRange, Context, MinExpr, MaxExpr,
6081                                SpellingListIndex);
6082 
6083   if (checkAMDGPUWavesPerEUArguments(*this, MinExpr, MaxExpr, TmpAttr))
6084     return;
6085 
6086   D->addAttr(::new (Context) AMDGPUWavesPerEUAttr(AttrRange, Context, MinExpr,
6087                                                   MaxExpr, SpellingListIndex));
6088 }
6089 
6090 static void handleAMDGPUWavesPerEUAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6091   if (!checkAttributeAtLeastNumArgs(S, AL, 1) ||
6092       !checkAttributeAtMostNumArgs(S, AL, 2))
6093     return;
6094 
6095   Expr *MinExpr = AL.getArgAsExpr(0);
6096   Expr *MaxExpr = (AL.getNumArgs() > 1) ? AL.getArgAsExpr(1) : nullptr;
6097 
6098   S.addAMDGPUWavesPerEUAttr(AL.getRange(), D, MinExpr, MaxExpr,
6099                             AL.getAttributeSpellingListIndex());
6100 }
6101 
6102 static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6103   uint32_t NumSGPR = 0;
6104   Expr *NumSGPRExpr = AL.getArgAsExpr(0);
6105   if (!checkUInt32Argument(S, AL, NumSGPRExpr, NumSGPR))
6106     return;
6107 
6108   D->addAttr(::new (S.Context)
6109              AMDGPUNumSGPRAttr(AL.getLoc(), S.Context, NumSGPR,
6110                                AL.getAttributeSpellingListIndex()));
6111 }
6112 
6113 static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6114   uint32_t NumVGPR = 0;
6115   Expr *NumVGPRExpr = AL.getArgAsExpr(0);
6116   if (!checkUInt32Argument(S, AL, NumVGPRExpr, NumVGPR))
6117     return;
6118 
6119   D->addAttr(::new (S.Context)
6120              AMDGPUNumVGPRAttr(AL.getLoc(), S.Context, NumVGPR,
6121                                AL.getAttributeSpellingListIndex()));
6122 }
6123 
6124 static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D,
6125                                               const ParsedAttr &AL) {
6126   // If we try to apply it to a function pointer, don't warn, but don't
6127   // do anything, either. It doesn't matter anyway, because there's nothing
6128   // special about calling a force_align_arg_pointer function.
6129   const auto *VD = dyn_cast<ValueDecl>(D);
6130   if (VD && VD->getType()->isFunctionPointerType())
6131     return;
6132   // Also don't warn on function pointer typedefs.
6133   const auto *TD = dyn_cast<TypedefNameDecl>(D);
6134   if (TD && (TD->getUnderlyingType()->isFunctionPointerType() ||
6135     TD->getUnderlyingType()->isFunctionType()))
6136     return;
6137   // Attribute can only be applied to function types.
6138   if (!isa<FunctionDecl>(D)) {
6139     S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type)
6140         << AL << ExpectedFunction;
6141     return;
6142   }
6143 
6144   D->addAttr(::new (S.Context)
6145               X86ForceAlignArgPointerAttr(AL.getRange(), S.Context,
6146                                         AL.getAttributeSpellingListIndex()));
6147 }
6148 
6149 static void handleLayoutVersion(Sema &S, Decl *D, const ParsedAttr &AL) {
6150   uint32_t Version;
6151   Expr *VersionExpr = static_cast<Expr *>(AL.getArgAsExpr(0));
6152   if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), Version))
6153     return;
6154 
6155   // TODO: Investigate what happens with the next major version of MSVC.
6156   if (Version != LangOptions::MSVC2015 / 100) {
6157     S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds)
6158         << AL << Version << VersionExpr->getSourceRange();
6159     return;
6160   }
6161 
6162   // The attribute expects a "major" version number like 19, but new versions of
6163   // MSVC have moved to updating the "minor", or less significant numbers, so we
6164   // have to multiply by 100 now.
6165   Version *= 100;
6166 
6167   D->addAttr(::new (S.Context)
6168                  LayoutVersionAttr(AL.getRange(), S.Context, Version,
6169                                    AL.getAttributeSpellingListIndex()));
6170 }
6171 
6172 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range,
6173                                         unsigned AttrSpellingListIndex) {
6174   if (D->hasAttr<DLLExportAttr>()) {
6175     Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'";
6176     return nullptr;
6177   }
6178 
6179   if (D->hasAttr<DLLImportAttr>())
6180     return nullptr;
6181 
6182   return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex);
6183 }
6184 
6185 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range,
6186                                         unsigned AttrSpellingListIndex) {
6187   if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) {
6188     Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import;
6189     D->dropAttr<DLLImportAttr>();
6190   }
6191 
6192   if (D->hasAttr<DLLExportAttr>())
6193     return nullptr;
6194 
6195   return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex);
6196 }
6197 
6198 static void handleDLLAttr(Sema &S, Decl *D, const ParsedAttr &A) {
6199   if (isa<ClassTemplatePartialSpecializationDecl>(D) &&
6200       S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
6201     S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored) << A;
6202     return;
6203   }
6204 
6205   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
6206     if (FD->isInlined() && A.getKind() == ParsedAttr::AT_DLLImport &&
6207         !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) {
6208       // MinGW doesn't allow dllimport on inline functions.
6209       S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline)
6210           << A;
6211       return;
6212     }
6213   }
6214 
6215   if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) {
6216     if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
6217         MD->getParent()->isLambda()) {
6218       S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A;
6219       return;
6220     }
6221   }
6222 
6223   unsigned Index = A.getAttributeSpellingListIndex();
6224   Attr *NewAttr = A.getKind() == ParsedAttr::AT_DLLExport
6225                       ? (Attr *)S.mergeDLLExportAttr(D, A.getRange(), Index)
6226                       : (Attr *)S.mergeDLLImportAttr(D, A.getRange(), Index);
6227   if (NewAttr)
6228     D->addAttr(NewAttr);
6229 }
6230 
6231 MSInheritanceAttr *
6232 Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase,
6233                              unsigned AttrSpellingListIndex,
6234                              MSInheritanceAttr::Spelling SemanticSpelling) {
6235   if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) {
6236     if (IA->getSemanticSpelling() == SemanticSpelling)
6237       return nullptr;
6238     Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance)
6239         << 1 /*previous declaration*/;
6240     Diag(Range.getBegin(), diag::note_previous_ms_inheritance);
6241     D->dropAttr<MSInheritanceAttr>();
6242   }
6243 
6244   auto *RD = cast<CXXRecordDecl>(D);
6245   if (RD->hasDefinition()) {
6246     if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase,
6247                                            SemanticSpelling)) {
6248       return nullptr;
6249     }
6250   } else {
6251     if (isa<ClassTemplatePartialSpecializationDecl>(RD)) {
6252       Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
6253           << 1 /*partial specialization*/;
6254       return nullptr;
6255     }
6256     if (RD->getDescribedClassTemplate()) {
6257       Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance)
6258           << 0 /*primary template*/;
6259       return nullptr;
6260     }
6261   }
6262 
6263   return ::new (Context)
6264       MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex);
6265 }
6266 
6267 static void handleCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6268   // The capability attributes take a single string parameter for the name of
6269   // the capability they represent. The lockable attribute does not take any
6270   // parameters. However, semantically, both attributes represent the same
6271   // concept, and so they use the same semantic attribute. Eventually, the
6272   // lockable attribute will be removed.
6273   //
6274   // For backward compatibility, any capability which has no specified string
6275   // literal will be considered a "mutex."
6276   StringRef N("mutex");
6277   SourceLocation LiteralLoc;
6278   if (AL.getKind() == ParsedAttr::AT_Capability &&
6279       !S.checkStringLiteralArgumentAttr(AL, 0, N, &LiteralLoc))
6280     return;
6281 
6282   // Currently, there are only two names allowed for a capability: role and
6283   // mutex (case insensitive). Diagnose other capability names.
6284   if (!N.equals_lower("mutex") && !N.equals_lower("role"))
6285     S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N;
6286 
6287   D->addAttr(::new (S.Context) CapabilityAttr(AL.getRange(), S.Context, N,
6288                                         AL.getAttributeSpellingListIndex()));
6289 }
6290 
6291 static void handleAssertCapabilityAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6292   SmallVector<Expr*, 1> Args;
6293   if (!checkLockFunAttrCommon(S, D, AL, Args))
6294     return;
6295 
6296   D->addAttr(::new (S.Context) AssertCapabilityAttr(AL.getRange(), S.Context,
6297                                                     Args.data(), Args.size(),
6298                                         AL.getAttributeSpellingListIndex()));
6299 }
6300 
6301 static void handleAcquireCapabilityAttr(Sema &S, Decl *D,
6302                                         const ParsedAttr &AL) {
6303   SmallVector<Expr*, 1> Args;
6304   if (!checkLockFunAttrCommon(S, D, AL, Args))
6305     return;
6306 
6307   D->addAttr(::new (S.Context) AcquireCapabilityAttr(AL.getRange(),
6308                                                      S.Context,
6309                                                      Args.data(), Args.size(),
6310                                         AL.getAttributeSpellingListIndex()));
6311 }
6312 
6313 static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D,
6314                                            const ParsedAttr &AL) {
6315   SmallVector<Expr*, 2> Args;
6316   if (!checkTryLockFunAttrCommon(S, D, AL, Args))
6317     return;
6318 
6319   D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(AL.getRange(),
6320                                                         S.Context,
6321                                                         AL.getArgAsExpr(0),
6322                                                         Args.data(),
6323                                                         Args.size(),
6324                                         AL.getAttributeSpellingListIndex()));
6325 }
6326 
6327 static void handleReleaseCapabilityAttr(Sema &S, Decl *D,
6328                                         const ParsedAttr &AL) {
6329   // Check that all arguments are lockable objects.
6330   SmallVector<Expr *, 1> Args;
6331   checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, true);
6332 
6333   D->addAttr(::new (S.Context) ReleaseCapabilityAttr(
6334       AL.getRange(), S.Context, Args.data(), Args.size(),
6335       AL.getAttributeSpellingListIndex()));
6336 }
6337 
6338 static void handleRequiresCapabilityAttr(Sema &S, Decl *D,
6339                                          const ParsedAttr &AL) {
6340   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
6341     return;
6342 
6343   // check that all arguments are lockable objects
6344   SmallVector<Expr*, 1> Args;
6345   checkAttrArgsAreCapabilityObjs(S, D, AL, Args);
6346   if (Args.empty())
6347     return;
6348 
6349   RequiresCapabilityAttr *RCA = ::new (S.Context)
6350     RequiresCapabilityAttr(AL.getRange(), S.Context, Args.data(),
6351                            Args.size(), AL.getAttributeSpellingListIndex());
6352 
6353   D->addAttr(RCA);
6354 }
6355 
6356 static void handleDeprecatedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6357   if (const auto *NSD = dyn_cast<NamespaceDecl>(D)) {
6358     if (NSD->isAnonymousNamespace()) {
6359       S.Diag(AL.getLoc(), diag::warn_deprecated_anonymous_namespace);
6360       // Do not want to attach the attribute to the namespace because that will
6361       // cause confusing diagnostic reports for uses of declarations within the
6362       // namespace.
6363       return;
6364     }
6365   }
6366 
6367   // Handle the cases where the attribute has a text message.
6368   StringRef Str, Replacement;
6369   if (AL.isArgExpr(0) && AL.getArgAsExpr(0) &&
6370       !S.checkStringLiteralArgumentAttr(AL, 0, Str))
6371     return;
6372 
6373   // Only support a single optional message for Declspec and CXX11.
6374   if (AL.isDeclspecAttribute() || AL.isCXX11Attribute())
6375     checkAttributeAtMostNumArgs(S, AL, 1);
6376   else if (AL.isArgExpr(1) && AL.getArgAsExpr(1) &&
6377            !S.checkStringLiteralArgumentAttr(AL, 1, Replacement))
6378     return;
6379 
6380   if (!S.getLangOpts().CPlusPlus14 && AL.isCXX11Attribute() && !AL.isGNUScope())
6381     S.Diag(AL.getLoc(), diag::ext_cxx14_attr) << AL;
6382 
6383   D->addAttr(::new (S.Context)
6384                  DeprecatedAttr(AL.getRange(), S.Context, Str, Replacement,
6385                                 AL.getAttributeSpellingListIndex()));
6386 }
6387 
6388 static bool isGlobalVar(const Decl *D) {
6389   if (const auto *S = dyn_cast<VarDecl>(D))
6390     return S->hasGlobalStorage();
6391   return false;
6392 }
6393 
6394 static void handleNoSanitizeAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6395   if (!checkAttributeAtLeastNumArgs(S, AL, 1))
6396     return;
6397 
6398   std::vector<StringRef> Sanitizers;
6399 
6400   for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) {
6401     StringRef SanitizerName;
6402     SourceLocation LiteralLoc;
6403 
6404     if (!S.checkStringLiteralArgumentAttr(AL, I, SanitizerName, &LiteralLoc))
6405       return;
6406 
6407     if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) ==
6408         SanitizerMask())
6409       S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName;
6410     else if (isGlobalVar(D) && SanitizerName != "address")
6411       S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6412           << AL << ExpectedFunctionOrMethod;
6413     Sanitizers.push_back(SanitizerName);
6414   }
6415 
6416   D->addAttr(::new (S.Context) NoSanitizeAttr(
6417       AL.getRange(), S.Context, Sanitizers.data(), Sanitizers.size(),
6418       AL.getAttributeSpellingListIndex()));
6419 }
6420 
6421 static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D,
6422                                          const ParsedAttr &AL) {
6423   StringRef AttrName = AL.getName()->getName();
6424   normalizeName(AttrName);
6425   StringRef SanitizerName = llvm::StringSwitch<StringRef>(AttrName)
6426                                 .Case("no_address_safety_analysis", "address")
6427                                 .Case("no_sanitize_address", "address")
6428                                 .Case("no_sanitize_thread", "thread")
6429                                 .Case("no_sanitize_memory", "memory");
6430   if (isGlobalVar(D) && SanitizerName != "address")
6431     S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
6432         << AL << ExpectedFunction;
6433 
6434   // FIXME: Rather than create a NoSanitizeSpecificAttr, this creates a
6435   // NoSanitizeAttr object; but we need to calculate the correct spelling list
6436   // index rather than incorrectly assume the index for NoSanitizeSpecificAttr
6437   // has the same spellings as the index for NoSanitizeAttr. We don't have a
6438   // general way to "translate" between the two, so this hack attempts to work
6439   // around the issue with hard-coded indicies. This is critical for calling
6440   // getSpelling() or prettyPrint() on the resulting semantic attribute object
6441   // without failing assertions.
6442   unsigned TranslatedSpellingIndex = 0;
6443   if (AL.isC2xAttribute() || AL.isCXX11Attribute())
6444     TranslatedSpellingIndex = 1;
6445 
6446   D->addAttr(::new (S.Context) NoSanitizeAttr(
6447       AL.getRange(), S.Context, &SanitizerName, 1, TranslatedSpellingIndex));
6448 }
6449 
6450 static void handleInternalLinkageAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6451   if (InternalLinkageAttr *Internal = S.mergeInternalLinkageAttr(D, AL))
6452     D->addAttr(Internal);
6453 }
6454 
6455 static void handleOpenCLNoSVMAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6456   if (S.LangOpts.OpenCLVersion != 200)
6457     S.Diag(AL.getLoc(), diag::err_attribute_requires_opencl_version)
6458         << AL << "2.0" << 0;
6459   else
6460     S.Diag(AL.getLoc(), diag::warn_opencl_attr_deprecated_ignored) << AL
6461                                                                    << "2.0";
6462 }
6463 
6464 /// Handles semantic checking for features that are common to all attributes,
6465 /// such as checking whether a parameter was properly specified, or the correct
6466 /// number of arguments were passed, etc.
6467 static bool handleCommonAttributeFeatures(Sema &S, Decl *D,
6468                                           const ParsedAttr &AL) {
6469   // Several attributes carry different semantics than the parsing requires, so
6470   // those are opted out of the common argument checks.
6471   //
6472   // We also bail on unknown and ignored attributes because those are handled
6473   // as part of the target-specific handling logic.
6474   if (AL.getKind() == ParsedAttr::UnknownAttribute)
6475     return false;
6476   // Check whether the attribute requires specific language extensions to be
6477   // enabled.
6478   if (!AL.diagnoseLangOpts(S))
6479     return true;
6480   // Check whether the attribute appertains to the given subject.
6481   if (!AL.diagnoseAppertainsTo(S, D))
6482     return true;
6483   if (AL.hasCustomParsing())
6484     return false;
6485 
6486   if (AL.getMinArgs() == AL.getMaxArgs()) {
6487     // If there are no optional arguments, then checking for the argument count
6488     // is trivial.
6489     if (!checkAttributeNumArgs(S, AL, AL.getMinArgs()))
6490       return true;
6491   } else {
6492     // There are optional arguments, so checking is slightly more involved.
6493     if (AL.getMinArgs() &&
6494         !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs()))
6495       return true;
6496     else if (!AL.hasVariadicArg() && AL.getMaxArgs() &&
6497              !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs()))
6498       return true;
6499   }
6500 
6501   if (S.CheckAttrTarget(AL))
6502     return true;
6503 
6504   return false;
6505 }
6506 
6507 static void handleOpenCLAccessAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6508   if (D->isInvalidDecl())
6509     return;
6510 
6511   // Check if there is only one access qualifier.
6512   if (D->hasAttr<OpenCLAccessAttr>()) {
6513     if (D->getAttr<OpenCLAccessAttr>()->getSemanticSpelling() ==
6514         AL.getSemanticSpelling()) {
6515       S.Diag(AL.getLoc(), diag::warn_duplicate_declspec)
6516           << AL.getName()->getName() << AL.getRange();
6517     } else {
6518       S.Diag(AL.getLoc(), diag::err_opencl_multiple_access_qualifiers)
6519           << D->getSourceRange();
6520       D->setInvalidDecl(true);
6521       return;
6522     }
6523   }
6524 
6525   // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an
6526   // image object can be read and written.
6527   // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe
6528   // object. Using the read_write (or __read_write) qualifier with the pipe
6529   // qualifier is a compilation error.
6530   if (const auto *PDecl = dyn_cast<ParmVarDecl>(D)) {
6531     const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr();
6532     if (AL.getName()->getName().find("read_write") != StringRef::npos) {
6533       if ((!S.getLangOpts().OpenCLCPlusPlus &&
6534            S.getLangOpts().OpenCLVersion < 200) ||
6535           DeclTy->isPipeType()) {
6536         S.Diag(AL.getLoc(), diag::err_opencl_invalid_read_write)
6537             << AL << PDecl->getType() << DeclTy->isImageType();
6538         D->setInvalidDecl(true);
6539         return;
6540       }
6541     }
6542   }
6543 
6544   D->addAttr(::new (S.Context) OpenCLAccessAttr(
6545       AL.getRange(), S.Context, AL.getAttributeSpellingListIndex()));
6546 }
6547 
6548 static void handleDestroyAttr(Sema &S, Decl *D, const ParsedAttr &A) {
6549   if (!cast<VarDecl>(D)->hasGlobalStorage()) {
6550     S.Diag(D->getLocation(), diag::err_destroy_attr_on_non_static_var)
6551         << (A.getKind() == ParsedAttr::AT_AlwaysDestroy);
6552     return;
6553   }
6554 
6555   if (A.getKind() == ParsedAttr::AT_AlwaysDestroy)
6556     handleSimpleAttributeWithExclusions<AlwaysDestroyAttr, NoDestroyAttr>(S, D, A);
6557   else
6558     handleSimpleAttributeWithExclusions<NoDestroyAttr, AlwaysDestroyAttr>(S, D, A);
6559 }
6560 
6561 static void handleUninitializedAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6562   assert(cast<VarDecl>(D)->getStorageDuration() == SD_Automatic &&
6563          "uninitialized is only valid on automatic duration variables");
6564   unsigned Index = AL.getAttributeSpellingListIndex();
6565   D->addAttr(::new (S.Context)
6566                  UninitializedAttr(AL.getLoc(), S.Context, Index));
6567 }
6568 
6569 static bool tryMakeVariablePseudoStrong(Sema &S, VarDecl *VD,
6570                                         bool DiagnoseFailure) {
6571   QualType Ty = VD->getType();
6572   if (!Ty->isObjCRetainableType()) {
6573     if (DiagnoseFailure) {
6574       S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6575           << 0;
6576     }
6577     return false;
6578   }
6579 
6580   Qualifiers::ObjCLifetime LifetimeQual = Ty.getQualifiers().getObjCLifetime();
6581 
6582   // Sema::inferObjCARCLifetime must run after processing decl attributes
6583   // (because __block lowers to an attribute), so if the lifetime hasn't been
6584   // explicitly specified, infer it locally now.
6585   if (LifetimeQual == Qualifiers::OCL_None)
6586     LifetimeQual = Ty->getObjCARCImplicitLifetime();
6587 
6588   // The attributes only really makes sense for __strong variables; ignore any
6589   // attempts to annotate a parameter with any other lifetime qualifier.
6590   if (LifetimeQual != Qualifiers::OCL_Strong) {
6591     if (DiagnoseFailure) {
6592       S.Diag(VD->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6593           << 1;
6594     }
6595     return false;
6596   }
6597 
6598   // Tampering with the type of a VarDecl here is a bit of a hack, but we need
6599   // to ensure that the variable is 'const' so that we can error on
6600   // modification, which can otherwise over-release.
6601   VD->setType(Ty.withConst());
6602   VD->setARCPseudoStrong(true);
6603   return true;
6604 }
6605 
6606 static void handleObjCExternallyRetainedAttr(Sema &S, Decl *D,
6607                                              const ParsedAttr &AL) {
6608   if (auto *VD = dyn_cast<VarDecl>(D)) {
6609     assert(!isa<ParmVarDecl>(VD) && "should be diagnosed automatically");
6610     if (!VD->hasLocalStorage()) {
6611       S.Diag(D->getBeginLoc(), diag::warn_ignored_objc_externally_retained)
6612           << 0;
6613       return;
6614     }
6615 
6616     if (!tryMakeVariablePseudoStrong(S, VD, /*DiagnoseFailure=*/true))
6617       return;
6618 
6619     handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
6620     return;
6621   }
6622 
6623   // If D is a function-like declaration (method, block, or function), then we
6624   // make every parameter psuedo-strong.
6625   for (unsigned I = 0, E = getFunctionOrMethodNumParams(D); I != E; ++I) {
6626     auto *PVD = const_cast<ParmVarDecl *>(getFunctionOrMethodParam(D, I));
6627     QualType Ty = PVD->getType();
6628 
6629     // If a user wrote a parameter with __strong explicitly, then assume they
6630     // want "real" strong semantics for that parameter. This works because if
6631     // the parameter was written with __strong, then the strong qualifier will
6632     // be non-local.
6633     if (Ty.getLocalUnqualifiedType().getQualifiers().getObjCLifetime() ==
6634         Qualifiers::OCL_Strong)
6635       continue;
6636 
6637     tryMakeVariablePseudoStrong(S, PVD, /*DiagnoseFailure=*/false);
6638   }
6639   handleSimpleAttribute<ObjCExternallyRetainedAttr>(S, D, AL);
6640 }
6641 
6642 static void handleMIGServerRoutineAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6643   // Check that the return type is a `typedef int kern_return_t` or a typedef
6644   // around it, because otherwise MIG convention checks make no sense.
6645   // BlockDecl doesn't store a return type, so it's annoying to check,
6646   // so let's skip it for now.
6647   if (!isa<BlockDecl>(D)) {
6648     QualType T = getFunctionOrMethodResultType(D);
6649     bool IsKernReturnT = false;
6650     while (const auto *TT = T->getAs<TypedefType>()) {
6651       IsKernReturnT = (TT->getDecl()->getName() == "kern_return_t");
6652       T = TT->desugar();
6653     }
6654     if (!IsKernReturnT || T.getCanonicalType() != S.getASTContext().IntTy) {
6655       S.Diag(D->getBeginLoc(),
6656              diag::warn_mig_server_routine_does_not_return_kern_return_t);
6657       return;
6658     }
6659   }
6660 
6661   handleSimpleAttribute<MIGServerRoutineAttr>(S, D, AL);
6662 }
6663 
6664 static void handleMSAllocatorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
6665   // Warn if the return type is not a pointer or reference type.
6666   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
6667     QualType RetTy = FD->getReturnType();
6668     if (!RetTy->isPointerType() && !RetTy->isReferenceType()) {
6669       S.Diag(AL.getLoc(), diag::warn_declspec_allocator_nonpointer)
6670           << AL.getRange() << RetTy;
6671       return;
6672     }
6673   }
6674 
6675   handleSimpleAttribute<MSAllocatorAttr>(S, D, AL);
6676 }
6677 
6678 //===----------------------------------------------------------------------===//
6679 // Top Level Sema Entry Points
6680 //===----------------------------------------------------------------------===//
6681 
6682 /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if
6683 /// the attribute applies to decls.  If the attribute is a type attribute, just
6684 /// silently ignore it if a GNU attribute.
6685 static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
6686                                  const ParsedAttr &AL,
6687                                  bool IncludeCXX11Attributes) {
6688   if (AL.isInvalid() || AL.getKind() == ParsedAttr::IgnoredAttribute)
6689     return;
6690 
6691   // Ignore C++11 attributes on declarator chunks: they appertain to the type
6692   // instead.
6693   if (AL.isCXX11Attribute() && !IncludeCXX11Attributes)
6694     return;
6695 
6696   // Unknown attributes are automatically warned on. Target-specific attributes
6697   // which do not apply to the current target architecture are treated as
6698   // though they were unknown attributes.
6699   if (AL.getKind() == ParsedAttr::UnknownAttribute ||
6700       !AL.existsInTarget(S.Context.getTargetInfo())) {
6701     S.Diag(AL.getLoc(),
6702            AL.isDeclspecAttribute()
6703                ? (unsigned)diag::warn_unhandled_ms_attribute_ignored
6704                : (unsigned)diag::warn_unknown_attribute_ignored)
6705         << AL;
6706     return;
6707   }
6708 
6709   if (handleCommonAttributeFeatures(S, D, AL))
6710     return;
6711 
6712   switch (AL.getKind()) {
6713   default:
6714     if (!AL.isStmtAttr()) {
6715       // Type attributes are handled elsewhere; silently move on.
6716       assert(AL.isTypeAttr() && "Non-type attribute not handled");
6717       break;
6718     }
6719     S.Diag(AL.getLoc(), diag::err_stmt_attribute_invalid_on_decl)
6720         << AL << D->getLocation();
6721     break;
6722   case ParsedAttr::AT_Interrupt:
6723     handleInterruptAttr(S, D, AL);
6724     break;
6725   case ParsedAttr::AT_X86ForceAlignArgPointer:
6726     handleX86ForceAlignArgPointerAttr(S, D, AL);
6727     break;
6728   case ParsedAttr::AT_DLLExport:
6729   case ParsedAttr::AT_DLLImport:
6730     handleDLLAttr(S, D, AL);
6731     break;
6732   case ParsedAttr::AT_Mips16:
6733     handleSimpleAttributeWithExclusions<Mips16Attr, MicroMipsAttr,
6734                                         MipsInterruptAttr>(S, D, AL);
6735     break;
6736   case ParsedAttr::AT_NoMips16:
6737     handleSimpleAttribute<NoMips16Attr>(S, D, AL);
6738     break;
6739   case ParsedAttr::AT_MicroMips:
6740     handleSimpleAttributeWithExclusions<MicroMipsAttr, Mips16Attr>(S, D, AL);
6741     break;
6742   case ParsedAttr::AT_NoMicroMips:
6743     handleSimpleAttribute<NoMicroMipsAttr>(S, D, AL);
6744     break;
6745   case ParsedAttr::AT_MipsLongCall:
6746     handleSimpleAttributeWithExclusions<MipsLongCallAttr, MipsShortCallAttr>(
6747         S, D, AL);
6748     break;
6749   case ParsedAttr::AT_MipsShortCall:
6750     handleSimpleAttributeWithExclusions<MipsShortCallAttr, MipsLongCallAttr>(
6751         S, D, AL);
6752     break;
6753   case ParsedAttr::AT_AMDGPUFlatWorkGroupSize:
6754     handleAMDGPUFlatWorkGroupSizeAttr(S, D, AL);
6755     break;
6756   case ParsedAttr::AT_AMDGPUWavesPerEU:
6757     handleAMDGPUWavesPerEUAttr(S, D, AL);
6758     break;
6759   case ParsedAttr::AT_AMDGPUNumSGPR:
6760     handleAMDGPUNumSGPRAttr(S, D, AL);
6761     break;
6762   case ParsedAttr::AT_AMDGPUNumVGPR:
6763     handleAMDGPUNumVGPRAttr(S, D, AL);
6764     break;
6765   case ParsedAttr::AT_AVRSignal:
6766     handleAVRSignalAttr(S, D, AL);
6767     break;
6768   case ParsedAttr::AT_WebAssemblyImportModule:
6769     handleWebAssemblyImportModuleAttr(S, D, AL);
6770     break;
6771   case ParsedAttr::AT_WebAssemblyImportName:
6772     handleWebAssemblyImportNameAttr(S, D, AL);
6773     break;
6774   case ParsedAttr::AT_IBAction:
6775     handleSimpleAttribute<IBActionAttr>(S, D, AL);
6776     break;
6777   case ParsedAttr::AT_IBOutlet:
6778     handleIBOutlet(S, D, AL);
6779     break;
6780   case ParsedAttr::AT_IBOutletCollection:
6781     handleIBOutletCollection(S, D, AL);
6782     break;
6783   case ParsedAttr::AT_IFunc:
6784     handleIFuncAttr(S, D, AL);
6785     break;
6786   case ParsedAttr::AT_Alias:
6787     handleAliasAttr(S, D, AL);
6788     break;
6789   case ParsedAttr::AT_Aligned:
6790     handleAlignedAttr(S, D, AL);
6791     break;
6792   case ParsedAttr::AT_AlignValue:
6793     handleAlignValueAttr(S, D, AL);
6794     break;
6795   case ParsedAttr::AT_AllocSize:
6796     handleAllocSizeAttr(S, D, AL);
6797     break;
6798   case ParsedAttr::AT_AlwaysInline:
6799     handleAlwaysInlineAttr(S, D, AL);
6800     break;
6801   case ParsedAttr::AT_Artificial:
6802     handleSimpleAttribute<ArtificialAttr>(S, D, AL);
6803     break;
6804   case ParsedAttr::AT_AnalyzerNoReturn:
6805     handleAnalyzerNoReturnAttr(S, D, AL);
6806     break;
6807   case ParsedAttr::AT_TLSModel:
6808     handleTLSModelAttr(S, D, AL);
6809     break;
6810   case ParsedAttr::AT_Annotate:
6811     handleAnnotateAttr(S, D, AL);
6812     break;
6813   case ParsedAttr::AT_Availability:
6814     handleAvailabilityAttr(S, D, AL);
6815     break;
6816   case ParsedAttr::AT_CarriesDependency:
6817     handleDependencyAttr(S, scope, D, AL);
6818     break;
6819   case ParsedAttr::AT_CPUDispatch:
6820   case ParsedAttr::AT_CPUSpecific:
6821     handleCPUSpecificAttr(S, D, AL);
6822     break;
6823   case ParsedAttr::AT_Common:
6824     handleCommonAttr(S, D, AL);
6825     break;
6826   case ParsedAttr::AT_CUDAConstant:
6827     handleConstantAttr(S, D, AL);
6828     break;
6829   case ParsedAttr::AT_PassObjectSize:
6830     handlePassObjectSizeAttr(S, D, AL);
6831     break;
6832   case ParsedAttr::AT_Constructor:
6833     handleConstructorAttr(S, D, AL);
6834     break;
6835   case ParsedAttr::AT_CXX11NoReturn:
6836     handleSimpleAttribute<CXX11NoReturnAttr>(S, D, AL);
6837     break;
6838   case ParsedAttr::AT_Deprecated:
6839     handleDeprecatedAttr(S, D, AL);
6840     break;
6841   case ParsedAttr::AT_Destructor:
6842     handleDestructorAttr(S, D, AL);
6843     break;
6844   case ParsedAttr::AT_EnableIf:
6845     handleEnableIfAttr(S, D, AL);
6846     break;
6847   case ParsedAttr::AT_DiagnoseIf:
6848     handleDiagnoseIfAttr(S, D, AL);
6849     break;
6850   case ParsedAttr::AT_ExtVectorType:
6851     handleExtVectorTypeAttr(S, D, AL);
6852     break;
6853   case ParsedAttr::AT_ExternalSourceSymbol:
6854     handleExternalSourceSymbolAttr(S, D, AL);
6855     break;
6856   case ParsedAttr::AT_MinSize:
6857     handleMinSizeAttr(S, D, AL);
6858     break;
6859   case ParsedAttr::AT_OptimizeNone:
6860     handleOptimizeNoneAttr(S, D, AL);
6861     break;
6862   case ParsedAttr::AT_FlagEnum:
6863     handleSimpleAttribute<FlagEnumAttr>(S, D, AL);
6864     break;
6865   case ParsedAttr::AT_EnumExtensibility:
6866     handleEnumExtensibilityAttr(S, D, AL);
6867     break;
6868   case ParsedAttr::AT_Flatten:
6869     handleSimpleAttribute<FlattenAttr>(S, D, AL);
6870     break;
6871   case ParsedAttr::AT_Format:
6872     handleFormatAttr(S, D, AL);
6873     break;
6874   case ParsedAttr::AT_FormatArg:
6875     handleFormatArgAttr(S, D, AL);
6876     break;
6877   case ParsedAttr::AT_Callback:
6878     handleCallbackAttr(S, D, AL);
6879     break;
6880   case ParsedAttr::AT_CUDAGlobal:
6881     handleGlobalAttr(S, D, AL);
6882     break;
6883   case ParsedAttr::AT_CUDADevice:
6884     handleSimpleAttributeWithExclusions<CUDADeviceAttr, CUDAGlobalAttr>(S, D,
6885                                                                         AL);
6886     break;
6887   case ParsedAttr::AT_CUDAHost:
6888     handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D, AL);
6889     break;
6890   case ParsedAttr::AT_HIPPinnedShadow:
6891     handleSimpleAttributeWithExclusions<HIPPinnedShadowAttr, CUDADeviceAttr,
6892                                         CUDAConstantAttr>(S, D, AL);
6893     break;
6894   case ParsedAttr::AT_GNUInline:
6895     handleGNUInlineAttr(S, D, AL);
6896     break;
6897   case ParsedAttr::AT_CUDALaunchBounds:
6898     handleLaunchBoundsAttr(S, D, AL);
6899     break;
6900   case ParsedAttr::AT_Restrict:
6901     handleRestrictAttr(S, D, AL);
6902     break;
6903   case ParsedAttr::AT_LifetimeBound:
6904     handleSimpleAttribute<LifetimeBoundAttr>(S, D, AL);
6905     break;
6906   case ParsedAttr::AT_MayAlias:
6907     handleSimpleAttribute<MayAliasAttr>(S, D, AL);
6908     break;
6909   case ParsedAttr::AT_Mode:
6910     handleModeAttr(S, D, AL);
6911     break;
6912   case ParsedAttr::AT_NoAlias:
6913     handleSimpleAttribute<NoAliasAttr>(S, D, AL);
6914     break;
6915   case ParsedAttr::AT_NoCommon:
6916     handleSimpleAttribute<NoCommonAttr>(S, D, AL);
6917     break;
6918   case ParsedAttr::AT_NoSplitStack:
6919     handleSimpleAttribute<NoSplitStackAttr>(S, D, AL);
6920     break;
6921   case ParsedAttr::AT_NoUniqueAddress:
6922     handleSimpleAttribute<NoUniqueAddressAttr>(S, D, AL);
6923     break;
6924   case ParsedAttr::AT_NonNull:
6925     if (auto *PVD = dyn_cast<ParmVarDecl>(D))
6926       handleNonNullAttrParameter(S, PVD, AL);
6927     else
6928       handleNonNullAttr(S, D, AL);
6929     break;
6930   case ParsedAttr::AT_ReturnsNonNull:
6931     handleReturnsNonNullAttr(S, D, AL);
6932     break;
6933   case ParsedAttr::AT_NoEscape:
6934     handleNoEscapeAttr(S, D, AL);
6935     break;
6936   case ParsedAttr::AT_AssumeAligned:
6937     handleAssumeAlignedAttr(S, D, AL);
6938     break;
6939   case ParsedAttr::AT_AllocAlign:
6940     handleAllocAlignAttr(S, D, AL);
6941     break;
6942   case ParsedAttr::AT_Overloadable:
6943     handleSimpleAttribute<OverloadableAttr>(S, D, AL);
6944     break;
6945   case ParsedAttr::AT_Ownership:
6946     handleOwnershipAttr(S, D, AL);
6947     break;
6948   case ParsedAttr::AT_Cold:
6949     handleSimpleAttributeWithExclusions<ColdAttr, HotAttr>(S, D, AL);
6950     break;
6951   case ParsedAttr::AT_Hot:
6952     handleSimpleAttributeWithExclusions<HotAttr, ColdAttr>(S, D, AL);
6953     break;
6954   case ParsedAttr::AT_Naked:
6955     handleNakedAttr(S, D, AL);
6956     break;
6957   case ParsedAttr::AT_NoReturn:
6958     handleNoReturnAttr(S, D, AL);
6959     break;
6960   case ParsedAttr::AT_AnyX86NoCfCheck:
6961     handleNoCfCheckAttr(S, D, AL);
6962     break;
6963   case ParsedAttr::AT_NoThrow:
6964     if (!AL.isUsedAsTypeAttr())
6965       handleSimpleAttribute<NoThrowAttr>(S, D, AL);
6966     break;
6967   case ParsedAttr::AT_CUDAShared:
6968     handleSharedAttr(S, D, AL);
6969     break;
6970   case ParsedAttr::AT_VecReturn:
6971     handleVecReturnAttr(S, D, AL);
6972     break;
6973   case ParsedAttr::AT_ObjCOwnership:
6974     handleObjCOwnershipAttr(S, D, AL);
6975     break;
6976   case ParsedAttr::AT_ObjCPreciseLifetime:
6977     handleObjCPreciseLifetimeAttr(S, D, AL);
6978     break;
6979   case ParsedAttr::AT_ObjCReturnsInnerPointer:
6980     handleObjCReturnsInnerPointerAttr(S, D, AL);
6981     break;
6982   case ParsedAttr::AT_ObjCRequiresSuper:
6983     handleObjCRequiresSuperAttr(S, D, AL);
6984     break;
6985   case ParsedAttr::AT_ObjCBridge:
6986     handleObjCBridgeAttr(S, D, AL);
6987     break;
6988   case ParsedAttr::AT_ObjCBridgeMutable:
6989     handleObjCBridgeMutableAttr(S, D, AL);
6990     break;
6991   case ParsedAttr::AT_ObjCBridgeRelated:
6992     handleObjCBridgeRelatedAttr(S, D, AL);
6993     break;
6994   case ParsedAttr::AT_ObjCDesignatedInitializer:
6995     handleObjCDesignatedInitializer(S, D, AL);
6996     break;
6997   case ParsedAttr::AT_ObjCRuntimeName:
6998     handleObjCRuntimeName(S, D, AL);
6999     break;
7000   case ParsedAttr::AT_ObjCRuntimeVisible:
7001     handleSimpleAttribute<ObjCRuntimeVisibleAttr>(S, D, AL);
7002     break;
7003   case ParsedAttr::AT_ObjCBoxable:
7004     handleObjCBoxable(S, D, AL);
7005     break;
7006   case ParsedAttr::AT_CFAuditedTransfer:
7007     handleSimpleAttributeWithExclusions<CFAuditedTransferAttr,
7008                                         CFUnknownTransferAttr>(S, D, AL);
7009     break;
7010   case ParsedAttr::AT_CFUnknownTransfer:
7011     handleSimpleAttributeWithExclusions<CFUnknownTransferAttr,
7012                                         CFAuditedTransferAttr>(S, D, AL);
7013     break;
7014   case ParsedAttr::AT_CFConsumed:
7015   case ParsedAttr::AT_NSConsumed:
7016   case ParsedAttr::AT_OSConsumed:
7017     S.AddXConsumedAttr(D, AL.getRange(), AL.getAttributeSpellingListIndex(),
7018                      parsedAttrToRetainOwnershipKind(AL),
7019                      /*IsTemplateInstantiation=*/false);
7020     break;
7021   case ParsedAttr::AT_NSConsumesSelf:
7022     handleSimpleAttribute<NSConsumesSelfAttr>(S, D, AL);
7023     break;
7024   case ParsedAttr::AT_OSConsumesThis:
7025     handleSimpleAttribute<OSConsumesThisAttr>(S, D, AL);
7026     break;
7027   case ParsedAttr::AT_OSReturnsRetainedOnZero:
7028     handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnZeroAttr>(
7029         S, D, AL, isValidOSObjectOutParameter(D),
7030         diag::warn_ns_attribute_wrong_parameter_type,
7031         /*Extra Args=*/AL, /*pointer-to-OSObject-pointer*/ 3, AL.getRange());
7032     break;
7033   case ParsedAttr::AT_OSReturnsRetainedOnNonZero:
7034     handleSimpleAttributeOrDiagnose<OSReturnsRetainedOnNonZeroAttr>(
7035         S, D, AL, isValidOSObjectOutParameter(D),
7036         diag::warn_ns_attribute_wrong_parameter_type,
7037         /*Extra Args=*/AL, /*pointer-to-OSObject-poointer*/ 3, AL.getRange());
7038     break;
7039   case ParsedAttr::AT_NSReturnsAutoreleased:
7040   case ParsedAttr::AT_NSReturnsNotRetained:
7041   case ParsedAttr::AT_NSReturnsRetained:
7042   case ParsedAttr::AT_CFReturnsNotRetained:
7043   case ParsedAttr::AT_CFReturnsRetained:
7044   case ParsedAttr::AT_OSReturnsNotRetained:
7045   case ParsedAttr::AT_OSReturnsRetained:
7046     handleXReturnsXRetainedAttr(S, D, AL);
7047     break;
7048   case ParsedAttr::AT_WorkGroupSizeHint:
7049     handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, AL);
7050     break;
7051   case ParsedAttr::AT_ReqdWorkGroupSize:
7052     handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, AL);
7053     break;
7054   case ParsedAttr::AT_OpenCLIntelReqdSubGroupSize:
7055     handleSubGroupSize(S, D, AL);
7056     break;
7057   case ParsedAttr::AT_VecTypeHint:
7058     handleVecTypeHint(S, D, AL);
7059     break;
7060   case ParsedAttr::AT_RequireConstantInit:
7061     handleSimpleAttribute<RequireConstantInitAttr>(S, D, AL);
7062     break;
7063   case ParsedAttr::AT_InitPriority:
7064     handleInitPriorityAttr(S, D, AL);
7065     break;
7066   case ParsedAttr::AT_Packed:
7067     handlePackedAttr(S, D, AL);
7068     break;
7069   case ParsedAttr::AT_Section:
7070     handleSectionAttr(S, D, AL);
7071     break;
7072   case ParsedAttr::AT_SpeculativeLoadHardening:
7073     handleSimpleAttributeWithExclusions<SpeculativeLoadHardeningAttr,
7074                                         NoSpeculativeLoadHardeningAttr>(S, D,
7075                                                                         AL);
7076     break;
7077   case ParsedAttr::AT_NoSpeculativeLoadHardening:
7078     handleSimpleAttributeWithExclusions<NoSpeculativeLoadHardeningAttr,
7079                                         SpeculativeLoadHardeningAttr>(S, D, AL);
7080     break;
7081   case ParsedAttr::AT_CodeSeg:
7082     handleCodeSegAttr(S, D, AL);
7083     break;
7084   case ParsedAttr::AT_Target:
7085     handleTargetAttr(S, D, AL);
7086     break;
7087   case ParsedAttr::AT_MinVectorWidth:
7088     handleMinVectorWidthAttr(S, D, AL);
7089     break;
7090   case ParsedAttr::AT_Unavailable:
7091     handleAttrWithMessage<UnavailableAttr>(S, D, AL);
7092     break;
7093   case ParsedAttr::AT_ArcWeakrefUnavailable:
7094     handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, AL);
7095     break;
7096   case ParsedAttr::AT_ObjCRootClass:
7097     handleSimpleAttribute<ObjCRootClassAttr>(S, D, AL);
7098     break;
7099   case ParsedAttr::AT_ObjCNonLazyClass:
7100     handleSimpleAttribute<ObjCNonLazyClassAttr>(S, D, AL);
7101     break;
7102   case ParsedAttr::AT_ObjCSubclassingRestricted:
7103     handleSimpleAttribute<ObjCSubclassingRestrictedAttr>(S, D, AL);
7104     break;
7105   case ParsedAttr::AT_ObjCClassStub:
7106     handleSimpleAttribute<ObjCClassStubAttr>(S, D, AL);
7107     break;
7108   case ParsedAttr::AT_ObjCExplicitProtocolImpl:
7109     handleObjCSuppresProtocolAttr(S, D, AL);
7110     break;
7111   case ParsedAttr::AT_ObjCRequiresPropertyDefs:
7112     handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, AL);
7113     break;
7114   case ParsedAttr::AT_Unused:
7115     handleUnusedAttr(S, D, AL);
7116     break;
7117   case ParsedAttr::AT_ReturnsTwice:
7118     handleSimpleAttribute<ReturnsTwiceAttr>(S, D, AL);
7119     break;
7120   case ParsedAttr::AT_NotTailCalled:
7121     handleSimpleAttributeWithExclusions<NotTailCalledAttr, AlwaysInlineAttr>(
7122         S, D, AL);
7123     break;
7124   case ParsedAttr::AT_DisableTailCalls:
7125     handleSimpleAttributeWithExclusions<DisableTailCallsAttr, NakedAttr>(S, D,
7126                                                                          AL);
7127     break;
7128   case ParsedAttr::AT_Used:
7129     handleSimpleAttribute<UsedAttr>(S, D, AL);
7130     break;
7131   case ParsedAttr::AT_Visibility:
7132     handleVisibilityAttr(S, D, AL, false);
7133     break;
7134   case ParsedAttr::AT_TypeVisibility:
7135     handleVisibilityAttr(S, D, AL, true);
7136     break;
7137   case ParsedAttr::AT_WarnUnused:
7138     handleSimpleAttribute<WarnUnusedAttr>(S, D, AL);
7139     break;
7140   case ParsedAttr::AT_WarnUnusedResult:
7141     handleWarnUnusedResult(S, D, AL);
7142     break;
7143   case ParsedAttr::AT_Weak:
7144     handleSimpleAttribute<WeakAttr>(S, D, AL);
7145     break;
7146   case ParsedAttr::AT_WeakRef:
7147     handleWeakRefAttr(S, D, AL);
7148     break;
7149   case ParsedAttr::AT_WeakImport:
7150     handleWeakImportAttr(S, D, AL);
7151     break;
7152   case ParsedAttr::AT_TransparentUnion:
7153     handleTransparentUnionAttr(S, D, AL);
7154     break;
7155   case ParsedAttr::AT_ObjCException:
7156     handleSimpleAttribute<ObjCExceptionAttr>(S, D, AL);
7157     break;
7158   case ParsedAttr::AT_ObjCMethodFamily:
7159     handleObjCMethodFamilyAttr(S, D, AL);
7160     break;
7161   case ParsedAttr::AT_ObjCNSObject:
7162     handleObjCNSObject(S, D, AL);
7163     break;
7164   case ParsedAttr::AT_ObjCIndependentClass:
7165     handleObjCIndependentClass(S, D, AL);
7166     break;
7167   case ParsedAttr::AT_Blocks:
7168     handleBlocksAttr(S, D, AL);
7169     break;
7170   case ParsedAttr::AT_Sentinel:
7171     handleSentinelAttr(S, D, AL);
7172     break;
7173   case ParsedAttr::AT_Const:
7174     handleSimpleAttribute<ConstAttr>(S, D, AL);
7175     break;
7176   case ParsedAttr::AT_Pure:
7177     handleSimpleAttribute<PureAttr>(S, D, AL);
7178     break;
7179   case ParsedAttr::AT_Cleanup:
7180     handleCleanupAttr(S, D, AL);
7181     break;
7182   case ParsedAttr::AT_NoDebug:
7183     handleNoDebugAttr(S, D, AL);
7184     break;
7185   case ParsedAttr::AT_NoDuplicate:
7186     handleSimpleAttribute<NoDuplicateAttr>(S, D, AL);
7187     break;
7188   case ParsedAttr::AT_Convergent:
7189     handleSimpleAttribute<ConvergentAttr>(S, D, AL);
7190     break;
7191   case ParsedAttr::AT_NoInline:
7192     handleSimpleAttribute<NoInlineAttr>(S, D, AL);
7193     break;
7194   case ParsedAttr::AT_NoInstrumentFunction: // Interacts with -pg.
7195     handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, AL);
7196     break;
7197   case ParsedAttr::AT_NoStackProtector:
7198     // Interacts with -fstack-protector options.
7199     handleSimpleAttribute<NoStackProtectorAttr>(S, D, AL);
7200     break;
7201   case ParsedAttr::AT_CFICanonicalJumpTable:
7202     handleSimpleAttribute<CFICanonicalJumpTableAttr>(S, D, AL);
7203     break;
7204   case ParsedAttr::AT_StdCall:
7205   case ParsedAttr::AT_CDecl:
7206   case ParsedAttr::AT_FastCall:
7207   case ParsedAttr::AT_ThisCall:
7208   case ParsedAttr::AT_Pascal:
7209   case ParsedAttr::AT_RegCall:
7210   case ParsedAttr::AT_SwiftCall:
7211   case ParsedAttr::AT_VectorCall:
7212   case ParsedAttr::AT_MSABI:
7213   case ParsedAttr::AT_SysVABI:
7214   case ParsedAttr::AT_Pcs:
7215   case ParsedAttr::AT_IntelOclBicc:
7216   case ParsedAttr::AT_PreserveMost:
7217   case ParsedAttr::AT_PreserveAll:
7218   case ParsedAttr::AT_AArch64VectorPcs:
7219     handleCallConvAttr(S, D, AL);
7220     break;
7221   case ParsedAttr::AT_Suppress:
7222     handleSuppressAttr(S, D, AL);
7223     break;
7224   case ParsedAttr::AT_Owner:
7225   case ParsedAttr::AT_Pointer:
7226     handleLifetimeCategoryAttr(S, D, AL);
7227     break;
7228   case ParsedAttr::AT_OpenCLKernel:
7229     handleSimpleAttribute<OpenCLKernelAttr>(S, D, AL);
7230     break;
7231   case ParsedAttr::AT_OpenCLAccess:
7232     handleOpenCLAccessAttr(S, D, AL);
7233     break;
7234   case ParsedAttr::AT_OpenCLNoSVM:
7235     handleOpenCLNoSVMAttr(S, D, AL);
7236     break;
7237   case ParsedAttr::AT_SwiftContext:
7238     handleParameterABIAttr(S, D, AL, ParameterABI::SwiftContext);
7239     break;
7240   case ParsedAttr::AT_SwiftErrorResult:
7241     handleParameterABIAttr(S, D, AL, ParameterABI::SwiftErrorResult);
7242     break;
7243   case ParsedAttr::AT_SwiftIndirectResult:
7244     handleParameterABIAttr(S, D, AL, ParameterABI::SwiftIndirectResult);
7245     break;
7246   case ParsedAttr::AT_InternalLinkage:
7247     handleInternalLinkageAttr(S, D, AL);
7248     break;
7249   case ParsedAttr::AT_ExcludeFromExplicitInstantiation:
7250     handleSimpleAttribute<ExcludeFromExplicitInstantiationAttr>(S, D, AL);
7251     break;
7252   case ParsedAttr::AT_LTOVisibilityPublic:
7253     handleSimpleAttribute<LTOVisibilityPublicAttr>(S, D, AL);
7254     break;
7255 
7256   // Microsoft attributes:
7257   case ParsedAttr::AT_EmptyBases:
7258     handleSimpleAttribute<EmptyBasesAttr>(S, D, AL);
7259     break;
7260   case ParsedAttr::AT_LayoutVersion:
7261     handleLayoutVersion(S, D, AL);
7262     break;
7263   case ParsedAttr::AT_TrivialABI:
7264     handleSimpleAttribute<TrivialABIAttr>(S, D, AL);
7265     break;
7266   case ParsedAttr::AT_MSNoVTable:
7267     handleSimpleAttribute<MSNoVTableAttr>(S, D, AL);
7268     break;
7269   case ParsedAttr::AT_MSStruct:
7270     handleSimpleAttribute<MSStructAttr>(S, D, AL);
7271     break;
7272   case ParsedAttr::AT_Uuid:
7273     handleUuidAttr(S, D, AL);
7274     break;
7275   case ParsedAttr::AT_MSInheritance:
7276     handleMSInheritanceAttr(S, D, AL);
7277     break;
7278   case ParsedAttr::AT_SelectAny:
7279     handleSimpleAttribute<SelectAnyAttr>(S, D, AL);
7280     break;
7281   case ParsedAttr::AT_Thread:
7282     handleDeclspecThreadAttr(S, D, AL);
7283     break;
7284 
7285   case ParsedAttr::AT_AbiTag:
7286     handleAbiTagAttr(S, D, AL);
7287     break;
7288 
7289   // Thread safety attributes:
7290   case ParsedAttr::AT_AssertExclusiveLock:
7291     handleAssertExclusiveLockAttr(S, D, AL);
7292     break;
7293   case ParsedAttr::AT_AssertSharedLock:
7294     handleAssertSharedLockAttr(S, D, AL);
7295     break;
7296   case ParsedAttr::AT_GuardedVar:
7297     handleSimpleAttribute<GuardedVarAttr>(S, D, AL);
7298     break;
7299   case ParsedAttr::AT_PtGuardedVar:
7300     handlePtGuardedVarAttr(S, D, AL);
7301     break;
7302   case ParsedAttr::AT_ScopedLockable:
7303     handleSimpleAttribute<ScopedLockableAttr>(S, D, AL);
7304     break;
7305   case ParsedAttr::AT_NoSanitize:
7306     handleNoSanitizeAttr(S, D, AL);
7307     break;
7308   case ParsedAttr::AT_NoSanitizeSpecific:
7309     handleNoSanitizeSpecificAttr(S, D, AL);
7310     break;
7311   case ParsedAttr::AT_NoThreadSafetyAnalysis:
7312     handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, AL);
7313     break;
7314   case ParsedAttr::AT_GuardedBy:
7315     handleGuardedByAttr(S, D, AL);
7316     break;
7317   case ParsedAttr::AT_PtGuardedBy:
7318     handlePtGuardedByAttr(S, D, AL);
7319     break;
7320   case ParsedAttr::AT_ExclusiveTrylockFunction:
7321     handleExclusiveTrylockFunctionAttr(S, D, AL);
7322     break;
7323   case ParsedAttr::AT_LockReturned:
7324     handleLockReturnedAttr(S, D, AL);
7325     break;
7326   case ParsedAttr::AT_LocksExcluded:
7327     handleLocksExcludedAttr(S, D, AL);
7328     break;
7329   case ParsedAttr::AT_SharedTrylockFunction:
7330     handleSharedTrylockFunctionAttr(S, D, AL);
7331     break;
7332   case ParsedAttr::AT_AcquiredBefore:
7333     handleAcquiredBeforeAttr(S, D, AL);
7334     break;
7335   case ParsedAttr::AT_AcquiredAfter:
7336     handleAcquiredAfterAttr(S, D, AL);
7337     break;
7338 
7339   // Capability analysis attributes.
7340   case ParsedAttr::AT_Capability:
7341   case ParsedAttr::AT_Lockable:
7342     handleCapabilityAttr(S, D, AL);
7343     break;
7344   case ParsedAttr::AT_RequiresCapability:
7345     handleRequiresCapabilityAttr(S, D, AL);
7346     break;
7347 
7348   case ParsedAttr::AT_AssertCapability:
7349     handleAssertCapabilityAttr(S, D, AL);
7350     break;
7351   case ParsedAttr::AT_AcquireCapability:
7352     handleAcquireCapabilityAttr(S, D, AL);
7353     break;
7354   case ParsedAttr::AT_ReleaseCapability:
7355     handleReleaseCapabilityAttr(S, D, AL);
7356     break;
7357   case ParsedAttr::AT_TryAcquireCapability:
7358     handleTryAcquireCapabilityAttr(S, D, AL);
7359     break;
7360 
7361   // Consumed analysis attributes.
7362   case ParsedAttr::AT_Consumable:
7363     handleConsumableAttr(S, D, AL);
7364     break;
7365   case ParsedAttr::AT_ConsumableAutoCast:
7366     handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, AL);
7367     break;
7368   case ParsedAttr::AT_ConsumableSetOnRead:
7369     handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, AL);
7370     break;
7371   case ParsedAttr::AT_CallableWhen:
7372     handleCallableWhenAttr(S, D, AL);
7373     break;
7374   case ParsedAttr::AT_ParamTypestate:
7375     handleParamTypestateAttr(S, D, AL);
7376     break;
7377   case ParsedAttr::AT_ReturnTypestate:
7378     handleReturnTypestateAttr(S, D, AL);
7379     break;
7380   case ParsedAttr::AT_SetTypestate:
7381     handleSetTypestateAttr(S, D, AL);
7382     break;
7383   case ParsedAttr::AT_TestTypestate:
7384     handleTestTypestateAttr(S, D, AL);
7385     break;
7386 
7387   // Type safety attributes.
7388   case ParsedAttr::AT_ArgumentWithTypeTag:
7389     handleArgumentWithTypeTagAttr(S, D, AL);
7390     break;
7391   case ParsedAttr::AT_TypeTagForDatatype:
7392     handleTypeTagForDatatypeAttr(S, D, AL);
7393     break;
7394   case ParsedAttr::AT_AnyX86NoCallerSavedRegisters:
7395     handleSimpleAttribute<AnyX86NoCallerSavedRegistersAttr>(S, D, AL);
7396     break;
7397   case ParsedAttr::AT_RenderScriptKernel:
7398     handleSimpleAttribute<RenderScriptKernelAttr>(S, D, AL);
7399     break;
7400   // XRay attributes.
7401   case ParsedAttr::AT_XRayInstrument:
7402     handleSimpleAttribute<XRayInstrumentAttr>(S, D, AL);
7403     break;
7404   case ParsedAttr::AT_XRayLogArgs:
7405     handleXRayLogArgsAttr(S, D, AL);
7406     break;
7407 
7408   // Move semantics attribute.
7409   case ParsedAttr::AT_Reinitializes:
7410     handleSimpleAttribute<ReinitializesAttr>(S, D, AL);
7411     break;
7412 
7413   case ParsedAttr::AT_AlwaysDestroy:
7414   case ParsedAttr::AT_NoDestroy:
7415     handleDestroyAttr(S, D, AL);
7416     break;
7417 
7418   case ParsedAttr::AT_Uninitialized:
7419     handleUninitializedAttr(S, D, AL);
7420     break;
7421 
7422   case ParsedAttr::AT_ObjCExternallyRetained:
7423     handleObjCExternallyRetainedAttr(S, D, AL);
7424     break;
7425 
7426   case ParsedAttr::AT_MIGServerRoutine:
7427     handleMIGServerRoutineAttr(S, D, AL);
7428     break;
7429 
7430   case ParsedAttr::AT_MSAllocator:
7431     handleMSAllocatorAttr(S, D, AL);
7432     break;
7433   }
7434 }
7435 
7436 /// ProcessDeclAttributeList - Apply all the decl attributes in the specified
7437 /// attribute list to the specified decl, ignoring any type attributes.
7438 void Sema::ProcessDeclAttributeList(Scope *S, Decl *D,
7439                                     const ParsedAttributesView &AttrList,
7440                                     bool IncludeCXX11Attributes) {
7441   if (AttrList.empty())
7442     return;
7443 
7444   for (const ParsedAttr &AL : AttrList)
7445     ProcessDeclAttribute(*this, S, D, AL, IncludeCXX11Attributes);
7446 
7447   // FIXME: We should be able to handle these cases in TableGen.
7448   // GCC accepts
7449   // static int a9 __attribute__((weakref));
7450   // but that looks really pointless. We reject it.
7451   if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) {
7452     Diag(AttrList.begin()->getLoc(), diag::err_attribute_weakref_without_alias)
7453         << cast<NamedDecl>(D);
7454     D->dropAttr<WeakRefAttr>();
7455     return;
7456   }
7457 
7458   // FIXME: We should be able to handle this in TableGen as well. It would be
7459   // good to have a way to specify "these attributes must appear as a group",
7460   // for these. Additionally, it would be good to have a way to specify "these
7461   // attribute must never appear as a group" for attributes like cold and hot.
7462   if (!D->hasAttr<OpenCLKernelAttr>()) {
7463     // These attributes cannot be applied to a non-kernel function.
7464     if (const auto *A = D->getAttr<ReqdWorkGroupSizeAttr>()) {
7465       // FIXME: This emits a different error message than
7466       // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction.
7467       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
7468       D->setInvalidDecl();
7469     } else if (const auto *A = D->getAttr<WorkGroupSizeHintAttr>()) {
7470       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
7471       D->setInvalidDecl();
7472     } else if (const auto *A = D->getAttr<VecTypeHintAttr>()) {
7473       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
7474       D->setInvalidDecl();
7475     } else if (const auto *A = D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>()) {
7476       Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A;
7477       D->setInvalidDecl();
7478     } else if (!D->hasAttr<CUDAGlobalAttr>()) {
7479       if (const auto *A = D->getAttr<AMDGPUFlatWorkGroupSizeAttr>()) {
7480         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7481             << A << ExpectedKernelFunction;
7482         D->setInvalidDecl();
7483       } else if (const auto *A = D->getAttr<AMDGPUWavesPerEUAttr>()) {
7484         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7485             << A << ExpectedKernelFunction;
7486         D->setInvalidDecl();
7487       } else if (const auto *A = D->getAttr<AMDGPUNumSGPRAttr>()) {
7488         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7489             << A << ExpectedKernelFunction;
7490         D->setInvalidDecl();
7491       } else if (const auto *A = D->getAttr<AMDGPUNumVGPRAttr>()) {
7492         Diag(D->getLocation(), diag::err_attribute_wrong_decl_type)
7493             << A << ExpectedKernelFunction;
7494         D->setInvalidDecl();
7495       }
7496     }
7497   }
7498 
7499   // Do this check after processing D's attributes because the attribute
7500   // objc_method_family can change whether the given method is in the init
7501   // family, and it can be applied after objc_designated_initializer. This is a
7502   // bit of a hack, but we need it to be compatible with versions of clang that
7503   // processed the attribute list in the wrong order.
7504   if (D->hasAttr<ObjCDesignatedInitializerAttr>() &&
7505       cast<ObjCMethodDecl>(D)->getMethodFamily() != OMF_init) {
7506     Diag(D->getLocation(), diag::err_designated_init_attr_non_init);
7507     D->dropAttr<ObjCDesignatedInitializerAttr>();
7508   }
7509 }
7510 
7511 // Helper for delayed processing TransparentUnion attribute.
7512 void Sema::ProcessDeclAttributeDelayed(Decl *D,
7513                                        const ParsedAttributesView &AttrList) {
7514   for (const ParsedAttr &AL : AttrList)
7515     if (AL.getKind() == ParsedAttr::AT_TransparentUnion) {
7516       handleTransparentUnionAttr(*this, D, AL);
7517       break;
7518     }
7519 }
7520 
7521 // Annotation attributes are the only attributes allowed after an access
7522 // specifier.
7523 bool Sema::ProcessAccessDeclAttributeList(
7524     AccessSpecDecl *ASDecl, const ParsedAttributesView &AttrList) {
7525   for (const ParsedAttr &AL : AttrList) {
7526     if (AL.getKind() == ParsedAttr::AT_Annotate) {
7527       ProcessDeclAttribute(*this, nullptr, ASDecl, AL, AL.isCXX11Attribute());
7528     } else {
7529       Diag(AL.getLoc(), diag::err_only_annotate_after_access_spec);
7530       return true;
7531     }
7532   }
7533   return false;
7534 }
7535 
7536 /// checkUnusedDeclAttributes - Check a list of attributes to see if it
7537 /// contains any decl attributes that we should warn about.
7538 static void checkUnusedDeclAttributes(Sema &S, const ParsedAttributesView &A) {
7539   for (const ParsedAttr &AL : A) {
7540     // Only warn if the attribute is an unignored, non-type attribute.
7541     if (AL.isUsedAsTypeAttr() || AL.isInvalid())
7542       continue;
7543     if (AL.getKind() == ParsedAttr::IgnoredAttribute)
7544       continue;
7545 
7546     if (AL.getKind() == ParsedAttr::UnknownAttribute) {
7547       S.Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored)
7548           << AL << AL.getRange();
7549     } else {
7550       S.Diag(AL.getLoc(), diag::warn_attribute_not_on_decl) << AL
7551                                                             << AL.getRange();
7552     }
7553   }
7554 }
7555 
7556 /// checkUnusedDeclAttributes - Given a declarator which is not being
7557 /// used to build a declaration, complain about any decl attributes
7558 /// which might be lying around on it.
7559 void Sema::checkUnusedDeclAttributes(Declarator &D) {
7560   ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes());
7561   ::checkUnusedDeclAttributes(*this, D.getAttributes());
7562   for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i)
7563     ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs());
7564 }
7565 
7566 /// DeclClonePragmaWeak - clone existing decl (maybe definition),
7567 /// \#pragma weak needs a non-definition decl and source may not have one.
7568 NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II,
7569                                       SourceLocation Loc) {
7570   assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND));
7571   NamedDecl *NewD = nullptr;
7572   if (auto *FD = dyn_cast<FunctionDecl>(ND)) {
7573     FunctionDecl *NewFD;
7574     // FIXME: Missing call to CheckFunctionDeclaration().
7575     // FIXME: Mangling?
7576     // FIXME: Is the qualifier info correct?
7577     // FIXME: Is the DeclContext correct?
7578     NewFD = FunctionDecl::Create(
7579         FD->getASTContext(), FD->getDeclContext(), Loc, Loc,
7580         DeclarationName(II), FD->getType(), FD->getTypeSourceInfo(), SC_None,
7581         false /*isInlineSpecified*/, FD->hasPrototype(), CSK_unspecified);
7582     NewD = NewFD;
7583 
7584     if (FD->getQualifier())
7585       NewFD->setQualifierInfo(FD->getQualifierLoc());
7586 
7587     // Fake up parameter variables; they are declared as if this were
7588     // a typedef.
7589     QualType FDTy = FD->getType();
7590     if (const auto *FT = FDTy->getAs<FunctionProtoType>()) {
7591       SmallVector<ParmVarDecl*, 16> Params;
7592       for (const auto &AI : FT->param_types()) {
7593         ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI);
7594         Param->setScopeInfo(0, Params.size());
7595         Params.push_back(Param);
7596       }
7597       NewFD->setParams(Params);
7598     }
7599   } else if (auto *VD = dyn_cast<VarDecl>(ND)) {
7600     NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(),
7601                            VD->getInnerLocStart(), VD->getLocation(), II,
7602                            VD->getType(), VD->getTypeSourceInfo(),
7603                            VD->getStorageClass());
7604     if (VD->getQualifier())
7605       cast<VarDecl>(NewD)->setQualifierInfo(VD->getQualifierLoc());
7606   }
7607   return NewD;
7608 }
7609 
7610 /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak
7611 /// applied to it, possibly with an alias.
7612 void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) {
7613   if (W.getUsed()) return; // only do this once
7614   W.setUsed(true);
7615   if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...))
7616     IdentifierInfo *NDId = ND->getIdentifier();
7617     NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation());
7618     NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(),
7619                                             W.getLocation()));
7620     NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
7621     WeakTopLevelDecl.push_back(NewD);
7622     // FIXME: "hideous" code from Sema::LazilyCreateBuiltin
7623     // to insert Decl at TU scope, sorry.
7624     DeclContext *SavedContext = CurContext;
7625     CurContext = Context.getTranslationUnitDecl();
7626     NewD->setDeclContext(CurContext);
7627     NewD->setLexicalDeclContext(CurContext);
7628     PushOnScopeChains(NewD, S);
7629     CurContext = SavedContext;
7630   } else { // just add weak to existing
7631     ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation()));
7632   }
7633 }
7634 
7635 void Sema::ProcessPragmaWeak(Scope *S, Decl *D) {
7636   // It's valid to "forward-declare" #pragma weak, in which case we
7637   // have to do this.
7638   LoadExternalWeakUndeclaredIdentifiers();
7639   if (!WeakUndeclaredIdentifiers.empty()) {
7640     NamedDecl *ND = nullptr;
7641     if (auto *VD = dyn_cast<VarDecl>(D))
7642       if (VD->isExternC())
7643         ND = VD;
7644     if (auto *FD = dyn_cast<FunctionDecl>(D))
7645       if (FD->isExternC())
7646         ND = FD;
7647     if (ND) {
7648       if (IdentifierInfo *Id = ND->getIdentifier()) {
7649         auto I = WeakUndeclaredIdentifiers.find(Id);
7650         if (I != WeakUndeclaredIdentifiers.end()) {
7651           WeakInfo W = I->second;
7652           DeclApplyPragmaWeak(S, ND, W);
7653           WeakUndeclaredIdentifiers[Id] = W;
7654         }
7655       }
7656     }
7657   }
7658 }
7659 
7660 /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in
7661 /// it, apply them to D.  This is a bit tricky because PD can have attributes
7662 /// specified in many different places, and we need to find and apply them all.
7663 void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) {
7664   // Apply decl attributes from the DeclSpec if present.
7665   if (!PD.getDeclSpec().getAttributes().empty())
7666     ProcessDeclAttributeList(S, D, PD.getDeclSpec().getAttributes());
7667 
7668   // Walk the declarator structure, applying decl attributes that were in a type
7669   // position to the decl itself.  This handles cases like:
7670   //   int *__attr__(x)** D;
7671   // when X is a decl attribute.
7672   for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i)
7673     ProcessDeclAttributeList(S, D, PD.getTypeObject(i).getAttrs(),
7674                              /*IncludeCXX11Attributes=*/false);
7675 
7676   // Finally, apply any attributes on the decl itself.
7677   ProcessDeclAttributeList(S, D, PD.getAttributes());
7678 
7679   // Apply additional attributes specified by '#pragma clang attribute'.
7680   AddPragmaAttributes(S, D);
7681 }
7682 
7683 /// Is the given declaration allowed to use a forbidden type?
7684 /// If so, it'll still be annotated with an attribute that makes it
7685 /// illegal to actually use.
7686 static bool isForbiddenTypeAllowed(Sema &S, Decl *D,
7687                                    const DelayedDiagnostic &diag,
7688                                    UnavailableAttr::ImplicitReason &reason) {
7689   // Private ivars are always okay.  Unfortunately, people don't
7690   // always properly make their ivars private, even in system headers.
7691   // Plus we need to make fields okay, too.
7692   if (!isa<FieldDecl>(D) && !isa<ObjCPropertyDecl>(D) &&
7693       !isa<FunctionDecl>(D))
7694     return false;
7695 
7696   // Silently accept unsupported uses of __weak in both user and system
7697   // declarations when it's been disabled, for ease of integration with
7698   // -fno-objc-arc files.  We do have to take some care against attempts
7699   // to define such things;  for now, we've only done that for ivars
7700   // and properties.
7701   if ((isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) {
7702     if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled ||
7703         diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) {
7704       reason = UnavailableAttr::IR_ForbiddenWeak;
7705       return true;
7706     }
7707   }
7708 
7709   // Allow all sorts of things in system headers.
7710   if (S.Context.getSourceManager().isInSystemHeader(D->getLocation())) {
7711     // Currently, all the failures dealt with this way are due to ARC
7712     // restrictions.
7713     reason = UnavailableAttr::IR_ARCForbiddenType;
7714     return true;
7715   }
7716 
7717   return false;
7718 }
7719 
7720 /// Handle a delayed forbidden-type diagnostic.
7721 static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &DD,
7722                                        Decl *D) {
7723   auto Reason = UnavailableAttr::IR_None;
7724   if (D && isForbiddenTypeAllowed(S, D, DD, Reason)) {
7725     assert(Reason && "didn't set reason?");
7726     D->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", Reason, DD.Loc));
7727     return;
7728   }
7729   if (S.getLangOpts().ObjCAutoRefCount)
7730     if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
7731       // FIXME: we may want to suppress diagnostics for all
7732       // kind of forbidden type messages on unavailable functions.
7733       if (FD->hasAttr<UnavailableAttr>() &&
7734           DD.getForbiddenTypeDiagnostic() ==
7735               diag::err_arc_array_param_no_ownership) {
7736         DD.Triggered = true;
7737         return;
7738       }
7739     }
7740 
7741   S.Diag(DD.Loc, DD.getForbiddenTypeDiagnostic())
7742       << DD.getForbiddenTypeOperand() << DD.getForbiddenTypeArgument();
7743   DD.Triggered = true;
7744 }
7745 
7746 static const AvailabilityAttr *getAttrForPlatform(ASTContext &Context,
7747                                                   const Decl *D) {
7748   // Check each AvailabilityAttr to find the one for this platform.
7749   for (const auto *A : D->attrs()) {
7750     if (const auto *Avail = dyn_cast<AvailabilityAttr>(A)) {
7751       // FIXME: this is copied from CheckAvailability. We should try to
7752       // de-duplicate.
7753 
7754       // Check if this is an App Extension "platform", and if so chop off
7755       // the suffix for matching with the actual platform.
7756       StringRef ActualPlatform = Avail->getPlatform()->getName();
7757       StringRef RealizedPlatform = ActualPlatform;
7758       if (Context.getLangOpts().AppExt) {
7759         size_t suffix = RealizedPlatform.rfind("_app_extension");
7760         if (suffix != StringRef::npos)
7761           RealizedPlatform = RealizedPlatform.slice(0, suffix);
7762       }
7763 
7764       StringRef TargetPlatform = Context.getTargetInfo().getPlatformName();
7765 
7766       // Match the platform name.
7767       if (RealizedPlatform == TargetPlatform)
7768         return Avail;
7769     }
7770   }
7771   return nullptr;
7772 }
7773 
7774 /// The diagnostic we should emit for \c D, and the declaration that
7775 /// originated it, or \c AR_Available.
7776 ///
7777 /// \param D The declaration to check.
7778 /// \param Message If non-null, this will be populated with the message from
7779 /// the availability attribute that is selected.
7780 /// \param ClassReceiver If we're checking the the method of a class message
7781 /// send, the class. Otherwise nullptr.
7782 static std::pair<AvailabilityResult, const NamedDecl *>
7783 ShouldDiagnoseAvailabilityOfDecl(Sema &S, const NamedDecl *D,
7784                                  std::string *Message,
7785                                  ObjCInterfaceDecl *ClassReceiver) {
7786   AvailabilityResult Result = D->getAvailability(Message);
7787 
7788   // For typedefs, if the typedef declaration appears available look
7789   // to the underlying type to see if it is more restrictive.
7790   while (const auto *TD = dyn_cast<TypedefNameDecl>(D)) {
7791     if (Result == AR_Available) {
7792       if (const auto *TT = TD->getUnderlyingType()->getAs<TagType>()) {
7793         D = TT->getDecl();
7794         Result = D->getAvailability(Message);
7795         continue;
7796       }
7797     }
7798     break;
7799   }
7800 
7801   // Forward class declarations get their attributes from their definition.
7802   if (const auto *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
7803     if (IDecl->getDefinition()) {
7804       D = IDecl->getDefinition();
7805       Result = D->getAvailability(Message);
7806     }
7807   }
7808 
7809   if (const auto *ECD = dyn_cast<EnumConstantDecl>(D))
7810     if (Result == AR_Available) {
7811       const DeclContext *DC = ECD->getDeclContext();
7812       if (const auto *TheEnumDecl = dyn_cast<EnumDecl>(DC)) {
7813         Result = TheEnumDecl->getAvailability(Message);
7814         D = TheEnumDecl;
7815       }
7816     }
7817 
7818   // For +new, infer availability from -init.
7819   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
7820     if (S.NSAPIObj && ClassReceiver) {
7821       ObjCMethodDecl *Init = ClassReceiver->lookupInstanceMethod(
7822           S.NSAPIObj->getInitSelector());
7823       if (Init && Result == AR_Available && MD->isClassMethod() &&
7824           MD->getSelector() == S.NSAPIObj->getNewSelector() &&
7825           MD->definedInNSObject(S.getASTContext())) {
7826         Result = Init->getAvailability(Message);
7827         D = Init;
7828       }
7829     }
7830   }
7831 
7832   return {Result, D};
7833 }
7834 
7835 
7836 /// whether we should emit a diagnostic for \c K and \c DeclVersion in
7837 /// the context of \c Ctx. For example, we should emit an unavailable diagnostic
7838 /// in a deprecated context, but not the other way around.
7839 static bool
7840 ShouldDiagnoseAvailabilityInContext(Sema &S, AvailabilityResult K,
7841                                     VersionTuple DeclVersion, Decl *Ctx,
7842                                     const NamedDecl *OffendingDecl) {
7843   assert(K != AR_Available && "Expected an unavailable declaration here!");
7844 
7845   // Checks if we should emit the availability diagnostic in the context of C.
7846   auto CheckContext = [&](const Decl *C) {
7847     if (K == AR_NotYetIntroduced) {
7848       if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, C))
7849         if (AA->getIntroduced() >= DeclVersion)
7850           return true;
7851     } else if (K == AR_Deprecated) {
7852       if (C->isDeprecated())
7853         return true;
7854     } else if (K == AR_Unavailable) {
7855       // It is perfectly fine to refer to an 'unavailable' Objective-C method
7856       // when it is referenced from within the @implementation itself. In this
7857       // context, we interpret unavailable as a form of access control.
7858       if (const auto *MD = dyn_cast<ObjCMethodDecl>(OffendingDecl)) {
7859         if (const auto *Impl = dyn_cast<ObjCImplDecl>(C)) {
7860           if (MD->getClassInterface() == Impl->getClassInterface())
7861             return true;
7862         }
7863       }
7864     }
7865 
7866     if (C->isUnavailable())
7867       return true;
7868     return false;
7869   };
7870 
7871   do {
7872     if (CheckContext(Ctx))
7873       return false;
7874 
7875     // An implementation implicitly has the availability of the interface.
7876     // Unless it is "+load" method.
7877     if (const auto *MethodD = dyn_cast<ObjCMethodDecl>(Ctx))
7878       if (MethodD->isClassMethod() &&
7879           MethodD->getSelector().getAsString() == "load")
7880         return true;
7881 
7882     if (const auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) {
7883       if (const ObjCInterfaceDecl *Interface = CatOrImpl->getClassInterface())
7884         if (CheckContext(Interface))
7885           return false;
7886     }
7887     // A category implicitly has the availability of the interface.
7888     else if (const auto *CatD = dyn_cast<ObjCCategoryDecl>(Ctx))
7889       if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface())
7890         if (CheckContext(Interface))
7891           return false;
7892   } while ((Ctx = cast_or_null<Decl>(Ctx->getDeclContext())));
7893 
7894   return true;
7895 }
7896 
7897 static bool
7898 shouldDiagnoseAvailabilityByDefault(const ASTContext &Context,
7899                                     const VersionTuple &DeploymentVersion,
7900                                     const VersionTuple &DeclVersion) {
7901   const auto &Triple = Context.getTargetInfo().getTriple();
7902   VersionTuple ForceAvailabilityFromVersion;
7903   switch (Triple.getOS()) {
7904   case llvm::Triple::IOS:
7905   case llvm::Triple::TvOS:
7906     ForceAvailabilityFromVersion = VersionTuple(/*Major=*/11);
7907     break;
7908   case llvm::Triple::WatchOS:
7909     ForceAvailabilityFromVersion = VersionTuple(/*Major=*/4);
7910     break;
7911   case llvm::Triple::Darwin:
7912   case llvm::Triple::MacOSX:
7913     ForceAvailabilityFromVersion = VersionTuple(/*Major=*/10, /*Minor=*/13);
7914     break;
7915   default:
7916     // New targets should always warn about availability.
7917     return Triple.getVendor() == llvm::Triple::Apple;
7918   }
7919   return DeploymentVersion >= ForceAvailabilityFromVersion ||
7920          DeclVersion >= ForceAvailabilityFromVersion;
7921 }
7922 
7923 static NamedDecl *findEnclosingDeclToAnnotate(Decl *OrigCtx) {
7924   for (Decl *Ctx = OrigCtx; Ctx;
7925        Ctx = cast_or_null<Decl>(Ctx->getDeclContext())) {
7926     if (isa<TagDecl>(Ctx) || isa<FunctionDecl>(Ctx) || isa<ObjCMethodDecl>(Ctx))
7927       return cast<NamedDecl>(Ctx);
7928     if (auto *CD = dyn_cast<ObjCContainerDecl>(Ctx)) {
7929       if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx))
7930         return Imp->getClassInterface();
7931       return CD;
7932     }
7933   }
7934 
7935   return dyn_cast<NamedDecl>(OrigCtx);
7936 }
7937 
7938 namespace {
7939 
7940 struct AttributeInsertion {
7941   StringRef Prefix;
7942   SourceLocation Loc;
7943   StringRef Suffix;
7944 
7945   static AttributeInsertion createInsertionAfter(const NamedDecl *D) {
7946     return {" ", D->getEndLoc(), ""};
7947   }
7948   static AttributeInsertion createInsertionAfter(SourceLocation Loc) {
7949     return {" ", Loc, ""};
7950   }
7951   static AttributeInsertion createInsertionBefore(const NamedDecl *D) {
7952     return {"", D->getBeginLoc(), "\n"};
7953   }
7954 };
7955 
7956 } // end anonymous namespace
7957 
7958 /// Tries to parse a string as ObjC method name.
7959 ///
7960 /// \param Name The string to parse. Expected to originate from availability
7961 /// attribute argument.
7962 /// \param SlotNames The vector that will be populated with slot names. In case
7963 /// of unsuccessful parsing can contain invalid data.
7964 /// \returns A number of method parameters if parsing was successful, None
7965 /// otherwise.
7966 static Optional<unsigned>
7967 tryParseObjCMethodName(StringRef Name, SmallVectorImpl<StringRef> &SlotNames,
7968                        const LangOptions &LangOpts) {
7969   // Accept replacements starting with - or + as valid ObjC method names.
7970   if (!Name.empty() && (Name.front() == '-' || Name.front() == '+'))
7971     Name = Name.drop_front(1);
7972   if (Name.empty())
7973     return None;
7974   Name.split(SlotNames, ':');
7975   unsigned NumParams;
7976   if (Name.back() == ':') {
7977     // Remove an empty string at the end that doesn't represent any slot.
7978     SlotNames.pop_back();
7979     NumParams = SlotNames.size();
7980   } else {
7981     if (SlotNames.size() != 1)
7982       // Not a valid method name, just a colon-separated string.
7983       return None;
7984     NumParams = 0;
7985   }
7986   // Verify all slot names are valid.
7987   bool AllowDollar = LangOpts.DollarIdents;
7988   for (StringRef S : SlotNames) {
7989     if (S.empty())
7990       continue;
7991     if (!isValidIdentifier(S, AllowDollar))
7992       return None;
7993   }
7994   return NumParams;
7995 }
7996 
7997 /// Returns a source location in which it's appropriate to insert a new
7998 /// attribute for the given declaration \D.
7999 static Optional<AttributeInsertion>
8000 createAttributeInsertion(const NamedDecl *D, const SourceManager &SM,
8001                          const LangOptions &LangOpts) {
8002   if (isa<ObjCPropertyDecl>(D))
8003     return AttributeInsertion::createInsertionAfter(D);
8004   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
8005     if (MD->hasBody())
8006       return None;
8007     return AttributeInsertion::createInsertionAfter(D);
8008   }
8009   if (const auto *TD = dyn_cast<TagDecl>(D)) {
8010     SourceLocation Loc =
8011         Lexer::getLocForEndOfToken(TD->getInnerLocStart(), 0, SM, LangOpts);
8012     if (Loc.isInvalid())
8013       return None;
8014     // Insert after the 'struct'/whatever keyword.
8015     return AttributeInsertion::createInsertionAfter(Loc);
8016   }
8017   return AttributeInsertion::createInsertionBefore(D);
8018 }
8019 
8020 /// Actually emit an availability diagnostic for a reference to an unavailable
8021 /// decl.
8022 ///
8023 /// \param Ctx The context that the reference occurred in
8024 /// \param ReferringDecl The exact declaration that was referenced.
8025 /// \param OffendingDecl A related decl to \c ReferringDecl that has an
8026 /// availability attribute corresponding to \c K attached to it. Note that this
8027 /// may not be the same as ReferringDecl, i.e. if an EnumDecl is annotated and
8028 /// we refer to a member EnumConstantDecl, ReferringDecl is the EnumConstantDecl
8029 /// and OffendingDecl is the EnumDecl.
8030 static void DoEmitAvailabilityWarning(Sema &S, AvailabilityResult K,
8031                                       Decl *Ctx, const NamedDecl *ReferringDecl,
8032                                       const NamedDecl *OffendingDecl,
8033                                       StringRef Message,
8034                                       ArrayRef<SourceLocation> Locs,
8035                                       const ObjCInterfaceDecl *UnknownObjCClass,
8036                                       const ObjCPropertyDecl *ObjCProperty,
8037                                       bool ObjCPropertyAccess) {
8038   // Diagnostics for deprecated or unavailable.
8039   unsigned diag, diag_message, diag_fwdclass_message;
8040   unsigned diag_available_here = diag::note_availability_specified_here;
8041   SourceLocation NoteLocation = OffendingDecl->getLocation();
8042 
8043   // Matches 'diag::note_property_attribute' options.
8044   unsigned property_note_select;
8045 
8046   // Matches diag::note_availability_specified_here.
8047   unsigned available_here_select_kind;
8048 
8049   VersionTuple DeclVersion;
8050   if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, OffendingDecl))
8051     DeclVersion = AA->getIntroduced();
8052 
8053   if (!ShouldDiagnoseAvailabilityInContext(S, K, DeclVersion, Ctx,
8054                                            OffendingDecl))
8055     return;
8056 
8057   SourceLocation Loc = Locs.front();
8058 
8059   // The declaration can have multiple availability attributes, we are looking
8060   // at one of them.
8061   const AvailabilityAttr *A = getAttrForPlatform(S.Context, OffendingDecl);
8062   if (A && A->isInherited()) {
8063     for (const Decl *Redecl = OffendingDecl->getMostRecentDecl(); Redecl;
8064          Redecl = Redecl->getPreviousDecl()) {
8065       const AvailabilityAttr *AForRedecl =
8066           getAttrForPlatform(S.Context, Redecl);
8067       if (AForRedecl && !AForRedecl->isInherited()) {
8068         // If D is a declaration with inherited attributes, the note should
8069         // point to the declaration with actual attributes.
8070         NoteLocation = Redecl->getLocation();
8071         break;
8072       }
8073     }
8074   }
8075 
8076   switch (K) {
8077   case AR_NotYetIntroduced: {
8078     // We would like to emit the diagnostic even if -Wunguarded-availability is
8079     // not specified for deployment targets >= to iOS 11 or equivalent or
8080     // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
8081     // later.
8082     const AvailabilityAttr *AA =
8083         getAttrForPlatform(S.getASTContext(), OffendingDecl);
8084     VersionTuple Introduced = AA->getIntroduced();
8085 
8086     bool UseNewWarning = shouldDiagnoseAvailabilityByDefault(
8087         S.Context, S.Context.getTargetInfo().getPlatformMinVersion(),
8088         Introduced);
8089     unsigned Warning = UseNewWarning ? diag::warn_unguarded_availability_new
8090                                      : diag::warn_unguarded_availability;
8091 
8092     std::string PlatformName = AvailabilityAttr::getPrettyPlatformName(
8093         S.getASTContext().getTargetInfo().getPlatformName());
8094 
8095     S.Diag(Loc, Warning) << OffendingDecl << PlatformName
8096                          << Introduced.getAsString();
8097 
8098     S.Diag(OffendingDecl->getLocation(),
8099            diag::note_partial_availability_specified_here)
8100         << OffendingDecl << PlatformName << Introduced.getAsString()
8101         << S.Context.getTargetInfo().getPlatformMinVersion().getAsString();
8102 
8103     if (const auto *Enclosing = findEnclosingDeclToAnnotate(Ctx)) {
8104       if (const auto *TD = dyn_cast<TagDecl>(Enclosing))
8105         if (TD->getDeclName().isEmpty()) {
8106           S.Diag(TD->getLocation(),
8107                  diag::note_decl_unguarded_availability_silence)
8108               << /*Anonymous*/ 1 << TD->getKindName();
8109           return;
8110         }
8111       auto FixitNoteDiag =
8112           S.Diag(Enclosing->getLocation(),
8113                  diag::note_decl_unguarded_availability_silence)
8114           << /*Named*/ 0 << Enclosing;
8115       // Don't offer a fixit for declarations with availability attributes.
8116       if (Enclosing->hasAttr<AvailabilityAttr>())
8117         return;
8118       if (!S.getPreprocessor().isMacroDefined("API_AVAILABLE"))
8119         return;
8120       Optional<AttributeInsertion> Insertion = createAttributeInsertion(
8121           Enclosing, S.getSourceManager(), S.getLangOpts());
8122       if (!Insertion)
8123         return;
8124       std::string PlatformName =
8125           AvailabilityAttr::getPlatformNameSourceSpelling(
8126               S.getASTContext().getTargetInfo().getPlatformName())
8127               .lower();
8128       std::string Introduced =
8129           OffendingDecl->getVersionIntroduced().getAsString();
8130       FixitNoteDiag << FixItHint::CreateInsertion(
8131           Insertion->Loc,
8132           (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName +
8133            "(" + Introduced + "))" + Insertion->Suffix)
8134               .str());
8135     }
8136     return;
8137   }
8138   case AR_Deprecated:
8139     diag = !ObjCPropertyAccess ? diag::warn_deprecated
8140                                : diag::warn_property_method_deprecated;
8141     diag_message = diag::warn_deprecated_message;
8142     diag_fwdclass_message = diag::warn_deprecated_fwdclass_message;
8143     property_note_select = /* deprecated */ 0;
8144     available_here_select_kind = /* deprecated */ 2;
8145     if (const auto *AL = OffendingDecl->getAttr<DeprecatedAttr>())
8146       NoteLocation = AL->getLocation();
8147     break;
8148 
8149   case AR_Unavailable:
8150     diag = !ObjCPropertyAccess ? diag::err_unavailable
8151                                : diag::err_property_method_unavailable;
8152     diag_message = diag::err_unavailable_message;
8153     diag_fwdclass_message = diag::warn_unavailable_fwdclass_message;
8154     property_note_select = /* unavailable */ 1;
8155     available_here_select_kind = /* unavailable */ 0;
8156 
8157     if (auto AL = OffendingDecl->getAttr<UnavailableAttr>()) {
8158       if (AL->isImplicit() && AL->getImplicitReason()) {
8159         // Most of these failures are due to extra restrictions in ARC;
8160         // reflect that in the primary diagnostic when applicable.
8161         auto flagARCError = [&] {
8162           if (S.getLangOpts().ObjCAutoRefCount &&
8163               S.getSourceManager().isInSystemHeader(
8164                   OffendingDecl->getLocation()))
8165             diag = diag::err_unavailable_in_arc;
8166         };
8167 
8168         switch (AL->getImplicitReason()) {
8169         case UnavailableAttr::IR_None: break;
8170 
8171         case UnavailableAttr::IR_ARCForbiddenType:
8172           flagARCError();
8173           diag_available_here = diag::note_arc_forbidden_type;
8174           break;
8175 
8176         case UnavailableAttr::IR_ForbiddenWeak:
8177           if (S.getLangOpts().ObjCWeakRuntime)
8178             diag_available_here = diag::note_arc_weak_disabled;
8179           else
8180             diag_available_here = diag::note_arc_weak_no_runtime;
8181           break;
8182 
8183         case UnavailableAttr::IR_ARCForbiddenConversion:
8184           flagARCError();
8185           diag_available_here = diag::note_performs_forbidden_arc_conversion;
8186           break;
8187 
8188         case UnavailableAttr::IR_ARCInitReturnsUnrelated:
8189           flagARCError();
8190           diag_available_here = diag::note_arc_init_returns_unrelated;
8191           break;
8192 
8193         case UnavailableAttr::IR_ARCFieldWithOwnership:
8194           flagARCError();
8195           diag_available_here = diag::note_arc_field_with_ownership;
8196           break;
8197         }
8198       }
8199     }
8200     break;
8201 
8202   case AR_Available:
8203     llvm_unreachable("Warning for availability of available declaration?");
8204   }
8205 
8206   SmallVector<FixItHint, 12> FixIts;
8207   if (K == AR_Deprecated) {
8208     StringRef Replacement;
8209     if (auto AL = OffendingDecl->getAttr<DeprecatedAttr>())
8210       Replacement = AL->getReplacement();
8211     if (auto AL = getAttrForPlatform(S.Context, OffendingDecl))
8212       Replacement = AL->getReplacement();
8213 
8214     CharSourceRange UseRange;
8215     if (!Replacement.empty())
8216       UseRange =
8217           CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
8218     if (UseRange.isValid()) {
8219       if (const auto *MethodDecl = dyn_cast<ObjCMethodDecl>(ReferringDecl)) {
8220         Selector Sel = MethodDecl->getSelector();
8221         SmallVector<StringRef, 12> SelectorSlotNames;
8222         Optional<unsigned> NumParams = tryParseObjCMethodName(
8223             Replacement, SelectorSlotNames, S.getLangOpts());
8224         if (NumParams && NumParams.getValue() == Sel.getNumArgs()) {
8225           assert(SelectorSlotNames.size() == Locs.size());
8226           for (unsigned I = 0; I < Locs.size(); ++I) {
8227             if (!Sel.getNameForSlot(I).empty()) {
8228               CharSourceRange NameRange = CharSourceRange::getCharRange(
8229                   Locs[I], S.getLocForEndOfToken(Locs[I]));
8230               FixIts.push_back(FixItHint::CreateReplacement(
8231                   NameRange, SelectorSlotNames[I]));
8232             } else
8233               FixIts.push_back(
8234                   FixItHint::CreateInsertion(Locs[I], SelectorSlotNames[I]));
8235           }
8236         } else
8237           FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement));
8238       } else
8239         FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement));
8240     }
8241   }
8242 
8243   if (!Message.empty()) {
8244     S.Diag(Loc, diag_message) << ReferringDecl << Message << FixIts;
8245     if (ObjCProperty)
8246       S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
8247           << ObjCProperty->getDeclName() << property_note_select;
8248   } else if (!UnknownObjCClass) {
8249     S.Diag(Loc, diag) << ReferringDecl << FixIts;
8250     if (ObjCProperty)
8251       S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute)
8252           << ObjCProperty->getDeclName() << property_note_select;
8253   } else {
8254     S.Diag(Loc, diag_fwdclass_message) << ReferringDecl << FixIts;
8255     S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class);
8256   }
8257 
8258   S.Diag(NoteLocation, diag_available_here)
8259     << OffendingDecl << available_here_select_kind;
8260 }
8261 
8262 static void handleDelayedAvailabilityCheck(Sema &S, DelayedDiagnostic &DD,
8263                                            Decl *Ctx) {
8264   assert(DD.Kind == DelayedDiagnostic::Availability &&
8265          "Expected an availability diagnostic here");
8266 
8267   DD.Triggered = true;
8268   DoEmitAvailabilityWarning(
8269       S, DD.getAvailabilityResult(), Ctx, DD.getAvailabilityReferringDecl(),
8270       DD.getAvailabilityOffendingDecl(), DD.getAvailabilityMessage(),
8271       DD.getAvailabilitySelectorLocs(), DD.getUnknownObjCClass(),
8272       DD.getObjCProperty(), false);
8273 }
8274 
8275 void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) {
8276   assert(DelayedDiagnostics.getCurrentPool());
8277   DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool();
8278   DelayedDiagnostics.popWithoutEmitting(state);
8279 
8280   // When delaying diagnostics to run in the context of a parsed
8281   // declaration, we only want to actually emit anything if parsing
8282   // succeeds.
8283   if (!decl) return;
8284 
8285   // We emit all the active diagnostics in this pool or any of its
8286   // parents.  In general, we'll get one pool for the decl spec
8287   // and a child pool for each declarator; in a decl group like:
8288   //   deprecated_typedef foo, *bar, baz();
8289   // only the declarator pops will be passed decls.  This is correct;
8290   // we really do need to consider delayed diagnostics from the decl spec
8291   // for each of the different declarations.
8292   const DelayedDiagnosticPool *pool = &poppedPool;
8293   do {
8294     bool AnyAccessFailures = false;
8295     for (DelayedDiagnosticPool::pool_iterator
8296            i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) {
8297       // This const_cast is a bit lame.  Really, Triggered should be mutable.
8298       DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i);
8299       if (diag.Triggered)
8300         continue;
8301 
8302       switch (diag.Kind) {
8303       case DelayedDiagnostic::Availability:
8304         // Don't bother giving deprecation/unavailable diagnostics if
8305         // the decl is invalid.
8306         if (!decl->isInvalidDecl())
8307           handleDelayedAvailabilityCheck(*this, diag, decl);
8308         break;
8309 
8310       case DelayedDiagnostic::Access:
8311         // Only produce one access control diagnostic for a structured binding
8312         // declaration: we don't need to tell the user that all the fields are
8313         // inaccessible one at a time.
8314         if (AnyAccessFailures && isa<DecompositionDecl>(decl))
8315           continue;
8316         HandleDelayedAccessCheck(diag, decl);
8317         if (diag.Triggered)
8318           AnyAccessFailures = true;
8319         break;
8320 
8321       case DelayedDiagnostic::ForbiddenType:
8322         handleDelayedForbiddenType(*this, diag, decl);
8323         break;
8324       }
8325     }
8326   } while ((pool = pool->getParent()));
8327 }
8328 
8329 /// Given a set of delayed diagnostics, re-emit them as if they had
8330 /// been delayed in the current context instead of in the given pool.
8331 /// Essentially, this just moves them to the current pool.
8332 void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) {
8333   DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool();
8334   assert(curPool && "re-emitting in undelayed context not supported");
8335   curPool->steal(pool);
8336 }
8337 
8338 static void EmitAvailabilityWarning(Sema &S, AvailabilityResult AR,
8339                                     const NamedDecl *ReferringDecl,
8340                                     const NamedDecl *OffendingDecl,
8341                                     StringRef Message,
8342                                     ArrayRef<SourceLocation> Locs,
8343                                     const ObjCInterfaceDecl *UnknownObjCClass,
8344                                     const ObjCPropertyDecl *ObjCProperty,
8345                                     bool ObjCPropertyAccess) {
8346   // Delay if we're currently parsing a declaration.
8347   if (S.DelayedDiagnostics.shouldDelayDiagnostics()) {
8348     S.DelayedDiagnostics.add(
8349         DelayedDiagnostic::makeAvailability(
8350             AR, Locs, ReferringDecl, OffendingDecl, UnknownObjCClass,
8351             ObjCProperty, Message, ObjCPropertyAccess));
8352     return;
8353   }
8354 
8355   Decl *Ctx = cast<Decl>(S.getCurLexicalContext());
8356   DoEmitAvailabilityWarning(S, AR, Ctx, ReferringDecl, OffendingDecl,
8357                             Message, Locs, UnknownObjCClass, ObjCProperty,
8358                             ObjCPropertyAccess);
8359 }
8360 
8361 namespace {
8362 
8363 /// Returns true if the given statement can be a body-like child of \p Parent.
8364 bool isBodyLikeChildStmt(const Stmt *S, const Stmt *Parent) {
8365   switch (Parent->getStmtClass()) {
8366   case Stmt::IfStmtClass:
8367     return cast<IfStmt>(Parent)->getThen() == S ||
8368            cast<IfStmt>(Parent)->getElse() == S;
8369   case Stmt::WhileStmtClass:
8370     return cast<WhileStmt>(Parent)->getBody() == S;
8371   case Stmt::DoStmtClass:
8372     return cast<DoStmt>(Parent)->getBody() == S;
8373   case Stmt::ForStmtClass:
8374     return cast<ForStmt>(Parent)->getBody() == S;
8375   case Stmt::CXXForRangeStmtClass:
8376     return cast<CXXForRangeStmt>(Parent)->getBody() == S;
8377   case Stmt::ObjCForCollectionStmtClass:
8378     return cast<ObjCForCollectionStmt>(Parent)->getBody() == S;
8379   case Stmt::CaseStmtClass:
8380   case Stmt::DefaultStmtClass:
8381     return cast<SwitchCase>(Parent)->getSubStmt() == S;
8382   default:
8383     return false;
8384   }
8385 }
8386 
8387 class StmtUSEFinder : public RecursiveASTVisitor<StmtUSEFinder> {
8388   const Stmt *Target;
8389 
8390 public:
8391   bool VisitStmt(Stmt *S) { return S != Target; }
8392 
8393   /// Returns true if the given statement is present in the given declaration.
8394   static bool isContained(const Stmt *Target, const Decl *D) {
8395     StmtUSEFinder Visitor;
8396     Visitor.Target = Target;
8397     return !Visitor.TraverseDecl(const_cast<Decl *>(D));
8398   }
8399 };
8400 
8401 /// Traverses the AST and finds the last statement that used a given
8402 /// declaration.
8403 class LastDeclUSEFinder : public RecursiveASTVisitor<LastDeclUSEFinder> {
8404   const Decl *D;
8405 
8406 public:
8407   bool VisitDeclRefExpr(DeclRefExpr *DRE) {
8408     if (DRE->getDecl() == D)
8409       return false;
8410     return true;
8411   }
8412 
8413   static const Stmt *findLastStmtThatUsesDecl(const Decl *D,
8414                                               const CompoundStmt *Scope) {
8415     LastDeclUSEFinder Visitor;
8416     Visitor.D = D;
8417     for (auto I = Scope->body_rbegin(), E = Scope->body_rend(); I != E; ++I) {
8418       const Stmt *S = *I;
8419       if (!Visitor.TraverseStmt(const_cast<Stmt *>(S)))
8420         return S;
8421     }
8422     return nullptr;
8423   }
8424 };
8425 
8426 /// This class implements -Wunguarded-availability.
8427 ///
8428 /// This is done with a traversal of the AST of a function that makes reference
8429 /// to a partially available declaration. Whenever we encounter an \c if of the
8430 /// form: \c if(@available(...)), we use the version from the condition to visit
8431 /// the then statement.
8432 class DiagnoseUnguardedAvailability
8433     : public RecursiveASTVisitor<DiagnoseUnguardedAvailability> {
8434   typedef RecursiveASTVisitor<DiagnoseUnguardedAvailability> Base;
8435 
8436   Sema &SemaRef;
8437   Decl *Ctx;
8438 
8439   /// Stack of potentially nested 'if (@available(...))'s.
8440   SmallVector<VersionTuple, 8> AvailabilityStack;
8441   SmallVector<const Stmt *, 16> StmtStack;
8442 
8443   void DiagnoseDeclAvailability(NamedDecl *D, SourceRange Range,
8444                                 ObjCInterfaceDecl *ClassReceiver = nullptr);
8445 
8446 public:
8447   DiagnoseUnguardedAvailability(Sema &SemaRef, Decl *Ctx)
8448       : SemaRef(SemaRef), Ctx(Ctx) {
8449     AvailabilityStack.push_back(
8450         SemaRef.Context.getTargetInfo().getPlatformMinVersion());
8451   }
8452 
8453   bool TraverseDecl(Decl *D) {
8454     // Avoid visiting nested functions to prevent duplicate warnings.
8455     if (!D || isa<FunctionDecl>(D))
8456       return true;
8457     return Base::TraverseDecl(D);
8458   }
8459 
8460   bool TraverseStmt(Stmt *S) {
8461     if (!S)
8462       return true;
8463     StmtStack.push_back(S);
8464     bool Result = Base::TraverseStmt(S);
8465     StmtStack.pop_back();
8466     return Result;
8467   }
8468 
8469   void IssueDiagnostics(Stmt *S) { TraverseStmt(S); }
8470 
8471   bool TraverseIfStmt(IfStmt *If);
8472 
8473   bool TraverseLambdaExpr(LambdaExpr *E) { return true; }
8474 
8475   // for 'case X:' statements, don't bother looking at the 'X'; it can't lead
8476   // to any useful diagnostics.
8477   bool TraverseCaseStmt(CaseStmt *CS) { return TraverseStmt(CS->getSubStmt()); }
8478 
8479   bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *PRE) {
8480     if (PRE->isClassReceiver())
8481       DiagnoseDeclAvailability(PRE->getClassReceiver(), PRE->getReceiverLocation());
8482     return true;
8483   }
8484 
8485   bool VisitObjCMessageExpr(ObjCMessageExpr *Msg) {
8486     if (ObjCMethodDecl *D = Msg->getMethodDecl()) {
8487       ObjCInterfaceDecl *ID = nullptr;
8488       QualType ReceiverTy = Msg->getClassReceiver();
8489       if (!ReceiverTy.isNull() && ReceiverTy->getAsObjCInterfaceType())
8490         ID = ReceiverTy->getAsObjCInterfaceType()->getInterface();
8491 
8492       DiagnoseDeclAvailability(
8493           D, SourceRange(Msg->getSelectorStartLoc(), Msg->getEndLoc()), ID);
8494     }
8495     return true;
8496   }
8497 
8498   bool VisitDeclRefExpr(DeclRefExpr *DRE) {
8499     DiagnoseDeclAvailability(DRE->getDecl(),
8500                              SourceRange(DRE->getBeginLoc(), DRE->getEndLoc()));
8501     return true;
8502   }
8503 
8504   bool VisitMemberExpr(MemberExpr *ME) {
8505     DiagnoseDeclAvailability(ME->getMemberDecl(),
8506                              SourceRange(ME->getBeginLoc(), ME->getEndLoc()));
8507     return true;
8508   }
8509 
8510   bool VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) {
8511     SemaRef.Diag(E->getBeginLoc(), diag::warn_at_available_unchecked_use)
8512         << (!SemaRef.getLangOpts().ObjC);
8513     return true;
8514   }
8515 
8516   bool VisitTypeLoc(TypeLoc Ty);
8517 };
8518 
8519 void DiagnoseUnguardedAvailability::DiagnoseDeclAvailability(
8520     NamedDecl *D, SourceRange Range, ObjCInterfaceDecl *ReceiverClass) {
8521   AvailabilityResult Result;
8522   const NamedDecl *OffendingDecl;
8523   std::tie(Result, OffendingDecl) =
8524       ShouldDiagnoseAvailabilityOfDecl(SemaRef, D, nullptr, ReceiverClass);
8525   if (Result != AR_Available) {
8526     // All other diagnostic kinds have already been handled in
8527     // DiagnoseAvailabilityOfDecl.
8528     if (Result != AR_NotYetIntroduced)
8529       return;
8530 
8531     const AvailabilityAttr *AA =
8532       getAttrForPlatform(SemaRef.getASTContext(), OffendingDecl);
8533     VersionTuple Introduced = AA->getIntroduced();
8534 
8535     if (AvailabilityStack.back() >= Introduced)
8536       return;
8537 
8538     // If the context of this function is less available than D, we should not
8539     // emit a diagnostic.
8540     if (!ShouldDiagnoseAvailabilityInContext(SemaRef, Result, Introduced, Ctx,
8541                                              OffendingDecl))
8542       return;
8543 
8544     // We would like to emit the diagnostic even if -Wunguarded-availability is
8545     // not specified for deployment targets >= to iOS 11 or equivalent or
8546     // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or
8547     // later.
8548     unsigned DiagKind =
8549         shouldDiagnoseAvailabilityByDefault(
8550             SemaRef.Context,
8551             SemaRef.Context.getTargetInfo().getPlatformMinVersion(), Introduced)
8552             ? diag::warn_unguarded_availability_new
8553             : diag::warn_unguarded_availability;
8554 
8555     std::string PlatformName = AvailabilityAttr::getPrettyPlatformName(
8556         SemaRef.getASTContext().getTargetInfo().getPlatformName());
8557 
8558     SemaRef.Diag(Range.getBegin(), DiagKind)
8559         << Range << D << PlatformName << Introduced.getAsString();
8560 
8561     SemaRef.Diag(OffendingDecl->getLocation(),
8562                  diag::note_partial_availability_specified_here)
8563         << OffendingDecl << PlatformName << Introduced.getAsString()
8564         << SemaRef.Context.getTargetInfo()
8565                .getPlatformMinVersion()
8566                .getAsString();
8567 
8568     auto FixitDiag =
8569         SemaRef.Diag(Range.getBegin(), diag::note_unguarded_available_silence)
8570         << Range << D
8571         << (SemaRef.getLangOpts().ObjC ? /*@available*/ 0
8572                                        : /*__builtin_available*/ 1);
8573 
8574     // Find the statement which should be enclosed in the if @available check.
8575     if (StmtStack.empty())
8576       return;
8577     const Stmt *StmtOfUse = StmtStack.back();
8578     const CompoundStmt *Scope = nullptr;
8579     for (const Stmt *S : llvm::reverse(StmtStack)) {
8580       if (const auto *CS = dyn_cast<CompoundStmt>(S)) {
8581         Scope = CS;
8582         break;
8583       }
8584       if (isBodyLikeChildStmt(StmtOfUse, S)) {
8585         // The declaration won't be seen outside of the statement, so we don't
8586         // have to wrap the uses of any declared variables in if (@available).
8587         // Therefore we can avoid setting Scope here.
8588         break;
8589       }
8590       StmtOfUse = S;
8591     }
8592     const Stmt *LastStmtOfUse = nullptr;
8593     if (isa<DeclStmt>(StmtOfUse) && Scope) {
8594       for (const Decl *D : cast<DeclStmt>(StmtOfUse)->decls()) {
8595         if (StmtUSEFinder::isContained(StmtStack.back(), D)) {
8596           LastStmtOfUse = LastDeclUSEFinder::findLastStmtThatUsesDecl(D, Scope);
8597           break;
8598         }
8599       }
8600     }
8601 
8602     const SourceManager &SM = SemaRef.getSourceManager();
8603     SourceLocation IfInsertionLoc =
8604         SM.getExpansionLoc(StmtOfUse->getBeginLoc());
8605     SourceLocation StmtEndLoc =
8606         SM.getExpansionRange(
8607               (LastStmtOfUse ? LastStmtOfUse : StmtOfUse)->getEndLoc())
8608             .getEnd();
8609     if (SM.getFileID(IfInsertionLoc) != SM.getFileID(StmtEndLoc))
8610       return;
8611 
8612     StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM);
8613     const char *ExtraIndentation = "    ";
8614     std::string FixItString;
8615     llvm::raw_string_ostream FixItOS(FixItString);
8616     FixItOS << "if (" << (SemaRef.getLangOpts().ObjC ? "@available"
8617                                                      : "__builtin_available")
8618             << "("
8619             << AvailabilityAttr::getPlatformNameSourceSpelling(
8620                    SemaRef.getASTContext().getTargetInfo().getPlatformName())
8621             << " " << Introduced.getAsString() << ", *)) {\n"
8622             << Indentation << ExtraIndentation;
8623     FixitDiag << FixItHint::CreateInsertion(IfInsertionLoc, FixItOS.str());
8624     SourceLocation ElseInsertionLoc = Lexer::findLocationAfterToken(
8625         StmtEndLoc, tok::semi, SM, SemaRef.getLangOpts(),
8626         /*SkipTrailingWhitespaceAndNewLine=*/false);
8627     if (ElseInsertionLoc.isInvalid())
8628       ElseInsertionLoc =
8629           Lexer::getLocForEndOfToken(StmtEndLoc, 0, SM, SemaRef.getLangOpts());
8630     FixItOS.str().clear();
8631     FixItOS << "\n"
8632             << Indentation << "} else {\n"
8633             << Indentation << ExtraIndentation
8634             << "// Fallback on earlier versions\n"
8635             << Indentation << "}";
8636     FixitDiag << FixItHint::CreateInsertion(ElseInsertionLoc, FixItOS.str());
8637   }
8638 }
8639 
8640 bool DiagnoseUnguardedAvailability::VisitTypeLoc(TypeLoc Ty) {
8641   const Type *TyPtr = Ty.getTypePtr();
8642   SourceRange Range{Ty.getBeginLoc(), Ty.getEndLoc()};
8643 
8644   if (Range.isInvalid())
8645     return true;
8646 
8647   if (const auto *TT = dyn_cast<TagType>(TyPtr)) {
8648     TagDecl *TD = TT->getDecl();
8649     DiagnoseDeclAvailability(TD, Range);
8650 
8651   } else if (const auto *TD = dyn_cast<TypedefType>(TyPtr)) {
8652     TypedefNameDecl *D = TD->getDecl();
8653     DiagnoseDeclAvailability(D, Range);
8654 
8655   } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) {
8656     if (NamedDecl *D = ObjCO->getInterface())
8657       DiagnoseDeclAvailability(D, Range);
8658   }
8659 
8660   return true;
8661 }
8662 
8663 bool DiagnoseUnguardedAvailability::TraverseIfStmt(IfStmt *If) {
8664   VersionTuple CondVersion;
8665   if (auto *E = dyn_cast<ObjCAvailabilityCheckExpr>(If->getCond())) {
8666     CondVersion = E->getVersion();
8667 
8668     // If we're using the '*' case here or if this check is redundant, then we
8669     // use the enclosing version to check both branches.
8670     if (CondVersion.empty() || CondVersion <= AvailabilityStack.back())
8671       return TraverseStmt(If->getThen()) && TraverseStmt(If->getElse());
8672   } else {
8673     // This isn't an availability checking 'if', we can just continue.
8674     return Base::TraverseIfStmt(If);
8675   }
8676 
8677   AvailabilityStack.push_back(CondVersion);
8678   bool ShouldContinue = TraverseStmt(If->getThen());
8679   AvailabilityStack.pop_back();
8680 
8681   return ShouldContinue && TraverseStmt(If->getElse());
8682 }
8683 
8684 } // end anonymous namespace
8685 
8686 void Sema::DiagnoseUnguardedAvailabilityViolations(Decl *D) {
8687   Stmt *Body = nullptr;
8688 
8689   if (auto *FD = D->getAsFunction()) {
8690     // FIXME: We only examine the pattern decl for availability violations now,
8691     // but we should also examine instantiated templates.
8692     if (FD->isTemplateInstantiation())
8693       return;
8694 
8695     Body = FD->getBody();
8696   } else if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
8697     Body = MD->getBody();
8698   else if (auto *BD = dyn_cast<BlockDecl>(D))
8699     Body = BD->getBody();
8700 
8701   assert(Body && "Need a body here!");
8702 
8703   DiagnoseUnguardedAvailability(*this, D).IssueDiagnostics(Body);
8704 }
8705 
8706 void Sema::DiagnoseAvailabilityOfDecl(NamedDecl *D,
8707                                       ArrayRef<SourceLocation> Locs,
8708                                       const ObjCInterfaceDecl *UnknownObjCClass,
8709                                       bool ObjCPropertyAccess,
8710                                       bool AvoidPartialAvailabilityChecks,
8711                                       ObjCInterfaceDecl *ClassReceiver) {
8712   std::string Message;
8713   AvailabilityResult Result;
8714   const NamedDecl* OffendingDecl;
8715   // See if this declaration is unavailable, deprecated, or partial.
8716   std::tie(Result, OffendingDecl) =
8717       ShouldDiagnoseAvailabilityOfDecl(*this, D, &Message, ClassReceiver);
8718   if (Result == AR_Available)
8719     return;
8720 
8721   if (Result == AR_NotYetIntroduced) {
8722     if (AvoidPartialAvailabilityChecks)
8723       return;
8724 
8725     // We need to know the @available context in the current function to
8726     // diagnose this use, let DiagnoseUnguardedAvailabilityViolations do that
8727     // when we're done parsing the current function.
8728     if (getCurFunctionOrMethodDecl()) {
8729       getEnclosingFunction()->HasPotentialAvailabilityViolations = true;
8730       return;
8731     } else if (getCurBlock() || getCurLambda()) {
8732       getCurFunction()->HasPotentialAvailabilityViolations = true;
8733       return;
8734     }
8735   }
8736 
8737   const ObjCPropertyDecl *ObjCPDecl = nullptr;
8738   if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) {
8739     if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
8740       AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
8741       if (PDeclResult == Result)
8742         ObjCPDecl = PD;
8743     }
8744   }
8745 
8746   EmitAvailabilityWarning(*this, Result, D, OffendingDecl, Message, Locs,
8747                           UnknownObjCClass, ObjCPDecl, ObjCPropertyAccess);
8748 }
8749