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