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